call.c:_PyVectorcall_NARGS:
   34|  2.70k|{
   35|  2.70k|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|  2.70k|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|  2.70k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|  2.70k|}
exceptions.c:_PyVectorcall_NARGS:
   34|  3.78k|{
   35|  3.78k|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|  3.78k|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|  3.78k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|  3.78k|}
listobject.c:_PyVectorcall_NARGS:
   34|     48|{
   35|     48|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     48|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     48|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|     48|}
object.c:_PyVectorcall_NARGS:
   34|      2|{
   35|      2|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      2|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      2|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|      2|}
rangeobject.c:_PyVectorcall_NARGS:
   34|      8|{
   35|      8|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      8|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      8|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|      8|}
setobject.c:_PyVectorcall_NARGS:
   34|     36|{
   35|     36|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     36|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     36|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|     36|}
tupleobject.c:_PyVectorcall_NARGS:
   34|      2|{
   35|      2|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      2|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      2|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|      2|}
typeobject.c:_PyVectorcall_NARGS:
   34|    360|{
   35|    360|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|    360|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|    360|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|    360|}
weakrefobject.c:_PyVectorcall_NARGS:
   34|     72|{
   35|     72|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     72|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     72|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|     72|}
import.c:PyObject_CallMethodOneArg:
   70|     10|{
   71|     10|    PyObject *args[2] = {self, arg};
   72|     10|    size_t nargsf = 2 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     10|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     10|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   73|     10|    assert(arg != NULL);
  ------------------
  |  Branch (73:5): [True: 10, False: 0]
  ------------------
   74|     10|    return PyObject_VectorcallMethod(name, args, nargsf, _Py_NULL);
  ------------------
  |  |   57|     10|#  define _Py_NULL NULL
  ------------------
   75|     10|}
pylifecycle.c:PyObject_CallMethodNoArgs:
   63|      6|{
   64|      6|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      6|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      6|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   65|       |    return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
  ------------------
  |  |   57|      6|#  define _Py_NULL NULL
  ------------------
   66|      6|}
_iomodule.c:PyObject_CallMethodNoArgs:
   63|      6|{
   64|      6|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      6|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      6|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   65|       |    return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
  ------------------
  |  |   57|      6|#  define _Py_NULL NULL
  ------------------
   66|      6|}
iobase.c:PyObject_CallMethodNoArgs:
   63|      6|{
   64|      6|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      6|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      6|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   65|       |    return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
  ------------------
  |  |   57|      6|#  define _Py_NULL NULL
  ------------------
   66|      6|}
bufferedio.c:PyObject_CallMethodNoArgs:
   63|     22|{
   64|     22|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     22|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     22|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   65|       |    return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
  ------------------
  |  |   57|     22|#  define _Py_NULL NULL
  ------------------
   66|     22|}
textio.c:PyObject_CallMethodNoArgs:
   63|     22|{
   64|     22|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     22|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     22|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   65|       |    return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
  ------------------
  |  |   57|     22|#  define _Py_NULL NULL
  ------------------
   66|     22|}
textio.c:PyObject_CallMethodOneArg:
   70|      2|{
   71|      2|    PyObject *args[2] = {self, arg};
   72|      2|    size_t nargsf = 2 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      2|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      2|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   73|      2|    assert(arg != NULL);
  ------------------
  |  Branch (73:5): [True: 2, False: 0]
  ------------------
   74|      2|    return PyObject_VectorcallMethod(name, args, nargsf, _Py_NULL);
  ------------------
  |  |   57|      2|#  define _Py_NULL NULL
  ------------------
   75|      2|}
_abc.c:PyObject_CallMethodOneArg:
   70|     68|{
   71|     68|    PyObject *args[2] = {self, arg};
   72|     68|    size_t nargsf = 2 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     68|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     68|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   73|     68|    assert(arg != NULL);
  ------------------
  |  Branch (73:5): [True: 68, False: 0]
  ------------------
   74|     68|    return PyObject_VectorcallMethod(name, args, nargsf, _Py_NULL);
  ------------------
  |  |   57|     68|#  define _Py_NULL NULL
  ------------------
   75|     68|}
abstract.c:_PyVectorcall_NARGS:
   34|     58|{
   35|     58|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     58|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     58|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|     58|}
abstract.c:PyObject_CallMethodNoArgs:
   63|     58|{
   64|     58|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     58|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     58|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   65|       |    return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
  ------------------
  |  |   57|     58|#  define _Py_NULL NULL
  ------------------
   66|     58|}
boolobject.c:_PyVectorcall_NARGS:
   34|      2|{
   35|      2|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      2|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      2|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|      2|}
descrobject.c:_PyVectorcall_NARGS:
   34|    610|{
   35|    610|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|    610|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|    610|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|    610|}
descrobject.c:PyObject_CallMethodNoArgs:
   63|     58|{
   64|     58|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     58|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     58|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   65|       |    return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
  ------------------
  |  |   57|     58|#  define _Py_NULL NULL
  ------------------
   66|     58|}
enumobject.c:_PyVectorcall_NARGS:
   34|     12|{
   35|     12|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|     12|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     12|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|     12|}
methodobject.c:_PyVectorcall_NARGS:
   34|  1.62k|{
   35|  1.62k|    return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|  1.62k|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|  1.62k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   36|  1.62k|}

typeobject.c:PyByteArray_AS_STRING:
   25|    512|{
   26|    512|    return _PyByteArray_CAST(op)->ob_start;
  ------------------
  |  |   22|    512|    (assert(PyByteArray_Check(op)), _Py_CAST(PyByteArrayObject*, op))
  |  |  ------------------
  |  |  |  |   37|    512|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (26:12): [True: 512, False: 0]
  ------------------
   27|    512|}

bytesobject.c:PyBytes_AS_STRING:
   24|  1.93k|{
   25|  1.93k|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|  1.93k|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 1.93k, False: 0]
  ------------------
   26|  1.93k|}
bytesobject.c:PyBytes_GET_SIZE:
   29|  1.93k|static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {
   30|  1.93k|    PyBytesObject *self = _PyBytes_CAST(op);
  ------------------
  |  |   21|  1.93k|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (30:27): [True: 1.93k, False: 0]
  ------------------
   31|  1.93k|    return Py_SIZE(self);
  ------------------
  |  |  214|  1.93k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.93k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|  1.93k|}
floatobject.c:PyBytes_AS_STRING:
   24|  3.60k|{
   25|  3.60k|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|  3.60k|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 3.60k, False: 0]
  ------------------
   26|  3.60k|}
floatobject.c:PyBytes_GET_SIZE:
   29|  3.60k|static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {
   30|  3.60k|    PyBytesObject *self = _PyBytes_CAST(op);
  ------------------
  |  |   21|  3.60k|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (30:27): [True: 3.60k, False: 0]
  ------------------
   31|  3.60k|    return Py_SIZE(self);
  ------------------
  |  |  214|  3.60k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  3.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|  3.60k|}
typeobject.c:PyBytes_GET_SIZE:
   29|     16|static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {
   30|     16|    PyBytesObject *self = _PyBytes_CAST(op);
  ------------------
  |  |   21|     16|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (30:27): [True: 16, False: 0]
  ------------------
   31|     16|    return Py_SIZE(self);
  ------------------
  |  |  214|     16|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|     16|}
typeobject.c:PyBytes_AS_STRING:
   24|     16|{
   25|     16|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|     16|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 16, False: 0]
  ------------------
   26|     16|}
unicodeobject.c:PyBytes_GET_SIZE:
   29|      8|static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {
   30|      8|    PyBytesObject *self = _PyBytes_CAST(op);
  ------------------
  |  |   21|      8|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (30:27): [True: 8, False: 0]
  ------------------
   31|      8|    return Py_SIZE(self);
  ------------------
  |  |  214|      8|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|      8|}
unicodeobject.c:PyBytes_AS_STRING:
   24|      4|{
   25|      4|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|      4|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 4, False: 0]
  ------------------
   26|      4|}
ceval.c:PyBytes_AS_STRING:
   24|    216|{
   25|    216|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|    216|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 216, False: 0]
  ------------------
   26|    216|}
ceval.c:PyBytes_GET_SIZE:
   29|    216|static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {
   30|    216|    PyBytesObject *self = _PyBytes_CAST(op);
  ------------------
  |  |   21|    216|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (30:27): [True: 216, False: 0]
  ------------------
   31|    216|    return Py_SIZE(self);
  ------------------
  |  |  214|    216|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    216|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|    216|}
import.c:PyBytes_AS_STRING:
   24|     24|{
   25|     24|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|     24|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 24, False: 0]
  ------------------
   26|     24|}
marshal.c:PyBytes_AS_STRING:
   24|  4.62k|{
   25|  4.62k|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|  4.62k|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|  4.62k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 4.62k, False: 0]
  ------------------
   26|  4.62k|}
posixmodule.c:PyBytes_GET_SIZE:
   29|     46|static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {
   30|     46|    PyBytesObject *self = _PyBytes_CAST(op);
  ------------------
  |  |   21|     46|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (30:27): [True: 46, False: 0]
  ------------------
   31|     46|    return Py_SIZE(self);
  ------------------
  |  |  214|     46|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|     46|}
posixmodule.c:PyBytes_AS_STRING:
   24|     46|{
   25|     46|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|     46|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 46, False: 0]
  ------------------
   26|     46|}
bytearrayobject.c:PyBytes_AS_STRING:
   24|    164|{
   25|    164|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|    164|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 164, False: 0]
  ------------------
   26|    164|}
codeobject.c:PyBytes_GET_SIZE:
   29|  16.1k|static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {
   30|  16.1k|    PyBytesObject *self = _PyBytes_CAST(op);
  ------------------
  |  |   21|  16.1k|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|  16.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (30:27): [True: 16.1k, False: 0]
  ------------------
   31|  16.1k|    return Py_SIZE(self);
  ------------------
  |  |  214|  16.1k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  16.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|  16.1k|}
codeobject.c:PyBytes_AS_STRING:
   24|  11.6k|{
   25|  11.6k|    return _PyBytes_CAST(op)->ob_sval;
  ------------------
  |  |   21|  11.6k|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|  11.6k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (25:12): [True: 11.6k, False: 0]
  ------------------
   26|  11.6k|}

classobject.c:PyMethod_GET_SELF:
   39|    138|static inline PyObject* PyMethod_GET_SELF(PyObject *meth) {
   40|    138|    return _PyMethod_CAST(meth)->im_self;
  ------------------
  |  |   30|    138|    (assert(PyMethod_Check(meth)), _Py_CAST(PyMethodObject*, meth))
  |  |  ------------------
  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (40:12): [True: 138, False: 0]
  ------------------
   41|    138|}
classobject.c:PyMethod_GET_FUNCTION:
   34|    138|static inline PyObject* PyMethod_GET_FUNCTION(PyObject *meth) {
   35|    138|    return _PyMethod_CAST(meth)->im_func;
  ------------------
  |  |   30|    138|    (assert(PyMethod_Check(meth)), _Py_CAST(PyMethodObject*, meth))
  |  |  ------------------
  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (35:12): [True: 138, False: 0]
  ------------------
   36|    138|}

typeobject.c:PyUnstable_Code_GetFirstFree:
  171|      8|static inline int PyUnstable_Code_GetFirstFree(PyCodeObject *op) {
  172|      8|    assert(PyCode_Check(op));
  ------------------
  |  Branch (172:5): [True: 8, False: 0]
  ------------------
  173|      8|    return op->co_nlocalsplus - op->co_nfreevars;
  174|      8|}
bltinmodule.c:PyCode_GetNumFree:
  166|     28|static inline Py_ssize_t PyCode_GetNumFree(PyCodeObject *op) {
  167|     28|    assert(PyCode_Check(op));
  ------------------
  |  Branch (167:5): [True: 28, False: 0]
  ------------------
  168|     28|    return op->co_nfreevars;
  169|     28|}

call.c:PyDict_GET_SIZE:
   53|    326|static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) {
   54|    326|    PyDictObject *mp;
   55|    326|    assert(PyAnyDict_Check(op));
  ------------------
  |  Branch (55:5): [True: 326, False: 0]
  |  Branch (55:5): [True: 0, False: 0]
  ------------------
   56|    326|    mp = _Py_CAST(PyDictObject*, op);
  ------------------
  |  |   37|    326|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
   57|       |#ifdef Py_GIL_DISABLED
   58|       |    return _Py_atomic_load_ssize_relaxed(&mp->ma_used);
   59|       |#else
   60|    326|    return mp->ma_used;
   61|    326|#endif
   62|    326|}
typeobject.c:PyDict_GET_SIZE:
   53|      2|static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) {
   54|      2|    PyDictObject *mp;
   55|      2|    assert(PyAnyDict_Check(op));
  ------------------
  |  Branch (55:5): [True: 2, False: 0]
  |  Branch (55:5): [True: 0, False: 0]
  ------------------
   56|      2|    mp = _Py_CAST(PyDictObject*, op);
  ------------------
  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
   57|       |#ifdef Py_GIL_DISABLED
   58|       |    return _Py_atomic_load_ssize_relaxed(&mp->ma_used);
   59|       |#else
   60|      2|    return mp->ma_used;
   61|      2|#endif
   62|      2|}
ceval.c:PyDict_GET_SIZE:
   53|      2|static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) {
   54|      2|    PyDictObject *mp;
   55|      2|    assert(PyAnyDict_Check(op));
  ------------------
  |  Branch (55:5): [True: 2, False: 0]
  |  Branch (55:5): [True: 0, False: 0]
  ------------------
   56|      2|    mp = _Py_CAST(PyDictObject*, op);
  ------------------
  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
   57|       |#ifdef Py_GIL_DISABLED
   58|       |    return _Py_atomic_load_ssize_relaxed(&mp->ma_used);
   59|       |#else
   60|      2|    return mp->ma_used;
   61|      2|#endif
   62|      2|}
getargs.c:PyDict_GET_SIZE:
   53|     14|static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) {
   54|     14|    PyDictObject *mp;
   55|     14|    assert(PyAnyDict_Check(op));
  ------------------
  |  Branch (55:5): [True: 14, False: 0]
  |  Branch (55:5): [True: 0, False: 0]
  ------------------
   56|     14|    mp = _Py_CAST(PyDictObject*, op);
  ------------------
  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
   57|       |#ifdef Py_GIL_DISABLED
   58|       |    return _Py_atomic_load_ssize_relaxed(&mp->ma_used);
   59|       |#else
   60|     14|    return mp->ma_used;
   61|     14|#endif
   62|     14|}

floatobject.c:PyFloat_AS_DOUBLE:
   15|     18|static inline double PyFloat_AS_DOUBLE(PyObject *op) {
   16|     18|    return _PyFloat_CAST(op)->ob_fval;
  ------------------
  |  |   11|     18|    (assert(PyFloat_Check(op)), _Py_CAST(PyFloatObject*, op))
  |  |  ------------------
  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (16:12): [True: 18, False: 0]
  ------------------
   17|     18|}

ceval.c:PyFunction_GET_CODE:
   90|  1.24k|static inline PyObject* PyFunction_GET_CODE(PyObject *func) {
   91|  1.24k|    return _PyFunction_CAST(func)->func_code;
  ------------------
  |  |   86|  1.24k|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|  1.24k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (91:12): [True: 1.24k, False: 0]
  ------------------
   92|  1.24k|}
specialize.c:PyFunction_GET_CODE:
   90|     10|static inline PyObject* PyFunction_GET_CODE(PyObject *func) {
   91|     10|    return _PyFunction_CAST(func)->func_code;
  ------------------
  |  |   86|     10|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (91:12): [True: 10, False: 0]
  ------------------
   92|     10|}

listobject.c:PyList_GET_SIZE:
   30|  1.32k|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|  1.32k|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|  1.32k|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 1.32k, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|  1.32k|    return Py_SIZE(list);
  ------------------
  |  |  214|  1.32k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|  1.32k|#endif
   37|  1.32k|}
listobject.c:PyList_SET_ITEM:
   43|  10.1k|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|  10.1k|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|  10.1k|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  10.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 10.1k, False: 0]
  ------------------
   45|  10.1k|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 10.1k, False: 0]
  ------------------
   46|  10.1k|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 10.1k, False: 0]
  ------------------
   47|  10.1k|    list->ob_item[index] = value;
   48|  10.1k|}
dictobject.c:PyList_SET_ITEM:
   43|  1.74k|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|  1.74k|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|  1.74k|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.74k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 1.74k, False: 0]
  ------------------
   45|  1.74k|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 1.74k, False: 0]
  ------------------
   46|  1.74k|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 1.74k, False: 0]
  ------------------
   47|  1.74k|    list->ob_item[index] = value;
   48|  1.74k|}
typeobject.c:PyList_SET_ITEM:
   43|     34|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|     34|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|     34|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 34, False: 0]
  ------------------
   45|     34|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 34, False: 0]
  ------------------
   46|     34|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 34, False: 0]
  ------------------
   47|     34|    list->ob_item[index] = value;
   48|     34|}
unicodeobject.c:PyList_GET_SIZE:
   30|     82|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|     82|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|     82|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 82, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|     82|    return Py_SIZE(list);
  ------------------
  |  |  214|     82|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|     82|#endif
   37|     82|}
unicodeobject.c:PyList_SET_ITEM:
   43|      8|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|      8|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|      8|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 8, False: 0]
  ------------------
   45|      8|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 8, False: 0]
  ------------------
   46|      8|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 8, False: 0]
  ------------------
   47|      8|    list->ob_item[index] = value;
   48|      8|}
_warnings.c:PyList_SET_ITEM:
   43|     10|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|     10|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|     10|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 10, False: 0]
  ------------------
   45|     10|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 10, False: 0]
  ------------------
   46|     10|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 10, False: 0]
  ------------------
   47|     10|    list->ob_item[index] = value;
   48|     10|}
ceval.c:PyList_GET_SIZE:
   30|  1.17k|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|  1.17k|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|  1.17k|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.17k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 1.17k, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|  1.17k|    return Py_SIZE(list);
  ------------------
  |  |  214|  1.17k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.17k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.17k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|  1.17k|#endif
   37|  1.17k|}
ceval.c:PyList_SET_ITEM:
   43|    934|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|    934|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|    934|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    934|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 934, False: 0]
  ------------------
   45|    934|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 934, False: 0]
  ------------------
   46|    934|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 934, False: 0]
  ------------------
   47|    934|    list->ob_item[index] = value;
   48|    934|}
gc.c:PyList_GET_SIZE:
   30|     16|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|     16|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|     16|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 16, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|     16|    return Py_SIZE(list);
  ------------------
  |  |  214|     16|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|     16|#endif
   37|     16|}
import.c:PyList_GET_SIZE:
   30|     14|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|     14|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|     14|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 14, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|     14|    return Py_SIZE(list);
  ------------------
  |  |  214|     14|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|     14|#endif
   37|     14|}
initconfig.c:PyList_SET_ITEM:
   43|      8|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|      8|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|      8|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 8, False: 0]
  ------------------
   45|      8|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 8, False: 0]
  ------------------
   46|      8|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 8, False: 0]
  ------------------
   47|      8|    list->ob_item[index] = value;
   48|      8|}
initconfig.c:PyList_GET_SIZE:
   30|      2|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|      2|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|      2|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 2, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|      2|    return Py_SIZE(list);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|      2|#endif
   37|      2|}
marshal.c:PyList_GET_SIZE:
   30|  15.7k|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|  15.7k|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|  15.7k|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  15.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 15.7k, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|  15.7k|    return Py_SIZE(list);
  ------------------
  |  |  214|  15.7k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  15.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|  15.7k|#endif
   37|  15.7k|}
marshal.c:PyList_SET_ITEM:
   43|     16|PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   44|     16|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|     16|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (44:26): [True: 16, False: 0]
  ------------------
   45|     16|    assert(0 <= index);
  ------------------
  |  Branch (45:5): [True: 16, False: 0]
  ------------------
   46|     16|    assert(index < list->allocated);
  ------------------
  |  Branch (46:5): [True: 16, False: 0]
  ------------------
   47|     16|    list->ob_item[index] = value;
   48|     16|}
_abc.c:PyList_GET_SIZE:
   30|    654|static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {
   31|    654|    PyListObject *list = _PyList_CAST(op);
  ------------------
  |  |   26|    654|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    654|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (31:26): [True: 654, False: 0]
  ------------------
   32|       |#ifdef Py_GIL_DISABLED
   33|       |    return _Py_atomic_load_ssize_relaxed(&(_PyVarObject_CAST(list)->ob_size));
   34|       |#else
   35|    654|    return Py_SIZE(list);
  ------------------
  |  |  214|    654|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    654|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    654|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|    654|#endif
   37|    654|}

longobject.c:_PyLong_IsCompact:
  122|  4.02k|_PyLong_IsCompact(const PyLongObject* op) {
  123|  4.02k|    assert(PyType_HasFeature(op->ob_base.ob_type, Py_TPFLAGS_LONG_SUBCLASS));
  ------------------
  |  Branch (123:5): [True: 4.02k, False: 0]
  ------------------
  124|  4.02k|    return op->long_value.lv_tag < (2 << _PyLong_NON_SIZE_BITS);
  ------------------
  |  |  118|  4.02k|#define _PyLong_NON_SIZE_BITS 3
  ------------------
  125|  4.02k|}
longobject.c:_PyLong_CompactValue:
  131|    908|{
  132|    908|    Py_ssize_t sign;
  133|    908|    assert(PyType_HasFeature(op->ob_base.ob_type, Py_TPFLAGS_LONG_SUBCLASS));
  ------------------
  |  Branch (133:5): [True: 908, False: 0]
  ------------------
  134|    908|    assert(PyUnstable_Long_IsCompact(op));
  ------------------
  |  Branch (134:5): [True: 908, False: 0]
  ------------------
  135|    908|    sign = 1 - (op->long_value.lv_tag & _PyLong_SIGN_MASK);
  ------------------
  |  |  117|    908|#define _PyLong_SIGN_MASK 3
  ------------------
  136|    908|    if (sign == 0) {
  ------------------
  |  Branch (136:9): [True: 260, False: 648]
  ------------------
  137|       |        // gh-147988: Make sure that the digit is zero.
  138|       |        // It helps detecting the usage of uninitialized digits.
  139|    260|        assert(op->long_value.ob_digit[0] == 0);
  ------------------
  |  Branch (139:9): [True: 260, False: 0]
  ------------------
  140|    260|    }
  141|    908|    return sign * (Py_ssize_t)op->long_value.ob_digit[0];
  142|    908|}
ceval.c:_PyLong_CompactValue:
  131|    490|{
  132|    490|    Py_ssize_t sign;
  133|    490|    assert(PyType_HasFeature(op->ob_base.ob_type, Py_TPFLAGS_LONG_SUBCLASS));
  ------------------
  |  Branch (133:5): [True: 490, False: 0]
  ------------------
  134|    490|    assert(PyUnstable_Long_IsCompact(op));
  ------------------
  |  Branch (134:5): [True: 490, False: 0]
  ------------------
  135|    490|    sign = 1 - (op->long_value.lv_tag & _PyLong_SIGN_MASK);
  ------------------
  |  |  117|    490|#define _PyLong_SIGN_MASK 3
  ------------------
  136|    490|    if (sign == 0) {
  ------------------
  |  Branch (136:9): [True: 270, False: 220]
  ------------------
  137|       |        // gh-147988: Make sure that the digit is zero.
  138|       |        // It helps detecting the usage of uninitialized digits.
  139|    270|        assert(op->long_value.ob_digit[0] == 0);
  ------------------
  |  Branch (139:9): [True: 270, False: 0]
  ------------------
  140|    270|    }
  141|    490|    return sign * (Py_ssize_t)op->long_value.ob_digit[0];
  142|    490|}
ceval.c:_PyLong_IsCompact:
  122|  2.44k|_PyLong_IsCompact(const PyLongObject* op) {
  123|  2.44k|    assert(PyType_HasFeature(op->ob_base.ob_type, Py_TPFLAGS_LONG_SUBCLASS));
  ------------------
  |  Branch (123:5): [True: 2.44k, False: 0]
  ------------------
  124|  2.44k|    return op->long_value.lv_tag < (2 << _PyLong_NON_SIZE_BITS);
  ------------------
  |  |  118|  2.44k|#define _PyLong_NON_SIZE_BITS 3
  ------------------
  125|  2.44k|}
specialize.c:_PyLong_CompactValue:
  131|     20|{
  132|     20|    Py_ssize_t sign;
  133|     20|    assert(PyType_HasFeature(op->ob_base.ob_type, Py_TPFLAGS_LONG_SUBCLASS));
  ------------------
  |  Branch (133:5): [True: 20, False: 0]
  ------------------
  134|     20|    assert(PyUnstable_Long_IsCompact(op));
  ------------------
  |  Branch (134:5): [True: 20, False: 0]
  ------------------
  135|     20|    sign = 1 - (op->long_value.lv_tag & _PyLong_SIGN_MASK);
  ------------------
  |  |  117|     20|#define _PyLong_SIGN_MASK 3
  ------------------
  136|     20|    if (sign == 0) {
  ------------------
  |  Branch (136:9): [True: 0, False: 20]
  ------------------
  137|       |        // gh-147988: Make sure that the digit is zero.
  138|       |        // It helps detecting the usage of uninitialized digits.
  139|      0|        assert(op->long_value.ob_digit[0] == 0);
  ------------------
  |  Branch (139:9): [True: 0, False: 0]
  ------------------
  140|      0|    }
  141|     20|    return sign * (Py_ssize_t)op->long_value.ob_digit[0];
  142|     20|}
specialize.c:_PyLong_IsCompact:
  122|     82|_PyLong_IsCompact(const PyLongObject* op) {
  123|     82|    assert(PyType_HasFeature(op->ob_base.ob_type, Py_TPFLAGS_LONG_SUBCLASS));
  ------------------
  |  Branch (123:5): [True: 82, False: 0]
  ------------------
  124|     82|    return op->long_value.lv_tag < (2 << _PyLong_NON_SIZE_BITS);
  ------------------
  |  |  118|     82|#define _PyLong_NON_SIZE_BITS 3
  ------------------
  125|     82|}

typeobject.c:PyCFunction_GET_FUNCTION:
   40|    164|static inline PyCFunction PyCFunction_GET_FUNCTION(PyObject *func) {
   41|    164|    return _PyCFunctionObject_CAST(func)->m_ml->ml_meth;
  ------------------
  |  |   17|    164|    (assert(PyCFunction_Check(func)), \
  |  |   18|    164|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (41:12): [True: 164, False: 0]
  ------------------
   42|    164|}
ceval.c:PyCFunction_GET_FUNCTION:
   40|  1.26k|static inline PyCFunction PyCFunction_GET_FUNCTION(PyObject *func) {
   41|  1.26k|    return _PyCFunctionObject_CAST(func)->m_ml->ml_meth;
  ------------------
  |  |   17|  1.26k|    (assert(PyCFunction_Check(func)), \
  |  |   18|  1.26k|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (41:12): [True: 1.26k, False: 0]
  ------------------
   42|  1.26k|}
ceval.c:PyCFunction_GET_SELF:
   45|  1.26k|static inline PyObject* PyCFunction_GET_SELF(PyObject *func_obj) {
   46|  1.26k|    PyCFunctionObject *func = _PyCFunctionObject_CAST(func_obj);
  ------------------
  |  |   17|  1.26k|    (assert(PyCFunction_Check(func)), \
  |  |   18|  1.26k|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (46:31): [True: 1.26k, False: 0]
  ------------------
   47|  1.26k|    if (func->m_ml->ml_flags & METH_STATIC) {
  ------------------
  |  |  105|  1.26k|#define METH_STATIC   0x0020
  ------------------
  |  Branch (47:9): [True: 0, False: 1.26k]
  ------------------
   48|      0|        return _Py_NULL;
  ------------------
  |  |   57|      0|#  define _Py_NULL NULL
  ------------------
   49|      0|    }
   50|  1.26k|    return func->m_self;
   51|  1.26k|}
ceval.c:PyCFunction_GET_FLAGS:
   54|  1.26k|static inline int PyCFunction_GET_FLAGS(PyObject *func) {
   55|  1.26k|    return _PyCFunctionObject_CAST(func)->m_ml->ml_flags;
  ------------------
  |  |   17|  1.26k|    (assert(PyCFunction_Check(func)), \
  |  |   18|  1.26k|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (55:12): [True: 1.26k, False: 0]
  ------------------
   56|  1.26k|}
specialize.c:PyCFunction_GET_FUNCTION:
   40|    132|static inline PyCFunction PyCFunction_GET_FUNCTION(PyObject *func) {
   41|    132|    return _PyCFunctionObject_CAST(func)->m_ml->ml_meth;
  ------------------
  |  |   17|    132|    (assert(PyCFunction_Check(func)), \
  |  |   18|    132|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (41:12): [True: 132, False: 0]
  ------------------
   42|    132|}
specialize.c:PyCFunction_GET_FLAGS:
   54|    132|static inline int PyCFunction_GET_FLAGS(PyObject *func) {
   55|    132|    return _PyCFunctionObject_CAST(func)->m_ml->ml_flags;
  ------------------
  |  |   17|    132|    (assert(PyCFunction_Check(func)), \
  |  |   18|    132|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (55:12): [True: 132, False: 0]
  ------------------
   56|    132|}
methodobject.c:PyCFunction_GET_FUNCTION:
   40|  1.71k|static inline PyCFunction PyCFunction_GET_FUNCTION(PyObject *func) {
   41|  1.71k|    return _PyCFunctionObject_CAST(func)->m_ml->ml_meth;
  ------------------
  |  |   17|  1.71k|    (assert(PyCFunction_Check(func)), \
  |  |   18|  1.71k|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|  1.71k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (41:12): [True: 1.71k, False: 0]
  ------------------
   42|  1.71k|}
methodobject.c:PyCFunction_GET_SELF:
   45|  1.71k|static inline PyObject* PyCFunction_GET_SELF(PyObject *func_obj) {
   46|  1.71k|    PyCFunctionObject *func = _PyCFunctionObject_CAST(func_obj);
  ------------------
  |  |   17|  1.71k|    (assert(PyCFunction_Check(func)), \
  |  |   18|  1.71k|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|  1.71k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (46:31): [True: 1.71k, False: 0]
  ------------------
   47|  1.71k|    if (func->m_ml->ml_flags & METH_STATIC) {
  ------------------
  |  |  105|  1.71k|#define METH_STATIC   0x0020
  ------------------
  |  Branch (47:9): [True: 0, False: 1.71k]
  ------------------
   48|      0|        return _Py_NULL;
  ------------------
  |  |   57|      0|#  define _Py_NULL NULL
  ------------------
   49|      0|    }
   50|  1.71k|    return func->m_self;
   51|  1.71k|}
methodobject.c:PyCFunction_GET_FLAGS:
   54|     82|static inline int PyCFunction_GET_FLAGS(PyObject *func) {
   55|     82|    return _PyCFunctionObject_CAST(func)->m_ml->ml_flags;
  ------------------
  |  |   17|     82|    (assert(PyCFunction_Check(func)), \
  |  |   18|     82|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (55:12): [True: 82, False: 0]
  ------------------
   56|     82|}
methodobject.c:PyCFunction_GET_CLASS:
   59|  2.63k|static inline PyTypeObject* PyCFunction_GET_CLASS(PyObject *func_obj) {
   60|  2.63k|    PyCFunctionObject *func = _PyCFunctionObject_CAST(func_obj);
  ------------------
  |  |   17|  2.63k|    (assert(PyCFunction_Check(func)), \
  |  |   18|  2.63k|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|  2.63k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (60:31): [True: 2.63k, False: 0]
  ------------------
   61|  2.63k|    if (func->m_ml->ml_flags & METH_METHOD) {
  ------------------
  |  |  133|  2.63k|#define METH_METHOD 0x0200
  ------------------
  |  Branch (61:9): [True: 4, False: 2.63k]
  ------------------
   62|      4|        return _PyCMethodObject_CAST(func)->mm_class;
  ------------------
  |  |   29|      4|    (assert(PyCMethod_Check(func)), \
  |  |   30|      4|     _Py_CAST(PyCMethodObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (62:16): [True: 4, False: 0]
  ------------------
   63|      4|    }
   64|  2.63k|    return _Py_NULL;
  ------------------
  |  |   57|  2.63k|#  define _Py_NULL NULL
  ------------------
   65|  2.63k|}

object.c:_PyObject_SIZE:
    5|    170|static inline size_t _PyObject_SIZE(PyTypeObject *type) {
    6|    170|    return _Py_STATIC_CAST(size_t, type->tp_basicsize);
  ------------------
  |  |   34|    170|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
    7|    170|}
object.c:_PyObject_VAR_SIZE:
   23|  1.48k|static inline size_t _PyObject_VAR_SIZE(PyTypeObject *type, Py_ssize_t nitems) {
   24|  1.48k|    size_t size = _Py_STATIC_CAST(size_t, type->tp_basicsize);
  ------------------
  |  |   34|  1.48k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
   25|  1.48k|    size += _Py_STATIC_CAST(size_t, nitems) * _Py_STATIC_CAST(size_t, type->tp_itemsize);
  ------------------
  |  |   34|  1.48k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
                  size += _Py_STATIC_CAST(size_t, nitems) * _Py_STATIC_CAST(size_t, type->tp_itemsize);
  ------------------
  |  |   34|  1.48k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
   26|  1.48k|    return _Py_SIZE_ROUND_UP(size, SIZEOF_VOID_P);
  ------------------
  |  |  213|  1.48k|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  214|  1.48k|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  ------------------
   27|  1.48k|}
typeobject.c:_PyObject_VAR_SIZE:
   23|  11.1k|static inline size_t _PyObject_VAR_SIZE(PyTypeObject *type, Py_ssize_t nitems) {
   24|  11.1k|    size_t size = _Py_STATIC_CAST(size_t, type->tp_basicsize);
  ------------------
  |  |   34|  11.1k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
   25|  11.1k|    size += _Py_STATIC_CAST(size_t, nitems) * _Py_STATIC_CAST(size_t, type->tp_itemsize);
  ------------------
  |  |   34|  11.1k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
                  size += _Py_STATIC_CAST(size_t, nitems) * _Py_STATIC_CAST(size_t, type->tp_itemsize);
  ------------------
  |  |   34|  11.1k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
   26|  11.1k|    return _Py_SIZE_ROUND_UP(size, SIZEOF_VOID_P);
  ------------------
  |  |  213|  11.1k|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  214|  11.1k|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  ------------------
   27|  11.1k|}
gc.c:_PyObject_SIZE:
    5|  5.03k|static inline size_t _PyObject_SIZE(PyTypeObject *type) {
    6|  5.03k|    return _Py_STATIC_CAST(size_t, type->tp_basicsize);
  ------------------
  |  |   34|  5.03k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
    7|  5.03k|}
gc.c:_PyObject_VAR_SIZE:
   23|  4.87k|static inline size_t _PyObject_VAR_SIZE(PyTypeObject *type, Py_ssize_t nitems) {
   24|  4.87k|    size_t size = _Py_STATIC_CAST(size_t, type->tp_basicsize);
  ------------------
  |  |   34|  4.87k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
   25|  4.87k|    size += _Py_STATIC_CAST(size_t, nitems) * _Py_STATIC_CAST(size_t, type->tp_itemsize);
  ------------------
  |  |   34|  4.87k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
                  size += _Py_STATIC_CAST(size_t, nitems) * _Py_STATIC_CAST(size_t, type->tp_itemsize);
  ------------------
  |  |   34|  4.87k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
   26|  4.87k|    return _Py_SIZE_ROUND_UP(size, SIZEOF_VOID_P);
  ------------------
  |  |  213|  4.87k|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  214|  4.87k|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  ------------------
   27|  4.87k|}

obmalloc.c:_Py_atomic_compare_exchange_uint8:
  105|      4|{ return __atomic_compare_exchange_n(obj, expected, desired, 0,
  106|      4|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
typeobject.c:_Py_atomic_load_uint_relaxed:
  379|    410|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
typeobject.c:_Py_atomic_compare_exchange_uint:
  100|    410|{ return __atomic_compare_exchange_n(obj, expected, desired, 0,
  101|    410|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
typeobject.c:_Py_atomic_store_ptr_relaxed:
  509|  5.67k|{ __atomic_store_n((void **)obj, value, __ATOMIC_RELAXED); }
typeobject.c:_Py_atomic_store_uint32_release:
  593|  2.83k|{ __atomic_store_n(obj, value, __ATOMIC_RELEASE); }
typeobject.c:_Py_atomic_load_int64:
  264|    414|{ return __atomic_load_n(obj, __ATOMIC_SEQ_CST); }
typeobject.c:_Py_atomic_add_int64:
   31|    414|{ return __atomic_fetch_add(obj, value, __ATOMIC_SEQ_CST); }
typeobject.c:_Py_atomic_compare_exchange_uint8:
  105|     24|{ return __atomic_compare_exchange_n(obj, expected, desired, 0,
  106|     24|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
ceval.c:_Py_atomic_load_uintptr_relaxed:
  375|  10.0k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
gc.c:_Py_atomic_compare_exchange_int:
   70|      4|{ return __atomic_compare_exchange_n(obj, expected, desired, 0,
   71|      4|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
gc.c:_Py_atomic_store_int:
  402|      4|{ __atomic_store_n(obj, value, __ATOMIC_SEQ_CST); }
gc.c:_Py_atomic_load_uintptr_relaxed:
  375|  3.00k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
gc.c:_Py_atomic_or_uintptr:
  241|      4|{ return __atomic_fetch_or(obj, value, __ATOMIC_SEQ_CST); }
gc.c:_Py_atomic_load_int_relaxed:
  307|  3.00k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
getargs.c:_Py_atomic_load_uint8:
  272|      2|{ return __atomic_load_n(obj, __ATOMIC_SEQ_CST); }
getargs.c:_Py_atomic_load_ptr:
  300|      2|{ return (void *)__atomic_load_n((void * const *)obj, __ATOMIC_SEQ_CST); }
getargs.c:_Py_atomic_compare_exchange_ptr:
  135|      2|{ return __atomic_compare_exchange_n((void **)obj, (void **)expected, desired, 0,
  136|      2|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
ceval_gil.c:_Py_atomic_load_int_acquire:
  589|    660|{ return __atomic_load_n(obj, __ATOMIC_ACQUIRE); }
ceval_gil.c:_Py_atomic_load_int_relaxed:
  307|  1.31k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
ceval_gil.c:_Py_atomic_load_ptr_relaxed:
  387|    656|{ return (void *)__atomic_load_n((void * const *)obj, __ATOMIC_RELAXED); }
ceval_gil.c:_Py_atomic_store_ptr_relaxed:
  509|    658|{ __atomic_store_n((void **)obj, value, __ATOMIC_RELAXED); }
ceval_gil.c:_Py_atomic_store_int_release:
  573|      2|{ __atomic_store_n(obj, value, __ATOMIC_RELEASE); }
ceval_gil.c:_Py_atomic_store_int_relaxed:
  461|  1.31k|{ __atomic_store_n(obj, value, __ATOMIC_RELAXED); }
ceval_gil.c:_Py_atomic_and_uintptr:
  218|    660|{ return __atomic_fetch_and(obj, value, __ATOMIC_SEQ_CST); }
ceval_gil.c:_Py_atomic_load_int32_relaxed:
  347|  1.31k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
ceval_gil.c:_Py_atomic_load_uintptr_relaxed:
  375|  1.97k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
import.c:_Py_atomic_add_ssize:
   63|     32|{ return __atomic_fetch_add(obj, value, __ATOMIC_SEQ_CST); }
import.c:_Py_atomic_compare_exchange_uint8:
  105|     72|{ return __atomic_compare_exchange_n(obj, expected, desired, 0,
  106|     72|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
lock.c:_Py_atomic_load_uint8_relaxed:
  359|    120|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
lock.c:_Py_atomic_compare_exchange_uint8:
  105|    626|{ return __atomic_compare_exchange_n(obj, expected, desired, 0,
  106|    626|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
lock.c:_Py_atomic_load_uint8:
  272|      2|{ return __atomic_load_n(obj, __ATOMIC_SEQ_CST); }
lock.c:_Py_atomic_exchange_uint8:
  171|      2|{ return __atomic_exchange_n(obj, value, __ATOMIC_SEQ_CST); }
lock.c:_Py_atomic_load_ullong_relaxed:
  391|    816|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
lock.c:_Py_atomic_store_ullong_relaxed:
  518|    624|{ __atomic_store_n(obj, value, __ATOMIC_RELAXED); }
pylifecycle.c:_Py_atomic_load_int:
  248|  2.24k|{ return __atomic_load_n(obj, __ATOMIC_SEQ_CST); }
pylifecycle.c:_Py_atomic_store_ptr_relaxed:
  509|      2|{ __atomic_store_n((void **)obj, value, __ATOMIC_RELAXED); }
pylifecycle.c:_Py_atomic_store_uint64_relaxed:
  497|      2|{ __atomic_store_n(obj, value, __ATOMIC_RELAXED); }
pylifecycle.c:_Py_atomic_store_int:
  402|      4|{ __atomic_store_n(obj, value, __ATOMIC_SEQ_CST); }
pystate.c:_Py_atomic_load_int:
  248|      4|{ return __atomic_load_n(obj, __ATOMIC_SEQ_CST); }
pystate.c:_Py_atomic_compare_exchange_uint8:
  105|      8|{ return __atomic_compare_exchange_n(obj, expected, desired, 0,
  106|      8|                                     __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); }
pystate.c:_Py_atomic_load_uintptr_relaxed:
  375|      2|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
pystate.c:_Py_atomic_load_int_relaxed:
  307|  2.62k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
pystate.c:_Py_atomic_exchange_ptr:
  195|      2|{ return __atomic_exchange_n((void **)obj, value, __ATOMIC_SEQ_CST); }
signalmodule.c:_Py_atomic_store_int_relaxed:
  461|    128|{ __atomic_store_n(obj, value, __ATOMIC_RELAXED); }
signalmodule.c:_Py_atomic_load_uintptr_relaxed:
  375|  1.99k|{ return __atomic_load_n(obj, __ATOMIC_RELAXED); }
signalmodule.c:_Py_atomic_load_int:
  248|  1.99k|{ return __atomic_load_n(obj, __ATOMIC_SEQ_CST); }
codeobject.c:_Py_atomic_add_uint64:
   55|    276|{ return __atomic_fetch_add(obj, value, __ATOMIC_SEQ_CST); }

obmalloc.c:_PyMutex_Lock:
   53|      2|{
   54|      2|    uint8_t expected = _Py_UNLOCKED;
  ------------------
  |  |    9|      2|#define _Py_UNLOCKED    0
  ------------------
   55|      2|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_LOCKED)) {
  ------------------
  |  |   10|      2|#define _Py_LOCKED      1
  ------------------
  |  Branch (55:9): [True: 0, False: 2]
  ------------------
   56|      0|        PyMutex_Lock(m);
   57|      0|    }
   58|      2|}
obmalloc.c:_PyMutex_Unlock:
   64|      2|{
   65|      2|    uint8_t expected = _Py_LOCKED;
  ------------------
  |  |   10|      2|#define _Py_LOCKED      1
  ------------------
   66|      2|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_UNLOCKED)) {
  ------------------
  |  |    9|      2|#define _Py_UNLOCKED    0
  ------------------
  |  Branch (66:9): [True: 0, False: 2]
  ------------------
   67|      0|        PyMutex_Unlock(m);
   68|      0|    }
   69|      2|}
typeobject.c:_PyMutex_Lock:
   53|     12|{
   54|     12|    uint8_t expected = _Py_UNLOCKED;
  ------------------
  |  |    9|     12|#define _Py_UNLOCKED    0
  ------------------
   55|     12|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_LOCKED)) {
  ------------------
  |  |   10|     12|#define _Py_LOCKED      1
  ------------------
  |  Branch (55:9): [True: 0, False: 12]
  ------------------
   56|      0|        PyMutex_Lock(m);
   57|      0|    }
   58|     12|}
typeobject.c:_PyMutex_Unlock:
   64|     12|{
   65|     12|    uint8_t expected = _Py_LOCKED;
  ------------------
  |  |   10|     12|#define _Py_LOCKED      1
  ------------------
   66|     12|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_UNLOCKED)) {
  ------------------
  |  |    9|     12|#define _Py_UNLOCKED    0
  ------------------
  |  Branch (66:9): [True: 0, False: 12]
  ------------------
   67|      0|        PyMutex_Unlock(m);
   68|      0|    }
   69|     12|}
import.c:_PyMutex_Lock:
   53|     36|{
   54|     36|    uint8_t expected = _Py_UNLOCKED;
  ------------------
  |  |    9|     36|#define _Py_UNLOCKED    0
  ------------------
   55|     36|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_LOCKED)) {
  ------------------
  |  |   10|     36|#define _Py_LOCKED      1
  ------------------
  |  Branch (55:9): [True: 0, False: 36]
  ------------------
   56|      0|        PyMutex_Lock(m);
   57|      0|    }
   58|     36|}
import.c:_PyMutex_Unlock:
   64|     36|{
   65|     36|    uint8_t expected = _Py_LOCKED;
  ------------------
  |  |   10|     36|#define _Py_LOCKED      1
  ------------------
   66|     36|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_UNLOCKED)) {
  ------------------
  |  |    9|     36|#define _Py_UNLOCKED    0
  ------------------
  |  Branch (66:9): [True: 0, False: 36]
  ------------------
   67|      0|        PyMutex_Unlock(m);
   68|      0|    }
   69|     36|}
lock.c:_PyMutex_Lock:
   53|    192|{
   54|    192|    uint8_t expected = _Py_UNLOCKED;
  ------------------
  |  |    9|    192|#define _Py_UNLOCKED    0
  ------------------
   55|    192|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_LOCKED)) {
  ------------------
  |  |   10|    192|#define _Py_LOCKED      1
  ------------------
  |  Branch (55:9): [True: 0, False: 192]
  ------------------
   56|      0|        PyMutex_Lock(m);
   57|      0|    }
   58|    192|}
lock.c:_PyMutex_Unlock:
   64|    312|{
   65|    312|    uint8_t expected = _Py_LOCKED;
  ------------------
  |  |   10|    312|#define _Py_LOCKED      1
  ------------------
   66|    312|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_UNLOCKED)) {
  ------------------
  |  |    9|    312|#define _Py_UNLOCKED    0
  ------------------
  |  Branch (66:9): [True: 0, False: 312]
  ------------------
   67|      0|        PyMutex_Unlock(m);
   68|      0|    }
   69|    312|}
pystate.c:_PyMutex_Unlock:
   64|      4|{
   65|      4|    uint8_t expected = _Py_LOCKED;
  ------------------
  |  |   10|      4|#define _Py_LOCKED      1
  ------------------
   66|      4|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_UNLOCKED)) {
  ------------------
  |  |    9|      4|#define _Py_UNLOCKED    0
  ------------------
  |  Branch (66:9): [True: 0, False: 4]
  ------------------
   67|      0|        PyMutex_Unlock(m);
   68|      0|    }
   69|      4|}

setobject.c:PySet_GET_SIZE:
   64|      8|static inline Py_ssize_t PySet_GET_SIZE(PyObject *so) {
   65|       |#ifdef Py_GIL_DISABLED
   66|       |    return _Py_atomic_load_ssize_relaxed(&(_PySet_CAST(so)->used));
   67|       |#else
   68|      8|    return _PySet_CAST(so)->used;
  ------------------
  |  |   62|      8|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (68:12): [True: 8, False: 0]
  |  Branch (68:12): [True: 0, False: 0]
  |  Branch (68:12): [True: 0, False: 0]
  |  Branch (68:12): [True: 0, False: 0]
  ------------------
   69|      8|#endif
   70|      8|}
_abc.c:PySet_GET_SIZE:
   64|     40|static inline Py_ssize_t PySet_GET_SIZE(PyObject *so) {
   65|       |#ifdef Py_GIL_DISABLED
   66|       |    return _Py_atomic_load_ssize_relaxed(&(_PySet_CAST(so)->used));
   67|       |#else
   68|     40|    return _PySet_CAST(so)->used;
  ------------------
  |  |   62|     40|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (68:12): [True: 40, False: 0]
  |  Branch (68:12): [True: 0, False: 0]
  |  Branch (68:12): [True: 0, False: 0]
  |  Branch (68:12): [True: 0, False: 0]
  ------------------
   69|     40|#endif
   70|     40|}

call.c:PyTuple_GET_SIZE:
   23|    746|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|    746|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    746|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    746|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 746, False: 0]
  ------------------
   25|    746|    return Py_SIZE(tuple);
  ------------------
  |  |  214|    746|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    746|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    746|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|    746|}
call.c:PyTuple_SET_ITEM:
   33|    122|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|    122|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    122|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 122, False: 0]
  ------------------
   35|    122|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 122, False: 0]
  ------------------
   36|    122|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 122, False: 0]
  ------------------
   37|    122|    tuple->ob_item[index] = value;
   38|    122|}
exceptions.c:PyTuple_GET_SIZE:
   23|     54|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|     54|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|     54|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     54|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 54, False: 0]
  ------------------
   25|     54|    return Py_SIZE(tuple);
  ------------------
  |  |  214|     54|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     54|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     54|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|     54|}
listobject.c:PyTuple_GET_SIZE:
   23|    252|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|    252|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    252|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 252, False: 0]
  ------------------
   25|    252|    return Py_SIZE(tuple);
  ------------------
  |  |  214|    252|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    252|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|    252|}
dictobject.c:PyTuple_SET_ITEM:
   33|    132|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|    132|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    132|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 132, False: 0]
  ------------------
   35|    132|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 132, False: 0]
  ------------------
   36|    132|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 132, False: 0]
  ------------------
   37|    132|    tuple->ob_item[index] = value;
   38|    132|}
dictobject.c:PyTuple_GET_SIZE:
   23|    270|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|    270|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    270|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    270|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 270, False: 0]
  ------------------
   25|    270|    return Py_SIZE(tuple);
  ------------------
  |  |  214|    270|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    270|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    270|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|    270|}
moduleobject.c:PyTuple_GET_SIZE:
   23|     28|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|     28|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|     28|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 28, False: 0]
  ------------------
   25|     28|    return Py_SIZE(tuple);
  ------------------
  |  |  214|     28|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|     28|}
structseq.c:PyTuple_SET_ITEM:
   33|    210|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|    210|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    210|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 210, False: 0]
  ------------------
   35|    210|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 210, False: 0]
  ------------------
   36|    210|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 210, False: 0]
  ------------------
   37|    210|    tuple->ob_item[index] = value;
   38|    210|}
tupleobject.c:PyTuple_GET_SIZE:
   23|    696|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|    696|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    696|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    696|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 696, False: 0]
  ------------------
   25|    696|    return Py_SIZE(tuple);
  ------------------
  |  |  214|    696|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    696|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    696|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|    696|}
tupleobject.c:PyTuple_SET_ITEM:
   33|      8|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|      8|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      8|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 8, False: 0]
  ------------------
   35|      8|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 8, False: 0]
  ------------------
   36|      8|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 8, False: 0]
  ------------------
   37|      8|    tuple->ob_item[index] = value;
   38|      8|}
typeobject.c:PyTuple_GET_SIZE:
   23|  88.7k|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|  88.7k|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|  88.7k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  88.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 88.7k, False: 0]
  ------------------
   25|  88.7k|    return Py_SIZE(tuple);
  ------------------
  |  |  214|  88.7k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  88.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  88.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|  88.7k|}
typeobject.c:PyTuple_SET_ITEM:
   33|  1.91k|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|  1.91k|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|  1.91k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.91k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 1.91k, False: 0]
  ------------------
   35|  1.91k|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 1.91k, False: 0]
  ------------------
   36|  1.91k|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 1.91k, False: 0]
  ------------------
   37|  1.91k|    tuple->ob_item[index] = value;
   38|  1.91k|}
unicodeobject.c:PyTuple_GET_SIZE:
   23|     56|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|     56|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|     56|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 56, False: 0]
  ------------------
   25|     56|    return Py_SIZE(tuple);
  ------------------
  |  |  214|     56|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|     56|}
unicodeobject.c:PyTuple_SET_ITEM:
   33|    360|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|    360|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    360|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    360|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 360, False: 0]
  ------------------
   35|    360|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 360, False: 0]
  ------------------
   36|    360|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 360, False: 0]
  ------------------
   37|    360|    tuple->ob_item[index] = value;
   38|    360|}
weakrefobject.c:PyTuple_SET_ITEM:
   33|    216|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|    216|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    216|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 216, False: 0]
  ------------------
   35|    216|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 216, False: 0]
  ------------------
   36|    216|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 216, False: 0]
  ------------------
   37|    216|    tuple->ob_item[index] = value;
   38|    216|}
bltinmodule.c:PyTuple_GET_SIZE:
   23|    152|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|    152|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    152|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    152|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 152, False: 0]
  ------------------
   25|    152|    return Py_SIZE(tuple);
  ------------------
  |  |  214|    152|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    152|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    152|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|    152|}
ceval.c:PyTuple_GET_SIZE:
   23|  2.03k|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|  2.03k|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|  2.03k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  2.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 2.03k, False: 0]
  ------------------
   25|  2.03k|    return Py_SIZE(tuple);
  ------------------
  |  |  214|  2.03k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.03k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|  2.03k|}
codecs.c:PyTuple_GET_SIZE:
   23|      2|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|      2|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 2, False: 0]
  ------------------
   25|      2|    return Py_SIZE(tuple);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|      2|}
getargs.c:PyTuple_GET_SIZE:
   23|    858|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|    858|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    858|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    858|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 858, False: 0]
  ------------------
   25|    858|    return Py_SIZE(tuple);
  ------------------
  |  |  214|    858|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    858|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    858|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|    858|}
initconfig.c:PyTuple_GET_SIZE:
   23|      6|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|      6|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      6|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 6, False: 0]
  ------------------
   25|      6|    return Py_SIZE(tuple);
  ------------------
  |  |  214|      6|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|      6|}
initconfig.c:PyTuple_SET_ITEM:
   33|      2|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|      2|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 2, False: 0]
  ------------------
   35|      2|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 2, False: 0]
  ------------------
   36|      2|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 2, False: 0]
  ------------------
   37|      2|    tuple->ob_item[index] = value;
   38|      2|}
marshal.c:PyTuple_SET_ITEM:
   33|  19.8k|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|  19.8k|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|  19.8k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  19.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 19.8k, False: 0]
  ------------------
   35|  19.8k|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 19.8k, False: 0]
  ------------------
   36|  19.8k|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 19.8k, False: 0]
  ------------------
   37|  19.8k|    tuple->ob_item[index] = value;
   38|  19.8k|}
modsupport.c:PyTuple_SET_ITEM:
   33|     74|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|     74|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|     74|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 74, False: 0]
  ------------------
   35|     74|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 74, False: 0]
  ------------------
   36|     74|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 74, False: 0]
  ------------------
   37|     74|    tuple->ob_item[index] = value;
   38|     74|}
specialize.c:PyTuple_GET_SIZE:
   23|     28|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|     28|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|     28|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 28, False: 0]
  ------------------
   25|     28|    return Py_SIZE(tuple);
  ------------------
  |  |  214|     28|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|     28|}
sysmodule.c:PyTuple_SET_ITEM:
   33|    592|PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {
   34|    592|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    592|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    592|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (34:28): [True: 592, False: 0]
  ------------------
   35|    592|    assert(0 <= index);
  ------------------
  |  Branch (35:5): [True: 592, False: 0]
  ------------------
   36|    592|    assert(index < Py_SIZE(tuple));
  ------------------
  |  Branch (36:5): [True: 592, False: 0]
  ------------------
   37|    592|    tuple->ob_item[index] = value;
   38|    592|}
fileio.c:PyTuple_GET_SIZE:
   23|      6|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|      6|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      6|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 6, False: 0]
  ------------------
   25|      6|    return Py_SIZE(tuple);
  ------------------
  |  |  214|      6|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|      6|}
bufferedio.c:PyTuple_GET_SIZE:
   23|      6|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|      6|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      6|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 6, False: 0]
  ------------------
   25|      6|    return Py_SIZE(tuple);
  ------------------
  |  |  214|      6|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|      6|}
textio.c:PyTuple_GET_SIZE:
   23|      6|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|      6|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      6|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 6, False: 0]
  ------------------
   25|      6|    return Py_SIZE(tuple);
  ------------------
  |  |  214|      6|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|      6|}
_abc.c:PyTuple_GET_SIZE:
   23|    688|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|    688|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    688|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    688|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 688, False: 0]
  ------------------
   25|    688|    return Py_SIZE(tuple);
  ------------------
  |  |  214|    688|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    688|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    688|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|    688|}
getpath.c:PyTuple_GET_SIZE:
   23|     26|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|     26|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|     26|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 26, False: 0]
  ------------------
   25|     26|    return Py_SIZE(tuple);
  ------------------
  |  |  214|     26|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|     26|}
bytearrayobject.c:PyTuple_GET_SIZE:
   23|      2|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|      2|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 2, False: 0]
  ------------------
   25|      2|    return Py_SIZE(tuple);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|      2|}
codeobject.c:PyTuple_GET_SIZE:
   23|  11.0k|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|  11.0k|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|  11.0k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  11.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 11.0k, False: 0]
  ------------------
   25|  11.0k|    return Py_SIZE(tuple);
  ------------------
  |  |  214|  11.0k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  11.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  11.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|  11.0k|}
descrobject.c:PyTuple_GET_SIZE:
   23|     74|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|     74|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|     74|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 74, False: 0]
  ------------------
   25|     74|    return Py_SIZE(tuple);
  ------------------
  |  |  214|     74|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     74|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|     74|}
frameobject.c:PyTuple_GET_SIZE:
   23|      2|static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {
   24|      2|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (24:28): [True: 2, False: 0]
  ------------------
   25|      2|    return Py_SIZE(tuple);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   26|      2|}

bytesobject.c:PyUnicode_IS_ASCII:
  224|  1.93k|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|  1.93k|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|  1.93k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  1.93k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 1.93k, False: 0]
  ------------------
  226|  1.93k|}
bytesobject.c:_PyUnicode_DATA:
  278|  1.93k|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|  1.93k|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|  1.93k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.93k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 1.93k, False: 0]
  |  |  ------------------
  ------------------
  280|  1.93k|        return _PyUnicode_COMPACT_DATA(op);
  281|  1.93k|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|  1.93k|}
bytesobject.c:PyUnicode_IS_COMPACT:
  231|  1.93k|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|  1.93k|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|  1.93k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  1.93k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 1.93k, False: 0]
  ------------------
  233|  1.93k|}
bytesobject.c:_PyUnicode_COMPACT_DATA:
  261|  1.93k|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|  1.93k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|  1.93k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.93k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 1.93k, False: 0]
  |  |  ------------------
  ------------------
  263|  1.93k|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|  3.87k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 1.93k, False: 0]
  |  |  ------------------
  ------------------
  264|  1.93k|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
listobject.c:PyUnicode_GET_LENGTH:
  296|  15.4k|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|  15.4k|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|  15.4k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  15.4k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  15.4k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 15.4k, False: 0]
  ------------------
  298|  15.4k|}
listobject.c:_PyUnicode_DATA:
  278|  10.2k|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|  10.2k|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|  10.2k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  10.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 10.2k, False: 0]
  |  |  ------------------
  ------------------
  280|  10.2k|        return _PyUnicode_COMPACT_DATA(op);
  281|  10.2k|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|  10.2k|}
listobject.c:PyUnicode_IS_COMPACT:
  231|  10.2k|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|  10.2k|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|  10.2k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  10.2k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  10.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 10.2k, False: 0]
  ------------------
  233|  10.2k|}
listobject.c:_PyUnicode_COMPACT_DATA:
  261|  10.2k|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|  10.2k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|  10.2k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  10.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 10.2k, False: 0]
  |  |  ------------------
  ------------------
  263|  10.2k|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|  20.4k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 10.2k, False: 0]
  |  |  ------------------
  ------------------
  264|  10.2k|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
listobject.c:PyUnicode_IS_ASCII:
  224|  10.2k|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|  10.2k|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|  10.2k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  10.2k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  10.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 10.2k, False: 0]
  ------------------
  226|  10.2k|}
longobject.c:_PyUnicode_DATA:
  278|     44|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|     44|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|     44|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 44, False: 0]
  |  |  ------------------
  ------------------
  280|     44|        return _PyUnicode_COMPACT_DATA(op);
  281|     44|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|     44|}
longobject.c:PyUnicode_IS_COMPACT:
  231|     44|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|     44|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|     44|    (assert(PyUnicode_Check(op)), \
  |  |  187|     44|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 44, False: 0]
  ------------------
  233|     44|}
longobject.c:_PyUnicode_COMPACT_DATA:
  261|     44|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|     44|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|     44|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 44, False: 0]
  |  |  ------------------
  ------------------
  263|     44|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|     88|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 44, False: 0]
  |  |  ------------------
  ------------------
  264|     44|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
longobject.c:PyUnicode_IS_ASCII:
  224|     44|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|     44|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|     44|    (assert(PyUnicode_Check(op)), \
  |  |  187|     44|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 44, False: 0]
  ------------------
  226|     44|}
dictobject.c:PyUnstable_Unicode_GET_CACHED_HASH:
  303|   155k|PyUnstable_Unicode_GET_CACHED_HASH(PyObject *op) {
  304|       |#ifdef Py_GIL_DISABLED
  305|       |    return _Py_atomic_load_ssize_relaxed(&_PyASCIIObject_CAST(op)->hash);
  306|       |#else
  307|   155k|    return _PyASCIIObject_CAST(op)->hash;
  ------------------
  |  |  186|   155k|    (assert(PyUnicode_Check(op)), \
  |  |  187|   155k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|   155k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (307:12): [True: 155k, False: 0]
  ------------------
  308|   155k|#endif
  309|   155k|}
dictobject.c:PyUnicode_GET_LENGTH:
  296|  5.40k|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|  5.40k|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|  5.40k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  5.40k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  5.40k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 5.40k, False: 0]
  ------------------
  298|  5.40k|}
dictobject.c:_PyUnicode_DATA:
  278|  5.40k|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|  5.40k|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|  5.40k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.40k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.40k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 5.40k, False: 0]
  |  |  ------------------
  ------------------
  280|  5.40k|        return _PyUnicode_COMPACT_DATA(op);
  281|  5.40k|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|  5.40k|}
dictobject.c:PyUnicode_IS_COMPACT:
  231|  5.40k|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|  5.40k|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|  5.40k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  5.40k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  5.40k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 5.40k, False: 0]
  ------------------
  233|  5.40k|}
dictobject.c:_PyUnicode_COMPACT_DATA:
  261|  5.40k|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|  5.40k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|  5.40k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.40k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.40k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 5.40k, False: 0]
  |  |  ------------------
  ------------------
  263|  5.40k|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|  10.8k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 5.40k, False: 0]
  |  |  ------------------
  ------------------
  264|  5.40k|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
dictobject.c:PyUnicode_IS_ASCII:
  224|  5.40k|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|  5.40k|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|  5.40k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  5.40k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  5.40k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 5.40k, False: 0]
  ------------------
  226|  5.40k|}
setobject.c:PyUnstable_Unicode_GET_CACHED_HASH:
  303|  1.36k|PyUnstable_Unicode_GET_CACHED_HASH(PyObject *op) {
  304|       |#ifdef Py_GIL_DISABLED
  305|       |    return _Py_atomic_load_ssize_relaxed(&_PyASCIIObject_CAST(op)->hash);
  306|       |#else
  307|  1.36k|    return _PyASCIIObject_CAST(op)->hash;
  ------------------
  |  |  186|  1.36k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  1.36k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.36k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (307:12): [True: 1.36k, False: 0]
  ------------------
  308|  1.36k|#endif
  309|  1.36k|}
setobject.c:PyUnicode_GET_LENGTH:
  296|      4|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|      4|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|      4|    (assert(PyUnicode_Check(op)), \
  |  |  187|      4|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 4, False: 0]
  ------------------
  298|      4|}
setobject.c:_PyUnicode_DATA:
  278|      4|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|      4|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|      4|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 4, False: 0]
  |  |  ------------------
  ------------------
  280|      4|        return _PyUnicode_COMPACT_DATA(op);
  281|      4|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|      4|}
setobject.c:PyUnicode_IS_COMPACT:
  231|      4|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|      4|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|      4|    (assert(PyUnicode_Check(op)), \
  |  |  187|      4|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 4, False: 0]
  ------------------
  233|      4|}
setobject.c:_PyUnicode_COMPACT_DATA:
  261|      4|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|      4|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|      4|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
  263|      4|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|      8|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 4, False: 0]
  |  |  ------------------
  ------------------
  264|      4|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
setobject.c:PyUnicode_IS_ASCII:
  224|      4|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|      4|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|      4|    (assert(PyUnicode_Check(op)), \
  |  |  187|      4|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 4, False: 0]
  ------------------
  226|      4|}
typeobject.c:PyUnstable_Unicode_GET_CACHED_HASH:
  303|  22.0k|PyUnstable_Unicode_GET_CACHED_HASH(PyObject *op) {
  304|       |#ifdef Py_GIL_DISABLED
  305|       |    return _Py_atomic_load_ssize_relaxed(&_PyASCIIObject_CAST(op)->hash);
  306|       |#else
  307|  22.0k|    return _PyASCIIObject_CAST(op)->hash;
  ------------------
  |  |  186|  22.0k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  22.0k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  22.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (307:12): [True: 22.0k, False: 0]
  ------------------
  308|  22.0k|#endif
  309|  22.0k|}
typeobject.c:PyUnicode_GET_LENGTH:
  296|  3.20k|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|  3.20k|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|  3.20k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  3.20k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  3.20k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 3.20k, False: 0]
  ------------------
  298|  3.20k|}
typeobject.c:PyUnicode_CHECK_INTERNED:
  207|    120|static inline unsigned int PyUnicode_CHECK_INTERNED(PyObject *op) {
  208|       |#ifdef Py_GIL_DISABLED
  209|       |    return _Py_atomic_load_uint8_relaxed(&_PyASCIIObject_CAST(op)->state.interned);
  210|       |#else
  211|    120|    return _PyASCIIObject_CAST(op)->state.interned;
  ------------------
  |  |  186|    120|    (assert(PyUnicode_Check(op)), \
  |  |  187|    120|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (211:12): [True: 120, False: 0]
  ------------------
  212|    120|#endif
  213|    120|}
typeobject.c:_PyUnicode_DATA:
  278|     58|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|     58|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|     58|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 58, False: 0]
  |  |  ------------------
  ------------------
  280|     58|        return _PyUnicode_COMPACT_DATA(op);
  281|     58|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|     58|}
typeobject.c:PyUnicode_IS_COMPACT:
  231|     58|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|     58|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|     58|    (assert(PyUnicode_Check(op)), \
  |  |  187|     58|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 58, False: 0]
  ------------------
  233|     58|}
typeobject.c:_PyUnicode_COMPACT_DATA:
  261|     58|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|     58|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|     58|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 58, False: 0]
  |  |  ------------------
  ------------------
  263|     58|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|    116|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 58, False: 0]
  |  |  ------------------
  ------------------
  264|     58|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
typeobject.c:PyUnicode_IS_ASCII:
  224|     58|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|     58|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|     58|    (assert(PyUnicode_Check(op)), \
  |  |  187|     58|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 58, False: 0]
  ------------------
  226|     58|}
unicode_writer.c:_PyUnicode_DATA:
  278|  6.32k|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|  6.32k|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|  6.32k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 6.32k, False: 0]
  |  |  ------------------
  ------------------
  280|  6.32k|        return _PyUnicode_COMPACT_DATA(op);
  281|  6.32k|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|  6.32k|}
unicode_writer.c:PyUnicode_IS_COMPACT:
  231|  6.32k|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|  6.32k|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|  6.32k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  6.32k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  6.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 6.32k, False: 0]
  ------------------
  233|  6.32k|}
unicode_writer.c:_PyUnicode_COMPACT_DATA:
  261|  6.32k|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|  6.32k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|  6.32k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 4.36k, False: 1.96k]
  |  |  ------------------
  ------------------
  263|  4.36k|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|  8.72k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 4.36k, False: 0]
  |  |  ------------------
  ------------------
  264|  4.36k|    }
  265|  1.96k|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|  3.92k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 1.96k, False: 0]
  |  |  ------------------
  ------------------
  266|  1.96k|}
unicode_writer.c:PyUnicode_IS_ASCII:
  224|  14.6k|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|  14.6k|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|  14.6k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  14.6k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  14.6k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 14.6k, False: 0]
  ------------------
  226|  14.6k|}
unicode_writer.c:PyUnicode_GET_LENGTH:
  296|  12.0k|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|  12.0k|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|  12.0k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  12.0k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  12.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 12.0k, False: 0]
  ------------------
  298|  12.0k|}
unicode_writer.c:PyUnicode_MAX_CHAR_VALUE:
  387|  8.32k|{
  388|  8.32k|    int kind;
  389|       |
  390|  8.32k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|  8.32k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  8.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 6.36k, False: 1.96k]
  |  |  ------------------
  ------------------
  391|  6.36k|        return 0x7fU;
  392|  6.36k|    }
  393|       |
  394|  1.96k|    kind = PyUnicode_KIND(op);
  ------------------
  |  |  258|  1.96k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  3.92k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 1.96k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  395|  1.96k|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (395:9): [True: 309, False: 1.65k]
  ------------------
  396|    309|       return 0xffU;
  397|    309|    }
  398|  1.65k|    if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (398:9): [True: 1.02k, False: 623]
  ------------------
  399|  1.02k|        return 0xffffU;
  400|  1.02k|    }
  401|  1.65k|    assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (401:5): [True: 623, False: 0]
  ------------------
  402|    623|    return 0x10ffffU;
  403|    623|}
unicodeobject.c:PyUnicode_CHECK_INTERNED:
  207|  52.1k|static inline unsigned int PyUnicode_CHECK_INTERNED(PyObject *op) {
  208|       |#ifdef Py_GIL_DISABLED
  209|       |    return _Py_atomic_load_uint8_relaxed(&_PyASCIIObject_CAST(op)->state.interned);
  210|       |#else
  211|  52.1k|    return _PyASCIIObject_CAST(op)->state.interned;
  ------------------
  |  |  186|  52.1k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  52.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  52.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (211:12): [True: 52.1k, False: 0]
  ------------------
  212|  52.1k|#endif
  213|  52.1k|}
unicodeobject.c:_PyUnicode_DATA:
  278|   102k|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|   102k|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|   102k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|   102k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|   102k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 102k, False: 0]
  |  |  ------------------
  ------------------
  280|   102k|        return _PyUnicode_COMPACT_DATA(op);
  281|   102k|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|   102k|}
unicodeobject.c:_PyUnicode_COMPACT_DATA:
  261|   102k|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|   102k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|   102k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|   102k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|   102k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 92.9k, False: 9.74k]
  |  |  ------------------
  ------------------
  263|  92.9k|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|   185k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 92.9k, False: 0]
  |  |  ------------------
  ------------------
  264|  92.9k|    }
  265|  9.74k|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|  19.4k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 9.74k, False: 0]
  |  |  ------------------
  ------------------
  266|  9.74k|}
unicodeobject.c:PyUnicode_READ:
  342|   555M|{
  343|   555M|    assert(index >= 0);
  ------------------
  |  Branch (343:5): [True: 555M, False: 0]
  ------------------
  344|   555M|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (344:9): [True: 555M, False: 178k]
  ------------------
  345|   555M|        return _Py_STATIC_CAST(const Py_UCS1*, data)[index];
  ------------------
  |  |   34|   555M|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
  346|   555M|    }
  347|   178k|    if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (347:9): [True: 101k, False: 76.9k]
  ------------------
  348|   101k|        return _Py_STATIC_CAST(const Py_UCS2*, data)[index];
  ------------------
  |  |   34|   101k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
  349|   101k|    }
  350|   178k|    assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (350:5): [True: 76.9k, False: 0]
  ------------------
  351|  76.9k|    return _Py_STATIC_CAST(const Py_UCS4*, data)[index];
  ------------------
  |  |   34|  76.9k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
  352|  76.9k|}
unicodeobject.c:PyUnicode_GET_LENGTH:
  296|  84.4k|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|  84.4k|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|  84.4k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  84.4k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  84.4k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 84.4k, False: 0]
  ------------------
  298|  84.4k|}
unicodeobject.c:PyUnicode_IS_COMPACT:
  231|   141k|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|   141k|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|   141k|    (assert(PyUnicode_Check(op)), \
  |  |  187|   141k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|   141k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 141k, False: 0]
  ------------------
  233|   141k|}
unicodeobject.c:PyUnicode_IS_ASCII:
  224|   111k|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|   111k|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|   111k|    (assert(PyUnicode_Check(op)), \
  |  |  187|   111k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|   111k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 111k, False: 0]
  ------------------
  226|   111k|}
unicodeobject.c:PyUnicode_IS_COMPACT_ASCII:
  238|  21.7k|static inline int PyUnicode_IS_COMPACT_ASCII(PyObject *op) {
  239|  43.5k|    return (_PyASCIIObject_CAST(op)->state.ascii && PyUnicode_IS_COMPACT(op));
  ------------------
  |  |  186|  21.7k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  21.7k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  21.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
                  return (_PyASCIIObject_CAST(op)->state.ascii && PyUnicode_IS_COMPACT(op));
  ------------------
  |  |  234|  18.1k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  18.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  18.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 18.1k, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (239:13): [True: 21.7k, False: 0]
  |  Branch (239:13): [True: 18.1k, False: 3.55k]
  ------------------
  240|  21.7k|}
unicodeobject.c:PyUnicode_WRITE:
  318|  24.6k|{
  319|  24.6k|    assert(index >= 0);
  ------------------
  |  Branch (319:5): [True: 24.6k, False: 0]
  ------------------
  320|  24.6k|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (320:9): [True: 2.63k, False: 22.0k]
  ------------------
  321|  2.63k|        assert(value <= 0xffU);
  ------------------
  |  Branch (321:9): [True: 2.63k, False: 0]
  ------------------
  322|  2.63k|        _Py_STATIC_CAST(Py_UCS1*, data)[index] = _Py_STATIC_CAST(Py_UCS1, value);
  ------------------
  |  |   34|  2.63k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
                      _Py_STATIC_CAST(Py_UCS1*, data)[index] = _Py_STATIC_CAST(Py_UCS1, value);
  ------------------
  |  |   34|  2.63k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
  323|  2.63k|    }
  324|  22.0k|    else if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (324:14): [True: 11.9k, False: 10.1k]
  ------------------
  325|  11.9k|        assert(value <= 0xffffU);
  ------------------
  |  Branch (325:9): [True: 11.9k, False: 0]
  ------------------
  326|  11.9k|        _Py_STATIC_CAST(Py_UCS2*, data)[index] = _Py_STATIC_CAST(Py_UCS2, value);
  ------------------
  |  |   34|  11.9k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
                      _Py_STATIC_CAST(Py_UCS2*, data)[index] = _Py_STATIC_CAST(Py_UCS2, value);
  ------------------
  |  |   34|  11.9k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
  327|  11.9k|    }
  328|  10.1k|    else {
  329|  10.1k|        assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (329:9): [True: 10.1k, False: 0]
  ------------------
  330|  10.1k|        assert(value <= 0x10ffffU);
  ------------------
  |  Branch (330:9): [True: 10.1k, False: 0]
  ------------------
  331|  10.1k|        _Py_STATIC_CAST(Py_UCS4*, data)[index] = value;
  ------------------
  |  |   34|  10.1k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  ------------------
  332|  10.1k|    }
  333|  24.6k|}
unicodeobject.c:PyUnstable_Unicode_GET_CACHED_HASH:
  303|  31.2k|PyUnstable_Unicode_GET_CACHED_HASH(PyObject *op) {
  304|       |#ifdef Py_GIL_DISABLED
  305|       |    return _Py_atomic_load_ssize_relaxed(&_PyASCIIObject_CAST(op)->hash);
  306|       |#else
  307|  31.2k|    return _PyASCIIObject_CAST(op)->hash;
  ------------------
  |  |  186|  31.2k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  31.2k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  31.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (307:12): [True: 31.2k, False: 0]
  ------------------
  308|  31.2k|#endif
  309|  31.2k|}
unicodeobject.c:PyUnicode_MAX_CHAR_VALUE:
  387|  1.02k|{
  388|  1.02k|    int kind;
  389|       |
  390|  1.02k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|  1.02k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.02k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.02k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 1.02k, False: 0]
  |  |  ------------------
  ------------------
  391|  1.02k|        return 0x7fU;
  392|  1.02k|    }
  393|       |
  394|      0|    kind = PyUnicode_KIND(op);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  395|      0|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (395:9): [True: 0, False: 0]
  ------------------
  396|      0|       return 0xffU;
  397|      0|    }
  398|      0|    if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (398:9): [True: 0, False: 0]
  ------------------
  399|      0|        return 0xffffU;
  400|      0|    }
  401|      0|    assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (401:5): [True: 0, False: 0]
  ------------------
  402|      0|    return 0x10ffffU;
  403|      0|}
ceval.c:PyUnicode_IS_COMPACT_ASCII:
  238|    750|static inline int PyUnicode_IS_COMPACT_ASCII(PyObject *op) {
  239|  1.50k|    return (_PyASCIIObject_CAST(op)->state.ascii && PyUnicode_IS_COMPACT(op));
  ------------------
  |  |  186|    750|    (assert(PyUnicode_Check(op)), \
  |  |  187|    750|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
                  return (_PyASCIIObject_CAST(op)->state.ascii && PyUnicode_IS_COMPACT(op));
  ------------------
  |  |  234|    750|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    750|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 750, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (239:13): [True: 750, False: 0]
  |  Branch (239:13): [True: 750, False: 0]
  ------------------
  240|    750|}
ceval.c:PyUnicode_IS_COMPACT:
  231|  1.50k|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|  1.50k|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|  1.50k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  1.50k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.50k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 1.50k, False: 0]
  ------------------
  233|  1.50k|}
ceval.c:PyUnicode_GET_LENGTH:
  296|    750|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|    750|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|    750|    (assert(PyUnicode_Check(op)), \
  |  |  187|    750|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 750, False: 0]
  ------------------
  298|    750|}
ceval.c:_PyUnicode_DATA:
  278|    750|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|    750|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|    750|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    750|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 750, False: 0]
  |  |  ------------------
  ------------------
  280|    750|        return _PyUnicode_COMPACT_DATA(op);
  281|    750|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|    750|}
ceval.c:_PyUnicode_COMPACT_DATA:
  261|    750|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|    750|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|    750|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    750|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 750, False: 0]
  |  |  ------------------
  ------------------
  263|    750|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|  1.50k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 750, False: 0]
  |  |  ------------------
  ------------------
  264|    750|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
ceval.c:PyUnicode_IS_ASCII:
  224|    750|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|    750|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|    750|    (assert(PyUnicode_Check(op)), \
  |  |  187|    750|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 750, False: 0]
  ------------------
  226|    750|}
import.c:PyUnicode_GET_LENGTH:
  296|    296|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|    296|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|    296|    (assert(PyUnicode_Check(op)), \
  |  |  187|    296|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    296|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 296, False: 0]
  ------------------
  298|    296|}
intrinsics.c:PyUnicode_READ_CHAR:
  363|    994|{
  364|    994|    int kind;
  365|       |
  366|    994|    assert(index >= 0);
  ------------------
  |  Branch (366:5): [True: 994, False: 0]
  ------------------
  367|       |    // Tolerate reading the NUL character at str[len(str)]
  368|    994|    assert(index <= PyUnicode_GET_LENGTH(unicode));
  ------------------
  |  Branch (368:5): [True: 994, False: 0]
  ------------------
  369|       |
  370|    994|    kind = PyUnicode_KIND(unicode);
  ------------------
  |  |  258|    994|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  1.98k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 994, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  371|    994|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (371:9): [True: 994, False: 0]
  ------------------
  372|    994|        return PyUnicode_1BYTE_DATA(unicode)[index];
  ------------------
  |  |  291|    994|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|    994|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  373|    994|    }
  374|      0|    if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (374:9): [True: 0, False: 0]
  ------------------
  375|      0|        return PyUnicode_2BYTE_DATA(unicode)[index];
  ------------------
  |  |  292|      0|#define PyUnicode_2BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS2*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  376|      0|    }
  377|      0|    assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (377:5): [True: 0, False: 0]
  ------------------
  378|      0|    return PyUnicode_4BYTE_DATA(unicode)[index];
  ------------------
  |  |  293|      0|#define PyUnicode_4BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS4*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  379|      0|}
intrinsics.c:PyUnicode_GET_LENGTH:
  296|    994|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|    994|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|    994|    (assert(PyUnicode_Check(op)), \
  |  |  187|    994|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 994, False: 0]
  ------------------
  298|    994|}
intrinsics.c:_PyUnicode_DATA:
  278|    994|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|    994|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|    994|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    994|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 994, False: 0]
  |  |  ------------------
  ------------------
  280|    994|        return _PyUnicode_COMPACT_DATA(op);
  281|    994|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|    994|}
intrinsics.c:PyUnicode_IS_COMPACT:
  231|    994|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|    994|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|    994|    (assert(PyUnicode_Check(op)), \
  |  |  187|    994|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 994, False: 0]
  ------------------
  233|    994|}
intrinsics.c:_PyUnicode_COMPACT_DATA:
  261|    994|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|    994|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|    994|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    994|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 994, False: 0]
  |  |  ------------------
  ------------------
  263|    994|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|  1.98k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 994, False: 0]
  |  |  ------------------
  ------------------
  264|    994|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
intrinsics.c:PyUnicode_IS_ASCII:
  224|    994|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|    994|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|    994|    (assert(PyUnicode_Check(op)), \
  |  |  187|    994|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 994, False: 0]
  ------------------
  226|    994|}
specialize.c:PyUnicode_IS_COMPACT_ASCII:
  238|      2|static inline int PyUnicode_IS_COMPACT_ASCII(PyObject *op) {
  239|      4|    return (_PyASCIIObject_CAST(op)->state.ascii && PyUnicode_IS_COMPACT(op));
  ------------------
  |  |  186|      2|    (assert(PyUnicode_Check(op)), \
  |  |  187|      2|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
                  return (_PyASCIIObject_CAST(op)->state.ascii && PyUnicode_IS_COMPACT(op));
  ------------------
  |  |  234|      2|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (239:13): [True: 2, False: 0]
  |  Branch (239:13): [True: 2, False: 0]
  ------------------
  240|      2|}
specialize.c:PyUnicode_IS_COMPACT:
  231|      2|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|      2|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|      2|    (assert(PyUnicode_Check(op)), \
  |  |  187|      2|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 2, False: 0]
  ------------------
  233|      2|}
symtable.c:PyUnicode_GET_LENGTH:
  296|     18|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|     18|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|     18|    (assert(PyUnicode_Check(op)), \
  |  |  187|     18|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 18, False: 0]
  ------------------
  298|     18|}
symtable.c:PyUnicode_READ_CHAR:
  363|     18|{
  364|     18|    int kind;
  365|       |
  366|     18|    assert(index >= 0);
  ------------------
  |  Branch (366:5): [True: 18, False: 0]
  ------------------
  367|       |    // Tolerate reading the NUL character at str[len(str)]
  368|     18|    assert(index <= PyUnicode_GET_LENGTH(unicode));
  ------------------
  |  Branch (368:5): [True: 18, False: 0]
  ------------------
  369|       |
  370|     18|    kind = PyUnicode_KIND(unicode);
  ------------------
  |  |  258|     18|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     36|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 18, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  371|     18|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (371:9): [True: 18, False: 0]
  ------------------
  372|     18|        return PyUnicode_1BYTE_DATA(unicode)[index];
  ------------------
  |  |  291|     18|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|     18|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  373|     18|    }
  374|      0|    if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (374:9): [True: 0, False: 0]
  ------------------
  375|      0|        return PyUnicode_2BYTE_DATA(unicode)[index];
  ------------------
  |  |  292|      0|#define PyUnicode_2BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS2*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  376|      0|    }
  377|      0|    assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (377:5): [True: 0, False: 0]
  ------------------
  378|      0|    return PyUnicode_4BYTE_DATA(unicode)[index];
  ------------------
  |  |  293|      0|#define PyUnicode_4BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS4*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  379|      0|}
symtable.c:_PyUnicode_DATA:
  278|     18|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|     18|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|     18|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 18, False: 0]
  |  |  ------------------
  ------------------
  280|     18|        return _PyUnicode_COMPACT_DATA(op);
  281|     18|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|     18|}
symtable.c:PyUnicode_IS_COMPACT:
  231|     18|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|     18|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|     18|    (assert(PyUnicode_Check(op)), \
  |  |  187|     18|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 18, False: 0]
  ------------------
  233|     18|}
symtable.c:_PyUnicode_COMPACT_DATA:
  261|     18|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|     18|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|     18|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 18, False: 0]
  |  |  ------------------
  ------------------
  263|     18|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|     36|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 18, False: 0]
  |  |  ------------------
  ------------------
  264|     18|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
symtable.c:PyUnicode_IS_ASCII:
  224|     18|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|     18|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|     18|    (assert(PyUnicode_Check(op)), \
  |  |  187|     18|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 18, False: 0]
  ------------------
  226|     18|}
fileutils.c:Py_UNICODE_IS_SURROGATE:
   16|    500|static inline int Py_UNICODE_IS_SURROGATE(Py_UCS4 ch) {
   17|    500|    return (0xD800 <= ch && ch <= 0xDFFF);
  ------------------
  |  Branch (17:13): [True: 0, False: 500]
  |  Branch (17:29): [True: 0, False: 0]
  ------------------
   18|    500|}
textio.c:PyUnicode_IS_ASCII:
  224|      6|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|      6|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|      6|    (assert(PyUnicode_Check(op)), \
  |  |  187|      6|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 6, False: 0]
  ------------------
  226|      6|}
textio.c:_PyUnicode_DATA:
  278|      6|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|      6|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|      6|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 6, False: 0]
  |  |  ------------------
  ------------------
  280|      6|        return _PyUnicode_COMPACT_DATA(op);
  281|      6|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|      6|}
textio.c:PyUnicode_IS_COMPACT:
  231|      6|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|      6|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|      6|    (assert(PyUnicode_Check(op)), \
  |  |  187|      6|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 6, False: 0]
  ------------------
  233|      6|}
textio.c:_PyUnicode_COMPACT_DATA:
  261|      6|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|      6|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|      6|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 6, False: 0]
  |  |  ------------------
  ------------------
  263|      6|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|     12|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 6, False: 0]
  |  |  ------------------
  ------------------
  264|      6|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
getpath.c:PyUnicode_GET_LENGTH:
  296|     12|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|     12|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|     12|    (assert(PyUnicode_Check(op)), \
  |  |  187|     12|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 12, False: 0]
  ------------------
  298|     12|}
codeobject.c:PyUnicode_IS_ASCII:
  224|  9.22k|static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {
  225|  9.22k|    return _PyASCIIObject_CAST(op)->state.ascii;
  ------------------
  |  |  186|  9.22k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  9.22k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  9.22k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (225:12): [True: 9.22k, False: 0]
  ------------------
  226|  9.22k|}
codeobject.c:_PyUnicode_DATA:
  278|  4.61k|static inline void* _PyUnicode_DATA(PyObject *op) {
  279|  4.61k|    if (PyUnicode_IS_COMPACT(op)) {
  ------------------
  |  |  234|  4.61k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.61k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 4.61k, False: 0]
  |  |  ------------------
  ------------------
  280|  4.61k|        return _PyUnicode_COMPACT_DATA(op);
  281|  4.61k|    }
  282|      0|    return _PyUnicode_NONCOMPACT_DATA(op);
  283|  4.61k|}
codeobject.c:PyUnicode_IS_COMPACT:
  231|  4.61k|static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {
  232|  4.61k|    return _PyASCIIObject_CAST(op)->state.compact;
  ------------------
  |  |  186|  4.61k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  4.61k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  4.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (232:12): [True: 4.61k, False: 0]
  ------------------
  233|  4.61k|}
codeobject.c:_PyUnicode_COMPACT_DATA:
  261|  4.61k|static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
  262|  4.61k|    if (PyUnicode_IS_ASCII(op)) {
  ------------------
  |  |  227|  4.61k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.61k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 4.61k, False: 0]
  |  |  ------------------
  ------------------
  263|  4.61k|        return _Py_STATIC_CAST(void*, (_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |   34|  9.22k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 4.61k, False: 0]
  |  |  ------------------
  ------------------
  264|  4.61k|    }
  265|      0|    return _Py_STATIC_CAST(void*, (_PyCompactUnicodeObject_CAST(op) + 1));
  ------------------
  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (34:47): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  266|      0|}
codeobject.c:PyUnicode_GET_LENGTH:
  296|  4.61k|static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {
  297|  4.61k|    return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|  4.61k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  4.61k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  4.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (297:12): [True: 4.61k, False: 0]
  ------------------
  298|  4.61k|}

obmalloc.c:mi_atomic_once:
  306|      6|static inline bool mi_atomic_once( mi_atomic_once_t* once ) {
  307|      6|  if (mi_atomic_load_relaxed(once) != 0) return false;     // quick test
  ------------------
  |  |   61|      6|#define mi_atomic_load_relaxed(p)                mi_atomic(load_explicit)(p,mi_memory_order(relaxed))
  |  |  ------------------
  |  |  |  |   42|      6|#define  mi_atomic(name)        atomic_##name
  |  |  ------------------
  |  |               #define mi_atomic_load_relaxed(p)                mi_atomic(load_explicit)(p,mi_memory_order(relaxed))
  |  |  ------------------
  |  |  |  |   43|      6|#define  mi_memory_order(name)  memory_order_##name
  |  |  ------------------
  ------------------
  |  Branch (307:7): [True: 4, False: 2]
  ------------------
  308|      2|  uintptr_t expected = 0;
  309|       |  return mi_atomic_cas_strong_acq_rel(once, &expected, (uintptr_t)1); // try to set to 1
  ------------------
  |  |   69|      2|#define mi_atomic_cas_strong_acq_rel(p,exp,des)  mi_atomic_cas_strong(p,exp,des,mi_memory_order(acq_rel),mi_memory_order(acquire))
  |  |  ------------------
  |  |  |  |   58|      2|  mi_atomic(compare_exchange_strong_explicit)(p,expected,desired,mem_success,mem_fail)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|#define  mi_atomic(name)        atomic_##name
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  310|      6|}

obmalloc.c:mi_heap_is_initialized:
  374|      4|static inline bool mi_heap_is_initialized(mi_heap_t* heap) {
  375|      4|  mi_assert_internal(heap != NULL);
  376|      4|  return (heap != &_mi_heap_empty);
  377|      4|}

obmalloc.c:mi_prim_get_default_heap:
  318|      6|static inline mi_heap_t* mi_prim_get_default_heap(void) {
  319|       |  #if defined(MI_TLS_RECURSE_GUARD)
  320|       |  if (mi_unlikely(!_mi_process_is_initialized)) return _mi_heap_main_get();
  321|       |  #endif
  322|      6|  return _mi_heap_default;
  323|      6|}
obmalloc.c:_mi_prim_thread_id:
  214|      4|static inline mi_threadid_t _mi_prim_thread_id(void) mi_attr_noexcept {
  215|       |  #if defined(__BIONIC__)
  216|       |    // issue #384, #495: on the Bionic libc (Android), slot 1 is the thread id
  217|       |    // see: https://github.com/aosp-mirror/platform_bionic/blob/c44b1d0676ded732df4b3b21c5f798eacae93228/libc/platform/bionic/tls_defines.h#L86
  218|       |    return (uintptr_t)mi_prim_tls_slot(1);
  219|       |  #else
  220|       |    // in all our other targets, slot 0 is the thread id
  221|       |    // glibc: https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=sysdeps/x86_64/nptl/tls.h
  222|       |    // apple: https://github.com/apple/darwin-xnu/blob/main/libsyscall/os/tsd.h#L36
  223|      4|    return (uintptr_t)mi_prim_tls_slot(0);
  224|      4|  #endif
  225|      4|}
obmalloc.c:mi_prim_tls_slot:
  161|      4|static inline void* mi_prim_tls_slot(size_t slot) mi_attr_noexcept {
  162|      4|  void* res;
  163|      4|  const size_t ofs = (slot*sizeof(void*));
  164|       |  #if defined(__i386__)
  165|       |    __asm__("movl %%gs:%1, %0" : "=r" (res) : "m" (*((void**)ofs)) : );  // x86 32-bit always uses GS
  166|       |  #elif defined(__APPLE__) && defined(__x86_64__)
  167|       |    __asm__("movq %%gs:%1, %0" : "=r" (res) : "m" (*((void**)ofs)) : );  // x86_64 macOSX uses GS
  168|       |  #elif defined(__x86_64__) && (MI_INTPTR_SIZE==4)
  169|       |    __asm__("movl %%fs:%1, %0" : "=r" (res) : "m" (*((void**)ofs)) : );  // x32 ABI
  170|       |  #elif defined(__x86_64__)
  171|       |    __asm__("movq %%fs:%1, %0" : "=r" (res) : "m" (*((void**)ofs)) : );  // x86_64 Linux, BSD uses FS
  172|       |  #elif defined(__arm__)
  173|       |    void** tcb; MI_UNUSED(ofs);
  174|       |    __asm__ volatile ("mrc p15, 0, %0, c13, c0, 3\nbic %0, %0, #3" : "=r" (tcb));
  175|       |    res = tcb[slot];
  176|       |  #elif defined(__aarch64__)
  177|       |    void** tcb; MI_UNUSED(ofs);
  178|       |    #if defined(__APPLE__) // M1, issue #343
  179|       |    __asm__ volatile ("mrs %0, tpidrro_el0\nbic %0, %0, #7" : "=r" (tcb));
  180|       |    #else
  181|       |    __asm__ volatile ("mrs %0, tpidr_el0" : "=r" (tcb));
  182|       |    #endif
  183|       |    res = tcb[slot];
  184|       |  #endif
  185|      4|  return res;
  186|      4|}

listobject.c:_PyIndex_Check:
   14|      6|{
   15|      6|    PyNumberMethods *tp_as_number = Py_TYPE(obj)->tp_as_number;
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   16|      6|    return (tp_as_number != NULL && tp_as_number->nb_index != NULL);
  ------------------
  |  Branch (16:13): [True: 2, False: 4]
  |  Branch (16:37): [True: 2, False: 0]
  ------------------
   17|      6|}
tupleobject.c:_PyIndex_Check:
   14|     16|{
   15|     16|    PyNumberMethods *tp_as_number = Py_TYPE(obj)->tp_as_number;
  ------------------
  |  |  213|     16|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   16|     16|    return (tp_as_number != NULL && tp_as_number->nb_index != NULL);
  ------------------
  |  Branch (16:13): [True: 16, False: 0]
  |  Branch (16:37): [True: 16, False: 0]
  ------------------
   17|     16|}
unicodeobject.c:_PyIndex_Check:
   14|      4|{
   15|      4|    PyNumberMethods *tp_as_number = Py_TYPE(obj)->tp_as_number;
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   16|      4|    return (tp_as_number != NULL && tp_as_number->nb_index != NULL);
  ------------------
  |  Branch (16:13): [True: 2, False: 2]
  |  Branch (16:37): [True: 2, False: 0]
  ------------------
   17|      4|}
abstract.c:_PyIndex_Check:
   14|     48|{
   15|     48|    PyNumberMethods *tp_as_number = Py_TYPE(obj)->tp_as_number;
  ------------------
  |  |  213|     48|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   16|     48|    return (tp_as_number != NULL && tp_as_number->nb_index != NULL);
  ------------------
  |  Branch (16:13): [True: 48, False: 0]
  |  Branch (16:37): [True: 2, False: 46]
  ------------------
   17|     48|}

ceval.c:backoff_counter_triggers:
  106|  9.65k|{
  107|       |    /* Test whether the value is zero and the backoff is not UNREACHABLE_BACKOFF */
  108|  9.65k|    return counter.value_and_backoff < UNREACHABLE_BACKOFF;
  ------------------
  |  |   40|  9.65k|#define UNREACHABLE_BACKOFF 7
  ------------------
  109|  9.65k|}
ceval.c:forge_backoff_counter:
   72|  9.65k|{
   73|  9.65k|    _Py_BackoffCounter result;
   74|  9.65k|    result.value_and_backoff = counter;
   75|  9.65k|    return result;
   76|  9.65k|}
ceval.c:advance_backoff_counter:
   98|  7.80k|{
   99|  7.80k|    _Py_BackoffCounter result;
  100|  7.80k|    result.value_and_backoff = counter.value_and_backoff - (1 << BACKOFF_BITS);
  ------------------
  |  |   37|  7.80k|#define BACKOFF_BITS 3
  ------------------
  101|  7.80k|    return result;
  102|  7.80k|}
specialize.c:initial_jump_backoff_counter:
  132|  1.48k|{
  133|  1.48k|    return make_backoff_counter(
  134|  1.48k|        opt_config->jump_backward_initial_value,
  135|  1.48k|        opt_config->jump_backward_initial_backoff);
  136|  1.48k|}
specialize.c:make_backoff_counter:
   62|  6.70k|{
   63|  6.70k|    assert(backoff <= UNREACHABLE_BACKOFF);
  ------------------
  |  Branch (63:5): [True: 6.70k, False: 0]
  ------------------
   64|  6.70k|    assert(value <= MAX_VALUE);
  ------------------
  |  Branch (64:5): [True: 6.70k, False: 0]
  ------------------
   65|  6.70k|    return ((_Py_BackoffCounter){
   66|  6.70k|        .value_and_backoff = MAKE_VALUE_AND_BACKOFF(value, backoff)
  ------------------
  |  |   44|  6.70k|    ((uint16_t)(((value) << BACKOFF_BITS) | (backoff)))
  |  |  ------------------
  |  |  |  |   37|  6.70k|#define BACKOFF_BITS 3
  |  |  ------------------
  ------------------
   67|  6.70k|    });
   68|  6.70k|}
specialize.c:initial_resume_backoff_counter:
  146|  1.48k|{
  147|  1.48k|    return make_backoff_counter(
  148|  1.48k|        opt_config->resume_initial_value,
  149|  1.48k|        opt_config->resume_initial_backoff);
  150|  1.48k|}
specialize.c:restart_backoff_counter:
   80|    148|{
   81|    148|    uint16_t backoff = counter.value_and_backoff & BACKOFF_MASK;
  ------------------
  |  |   38|    148|#define BACKOFF_MASK 7
  ------------------
   82|    148|    assert(backoff <= MAX_BACKOFF);
  ------------------
  |  Branch (82:5): [True: 148, False: 0]
  ------------------
   83|    148|    return ((_Py_BackoffCounter){
   84|    148|        .value_and_backoff = value_and_backoff_next[backoff]
   85|    148|    });
   86|    148|}

dictobject.c:_Py_bit_length:
  147|  1.31k|{
  148|  1.31k|#if (defined(__clang__) || defined(__GNUC__))
  149|  1.31k|    if (x != 0) {
  ------------------
  |  Branch (149:9): [True: 1.31k, False: 0]
  ------------------
  150|       |        // __builtin_clzl() is available since GCC 3.4.
  151|       |        // Undefined behavior for x == 0.
  152|  1.31k|        return (int)sizeof(unsigned long) * 8 - __builtin_clzl(x);
  153|  1.31k|    }
  154|      0|    else {
  155|      0|        return 0;
  156|      0|    }
  157|       |#elif defined(_MSC_VER)
  158|       |    // _BitScanReverse() is documented to search 32 bits.
  159|       |    Py_BUILD_ASSERT(sizeof(unsigned long) <= 4);
  160|       |    unsigned long msb;
  161|       |    if (_BitScanReverse(&msb, x)) {
  162|       |        return (int)msb + 1;
  163|       |    }
  164|       |    else {
  165|       |        return 0;
  166|       |    }
  167|       |#else
  168|       |    const int BIT_LENGTH_TABLE[32] = {
  169|       |        0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,
  170|       |        5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
  171|       |    };
  172|       |    int msb = 0;
  173|       |    while (x >= 32) {
  174|       |        msb += 6;
  175|       |        x >>= 6;
  176|       |    }
  177|       |    msb += BIT_LENGTH_TABLE[x];
  178|       |    return msb;
  179|       |#endif
  180|  1.31k|}

bytesobject.c:_PyBytesWriter_GetData:
   99|      2|{
  100|      2|    if (writer->obj == NULL) {
  ------------------
  |  Branch (100:9): [True: 2, False: 0]
  ------------------
  101|      2|        return writer->small_buffer;
  102|      2|    }
  103|      0|    else if (writer->use_bytearray) {
  ------------------
  |  Branch (103:14): [True: 0, False: 0]
  ------------------
  104|      0|        return PyByteArray_AS_STRING(writer->obj);
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  105|      0|    }
  106|      0|    else {
  107|      0|        return PyBytes_AS_STRING(writer->obj);
  ------------------
  |  |   27|      0|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  108|      0|    }
  109|      2|}

call.c:_PyObject_VectorcallTstate:
  132|  7.12k|{
  133|  7.12k|    vectorcallfunc func;
  134|  7.12k|    PyObject *res;
  135|       |
  136|  7.12k|    assert(kwnames == NULL || PyTuple_Check(kwnames));
  ------------------
  |  Branch (136:5): [True: 6.99k, False: 126]
  |  Branch (136:5): [True: 126, False: 0]
  ------------------
  137|  7.12k|    assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0);
  ------------------
  |  Branch (137:5): [True: 7.08k, False: 38]
  |  Branch (137:5): [True: 38, False: 0]
  ------------------
  138|       |
  139|  7.12k|    func = _PyVectorcall_FunctionInline(callable);
  140|  7.12k|    if (func == NULL) {
  ------------------
  |  Branch (140:9): [True: 830, False: 6.29k]
  ------------------
  141|    830|        Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    830|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  142|    830|        return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwnames);
  143|    830|    }
  144|  6.29k|    res = func(callable, args, nargsf, kwnames);
  145|       |    return _Py_CheckFunctionResult(tstate, callable, res, NULL);
  146|  7.12k|}
call.c:_PyVectorcall_FunctionInline:
   92|  8.11k|{
   93|  8.11k|    assert(callable != NULL);
  ------------------
  |  Branch (93:5): [True: 8.11k, False: 0]
  ------------------
   94|       |
   95|  8.11k|    PyTypeObject *tp = Py_TYPE(callable);
  ------------------
  |  |  213|  8.11k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  8.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   96|  8.11k|    if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) {
  ------------------
  |  |  510|  8.11k|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
  |  Branch (96:9): [True: 60, False: 8.05k]
  ------------------
   97|     60|        return NULL;
   98|     60|    }
   99|  8.11k|    assert(PyCallable_Check(callable));
  ------------------
  |  Branch (99:5): [True: 8.05k, False: 0]
  ------------------
  100|       |
  101|  8.05k|    Py_ssize_t offset = tp->tp_vectorcall_offset;
  102|  8.05k|    assert(offset > 0);
  ------------------
  |  Branch (102:5): [True: 8.05k, False: 0]
  ------------------
  103|       |
  104|  8.05k|    vectorcallfunc ptr;
  105|  8.05k|    memcpy(&ptr, (char *) callable + offset, sizeof(ptr));
  106|  8.05k|    return ptr;
  107|  8.05k|}
call.c:_PyObject_CallNoArgsTstate:
  150|     38|_PyObject_CallNoArgsTstate(PyThreadState *tstate, PyObject *func) {
  151|     38|    return _PyObject_VectorcallTstate(tstate, func, NULL, 0, NULL);
  152|     38|}
object.c:_PyObject_CallNoArgs:
  157|      2|_PyObject_CallNoArgs(PyObject *func) {
  158|      2|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_API, func);
  ------------------
  |  |   80|      2|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
  159|      2|    PyThreadState *tstate = _PyThreadState_GET();
  160|      2|    return _PyObject_VectorcallTstate(tstate, func, NULL, 0, NULL);
  161|      2|}
object.c:_PyObject_VectorcallTstate:
  132|      2|{
  133|      2|    vectorcallfunc func;
  134|      2|    PyObject *res;
  135|       |
  136|      2|    assert(kwnames == NULL || PyTuple_Check(kwnames));
  ------------------
  |  Branch (136:5): [True: 2, False: 0]
  |  Branch (136:5): [True: 0, False: 0]
  ------------------
  137|      2|    assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0);
  ------------------
  |  Branch (137:5): [True: 0, False: 2]
  |  Branch (137:5): [True: 2, False: 0]
  ------------------
  138|       |
  139|      2|    func = _PyVectorcall_FunctionInline(callable);
  140|      2|    if (func == NULL) {
  ------------------
  |  Branch (140:9): [True: 0, False: 2]
  ------------------
  141|      0|        Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      0|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  142|      0|        return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwnames);
  143|      0|    }
  144|      2|    res = func(callable, args, nargsf, kwnames);
  145|       |    return _Py_CheckFunctionResult(tstate, callable, res, NULL);
  146|      2|}
object.c:_PyVectorcall_FunctionInline:
   92|      2|{
   93|      2|    assert(callable != NULL);
  ------------------
  |  Branch (93:5): [True: 2, False: 0]
  ------------------
   94|       |
   95|      2|    PyTypeObject *tp = Py_TYPE(callable);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   96|      2|    if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) {
  ------------------
  |  |  510|      2|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
  |  Branch (96:9): [True: 0, False: 2]
  ------------------
   97|      0|        return NULL;
   98|      0|    }
   99|      2|    assert(PyCallable_Check(callable));
  ------------------
  |  Branch (99:5): [True: 2, False: 0]
  ------------------
  100|       |
  101|      2|    Py_ssize_t offset = tp->tp_vectorcall_offset;
  102|      2|    assert(offset > 0);
  ------------------
  |  Branch (102:5): [True: 2, False: 0]
  ------------------
  103|       |
  104|      2|    vectorcallfunc ptr;
  105|      2|    memcpy(&ptr, (char *) callable + offset, sizeof(ptr));
  106|      2|    return ptr;
  107|      2|}
typeobject.c:_PyObject_VectorcallTstate:
  132|      8|{
  133|      8|    vectorcallfunc func;
  134|      8|    PyObject *res;
  135|       |
  136|      8|    assert(kwnames == NULL || PyTuple_Check(kwnames));
  ------------------
  |  Branch (136:5): [True: 8, False: 0]
  |  Branch (136:5): [True: 0, False: 0]
  ------------------
  137|      8|    assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0);
  ------------------
  |  Branch (137:5): [True: 8, False: 0]
  |  Branch (137:5): [True: 0, False: 0]
  ------------------
  138|       |
  139|      8|    func = _PyVectorcall_FunctionInline(callable);
  140|      8|    if (func == NULL) {
  ------------------
  |  Branch (140:9): [True: 0, False: 8]
  ------------------
  141|      0|        Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      0|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  142|      0|        return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwnames);
  143|      0|    }
  144|      8|    res = func(callable, args, nargsf, kwnames);
  145|       |    return _Py_CheckFunctionResult(tstate, callable, res, NULL);
  146|      8|}
typeobject.c:_PyVectorcall_FunctionInline:
   92|      8|{
   93|      8|    assert(callable != NULL);
  ------------------
  |  Branch (93:5): [True: 8, False: 0]
  ------------------
   94|       |
   95|      8|    PyTypeObject *tp = Py_TYPE(callable);
  ------------------
  |  |  213|      8|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   96|      8|    if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) {
  ------------------
  |  |  510|      8|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
  |  Branch (96:9): [True: 0, False: 8]
  ------------------
   97|      0|        return NULL;
   98|      0|    }
   99|      8|    assert(PyCallable_Check(callable));
  ------------------
  |  Branch (99:5): [True: 8, False: 0]
  ------------------
  100|       |
  101|      8|    Py_ssize_t offset = tp->tp_vectorcall_offset;
  102|      8|    assert(offset > 0);
  ------------------
  |  Branch (102:5): [True: 8, False: 0]
  ------------------
  103|       |
  104|      8|    vectorcallfunc ptr;
  105|      8|    memcpy(&ptr, (char *) callable + offset, sizeof(ptr));
  106|      8|    return ptr;
  107|      8|}
abstract.c:_PyObject_CallNoArgs:
  157|     58|_PyObject_CallNoArgs(PyObject *func) {
  158|     58|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_API, func);
  ------------------
  |  |   80|     58|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
  159|     58|    PyThreadState *tstate = _PyThreadState_GET();
  160|     58|    return _PyObject_VectorcallTstate(tstate, func, NULL, 0, NULL);
  161|     58|}
abstract.c:_PyObject_VectorcallTstate:
  132|     58|{
  133|     58|    vectorcallfunc func;
  134|     58|    PyObject *res;
  135|       |
  136|     58|    assert(kwnames == NULL || PyTuple_Check(kwnames));
  ------------------
  |  Branch (136:5): [True: 58, False: 0]
  |  Branch (136:5): [True: 0, False: 0]
  ------------------
  137|     58|    assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0);
  ------------------
  |  Branch (137:5): [True: 0, False: 58]
  |  Branch (137:5): [True: 58, False: 0]
  ------------------
  138|       |
  139|     58|    func = _PyVectorcall_FunctionInline(callable);
  140|     58|    if (func == NULL) {
  ------------------
  |  Branch (140:9): [True: 0, False: 58]
  ------------------
  141|      0|        Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      0|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  142|      0|        return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwnames);
  143|      0|    }
  144|     58|    res = func(callable, args, nargsf, kwnames);
  145|       |    return _Py_CheckFunctionResult(tstate, callable, res, NULL);
  146|     58|}
abstract.c:_PyVectorcall_FunctionInline:
   92|     58|{
   93|     58|    assert(callable != NULL);
  ------------------
  |  Branch (93:5): [True: 58, False: 0]
  ------------------
   94|       |
   95|     58|    PyTypeObject *tp = Py_TYPE(callable);
  ------------------
  |  |  213|     58|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   96|     58|    if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) {
  ------------------
  |  |  510|     58|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
  |  Branch (96:9): [True: 0, False: 58]
  ------------------
   97|      0|        return NULL;
   98|      0|    }
   99|     58|    assert(PyCallable_Check(callable));
  ------------------
  |  Branch (99:5): [True: 58, False: 0]
  ------------------
  100|       |
  101|     58|    Py_ssize_t offset = tp->tp_vectorcall_offset;
  102|     58|    assert(offset > 0);
  ------------------
  |  Branch (102:5): [True: 58, False: 0]
  ------------------
  103|       |
  104|     58|    vectorcallfunc ptr;
  105|     58|    memcpy(&ptr, (char *) callable + offset, sizeof(ptr));
  106|     58|    return ptr;
  107|     58|}
enumobject.c:_PyObject_CallNoArgs:
  157|      6|_PyObject_CallNoArgs(PyObject *func) {
  158|      6|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_API, func);
  ------------------
  |  |   80|      6|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
  159|      6|    PyThreadState *tstate = _PyThreadState_GET();
  160|      6|    return _PyObject_VectorcallTstate(tstate, func, NULL, 0, NULL);
  161|      6|}
enumobject.c:_PyObject_VectorcallTstate:
  132|      6|{
  133|      6|    vectorcallfunc func;
  134|      6|    PyObject *res;
  135|       |
  136|      6|    assert(kwnames == NULL || PyTuple_Check(kwnames));
  ------------------
  |  Branch (136:5): [True: 6, False: 0]
  |  Branch (136:5): [True: 0, False: 0]
  ------------------
  137|      6|    assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0);
  ------------------
  |  Branch (137:5): [True: 0, False: 6]
  |  Branch (137:5): [True: 6, False: 0]
  ------------------
  138|       |
  139|      6|    func = _PyVectorcall_FunctionInline(callable);
  140|      6|    if (func == NULL) {
  ------------------
  |  Branch (140:9): [True: 0, False: 6]
  ------------------
  141|      0|        Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      0|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  142|      0|        return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwnames);
  143|      0|    }
  144|      6|    res = func(callable, args, nargsf, kwnames);
  145|       |    return _Py_CheckFunctionResult(tstate, callable, res, NULL);
  146|      6|}
enumobject.c:_PyVectorcall_FunctionInline:
   92|      6|{
   93|      6|    assert(callable != NULL);
  ------------------
  |  Branch (93:5): [True: 6, False: 0]
  ------------------
   94|       |
   95|      6|    PyTypeObject *tp = Py_TYPE(callable);
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   96|      6|    if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) {
  ------------------
  |  |  510|      6|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
  |  Branch (96:9): [True: 0, False: 6]
  ------------------
   97|      0|        return NULL;
   98|      0|    }
   99|      6|    assert(PyCallable_Check(callable));
  ------------------
  |  Branch (99:5): [True: 6, False: 0]
  ------------------
  100|       |
  101|      6|    Py_ssize_t offset = tp->tp_vectorcall_offset;
  102|      6|    assert(offset > 0);
  ------------------
  |  Branch (102:5): [True: 6, False: 0]
  ------------------
  103|       |
  104|      6|    vectorcallfunc ptr;
  105|      6|    memcpy(&ptr, (char *) callable + offset, sizeof(ptr));
  106|      6|    return ptr;
  107|      6|}

typeobject.c:PyCell_GetRef:
   39|      8|{
   40|      8|    PyObject *res;
   41|      8|    Py_BEGIN_CRITICAL_SECTION(cell);
  ------------------
  |  |   51|      8|    {
  ------------------
   42|       |#ifdef Py_GIL_DISABLED
   43|       |    res = _Py_XNewRefWithLock(cell->ob_ref);
   44|       |#else
   45|      8|    res = Py_XNewRef(cell->ob_ref);
  ------------------
  |  |  551|      8|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   46|      8|#endif
   47|      8|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      8|    }
  ------------------
   48|      8|    return res;
   49|      8|}
bltinmodule.c:PyCell_GetRef:
   39|     12|{
   40|     12|    PyObject *res;
   41|     12|    Py_BEGIN_CRITICAL_SECTION(cell);
  ------------------
  |  |   51|     12|    {
  ------------------
   42|       |#ifdef Py_GIL_DISABLED
   43|       |    res = _Py_XNewRefWithLock(cell->ob_ref);
   44|       |#else
   45|     12|    res = Py_XNewRef(cell->ob_ref);
  ------------------
  |  |  551|     12|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   46|     12|#endif
   47|     12|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     12|    }
  ------------------
   48|     12|    return res;
   49|     12|}
ceval.c:PyCell_SwapTakeRef:
   20|    182|{
   21|    182|    PyObject *old_value;
   22|    182|    Py_BEGIN_CRITICAL_SECTION(cell);
  ------------------
  |  |   51|    182|    {
  ------------------
   23|    182|    old_value = cell->ob_ref;
   24|    182|    FT_ATOMIC_STORE_PTR_RELEASE(cell->ob_ref, value);
  ------------------
  |  |  164|    182|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
   25|    182|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    182|    }
  ------------------
   26|    182|    return old_value;
   27|    182|}
ceval.c:_PyCell_GetStackRef:
   53|    382|{
   54|    382|    PyObject *value;
   55|       |#ifdef Py_GIL_DISABLED
   56|       |    value = _PyObject_CAST(_Py_atomic_load_ptr(&cell->ob_ref));
   57|       |    if (value == NULL) {
   58|       |        return PyStackRef_NULL;
   59|       |    }
   60|       |    _PyStackRef ref;
   61|       |    if (_Py_TryIncrefCompareStackRef(&cell->ob_ref, value, &ref)) {
   62|       |        return ref;
   63|       |    }
   64|       |#endif
   65|    382|    value = PyCell_GetRef(cell);
   66|    382|    if (value == NULL) {
  ------------------
  |  Branch (66:9): [True: 0, False: 382]
  ------------------
   67|      0|        return PyStackRef_NULL;
   68|      0|    }
   69|    382|    return PyStackRef_FromPyObjectSteal(value);
   70|    382|}
ceval.c:PyCell_GetRef:
   39|    382|{
   40|    382|    PyObject *res;
   41|    382|    Py_BEGIN_CRITICAL_SECTION(cell);
  ------------------
  |  |   51|    382|    {
  ------------------
   42|       |#ifdef Py_GIL_DISABLED
   43|       |    res = _Py_XNewRefWithLock(cell->ob_ref);
   44|       |#else
   45|    382|    res = Py_XNewRef(cell->ob_ref);
  ------------------
  |  |  551|    382|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    382|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    382|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   46|    382|#endif
   47|    382|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    382|    }
  ------------------
   48|    382|    return res;
   49|    382|}
ceval.c:PyCell_SetTakeRef:
   31|    182|{
   32|    182|    PyObject *old_value = PyCell_SwapTakeRef(cell, value);
   33|    182|    Py_XDECREF(old_value);
  ------------------
  |  |  524|    182|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   34|    182|}
cellobject.c:PyCell_SetTakeRef:
   31|    160|{
   32|    160|    PyObject *old_value = PyCell_SwapTakeRef(cell, value);
   33|    160|    Py_XDECREF(old_value);
  ------------------
  |  |  524|    160|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    160|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    160|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   34|    160|}
cellobject.c:PyCell_SwapTakeRef:
   20|    160|{
   21|    160|    PyObject *old_value;
   22|    160|    Py_BEGIN_CRITICAL_SECTION(cell);
  ------------------
  |  |   51|    160|    {
  ------------------
   23|    160|    old_value = cell->ob_ref;
   24|    160|    FT_ATOMIC_STORE_PTR_RELEASE(cell->ob_ref, value);
  ------------------
  |  |  164|    160|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
   25|    160|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    160|    }
  ------------------
   26|    160|    return old_value;
   27|    160|}

call.c:_Py_EnterRecursiveCallTstate:
  234|  1.03k|                                               const char *where) {
  235|  1.03k|    return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where));
  ------------------
  |  Branch (235:13): [True: 0, False: 1.03k]
  |  Branch (235:41): [True: 0, False: 0]
  ------------------
  236|  1.03k|}
call.c:_Py_MakeRecCheck:
  211|  1.03k|static inline int _Py_MakeRecCheck(PyThreadState *tstate)  {
  212|  1.03k|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
  213|  1.03k|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  214|       |    // Overflow if stack pointer is between soft limit and the base of the hardware stack.
  215|       |    // If it is below the hardware stack base, assume that we have the wrong stack limits, and do nothing.
  216|       |    // We could have the wrong stack limits because of limited platform support, or user-space threads.
  217|  1.03k|#if _Py_STACK_GROWS_DOWN
  218|  1.03k|    return here_addr < _tstate->c_stack_soft_limit && here_addr >= _tstate->c_stack_soft_limit - 2 * _PyOS_STACK_MARGIN_BYTES;
  ------------------
  |  |   55|      0|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      0|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      0|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (218:12): [True: 0, False: 1.03k]
  |  Branch (218:55): [True: 0, False: 0]
  ------------------
  219|       |#else
  220|       |    return here_addr > _tstate->c_stack_soft_limit && here_addr <= _tstate->c_stack_soft_limit + 2 * _PyOS_STACK_MARGIN_BYTES;
  221|       |#endif
  222|  1.03k|}
call.c:_Py_LeaveRecursiveCallTstate:
  243|  1.03k|static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {
  244|  1.03k|    (void)tstate;
  245|  1.03k|}
object.c:_Py_EnterRecursiveCallTstate:
  234|  10.1k|                                               const char *where) {
  235|  10.1k|    return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where));
  ------------------
  |  Branch (235:13): [True: 0, False: 10.1k]
  |  Branch (235:41): [True: 0, False: 0]
  ------------------
  236|  10.1k|}
object.c:_Py_MakeRecCheck:
  211|  10.1k|static inline int _Py_MakeRecCheck(PyThreadState *tstate)  {
  212|  10.1k|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
  213|  10.1k|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  214|       |    // Overflow if stack pointer is between soft limit and the base of the hardware stack.
  215|       |    // If it is below the hardware stack base, assume that we have the wrong stack limits, and do nothing.
  216|       |    // We could have the wrong stack limits because of limited platform support, or user-space threads.
  217|  10.1k|#if _Py_STACK_GROWS_DOWN
  218|  10.1k|    return here_addr < _tstate->c_stack_soft_limit && here_addr >= _tstate->c_stack_soft_limit - 2 * _PyOS_STACK_MARGIN_BYTES;
  ------------------
  |  |   55|      0|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      0|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      0|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (218:12): [True: 0, False: 10.1k]
  |  Branch (218:55): [True: 0, False: 0]
  ------------------
  219|       |#else
  220|       |    return here_addr > _tstate->c_stack_soft_limit && here_addr <= _tstate->c_stack_soft_limit + 2 * _PyOS_STACK_MARGIN_BYTES;
  221|       |#endif
  222|  10.1k|}
object.c:_Py_LeaveRecursiveCallTstate:
  243|  10.1k|static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {
  244|  10.1k|    (void)tstate;
  245|  10.1k|}
ceval.c:_PyEval_EvalFrame:
  119|    838|{
  120|    838|    EVAL_CALL_STAT_INC(EVAL_CALL_TOTAL);
  ------------------
  |  |   79|    838|#define EVAL_CALL_STAT_INC(name) ((void)0)
  ------------------
  121|    838|    if (tstate->interp->eval_frame == NULL) {
  ------------------
  |  Branch (121:9): [True: 838, False: 0]
  ------------------
  122|    838|        return _PyEval_EvalFrameDefault(tstate, frame, throwflag);
  123|    838|    }
  124|      0|    return tstate->interp->eval_frame(tstate, frame, throwflag);
  125|    838|}
ceval.c:_Py_EnterRecursiveCallTstate:
  234|    906|                                               const char *where) {
  235|    906|    return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where));
  ------------------
  |  Branch (235:13): [True: 0, False: 906]
  |  Branch (235:41): [True: 0, False: 0]
  ------------------
  236|    906|}
ceval.c:_Py_MakeRecCheck:
  211|    906|static inline int _Py_MakeRecCheck(PyThreadState *tstate)  {
  212|    906|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
  213|    906|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  214|       |    // Overflow if stack pointer is between soft limit and the base of the hardware stack.
  215|       |    // If it is below the hardware stack base, assume that we have the wrong stack limits, and do nothing.
  216|       |    // We could have the wrong stack limits because of limited platform support, or user-space threads.
  217|    906|#if _Py_STACK_GROWS_DOWN
  218|    906|    return here_addr < _tstate->c_stack_soft_limit && here_addr >= _tstate->c_stack_soft_limit - 2 * _PyOS_STACK_MARGIN_BYTES;
  ------------------
  |  |   55|      0|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      0|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      0|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (218:12): [True: 0, False: 906]
  |  Branch (218:55): [True: 0, False: 0]
  ------------------
  219|       |#else
  220|       |    return here_addr > _tstate->c_stack_soft_limit && here_addr <= _tstate->c_stack_soft_limit + 2 * _PyOS_STACK_MARGIN_BYTES;
  221|       |#endif
  222|    906|}
ceval.c:_Py_LeaveRecursiveCallTstate:
  243|    508|static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {
  244|    508|    (void)tstate;
  245|    508|}
gc.c:_Py_eval_breaker_bit_is_set:
  373|  3.00k|{
  374|  3.00k|    uintptr_t b = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker);
  375|  3.00k|    return (b & bit) != 0;
  376|  3.00k|}
gc.c:_Py_set_eval_breaker_bit:
  361|      4|{
  362|      4|    _Py_atomic_or_uintptr(&tstate->eval_breaker, bit);
  363|      4|}
ceval_gil.c:_Py_eval_breaker_bit_is_set:
  373|    654|{
  374|    654|    uintptr_t b = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker);
  375|    654|    return (b & bit) != 0;
  376|    654|}
ceval_gil.c:_Py_unset_eval_breaker_bit:
  367|    660|{
  368|    660|    _Py_atomic_and_uintptr(&tstate->eval_breaker, ~bit);
  369|    660|}
abstract.c:_Py_EnterRecursiveCallTstate:
  234|     68|                                               const char *where) {
  235|     68|    return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where));
  ------------------
  |  Branch (235:13): [True: 0, False: 68]
  |  Branch (235:41): [True: 0, False: 0]
  ------------------
  236|     68|}
abstract.c:_Py_MakeRecCheck:
  211|     68|static inline int _Py_MakeRecCheck(PyThreadState *tstate)  {
  212|     68|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
  213|     68|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  214|       |    // Overflow if stack pointer is between soft limit and the base of the hardware stack.
  215|       |    // If it is below the hardware stack base, assume that we have the wrong stack limits, and do nothing.
  216|       |    // We could have the wrong stack limits because of limited platform support, or user-space threads.
  217|     68|#if _Py_STACK_GROWS_DOWN
  218|     68|    return here_addr < _tstate->c_stack_soft_limit && here_addr >= _tstate->c_stack_soft_limit - 2 * _PyOS_STACK_MARGIN_BYTES;
  ------------------
  |  |   55|      0|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      0|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      0|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (218:12): [True: 0, False: 68]
  |  Branch (218:55): [True: 0, False: 0]
  ------------------
  219|       |#else
  220|       |    return here_addr > _tstate->c_stack_soft_limit && here_addr <= _tstate->c_stack_soft_limit + 2 * _PyOS_STACK_MARGIN_BYTES;
  221|       |#endif
  222|     68|}
abstract.c:_Py_LeaveRecursiveCallTstate:
  243|     68|static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {
  244|     68|    (void)tstate;
  245|     68|}
descrobject.c:_Py_EnterRecursiveCallTstate:
  234|    610|                                               const char *where) {
  235|    610|    return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where));
  ------------------
  |  Branch (235:13): [True: 0, False: 610]
  |  Branch (235:41): [True: 0, False: 0]
  ------------------
  236|    610|}
descrobject.c:_Py_MakeRecCheck:
  211|    610|static inline int _Py_MakeRecCheck(PyThreadState *tstate)  {
  212|    610|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
  213|    610|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  214|       |    // Overflow if stack pointer is between soft limit and the base of the hardware stack.
  215|       |    // If it is below the hardware stack base, assume that we have the wrong stack limits, and do nothing.
  216|       |    // We could have the wrong stack limits because of limited platform support, or user-space threads.
  217|    610|#if _Py_STACK_GROWS_DOWN
  218|    610|    return here_addr < _tstate->c_stack_soft_limit && here_addr >= _tstate->c_stack_soft_limit - 2 * _PyOS_STACK_MARGIN_BYTES;
  ------------------
  |  |   55|      0|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      0|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      0|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (218:12): [True: 0, False: 610]
  |  Branch (218:55): [True: 0, False: 0]
  ------------------
  219|       |#else
  220|       |    return here_addr > _tstate->c_stack_soft_limit && here_addr <= _tstate->c_stack_soft_limit + 2 * _PyOS_STACK_MARGIN_BYTES;
  221|       |#endif
  222|    610|}
descrobject.c:_Py_LeaveRecursiveCallTstate:
  243|    610|static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {
  244|    610|    (void)tstate;
  245|    610|}
genobject.c:_PyEval_EvalFrame:
  119|     68|{
  120|     68|    EVAL_CALL_STAT_INC(EVAL_CALL_TOTAL);
  ------------------
  |  |   79|     68|#define EVAL_CALL_STAT_INC(name) ((void)0)
  ------------------
  121|     68|    if (tstate->interp->eval_frame == NULL) {
  ------------------
  |  Branch (121:9): [True: 68, False: 0]
  ------------------
  122|     68|        return _PyEval_EvalFrameDefault(tstate, frame, throwflag);
  123|     68|    }
  124|      0|    return tstate->interp->eval_frame(tstate, frame, throwflag);
  125|     68|}
methodobject.c:_Py_EnterRecursiveCallTstate:
  234|  1.62k|                                               const char *where) {
  235|  1.62k|    return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where));
  ------------------
  |  Branch (235:13): [True: 0, False: 1.62k]
  |  Branch (235:41): [True: 0, False: 0]
  ------------------
  236|  1.62k|}
methodobject.c:_Py_MakeRecCheck:
  211|  1.62k|static inline int _Py_MakeRecCheck(PyThreadState *tstate)  {
  212|  1.62k|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
  213|  1.62k|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  214|       |    // Overflow if stack pointer is between soft limit and the base of the hardware stack.
  215|       |    // If it is below the hardware stack base, assume that we have the wrong stack limits, and do nothing.
  216|       |    // We could have the wrong stack limits because of limited platform support, or user-space threads.
  217|  1.62k|#if _Py_STACK_GROWS_DOWN
  218|  1.62k|    return here_addr < _tstate->c_stack_soft_limit && here_addr >= _tstate->c_stack_soft_limit - 2 * _PyOS_STACK_MARGIN_BYTES;
  ------------------
  |  |   55|      0|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      0|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      0|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (218:12): [True: 0, False: 1.62k]
  |  Branch (218:55): [True: 0, False: 0]
  ------------------
  219|       |#else
  220|       |    return here_addr > _tstate->c_stack_soft_limit && here_addr <= _tstate->c_stack_soft_limit + 2 * _PyOS_STACK_MARGIN_BYTES;
  221|       |#endif
  222|  1.62k|}
methodobject.c:_Py_LeaveRecursiveCallTstate:
  243|  1.62k|static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {
  244|  1.62k|    (void)tstate;
  245|  1.62k|}

typeobject.c:_PyLocals_GetKind:
  205|     16|{
  206|     16|    assert(PyBytes_Check(kinds));
  ------------------
  |  Branch (206:5): [True: 16, False: 0]
  ------------------
  207|     16|    assert(0 <= i && i < PyBytes_GET_SIZE(kinds));
  ------------------
  |  Branch (207:5): [True: 16, False: 0]
  |  Branch (207:5): [True: 16, False: 0]
  ------------------
  208|     16|    char *ptr = PyBytes_AS_STRING(kinds);
  ------------------
  |  |   27|     16|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  209|     16|    return (_PyLocals_Kind)(ptr[i]);
  210|     16|}
ceval.c:read_u16:
  364|  28.3k|{
  365|  28.3k|    return *p;
  366|  28.3k|}
ceval.c:read_obj:
  386|  1.38k|{
  387|  1.38k|    PyObject *val;
  388|  1.38k|    memcpy(&val, p, sizeof(val));
  389|  1.38k|    return val;
  390|  1.38k|}
ceval.c:read_u32:
  370|  9.20k|{
  371|  9.20k|    uint32_t val;
  372|  9.20k|    memcpy(&val, p, sizeof(val));
  373|  9.20k|    return val;
  374|  9.20k|}
ceval.c:parse_varint:
  395|  1.22k|parse_varint(unsigned char *p, int *result) {
  396|  1.22k|    int val = p[0] & 63;
  397|  1.67k|    while (p[0] & 64) {
  ------------------
  |  Branch (397:12): [True: 444, False: 1.22k]
  ------------------
  398|    444|        p++;
  399|    444|        val = (val << 6) | (p[0] & 63);
  400|    444|    }
  401|  1.22k|    *result = val;
  402|  1.22k|    return p+1;
  403|  1.22k|}
specialize.c:adaptive_counter_warmup:
  480|  1.48k|adaptive_counter_warmup(void) {
  481|  1.48k|    return adaptive_counter_bits(ADAPTIVE_WARMUP_VALUE,
  ------------------
  |  |  454|  1.48k|#define ADAPTIVE_WARMUP_VALUE 1
  ------------------
  482|  1.48k|                                 ADAPTIVE_WARMUP_BACKOFF);
  ------------------
  |  |  455|  1.48k|#define ADAPTIVE_WARMUP_BACKOFF 1
  ------------------
  483|  1.48k|}
specialize.c:adaptive_counter_bits:
  475|  3.73k|adaptive_counter_bits(uint16_t value, uint16_t backoff) {
  476|  3.73k|    return make_backoff_counter(value, backoff);
  477|  3.73k|}
specialize.c:adaptive_counter_cooldown:
  486|  2.24k|adaptive_counter_cooldown(void) {
  487|  2.24k|    return adaptive_counter_bits(ADAPTIVE_COOLDOWN_VALUE,
  ------------------
  |  |  463|  2.24k|#define ADAPTIVE_COOLDOWN_VALUE 52
  ------------------
  488|  2.24k|                                 ADAPTIVE_COOLDOWN_BACKOFF);
  ------------------
  |  |  464|  2.24k|#define ADAPTIVE_COOLDOWN_BACKOFF 0
  ------------------
  489|  2.24k|}
specialize.c:adaptive_counter_backoff:
  492|    148|adaptive_counter_backoff(_Py_BackoffCounter counter) {
  493|    148|    return restart_backoff_counter(counter);
  494|    148|}
specialize.c:write_u32:
  346|    678|{
  347|    678|    memcpy(p, &val, sizeof(val));
  348|    678|}
specialize.c:write_ptr:
  358|    118|{
  359|    118|    memcpy(p, &val, sizeof(val));
  360|    118|}
codeobject.c:_PyLocals_GetKind:
  205|  8.72k|{
  206|  8.72k|    assert(PyBytes_Check(kinds));
  ------------------
  |  Branch (206:5): [True: 8.72k, False: 0]
  ------------------
  207|  8.72k|    assert(0 <= i && i < PyBytes_GET_SIZE(kinds));
  ------------------
  |  Branch (207:5): [True: 8.72k, False: 0]
  |  Branch (207:5): [True: 8.72k, False: 0]
  ------------------
  208|  8.72k|    char *ptr = PyBytes_AS_STRING(kinds);
  ------------------
  |  |   27|  8.72k|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  8.72k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.72k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  209|  8.72k|    return (_PyLocals_Kind)(ptr[i]);
  210|  8.72k|}

dictobject.c:DK_ENTRIES:
  273|  1.56k|static inline PyDictKeyEntry* DK_ENTRIES(PyDictKeysObject *dk) {
  274|  1.56k|    assert(dk->dk_kind == DICT_KEYS_GENERAL);
  ------------------
  |  Branch (274:5): [True: 1.56k, False: 0]
  ------------------
  275|  1.56k|    return (PyDictKeyEntry*)_DK_ENTRIES(dk);
  276|  1.56k|}
dictobject.c:_DK_ENTRIES:
  267|   163k|static inline void* _DK_ENTRIES(PyDictKeysObject *dk) {
  268|   163k|    int8_t *indices = (int8_t*)(dk->dk_indices);
  269|   163k|    size_t index = (size_t)1 << dk->dk_log2_index_bytes;
  270|   163k|    return (&indices[index]);
  271|   163k|}
dictobject.c:DK_UNICODE_ENTRIES:
  277|  53.9k|static inline PyDictUnicodeEntry* DK_UNICODE_ENTRIES(PyDictKeysObject *dk) {
  278|  53.9k|    assert(dk->dk_kind != DICT_KEYS_GENERAL);
  ------------------
  |  Branch (278:5): [True: 53.9k, False: 0]
  ------------------
  279|  53.9k|    return (PyDictUnicodeEntry*)_DK_ENTRIES(dk);
  280|  53.9k|}
dictobject.c:get_insertion_order_array:
  328|    108|{
  329|    108|    return (uint8_t *)&values->values[values->capacity];
  330|    108|}
dictobject.c:_PyDict_NotifyEvent:
  310|  25.9k|{
  311|  25.9k|    assert(Py_REFCNT((PyObject*)mp) > 0);
  ------------------
  |  Branch (311:5): [True: 25.9k, False: 0]
  ------------------
  312|  25.9k|    int watcher_bits = FT_ATOMIC_LOAD_UINT64_ACQUIRE(mp->_ma_watcher_tag) & DICT_WATCHER_MASK;
  ------------------
  |  |  160|  25.9k|#define FT_ATOMIC_LOAD_UINT64_ACQUIRE(value) value
  ------------------
                  int watcher_bits = FT_ATOMIC_LOAD_UINT64_ACQUIRE(mp->_ma_watcher_tag) & DICT_WATCHER_MASK;
  ------------------
  |  |  285|  25.9k|#define DICT_WATCHER_MASK ((1 << DICT_MAX_WATCHERS) - 1)
  |  |  ------------------
  |  |  |  |   11|  25.9k|#define DICT_MAX_WATCHERS 8
  |  |  ------------------
  ------------------
  313|  25.9k|    if (watcher_bits) {
  ------------------
  |  Branch (313:9): [True: 4.74k, False: 21.2k]
  ------------------
  314|  4.74k|        RARE_EVENT_STAT_INC(watched_dict_modification);
  ------------------
  |  |   89|  4.74k|#define RARE_EVENT_STAT_INC(name) ((void)0)
  ------------------
  315|  4.74k|        _PyDict_SendEvent(watcher_bits, event, mp, key, value);
  316|  4.74k|    }
  317|  25.9k|}
dictobject.c:_PyDictValues_AddToInsertionOrder:
  334|    108|{
  335|    108|    assert(ix < SHARED_KEYS_MAX_SIZE);
  ------------------
  |  Branch (335:5): [True: 108, False: 0]
  ------------------
  336|    108|    int size = values->size;
  337|    108|    uint8_t *array = get_insertion_order_array(values);
  338|    108|    assert(size < values->capacity);
  ------------------
  |  Branch (338:5): [True: 108, False: 0]
  ------------------
  339|    108|    assert(((uint8_t)ix) == ix);
  ------------------
  |  Branch (339:5): [True: 108, False: 0]
  ------------------
  340|    108|    array[size] = (uint8_t)ix;
  341|    108|    values->size = size+1;
  342|    108|}
dictobject.c:shared_keys_usable_size:
  350|    346|{
  351|       |    // dk_usable will decrease for each instance that is created and each
  352|       |    // value that is added.  dk_nentries will increase for each value that
  353|       |    // is added.  We want to always return the right value or larger.
  354|       |    // We therefore increase dk_nentries first and we decrease dk_usable
  355|       |    // second, and conversely here we read dk_usable first and dk_entries
  356|       |    // second (to avoid the case where we read entries before the increment
  357|       |    // and read usable after the decrement)
  358|    346|    Py_ssize_t dk_usable = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_usable);
  ------------------
  |  |  148|    346|#define FT_ATOMIC_LOAD_SSIZE_ACQUIRE(value) value
  ------------------
  359|    346|    Py_ssize_t dk_nentries = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_nentries);
  ------------------
  |  |  148|    346|#define FT_ATOMIC_LOAD_SSIZE_ACQUIRE(value) value
  ------------------
  360|    346|    return dk_nentries + dk_usable;
  361|    346|}
typeobject.c:_PyInlineValuesSize:
  365|    344|{
  366|    344|    PyDictKeysObject *keys = ((PyHeapTypeObject*)tp)->ht_cached_keys;
  367|    344|    assert(keys != NULL);
  ------------------
  |  Branch (367:5): [True: 344, False: 0]
  ------------------
  368|    344|    size_t size = shared_keys_usable_size(keys);
  369|    344|    size_t prefix_size = _Py_SIZE_ROUND_UP(size, sizeof(PyObject *));
  ------------------
  |  |  213|    344|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  214|    344|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  ------------------
  370|    344|    assert(prefix_size < 256);
  ------------------
  |  Branch (370:5): [True: 344, False: 0]
  ------------------
  371|    344|    return prefix_size + (size + 1) * sizeof(PyObject *);
  372|    344|}
typeobject.c:shared_keys_usable_size:
  350|    344|{
  351|       |    // dk_usable will decrease for each instance that is created and each
  352|       |    // value that is added.  dk_nentries will increase for each value that
  353|       |    // is added.  We want to always return the right value or larger.
  354|       |    // We therefore increase dk_nentries first and we decrease dk_usable
  355|       |    // second, and conversely here we read dk_usable first and dk_entries
  356|       |    // second (to avoid the case where we read entries before the increment
  357|       |    // and read usable after the decrement)
  358|    344|    Py_ssize_t dk_usable = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_usable);
  ------------------
  |  |  148|    344|#define FT_ATOMIC_LOAD_SSIZE_ACQUIRE(value) value
  ------------------
  359|    344|    Py_ssize_t dk_nentries = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_nentries);
  ------------------
  |  |  148|    344|#define FT_ATOMIC_LOAD_SSIZE_ACQUIRE(value) value
  ------------------
  360|    344|    return dk_nentries + dk_usable;
  361|    344|}
ceval.c:DK_UNICODE_ENTRIES:
  277|  6.20k|static inline PyDictUnicodeEntry* DK_UNICODE_ENTRIES(PyDictKeysObject *dk) {
  278|  6.20k|    assert(dk->dk_kind != DICT_KEYS_GENERAL);
  ------------------
  |  Branch (278:5): [True: 6.20k, False: 0]
  ------------------
  279|  6.20k|    return (PyDictUnicodeEntry*)_DK_ENTRIES(dk);
  280|  6.20k|}
ceval.c:_DK_ENTRIES:
  267|  6.20k|static inline void* _DK_ENTRIES(PyDictKeysObject *dk) {
  268|  6.20k|    int8_t *indices = (int8_t*)(dk->dk_indices);
  269|  6.20k|    size_t index = (size_t)1 << dk->dk_log2_index_bytes;
  270|  6.20k|    return (&indices[index]);
  271|  6.20k|}
ceval.c:_PyDictValues_AddToInsertionOrder:
  334|  1.12k|{
  335|  1.12k|    assert(ix < SHARED_KEYS_MAX_SIZE);
  ------------------
  |  Branch (335:5): [True: 1.12k, False: 0]
  ------------------
  336|  1.12k|    int size = values->size;
  337|  1.12k|    uint8_t *array = get_insertion_order_array(values);
  338|  1.12k|    assert(size < values->capacity);
  ------------------
  |  Branch (338:5): [True: 1.12k, False: 0]
  ------------------
  339|  1.12k|    assert(((uint8_t)ix) == ix);
  ------------------
  |  Branch (339:5): [True: 1.12k, False: 0]
  ------------------
  340|  1.12k|    array[size] = (uint8_t)ix;
  341|  1.12k|    values->size = size+1;
  342|  1.12k|}
ceval.c:get_insertion_order_array:
  328|  1.12k|{
  329|  1.12k|    return (uint8_t *)&values->values[values->capacity];
  330|  1.12k|}

bytesobject.c:_PyFreeList_PopMem:
   99|      2|{
  100|      2|    void *op = _PyFreeList_PopNoStats(fl);
  101|      2|    if (op != NULL) {
  ------------------
  |  Branch (101:9): [True: 0, False: 2]
  ------------------
  102|      0|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|      0|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
  103|      0|    }
  104|      2|    return op;
  105|      2|}
bytesobject.c:_PyFreeList_PopNoStats:
   76|      2|{
   77|      2|    void *obj = fl->freelist;
   78|      2|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 0, False: 2]
  ------------------
   79|      0|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 0, False: 0]
  ------------------
   80|      0|        fl->freelist = *(void **)obj;
   81|      0|        fl->size--;
   82|      0|    }
   83|      2|    return obj;
   84|      2|}
bytesobject.c:_PyFreeList_Free:
   68|      2|{
   69|      2|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 2]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|      2|}
bytesobject.c:_PyFreeList_Push:
   54|      2|{
   55|      2|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 2, False: 0]
  |  Branch (55:31): [True: 2, False: 0]
  ------------------
   56|      2|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|      2|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|      2|        fl->freelist = obj;
   58|      2|        fl->size++;
   59|      2|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|      2|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|      2|        return 1;
   61|      2|    }
   62|      0|    return 0;
   63|      2|}
bytesobject.c:_Py_freelists_GET:
   19|      4|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|      4|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|      4|    return &interp->object_state.freelists;
   30|      4|#endif
   31|      4|}
floatobject.c:_PyFreeList_Pop:
   88|  1.76k|{
   89|  1.76k|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|  1.76k|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 1.74k, False: 20]
  ------------------
   91|  1.74k|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|  1.74k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|  1.74k|        _Py_NewReference(op);
   93|  1.74k|    }
   94|  1.76k|    return op;
   95|  1.76k|}
floatobject.c:_PyFreeList_PopNoStats:
   76|  1.76k|{
   77|  1.76k|    void *obj = fl->freelist;
   78|  1.76k|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 1.74k, False: 20]
  ------------------
   79|  1.74k|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 1.74k, False: 0]
  ------------------
   80|  1.74k|        fl->freelist = *(void **)obj;
   81|  1.74k|        fl->size--;
   82|  1.74k|    }
   83|  1.76k|    return obj;
   84|  1.76k|}
floatobject.c:_Py_freelists_GET:
   19|  3.51k|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|  3.51k|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|  3.51k|    return &interp->object_state.freelists;
   30|  3.51k|#endif
   31|  3.51k|}
floatobject.c:_PyFreeList_Free:
   68|  1.75k|{
   69|  1.75k|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 1.75k]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|  1.75k|}
floatobject.c:_PyFreeList_Push:
   54|  1.75k|{
   55|  1.75k|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 1.75k, False: 0]
  |  Branch (55:31): [True: 1.75k, False: 0]
  ------------------
   56|  1.75k|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|  1.75k|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|  1.75k|        fl->freelist = obj;
   58|  1.75k|        fl->size++;
   59|  1.75k|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|  1.75k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|  1.75k|        return 1;
   61|  1.75k|    }
   62|      0|    return 0;
   63|  1.75k|}
listobject.c:_Py_freelists_GET:
   19|  1.44k|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|  1.44k|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|  1.44k|    return &interp->object_state.freelists;
   30|  1.44k|#endif
   31|  1.44k|}
listobject.c:_PyFreeList_Pop:
   88|    764|{
   89|    764|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|    764|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 660, False: 104]
  ------------------
   91|    660|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|    660|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|    660|        _Py_NewReference(op);
   93|    660|    }
   94|    764|    return op;
   95|    764|}
listobject.c:_PyFreeList_PopNoStats:
   76|    764|{
   77|    764|    void *obj = fl->freelist;
   78|    764|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 660, False: 104]
  ------------------
   79|    660|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 660, False: 0]
  ------------------
   80|    660|        fl->freelist = *(void **)obj;
   81|    660|        fl->size--;
   82|    660|    }
   83|    764|    return obj;
   84|    764|}
listobject.c:_PyFreeList_Free:
   68|    682|{
   69|    682|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 682]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|    682|}
listobject.c:_PyFreeList_Push:
   54|    682|{
   55|    682|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 682, False: 0]
  |  Branch (55:31): [True: 682, False: 0]
  ------------------
   56|    682|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|    682|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|    682|        fl->freelist = obj;
   58|    682|        fl->size++;
   59|    682|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|    682|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|    682|        return 1;
   61|    682|    }
   62|      0|    return 0;
   63|    682|}
longobject.c:_PyFreeList_Pop:
   88|    446|{
   89|    446|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|    446|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 170, False: 276]
  ------------------
   91|    170|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|    170|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|    170|        _Py_NewReference(op);
   93|    170|    }
   94|    446|    return op;
   95|    446|}
longobject.c:_PyFreeList_PopNoStats:
   76|    446|{
   77|    446|    void *obj = fl->freelist;
   78|    446|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 170, False: 276]
  ------------------
   79|    170|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 170, False: 0]
  ------------------
   80|    170|        fl->freelist = *(void **)obj;
   81|    170|        fl->size--;
   82|    170|    }
   83|    446|    return obj;
   84|    446|}
longobject.c:_PyFreeList_Free:
   68|    182|{
   69|    182|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 182]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|    182|}
longobject.c:_PyFreeList_Push:
   54|    182|{
   55|    182|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 182, False: 0]
  |  Branch (55:31): [True: 182, False: 0]
  ------------------
   56|    182|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|    182|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|    182|        fl->freelist = obj;
   58|    182|        fl->size++;
   59|    182|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|    182|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|    182|        return 1;
   61|    182|    }
   62|      0|    return 0;
   63|    182|}
longobject.c:_Py_freelists_GET:
   19|    628|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|    628|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|    628|    return &interp->object_state.freelists;
   30|    628|#endif
   31|    628|}
dictobject.c:_Py_freelists_GET:
   19|  5.12k|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|  5.12k|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|  5.12k|    return &interp->object_state.freelists;
   30|  5.12k|#endif
   31|  5.12k|}
dictobject.c:_PyFreeList_Pop:
   88|  2.20k|{
   89|  2.20k|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|  2.20k|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 998, False: 1.20k]
  ------------------
   91|    998|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|    998|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|    998|        _Py_NewReference(op);
   93|    998|    }
   94|  2.20k|    return op;
   95|  2.20k|}
dictobject.c:_PyFreeList_PopNoStats:
   76|  3.37k|{
   77|  3.37k|    void *obj = fl->freelist;
   78|  3.37k|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 1.74k, False: 1.62k]
  ------------------
   79|  1.74k|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 1.74k, False: 0]
  ------------------
   80|  1.74k|        fl->freelist = *(void **)obj;
   81|  1.74k|        fl->size--;
   82|  1.74k|    }
   83|  3.37k|    return obj;
   84|  3.37k|}
dictobject.c:_PyFreeList_Free:
   68|  1.75k|{
   69|  1.75k|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 1.75k]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|  1.75k|}
dictobject.c:_PyFreeList_Push:
   54|  1.75k|{
   55|  1.75k|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 1.75k, False: 0]
  |  Branch (55:31): [True: 1.75k, False: 0]
  ------------------
   56|  1.75k|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|  1.75k|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|  1.75k|        fl->freelist = obj;
   58|  1.75k|        fl->size++;
   59|  1.75k|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|  1.75k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|  1.75k|        return 1;
   61|  1.75k|    }
   62|      0|    return 0;
   63|  1.75k|}
dictobject.c:_PyFreeList_PopMem:
   99|  1.17k|{
  100|  1.17k|    void *op = _PyFreeList_PopNoStats(fl);
  101|  1.17k|    if (op != NULL) {
  ------------------
  |  Branch (101:9): [True: 746, False: 424]
  ------------------
  102|    746|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|    746|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
  103|    746|    }
  104|  1.17k|    return op;
  105|  1.17k|}
rangeobject.c:_PyFreeList_Free:
   68|     14|{
   69|     14|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 14]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|     14|}
rangeobject.c:_PyFreeList_Push:
   54|     14|{
   55|     14|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 14, False: 0]
  |  Branch (55:31): [True: 14, False: 0]
  ------------------
   56|     14|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|     14|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|     14|        fl->freelist = obj;
   58|     14|        fl->size++;
   59|     14|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|     14|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|     14|        return 1;
   61|     14|    }
   62|      0|    return 0;
   63|     14|}
rangeobject.c:_Py_freelists_GET:
   19|     28|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|     28|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|     28|    return &interp->object_state.freelists;
   30|     28|#endif
   31|     28|}
rangeobject.c:_PyFreeList_Pop:
   88|     14|{
   89|     14|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|     14|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 10, False: 4]
  ------------------
   91|     10|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|     10|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|     10|        _Py_NewReference(op);
   93|     10|    }
   94|     14|    return op;
   95|     14|}
rangeobject.c:_PyFreeList_PopNoStats:
   76|     14|{
   77|     14|    void *obj = fl->freelist;
   78|     14|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 10, False: 4]
  ------------------
   79|     10|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 10, False: 0]
  ------------------
   80|     10|        fl->freelist = *(void **)obj;
   81|     10|        fl->size--;
   82|     10|    }
   83|     14|    return obj;
   84|     14|}
sliceobject.c:_PyFreeList_Pop:
   88|     94|{
   89|     94|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|     94|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 4, False: 90]
  ------------------
   91|      4|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|      4|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|      4|        _Py_NewReference(op);
   93|      4|    }
   94|     94|    return op;
   95|     94|}
sliceobject.c:_PyFreeList_PopNoStats:
   76|     94|{
   77|     94|    void *obj = fl->freelist;
   78|     94|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 4, False: 90]
  ------------------
   79|      4|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 4, False: 0]
  ------------------
   80|      4|        fl->freelist = *(void **)obj;
   81|      4|        fl->size--;
   82|      4|    }
   83|     94|    return obj;
   84|     94|}
sliceobject.c:_Py_freelists_GET:
   19|    110|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|    110|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|    110|    return &interp->object_state.freelists;
   30|    110|#endif
   31|    110|}
sliceobject.c:_PyFreeList_Free:
   68|     16|{
   69|     16|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 10, False: 6]
  ------------------
   70|     10|        dofree(obj);
   71|     10|    }
   72|     16|}
sliceobject.c:_PyFreeList_Push:
   54|     16|{
   55|     16|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 6, False: 10]
  |  Branch (55:31): [True: 6, False: 0]
  ------------------
   56|      6|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|      6|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|      6|        fl->freelist = obj;
   58|      6|        fl->size++;
   59|      6|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|      6|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|      6|        return 1;
   61|      6|    }
   62|     10|    return 0;
   63|     16|}
tupleobject.c:_PyFreeList_Pop:
   88|  11.4k|{
   89|  11.4k|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|  11.4k|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 6.94k, False: 4.50k]
  ------------------
   91|  6.94k|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|  6.94k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|  6.94k|        _Py_NewReference(op);
   93|  6.94k|    }
   94|  11.4k|    return op;
   95|  11.4k|}
tupleobject.c:_PyFreeList_PopNoStats:
   76|  11.4k|{
   77|  11.4k|    void *obj = fl->freelist;
   78|  11.4k|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 6.94k, False: 4.50k]
  ------------------
   79|  6.94k|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 6.94k, False: 0]
  ------------------
   80|  6.94k|        fl->freelist = *(void **)obj;
   81|  6.94k|        fl->size--;
   82|  6.94k|    }
   83|  11.4k|    return obj;
   84|  11.4k|}
tupleobject.c:_PyFreeList_Free:
   68|     26|{
   69|     26|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 26]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|     26|}
tupleobject.c:_PyFreeList_Push:
   54|  7.05k|{
   55|  7.05k|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 7.05k, False: 0]
  |  Branch (55:31): [True: 7.05k, False: 0]
  ------------------
   56|  7.05k|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|  7.05k|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|  7.05k|        fl->freelist = obj;
   58|  7.05k|        fl->size++;
   59|  7.05k|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|  7.05k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|  7.05k|        return 1;
   61|  7.05k|    }
   62|      0|    return 0;
   63|  7.05k|}
tupleobject.c:_Py_freelists_GET:
   19|  18.5k|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|  18.5k|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|  18.5k|    return &interp->object_state.freelists;
   30|  18.5k|#endif
   31|  18.5k|}
classobject.c:_PyFreeList_Pop:
   88|    392|{
   89|    392|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|    392|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 388, False: 4]
  ------------------
   91|    388|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|    388|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|    388|        _Py_NewReference(op);
   93|    388|    }
   94|    392|    return op;
   95|    392|}
classobject.c:_PyFreeList_PopNoStats:
   76|    392|{
   77|    392|    void *obj = fl->freelist;
   78|    392|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 388, False: 4]
  ------------------
   79|    388|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 388, False: 0]
  ------------------
   80|    388|        fl->freelist = *(void **)obj;
   81|    388|        fl->size--;
   82|    388|    }
   83|    392|    return obj;
   84|    392|}
classobject.c:_Py_freelists_GET:
   19|    784|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|    784|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|    784|    return &interp->object_state.freelists;
   30|    784|#endif
   31|    784|}
classobject.c:_PyFreeList_Free:
   68|    392|{
   69|    392|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 392]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|    392|}
classobject.c:_PyFreeList_Push:
   54|    392|{
   55|    392|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 392, False: 0]
  |  Branch (55:31): [True: 392, False: 0]
  ------------------
   56|    392|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|    392|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|    392|        fl->freelist = obj;
   58|    392|        fl->size++;
   59|    392|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|    392|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|    392|        return 1;
   61|    392|    }
   62|      0|    return 0;
   63|    392|}
methodobject.c:_PyFreeList_Pop:
   88|  1.76k|{
   89|  1.76k|    PyObject *op = _PyFreeList_PopNoStats(fl);
   90|  1.76k|    if (op != NULL) {
  ------------------
  |  Branch (90:9): [True: 504, False: 1.25k]
  ------------------
   91|    504|        OBJECT_STAT_INC(from_freelist);
  ------------------
  |  |   77|    504|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   92|    504|        _Py_NewReference(op);
   93|    504|    }
   94|  1.76k|    return op;
   95|  1.76k|}
methodobject.c:_PyFreeList_PopNoStats:
   76|  1.76k|{
   77|  1.76k|    void *obj = fl->freelist;
   78|  1.76k|    if (obj != NULL) {
  ------------------
  |  Branch (78:9): [True: 504, False: 1.25k]
  ------------------
   79|    504|        assert(fl->size > 0);
  ------------------
  |  Branch (79:9): [True: 504, False: 0]
  ------------------
   80|    504|        fl->freelist = *(void **)obj;
   81|    504|        fl->size--;
   82|    504|    }
   83|  1.76k|    return obj;
   84|  1.76k|}
methodobject.c:_Py_freelists_GET:
   19|  2.27k|{
   20|       |#ifdef Py_DEBUG
   21|       |    _Py_AssertHoldsTstate();
   22|       |#endif
   23|       |
   24|       |#ifdef Py_GIL_DISABLED
   25|       |    PyThreadState *tstate = _PyThreadState_GET();
   26|       |    return &((_PyThreadStateImpl*)tstate)->freelists;
   27|       |#else
   28|  2.27k|    PyInterpreterState *interp = _PyInterpreterState_GET();
   29|  2.27k|    return &interp->object_state.freelists;
   30|  2.27k|#endif
   31|  2.27k|}
methodobject.c:_PyFreeList_Free:
   68|    508|{
   69|    508|    if (!_PyFreeList_Push(fl, obj, maxsize)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 508]
  ------------------
   70|      0|        dofree(obj);
   71|      0|    }
   72|    508|}
methodobject.c:_PyFreeList_Push:
   54|    508|{
   55|    508|    if (fl->size < maxsize && fl->size >= 0) {
  ------------------
  |  Branch (55:9): [True: 508, False: 0]
  |  Branch (55:31): [True: 508, False: 0]
  ------------------
   56|    508|        FT_ATOMIC_STORE_PTR_RELAXED(*(void **)obj, fl->freelist);
  ------------------
  |  |  163|    508|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
   57|    508|        fl->freelist = obj;
   58|    508|        fl->size++;
   59|    508|        OBJECT_STAT_INC(to_freelist);
  ------------------
  |  |   77|    508|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
   60|    508|        return 1;
   61|    508|    }
   62|      0|    return 0;
   63|    508|}

specialize.c:_PyFunction_IsVersionValid:
   26|    148|{
   27|    148|    return version >= FUNC_VERSION_FIRST_VALID;
  ------------------
  |  |   20|    148|#define FUNC_VERSION_FIRST_VALID 2
  ------------------
   28|    148|}

bytesobject.c:_PyObject_GC_UNTRACK:
  253|      2|{
  254|      2|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|      2|                          "object not tracked by the garbage collector",
  256|      2|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|      2|    PyGC_Head *gc = _Py_AS_GC(op);
  262|      2|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|      2|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|      2|    _PyGCHead_SET_NEXT(prev, next);
  265|      2|    _PyGCHead_SET_PREV(next, prev);
  266|      2|    gc->_gc_next = 0;
  267|      2|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|      2|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|      2|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|      2|    gcstate->heap_size--;
  270|      2|#endif
  271|      2|}
bytesobject.c:_PyObject_GC_IS_TRACKED:
   73|      4|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|      4|    PyGC_Head *gc = _Py_AS_GC(op);
   78|      4|    return (gc->_gc_next != 0);
   79|      4|#endif
   80|      4|}
bytesobject.c:_Py_AS_GC:
   17|      8|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|      8|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|      8|    return (PyGC_Head*)gc;
   20|      8|}
bytesobject.c:_PyGCHead_PREV:
  155|      2|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|      2|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|      2|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      2|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|      2|    return (PyGC_Head*)prev;
  158|      2|}
bytesobject.c:_PyGCHead_NEXT:
  146|      2|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|      2|    uintptr_t next = gc->_gc_next;
  148|      2|    return (PyGC_Head*)next;
  149|      2|}
bytesobject.c:_PyGCHead_SET_NEXT:
  150|      6|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|      6|    gc->_gc_next = (uintptr_t)next;
  152|      6|}
bytesobject.c:_PyGCHead_SET_PREV:
  160|      4|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|      4|    uintptr_t uprev = (uintptr_t)prev;
  162|      4|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 4, False: 0]
  ------------------
  163|      4|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|      4|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      4|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|      4|}
bytesobject.c:_PyObject_GC_TRACK:
  213|      2|{
  214|      2|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|      2|                          "object already tracked by the garbage collector",
  216|      2|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|      2|    PyGC_Head *gc = _Py_AS_GC(op);
  221|      2|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|      2|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|      2|                          "object is in generation which is garbage collected",
  224|      2|                          filename, lineno, __func__);
  225|       |
  226|      2|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|      2|    PyGC_Head *generation0 = gcstate->generation0;
  228|      2|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|      2|    _PyGCHead_SET_NEXT(last, gc);
  230|      2|    _PyGCHead_SET_PREV(gc, last);
  231|      2|    _PyGCHead_SET_NEXT(gc, generation0);
  232|      2|    generation0->_gc_prev = (uintptr_t)gc;
  233|      2|    gcstate->heap_size++;
  234|      2|#endif
  235|      2|}
exceptions.c:_PyObject_GC_UNTRACK:
  253|    130|{
  254|    130|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    130|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 130, False: 0]
  |  |  ------------------
  |  |  415|    130|      ? (void)(0) \
  |  |  416|    130|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    130|                          "object not tracked by the garbage collector",
  256|    130|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    130|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    130|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    130|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    130|    _PyGCHead_SET_NEXT(prev, next);
  265|    130|    _PyGCHead_SET_PREV(next, prev);
  266|    130|    gc->_gc_next = 0;
  267|    130|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    130|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    130|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    130|    gcstate->heap_size--;
  270|    130|#endif
  271|    130|}
exceptions.c:_PyObject_GC_IS_TRACKED:
   73|    130|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    130|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    130|    return (gc->_gc_next != 0);
   79|    130|#endif
   80|    130|}
exceptions.c:_Py_AS_GC:
   17|    260|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|    260|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|    260|    return (PyGC_Head*)gc;
   20|    260|}
exceptions.c:_PyGCHead_PREV:
  155|    130|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    130|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    130|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    130|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    130|    return (PyGC_Head*)prev;
  158|    130|}
exceptions.c:_PyGCHead_NEXT:
  146|    130|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    130|    uintptr_t next = gc->_gc_next;
  148|    130|    return (PyGC_Head*)next;
  149|    130|}
exceptions.c:_PyGCHead_SET_NEXT:
  150|    130|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|    130|    gc->_gc_next = (uintptr_t)next;
  152|    130|}
exceptions.c:_PyGCHead_SET_PREV:
  160|    130|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    130|    uintptr_t uprev = (uintptr_t)prev;
  162|    130|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 130, False: 0]
  ------------------
  163|    130|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    130|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    130|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    130|}
genericaliasobject.c:_PyObject_GC_UNTRACK:
  253|      4|{
  254|      4|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      4|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 4, False: 0]
  |  |  ------------------
  |  |  415|      4|      ? (void)(0) \
  |  |  416|      4|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|      4|                          "object not tracked by the garbage collector",
  256|      4|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|      4|    PyGC_Head *gc = _Py_AS_GC(op);
  262|      4|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|      4|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|      4|    _PyGCHead_SET_NEXT(prev, next);
  265|      4|    _PyGCHead_SET_PREV(next, prev);
  266|      4|    gc->_gc_next = 0;
  267|      4|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|      4|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|      4|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|      4|    gcstate->heap_size--;
  270|      4|#endif
  271|      4|}
genericaliasobject.c:_PyObject_GC_IS_TRACKED:
   73|      4|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|      4|    PyGC_Head *gc = _Py_AS_GC(op);
   78|      4|    return (gc->_gc_next != 0);
   79|      4|#endif
   80|      4|}
genericaliasobject.c:_Py_AS_GC:
   17|      8|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|      8|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|      8|    return (PyGC_Head*)gc;
   20|      8|}
genericaliasobject.c:_PyGCHead_PREV:
  155|      4|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|      4|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|      4|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      4|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|      4|    return (PyGC_Head*)prev;
  158|      4|}
genericaliasobject.c:_PyGCHead_NEXT:
  146|      4|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|      4|    uintptr_t next = gc->_gc_next;
  148|      4|    return (PyGC_Head*)next;
  149|      4|}
genericaliasobject.c:_PyGCHead_SET_NEXT:
  150|      4|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|      4|    gc->_gc_next = (uintptr_t)next;
  152|      4|}
genericaliasobject.c:_PyGCHead_SET_PREV:
  160|      4|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|      4|    uintptr_t uprev = (uintptr_t)prev;
  162|      4|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 4, False: 0]
  ------------------
  163|      4|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|      4|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      4|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|      4|}
funcobject.c:_PyObject_GC_TRACK:
  213|  1.50k|{
  214|  1.50k|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|  1.50k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 1.50k, False: 0]
  |  |  ------------------
  |  |  415|  1.50k|      ? (void)(0) \
  |  |  416|  1.50k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|  1.50k|                          "object already tracked by the garbage collector",
  216|  1.50k|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|  1.50k|    PyGC_Head *gc = _Py_AS_GC(op);
  221|  1.50k|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|  1.50k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 1.50k, False: 0]
  |  |  ------------------
  |  |  415|  1.50k|      ? (void)(0) \
  |  |  416|  1.50k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|  1.50k|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|  1.50k|                          "object is in generation which is garbage collected",
  224|  1.50k|                          filename, lineno, __func__);
  225|       |
  226|  1.50k|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|  1.50k|    PyGC_Head *generation0 = gcstate->generation0;
  228|  1.50k|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|  1.50k|    _PyGCHead_SET_NEXT(last, gc);
  230|  1.50k|    _PyGCHead_SET_PREV(gc, last);
  231|  1.50k|    _PyGCHead_SET_NEXT(gc, generation0);
  232|  1.50k|    generation0->_gc_prev = (uintptr_t)gc;
  233|  1.50k|    gcstate->heap_size++;
  234|  1.50k|#endif
  235|  1.50k|}
funcobject.c:_PyObject_GC_IS_TRACKED:
   73|  1.84k|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|  1.84k|    PyGC_Head *gc = _Py_AS_GC(op);
   78|  1.84k|    return (gc->_gc_next != 0);
   79|  1.84k|#endif
   80|  1.84k|}
funcobject.c:_Py_AS_GC:
   17|  3.68k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  3.68k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  3.68k|    return (PyGC_Head*)gc;
   20|  3.68k|}
funcobject.c:_PyGCHead_SET_NEXT:
  150|  3.34k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  3.34k|    gc->_gc_next = (uintptr_t)next;
  152|  3.34k|}
funcobject.c:_PyGCHead_SET_PREV:
  160|  1.84k|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|  1.84k|    uintptr_t uprev = (uintptr_t)prev;
  162|  1.84k|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 1.84k, False: 0]
  ------------------
  163|  1.84k|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|  1.84k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  1.84k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|  1.84k|}
funcobject.c:_PyObject_GC_UNTRACK:
  253|    336|{
  254|    336|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    336|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 336, False: 0]
  |  |  ------------------
  |  |  415|    336|      ? (void)(0) \
  |  |  416|    336|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    336|                          "object not tracked by the garbage collector",
  256|    336|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    336|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    336|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    336|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    336|    _PyGCHead_SET_NEXT(prev, next);
  265|    336|    _PyGCHead_SET_PREV(next, prev);
  266|    336|    gc->_gc_next = 0;
  267|    336|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    336|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    336|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    336|    gcstate->heap_size--;
  270|    336|#endif
  271|    336|}
funcobject.c:_PyGCHead_PREV:
  155|    336|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    336|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    336|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    336|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    336|    return (PyGC_Head*)prev;
  158|    336|}
funcobject.c:_PyGCHead_NEXT:
  146|    336|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    336|    uintptr_t next = gc->_gc_next;
  148|    336|    return (PyGC_Head*)next;
  149|    336|}
listobject.c:_PyObject_GC_TRACK:
  213|    764|{
  214|    764|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    764|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 764, False: 0]
  |  |  ------------------
  |  |  415|    764|      ? (void)(0) \
  |  |  416|    764|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|    764|                          "object already tracked by the garbage collector",
  216|    764|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|    764|    PyGC_Head *gc = _Py_AS_GC(op);
  221|    764|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|    764|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 764, False: 0]
  |  |  ------------------
  |  |  415|    764|      ? (void)(0) \
  |  |  416|    764|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|    764|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|    764|                          "object is in generation which is garbage collected",
  224|    764|                          filename, lineno, __func__);
  225|       |
  226|    764|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|    764|    PyGC_Head *generation0 = gcstate->generation0;
  228|    764|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|    764|    _PyGCHead_SET_NEXT(last, gc);
  230|    764|    _PyGCHead_SET_PREV(gc, last);
  231|    764|    _PyGCHead_SET_NEXT(gc, generation0);
  232|    764|    generation0->_gc_prev = (uintptr_t)gc;
  233|    764|    gcstate->heap_size++;
  234|    764|#endif
  235|    764|}
listobject.c:_PyObject_GC_IS_TRACKED:
   73|    772|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    772|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    772|    return (gc->_gc_next != 0);
   79|    772|#endif
   80|    772|}
listobject.c:_Py_AS_GC:
   17|  1.54k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  1.54k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  1.54k|    return (PyGC_Head*)gc;
   20|  1.54k|}
listobject.c:_PyGCHead_SET_NEXT:
  150|  1.53k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  1.53k|    gc->_gc_next = (uintptr_t)next;
  152|  1.53k|}
listobject.c:_PyGCHead_SET_PREV:
  160|    772|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    772|    uintptr_t uprev = (uintptr_t)prev;
  162|    772|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 772, False: 0]
  ------------------
  163|    772|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    772|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    772|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    772|}
listobject.c:_PyObject_GC_UNTRACK:
  253|      8|{
  254|      8|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      8|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 8, False: 0]
  |  |  ------------------
  |  |  415|      8|      ? (void)(0) \
  |  |  416|      8|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|      8|                          "object not tracked by the garbage collector",
  256|      8|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|      8|    PyGC_Head *gc = _Py_AS_GC(op);
  262|      8|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|      8|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|      8|    _PyGCHead_SET_NEXT(prev, next);
  265|      8|    _PyGCHead_SET_PREV(next, prev);
  266|      8|    gc->_gc_next = 0;
  267|      8|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|      8|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|      8|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|      8|    gcstate->heap_size--;
  270|      8|#endif
  271|      8|}
listobject.c:_PyGCHead_PREV:
  155|      8|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|      8|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|      8|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      8|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|      8|    return (PyGC_Head*)prev;
  158|      8|}
listobject.c:_PyGCHead_NEXT:
  146|      8|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|      8|    uintptr_t next = gc->_gc_next;
  148|      8|    return (PyGC_Head*)next;
  149|      8|}
dictobject.c:_PyObject_GC_IS_TRACKED:
   73|  2.69k|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|  2.69k|    PyGC_Head *gc = _Py_AS_GC(op);
   78|  2.69k|    return (gc->_gc_next != 0);
   79|  2.69k|#endif
   80|  2.69k|}
dictobject.c:_Py_AS_GC:
   17|  5.25k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  5.25k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  5.25k|    return (PyGC_Head*)gc;
   20|  5.25k|}
dictobject.c:_PyObject_GC_UNTRACK:
  253|    150|{
  254|    150|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    150|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 150, False: 0]
  |  |  ------------------
  |  |  415|    150|      ? (void)(0) \
  |  |  416|    150|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    150|                          "object not tracked by the garbage collector",
  256|    150|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    150|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    150|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    150|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    150|    _PyGCHead_SET_NEXT(prev, next);
  265|    150|    _PyGCHead_SET_PREV(next, prev);
  266|    150|    gc->_gc_next = 0;
  267|    150|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    150|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    150|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    150|    gcstate->heap_size--;
  270|    150|#endif
  271|    150|}
dictobject.c:_PyGCHead_PREV:
  155|    150|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    150|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    150|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    150|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    150|    return (PyGC_Head*)prev;
  158|    150|}
dictobject.c:_PyGCHead_NEXT:
  146|    150|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    150|    uintptr_t next = gc->_gc_next;
  148|    150|    return (PyGC_Head*)next;
  149|    150|}
dictobject.c:_PyGCHead_SET_NEXT:
  150|  4.97k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  4.97k|    gc->_gc_next = (uintptr_t)next;
  152|  4.97k|}
dictobject.c:_PyGCHead_SET_PREV:
  160|  2.56k|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|  2.56k|    uintptr_t uprev = (uintptr_t)prev;
  162|  2.56k|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 2.56k, False: 0]
  ------------------
  163|  2.56k|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|  2.56k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  2.56k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|  2.56k|}
dictobject.c:_PyObject_GC_TRACK:
  213|  2.41k|{
  214|  2.41k|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|  2.41k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2.41k, False: 0]
  |  |  ------------------
  |  |  415|  2.41k|      ? (void)(0) \
  |  |  416|  2.41k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|  2.41k|                          "object already tracked by the garbage collector",
  216|  2.41k|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|  2.41k|    PyGC_Head *gc = _Py_AS_GC(op);
  221|  2.41k|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|  2.41k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2.41k, False: 0]
  |  |  ------------------
  |  |  415|  2.41k|      ? (void)(0) \
  |  |  416|  2.41k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|  2.41k|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|  2.41k|                          "object is in generation which is garbage collected",
  224|  2.41k|                          filename, lineno, __func__);
  225|       |
  226|  2.41k|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|  2.41k|    PyGC_Head *generation0 = gcstate->generation0;
  228|  2.41k|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|  2.41k|    _PyGCHead_SET_NEXT(last, gc);
  230|  2.41k|    _PyGCHead_SET_PREV(gc, last);
  231|  2.41k|    _PyGCHead_SET_NEXT(gc, generation0);
  232|  2.41k|    generation0->_gc_prev = (uintptr_t)gc;
  233|  2.41k|    gcstate->heap_size++;
  234|  2.41k|#endif
  235|  2.41k|}
object.c:_PyGC_FINALIZED:
  166|     42|static inline int _PyGC_FINALIZED(PyObject *op) {
  167|       |#ifdef Py_GIL_DISABLED
  168|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_FINALIZED);
  169|       |#else
  170|     42|    PyGC_Head *gc = _Py_AS_GC(op);
  171|     42|    return ((gc->_gc_prev & _PyGC_PREV_MASK_FINALIZED) != 0);
  ------------------
  |  |  117|     42|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  172|     42|#endif
  173|     42|}
object.c:_PyGC_SET_FINALIZED:
  174|     42|static inline void _PyGC_SET_FINALIZED(PyObject *op) {
  175|       |#ifdef Py_GIL_DISABLED
  176|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_FINALIZED);
  177|       |#else
  178|     42|    PyGC_Head *gc = _Py_AS_GC(op);
  179|     42|    gc->_gc_prev |= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|     42|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  180|     42|#endif
  181|     42|}
object.c:_PyObject_GC_IS_TRACKED:
   73|  1.69k|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|  1.69k|    PyGC_Head *gc = _Py_AS_GC(op);
   78|  1.69k|    return (gc->_gc_next != 0);
   79|  1.69k|#endif
   80|  1.69k|}
object.c:_PyObject_GC_UNTRACK:
  253|    826|{
  254|    826|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    826|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 826, False: 0]
  |  |  ------------------
  |  |  415|    826|      ? (void)(0) \
  |  |  416|    826|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    826|                          "object not tracked by the garbage collector",
  256|    826|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    826|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    826|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    826|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    826|    _PyGCHead_SET_NEXT(prev, next);
  265|    826|    _PyGCHead_SET_PREV(next, prev);
  266|    826|    gc->_gc_next = 0;
  267|    826|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    826|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    826|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    826|    gcstate->heap_size--;
  270|    826|#endif
  271|    826|}
object.c:_PyGCHead_PREV:
  155|    826|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    826|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    826|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    826|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    826|    return (PyGC_Head*)prev;
  158|    826|}
object.c:_PyGCHead_NEXT:
  146|    826|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    826|    uintptr_t next = gc->_gc_next;
  148|    826|    return (PyGC_Head*)next;
  149|    826|}
object.c:_PyGCHead_SET_NEXT:
  150|    826|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|    826|    gc->_gc_next = (uintptr_t)next;
  152|    826|}
object.c:_PyGCHead_SET_PREV:
  160|    826|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    826|    uintptr_t uprev = (uintptr_t)prev;
  162|    826|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 826, False: 0]
  ------------------
  163|    826|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    826|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    826|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    826|}
object.c:_Py_AS_GC:
   17|  2.60k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  2.60k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  2.60k|    return (PyGC_Head*)gc;
   20|  2.60k|}
setobject.c:_PyObject_GC_UNTRACK:
  253|    130|{
  254|    130|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    130|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 130, False: 0]
  |  |  ------------------
  |  |  415|    130|      ? (void)(0) \
  |  |  416|    130|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    130|                          "object not tracked by the garbage collector",
  256|    130|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    130|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    130|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    130|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    130|    _PyGCHead_SET_NEXT(prev, next);
  265|    130|    _PyGCHead_SET_PREV(next, prev);
  266|    130|    gc->_gc_next = 0;
  267|    130|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    130|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    130|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    130|    gcstate->heap_size--;
  270|    130|#endif
  271|    130|}
setobject.c:_PyObject_GC_IS_TRACKED:
   73|    192|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    192|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    192|    return (gc->_gc_next != 0);
   79|    192|#endif
   80|    192|}
setobject.c:_Py_AS_GC:
   17|    384|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|    384|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|    384|    return (PyGC_Head*)gc;
   20|    384|}
setobject.c:_PyGCHead_PREV:
  155|    130|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    130|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    130|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    130|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    130|    return (PyGC_Head*)prev;
  158|    130|}
setobject.c:_PyGCHead_NEXT:
  146|    130|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    130|    uintptr_t next = gc->_gc_next;
  148|    130|    return (PyGC_Head*)next;
  149|    130|}
setobject.c:_PyGCHead_SET_NEXT:
  150|    254|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|    254|    gc->_gc_next = (uintptr_t)next;
  152|    254|}
setobject.c:_PyGCHead_SET_PREV:
  160|    192|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    192|    uintptr_t uprev = (uintptr_t)prev;
  162|    192|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 192, False: 0]
  ------------------
  163|    192|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    192|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    192|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    192|}
setobject.c:_PyObject_GC_MAY_BE_TRACKED:
   85|    608|static inline int _PyObject_GC_MAY_BE_TRACKED(PyObject *obj) {
   86|    608|    if (!PyObject_IS_GC(obj)) {
  ------------------
  |  Branch (86:9): [True: 592, False: 16]
  ------------------
   87|    592|        return 0;
   88|    592|    }
   89|     16|    if (PyTuple_CheckExact(obj)) {
  ------------------
  |  |   28|     16|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|     16|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 16]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   90|      0|        return _PyObject_GC_IS_TRACKED(obj);
  ------------------
  |  |   81|      0|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   91|      0|    }
   92|     16|    return 1;
   93|     16|}
setobject.c:_PyObject_GC_TRACK:
  213|     62|{
  214|     62|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|     62|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 62, False: 0]
  |  |  ------------------
  |  |  415|     62|      ? (void)(0) \
  |  |  416|     62|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|     62|                          "object already tracked by the garbage collector",
  216|     62|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|     62|    PyGC_Head *gc = _Py_AS_GC(op);
  221|     62|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|     62|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 62, False: 0]
  |  |  ------------------
  |  |  415|     62|      ? (void)(0) \
  |  |  416|     62|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|     62|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|     62|                          "object is in generation which is garbage collected",
  224|     62|                          filename, lineno, __func__);
  225|       |
  226|     62|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|     62|    PyGC_Head *generation0 = gcstate->generation0;
  228|     62|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|     62|    _PyGCHead_SET_NEXT(last, gc);
  230|     62|    _PyGCHead_SET_PREV(gc, last);
  231|     62|    _PyGCHead_SET_NEXT(gc, generation0);
  232|     62|    generation0->_gc_prev = (uintptr_t)gc;
  233|     62|    gcstate->heap_size++;
  234|     62|#endif
  235|     62|}
sliceobject.c:_PyObject_GC_TRACK:
  213|     94|{
  214|     94|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|     94|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 94, False: 0]
  |  |  ------------------
  |  |  415|     94|      ? (void)(0) \
  |  |  416|     94|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|     94|                          "object already tracked by the garbage collector",
  216|     94|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|     94|    PyGC_Head *gc = _Py_AS_GC(op);
  221|     94|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|     94|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 94, False: 0]
  |  |  ------------------
  |  |  415|     94|      ? (void)(0) \
  |  |  416|     94|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|     94|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|     94|                          "object is in generation which is garbage collected",
  224|     94|                          filename, lineno, __func__);
  225|       |
  226|     94|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|     94|    PyGC_Head *generation0 = gcstate->generation0;
  228|     94|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|     94|    _PyGCHead_SET_NEXT(last, gc);
  230|     94|    _PyGCHead_SET_PREV(gc, last);
  231|     94|    _PyGCHead_SET_NEXT(gc, generation0);
  232|     94|    generation0->_gc_prev = (uintptr_t)gc;
  233|     94|    gcstate->heap_size++;
  234|     94|#endif
  235|     94|}
sliceobject.c:_PyObject_GC_IS_TRACKED:
   73|     94|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|     94|    PyGC_Head *gc = _Py_AS_GC(op);
   78|     94|    return (gc->_gc_next != 0);
   79|     94|#endif
   80|     94|}
sliceobject.c:_Py_AS_GC:
   17|    188|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|    188|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|    188|    return (PyGC_Head*)gc;
   20|    188|}
sliceobject.c:_PyGCHead_SET_NEXT:
  150|    188|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|    188|    gc->_gc_next = (uintptr_t)next;
  152|    188|}
sliceobject.c:_PyGCHead_SET_PREV:
  160|     94|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|     94|    uintptr_t uprev = (uintptr_t)prev;
  162|     94|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 94, False: 0]
  ------------------
  163|     94|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|     94|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|     94|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|     94|}
tupleobject.c:_PyObject_GC_TRACK:
  213|  6.78k|{
  214|  6.78k|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|  6.78k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 6.78k, False: 0]
  |  |  ------------------
  |  |  415|  6.78k|      ? (void)(0) \
  |  |  416|  6.78k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|  6.78k|                          "object already tracked by the garbage collector",
  216|  6.78k|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|  6.78k|    PyGC_Head *gc = _Py_AS_GC(op);
  221|  6.78k|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|  6.78k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 6.78k, False: 0]
  |  |  ------------------
  |  |  415|  6.78k|      ? (void)(0) \
  |  |  416|  6.78k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|  6.78k|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|  6.78k|                          "object is in generation which is garbage collected",
  224|  6.78k|                          filename, lineno, __func__);
  225|       |
  226|  6.78k|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|  6.78k|    PyGC_Head *generation0 = gcstate->generation0;
  228|  6.78k|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|  6.78k|    _PyGCHead_SET_NEXT(last, gc);
  230|  6.78k|    _PyGCHead_SET_PREV(gc, last);
  231|  6.78k|    _PyGCHead_SET_NEXT(gc, generation0);
  232|  6.78k|    generation0->_gc_prev = (uintptr_t)gc;
  233|  6.78k|    gcstate->heap_size++;
  234|  6.78k|#endif
  235|  6.78k|}
tupleobject.c:_Py_AS_GC:
   17|  19.2k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  19.2k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  19.2k|    return (PyGC_Head*)gc;
   20|  19.2k|}
tupleobject.c:_PyGCHead_SET_NEXT:
  150|  15.2k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  15.2k|    gc->_gc_next = (uintptr_t)next;
  152|  15.2k|}
tupleobject.c:_PyGCHead_SET_PREV:
  160|  8.49k|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|  8.49k|    uintptr_t uprev = (uintptr_t)prev;
  162|  8.49k|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 8.49k, False: 0]
  ------------------
  163|  8.49k|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|  8.49k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  8.49k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|  8.49k|}
tupleobject.c:_PyObject_GC_IS_TRACKED:
   73|  10.7k|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|  10.7k|    PyGC_Head *gc = _Py_AS_GC(op);
   78|  10.7k|    return (gc->_gc_next != 0);
   79|  10.7k|#endif
   80|  10.7k|}
tupleobject.c:_PyObject_GC_MAY_BE_TRACKED:
   85|  8.33k|static inline int _PyObject_GC_MAY_BE_TRACKED(PyObject *obj) {
   86|  8.33k|    if (!PyObject_IS_GC(obj)) {
  ------------------
  |  Branch (86:9): [True: 7.90k, False: 432]
  ------------------
   87|  7.90k|        return 0;
   88|  7.90k|    }
   89|    432|    if (PyTuple_CheckExact(obj)) {
  ------------------
  |  |   28|    432|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|    432|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    432|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    432|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 202, False: 230]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   90|    202|        return _PyObject_GC_IS_TRACKED(obj);
  ------------------
  |  |   81|    202|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|    202|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   91|    202|    }
   92|    230|    return 1;
   93|    432|}
tupleobject.c:_PyObject_GC_UNTRACK:
  253|  1.70k|{
  254|  1.70k|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|  1.70k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 1.70k, False: 0]
  |  |  ------------------
  |  |  415|  1.70k|      ? (void)(0) \
  |  |  416|  1.70k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|  1.70k|                          "object not tracked by the garbage collector",
  256|  1.70k|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|  1.70k|    PyGC_Head *gc = _Py_AS_GC(op);
  262|  1.70k|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|  1.70k|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|  1.70k|    _PyGCHead_SET_NEXT(prev, next);
  265|  1.70k|    _PyGCHead_SET_PREV(next, prev);
  266|  1.70k|    gc->_gc_next = 0;
  267|  1.70k|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|  1.70k|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|  1.70k|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|  1.70k|    gcstate->heap_size--;
  270|  1.70k|#endif
  271|  1.70k|}
tupleobject.c:_PyGCHead_PREV:
  155|  1.70k|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|  1.70k|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|  1.70k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  1.70k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|  1.70k|    return (PyGC_Head*)prev;
  158|  1.70k|}
tupleobject.c:_PyGCHead_NEXT:
  146|  1.70k|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|  1.70k|    uintptr_t next = gc->_gc_next;
  148|  1.70k|    return (PyGC_Head*)next;
  149|  1.70k|}
typeobject.c:_PyObject_GC_TRACK:
  213|  11.1k|{
  214|  11.1k|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|  11.1k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 11.1k, False: 0]
  |  |  ------------------
  |  |  415|  11.1k|      ? (void)(0) \
  |  |  416|  11.1k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|  11.1k|                          "object already tracked by the garbage collector",
  216|  11.1k|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|  11.1k|    PyGC_Head *gc = _Py_AS_GC(op);
  221|  11.1k|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|  11.1k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 11.1k, False: 0]
  |  |  ------------------
  |  |  415|  11.1k|      ? (void)(0) \
  |  |  416|  11.1k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|  11.1k|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|  11.1k|                          "object is in generation which is garbage collected",
  224|  11.1k|                          filename, lineno, __func__);
  225|       |
  226|  11.1k|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|  11.1k|    PyGC_Head *generation0 = gcstate->generation0;
  228|  11.1k|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|  11.1k|    _PyGCHead_SET_NEXT(last, gc);
  230|  11.1k|    _PyGCHead_SET_PREV(gc, last);
  231|  11.1k|    _PyGCHead_SET_NEXT(gc, generation0);
  232|  11.1k|    generation0->_gc_prev = (uintptr_t)gc;
  233|  11.1k|    gcstate->heap_size++;
  234|  11.1k|#endif
  235|  11.1k|}
typeobject.c:_PyObject_GC_IS_TRACKED:
   73|  11.3k|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|  11.3k|    PyGC_Head *gc = _Py_AS_GC(op);
   78|  11.3k|    return (gc->_gc_next != 0);
   79|  11.3k|#endif
   80|  11.3k|}
typeobject.c:_Py_AS_GC:
   17|  22.7k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  22.7k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  22.7k|    return (PyGC_Head*)gc;
   20|  22.7k|}
typeobject.c:_PyGCHead_SET_NEXT:
  150|  22.5k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  22.5k|    gc->_gc_next = (uintptr_t)next;
  152|  22.5k|}
typeobject.c:_PyGCHead_SET_PREV:
  160|  11.3k|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|  11.3k|    uintptr_t uprev = (uintptr_t)prev;
  162|  11.3k|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 11.3k, False: 0]
  ------------------
  163|  11.3k|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|  11.3k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  11.3k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|  11.3k|}
typeobject.c:_PyObject_GC_UNTRACK:
  253|    182|{
  254|    182|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    182|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 182, False: 0]
  |  |  ------------------
  |  |  415|    182|      ? (void)(0) \
  |  |  416|    182|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    182|                          "object not tracked by the garbage collector",
  256|    182|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    182|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    182|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    182|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    182|    _PyGCHead_SET_NEXT(prev, next);
  265|    182|    _PyGCHead_SET_PREV(next, prev);
  266|    182|    gc->_gc_next = 0;
  267|    182|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    182|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    182|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    182|    gcstate->heap_size--;
  270|    182|#endif
  271|    182|}
typeobject.c:_PyGCHead_PREV:
  155|    182|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    182|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    182|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    182|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    182|    return (PyGC_Head*)prev;
  158|    182|}
typeobject.c:_PyGCHead_NEXT:
  146|    182|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    182|    uintptr_t next = gc->_gc_next;
  148|    182|    return (PyGC_Head*)next;
  149|    182|}
unicodeobject.c:_PyObject_GC_UNTRACK:
  253|      2|{
  254|      2|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|      2|                          "object not tracked by the garbage collector",
  256|      2|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|      2|    PyGC_Head *gc = _Py_AS_GC(op);
  262|      2|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|      2|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|      2|    _PyGCHead_SET_NEXT(prev, next);
  265|      2|    _PyGCHead_SET_PREV(next, prev);
  266|      2|    gc->_gc_next = 0;
  267|      2|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|      2|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|      2|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|      2|    gcstate->heap_size--;
  270|      2|#endif
  271|      2|}
unicodeobject.c:_PyObject_GC_IS_TRACKED:
   73|      4|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|      4|    PyGC_Head *gc = _Py_AS_GC(op);
   78|      4|    return (gc->_gc_next != 0);
   79|      4|#endif
   80|      4|}
unicodeobject.c:_Py_AS_GC:
   17|      8|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|      8|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|      8|    return (PyGC_Head*)gc;
   20|      8|}
unicodeobject.c:_PyGCHead_PREV:
  155|      2|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|      2|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|      2|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      2|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|      2|    return (PyGC_Head*)prev;
  158|      2|}
unicodeobject.c:_PyGCHead_NEXT:
  146|      2|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|      2|    uintptr_t next = gc->_gc_next;
  148|      2|    return (PyGC_Head*)next;
  149|      2|}
unicodeobject.c:_PyGCHead_SET_NEXT:
  150|      6|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|      6|    gc->_gc_next = (uintptr_t)next;
  152|      6|}
unicodeobject.c:_PyGCHead_SET_PREV:
  160|      4|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|      4|    uintptr_t uprev = (uintptr_t)prev;
  162|      4|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 4, False: 0]
  ------------------
  163|      4|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|      4|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      4|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|      4|}
unicodeobject.c:_PyObject_GC_TRACK:
  213|      2|{
  214|      2|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|      2|                          "object already tracked by the garbage collector",
  216|      2|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|      2|    PyGC_Head *gc = _Py_AS_GC(op);
  221|      2|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|      2|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|      2|                          "object is in generation which is garbage collected",
  224|      2|                          filename, lineno, __func__);
  225|       |
  226|      2|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|      2|    PyGC_Head *generation0 = gcstate->generation0;
  228|      2|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|      2|    _PyGCHead_SET_NEXT(last, gc);
  230|      2|    _PyGCHead_SET_PREV(gc, last);
  231|      2|    _PyGCHead_SET_NEXT(gc, generation0);
  232|      2|    generation0->_gc_prev = (uintptr_t)gc;
  233|      2|    gcstate->heap_size++;
  234|      2|#endif
  235|      2|}
context.c:_PyObject_GC_MAY_BE_TRACKED:
   85|      2|static inline int _PyObject_GC_MAY_BE_TRACKED(PyObject *obj) {
   86|      2|    if (!PyObject_IS_GC(obj)) {
  ------------------
  |  Branch (86:9): [True: 2, False: 0]
  ------------------
   87|      2|        return 0;
   88|      2|    }
   89|      0|    if (PyTuple_CheckExact(obj)) {
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   90|      0|        return _PyObject_GC_IS_TRACKED(obj);
  ------------------
  |  |   81|      0|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   91|      0|    }
   92|      0|    return 1;
   93|      0|}
frame.c:_PyObject_GC_IS_TRACKED:
   73|     56|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|     56|    PyGC_Head *gc = _Py_AS_GC(op);
   78|     56|    return (gc->_gc_next != 0);
   79|     56|#endif
   80|     56|}
frame.c:_Py_AS_GC:
   17|     84|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|     84|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|     84|    return (PyGC_Head*)gc;
   20|     84|}
frame.c:_PyObject_GC_TRACK:
  213|     28|{
  214|     28|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|     28|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 28, False: 0]
  |  |  ------------------
  |  |  415|     28|      ? (void)(0) \
  |  |  416|     28|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|     28|                          "object already tracked by the garbage collector",
  216|     28|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|     28|    PyGC_Head *gc = _Py_AS_GC(op);
  221|     28|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|     28|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 28, False: 0]
  |  |  ------------------
  |  |  415|     28|      ? (void)(0) \
  |  |  416|     28|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|     28|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|     28|                          "object is in generation which is garbage collected",
  224|     28|                          filename, lineno, __func__);
  225|       |
  226|     28|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|     28|    PyGC_Head *generation0 = gcstate->generation0;
  228|     28|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|     28|    _PyGCHead_SET_NEXT(last, gc);
  230|     28|    _PyGCHead_SET_PREV(gc, last);
  231|     28|    _PyGCHead_SET_NEXT(gc, generation0);
  232|     28|    generation0->_gc_prev = (uintptr_t)gc;
  233|     28|    gcstate->heap_size++;
  234|     28|#endif
  235|     28|}
frame.c:_PyGCHead_SET_NEXT:
  150|     56|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|     56|    gc->_gc_next = (uintptr_t)next;
  152|     56|}
frame.c:_PyGCHead_SET_PREV:
  160|     28|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|     28|    uintptr_t uprev = (uintptr_t)prev;
  162|     28|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 28, False: 0]
  ------------------
  163|     28|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|     28|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|     28|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|     28|}
gc.c:_PyGCHead_NEXT:
  146|  40.0k|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|  40.0k|    uintptr_t next = gc->_gc_next;
  148|  40.0k|    return (PyGC_Head*)next;
  149|  40.0k|}
gc.c:_PyGCHead_PREV:
  155|  12.6k|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|  12.6k|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|  12.6k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  12.6k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|  12.6k|    return (PyGC_Head*)prev;
  158|  12.6k|}
gc.c:_PyGCHead_SET_NEXT:
  150|  13.2k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  13.2k|    gc->_gc_next = (uintptr_t)next;
  152|  13.2k|}
gc.c:_PyGCHead_SET_PREV:
  160|  24.6k|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|  24.6k|    uintptr_t uprev = (uintptr_t)prev;
  162|  24.6k|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 24.6k, False: 0]
  ------------------
  163|  24.6k|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|  24.6k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  24.6k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|  24.6k|}
gc.c:_Py_FROM_GC:
   23|  40.7k|static inline PyObject* _Py_FROM_GC(PyGC_Head *gc) {
   24|  40.7k|    char *op = ((char *)gc) + sizeof(PyGC_Head);
   25|  40.7k|    return (PyObject *)op;
   26|  40.7k|}
gc.c:_PyObject_GC_IS_TRACKED:
   73|  30.2k|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|  30.2k|    PyGC_Head *gc = _Py_AS_GC(op);
   78|  30.2k|    return (gc->_gc_next != 0);
   79|  30.2k|#endif
   80|  30.2k|}
gc.c:_PyObject_GC_TRACK:
  213|    274|{
  214|    274|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    274|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 274, False: 0]
  |  |  ------------------
  |  |  415|    274|      ? (void)(0) \
  |  |  416|    274|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|    274|                          "object already tracked by the garbage collector",
  216|    274|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|    274|    PyGC_Head *gc = _Py_AS_GC(op);
  221|    274|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|    274|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 274, False: 0]
  |  |  ------------------
  |  |  415|    274|      ? (void)(0) \
  |  |  416|    274|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|    274|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|    274|                          "object is in generation which is garbage collected",
  224|    274|                          filename, lineno, __func__);
  225|       |
  226|    274|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|    274|    PyGC_Head *generation0 = gcstate->generation0;
  228|    274|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|    274|    _PyGCHead_SET_NEXT(last, gc);
  230|    274|    _PyGCHead_SET_PREV(gc, last);
  231|    274|    _PyGCHead_SET_NEXT(gc, generation0);
  232|    274|    generation0->_gc_prev = (uintptr_t)gc;
  233|    274|    gcstate->heap_size++;
  234|    274|#endif
  235|    274|}
gc.c:_PyObject_GC_UNTRACK:
  253|  9.28k|{
  254|  9.28k|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|  9.28k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 9.28k, False: 0]
  |  |  ------------------
  |  |  415|  9.28k|      ? (void)(0) \
  |  |  416|  9.28k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|  9.28k|                          "object not tracked by the garbage collector",
  256|  9.28k|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|  9.28k|    PyGC_Head *gc = _Py_AS_GC(op);
  262|  9.28k|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|  9.28k|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|  9.28k|    _PyGCHead_SET_NEXT(prev, next);
  265|  9.28k|    _PyGCHead_SET_PREV(next, prev);
  266|  9.28k|    gc->_gc_next = 0;
  267|  9.28k|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|  9.28k|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|  9.28k|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|  9.28k|    gcstate->heap_size--;
  270|  9.28k|#endif
  271|  9.28k|}
gc.c:_Py_AS_GC:
   17|  90.3k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  90.3k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  90.3k|    return (PyGC_Head*)gc;
   20|  90.3k|}
gc.c:_PyGC_FINALIZED:
  166|     44|static inline int _PyGC_FINALIZED(PyObject *op) {
  167|       |#ifdef Py_GIL_DISABLED
  168|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_FINALIZED);
  169|       |#else
  170|     44|    PyGC_Head *gc = _Py_AS_GC(op);
  171|     44|    return ((gc->_gc_prev & _PyGC_PREV_MASK_FINALIZED) != 0);
  ------------------
  |  |  117|     44|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  172|     44|#endif
  173|     44|}
bytearrayobject.c:_PyObject_GC_UNTRACK:
  253|      2|{
  254|      2|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|      2|                          "object not tracked by the garbage collector",
  256|      2|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|      2|    PyGC_Head *gc = _Py_AS_GC(op);
  262|      2|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|      2|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|      2|    _PyGCHead_SET_NEXT(prev, next);
  265|      2|    _PyGCHead_SET_PREV(next, prev);
  266|      2|    gc->_gc_next = 0;
  267|      2|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|      2|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|      2|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|      2|    gcstate->heap_size--;
  270|      2|#endif
  271|      2|}
bytearrayobject.c:_PyObject_GC_IS_TRACKED:
   73|      4|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|      4|    PyGC_Head *gc = _Py_AS_GC(op);
   78|      4|    return (gc->_gc_next != 0);
   79|      4|#endif
   80|      4|}
bytearrayobject.c:_Py_AS_GC:
   17|      8|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|      8|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|      8|    return (PyGC_Head*)gc;
   20|      8|}
bytearrayobject.c:_PyGCHead_PREV:
  155|      2|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|      2|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|      2|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      2|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|      2|    return (PyGC_Head*)prev;
  158|      2|}
bytearrayobject.c:_PyGCHead_NEXT:
  146|      2|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|      2|    uintptr_t next = gc->_gc_next;
  148|      2|    return (PyGC_Head*)next;
  149|      2|}
bytearrayobject.c:_PyGCHead_SET_NEXT:
  150|      6|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|      6|    gc->_gc_next = (uintptr_t)next;
  152|      6|}
bytearrayobject.c:_PyGCHead_SET_PREV:
  160|      4|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|      4|    uintptr_t uprev = (uintptr_t)prev;
  162|      4|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 4, False: 0]
  ------------------
  163|      4|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|      4|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      4|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|      4|}
bytearrayobject.c:_PyObject_GC_TRACK:
  213|      2|{
  214|      2|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|      2|                          "object already tracked by the garbage collector",
  216|      2|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|      2|    PyGC_Head *gc = _Py_AS_GC(op);
  221|      2|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|      2|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  ------------------
  |  |  415|      2|      ? (void)(0) \
  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|      2|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|      2|                          "object is in generation which is garbage collected",
  224|      2|                          filename, lineno, __func__);
  225|       |
  226|      2|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|      2|    PyGC_Head *generation0 = gcstate->generation0;
  228|      2|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|      2|    _PyGCHead_SET_NEXT(last, gc);
  230|      2|    _PyGCHead_SET_PREV(gc, last);
  231|      2|    _PyGCHead_SET_NEXT(gc, generation0);
  232|      2|    generation0->_gc_prev = (uintptr_t)gc;
  233|      2|    gcstate->heap_size++;
  234|      2|#endif
  235|      2|}
cellobject.c:_PyObject_GC_TRACK:
  213|    210|{
  214|    210|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    210|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 210, False: 0]
  |  |  ------------------
  |  |  415|    210|      ? (void)(0) \
  |  |  416|    210|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|    210|                          "object already tracked by the garbage collector",
  216|    210|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|    210|    PyGC_Head *gc = _Py_AS_GC(op);
  221|    210|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|    210|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 210, False: 0]
  |  |  ------------------
  |  |  415|    210|      ? (void)(0) \
  |  |  416|    210|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|    210|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|    210|                          "object is in generation which is garbage collected",
  224|    210|                          filename, lineno, __func__);
  225|       |
  226|    210|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|    210|    PyGC_Head *generation0 = gcstate->generation0;
  228|    210|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|    210|    _PyGCHead_SET_NEXT(last, gc);
  230|    210|    _PyGCHead_SET_PREV(gc, last);
  231|    210|    _PyGCHead_SET_NEXT(gc, generation0);
  232|    210|    generation0->_gc_prev = (uintptr_t)gc;
  233|    210|    gcstate->heap_size++;
  234|    210|#endif
  235|    210|}
cellobject.c:_PyObject_GC_IS_TRACKED:
   73|    376|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    376|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    376|    return (gc->_gc_next != 0);
   79|    376|#endif
   80|    376|}
cellobject.c:_Py_AS_GC:
   17|    752|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|    752|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|    752|    return (PyGC_Head*)gc;
   20|    752|}
cellobject.c:_PyGCHead_SET_NEXT:
  150|    586|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|    586|    gc->_gc_next = (uintptr_t)next;
  152|    586|}
cellobject.c:_PyGCHead_SET_PREV:
  160|    376|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    376|    uintptr_t uprev = (uintptr_t)prev;
  162|    376|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 376, False: 0]
  ------------------
  163|    376|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    376|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    376|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    376|}
cellobject.c:_PyObject_GC_UNTRACK:
  253|    166|{
  254|    166|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    166|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 166, False: 0]
  |  |  ------------------
  |  |  415|    166|      ? (void)(0) \
  |  |  416|    166|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    166|                          "object not tracked by the garbage collector",
  256|    166|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    166|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    166|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    166|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    166|    _PyGCHead_SET_NEXT(prev, next);
  265|    166|    _PyGCHead_SET_PREV(next, prev);
  266|    166|    gc->_gc_next = 0;
  267|    166|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    166|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    166|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    166|    gcstate->heap_size--;
  270|    166|#endif
  271|    166|}
cellobject.c:_PyGCHead_PREV:
  155|    166|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    166|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    166|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    166|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    166|    return (PyGC_Head*)prev;
  158|    166|}
cellobject.c:_PyGCHead_NEXT:
  146|    166|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    166|    uintptr_t next = gc->_gc_next;
  148|    166|    return (PyGC_Head*)next;
  149|    166|}
classobject.c:_PyObject_GC_TRACK:
  213|    392|{
  214|    392|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    392|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 392, False: 0]
  |  |  ------------------
  |  |  415|    392|      ? (void)(0) \
  |  |  416|    392|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|    392|                          "object already tracked by the garbage collector",
  216|    392|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|    392|    PyGC_Head *gc = _Py_AS_GC(op);
  221|    392|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|    392|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 392, False: 0]
  |  |  ------------------
  |  |  415|    392|      ? (void)(0) \
  |  |  416|    392|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|    392|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|    392|                          "object is in generation which is garbage collected",
  224|    392|                          filename, lineno, __func__);
  225|       |
  226|    392|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|    392|    PyGC_Head *generation0 = gcstate->generation0;
  228|    392|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|    392|    _PyGCHead_SET_NEXT(last, gc);
  230|    392|    _PyGCHead_SET_PREV(gc, last);
  231|    392|    _PyGCHead_SET_NEXT(gc, generation0);
  232|    392|    generation0->_gc_prev = (uintptr_t)gc;
  233|    392|    gcstate->heap_size++;
  234|    392|#endif
  235|    392|}
classobject.c:_PyObject_GC_IS_TRACKED:
   73|    784|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    784|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    784|    return (gc->_gc_next != 0);
   79|    784|#endif
   80|    784|}
classobject.c:_Py_AS_GC:
   17|  1.56k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  1.56k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  1.56k|    return (PyGC_Head*)gc;
   20|  1.56k|}
classobject.c:_PyGCHead_SET_NEXT:
  150|  1.17k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  1.17k|    gc->_gc_next = (uintptr_t)next;
  152|  1.17k|}
classobject.c:_PyGCHead_SET_PREV:
  160|    784|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    784|    uintptr_t uprev = (uintptr_t)prev;
  162|    784|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 784, False: 0]
  ------------------
  163|    784|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    784|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    784|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    784|}
classobject.c:_PyObject_GC_UNTRACK:
  253|    392|{
  254|    392|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    392|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 392, False: 0]
  |  |  ------------------
  |  |  415|    392|      ? (void)(0) \
  |  |  416|    392|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    392|                          "object not tracked by the garbage collector",
  256|    392|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    392|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    392|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    392|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    392|    _PyGCHead_SET_NEXT(prev, next);
  265|    392|    _PyGCHead_SET_PREV(next, prev);
  266|    392|    gc->_gc_next = 0;
  267|    392|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    392|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    392|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    392|    gcstate->heap_size--;
  270|    392|#endif
  271|    392|}
classobject.c:_PyGCHead_PREV:
  155|    392|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    392|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    392|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    392|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    392|    return (PyGC_Head*)prev;
  158|    392|}
classobject.c:_PyGCHead_NEXT:
  146|    392|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    392|    uintptr_t next = gc->_gc_next;
  148|    392|    return (PyGC_Head*)next;
  149|    392|}
descrobject.c:_PyObject_GC_UNTRACK:
  253|    284|{
  254|    284|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    284|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 284, False: 0]
  |  |  ------------------
  |  |  415|    284|      ? (void)(0) \
  |  |  416|    284|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|    284|                          "object not tracked by the garbage collector",
  256|    284|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|    284|    PyGC_Head *gc = _Py_AS_GC(op);
  262|    284|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|    284|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|    284|    _PyGCHead_SET_NEXT(prev, next);
  265|    284|    _PyGCHead_SET_PREV(next, prev);
  266|    284|    gc->_gc_next = 0;
  267|    284|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|    284|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|    284|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|    284|    gcstate->heap_size--;
  270|    284|#endif
  271|    284|}
descrobject.c:_PyObject_GC_IS_TRACKED:
   73|    506|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    506|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    506|    return (gc->_gc_next != 0);
   79|    506|#endif
   80|    506|}
descrobject.c:_Py_AS_GC:
   17|  1.01k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  1.01k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  1.01k|    return (PyGC_Head*)gc;
   20|  1.01k|}
descrobject.c:_PyGCHead_PREV:
  155|    284|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|    284|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|    284|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    284|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|    284|    return (PyGC_Head*)prev;
  158|    284|}
descrobject.c:_PyGCHead_NEXT:
  146|    284|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|    284|    uintptr_t next = gc->_gc_next;
  148|    284|    return (PyGC_Head*)next;
  149|    284|}
descrobject.c:_PyGCHead_SET_NEXT:
  150|    728|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|    728|    gc->_gc_next = (uintptr_t)next;
  152|    728|}
descrobject.c:_PyGCHead_SET_PREV:
  160|    506|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    506|    uintptr_t uprev = (uintptr_t)prev;
  162|    506|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 506, False: 0]
  ------------------
  163|    506|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    506|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    506|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    506|}
descrobject.c:_PyObject_GC_TRACK:
  213|    222|{
  214|    222|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|    222|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 222, False: 0]
  |  |  ------------------
  |  |  415|    222|      ? (void)(0) \
  |  |  416|    222|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|    222|                          "object already tracked by the garbage collector",
  216|    222|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|    222|    PyGC_Head *gc = _Py_AS_GC(op);
  221|    222|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|    222|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 222, False: 0]
  |  |  ------------------
  |  |  415|    222|      ? (void)(0) \
  |  |  416|    222|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|    222|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|    222|                          "object is in generation which is garbage collected",
  224|    222|                          filename, lineno, __func__);
  225|       |
  226|    222|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|    222|    PyGC_Head *generation0 = gcstate->generation0;
  228|    222|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|    222|    _PyGCHead_SET_NEXT(last, gc);
  230|    222|    _PyGCHead_SET_PREV(gc, last);
  231|    222|    _PyGCHead_SET_NEXT(gc, generation0);
  232|    222|    generation0->_gc_prev = (uintptr_t)gc;
  233|    222|    gcstate->heap_size++;
  234|    222|#endif
  235|    222|}
genobject.c:_PyObject_GC_UNTRACK:
  253|     84|{
  254|     84|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|     84|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 84, False: 0]
  |  |  ------------------
  |  |  415|     84|      ? (void)(0) \
  |  |  416|     84|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|     84|                          "object not tracked by the garbage collector",
  256|     84|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|     84|    PyGC_Head *gc = _Py_AS_GC(op);
  262|     84|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|     84|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|     84|    _PyGCHead_SET_NEXT(prev, next);
  265|     84|    _PyGCHead_SET_PREV(next, prev);
  266|     84|    gc->_gc_next = 0;
  267|     84|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|     84|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|     84|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|     84|    gcstate->heap_size--;
  270|     84|#endif
  271|     84|}
genobject.c:_PyObject_GC_IS_TRACKED:
   73|    168|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    168|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    168|    return (gc->_gc_next != 0);
   79|    168|#endif
   80|    168|}
genobject.c:_Py_AS_GC:
   17|    336|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|    336|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|    336|    return (PyGC_Head*)gc;
   20|    336|}
genobject.c:_PyGCHead_PREV:
  155|     84|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|     84|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|     84|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|     84|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|     84|    return (PyGC_Head*)prev;
  158|     84|}
genobject.c:_PyGCHead_NEXT:
  146|     84|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|     84|    uintptr_t next = gc->_gc_next;
  148|     84|    return (PyGC_Head*)next;
  149|     84|}
genobject.c:_PyGCHead_SET_NEXT:
  150|    252|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|    252|    gc->_gc_next = (uintptr_t)next;
  152|    252|}
genobject.c:_PyGCHead_SET_PREV:
  160|    168|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|    168|    uintptr_t uprev = (uintptr_t)prev;
  162|    168|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 168, False: 0]
  ------------------
  163|    168|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|    168|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|    168|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|    168|}
genobject.c:_PyObject_GC_TRACK:
  213|     84|{
  214|     84|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|     84|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 84, False: 0]
  |  |  ------------------
  |  |  415|     84|      ? (void)(0) \
  |  |  416|     84|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|     84|                          "object already tracked by the garbage collector",
  216|     84|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|     84|    PyGC_Head *gc = _Py_AS_GC(op);
  221|     84|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|     84|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 84, False: 0]
  |  |  ------------------
  |  |  415|     84|      ? (void)(0) \
  |  |  416|     84|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|     84|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|     84|                          "object is in generation which is garbage collected",
  224|     84|                          filename, lineno, __func__);
  225|       |
  226|     84|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|     84|    PyGC_Head *generation0 = gcstate->generation0;
  228|     84|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|     84|    _PyGCHead_SET_NEXT(last, gc);
  230|     84|    _PyGCHead_SET_PREV(gc, last);
  231|     84|    _PyGCHead_SET_NEXT(gc, generation0);
  232|     84|    generation0->_gc_prev = (uintptr_t)gc;
  233|     84|    gcstate->heap_size++;
  234|     84|#endif
  235|     84|}
frameobject.c:_PyObject_GC_IS_TRACKED:
   73|    214|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|    214|    PyGC_Head *gc = _Py_AS_GC(op);
   78|    214|    return (gc->_gc_next != 0);
   79|    214|#endif
   80|    214|}
frameobject.c:_Py_AS_GC:
   17|    242|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|    242|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|    242|    return (PyGC_Head*)gc;
   20|    242|}
frameobject.c:_PyObject_GC_UNTRACK:
  253|     28|{
  254|     28|    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|     28|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 28, False: 0]
  |  |  ------------------
  |  |  415|     28|      ? (void)(0) \
  |  |  416|     28|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  255|     28|                          "object not tracked by the garbage collector",
  256|     28|                          filename, lineno, __func__);
  257|       |
  258|       |#ifdef Py_GIL_DISABLED
  259|       |    _PyObject_CLEAR_GC_BITS(op, _PyGC_BITS_TRACKED);
  260|       |#else
  261|     28|    PyGC_Head *gc = _Py_AS_GC(op);
  262|     28|    PyGC_Head *prev = _PyGCHead_PREV(gc);
  263|     28|    PyGC_Head *next = _PyGCHead_NEXT(gc);
  264|     28|    _PyGCHead_SET_NEXT(prev, next);
  265|     28|    _PyGCHead_SET_PREV(next, prev);
  266|     28|    gc->_gc_next = 0;
  267|     28|    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
  ------------------
  |  |  117|     28|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
  268|     28|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  269|     28|    gcstate->heap_size--;
  270|     28|#endif
  271|     28|}
frameobject.c:_PyGCHead_PREV:
  155|     28|static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {
  156|     28|    uintptr_t prev = (gc->_gc_prev & _PyGC_PREV_MASK);
  ------------------
  |  |  122|     28|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|     28|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  157|     28|    return (PyGC_Head*)prev;
  158|     28|}
frameobject.c:_PyGCHead_NEXT:
  146|     28|static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {
  147|     28|    uintptr_t next = gc->_gc_next;
  148|     28|    return (PyGC_Head*)next;
  149|     28|}
frameobject.c:_PyGCHead_SET_NEXT:
  150|     28|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|     28|    gc->_gc_next = (uintptr_t)next;
  152|     28|}
frameobject.c:_PyGCHead_SET_PREV:
  160|     28|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|     28|    uintptr_t uprev = (uintptr_t)prev;
  162|     28|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 28, False: 0]
  ------------------
  163|     28|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|     28|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|     28|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|     28|}
lazyimportobject.c:_PyObject_GC_TRACK:
  213|      8|{
  214|      8|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|      8|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 8, False: 0]
  |  |  ------------------
  |  |  415|      8|      ? (void)(0) \
  |  |  416|      8|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|      8|                          "object already tracked by the garbage collector",
  216|      8|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|      8|    PyGC_Head *gc = _Py_AS_GC(op);
  221|      8|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|      8|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 8, False: 0]
  |  |  ------------------
  |  |  415|      8|      ? (void)(0) \
  |  |  416|      8|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|      8|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|      8|                          "object is in generation which is garbage collected",
  224|      8|                          filename, lineno, __func__);
  225|       |
  226|      8|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|      8|    PyGC_Head *generation0 = gcstate->generation0;
  228|      8|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|      8|    _PyGCHead_SET_NEXT(last, gc);
  230|      8|    _PyGCHead_SET_PREV(gc, last);
  231|      8|    _PyGCHead_SET_NEXT(gc, generation0);
  232|      8|    generation0->_gc_prev = (uintptr_t)gc;
  233|      8|    gcstate->heap_size++;
  234|      8|#endif
  235|      8|}
lazyimportobject.c:_PyObject_GC_IS_TRACKED:
   73|      8|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|      8|    PyGC_Head *gc = _Py_AS_GC(op);
   78|      8|    return (gc->_gc_next != 0);
   79|      8|#endif
   80|      8|}
lazyimportobject.c:_Py_AS_GC:
   17|     16|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|     16|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|     16|    return (PyGC_Head*)gc;
   20|     16|}
lazyimportobject.c:_PyGCHead_SET_NEXT:
  150|     16|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|     16|    gc->_gc_next = (uintptr_t)next;
  152|     16|}
lazyimportobject.c:_PyGCHead_SET_PREV:
  160|      8|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|      8|    uintptr_t uprev = (uintptr_t)prev;
  162|      8|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 8, False: 0]
  ------------------
  163|      8|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|      8|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|      8|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|      8|}
methodobject.c:_PyObject_GC_TRACK:
  213|  1.76k|{
  214|  1.76k|    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
  ------------------
  |  |  414|  1.76k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 1.76k, False: 0]
  |  |  ------------------
  |  |  415|  1.76k|      ? (void)(0) \
  |  |  416|  1.76k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  215|  1.76k|                          "object already tracked by the garbage collector",
  216|  1.76k|                          filename, lineno, __func__);
  217|       |#ifdef Py_GIL_DISABLED
  218|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_TRACKED);
  219|       |#else
  220|  1.76k|    PyGC_Head *gc = _Py_AS_GC(op);
  221|  1.76k|    _PyObject_ASSERT_FROM(op,
  ------------------
  |  |  414|  1.76k|    ((expr) \
  |  |  ------------------
  |  |  |  Branch (414:6): [True: 1.76k, False: 0]
  |  |  ------------------
  |  |  415|  1.76k|      ? (void)(0) \
  |  |  416|  1.76k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  ------------------
  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  ------------------
  222|  1.76k|                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
  223|  1.76k|                          "object is in generation which is garbage collected",
  224|  1.76k|                          filename, lineno, __func__);
  225|       |
  226|  1.76k|    struct _gc_runtime_state *gcstate = &_PyInterpreterState_GET()->gc;
  227|  1.76k|    PyGC_Head *generation0 = gcstate->generation0;
  228|  1.76k|    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
  229|  1.76k|    _PyGCHead_SET_NEXT(last, gc);
  230|  1.76k|    _PyGCHead_SET_PREV(gc, last);
  231|  1.76k|    _PyGCHead_SET_NEXT(gc, generation0);
  232|  1.76k|    generation0->_gc_prev = (uintptr_t)gc;
  233|  1.76k|    gcstate->heap_size++;
  234|  1.76k|#endif
  235|  1.76k|}
methodobject.c:_PyObject_GC_IS_TRACKED:
   73|  1.76k|static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {
   74|       |#ifdef Py_GIL_DISABLED
   75|       |    return _PyObject_HAS_GC_BITS(op, _PyGC_BITS_TRACKED);
   76|       |#else
   77|  1.76k|    PyGC_Head *gc = _Py_AS_GC(op);
   78|  1.76k|    return (gc->_gc_next != 0);
   79|  1.76k|#endif
   80|  1.76k|}
methodobject.c:_Py_AS_GC:
   17|  3.52k|static inline PyGC_Head* _Py_AS_GC(PyObject *op) {
   18|  3.52k|    char *gc = ((char*)op) - sizeof(PyGC_Head);
   19|  3.52k|    return (PyGC_Head*)gc;
   20|  3.52k|}
methodobject.c:_PyGCHead_SET_NEXT:
  150|  3.52k|static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {
  151|  3.52k|    gc->_gc_next = (uintptr_t)next;
  152|  3.52k|}
methodobject.c:_PyGCHead_SET_PREV:
  160|  1.76k|static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {
  161|  1.76k|    uintptr_t uprev = (uintptr_t)prev;
  162|  1.76k|    assert((uprev & ~_PyGC_PREV_MASK) == 0);
  ------------------
  |  Branch (162:5): [True: 1.76k, False: 0]
  ------------------
  163|  1.76k|    gc->_gc_prev = ((gc->_gc_prev & ~_PyGC_PREV_MASK) | uprev);
  ------------------
  |  |  122|  1.76k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  1.76k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
  164|  1.76k|}

ceval.c:_PyGen_GetGeneratorFromFrame:
   18|     82|{
   19|     82|    assert(frame->owner == FRAME_OWNED_BY_GENERATOR);
  ------------------
  |  Branch (19:5): [True: 82, False: 0]
  ------------------
   20|     82|    size_t offset_in_gen = offsetof(PyGenObject, gi_iframe);
   21|     82|    return (PyGenObject *)(((char *)frame) - offset_in_gen);
   22|     82|}
frame.c:_PyGen_GetGeneratorFromFrame:
   18|     42|{
   19|     42|    assert(frame->owner == FRAME_OWNED_BY_GENERATOR);
  ------------------
  |  Branch (19:5): [True: 42, False: 0]
  ------------------
   20|     42|    size_t offset_in_gen = offsetof(PyGenObject, gi_iframe);
   21|     42|    return (PyGenObject *)(((char *)frame) - offset_in_gen);
   22|     42|}

import.c:_Py_hashtable_get_entry:
  124|     32|{
  125|     32|    return ht->get_entry_func(ht, key);
  126|     32|}

typeobject.c:_PyThreadState_GetFrame:
  281|      8|{
  282|      8|    return _PyFrame_GetFirstComplete(tstate->current_frame);
  283|      8|}
typeobject.c:_PyFrame_GetFirstComplete:
  272|      8|{
  273|      8|    while (frame && _PyFrame_IsIncomplete(frame)) {
  ------------------
  |  Branch (273:12): [True: 8, False: 0]
  |  Branch (273:21): [True: 0, False: 8]
  ------------------
  274|      0|        frame = frame->previous;
  275|      0|    }
  276|      8|    return frame;
  277|      8|}
typeobject.c:_PyFrame_IsIncomplete:
  261|      8|{
  262|      8|    if (frame->owner >= FRAME_OWNED_BY_INTERPRETER) {
  ------------------
  |  Branch (262:9): [True: 0, False: 8]
  ------------------
  263|      0|        return true;
  264|      0|    }
  265|      8|    return frame->owner != FRAME_OWNED_BY_GENERATOR &&
  ------------------
  |  Branch (265:12): [True: 8, False: 0]
  ------------------
  266|      8|           frame->instr_ptr < _PyFrame_GetBytecode(frame) +
  ------------------
  |  Branch (266:12): [True: 0, False: 8]
  ------------------
  267|      8|                                  _PyFrame_GetCode(frame)->_co_firsttraceable;
  268|      8|}
typeobject.c:_PyFrame_GetBytecode:
   59|      8|{
   60|       |#ifdef Py_GIL_DISABLED
   61|       |    PyCodeObject *co = _PyFrame_GetCode(f);
   62|       |    _PyCodeArray *tlbc = _PyCode_GetTLBCArray(co);
   63|       |    assert(f->tlbc_index >= 0 && f->tlbc_index < tlbc->size);
   64|       |    return (_Py_CODEUNIT *)tlbc->entries[f->tlbc_index];
   65|       |#else
   66|      8|    return _PyCode_CODE(_PyFrame_GetCode(f));
  ------------------
  |  |   16|      8|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|      8|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
   67|      8|#endif
   68|      8|}
typeobject.c:_PyFrame_GetCode:
   20|     32|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|     32|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 32, False: 0]
  ------------------
   22|     32|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|     32|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 32, False: 0]
  ------------------
   24|     32|    return (PyCodeObject *)executable;
   25|     32|}
typeobject.c:_PyFrame_GetLocalsArray:
  223|     16|{
  224|     16|    return frame->localsplus;
  225|     16|}
ceval.c:_PyFrame_GetCode:
   20|  50.8k|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|  50.8k|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 50.8k, False: 0]
  ------------------
   22|  50.8k|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|  50.8k|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 50.8k, False: 0]
  ------------------
   24|  50.8k|    return (PyCodeObject *)executable;
   25|  50.8k|}
ceval.c:_PyFrame_GetStackPointer:
  232|  75.2k|{
  233|  75.2k|    assert(frame->stackpointer != NULL);
  ------------------
  |  Branch (233:5): [True: 75.2k, False: 0]
  ------------------
  234|  75.2k|    _PyStackRef *sp = frame->stackpointer;
  235|  75.2k|#ifndef NDEBUG
  236|       |    frame->stackpointer = NULL;
  237|  75.2k|#endif
  238|  75.2k|    return sp;
  239|  75.2k|}
ceval.c:_PyFrame_SetStackPointer:
  243|  74.4k|{
  244|  74.4k|    assert(frame->stackpointer == NULL);
  ------------------
  |  Branch (244:5): [True: 74.4k, False: 0]
  ------------------
  245|  74.4k|    frame->stackpointer = stack_pointer;
  246|  74.4k|}
ceval.c:_PyThreadState_HasStackSpace:
  334|  1.23k|{
  335|  1.23k|    assert(
  ------------------
  |  Branch (335:5): [True: 0, False: 1.23k]
  |  Branch (335:5): [True: 0, False: 0]
  |  Branch (335:5): [True: 1.23k, False: 0]
  |  Branch (335:5): [True: 1.23k, False: 0]
  ------------------
  336|  1.23k|        (tstate->datastack_top == NULL && tstate->datastack_limit == NULL)
  337|  1.23k|        ||
  338|  1.23k|        (tstate->datastack_top != NULL && tstate->datastack_limit != NULL)
  339|  1.23k|    );
  340|  1.23k|    return tstate->datastack_top != NULL &&
  ------------------
  |  Branch (340:12): [True: 1.23k, False: 0]
  ------------------
  341|  1.23k|        size < tstate->datastack_limit - tstate->datastack_top;
  ------------------
  |  Branch (341:9): [True: 1.23k, False: 0]
  ------------------
  342|  1.23k|}
ceval.c:_PyFrame_PushUnchecked:
  355|  1.08k|{
  356|  1.08k|    CALL_STAT_INC(frames_pushed);
  ------------------
  |  |   76|  1.08k|#define CALL_STAT_INC(name) ((void)0)
  ------------------
  357|  1.08k|    PyFunctionObject *func_obj = (PyFunctionObject *)PyStackRef_AsPyObjectBorrow(func);
  358|  1.08k|    PyCodeObject *code = (PyCodeObject *)func_obj->func_code;
  359|  1.08k|    _PyInterpreterFrame *new_frame = (_PyInterpreterFrame *)tstate->datastack_top;
  360|  1.08k|    tstate->datastack_top += code->co_framesize;
  361|  1.08k|    assert(tstate->datastack_top < tstate->datastack_limit);
  ------------------
  |  Branch (361:5): [True: 1.08k, False: 0]
  ------------------
  362|  1.08k|    _PyFrame_Initialize(tstate, new_frame, func, NULL, code, null_locals_from,
  363|  1.08k|                        previous);
  364|  1.08k|    return new_frame;
  365|  1.08k|}
ceval.c:_PyFrame_PushTrampolineUnchecked:
  371|    148|{
  372|    148|    CALL_STAT_INC(frames_pushed);
  ------------------
  |  |   76|    148|#define CALL_STAT_INC(name) ((void)0)
  ------------------
  373|    148|    _PyInterpreterFrame *frame = (_PyInterpreterFrame *)tstate->datastack_top;
  374|    148|    tstate->datastack_top += code->co_framesize;
  375|    148|    assert(tstate->datastack_top < tstate->datastack_limit);
  ------------------
  |  Branch (375:5): [True: 148, False: 0]
  ------------------
  376|    148|    frame->previous = previous;
  377|    148|    frame->f_funcobj = PyStackRef_None;
  ------------------
  |  |  473|    148|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  ------------------
  |  |  |  |   55|    148|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  378|    148|    frame->f_executable = PyStackRef_FromPyObjectNew(code);
  ------------------
  |  |  599|    148|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  379|       |#ifdef Py_DEBUG
  380|       |    frame->f_builtins = NULL;
  381|       |    frame->f_globals = NULL;
  382|       |#endif
  383|    148|    frame->f_locals = NULL;
  384|    148|    assert(stackdepth <= code->co_stacksize);
  ------------------
  |  Branch (384:5): [True: 148, False: 0]
  ------------------
  385|    148|    frame->stackpointer = frame->localsplus + code->co_nlocalsplus + stackdepth;
  386|    148|    frame->frame_obj = NULL;
  387|       |#ifdef Py_GIL_DISABLED
  388|       |    _PyFrame_InitializeTLBC(tstate, frame, code);
  389|       |#else
  390|    148|    frame->instr_ptr = _PyCode_CODE(code);
  ------------------
  |  |   16|    148|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|    148|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
  391|    148|#endif
  392|    148|    frame->owner = FRAME_OWNED_BY_THREAD;
  393|    148|    frame->visited = 0;
  394|       |#ifdef Py_DEBUG
  395|       |    frame->lltrace = 0;
  396|       |#endif
  397|    148|    frame->return_offset = 0;
  398|    148|    return frame;
  399|    148|}
ceval.c:_PyFrame_GetBytecode:
   59|  2.84k|{
   60|       |#ifdef Py_GIL_DISABLED
   61|       |    PyCodeObject *co = _PyFrame_GetCode(f);
   62|       |    _PyCodeArray *tlbc = _PyCode_GetTLBCArray(co);
   63|       |    assert(f->tlbc_index >= 0 && f->tlbc_index < tlbc->size);
   64|       |    return (_Py_CODEUNIT *)tlbc->entries[f->tlbc_index];
   65|       |#else
   66|  2.84k|    return _PyCode_CODE(_PyFrame_GetCode(f));
  ------------------
  |  |   16|  2.84k|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|  2.84k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
   67|  2.84k|#endif
   68|  2.84k|}
ceval.c:_PyFrame_StackPush:
  117|    214|static inline void _PyFrame_StackPush(_PyInterpreterFrame *f, _PyStackRef value) {
  118|    214|    *f->stackpointer = value;
  119|    214|    f->stackpointer++;
  120|    214|}
ceval.c:_PyFrame_Stackbase:
  101|  4.20k|static inline _PyStackRef *_PyFrame_Stackbase(_PyInterpreterFrame *f) {
  102|  4.20k|    return (f->localsplus + _PyFrame_GetCode(f)->co_nlocalsplus);
  103|  4.20k|}
ceval.c:_PyFrame_IsIncomplete:
  261|  1.51k|{
  262|  1.51k|    if (frame->owner >= FRAME_OWNED_BY_INTERPRETER) {
  ------------------
  |  Branch (262:9): [True: 906, False: 608]
  ------------------
  263|    906|        return true;
  264|    906|    }
  265|    608|    return frame->owner != FRAME_OWNED_BY_GENERATOR &&
  ------------------
  |  Branch (265:12): [True: 608, False: 0]
  ------------------
  266|    608|           frame->instr_ptr < _PyFrame_GetBytecode(frame) +
  ------------------
  |  Branch (266:12): [True: 0, False: 608]
  ------------------
  267|    608|                                  _PyFrame_GetCode(frame)->_co_firsttraceable;
  268|  1.51k|}
ceval.c:_PyFrame_Copy:
  134|     42|{
  135|     42|    dest->f_executable = PyStackRef_MakeHeapSafe(src->f_executable);
  136|       |    // Don't leave a dangling pointer to the old frame when creating generators
  137|       |    // and coroutines:
  138|     42|    dest->previous = NULL;
  139|     42|    dest->f_funcobj = PyStackRef_MakeHeapSafe(src->f_funcobj);
  140|     42|    dest->f_globals = src->f_globals;
  141|     42|    dest->f_builtins = src->f_builtins;
  142|     42|    dest->f_locals = src->f_locals;
  143|     42|    dest->frame_obj = src->frame_obj;
  144|     42|    dest->instr_ptr = src->instr_ptr;
  145|       |#ifdef Py_GIL_DISABLED
  146|       |    dest->tlbc_index = src->tlbc_index;
  147|       |#endif
  148|     42|    assert(src->stackpointer != NULL);
  ------------------
  |  Branch (148:5): [True: 42, False: 0]
  ------------------
  149|     42|    int stacktop = (int)(src->stackpointer - src->localsplus);
  150|     42|    assert(stacktop >= 0);
  ------------------
  |  Branch (150:5): [True: 42, False: 0]
  ------------------
  151|     42|    dest->stackpointer = dest->localsplus + stacktop;
  152|       |    // visited is GC bookkeeping for the current stack walk, not frame state.
  153|     42|    dest->visited = 0;
  154|       |#ifdef Py_DEBUG
  155|       |    dest->lltrace = src->lltrace;
  156|       |#endif
  157|    222|    for (int i = 0; i < stacktop; i++) {
  ------------------
  |  Branch (157:21): [True: 180, False: 42]
  ------------------
  158|    180|        dest->localsplus[i] = PyStackRef_MakeHeapSafe(src->localsplus[i]);
  159|    180|    }
  160|     42|}
ceval.c:_PyFrame_GetFrameObject:
  295|    204|{
  296|       |
  297|    204|    assert(!_PyFrame_IsIncomplete(frame));
  ------------------
  |  Branch (297:5): [True: 204, False: 0]
  ------------------
  298|    204|    PyFrameObject *res =  frame->frame_obj;
  299|    204|    if (res != NULL) {
  ------------------
  |  Branch (299:9): [True: 44, False: 160]
  ------------------
  300|     44|        return res;
  301|     44|    }
  302|    160|    return _PyFrame_MakeAndSetFrameObject(frame);
  303|    204|}
ceval.c:_PyFrame_StackPop:
  111|    326|static inline _PyStackRef _PyFrame_StackPop(_PyInterpreterFrame *f) {
  112|    326|    assert(f->stackpointer > _PyFrame_Stackbase(f));
  ------------------
  |  Branch (112:5): [True: 326, False: 0]
  ------------------
  113|    326|    f->stackpointer--;
  114|    326|    return *f->stackpointer;
  115|    326|}
ceval.c:_PyFrame_Initialize:
  190|  3.32k|{
  191|  3.32k|    frame->previous = previous;
  192|  3.32k|    frame->f_funcobj = func;
  193|  3.32k|    frame->f_executable = PyStackRef_FromPyObjectNew(code);
  ------------------
  |  |  599|  3.32k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  3.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  194|  3.32k|    PyFunctionObject *func_obj = (PyFunctionObject *)PyStackRef_AsPyObjectBorrow(func);
  195|  3.32k|    frame->f_builtins = func_obj->func_builtins;
  196|  3.32k|    frame->f_globals = func_obj->func_globals;
  197|  3.32k|    frame->f_locals = locals;
  198|  3.32k|    frame->stackpointer = frame->localsplus + code->co_nlocalsplus;
  199|  3.32k|    frame->frame_obj = NULL;
  200|       |#ifdef Py_GIL_DISABLED
  201|       |    _PyFrame_InitializeTLBC(tstate, frame, code);
  202|       |#else
  203|  3.32k|    (void)tstate;
  204|  3.32k|    frame->instr_ptr = _PyCode_CODE(code);
  ------------------
  |  |   16|  3.32k|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|  3.32k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
  205|  3.32k|#endif
  206|  3.32k|    frame->return_offset = 0;
  207|  3.32k|    frame->owner = FRAME_OWNED_BY_THREAD;
  208|  3.32k|    frame->visited = 0;
  209|       |#ifdef Py_DEBUG
  210|       |    frame->lltrace = 0;
  211|       |#endif
  212|       |
  213|  11.9k|    for (int i = null_locals_from; i < code->co_nlocalsplus; i++) {
  ------------------
  |  Branch (213:36): [True: 8.58k, False: 3.32k]
  ------------------
  214|  8.58k|        frame->localsplus[i] = PyStackRef_NULL;
  215|  8.58k|    }
  216|  3.32k|}
ceval.c:_PyThreadState_GetFrame:
  281|    218|{
  282|    218|    return _PyFrame_GetFirstComplete(tstate->current_frame);
  283|    218|}
ceval.c:_PyFrame_GetFirstComplete:
  272|    218|{
  273|    236|    while (frame && _PyFrame_IsIncomplete(frame)) {
  ------------------
  |  Branch (273:12): [True: 218, False: 18]
  |  Branch (273:21): [True: 18, False: 200]
  ------------------
  274|     18|        frame = frame->previous;
  275|     18|    }
  276|    218|    return frame;
  277|    218|}
frame.c:_PyFrame_GetCode:
   20|    410|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|    410|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 410, False: 0]
  ------------------
   22|    410|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|    410|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 410, False: 0]
  ------------------
   24|    410|    return (PyCodeObject *)executable;
   25|    410|}
frame.c:_PyFrame_Copy:
  134|     28|{
  135|     28|    dest->f_executable = PyStackRef_MakeHeapSafe(src->f_executable);
  136|       |    // Don't leave a dangling pointer to the old frame when creating generators
  137|       |    // and coroutines:
  138|     28|    dest->previous = NULL;
  139|     28|    dest->f_funcobj = PyStackRef_MakeHeapSafe(src->f_funcobj);
  140|     28|    dest->f_globals = src->f_globals;
  141|     28|    dest->f_builtins = src->f_builtins;
  142|     28|    dest->f_locals = src->f_locals;
  143|     28|    dest->frame_obj = src->frame_obj;
  144|     28|    dest->instr_ptr = src->instr_ptr;
  145|       |#ifdef Py_GIL_DISABLED
  146|       |    dest->tlbc_index = src->tlbc_index;
  147|       |#endif
  148|     28|    assert(src->stackpointer != NULL);
  ------------------
  |  Branch (148:5): [True: 28, False: 0]
  ------------------
  149|     28|    int stacktop = (int)(src->stackpointer - src->localsplus);
  150|     28|    assert(stacktop >= 0);
  ------------------
  |  Branch (150:5): [True: 28, False: 0]
  ------------------
  151|     28|    dest->stackpointer = dest->localsplus + stacktop;
  152|       |    // visited is GC bookkeeping for the current stack walk, not frame state.
  153|     28|    dest->visited = 0;
  154|       |#ifdef Py_DEBUG
  155|       |    dest->lltrace = src->lltrace;
  156|       |#endif
  157|    164|    for (int i = 0; i < stacktop; i++) {
  ------------------
  |  Branch (157:21): [True: 136, False: 28]
  ------------------
  158|    136|        dest->localsplus[i] = PyStackRef_MakeHeapSafe(src->localsplus[i]);
  159|    136|    }
  160|     28|}
frame.c:_PyFrame_IsIncomplete:
  261|    130|{
  262|    130|    if (frame->owner >= FRAME_OWNED_BY_INTERPRETER) {
  ------------------
  |  Branch (262:9): [True: 18, False: 112]
  ------------------
  263|     18|        return true;
  264|     18|    }
  265|    112|    return frame->owner != FRAME_OWNED_BY_GENERATOR &&
  ------------------
  |  Branch (265:12): [True: 112, False: 0]
  ------------------
  266|    112|           frame->instr_ptr < _PyFrame_GetBytecode(frame) +
  ------------------
  |  Branch (266:12): [True: 0, False: 112]
  ------------------
  267|    112|                                  _PyFrame_GetCode(frame)->_co_firsttraceable;
  268|    130|}
frame.c:_PyFrame_GetFirstComplete:
  272|     28|{
  273|     46|    while (frame && _PyFrame_IsIncomplete(frame)) {
  ------------------
  |  Branch (273:12): [True: 46, False: 0]
  |  Branch (273:21): [True: 18, False: 28]
  ------------------
  274|     18|        frame = frame->previous;
  275|     18|    }
  276|     28|    return frame;
  277|     28|}
frame.c:_PyFrame_GetFrameObject:
  295|     28|{
  296|       |
  297|     28|    assert(!_PyFrame_IsIncomplete(frame));
  ------------------
  |  Branch (297:5): [True: 28, False: 0]
  ------------------
  298|     28|    PyFrameObject *res =  frame->frame_obj;
  299|     28|    if (res != NULL) {
  ------------------
  |  Branch (299:9): [True: 4, False: 24]
  ------------------
  300|      4|        return res;
  301|      4|    }
  302|     24|    return _PyFrame_MakeAndSetFrameObject(frame);
  303|     28|}
frame.c:_PyFrame_GetBytecode:
   59|    112|{
   60|       |#ifdef Py_GIL_DISABLED
   61|       |    PyCodeObject *co = _PyFrame_GetCode(f);
   62|       |    _PyCodeArray *tlbc = _PyCode_GetTLBCArray(co);
   63|       |    assert(f->tlbc_index >= 0 && f->tlbc_index < tlbc->size);
   64|       |    return (_Py_CODEUNIT *)tlbc->entries[f->tlbc_index];
   65|       |#else
   66|    112|    return _PyCode_CODE(_PyFrame_GetCode(f));
  ------------------
  |  |   16|    112|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|    112|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
   67|    112|#endif
   68|    112|}
pystate.c:_PyThreadState_HasStackSpace:
  334|  2.23k|{
  335|  2.23k|    assert(
  ------------------
  |  Branch (335:5): [True: 2, False: 2.23k]
  |  Branch (335:5): [True: 2, False: 0]
  |  Branch (335:5): [True: 2.23k, False: 0]
  |  Branch (335:5): [True: 2.23k, False: 0]
  ------------------
  336|  2.23k|        (tstate->datastack_top == NULL && tstate->datastack_limit == NULL)
  337|  2.23k|        ||
  338|  2.23k|        (tstate->datastack_top != NULL && tstate->datastack_limit != NULL)
  339|  2.23k|    );
  340|  2.23k|    return tstate->datastack_top != NULL &&
  ------------------
  |  Branch (340:12): [True: 2.23k, False: 2]
  ------------------
  341|  2.23k|        size < tstate->datastack_limit - tstate->datastack_top;
  ------------------
  |  Branch (341:9): [True: 2.23k, False: 0]
  ------------------
  342|  2.23k|}
sysmodule.c:_PyFrame_IsIncomplete:
  261|      2|{
  262|      2|    if (frame->owner >= FRAME_OWNED_BY_INTERPRETER) {
  ------------------
  |  Branch (262:9): [True: 0, False: 2]
  ------------------
  263|      0|        return true;
  264|      0|    }
  265|      2|    return frame->owner != FRAME_OWNED_BY_GENERATOR &&
  ------------------
  |  Branch (265:12): [True: 2, False: 0]
  ------------------
  266|      2|           frame->instr_ptr < _PyFrame_GetBytecode(frame) +
  ------------------
  |  Branch (266:12): [True: 0, False: 2]
  ------------------
  267|      2|                                  _PyFrame_GetCode(frame)->_co_firsttraceable;
  268|      2|}
sysmodule.c:_PyFrame_GetBytecode:
   59|      2|{
   60|       |#ifdef Py_GIL_DISABLED
   61|       |    PyCodeObject *co = _PyFrame_GetCode(f);
   62|       |    _PyCodeArray *tlbc = _PyCode_GetTLBCArray(co);
   63|       |    assert(f->tlbc_index >= 0 && f->tlbc_index < tlbc->size);
   64|       |    return (_Py_CODEUNIT *)tlbc->entries[f->tlbc_index];
   65|       |#else
   66|      2|    return _PyCode_CODE(_PyFrame_GetCode(f));
  ------------------
  |  |   16|      2|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|      2|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
   67|      2|#endif
   68|      2|}
sysmodule.c:_PyFrame_GetCode:
   20|      4|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|      4|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 4, False: 0]
  ------------------
   22|      4|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|      4|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 4, False: 0]
  ------------------
   24|      4|    return (PyCodeObject *)executable;
   25|      4|}
sysmodule.c:_PyFrame_GetFrameObject:
  295|      2|{
  296|       |
  297|      2|    assert(!_PyFrame_IsIncomplete(frame));
  ------------------
  |  Branch (297:5): [True: 2, False: 0]
  ------------------
  298|      2|    PyFrameObject *res =  frame->frame_obj;
  299|      2|    if (res != NULL) {
  ------------------
  |  Branch (299:9): [True: 0, False: 2]
  ------------------
  300|      0|        return res;
  301|      0|    }
  302|      2|    return _PyFrame_MakeAndSetFrameObject(frame);
  303|      2|}
traceback.c:_PyFrame_GetCode:
   20|    204|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|    204|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 204, False: 0]
  ------------------
   22|    204|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|    204|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 204, False: 0]
  ------------------
   24|    204|    return (PyCodeObject *)executable;
   25|    204|}
traceback.c:_PyFrame_GetBytecode:
   59|    204|{
   60|       |#ifdef Py_GIL_DISABLED
   61|       |    PyCodeObject *co = _PyFrame_GetCode(f);
   62|       |    _PyCodeArray *tlbc = _PyCode_GetTLBCArray(co);
   63|       |    assert(f->tlbc_index >= 0 && f->tlbc_index < tlbc->size);
   64|       |    return (_Py_CODEUNIT *)tlbc->entries[f->tlbc_index];
   65|       |#else
   66|    204|    return _PyCode_CODE(_PyFrame_GetCode(f));
  ------------------
  |  |   16|    204|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|    204|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
   67|    204|#endif
   68|    204|}
genobject.c:_PyFrame_StackPush:
  117|     68|static inline void _PyFrame_StackPush(_PyInterpreterFrame *f, _PyStackRef value) {
  118|     68|    *f->stackpointer = value;
  119|     68|    f->stackpointer++;
  120|     68|}
genobject.c:_PyFrame_NumSlotsForCodeObject:
  126|     42|{
  127|       |    /* This function needs to remain in sync with the calculation of
  128|       |     * co_framesize in Tools/build/deepfreeze.py */
  129|     42|    assert(code->co_framesize >= FRAME_SPECIALS_SIZE);
  ------------------
  |  Branch (129:5): [True: 42, False: 0]
  ------------------
  130|     42|    return code->co_framesize - FRAME_SPECIALS_SIZE;
  ------------------
  |  |  122|     42|#define FRAME_SPECIALS_SIZE ((int)((sizeof(_PyInterpreterFrame)-1)/sizeof(PyObject *)))
  ------------------
  131|     42|}
genobject.c:_PyFrame_GetCode:
   20|     12|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|     12|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 12, False: 0]
  ------------------
   22|     12|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|     12|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 12, False: 0]
  ------------------
   24|     12|    return (PyCodeObject *)executable;
   25|     12|}
frameobject.c:_PyFrame_GetLocalsArray:
  223|     28|{
  224|     28|    return frame->localsplus;
  225|     28|}
frameobject.c:_PyFrame_IsIncomplete:
  261|     10|{
  262|     10|    if (frame->owner >= FRAME_OWNED_BY_INTERPRETER) {
  ------------------
  |  Branch (262:9): [True: 0, False: 10]
  ------------------
  263|      0|        return true;
  264|      0|    }
  265|     10|    return frame->owner != FRAME_OWNED_BY_GENERATOR &&
  ------------------
  |  Branch (265:12): [True: 10, False: 0]
  ------------------
  266|     10|           frame->instr_ptr < _PyFrame_GetBytecode(frame) +
  ------------------
  |  Branch (266:12): [True: 0, False: 10]
  ------------------
  267|     10|                                  _PyFrame_GetCode(frame)->_co_firsttraceable;
  268|     10|}
frameobject.c:_PyFrame_GetCode:
   20|     46|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|     46|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 46, False: 0]
  ------------------
   22|     46|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|     46|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 46, False: 0]
  ------------------
   24|     46|    return (PyCodeObject *)executable;
   25|     46|}
frameobject.c:_PyFrame_GetBytecode:
   59|     10|{
   60|       |#ifdef Py_GIL_DISABLED
   61|       |    PyCodeObject *co = _PyFrame_GetCode(f);
   62|       |    _PyCodeArray *tlbc = _PyCode_GetTLBCArray(co);
   63|       |    assert(f->tlbc_index >= 0 && f->tlbc_index < tlbc->size);
   64|       |    return (_Py_CODEUNIT *)tlbc->entries[f->tlbc_index];
   65|       |#else
   66|     10|    return _PyCode_CODE(_PyFrame_GetCode(f));
  ------------------
  |  |   16|     10|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|     10|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
   67|     10|#endif
   68|     10|}
lazyimportobject.c:_PyFrame_GetCode:
   20|     16|static inline PyCodeObject *_PyFrame_GetCode(_PyInterpreterFrame *f) {
   21|     16|    assert(!PyStackRef_IsNull(f->f_executable));
  ------------------
  |  Branch (21:5): [True: 16, False: 0]
  ------------------
   22|     16|    PyObject *executable = PyStackRef_AsPyObjectBorrow(f->f_executable);
   23|     16|    assert(PyCode_Check(executable));
  ------------------
  |  Branch (23:5): [True: 16, False: 0]
  ------------------
   24|     16|    return (PyCodeObject *)executable;
   25|     16|}
lazyimportobject.c:_PyFrame_GetBytecode:
   59|      8|{
   60|       |#ifdef Py_GIL_DISABLED
   61|       |    PyCodeObject *co = _PyFrame_GetCode(f);
   62|       |    _PyCodeArray *tlbc = _PyCode_GetTLBCArray(co);
   63|       |    assert(f->tlbc_index >= 0 && f->tlbc_index < tlbc->size);
   64|       |    return (_Py_CODEUNIT *)tlbc->entries[f->tlbc_index];
   65|       |#else
   66|      8|    return _PyCode_CODE(_PyFrame_GetCode(f));
  ------------------
  |  |   16|      8|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|      8|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
   67|      8|#endif
   68|      8|}

listobject.c:_PyList_AppendTakeRef:
   38|  10.8k|{
   39|  10.8k|    assert(self != NULL && newitem != NULL);
  ------------------
  |  Branch (39:5): [True: 10.8k, False: 0]
  |  Branch (39:5): [True: 10.8k, False: 0]
  ------------------
   40|  10.8k|    assert(PyList_Check(self));
  ------------------
  |  Branch (40:5): [True: 10.8k, False: 0]
  ------------------
   41|  10.8k|    Py_ssize_t len = Py_SIZE(self);
  ------------------
  |  |  214|  10.8k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  10.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   42|  10.8k|    Py_ssize_t allocated = self->allocated;
   43|  10.8k|    assert((size_t)len + 1 < PY_SSIZE_T_MAX);
  ------------------
  |  Branch (43:5): [True: 10.8k, False: 0]
  ------------------
   44|  10.8k|    if (allocated > len) {
  ------------------
  |  Branch (44:9): [True: 10.1k, False: 730]
  ------------------
   45|       |#ifdef Py_GIL_DISABLED
   46|       |        _Py_atomic_store_ptr_release(&self->ob_item[len], newitem);
   47|       |#else
   48|  10.1k|        PyList_SET_ITEM(self, len, newitem);
  ------------------
  |  |   50|  10.1k|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  10.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  10.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   49|  10.1k|#endif
   50|  10.1k|        Py_SET_SIZE(self, len + 1);
  ------------------
  |  |  216|  10.1k|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|  10.1k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   51|  10.1k|        return 0;
   52|  10.1k|    }
   53|    730|    return _PyList_AppendTakeRefListResize(self, newitem);
   54|  10.8k|}
ceval.c:_PyList_AppendTakeRef:
   38|  1.13k|{
   39|  1.13k|    assert(self != NULL && newitem != NULL);
  ------------------
  |  Branch (39:5): [True: 1.13k, False: 0]
  |  Branch (39:5): [True: 1.13k, False: 0]
  ------------------
   40|  1.13k|    assert(PyList_Check(self));
  ------------------
  |  Branch (40:5): [True: 1.13k, False: 0]
  ------------------
   41|  1.13k|    Py_ssize_t len = Py_SIZE(self);
  ------------------
  |  |  214|  1.13k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.13k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.13k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   42|  1.13k|    Py_ssize_t allocated = self->allocated;
   43|  1.13k|    assert((size_t)len + 1 < PY_SSIZE_T_MAX);
  ------------------
  |  Branch (43:5): [True: 1.13k, False: 0]
  ------------------
   44|  1.13k|    if (allocated > len) {
  ------------------
  |  Branch (44:9): [True: 934, False: 198]
  ------------------
   45|       |#ifdef Py_GIL_DISABLED
   46|       |        _Py_atomic_store_ptr_release(&self->ob_item[len], newitem);
   47|       |#else
   48|    934|        PyList_SET_ITEM(self, len, newitem);
  ------------------
  |  |   50|    934|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    934|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    934|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    934|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    934|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   49|    934|#endif
   50|    934|        Py_SET_SIZE(self, len + 1);
  ------------------
  |  |  216|    934|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    934|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    934|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   51|    934|        return 0;
   52|    934|    }
   53|    198|    return _PyList_AppendTakeRefListResize(self, newitem);
   54|  1.13k|}

pystate.c:llist_init:
   55|      8|{
   56|      8|    head->next = head;
   57|      8|    head->prev = head;
   58|      8|}
_threadmodule.c:llist_init:
   55|      2|{
   56|      2|    head->next = head;
   57|      2|    head->prev = head;
   58|      2|}

getargs.c:_PyOnceFlag_CallOnce:
  152|      2|{
  153|      2|    if (_Py_atomic_load_uint8(&flag->v) == _Py_ONCE_INITIALIZED) {
  ------------------
  |  |   18|      2|#define _Py_ONCE_INITIALIZED 4
  ------------------
  |  Branch (153:9): [True: 0, False: 2]
  ------------------
  154|      0|        return 0;
  155|      0|    }
  156|      2|    return _PyOnceFlag_CallOnceSlow(flag, fn, arg);
  157|      2|}
pystate.c:PyMutex_LockFlags:
   62|      4|{
   63|      4|    uint8_t expected = _Py_UNLOCKED;
  ------------------
  |  |    9|      4|#define _Py_UNLOCKED    0
  ------------------
   64|      4|    if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &expected, _Py_LOCKED)) {
  ------------------
  |  |   10|      4|#define _Py_LOCKED      1
  ------------------
  |  Branch (64:9): [True: 0, False: 4]
  ------------------
   65|      0|        _PyMutex_LockTimed(m, -1, flags);
   66|      0|    }
   67|      4|}

longobject.c:_PyLong_InitTag:
  292|  1.33k|{
  293|  1.33k|    assert(PyLong_Check(op));
  ------------------
  |  Branch (293:5): [True: 1.33k, False: 0]
  ------------------
  294|  1.33k|    op->long_value.lv_tag = SIGN_ZERO; /* non-immortal zero */
  ------------------
  |  |  173|  1.33k|#define SIGN_ZERO 1
  ------------------
  295|  1.33k|}
longobject.c:_PyLong_SetSignAndDigitCount:
  302|  1.71k|{
  303|  1.71k|    assert(size >= 0);
  ------------------
  |  Branch (303:5): [True: 1.71k, False: 0]
  ------------------
  304|  1.71k|    assert(-1 <= sign && sign <= 1);
  ------------------
  |  Branch (304:5): [True: 1.71k, False: 0]
  |  Branch (304:5): [True: 1.71k, False: 0]
  ------------------
  305|  1.71k|    assert(sign != 0 || size == 0);
  ------------------
  |  Branch (305:5): [True: 1.71k, False: 0]
  |  Branch (305:5): [True: 0, False: 0]
  ------------------
  306|  1.71k|    assert(!_PyLong_IsSmallInt(op));
  ------------------
  |  Branch (306:5): [True: 1.71k, False: 0]
  ------------------
  307|  1.71k|    op->long_value.lv_tag = TAG_FROM_SIGN_AND_SIZE(sign, size);
  ------------------
  |  |  298|  1.71k|    ((uintptr_t)(1 - (sign)) | ((uintptr_t)(size) << NON_SIZE_BITS))
  |  |  ------------------
  |  |  |  |  175|  1.71k|#define NON_SIZE_BITS 3
  |  |  ------------------
  ------------------
  308|  1.71k|}
longobject.c:_PyLong_CompactSign:
  268|      6|{
  269|      6|    assert(PyLong_Check(op));
  ------------------
  |  Branch (269:5): [True: 6, False: 0]
  ------------------
  270|      6|    assert(_PyLong_IsCompact((PyLongObject *)op));
  ------------------
  |  Branch (270:5): [True: 6, False: 0]
  ------------------
  271|      6|    return 1 - (op->long_value.lv_tag & SIGN_MASK);
  ------------------
  |  |  172|      6|#define SIGN_MASK 3
  ------------------
  272|      6|}
longobject.c:_PyLong_NonCompactSign:
  276|    872|{
  277|    872|    assert(PyLong_Check(op));
  ------------------
  |  Branch (277:5): [True: 872, False: 0]
  ------------------
  278|    872|    assert(!_PyLong_IsCompact((PyLongObject *)op));
  ------------------
  |  Branch (278:5): [True: 872, False: 0]
  ------------------
  279|    872|    return 1 - (op->long_value.lv_tag & SIGN_MASK);
  ------------------
  |  |  172|    872|#define SIGN_MASK 3
  ------------------
  280|    872|}
longobject.c:_PyLong_DigitCount:
  252|  1.01k|{
  253|  1.01k|    assert(PyLong_Check(op));
  ------------------
  |  Branch (253:5): [True: 1.01k, False: 0]
  ------------------
  254|  1.01k|    return (Py_ssize_t)(op->long_value.lv_tag >> NON_SIZE_BITS);
  ------------------
  |  |  175|  1.01k|#define NON_SIZE_BITS 3
  ------------------
  255|  1.01k|}
longobject.c:_PyLong_IsNonNegativeCompact:
  205|      4|_PyLong_IsNonNegativeCompact(const PyLongObject* op) {
  206|      4|    assert(PyLong_Check(op));
  ------------------
  |  Branch (206:5): [True: 4, False: 0]
  ------------------
  207|      4|    return ((op->long_value.lv_tag & ~IMMORTALITY_BIT_MASK) <= (1 << NON_SIZE_BITS));
  ------------------
  |  |  176|      4|#define IMMORTALITY_BIT_MASK (1 << 2)
  ------------------
                  return ((op->long_value.lv_tag & ~IMMORTALITY_BIT_MASK) <= (1 << NON_SIZE_BITS));
  ------------------
  |  |  175|      4|#define NON_SIZE_BITS 3
  ------------------
  208|      4|}
longobject.c:_PyLong_IsNegative:
  225|    120|{
  226|    120|    return (op->long_value.lv_tag & SIGN_MASK) == SIGN_NEGATIVE;
  ------------------
  |  |  172|    120|#define SIGN_MASK 3
  ------------------
                  return (op->long_value.lv_tag & SIGN_MASK) == SIGN_NEGATIVE;
  ------------------
  |  |  174|    120|#define SIGN_NEGATIVE 2
  ------------------
  227|    120|}
longobject.c:_PyLong_IsPositive:
  231|      2|{
  232|      2|    return (op->long_value.lv_tag & SIGN_MASK) == 0;
  ------------------
  |  |  172|      2|#define SIGN_MASK 3
  ------------------
  233|      2|}
longobject.c:_PyLong_IsZero:
  219|     18|{
  220|     18|    return (op->long_value.lv_tag & SIGN_MASK) == SIGN_ZERO;
  ------------------
  |  |  172|     18|#define SIGN_MASK 3
  ------------------
                  return (op->long_value.lv_tag & SIGN_MASK) == SIGN_ZERO;
  ------------------
  |  |  173|     18|#define SIGN_ZERO 1
  ------------------
  221|     18|}
longobject.c:_PyLong_SetDigitCount:
  312|      4|{
  313|      4|    assert(size >= 0);
  ------------------
  |  Branch (313:5): [True: 4, False: 0]
  ------------------
  314|      4|    assert(!_PyLong_IsSmallInt(op));
  ------------------
  |  Branch (314:5): [True: 4, False: 0]
  ------------------
  315|      4|    op->long_value.lv_tag = (((size_t)size) << NON_SIZE_BITS) | (op->long_value.lv_tag & SIGN_MASK);
  ------------------
  |  |  175|      4|#define NON_SIZE_BITS 3
  ------------------
                  op->long_value.lv_tag = (((size_t)size) << NON_SIZE_BITS) | (op->long_value.lv_tag & SIGN_MASK);
  ------------------
  |  |  172|      4|#define SIGN_MASK 3
  ------------------
  316|      4|}
longobject.c:_PyLong_IsSmallInt:
  238|  2.22k|{
  239|  2.22k|    assert(PyLong_Check(op));
  ------------------
  |  Branch (239:5): [True: 2.22k, False: 0]
  ------------------
  240|  2.22k|    bool is_small_int = (op->long_value.lv_tag & IMMORTALITY_BIT_MASK) != 0;
  ------------------
  |  |  176|  2.22k|#define IMMORTALITY_BIT_MASK (1 << 2)
  ------------------
  241|  2.22k|    if (is_small_int) {
  ------------------
  |  Branch (241:9): [True: 0, False: 2.22k]
  ------------------
  242|      0|        assert(PyLong_CheckExact(op));
  ------------------
  |  Branch (242:9): [True: 0, False: 0]
  ------------------
  243|      0|        assert(_Py_IsImmortal(op));
  ------------------
  |  Branch (243:9): [True: 0, False: 0]
  ------------------
  244|      0|        assert((_PyLong_IsCompact(op)
  ------------------
  |  Branch (244:9): [True: 0, False: 0]
  |  Branch (244:9): [True: 0, False: 0]
  |  Branch (244:9): [True: 0, False: 0]
  ------------------
  245|      0|                && _PY_IS_SMALL_INT(_PyLong_CompactValue(op))));
  246|      0|    }
  247|  2.22k|    return is_small_int;
  248|  2.22k|}
longobject.c:_PyLong_BothAreCompact:
  212|    114|_PyLong_BothAreCompact(const PyLongObject* a, const PyLongObject* b) {
  213|    114|    assert(PyLong_Check(a));
  ------------------
  |  Branch (213:5): [True: 114, False: 0]
  ------------------
  214|    114|    assert(PyLong_Check(b));
  ------------------
  |  Branch (214:5): [True: 114, False: 0]
  ------------------
  215|    114|    return (a->long_value.lv_tag | b->long_value.lv_tag) < (2 << NON_SIZE_BITS);
  ------------------
  |  |  175|    114|#define NON_SIZE_BITS 3
  ------------------
  216|    114|}
longobject.c:_PyLong_SignedDigitCount:
  260|    148|{
  261|    148|    assert(PyLong_Check(op));
  ------------------
  |  Branch (261:5): [True: 148, False: 0]
  ------------------
  262|    148|    Py_ssize_t sign = 1 - (op->long_value.lv_tag & SIGN_MASK);
  ------------------
  |  |  172|    148|#define SIGN_MASK 3
  ------------------
  263|    148|    return sign * (Py_ssize_t)(op->long_value.lv_tag >> NON_SIZE_BITS);
  ------------------
  |  |  175|    148|#define NON_SIZE_BITS 3
  ------------------
  264|    148|}
object.c:_PyLong_GetZero:
   73|      2|{ return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   59|      2|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
              { return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   98|      2|#define _PY_NSMALLNEGINTS           5
  ------------------
object.c:_PyLong_GetOne:
   78|      2|{ return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS+1]; }
  ------------------
  |  |   59|      2|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
              { return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS+1]; }
  ------------------
  |  |   98|      2|#define _PY_NSMALLNEGINTS           5
  ------------------
rangeobject.c:_PyLong_GetZero:
   73|     16|{ return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   59|     16|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|     16|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     16|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
              { return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   98|     16|#define _PY_NSMALLNEGINTS           5
  ------------------
rangeobject.c:_PyLong_GetOne:
   78|     16|{ return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS+1]; }
  ------------------
  |  |   59|     16|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|     16|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     16|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
              { return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS+1]; }
  ------------------
  |  |   98|     16|#define _PY_NSMALLNEGINTS           5
  ------------------
_warnings.c:_PyLong_GetZero:
   73|     10|{ return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   59|     10|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
              { return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   98|     10|#define _PY_NSMALLNEGINTS           5
  ------------------
ceval.c:_PyLong_CheckExactAndCompact:
  345|  1.46k|{
  346|  1.46k|    return PyLong_CheckExact(op) && _PyLong_IsCompact((const PyLongObject *)op);
  ------------------
  |  |   14|  1.46k|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|  2.92k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.46k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.46k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 1.46k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (346:37): [True: 1.46k, False: 0]
  ------------------
  347|  1.46k|}
ceval.c:_PyLong_BothAreCompact:
  212|      8|_PyLong_BothAreCompact(const PyLongObject* a, const PyLongObject* b) {
  213|      8|    assert(PyLong_Check(a));
  ------------------
  |  Branch (213:5): [True: 8, False: 0]
  ------------------
  214|      8|    assert(PyLong_Check(b));
  ------------------
  |  Branch (214:5): [True: 8, False: 0]
  ------------------
  215|      8|    return (a->long_value.lv_tag | b->long_value.lv_tag) < (2 << NON_SIZE_BITS);
  ------------------
  |  |  175|      8|#define NON_SIZE_BITS 3
  ------------------
  216|      8|}
ceval.c:_PyLong_IsNonNegativeCompact:
  205|    862|_PyLong_IsNonNegativeCompact(const PyLongObject* op) {
  206|    862|    assert(PyLong_Check(op));
  ------------------
  |  Branch (206:5): [True: 862, False: 0]
  ------------------
  207|    862|    return ((op->long_value.lv_tag & ~IMMORTALITY_BIT_MASK) <= (1 << NON_SIZE_BITS));
  ------------------
  |  |  176|    862|#define IMMORTALITY_BIT_MASK (1 << 2)
  ------------------
                  return ((op->long_value.lv_tag & ~IMMORTALITY_BIT_MASK) <= (1 << NON_SIZE_BITS));
  ------------------
  |  |  175|    862|#define NON_SIZE_BITS 3
  ------------------
  208|    862|}
ceval.c:_PyLong_DigitCount:
  252|    468|{
  253|    468|    assert(PyLong_Check(op));
  ------------------
  |  Branch (253:5): [True: 468, False: 0]
  ------------------
  254|    468|    return (Py_ssize_t)(op->long_value.lv_tag >> NON_SIZE_BITS);
  ------------------
  |  |  175|    468|#define NON_SIZE_BITS 3
  ------------------
  255|    468|}
ceval.c:_PyLong_IsZero:
  219|    114|{
  220|    114|    return (op->long_value.lv_tag & SIGN_MASK) == SIGN_ZERO;
  ------------------
  |  |  172|    114|#define SIGN_MASK 3
  ------------------
                  return (op->long_value.lv_tag & SIGN_MASK) == SIGN_ZERO;
  ------------------
  |  |  173|    114|#define SIGN_ZERO 1
  ------------------
  221|    114|}
instrumentation.c:_PyLong_GetZero:
   73|      2|{ return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   59|      2|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
              { return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   98|      2|#define _PY_NSMALLNEGINTS           5
  ------------------
specialize.c:_PyLong_IsNonNegativeCompact:
  205|     14|_PyLong_IsNonNegativeCompact(const PyLongObject* op) {
  206|     14|    assert(PyLong_Check(op));
  ------------------
  |  Branch (206:5): [True: 14, False: 0]
  ------------------
  207|     14|    return ((op->long_value.lv_tag & ~IMMORTALITY_BIT_MASK) <= (1 << NON_SIZE_BITS));
  ------------------
  |  |  176|     14|#define IMMORTALITY_BIT_MASK (1 << 2)
  ------------------
                  return ((op->long_value.lv_tag & ~IMMORTALITY_BIT_MASK) <= (1 << NON_SIZE_BITS));
  ------------------
  |  |  175|     14|#define NON_SIZE_BITS 3
  ------------------
  208|     14|}
specialize.c:_PyLong_CheckExactAndCompact:
  345|      8|{
  346|      8|    return PyLong_CheckExact(op) && _PyLong_IsCompact((const PyLongObject *)op);
  ------------------
  |  |   14|      8|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|     16|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (346:37): [True: 8, False: 0]
  ------------------
  347|      8|}
textio.c:_PyLong_GetZero:
   73|      6|{ return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   59|      6|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
              { return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS]; }
  ------------------
  |  |   98|      6|#define _PY_NSMALLNEGINTS           5
  ------------------

obmalloc.c:_PyAnnotateMemoryMap:
   39|      6|{
   40|      6|    return 0;
   41|      6|}

moduleobject.c:_PyModule_GetDefOrNull:
   48|     24|static inline PyModuleDef *_PyModule_GetDefOrNull(PyObject *arg) {
   49|     24|    PyModuleObject *mod = _PyModule_CAST(arg);
  ------------------
  |  |   46|     24|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (49:27): [True: 24, False: 0]
  ------------------
   50|     24|    if (mod->md_token_is_def) {
  ------------------
  |  Branch (50:9): [True: 24, False: 0]
  ------------------
   51|     24|        return (PyModuleDef *)mod->md_token;
   52|     24|    }
   53|      0|    return NULL;
   54|     24|}
moduleobject.c:_PyModule_GetDict:
   67|    602|static inline PyObject* _PyModule_GetDict(PyObject *mod) {
   68|    602|    PyObject *dict = _PyModule_CAST(mod)->md_dict;
  ------------------
  |  |   46|    602|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    602|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (68:22): [True: 602, False: 0]
  ------------------
   69|       |    // _PyModule_GetDict(mod) must not be used after calling module_clear(mod)
   70|    602|    assert(dict != NULL);
  ------------------
  |  Branch (70:5): [True: 602, False: 0]
  ------------------
   71|    602|    return dict;  // borrowed reference
   72|    602|}
moduleobject.c:_PyModule_GetState:
   63|     24|static inline void* _PyModule_GetState(PyObject* mod) {
   64|     24|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|     24|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 24, False: 0]
  ------------------
   65|     24|}
typeobject.c:_PyModule_GetToken:
   57|     60|static inline PyModuleDef *_PyModule_GetToken(PyObject *arg) {
   58|     60|    PyModuleObject *mod = _PyModule_CAST(arg);
  ------------------
  |  |   46|     60|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (58:27): [True: 60, False: 0]
  ------------------
   59|      0|    return (PyModuleDef *)mod->md_token;
   60|     60|}
import.c:_PyModule_GetDefOrNull:
   48|      8|static inline PyModuleDef *_PyModule_GetDefOrNull(PyObject *arg) {
   49|      8|    PyModuleObject *mod = _PyModule_CAST(arg);
  ------------------
  |  |   46|      8|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (49:27): [True: 8, False: 0]
  ------------------
   50|      8|    if (mod->md_token_is_def) {
  ------------------
  |  Branch (50:9): [True: 8, False: 0]
  ------------------
   51|      8|        return (PyModuleDef *)mod->md_token;
   52|      8|    }
   53|      0|    return NULL;
   54|      8|}
posixmodule.c:_PyModule_GetState:
   63|     34|static inline void* _PyModule_GetState(PyObject* mod) {
   64|     34|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|     34|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 34, False: 0]
  ------------------
   65|     34|}
_iomodule.c:_PyModule_GetState:
   63|     12|static inline void* _PyModule_GetState(PyObject* mod) {
   64|     12|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|     12|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 12, False: 0]
  ------------------
   65|     12|}
bufferedio.c:_PyModule_GetState:
   63|      6|static inline void* _PyModule_GetState(PyObject* mod) {
   64|      6|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|      6|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 6, False: 0]
  ------------------
   65|      6|}
textio.c:_PyModule_GetState:
   63|      6|static inline void* _PyModule_GetState(PyObject* mod) {
   64|      6|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|      6|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 6, False: 0]
  ------------------
   65|      6|}
_threadmodule.c:_PyModule_GetState:
   63|    102|static inline void* _PyModule_GetState(PyObject* mod) {
   64|    102|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|    102|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    102|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 102, False: 0]
  ------------------
   65|    102|}
timemodule.c:_PyModule_GetState:
   63|      6|static inline void* _PyModule_GetState(PyObject* mod) {
   64|      6|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|      6|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 6, False: 0]
  ------------------
   65|      6|}
_abc.c:_PyModule_GetState:
   63|    268|static inline void* _PyModule_GetState(PyObject* mod) {
   64|    268|    return _PyModule_CAST(mod)->md_state;
  ------------------
  |  |   46|    268|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    268|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (64:12): [True: 268, False: 0]
  ------------------
   65|    268|}

bytesobject.c:_PyObject_InitVar:
  496|  8.48k|{
  497|  8.48k|    assert(op != NULL);
  ------------------
  |  Branch (497:5): [True: 8.48k, False: 0]
  ------------------
  498|  8.48k|    assert(typeobj != &PyLong_Type);
  ------------------
  |  Branch (498:5): [True: 8.48k, False: 0]
  ------------------
  499|  8.48k|    _PyObject_Init((PyObject *)op, typeobj);
  500|  8.48k|    Py_SET_SIZE(op, size);
  ------------------
  |  |  216|  8.48k|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|  8.48k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  501|  8.48k|}
bytesobject.c:_PyObject_Init:
  486|  8.48k|{
  487|  8.48k|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 8.48k, False: 0]
  ------------------
  488|  8.48k|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|  8.48k|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|  8.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|  8.48k|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 0, False: 8.48k]
  |  Branch (489:5): [True: 8.48k, False: 0]
  ------------------
  490|  8.48k|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|  8.48k|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  8.48k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  8.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  8.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|  8.48k|    _Py_NewReference(op);
  492|  8.48k|}
bytesobject.c:_PyType_HasFeature:
  290|  8.48k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|  8.48k|    return ((type->tp_flags) & feature) != 0;
  292|  8.48k|}
call.c:Py_DECREF_MORTAL:
  453|    308|{
  454|    308|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 308, False: 0]
  ------------------
  455|    308|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    308|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|    308|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 68, False: 240]
  ------------------
  457|     68|        _Py_Dealloc(op);
  458|     68|    }
  459|    308|}
floatobject.c:_PyObject_Init:
  486|     20|{
  487|     20|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 20, False: 0]
  ------------------
  488|     20|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|     20|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|     20|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 0, False: 20]
  |  Branch (489:5): [True: 20, False: 0]
  ------------------
  490|     20|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|     20|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|     20|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|     20|    _Py_NewReference(op);
  492|     20|}
floatobject.c:_PyType_HasFeature:
  290|     20|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|     20|    return ((type->tp_flags) & feature) != 0;
  292|     20|}
funcobject.c:_PyObject_ResurrectStart:
  682|    336|{
  683|    336|    assert(Py_REFCNT(op) == 0);
  ------------------
  |  Branch (683:5): [True: 336, False: 0]
  ------------------
  684|       |#ifdef Py_REF_DEBUG
  685|       |    _Py_IncRefTotal(_PyThreadState_GET());
  686|       |#endif
  687|       |#ifdef Py_GIL_DISABLED
  688|       |    _Py_atomic_store_uintptr_relaxed(&op->ob_tid, _Py_ThreadId());
  689|       |    _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 1);
  690|       |    _Py_atomic_store_ssize_relaxed(&op->ob_ref_shared, 0);
  691|       |#else
  692|    336|    Py_SET_REFCNT(op, 1);
  ------------------
  |  |  201|    336|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  693|    336|#endif
  694|       |#ifdef Py_TRACE_REFS
  695|       |    _Py_ResurrectReference(op);
  696|       |#endif
  697|    336|}
funcobject.c:_PyObject_ResurrectEnd:
  704|    336|{
  705|       |#ifdef Py_REF_DEBUG
  706|       |    _Py_DecRefTotal(_PyThreadState_GET());
  707|       |#endif
  708|    336|#ifndef Py_GIL_DISABLED
  709|    336|    Py_SET_REFCNT(op, Py_REFCNT(op) - 1);
  ------------------
  |  |  201|    336|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  710|    336|    if (Py_REFCNT(op) == 0) {
  ------------------
  |  |  119|    336|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (710:9): [True: 336, False: 0]
  ------------------
  711|       |# ifdef Py_TRACE_REFS
  712|       |        _Py_ForgetReference(op);
  713|       |# endif
  714|    336|        return 0;
  715|    336|    }
  716|      0|    return 1;
  717|       |#else
  718|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  719|       |    Py_ssize_t shared = _Py_atomic_load_ssize_acquire(&op->ob_ref_shared);
  720|       |    if (_Py_IsOwnedByCurrentThread(op) && local == 1 && shared == 0) {
  721|       |        // Fast-path: object has a single refcount and is owned by this thread
  722|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 0);
  723|       |# ifdef Py_TRACE_REFS
  724|       |        _Py_ForgetReference(op);
  725|       |# endif
  726|       |        return 0;
  727|       |    }
  728|       |    // Slow-path: object has a shared refcount or is not owned by this thread
  729|       |    return _PyObject_ResurrectEndSlow(op);
  730|       |#endif
  731|    336|}
longobject.c:_PyObject_Init:
  486|  1.33k|{
  487|  1.33k|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 1.33k, False: 0]
  ------------------
  488|  1.33k|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|  1.33k|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|  1.33k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.33k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|  1.33k|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 0, False: 1.33k]
  |  Branch (489:5): [True: 1.33k, False: 0]
  ------------------
  490|  1.33k|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|  1.33k|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  1.33k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.33k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.33k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|  1.33k|    _Py_NewReference(op);
  492|  1.33k|}
longobject.c:_PyType_HasFeature:
  290|  1.33k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|  1.33k|    return ((type->tp_flags) & feature) != 0;
  292|  1.33k|}
longobject.c:_Py_DECREF_SPECIALIZED:
  234|     22|{
  235|     22|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     22|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 22]
  |  |  ------------------
  ------------------
  236|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  237|      0|        return;
  238|      0|    }
  239|     22|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     22|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  240|       |#ifdef Py_REF_DEBUG
  241|       |    _Py_DEC_REFTOTAL(PyInterpreterState_Get());
  242|       |#endif
  243|     22|    if (--op->ob_refcnt != 0) {
  ------------------
  |  Branch (243:9): [True: 0, False: 22]
  ------------------
  244|      0|        assert(op->ob_refcnt > 0);
  ------------------
  |  Branch (244:9): [True: 0, False: 0]
  ------------------
  245|      0|    }
  246|     22|    else {
  247|       |#ifdef Py_TRACE_REFS
  248|       |        _Py_ForgetReference(op);
  249|       |#endif
  250|       |        _PyReftracerTrack(op, PyRefTracer_DESTROY);
  ------------------
  |  |  112|     22|    do { \
  |  |  113|     22|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  114|     22|        if (tracer->tracer_func != NULL) { \
  |  |  ------------------
  |  |  |  Branch (114:13): [True: 0, False: 22]
  |  |  ------------------
  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  117|      0|        } \
  |  |  118|     22|    } while(0)
  |  |  ------------------
  |  |  |  Branch (118:13): [Folded, False: 22]
  |  |  ------------------
  ------------------
  251|     22|        destruct(op);
  252|     22|    }
  253|     22|}
dictobject.c:_Py_INCREF_MORTAL:
 1024|  7.05k|{
 1025|  7.05k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (1025:5): [True: 7.05k, False: 0]
  ------------------
 1026|  7.05k|    op->ob_refcnt++;
 1027|  7.05k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  7.05k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
 1028|       |#if defined(Py_REF_DEBUG) && !defined(Py_LIMITED_API)
 1029|       |    if (!_Py_IsImmortal(op)) {
 1030|       |        _Py_INCREF_IncRefTotal();
 1031|       |    }
 1032|       |#endif
 1033|  7.05k|}
dictobject.c:Py_DECREF_MORTAL:
  453|  1.50k|{
  454|  1.50k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 1.50k, False: 0]
  ------------------
  455|  1.50k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.50k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|  1.50k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 0, False: 1.50k]
  ------------------
  457|      0|        _Py_Dealloc(op);
  458|      0|    }
  459|  1.50k|}
dictobject.c:_PyObject_HashFast:
  842|  45.3k|{
  843|  45.3k|    if (PyUnicode_CheckExact(op)) {
  ------------------
  |  |  104|  45.3k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  45.3k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  45.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  45.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 44.1k, False: 1.21k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  844|  44.1k|        Py_hash_t hash = PyUnstable_Unicode_GET_CACHED_HASH(op);
  845|  44.1k|        if (hash != -1) {
  ------------------
  |  Branch (845:13): [True: 43.5k, False: 542]
  ------------------
  846|  43.5k|            return hash;
  847|  43.5k|        }
  848|  44.1k|    }
  849|  1.75k|    return PyObject_Hash(op);
  850|  45.3k|}
dictobject.c:_PyObject_ResurrectStart:
  682|  1.00k|{
  683|  1.00k|    assert(Py_REFCNT(op) == 0);
  ------------------
  |  Branch (683:5): [True: 1.00k, False: 0]
  ------------------
  684|       |#ifdef Py_REF_DEBUG
  685|       |    _Py_IncRefTotal(_PyThreadState_GET());
  686|       |#endif
  687|       |#ifdef Py_GIL_DISABLED
  688|       |    _Py_atomic_store_uintptr_relaxed(&op->ob_tid, _Py_ThreadId());
  689|       |    _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 1);
  690|       |    _Py_atomic_store_ssize_relaxed(&op->ob_ref_shared, 0);
  691|       |#else
  692|  1.00k|    Py_SET_REFCNT(op, 1);
  ------------------
  |  |  201|  1.00k|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|  1.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  693|  1.00k|#endif
  694|       |#ifdef Py_TRACE_REFS
  695|       |    _Py_ResurrectReference(op);
  696|       |#endif
  697|  1.00k|}
dictobject.c:_PyObject_ResurrectEnd:
  704|  1.00k|{
  705|       |#ifdef Py_REF_DEBUG
  706|       |    _Py_DecRefTotal(_PyThreadState_GET());
  707|       |#endif
  708|  1.00k|#ifndef Py_GIL_DISABLED
  709|  1.00k|    Py_SET_REFCNT(op, Py_REFCNT(op) - 1);
  ------------------
  |  |  201|  1.00k|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|  1.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  710|  1.00k|    if (Py_REFCNT(op) == 0) {
  ------------------
  |  |  119|  1.00k|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (710:9): [True: 1.00k, False: 0]
  ------------------
  711|       |# ifdef Py_TRACE_REFS
  712|       |        _Py_ForgetReference(op);
  713|       |# endif
  714|  1.00k|        return 0;
  715|  1.00k|    }
  716|      0|    return 1;
  717|       |#else
  718|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  719|       |    Py_ssize_t shared = _Py_atomic_load_ssize_acquire(&op->ob_ref_shared);
  720|       |    if (_Py_IsOwnedByCurrentThread(op) && local == 1 && shared == 0) {
  721|       |        // Fast-path: object has a single refcount and is owned by this thread
  722|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 0);
  723|       |# ifdef Py_TRACE_REFS
  724|       |        _Py_ForgetReference(op);
  725|       |# endif
  726|       |        return 0;
  727|       |    }
  728|       |    // Slow-path: object has a shared refcount or is not owned by this thread
  729|       |    return _PyObject_ResurrectEndSlow(op);
  730|       |#endif
  731|  1.00k|}
dictobject.c:_PyObject_IsUniquelyReferenced:
  185|    568|{
  186|    568|#if !defined(Py_GIL_DISABLED)
  187|    568|    return Py_REFCNT(ob) == 1;
  ------------------
  |  |  119|    568|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    568|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    568|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  188|       |#else
  189|       |    // NOTE: the entire ob_ref_shared field must be zero, including flags, to
  190|       |    // ensure that other threads cannot concurrently create new references to
  191|       |    // this object.
  192|       |    return (_Py_IsOwnedByCurrentThread(ob) &&
  193|       |            _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local) == 1 &&
  194|       |            _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared) == 0);
  195|       |#endif
  196|    568|}
dictobject.c:_PyObject_InlineValues:
  949|  1.12k|{
  950|  1.12k|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|  1.12k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.12k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.12k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  951|  1.12k|    assert(tp->tp_basicsize > 0 && (size_t)tp->tp_basicsize % sizeof(PyObject *) == 0);
  ------------------
  |  Branch (951:5): [True: 1.12k, False: 0]
  |  Branch (951:5): [True: 1.12k, False: 0]
  ------------------
  952|  1.12k|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  ------------------
  |  Branch (952:5): [True: 1.12k, False: 0]
  ------------------
  953|  1.12k|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (953:5): [True: 1.12k, False: 0]
  ------------------
  954|  1.12k|    return (PyDictValues *)((char *)obj + tp->tp_basicsize);
  955|  1.12k|}
dictobject.c:_PyObject_ManagedDictPointer:
  935|    794|{
  936|    794|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (936:5): [True: 794, False: 0]
  ------------------
  937|    794|    return (PyManagedDictPointer *)((char *)obj + MANAGED_DICT_OFFSET);
  ------------------
  |  |  925|    794|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  ------------------
  938|    794|}
dictobject.c:_PyObject_GetManagedDict:
  942|    370|{
  943|    370|    PyManagedDictPointer *dorv = _PyObject_ManagedDictPointer(obj);
  944|    370|    return (PyDictObject *)FT_ATOMIC_LOAD_PTR_ACQUIRE(dorv->dict);
  ------------------
  |  |  150|    370|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
  945|    370|}
dictobject.c:_PyType_HasFeature:
  290|    262|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|    262|    return ((type->tp_flags) & feature) != 0;
  292|    262|}
object.c:_PyObject_Init:
  486|  1.65k|{
  487|  1.65k|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 1.65k, False: 0]
  ------------------
  488|  1.65k|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|  1.65k|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|  1.65k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.65k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|  1.65k|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 0, False: 1.65k]
  |  Branch (489:5): [True: 1.65k, False: 0]
  ------------------
  490|  1.65k|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|  1.65k|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  1.65k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.65k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.65k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|  1.65k|    _Py_NewReference(op);
  492|  1.65k|}
object.c:_PyObject_InitVar:
  496|  1.48k|{
  497|  1.48k|    assert(op != NULL);
  ------------------
  |  Branch (497:5): [True: 1.48k, False: 0]
  ------------------
  498|  1.48k|    assert(typeobj != &PyLong_Type);
  ------------------
  |  Branch (498:5): [True: 1.48k, False: 0]
  ------------------
  499|  1.48k|    _PyObject_Init((PyObject *)op, typeobj);
  500|  1.48k|    Py_SET_SIZE(op, size);
  ------------------
  |  |  216|  1.48k|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|  1.48k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  501|  1.48k|}
object.c:_PyType_HasFeature:
  290|  2.22k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|  2.22k|    return ((type->tp_flags) & feature) != 0;
  292|  2.22k|}
object.c:_PyObject_ResurrectStart:
  682|     42|{
  683|     42|    assert(Py_REFCNT(op) == 0);
  ------------------
  |  Branch (683:5): [True: 42, False: 0]
  ------------------
  684|       |#ifdef Py_REF_DEBUG
  685|       |    _Py_IncRefTotal(_PyThreadState_GET());
  686|       |#endif
  687|       |#ifdef Py_GIL_DISABLED
  688|       |    _Py_atomic_store_uintptr_relaxed(&op->ob_tid, _Py_ThreadId());
  689|       |    _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 1);
  690|       |    _Py_atomic_store_ssize_relaxed(&op->ob_ref_shared, 0);
  691|       |#else
  692|     42|    Py_SET_REFCNT(op, 1);
  ------------------
  |  |  201|     42|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  693|     42|#endif
  694|       |#ifdef Py_TRACE_REFS
  695|       |    _Py_ResurrectReference(op);
  696|       |#endif
  697|     42|}
object.c:_PyObject_ResurrectEnd:
  704|     42|{
  705|       |#ifdef Py_REF_DEBUG
  706|       |    _Py_DecRefTotal(_PyThreadState_GET());
  707|       |#endif
  708|     42|#ifndef Py_GIL_DISABLED
  709|     42|    Py_SET_REFCNT(op, Py_REFCNT(op) - 1);
  ------------------
  |  |  201|     42|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  710|     42|    if (Py_REFCNT(op) == 0) {
  ------------------
  |  |  119|     42|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (710:9): [True: 42, False: 0]
  ------------------
  711|       |# ifdef Py_TRACE_REFS
  712|       |        _Py_ForgetReference(op);
  713|       |# endif
  714|     42|        return 0;
  715|     42|    }
  716|      0|    return 1;
  717|       |#else
  718|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  719|       |    Py_ssize_t shared = _Py_atomic_load_ssize_acquire(&op->ob_ref_shared);
  720|       |    if (_Py_IsOwnedByCurrentThread(op) && local == 1 && shared == 0) {
  721|       |        // Fast-path: object has a single refcount and is owned by this thread
  722|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 0);
  723|       |# ifdef Py_TRACE_REFS
  724|       |        _Py_ForgetReference(op);
  725|       |# endif
  726|       |        return 0;
  727|       |    }
  728|       |    // Slow-path: object has a shared refcount or is not owned by this thread
  729|       |    return _PyObject_ResurrectEndSlow(op);
  730|       |#endif
  731|     42|}
object.c:_PyObject_GetManagedDict:
  942|     20|{
  943|     20|    PyManagedDictPointer *dorv = _PyObject_ManagedDictPointer(obj);
  944|     20|    return (PyDictObject *)FT_ATOMIC_LOAD_PTR_ACQUIRE(dorv->dict);
  ------------------
  |  |  150|     20|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
  945|     20|}
object.c:_PyObject_ManagedDictPointer:
  935|     34|{
  936|     34|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (936:5): [True: 34, False: 0]
  ------------------
  937|     34|    return (PyManagedDictPointer *)((char *)obj + MANAGED_DICT_OFFSET);
  ------------------
  |  |  925|     34|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  ------------------
  938|     34|}
object.c:Py_DECREF_MORTAL:
  453|  1.49k|{
  454|  1.49k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 1.49k, False: 0]
  ------------------
  455|  1.49k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.49k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|  1.49k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 0, False: 1.49k]
  ------------------
  457|      0|        _Py_Dealloc(op);
  458|      0|    }
  459|  1.49k|}
setobject.c:_PyObject_HashFast:
  842|  1.60k|{
  843|  1.60k|    if (PyUnicode_CheckExact(op)) {
  ------------------
  |  |  104|  1.60k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  1.60k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 1.36k, False: 240]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  844|  1.36k|        Py_hash_t hash = PyUnstable_Unicode_GET_CACHED_HASH(op);
  845|  1.36k|        if (hash != -1) {
  ------------------
  |  Branch (845:13): [True: 142, False: 1.22k]
  ------------------
  846|    142|            return hash;
  847|    142|        }
  848|  1.36k|    }
  849|  1.46k|    return PyObject_Hash(op);
  850|  1.60k|}
setobject.c:_PyObject_IsUniquelyReferenced:
  185|    122|{
  186|    122|#if !defined(Py_GIL_DISABLED)
  187|    122|    return Py_REFCNT(ob) == 1;
  ------------------
  |  |  119|    122|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  188|       |#else
  189|       |    // NOTE: the entire ob_ref_shared field must be zero, including flags, to
  190|       |    // ensure that other threads cannot concurrently create new references to
  191|       |    // this object.
  192|       |    return (_Py_IsOwnedByCurrentThread(ob) &&
  193|       |            _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local) == 1 &&
  194|       |            _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared) == 0);
  195|       |#endif
  196|    122|}
structseq.c:_PyType_HasFeature:
  290|     28|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|     28|    return ((type->tp_flags) & feature) != 0;
  292|     28|}
tupleobject.c:_PyObject_IsUniquelyReferenced:
  185|     34|{
  186|     34|#if !defined(Py_GIL_DISABLED)
  187|     34|    return Py_REFCNT(ob) == 1;
  ------------------
  |  |  119|     34|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  188|       |#else
  189|       |    // NOTE: the entire ob_ref_shared field must be zero, including flags, to
  190|       |    // ensure that other threads cannot concurrently create new references to
  191|       |    // this object.
  192|       |    return (_Py_IsOwnedByCurrentThread(ob) &&
  193|       |            _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local) == 1 &&
  194|       |            _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared) == 0);
  195|       |#endif
  196|     34|}
tupleobject.c:_PyType_HasFeature:
  290|  8.73k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|  8.73k|    return ((type->tp_flags) & feature) != 0;
  292|  8.73k|}
typeobject.c:_PyType_HasFeature:
  290|  49.4k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|  49.4k|    return ((type->tp_flags) & feature) != 0;
  292|  49.4k|}
typeobject.c:_PyType_PreHeaderSize:
  854|  11.1k|{
  855|  11.1k|    return (
  856|  11.1k|#ifndef Py_GIL_DISABLED
  857|  11.1k|        (size_t)_PyType_IS_GC(tp) * sizeof(PyGC_Head) +
  ------------------
  |  |  828|  11.1k|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|  11.1k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  ------------------
  858|  11.1k|#endif
  859|  11.1k|        (size_t)_PyType_HasFeature(tp, Py_TPFLAGS_PREHEADER) * 2 * sizeof(PyObject *)
  ------------------
  |  |  487|  11.1k|#define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
  |  |  ------------------
  |  |  |  |  477|  11.1k|#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
  |  |  ------------------
  |  |               #define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
  |  |  ------------------
  |  |  |  |  482|  11.1k|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  |  |  ------------------
  ------------------
  860|  11.1k|    );
  861|  11.1k|}
typeobject.c:_PyObject_Init:
  486|  11.1k|{
  487|  11.1k|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 11.1k, False: 0]
  ------------------
  488|  11.1k|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|  11.1k|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|  11.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  11.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|  11.1k|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 706, False: 10.4k]
  |  Branch (489:5): [True: 10.4k, False: 0]
  ------------------
  490|  11.1k|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|  11.1k|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  11.1k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  11.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  11.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|  11.1k|    _Py_NewReference(op);
  492|  11.1k|}
typeobject.c:_PyObject_InitVar:
  496|    254|{
  497|    254|    assert(op != NULL);
  ------------------
  |  Branch (497:5): [True: 254, False: 0]
  ------------------
  498|    254|    assert(typeobj != &PyLong_Type);
  ------------------
  |  Branch (498:5): [True: 254, False: 0]
  ------------------
  499|    254|    _PyObject_Init((PyObject *)op, typeobj);
  500|    254|    Py_SET_SIZE(op, size);
  ------------------
  |  |  216|    254|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    254|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    254|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  501|    254|}
typeobject.c:Py_DECREF_MORTAL:
  453|  23.2k|{
  454|  23.2k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 23.2k, False: 0]
  ------------------
  455|  23.2k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  23.2k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|  23.2k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 0, False: 23.2k]
  ------------------
  457|      0|        _Py_Dealloc(op);
  458|      0|    }
  459|  23.2k|}
typeobject.c:_Py_INCREF_MORTAL:
 1024|  22.2k|{
 1025|  22.2k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (1025:5): [True: 22.2k, False: 0]
  ------------------
 1026|  22.2k|    op->ob_refcnt++;
 1027|  22.2k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  22.2k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
 1028|       |#if defined(Py_REF_DEBUG) && !defined(Py_LIMITED_API)
 1029|       |    if (!_Py_IsImmortal(op)) {
 1030|       |        _Py_INCREF_IncRefTotal();
 1031|       |    }
 1032|       |#endif
 1033|  22.2k|}
typeobject.c:_PyObject_HashFast:
  842|  19.1k|{
  843|  19.1k|    if (PyUnicode_CheckExact(op)) {
  ------------------
  |  |  104|  19.1k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  19.1k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  19.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  19.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 19.1k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  844|  19.1k|        Py_hash_t hash = PyUnstable_Unicode_GET_CACHED_HASH(op);
  845|  19.1k|        if (hash != -1) {
  ------------------
  |  Branch (845:13): [True: 19.0k, False: 104]
  ------------------
  846|  19.0k|            return hash;
  847|  19.0k|        }
  848|  19.1k|    }
  849|    104|    return PyObject_Hash(op);
  850|  19.1k|}
unicodeobject.c:_PyObject_Init:
  486|  27.1k|{
  487|  27.1k|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 27.1k, False: 0]
  ------------------
  488|  27.1k|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|  27.1k|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|  27.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|  27.1k|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 0, False: 27.1k]
  |  Branch (489:5): [True: 27.1k, False: 0]
  ------------------
  490|  27.1k|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|  27.1k|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  27.1k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  27.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|  27.1k|    _Py_NewReference(op);
  492|  27.1k|}
unicodeobject.c:_PyType_HasFeature:
  290|  27.1k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|  27.1k|    return ((type->tp_flags) & feature) != 0;
  292|  27.1k|}
unicodeobject.c:_PyObject_IsUniquelyReferenced:
  185|  3.86k|{
  186|  3.86k|#if !defined(Py_GIL_DISABLED)
  187|  3.86k|    return Py_REFCNT(ob) == 1;
  ------------------
  |  |  119|  3.86k|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  3.86k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.86k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  188|       |#else
  189|       |    // NOTE: the entire ob_ref_shared field must be zero, including flags, to
  190|       |    // ensure that other threads cannot concurrently create new references to
  191|       |    // this object.
  192|       |    return (_Py_IsOwnedByCurrentThread(ob) &&
  193|       |            _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local) == 1 &&
  194|       |            _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared) == 0);
  195|       |#endif
  196|  3.86k|}
weakrefobject.c:_PyType_SUPPORTS_WEAKREFS:
  872|  1.57k|static inline int _PyType_SUPPORTS_WEAKREFS(PyTypeObject *type) {
  873|  1.57k|    return (type->tp_weaklistoffset != 0);
  874|  1.57k|}
weakrefobject.c:_PyObject_GET_WEAKREFS_LISTPTR:
  793|  1.71k|{
  794|  1.71k|    if (PyType_Check(op) &&
  ------------------
  |  |  766|  3.42k|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.71k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.71k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 848, False: 866]
  |  |  ------------------
  ------------------
  795|    848|            ((PyTypeObject *)op)->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    848|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (795:13): [True: 572, False: 276]
  ------------------
  796|    572|        PyInterpreterState *interp = _PyInterpreterState_GET();
  797|    572|        managed_static_type_state *state = _PyStaticType_GetState(
  798|    572|                                                interp, (PyTypeObject *)op);
  799|    572|        return _PyStaticType_GET_WEAKREFS_LISTPTR(state);
  800|    572|    }
  801|       |    // Essentially _PyObject_GET_WEAKREFS_LISTPTR_FROM_OFFSET():
  802|  1.14k|    Py_ssize_t offset = Py_TYPE(op)->tp_weaklistoffset;
  ------------------
  |  |  213|  1.14k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.14k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.14k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  803|  1.14k|    return (PyObject **)((char *)op + offset);
  804|  1.71k|}
weakrefobject.c:_Py_TryIncref:
  736|    456|{
  737|       |#ifdef Py_GIL_DISABLED
  738|       |    return _Py_TryIncrefFast(op) || _Py_TryIncRefShared(op);
  739|       |#else
  740|    456|    if (Py_REFCNT(op) > 0) {
  ------------------
  |  |  119|    456|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    456|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    456|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (740:9): [True: 456, False: 0]
  ------------------
  741|    456|        Py_INCREF(op);
  ------------------
  |  |  310|    456|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    456|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    456|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  742|    456|        return 1;
  743|    456|    }
  744|      0|    return 0;
  745|    456|#endif
  746|    456|}
ceval.c:Py_DECREF_MORTAL:
  453|  19.9k|{
  454|  19.9k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 19.9k, False: 0]
  ------------------
  455|  19.9k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  19.9k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|  19.9k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 1.47k, False: 18.4k]
  ------------------
  457|  1.47k|        _Py_Dealloc(op);
  458|  1.47k|    }
  459|  19.9k|}
ceval.c:Py_DECREF_MORTAL_SPECIALIZED:
  463|    456|{
  464|    456|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (464:5): [True: 456, False: 0]
  ------------------
  465|    456|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    456|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  466|    456|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (466:9): [True: 12, False: 444]
  ------------------
  467|       |        _PyReftracerTrack(op, PyRefTracer_DESTROY);
  ------------------
  |  |  112|     12|    do { \
  |  |  113|     12|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  114|     12|        if (tracer->tracer_func != NULL) { \
  |  |  ------------------
  |  |  |  Branch (114:13): [True: 0, False: 12]
  |  |  ------------------
  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  117|      0|        } \
  |  |  118|     12|    } while(0)
  |  |  ------------------
  |  |  |  Branch (118:13): [Folded, False: 12]
  |  |  ------------------
  ------------------
  468|     12|        destruct(op);
  469|     12|    }
  470|    456|}
ceval.c:_Py_INCREF_MORTAL:
 1024|  17.7k|{
 1025|  17.7k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (1025:5): [True: 17.7k, False: 0]
  ------------------
 1026|  17.7k|    op->ob_refcnt++;
 1027|  17.7k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  17.7k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
 1028|       |#if defined(Py_REF_DEBUG) && !defined(Py_LIMITED_API)
 1029|       |    if (!_Py_IsImmortal(op)) {
 1030|       |        _Py_INCREF_IncRefTotal();
 1031|       |    }
 1032|       |#endif
 1033|  17.7k|}
ceval.c:_PyObject_InlineValues:
  949|  4.91k|{
  950|  4.91k|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|  4.91k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  4.91k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.91k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  951|  4.91k|    assert(tp->tp_basicsize > 0 && (size_t)tp->tp_basicsize % sizeof(PyObject *) == 0);
  ------------------
  |  Branch (951:5): [True: 4.91k, False: 0]
  |  Branch (951:5): [True: 4.91k, False: 0]
  ------------------
  952|  4.91k|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  ------------------
  |  Branch (952:5): [True: 4.91k, False: 0]
  ------------------
  953|  4.91k|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (953:5): [True: 4.91k, False: 0]
  ------------------
  954|  4.91k|    return (PyDictValues *)((char *)obj + tp->tp_basicsize);
  955|  4.91k|}
ceval.c:_PyType_HasFeature:
  290|  1.17k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|  1.17k|    return ((type->tp_flags) & feature) != 0;
  292|  1.17k|}
ceval.c:_PyObject_GetManagedDict:
  942|  2.74k|{
  943|  2.74k|    PyManagedDictPointer *dorv = _PyObject_ManagedDictPointer(obj);
  944|  2.74k|    return (PyDictObject *)FT_ATOMIC_LOAD_PTR_ACQUIRE(dorv->dict);
  ------------------
  |  |  150|  2.74k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
  945|  2.74k|}
ceval.c:_PyObject_ManagedDictPointer:
  935|  2.74k|{
  936|  2.74k|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (936:5): [True: 2.74k, False: 0]
  ------------------
  937|  2.74k|    return (PyManagedDictPointer *)((char *)obj + MANAGED_DICT_OFFSET);
  ------------------
  |  |  925|  2.74k|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  ------------------
  938|  2.74k|}
frame.c:Py_DECREF_MORTAL:
  453|  8.75k|{
  454|  8.75k|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 8.75k, False: 0]
  ------------------
  455|  8.75k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  8.75k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|  8.75k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 1.33k, False: 7.41k]
  ------------------
  457|  1.33k|        _Py_Dealloc(op);
  458|  1.33k|    }
  459|  8.75k|}
frame.c:_PyObject_IsUniquelyReferenced:
  185|    186|{
  186|    186|#if !defined(Py_GIL_DISABLED)
  187|    186|    return Py_REFCNT(ob) == 1;
  ------------------
  |  |  119|    186|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    186|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    186|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  188|       |#else
  189|       |    // NOTE: the entire ob_ref_shared field must be zero, including flags, to
  190|       |    // ensure that other threads cannot concurrently create new references to
  191|       |    // this object.
  192|       |    return (_Py_IsOwnedByCurrentThread(ob) &&
  193|       |            _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local) == 1 &&
  194|       |            _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared) == 0);
  195|       |#endif
  196|    186|}
frame.c:_Py_INCREF_MORTAL:
 1024|     28|{
 1025|     28|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (1025:5): [True: 28, False: 0]
  ------------------
 1026|     28|    op->ob_refcnt++;
 1027|     28|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     28|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
 1028|       |#if defined(Py_REF_DEBUG) && !defined(Py_LIMITED_API)
 1029|       |    if (!_Py_IsImmortal(op)) {
 1030|       |        _Py_INCREF_IncRefTotal();
 1031|       |    }
 1032|       |#endif
 1033|     28|}
gc.c:_PyType_SUPPORTS_WEAKREFS:
  872|     88|static inline int _PyType_SUPPORTS_WEAKREFS(PyTypeObject *type) {
  873|     88|    return (type->tp_weaklistoffset != 0);
  874|     88|}
gc.c:_PyObject_GET_WEAKREFS_LISTPTR_FROM_OFFSET:
  820|     52|{
  821|     52|    assert(!PyType_Check(op) ||
  ------------------
  |  Branch (821:5): [True: 52, False: 0]
  |  Branch (821:5): [True: 0, False: 0]
  ------------------
  822|     52|            ((PyTypeObject *)op)->tp_flags & Py_TPFLAGS_HEAPTYPE);
  823|     52|    Py_ssize_t offset = Py_TYPE(op)->tp_weaklistoffset;
  ------------------
  |  |  213|     52|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  824|     52|    return (PyWeakReference **)((char *)op + offset);
  825|     52|}
gc.c:_PyObject_IS_GC:
  833|  81.4k|{
  834|  81.4k|    PyTypeObject *type = Py_TYPE(obj);
  ------------------
  |  |  213|  81.4k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  81.4k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  81.4k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  835|  81.4k|    return (_PyType_IS_GC(type)
  ------------------
  |  |  828|   162k|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|  81.4k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  |  |  |  Branch (828:26): [True: 34.5k, False: 46.9k]
  |  |  ------------------
  ------------------
  836|  34.5k|            && (type->tp_is_gc == NULL || type->tp_is_gc(obj)));
  ------------------
  |  Branch (836:17): [True: 21.4k, False: 13.0k]
  |  Branch (836:43): [True: 3.21k, False: 9.82k]
  ------------------
  837|  81.4k|}
gc.c:_PyType_PreHeaderSize:
  854|  16.1k|{
  855|  16.1k|    return (
  856|  16.1k|#ifndef Py_GIL_DISABLED
  857|  16.1k|        (size_t)_PyType_IS_GC(tp) * sizeof(PyGC_Head) +
  ------------------
  |  |  828|  16.1k|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|  16.1k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  ------------------
  858|  16.1k|#endif
  859|  16.1k|        (size_t)_PyType_HasFeature(tp, Py_TPFLAGS_PREHEADER) * 2 * sizeof(PyObject *)
  ------------------
  |  |  487|  16.1k|#define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
  |  |  ------------------
  |  |  |  |  477|  16.1k|#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
  |  |  ------------------
  |  |               #define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
  |  |  ------------------
  |  |  |  |  482|  16.1k|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  |  |  ------------------
  ------------------
  860|  16.1k|    );
  861|  16.1k|}
gc.c:_PyType_HasFeature:
  290|   128k|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|   128k|    return ((type->tp_flags) & feature) != 0;
  292|   128k|}
gc.c:_PyObject_Init:
  486|  9.90k|{
  487|  9.90k|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 9.90k, False: 0]
  ------------------
  488|  9.90k|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|  9.90k|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|  9.90k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.90k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|  9.90k|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 28, False: 9.88k]
  |  Branch (489:5): [True: 9.88k, False: 0]
  ------------------
  490|  9.90k|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|  9.90k|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  9.90k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  9.90k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  9.90k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|  9.90k|    _Py_NewReference(op);
  492|  9.90k|}
gc.c:_PyObject_InitVar:
  496|  4.87k|{
  497|  4.87k|    assert(op != NULL);
  ------------------
  |  Branch (497:5): [True: 4.87k, False: 0]
  ------------------
  498|  4.87k|    assert(typeobj != &PyLong_Type);
  ------------------
  |  Branch (498:5): [True: 4.87k, False: 0]
  ------------------
  499|  4.87k|    _PyObject_Init((PyObject *)op, typeobj);
  500|  4.87k|    Py_SET_SIZE(op, size);
  ------------------
  |  |  216|  4.87k|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|  4.87k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.87k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  501|  4.87k|}
import.c:_Py_TryIncref:
  736|      2|{
  737|       |#ifdef Py_GIL_DISABLED
  738|       |    return _Py_TryIncrefFast(op) || _Py_TryIncRefShared(op);
  739|       |#else
  740|      2|    if (Py_REFCNT(op) > 0) {
  ------------------
  |  |  119|      2|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (740:9): [True: 2, False: 0]
  ------------------
  741|      2|        Py_INCREF(op);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  742|      2|        return 1;
  743|      2|    }
  744|      0|    return 0;
  745|      2|#endif
  746|      2|}
intrinsics.c:_PyObject_IsUniquelyReferenced:
  185|      8|{
  186|      8|#if !defined(Py_GIL_DISABLED)
  187|      8|    return Py_REFCNT(ob) == 1;
  ------------------
  |  |  119|      8|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  188|       |#else
  189|       |    // NOTE: the entire ob_ref_shared field must be zero, including flags, to
  190|       |    // ensure that other threads cannot concurrently create new references to
  191|       |    // this object.
  192|       |    return (_Py_IsOwnedByCurrentThread(ob) &&
  193|       |            _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local) == 1 &&
  194|       |            _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared) == 0);
  195|       |#endif
  196|      8|}
specialize.c:_PyObject_GetManagedDict:
  942|    328|{
  943|    328|    PyManagedDictPointer *dorv = _PyObject_ManagedDictPointer(obj);
  944|    328|    return (PyDictObject *)FT_ATOMIC_LOAD_PTR_ACQUIRE(dorv->dict);
  ------------------
  |  |  150|    328|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
  945|    328|}
specialize.c:_PyObject_ManagedDictPointer:
  935|    328|{
  936|    328|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (936:5): [True: 328, False: 0]
  ------------------
  937|    328|    return (PyManagedDictPointer *)((char *)obj + MANAGED_DICT_OFFSET);
  ------------------
  |  |  925|    328|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  ------------------
  938|    328|}
specialize.c:_PyObject_InlineValues:
  949|    672|{
  950|    672|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|    672|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    672|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    672|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  951|    672|    assert(tp->tp_basicsize > 0 && (size_t)tp->tp_basicsize % sizeof(PyObject *) == 0);
  ------------------
  |  Branch (951:5): [True: 672, False: 0]
  |  Branch (951:5): [True: 672, False: 0]
  ------------------
  952|    672|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  ------------------
  |  Branch (952:5): [True: 672, False: 0]
  ------------------
  953|    672|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (953:5): [True: 672, False: 0]
  ------------------
  954|    672|    return (PyDictValues *)((char *)obj + tp->tp_basicsize);
  955|    672|}
_datetimemodule.c:_PyObject_Init:
  486|      8|{
  487|      8|    assert(op != NULL);
  ------------------
  |  Branch (487:5): [True: 8, False: 0]
  ------------------
  488|      8|    Py_SET_TYPE(op, typeobj);
  ------------------
  |  |  217|      8|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  489|      8|    assert(_PyType_HasFeature(typeobj, Py_TPFLAGS_HEAPTYPE) || _Py_IsImmortal(typeobj));
  ------------------
  |  Branch (489:5): [True: 0, False: 8]
  |  Branch (489:5): [True: 8, False: 0]
  ------------------
  490|      8|    _Py_INCREF_TYPE(typeobj);
  ------------------
  |  |  315|      8|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|      8|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|      8|    _Py_NewReference(op);
  492|      8|}
_datetimemodule.c:_PyType_HasFeature:
  290|      8|_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
  291|      8|    return ((type->tp_flags) & feature) != 0;
  292|      8|}
codeobject.c:_PyObject_ResurrectStart:
  682|    276|{
  683|    276|    assert(Py_REFCNT(op) == 0);
  ------------------
  |  Branch (683:5): [True: 276, False: 0]
  ------------------
  684|       |#ifdef Py_REF_DEBUG
  685|       |    _Py_IncRefTotal(_PyThreadState_GET());
  686|       |#endif
  687|       |#ifdef Py_GIL_DISABLED
  688|       |    _Py_atomic_store_uintptr_relaxed(&op->ob_tid, _Py_ThreadId());
  689|       |    _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 1);
  690|       |    _Py_atomic_store_ssize_relaxed(&op->ob_ref_shared, 0);
  691|       |#else
  692|    276|    Py_SET_REFCNT(op, 1);
  ------------------
  |  |  201|    276|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  693|    276|#endif
  694|       |#ifdef Py_TRACE_REFS
  695|       |    _Py_ResurrectReference(op);
  696|       |#endif
  697|    276|}
codeobject.c:_PyObject_ResurrectEnd:
  704|    276|{
  705|       |#ifdef Py_REF_DEBUG
  706|       |    _Py_DecRefTotal(_PyThreadState_GET());
  707|       |#endif
  708|    276|#ifndef Py_GIL_DISABLED
  709|    276|    Py_SET_REFCNT(op, Py_REFCNT(op) - 1);
  ------------------
  |  |  201|    276|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  710|    276|    if (Py_REFCNT(op) == 0) {
  ------------------
  |  |  119|    276|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (710:9): [True: 276, False: 0]
  ------------------
  711|       |# ifdef Py_TRACE_REFS
  712|       |        _Py_ForgetReference(op);
  713|       |# endif
  714|    276|        return 0;
  715|    276|    }
  716|      0|    return 1;
  717|       |#else
  718|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  719|       |    Py_ssize_t shared = _Py_atomic_load_ssize_acquire(&op->ob_ref_shared);
  720|       |    if (_Py_IsOwnedByCurrentThread(op) && local == 1 && shared == 0) {
  721|       |        // Fast-path: object has a single refcount and is owned by this thread
  722|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 0);
  723|       |# ifdef Py_TRACE_REFS
  724|       |        _Py_ForgetReference(op);
  725|       |# endif
  726|       |        return 0;
  727|       |    }
  728|       |    // Slow-path: object has a shared refcount or is not owned by this thread
  729|       |    return _PyObject_ResurrectEndSlow(op);
  730|       |#endif
  731|    276|}
genobject.c:Py_DECREF_MORTAL:
  453|     42|{
  454|     42|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 42, False: 0]
  ------------------
  455|     42|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     42|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|     42|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 0, False: 42]
  ------------------
  457|      0|        _Py_Dealloc(op);
  458|      0|    }
  459|     42|}
frameobject.c:Py_DECREF_MORTAL:
  453|    120|{
  454|    120|    assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (454:5): [True: 120, False: 0]
  ------------------
  455|    120|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    120|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  456|    120|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (456:9): [True: 30, False: 90]
  ------------------
  457|     30|        _Py_Dealloc(op);
  458|     30|    }
  459|    120|}

typeobject.c:_PyObject_MallocWithType:
   40|  11.1k|{
   41|       |#ifdef Py_GIL_DISABLED
   42|       |    _PyThreadStateImpl *tstate = (_PyThreadStateImpl *)_PyThreadState_GET();
   43|       |    struct _mimalloc_thread_state *m = &tstate->mimalloc;
   44|       |    m->current_object_heap = _PyObject_GetAllocationHeap(tstate, tp);
   45|       |#endif
   46|  11.1k|    void *mem = PyObject_Malloc(size);
   47|       |#ifdef Py_GIL_DISABLED
   48|       |    m->current_object_heap = &m->heaps[_Py_MIMALLOC_HEAP_OBJECT];
   49|       |#endif
   50|  11.1k|    return mem;
   51|  11.1k|}
gc.c:_PyObject_MallocWithType:
   40|  9.90k|{
   41|       |#ifdef Py_GIL_DISABLED
   42|       |    _PyThreadStateImpl *tstate = (_PyThreadStateImpl *)_PyThreadState_GET();
   43|       |    struct _mimalloc_thread_state *m = &tstate->mimalloc;
   44|       |    m->current_object_heap = _PyObject_GetAllocationHeap(tstate, tp);
   45|       |#endif
   46|  9.90k|    void *mem = PyObject_Malloc(size);
   47|       |#ifdef Py_GIL_DISABLED
   48|       |    m->current_object_heap = &m->heaps[_Py_MIMALLOC_HEAP_OBJECT];
   49|       |#endif
   50|  9.90k|    return mem;
   51|  9.90k|}
gc.c:_PyObject_ReallocWithType:
   55|      2|{
   56|       |#ifdef Py_GIL_DISABLED
   57|       |    _PyThreadStateImpl *tstate = (_PyThreadStateImpl *)_PyThreadState_GET();
   58|       |    struct _mimalloc_thread_state *m = &tstate->mimalloc;
   59|       |    m->current_object_heap = _PyObject_GetAllocationHeap(tstate, tp);
   60|       |#endif
   61|      2|    void *mem = PyObject_Realloc(ptr, size);
   62|       |#ifdef Py_GIL_DISABLED
   63|       |    m->current_object_heap = &m->heaps[_Py_MIMALLOC_HEAP_OBJECT];
   64|       |#endif
   65|      2|    return mem;
   66|      2|}

call.c:_PyErr_Occurred:
   76|  12.0k|{
   77|  12.0k|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 12.0k, False: 0]
  ------------------
   78|  12.0k|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 11.9k, False: 70]
  ------------------
   79|  11.9k|        return NULL;
   80|  11.9k|    }
   81|     70|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|     70|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     70|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     70|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|  12.0k|}
dictobject.c:_PyErr_Occurred:
   76|     96|{
   77|     96|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 96, False: 0]
  ------------------
   78|     96|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 96, False: 0]
  ------------------
   79|     96|        return NULL;
   80|     96|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|     96|}
typeobject.c:_PyErr_Occurred:
   76|    888|{
   77|    888|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 888, False: 0]
  ------------------
   78|    888|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 880, False: 8]
  ------------------
   79|    880|        return NULL;
   80|    880|    }
   81|      8|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      8|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|    888|}
ceval.c:_PyErr_Occurred:
   76|  2.01k|{
   77|  2.01k|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 2.01k, False: 0]
  ------------------
   78|  2.01k|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 1.72k, False: 288]
  ------------------
   79|  1.72k|        return NULL;
   80|  1.72k|    }
   81|    288|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|    288|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    288|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    288|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|  2.01k|}
ceval.c:_PyErr_ClearExcState:
   85|     34|{
   86|       |    Py_CLEAR(exc_state->exc_value);
  ------------------
  |  |  484|     34|    do { \
  |  |  485|     34|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     34|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     34|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     34|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     34|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 34]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|     34|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 34]
  |  |  ------------------
  ------------------
   87|     34|}
errors.c:_PyErr_Occurred:
   76|  37.4k|{
   77|  37.4k|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 37.4k, False: 0]
  ------------------
   78|  37.4k|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 33.4k, False: 4.03k]
  ------------------
   79|  33.4k|        return NULL;
   80|  33.4k|    }
   81|  4.03k|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|  4.03k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  4.03k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|  37.4k|}
gc.c:_PyErr_Occurred:
   76|  3.04k|{
   77|  3.04k|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 3.04k, False: 0]
  ------------------
   78|  3.04k|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 3.04k, False: 0]
  ------------------
   79|  3.04k|        return NULL;
   80|  3.04k|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|  3.04k|}
import.c:_PyErr_Occurred:
   76|     90|{
   77|     90|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 90, False: 0]
  ------------------
   78|     90|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 90, False: 0]
  ------------------
   79|     90|        return NULL;
   80|     90|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|     90|}
pylifecycle.c:_PyErr_Occurred:
   76|      6|{
   77|      6|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 6, False: 0]
  ------------------
   78|      6|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 6, False: 0]
  ------------------
   79|      6|        return NULL;
   80|      6|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|      6|}
sysmodule.c:_PyErr_Occurred:
   76|     10|{
   77|     10|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 10, False: 0]
  ------------------
   78|     10|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 10, False: 0]
  ------------------
   79|     10|        return NULL;
   80|     10|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|     10|}
abstract.c:_PyErr_Occurred:
   76|     92|{
   77|     92|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 92, False: 0]
  ------------------
   78|     92|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 92, False: 0]
  ------------------
   79|     92|        return NULL;
   80|     92|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|     92|}
genobject.c:_PyErr_ClearExcState:
   85|      8|{
   86|       |    Py_CLEAR(exc_state->exc_value);
  ------------------
  |  |  484|      8|    do { \
  |  |  485|      8|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      8|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      8|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      8|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      8|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 8]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
   87|      8|}
genobject.c:_PyErr_Occurred:
   76|     42|{
   77|     42|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 42, False: 0]
  ------------------
   78|     42|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 42, False: 0]
  ------------------
   79|     42|        return NULL;
   80|     42|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|     42|}
methodobject.c:_PyErr_Occurred:
   76|  1.21k|{
   77|  1.21k|    assert(tstate != NULL);
  ------------------
  |  Branch (77:5): [True: 1.21k, False: 0]
  ------------------
   78|  1.21k|    if (tstate->current_exception == NULL) {
  ------------------
  |  Branch (78:9): [True: 1.21k, False: 0]
  ------------------
   79|  1.21k|        return NULL;
   80|  1.21k|    }
   81|      0|    return (PyObject *)Py_TYPE(tstate->current_exception);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|  1.21k|}

pyhash.c:_Py_HashPointerRaw:
   11|    328|{
   12|    328|    uintptr_t x = (uintptr_t)ptr;
   13|    328|    Py_BUILD_ASSERT(sizeof(x) == sizeof(ptr));
  ------------------
  |  |  167|    328|        do { \
  |  |  168|    328|            static_assert((cond), #cond); \
  |  |  169|    328|        } while (0)
  |  |  ------------------
  |  |  |  Branch (169:18): [Folded, False: 328]
  |  |  ------------------
  ------------------
   14|       |
   15|       |    // Bottom 3 or 4 bits are likely to be 0; rotate x by 4 to the right
   16|       |    // to avoid excessive hash collisions for dicts and sets.
   17|    328|    x = (x >> 4) | (x << (8 * sizeof(uintptr_t) - 4));
   18|       |
   19|       |    Py_BUILD_ASSERT(sizeof(x) == sizeof(Py_hash_t));
  ------------------
  |  |  167|    328|        do { \
  |  |  168|    328|            static_assert((cond), #cond); \
  |  |  169|    328|        } while (0)
  |  |  ------------------
  |  |  |  Branch (169:18): [Folded, False: 328]
  |  |  ------------------
  ------------------
   20|    328|    return (Py_hash_t)x;
   21|    328|}

object.c:_PyMem_IsPtrFreed:
   54|  68.2k|{
   55|  68.2k|    uintptr_t value = (uintptr_t)ptr;
   56|  68.2k|#if SIZEOF_VOID_P == 8
   57|  68.2k|    return (value <= 0xff  // NULL, 0x1, 0x2, ..., 0xff
  ------------------
  |  Branch (57:13): [True: 0, False: 68.2k]
  ------------------
   58|  68.2k|            || value == (uintptr_t)0xCDCDCDCDCDCDCDCD
  ------------------
  |  Branch (58:16): [True: 0, False: 68.2k]
  ------------------
   59|  68.2k|            || value == (uintptr_t)0xDDDDDDDDDDDDDDDD
  ------------------
  |  Branch (59:16): [True: 0, False: 68.2k]
  ------------------
   60|  68.2k|            || value == (uintptr_t)0xFDFDFDFDFDFDFDFD
  ------------------
  |  Branch (60:16): [True: 0, False: 68.2k]
  ------------------
   61|  68.2k|            || value >= (uintptr_t)0xFFFFFFFFFFFFFF00);  // -0xff, ..., -2, -1
  ------------------
  |  Branch (61:16): [True: 0, False: 68.2k]
  ------------------
   62|       |#elif SIZEOF_VOID_P == 4
   63|       |    return (value <= 0xff
   64|       |            || value == (uintptr_t)0xCDCDCDCD
   65|       |            || value == (uintptr_t)0xDDDDDDDD
   66|       |            || value == (uintptr_t)0xFDFDFDFD
   67|       |            || value >= (uintptr_t)0xFFFFFF00);
   68|       |#else
   69|       |#  error "unknown pointer size"
   70|       |#endif
   71|  68.2k|}
pystate.c:_PyMem_IsPtrFreed:
   54|  2.62k|{
   55|  2.62k|    uintptr_t value = (uintptr_t)ptr;
   56|  2.62k|#if SIZEOF_VOID_P == 8
   57|  2.62k|    return (value <= 0xff  // NULL, 0x1, 0x2, ..., 0xff
  ------------------
  |  Branch (57:13): [True: 0, False: 2.62k]
  ------------------
   58|  2.62k|            || value == (uintptr_t)0xCDCDCDCDCDCDCDCD
  ------------------
  |  Branch (58:16): [True: 0, False: 2.62k]
  ------------------
   59|  2.62k|            || value == (uintptr_t)0xDDDDDDDDDDDDDDDD
  ------------------
  |  Branch (59:16): [True: 0, False: 2.62k]
  ------------------
   60|  2.62k|            || value == (uintptr_t)0xFDFDFDFDFDFDFDFD
  ------------------
  |  Branch (60:16): [True: 0, False: 2.62k]
  ------------------
   61|  2.62k|            || value >= (uintptr_t)0xFFFFFFFFFFFFFF00);  // -0xff, ..., -2, -1
  ------------------
  |  Branch (61:16): [True: 0, False: 2.62k]
  ------------------
   62|       |#elif SIZEOF_VOID_P == 4
   63|       |    return (value <= 0xff
   64|       |            || value == (uintptr_t)0xCDCDCDCD
   65|       |            || value == (uintptr_t)0xDDDDDDDD
   66|       |            || value == (uintptr_t)0xFDFDFDFD
   67|       |            || value >= (uintptr_t)0xFFFFFF00);
   68|       |#else
   69|       |#  error "unknown pointer size"
   70|       |#endif
   71|  2.62k|}

bytesobject.c:_PyInterpreterState_GET:
  207|      8|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|      8|#if !defined(Py_BUILD_CORE_MODULE)
  213|      8|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|      8|}
call.c:_PyThreadState_GET:
  117|  10.2k|{
  118|  10.2k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  10.2k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  10.2k|}
call.c:_Py_get_machine_stack_pointer:
  318|  1.03k|_Py_get_machine_stack_pointer(void) {
  319|  1.03k|#if _Py__has_builtin(__builtin_frame_address) || defined(__GNUC__)
  320|  1.03k|    return (uintptr_t)__builtin_frame_address(0);
  321|       |#elif defined(_MSC_VER)
  322|       |    return (uintptr_t)_AddressOfReturnAddress();
  323|       |#else
  324|       |    char here;
  325|       |    /* Avoid compiler warning about returning stack address */
  326|       |    return return_pointer_as_int(&here);
  327|       |#endif
  328|  1.03k|}
exceptions.c:_PyInterpreterState_GET:
  207|    216|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    216|#if !defined(Py_BUILD_CORE_MODULE)
  213|    216|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    216|}
genericaliasobject.c:_PyInterpreterState_GET:
  207|      4|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|      4|#if !defined(Py_BUILD_CORE_MODULE)
  213|      4|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|      4|}
floatobject.c:_PyInterpreterState_GET:
  207|  3.51k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  3.51k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  3.51k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  3.51k|}
funcobject.c:_PyInterpreterState_GET:
  207|  5.78k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  5.78k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  5.78k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  5.78k|}
listobject.c:_PyInterpreterState_GET:
  207|  2.21k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  2.21k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  2.21k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  2.21k|}
longobject.c:_PyInterpreterState_GET:
  207|    628|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    628|#if !defined(Py_BUILD_CORE_MODULE)
  213|    628|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    628|}
dictobject.c:_PyInterpreterState_GET:
  207|  14.3k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  14.3k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  14.3k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  14.3k|}
dictobject.c:_PyThreadState_GET:
  117|     96|{
  118|     96|#if !defined(Py_BUILD_CORE_MODULE)
  119|     96|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|     96|}
moduleobject.c:_PyInterpreterState_GET:
  207|     24|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|     24|#if !defined(Py_BUILD_CORE_MODULE)
  213|     24|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|     24|}
object.c:_PyThreadState_GET:
  117|  60.1k|{
  118|  60.1k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  60.1k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  60.1k|}
object.c:_Py_get_machine_stack_pointer:
  318|  50.4k|_Py_get_machine_stack_pointer(void) {
  319|  50.4k|#if _Py__has_builtin(__builtin_frame_address) || defined(__GNUC__)
  320|  50.4k|    return (uintptr_t)__builtin_frame_address(0);
  321|       |#elif defined(_MSC_VER)
  322|       |    return (uintptr_t)_AddressOfReturnAddress();
  323|       |#else
  324|       |    char here;
  325|       |    /* Avoid compiler warning about returning stack address */
  326|       |    return return_pointer_as_int(&here);
  327|       |#endif
  328|  50.4k|}
object.c:_PyInterpreterState_GET:
  207|    826|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    826|#if !defined(Py_BUILD_CORE_MODULE)
  213|    826|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    826|}
object.c:_Py_RecursionLimit_GetMargin:
  332|  40.2k|{
  333|  40.2k|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  334|  40.2k|    assert(_tstate->c_stack_hard_limit != 0);
  ------------------
  |  Branch (334:5): [True: 40.2k, False: 0]
  ------------------
  335|  40.2k|    intptr_t here_addr = _Py_get_machine_stack_pointer();
  336|  40.2k|#if _Py_STACK_GROWS_DOWN
  337|  40.2k|    return Py_ARITHMETIC_RIGHT_SHIFT(intptr_t, here_addr - (intptr_t)_tstate->c_stack_soft_limit, _PyOS_STACK_MARGIN_SHIFT);
  ------------------
  |  |  226|  40.2k|#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
  ------------------
  338|       |#else
  339|       |    return Py_ARITHMETIC_RIGHT_SHIFT(intptr_t, (intptr_t)_tstate->c_stack_soft_limit - here_addr, _PyOS_STACK_MARGIN_SHIFT);
  340|       |#endif
  341|  40.2k|}
object.c:_Py_AssertHoldsTstateFunc:
  302|      2|{
  303|      2|    PyThreadState *tstate = _PyThreadState_GET();
  304|      2|    _Py_EnsureFuncTstateNotNULL(func, tstate);
  305|      2|}
object.c:_Py_EnsureFuncTstateNotNULL:
  177|      2|{
  178|      2|    if (tstate == NULL) {
  ------------------
  |  Branch (178:9): [True: 0, False: 2]
  ------------------
  179|      0|#ifndef Py_GIL_DISABLED
  180|      0|        _Py_FatalErrorFunc(func,
  181|      0|            "the function must be called with the GIL held, "
  182|      0|            "after Python initialization and before Python finalization, "
  183|      0|            "but the GIL is released (the current Python thread state is NULL)");
  184|       |#else
  185|       |        _Py_FatalErrorFunc(func,
  186|       |            "the function must be called with an active thread state, "
  187|       |            "after Python initialization and before Python finalization, "
  188|       |            "but it was called without an active thread state. "
  189|       |            "Are you trying to call the C API inside of a Py_BEGIN_ALLOW_THREADS block?");
  190|       |#endif
  191|      0|    }
  192|      2|}
obmalloc.c:_PyInterpreterState_GET:
  207|   105k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|   105k|#if !defined(Py_BUILD_CORE_MODULE)
  213|   105k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|   105k|}
obmalloc.c:_Py_IsMainInterpreter:
   61|      2|{
   62|      2|    return (interp == _PyInterpreterState_Main());
   63|      2|}
rangeobject.c:_PyInterpreterState_GET:
  207|     28|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|     28|#if !defined(Py_BUILD_CORE_MODULE)
  213|     28|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|     28|}
setobject.c:_PyInterpreterState_GET:
  207|    192|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    192|#if !defined(Py_BUILD_CORE_MODULE)
  213|    192|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    192|}
sliceobject.c:_PyInterpreterState_GET:
  207|    204|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    204|#if !defined(Py_BUILD_CORE_MODULE)
  213|    204|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    204|}
tupleobject.c:_PyInterpreterState_GET:
  207|  27.0k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  27.0k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  27.0k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  27.0k|}
typeobject.c:_PyInterpreterState_GET:
  207|  69.1k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  69.1k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  69.1k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  69.1k|}
typeobject.c:_PyThreadState_GET:
  117|  22.5k|{
  118|  22.5k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  22.5k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  22.5k|}
typeobject.c:_Py_IsMainInterpreter:
   61|    404|{
   62|    404|    return (interp == _PyInterpreterState_Main());
   63|    404|}
unicodeobject.c:_PyInterpreterState_GET:
  207|  6.37k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  6.37k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  6.37k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  6.37k|}
unicodeobject.c:_Py_IsMainInterpreter:
   61|      6|{
   62|      6|    return (interp == _PyInterpreterState_Main());
   63|      6|}
weakrefobject.c:_PyInterpreterState_GET:
  207|    572|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    572|#if !defined(Py_BUILD_CORE_MODULE)
  213|    572|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    572|}
_warnings.c:_PyInterpreterState_GET:
  207|      2|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|      2|#if !defined(Py_BUILD_CORE_MODULE)
  213|      2|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|      2|}
bltinmodule.c:_PyThreadState_GET:
  117|    196|{
  118|    196|#if !defined(Py_BUILD_CORE_MODULE)
  119|    196|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    196|}
ceval.c:_Py_get_machine_stack_pointer:
  318|  1.41k|_Py_get_machine_stack_pointer(void) {
  319|  1.41k|#if _Py__has_builtin(__builtin_frame_address) || defined(__GNUC__)
  320|  1.41k|    return (uintptr_t)__builtin_frame_address(0);
  321|       |#elif defined(_MSC_VER)
  322|       |    return (uintptr_t)_AddressOfReturnAddress();
  323|       |#else
  324|       |    char here;
  325|       |    /* Avoid compiler warning about returning stack address */
  326|       |    return return_pointer_as_int(&here);
  327|       |#endif
  328|  1.41k|}
ceval.c:_PyThreadState_GET:
  117|    272|{
  118|    272|#if !defined(Py_BUILD_CORE_MODULE)
  119|    272|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    272|}
ceval.c:_Py_EnsureFuncTstateNotNULL:
  177|    906|{
  178|    906|    if (tstate == NULL) {
  ------------------
  |  Branch (178:9): [True: 0, False: 906]
  ------------------
  179|      0|#ifndef Py_GIL_DISABLED
  180|      0|        _Py_FatalErrorFunc(func,
  181|      0|            "the function must be called with the GIL held, "
  182|      0|            "after Python initialization and before Python finalization, "
  183|      0|            "but the GIL is released (the current Python thread state is NULL)");
  184|       |#else
  185|       |        _Py_FatalErrorFunc(func,
  186|       |            "the function must be called with an active thread state, "
  187|       |            "after Python initialization and before Python finalization, "
  188|       |            "but it was called without an active thread state. "
  189|       |            "Are you trying to call the C API inside of a Py_BEGIN_ALLOW_THREADS block?");
  190|       |#endif
  191|      0|    }
  192|    906|}
codecs.c:_PyInterpreterState_GET:
  207|     26|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|     26|#if !defined(Py_BUILD_CORE_MODULE)
  213|     26|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|     26|}
errors.c:_PyThreadState_GET:
  117|  79.8k|{
  118|  79.8k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  79.8k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  79.8k|}
errors.c:_Py_AssertHoldsTstateFunc:
  302|  35.4k|{
  303|  35.4k|    PyThreadState *tstate = _PyThreadState_GET();
  304|  35.4k|    _Py_EnsureFuncTstateNotNULL(func, tstate);
  305|  35.4k|}
errors.c:_Py_EnsureFuncTstateNotNULL:
  177|  35.4k|{
  178|  35.4k|    if (tstate == NULL) {
  ------------------
  |  Branch (178:9): [True: 0, False: 35.4k]
  ------------------
  179|      0|#ifndef Py_GIL_DISABLED
  180|      0|        _Py_FatalErrorFunc(func,
  181|      0|            "the function must be called with the GIL held, "
  182|      0|            "after Python initialization and before Python finalization, "
  183|      0|            "but the GIL is released (the current Python thread state is NULL)");
  184|       |#else
  185|       |        _Py_FatalErrorFunc(func,
  186|       |            "the function must be called with an active thread state, "
  187|       |            "after Python initialization and before Python finalization, "
  188|       |            "but it was called without an active thread state. "
  189|       |            "Are you trying to call the C API inside of a Py_BEGIN_ALLOW_THREADS block?");
  190|       |#endif
  191|      0|    }
  192|  35.4k|}
frame.c:_PyThreadState_GET:
  117|  3.46k|{
  118|  3.46k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  3.46k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  3.46k|}
frame.c:_PyInterpreterState_GET:
  207|     28|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|     28|#if !defined(Py_BUILD_CORE_MODULE)
  213|     28|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|     28|}
gc.c:_PyInterpreterState_GET:
  207|  15.7k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  15.7k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  15.7k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  15.7k|}
gc.c:_PyThreadState_GET:
  117|  30.9k|{
  118|  30.9k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  30.9k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  30.9k|}
ceval_gil.c:_PyThreadState_GET:
  117|    654|{
  118|    654|#if !defined(Py_BUILD_CORE_MODULE)
  119|    654|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    654|}
ceval_gil.c:_Py_EnsureFuncTstateNotNULL:
  177|  1.31k|{
  178|  1.31k|    if (tstate == NULL) {
  ------------------
  |  Branch (178:9): [True: 0, False: 1.31k]
  ------------------
  179|      0|#ifndef Py_GIL_DISABLED
  180|      0|        _Py_FatalErrorFunc(func,
  181|      0|            "the function must be called with the GIL held, "
  182|      0|            "after Python initialization and before Python finalization, "
  183|      0|            "but the GIL is released (the current Python thread state is NULL)");
  184|       |#else
  185|       |        _Py_FatalErrorFunc(func,
  186|       |            "the function must be called with an active thread state, "
  187|       |            "after Python initialization and before Python finalization, "
  188|       |            "but it was called without an active thread state. "
  189|       |            "Are you trying to call the C API inside of a Py_BEGIN_ALLOW_THREADS block?");
  190|       |#endif
  191|      0|    }
  192|  1.31k|}
import.c:_PyThreadState_GET:
  117|    248|{
  118|    248|#if !defined(Py_BUILD_CORE_MODULE)
  119|    248|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    248|}
import.c:_PyInterpreterState_GET:
  207|    562|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    562|#if !defined(Py_BUILD_CORE_MODULE)
  213|    562|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    562|}
import.c:_Py_IsMainInterpreter:
   61|     28|{
   62|     28|    return (interp == _PyInterpreterState_Main());
   63|     28|}
marshal.c:_PyInterpreterState_GET:
  207|  7.58k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  7.58k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  7.58k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  7.58k|}
pylifecycle.c:_Py_IsMainInterpreter:
   61|      8|{
   62|      8|    return (interp == _PyInterpreterState_Main());
   63|      8|}
pystate.c:_Py_EnsureFuncTstateNotNULL:
  177|  2.42k|{
  178|  2.42k|    if (tstate == NULL) {
  ------------------
  |  Branch (178:9): [True: 0, False: 2.42k]
  ------------------
  179|      0|#ifndef Py_GIL_DISABLED
  180|      0|        _Py_FatalErrorFunc(func,
  181|      0|            "the function must be called with the GIL held, "
  182|      0|            "after Python initialization and before Python finalization, "
  183|      0|            "but the GIL is released (the current Python thread state is NULL)");
  184|       |#else
  185|       |        _Py_FatalErrorFunc(func,
  186|       |            "the function must be called with an active thread state, "
  187|       |            "after Python initialization and before Python finalization, "
  188|       |            "but it was called without an active thread state. "
  189|       |            "Are you trying to call the C API inside of a Py_BEGIN_ALLOW_THREADS block?");
  190|       |#endif
  191|      0|    }
  192|  2.42k|}
pystate.c:_Py_IsMainInterpreter:
   61|      4|{
   62|      4|    return (interp == _PyInterpreterState_Main());
   63|      4|}
specialize.c:_PyThreadState_GET:
  117|  1.48k|{
  118|  1.48k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  1.48k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  1.48k|}
specialize.c:_PyInterpreterState_GET:
  207|    808|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    808|#if !defined(Py_BUILD_CORE_MODULE)
  213|    808|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    808|}
sysmodule.c:_PyThreadState_GET:
  117|    238|{
  118|    238|#if !defined(Py_BUILD_CORE_MODULE)
  119|    238|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    238|}
sysmodule.c:_PyInterpreterState_GET:
  207|     18|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|     18|#if !defined(Py_BUILD_CORE_MODULE)
  213|     18|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|     18|}
sysmodule.c:_Py_EnsureFuncTstateNotNULL:
  177|     48|{
  178|     48|    if (tstate == NULL) {
  ------------------
  |  Branch (178:9): [True: 0, False: 48]
  ------------------
  179|      0|#ifndef Py_GIL_DISABLED
  180|      0|        _Py_FatalErrorFunc(func,
  181|      0|            "the function must be called with the GIL held, "
  182|      0|            "after Python initialization and before Python finalization, "
  183|      0|            "but the GIL is released (the current Python thread state is NULL)");
  184|       |#else
  185|       |        _Py_FatalErrorFunc(func,
  186|       |            "the function must be called with an active thread state, "
  187|       |            "after Python initialization and before Python finalization, "
  188|       |            "but it was called without an active thread state. "
  189|       |            "Are you trying to call the C API inside of a Py_BEGIN_ALLOW_THREADS block?");
  190|       |#endif
  191|      0|    }
  192|     48|}
thread.c:_PyInterpreterState_GET:
  207|      2|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|      2|#if !defined(Py_BUILD_CORE_MODULE)
  213|      2|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|      2|}
dtoa.c:_PyInterpreterState_GET:
  207|  41.5k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  41.5k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  41.5k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  41.5k|}
signalmodule.c:_Py_IsMainInterpreter:
   61|  1.99k|{
   62|  1.99k|    return (interp == _PyInterpreterState_Main());
   63|  1.99k|}
signalmodule.c:_PyThreadState_GET:
  117|  1.99k|{
  118|  1.99k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  1.99k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  1.99k|}
signalmodule.c:_Py_ThreadCanHandleSignals:
   84|  1.99k|{
   85|  1.99k|    return (_Py_IsMainThread() && _Py_IsMainInterpreter(interp));
  ------------------
  |  Branch (85:13): [True: 1.99k, False: 0]
  |  Branch (85:35): [True: 1.99k, False: 0]
  ------------------
   86|  1.99k|}
textio.c:_PyInterpreterState_GET:
  207|      6|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|      6|#if !defined(Py_BUILD_CORE_MODULE)
  213|      6|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|      6|}
getpath.c:_PyThreadState_GET:
  117|      2|{
  118|      2|#if !defined(Py_BUILD_CORE_MODULE)
  119|      2|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|      2|}
abstract.c:_PyThreadState_GET:
  117|    536|{
  118|    536|#if !defined(Py_BUILD_CORE_MODULE)
  119|    536|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    536|}
abstract.c:_Py_get_machine_stack_pointer:
  318|     68|_Py_get_machine_stack_pointer(void) {
  319|     68|#if _Py__has_builtin(__builtin_frame_address) || defined(__GNUC__)
  320|     68|    return (uintptr_t)__builtin_frame_address(0);
  321|       |#elif defined(_MSC_VER)
  322|       |    return (uintptr_t)_AddressOfReturnAddress();
  323|       |#else
  324|       |    char here;
  325|       |    /* Avoid compiler warning about returning stack address */
  326|       |    return return_pointer_as_int(&here);
  327|       |#endif
  328|     68|}
bytearrayobject.c:_PyInterpreterState_GET:
  207|      4|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|      4|#if !defined(Py_BUILD_CORE_MODULE)
  213|      4|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|      4|}
cellobject.c:_PyInterpreterState_GET:
  207|    376|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    376|#if !defined(Py_BUILD_CORE_MODULE)
  213|    376|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    376|}
classobject.c:_PyInterpreterState_GET:
  207|  1.56k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  1.56k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  1.56k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  1.56k|}
classobject.c:_PyThreadState_GET:
  117|    138|{
  118|    138|#if !defined(Py_BUILD_CORE_MODULE)
  119|    138|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    138|}
codeobject.c:_PyInterpreterState_GET:
  207|  8.33k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  8.33k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  8.33k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  8.33k|}
descrobject.c:_PyInterpreterState_GET:
  207|    506|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    506|#if !defined(Py_BUILD_CORE_MODULE)
  213|    506|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    506|}
descrobject.c:_PyThreadState_GET:
  117|    610|{
  118|    610|#if !defined(Py_BUILD_CORE_MODULE)
  119|    610|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|    610|}
descrobject.c:_Py_get_machine_stack_pointer:
  318|    610|_Py_get_machine_stack_pointer(void) {
  319|    610|#if _Py__has_builtin(__builtin_frame_address) || defined(__GNUC__)
  320|    610|    return (uintptr_t)__builtin_frame_address(0);
  321|       |#elif defined(_MSC_VER)
  322|       |    return (uintptr_t)_AddressOfReturnAddress();
  323|       |#else
  324|       |    char here;
  325|       |    /* Avoid compiler warning about returning stack address */
  326|       |    return return_pointer_as_int(&here);
  327|       |#endif
  328|    610|}
enumobject.c:_PyThreadState_GET:
  117|      6|{
  118|      6|#if !defined(Py_BUILD_CORE_MODULE)
  119|      6|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|      6|}
genobject.c:_PyInterpreterState_GET:
  207|    168|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|    168|#if !defined(Py_BUILD_CORE_MODULE)
  213|    168|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|    168|}
genobject.c:_PyThreadState_GET:
  117|     72|{
  118|     72|#if !defined(Py_BUILD_CORE_MODULE)
  119|     72|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|     72|}
frameobject.c:_PyInterpreterState_GET:
  207|     28|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|     28|#if !defined(Py_BUILD_CORE_MODULE)
  213|     28|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|     28|}
lazyimportobject.c:_PyInterpreterState_GET:
  207|      8|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|      8|#if !defined(Py_BUILD_CORE_MODULE)
  213|      8|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|      8|}
methodobject.c:_PyInterpreterState_GET:
  207|  4.03k|static inline PyInterpreterState* _PyInterpreterState_GET(void) {
  208|       |#ifdef Py_DEBUG
  209|       |    PyThreadState *tstate = _PyThreadState_GET();
  210|       |    _Py_EnsureTstateNotNULL(tstate);
  211|       |#endif
  212|  4.03k|#if !defined(Py_BUILD_CORE_MODULE)
  213|  4.03k|    return _Py_tss_interp;
  214|       |#else
  215|       |    return _PyThreadState_GET()->interp;
  216|       |#endif
  217|  4.03k|}
methodobject.c:_PyThreadState_GET:
  117|  1.71k|{
  118|  1.71k|#if !defined(Py_BUILD_CORE_MODULE)
  119|  1.71k|    return _Py_tss_tstate;
  120|       |#else
  121|       |    return _PyThreadState_GetCurrent();
  122|       |#endif
  123|  1.71k|}
methodobject.c:_Py_get_machine_stack_pointer:
  318|  1.62k|_Py_get_machine_stack_pointer(void) {
  319|  1.62k|#if _Py__has_builtin(__builtin_frame_address) || defined(__GNUC__)
  320|  1.62k|    return (uintptr_t)__builtin_frame_address(0);
  321|       |#elif defined(_MSC_VER)
  322|       |    return (uintptr_t)_AddressOfReturnAddress();
  323|       |#else
  324|       |    char here;
  325|       |    /* Avoid compiler warning about returning stack address */
  326|       |    return return_pointer_as_int(&here);
  327|       |#endif
  328|  1.62k|}
crossinterp.c:_Py_IsMainInterpreter:
   61|      2|{
   62|      2|    return (interp == _PyInterpreterState_Main());
   63|      2|}

pylifecycle.c:_PyRuntimeState_GetCoreInitialized:
   63|      4|_PyRuntimeState_GetCoreInitialized(_PyRuntimeState *runtime) {
   64|      4|    return _Py_atomic_load_int(&runtime->core_initialized);
   65|      4|}
pylifecycle.c:_PyRuntimeState_GetInitialized:
   73|  2.24k|_PyRuntimeState_GetInitialized(_PyRuntimeState *runtime) {
   74|  2.24k|    return _Py_atomic_load_int(&runtime->initialized);
   75|  2.24k|}
pylifecycle.c:_PyRuntimeState_SetFinalizing:
   46|      2|_PyRuntimeState_SetFinalizing(_PyRuntimeState *runtime, PyThreadState *tstate) {
   47|      2|    _Py_atomic_store_ptr_relaxed(&runtime->_finalizing, tstate);
   48|      2|    if (tstate == NULL) {
  ------------------
  |  Branch (48:9): [True: 2, False: 0]
  ------------------
   49|      2|        _Py_atomic_store_ulong_relaxed(&runtime->_finalizing_id, 0);
  ------------------
  |  |  619|      2|    _Py_atomic_store_uint64_relaxed((uint64_t *)p, v)
  ------------------
   50|      2|    }
   51|      0|    else {
   52|       |        // XXX Re-enable this assert once gh-109860 is fixed.
   53|       |        //assert(tstate->thread_id == PyThread_get_thread_ident());
   54|      0|        _Py_atomic_store_ulong_relaxed(&runtime->_finalizing_id,
  ------------------
  |  |  619|      0|    _Py_atomic_store_uint64_relaxed((uint64_t *)p, v)
  ------------------
   55|      0|                                       tstate->thread_id);
   56|      0|    }
   57|      2|}
pylifecycle.c:_PyRuntimeState_SetCoreInitialized:
   68|      2|_PyRuntimeState_SetCoreInitialized(_PyRuntimeState *runtime, int initialized) {
   69|      2|    _Py_atomic_store_int(&runtime->core_initialized, initialized);
   70|      2|}
pylifecycle.c:_PyRuntimeState_SetInitialized:
   78|      2|_PyRuntimeState_SetInitialized(_PyRuntimeState *runtime, int initialized) {
   79|      2|    _Py_atomic_store_int(&runtime->initialized, initialized);
   80|      2|}
pystate.c:_PyRuntimeState_GetCoreInitialized:
   63|      2|_PyRuntimeState_GetCoreInitialized(_PyRuntimeState *runtime) {
   64|      2|    return _Py_atomic_load_int(&runtime->core_initialized);
   65|      2|}
pystate.c:_PyRuntimeState_GetInitialized:
   73|      2|_PyRuntimeState_GetInitialized(_PyRuntimeState *runtime) {
   74|      2|    return _Py_atomic_load_int(&runtime->initialized);
   75|      2|}

typeobject.c:_PySlot_heaptype_apply_field_slot:
  381|    458|{
  382|    458|    switch (slot.sl_id) {
  ------------------
  |  Branch (382:13): [True: 458, False: 0]
  ------------------
  383|      0|        case Py_mp_subscript:
  ------------------
  |  |   13|      0|#define Py_mp_subscript 5
  ------------------
  |  Branch (383:9): [True: 0, False: 458]
  ------------------
  384|      0|            ht->as_mapping.mp_subscript = (binaryfunc)slot.sl_func;
  385|      0|            break;
  386|      0|        case Py_nb_absolute:
  ------------------
  |  |   14|      0|#define Py_nb_absolute 6
  ------------------
  |  Branch (386:9): [True: 0, False: 458]
  ------------------
  387|      0|            ht->as_number.nb_absolute = (unaryfunc)slot.sl_func;
  388|      0|            break;
  389|      0|        case Py_nb_add:
  ------------------
  |  |   15|      0|#define Py_nb_add 7
  ------------------
  |  Branch (389:9): [True: 0, False: 458]
  ------------------
  390|      0|            ht->as_number.nb_add = (binaryfunc)slot.sl_func;
  391|      0|            break;
  392|      0|        case Py_nb_and:
  ------------------
  |  |   16|      0|#define Py_nb_and 8
  ------------------
  |  Branch (392:9): [True: 0, False: 458]
  ------------------
  393|      0|            ht->as_number.nb_and = (binaryfunc)slot.sl_func;
  394|      0|            break;
  395|      0|        case Py_nb_bool:
  ------------------
  |  |   17|      0|#define Py_nb_bool 9
  ------------------
  |  Branch (395:9): [True: 0, False: 458]
  ------------------
  396|      0|            ht->as_number.nb_bool = (inquiry)slot.sl_func;
  397|      0|            break;
  398|      0|        case Py_nb_divmod:
  ------------------
  |  |   18|      0|#define Py_nb_divmod 10
  ------------------
  |  Branch (398:9): [True: 0, False: 458]
  ------------------
  399|      0|            ht->as_number.nb_divmod = (binaryfunc)slot.sl_func;
  400|      0|            break;
  401|      0|        case Py_nb_float:
  ------------------
  |  |   19|      0|#define Py_nb_float 11
  ------------------
  |  Branch (401:9): [True: 0, False: 458]
  ------------------
  402|      0|            ht->as_number.nb_float = (unaryfunc)slot.sl_func;
  403|      0|            break;
  404|      0|        case Py_nb_floor_divide:
  ------------------
  |  |   20|      0|#define Py_nb_floor_divide 12
  ------------------
  |  Branch (404:9): [True: 0, False: 458]
  ------------------
  405|      0|            ht->as_number.nb_floor_divide = (binaryfunc)slot.sl_func;
  406|      0|            break;
  407|      0|        case Py_nb_index:
  ------------------
  |  |   21|      0|#define Py_nb_index 13
  ------------------
  |  Branch (407:9): [True: 0, False: 458]
  ------------------
  408|      0|            ht->as_number.nb_index = (unaryfunc)slot.sl_func;
  409|      0|            break;
  410|      0|        case Py_nb_inplace_add:
  ------------------
  |  |   22|      0|#define Py_nb_inplace_add 14
  ------------------
  |  Branch (410:9): [True: 0, False: 458]
  ------------------
  411|      0|            ht->as_number.nb_inplace_add = (binaryfunc)slot.sl_func;
  412|      0|            break;
  413|      0|        case Py_nb_inplace_and:
  ------------------
  |  |   23|      0|#define Py_nb_inplace_and 15
  ------------------
  |  Branch (413:9): [True: 0, False: 458]
  ------------------
  414|      0|            ht->as_number.nb_inplace_and = (binaryfunc)slot.sl_func;
  415|      0|            break;
  416|      0|        case Py_nb_inplace_floor_divide:
  ------------------
  |  |   24|      0|#define Py_nb_inplace_floor_divide 16
  ------------------
  |  Branch (416:9): [True: 0, False: 458]
  ------------------
  417|      0|            ht->as_number.nb_inplace_floor_divide = (binaryfunc)slot.sl_func;
  418|      0|            break;
  419|      0|        case Py_nb_inplace_lshift:
  ------------------
  |  |   25|      0|#define Py_nb_inplace_lshift 17
  ------------------
  |  Branch (419:9): [True: 0, False: 458]
  ------------------
  420|      0|            ht->as_number.nb_inplace_lshift = (binaryfunc)slot.sl_func;
  421|      0|            break;
  422|      0|        case Py_nb_inplace_multiply:
  ------------------
  |  |   26|      0|#define Py_nb_inplace_multiply 18
  ------------------
  |  Branch (422:9): [True: 0, False: 458]
  ------------------
  423|      0|            ht->as_number.nb_inplace_multiply = (binaryfunc)slot.sl_func;
  424|      0|            break;
  425|      0|        case Py_nb_inplace_or:
  ------------------
  |  |   27|      0|#define Py_nb_inplace_or 19
  ------------------
  |  Branch (425:9): [True: 0, False: 458]
  ------------------
  426|      0|            ht->as_number.nb_inplace_or = (binaryfunc)slot.sl_func;
  427|      0|            break;
  428|      0|        case Py_nb_inplace_power:
  ------------------
  |  |   28|      0|#define Py_nb_inplace_power 20
  ------------------
  |  Branch (428:9): [True: 0, False: 458]
  ------------------
  429|      0|            ht->as_number.nb_inplace_power = (ternaryfunc)slot.sl_func;
  430|      0|            break;
  431|      0|        case Py_nb_inplace_remainder:
  ------------------
  |  |   29|      0|#define Py_nb_inplace_remainder 21
  ------------------
  |  Branch (431:9): [True: 0, False: 458]
  ------------------
  432|      0|            ht->as_number.nb_inplace_remainder = (binaryfunc)slot.sl_func;
  433|      0|            break;
  434|      0|        case Py_nb_inplace_rshift:
  ------------------
  |  |   30|      0|#define Py_nb_inplace_rshift 22
  ------------------
  |  Branch (434:9): [True: 0, False: 458]
  ------------------
  435|      0|            ht->as_number.nb_inplace_rshift = (binaryfunc)slot.sl_func;
  436|      0|            break;
  437|      0|        case Py_nb_inplace_subtract:
  ------------------
  |  |   31|      0|#define Py_nb_inplace_subtract 23
  ------------------
  |  Branch (437:9): [True: 0, False: 458]
  ------------------
  438|      0|            ht->as_number.nb_inplace_subtract = (binaryfunc)slot.sl_func;
  439|      0|            break;
  440|      0|        case Py_nb_inplace_true_divide:
  ------------------
  |  |   32|      0|#define Py_nb_inplace_true_divide 24
  ------------------
  |  Branch (440:9): [True: 0, False: 458]
  ------------------
  441|      0|            ht->as_number.nb_inplace_true_divide = (binaryfunc)slot.sl_func;
  442|      0|            break;
  443|      0|        case Py_nb_inplace_xor:
  ------------------
  |  |   33|      0|#define Py_nb_inplace_xor 25
  ------------------
  |  Branch (443:9): [True: 0, False: 458]
  ------------------
  444|      0|            ht->as_number.nb_inplace_xor = (binaryfunc)slot.sl_func;
  445|      0|            break;
  446|      0|        case Py_nb_int:
  ------------------
  |  |   34|      0|#define Py_nb_int 26
  ------------------
  |  Branch (446:9): [True: 0, False: 458]
  ------------------
  447|      0|            ht->as_number.nb_int = (unaryfunc)slot.sl_func;
  448|      0|            break;
  449|      0|        case Py_nb_invert:
  ------------------
  |  |   35|      0|#define Py_nb_invert 27
  ------------------
  |  Branch (449:9): [True: 0, False: 458]
  ------------------
  450|      0|            ht->as_number.nb_invert = (unaryfunc)slot.sl_func;
  451|      0|            break;
  452|      0|        case Py_nb_lshift:
  ------------------
  |  |   36|      0|#define Py_nb_lshift 28
  ------------------
  |  Branch (452:9): [True: 0, False: 458]
  ------------------
  453|      0|            ht->as_number.nb_lshift = (binaryfunc)slot.sl_func;
  454|      0|            break;
  455|      0|        case Py_nb_multiply:
  ------------------
  |  |   37|      0|#define Py_nb_multiply 29
  ------------------
  |  Branch (455:9): [True: 0, False: 458]
  ------------------
  456|      0|            ht->as_number.nb_multiply = (binaryfunc)slot.sl_func;
  457|      0|            break;
  458|      0|        case Py_nb_negative:
  ------------------
  |  |   38|      0|#define Py_nb_negative 30
  ------------------
  |  Branch (458:9): [True: 0, False: 458]
  ------------------
  459|      0|            ht->as_number.nb_negative = (unaryfunc)slot.sl_func;
  460|      0|            break;
  461|      4|        case Py_nb_or:
  ------------------
  |  |   39|      4|#define Py_nb_or 31
  ------------------
  |  Branch (461:9): [True: 4, False: 454]
  ------------------
  462|      4|            ht->as_number.nb_or = (binaryfunc)slot.sl_func;
  463|      4|            break;
  464|      0|        case Py_nb_positive:
  ------------------
  |  |   40|      0|#define Py_nb_positive 32
  ------------------
  |  Branch (464:9): [True: 0, False: 458]
  ------------------
  465|      0|            ht->as_number.nb_positive = (unaryfunc)slot.sl_func;
  466|      0|            break;
  467|      0|        case Py_nb_power:
  ------------------
  |  |   41|      0|#define Py_nb_power 33
  ------------------
  |  Branch (467:9): [True: 0, False: 458]
  ------------------
  468|      0|            ht->as_number.nb_power = (ternaryfunc)slot.sl_func;
  469|      0|            break;
  470|      0|        case Py_nb_remainder:
  ------------------
  |  |   42|      0|#define Py_nb_remainder 34
  ------------------
  |  Branch (470:9): [True: 0, False: 458]
  ------------------
  471|      0|            ht->as_number.nb_remainder = (binaryfunc)slot.sl_func;
  472|      0|            break;
  473|      0|        case Py_nb_rshift:
  ------------------
  |  |   43|      0|#define Py_nb_rshift 35
  ------------------
  |  Branch (473:9): [True: 0, False: 458]
  ------------------
  474|      0|            ht->as_number.nb_rshift = (binaryfunc)slot.sl_func;
  475|      0|            break;
  476|      0|        case Py_nb_subtract:
  ------------------
  |  |   44|      0|#define Py_nb_subtract 36
  ------------------
  |  Branch (476:9): [True: 0, False: 458]
  ------------------
  477|      0|            ht->as_number.nb_subtract = (binaryfunc)slot.sl_func;
  478|      0|            break;
  479|      0|        case Py_nb_true_divide:
  ------------------
  |  |   45|      0|#define Py_nb_true_divide 37
  ------------------
  |  Branch (479:9): [True: 0, False: 458]
  ------------------
  480|      0|            ht->as_number.nb_true_divide = (binaryfunc)slot.sl_func;
  481|      0|            break;
  482|      0|        case Py_nb_xor:
  ------------------
  |  |   46|      0|#define Py_nb_xor 38
  ------------------
  |  Branch (482:9): [True: 0, False: 458]
  ------------------
  483|      0|            ht->as_number.nb_xor = (binaryfunc)slot.sl_func;
  484|      0|            break;
  485|      0|        case Py_sq_ass_item:
  ------------------
  |  |   47|      0|#define Py_sq_ass_item 39
  ------------------
  |  Branch (485:9): [True: 0, False: 458]
  ------------------
  486|      0|            ht->as_sequence.sq_ass_item = (ssizeobjargproc)slot.sl_func;
  487|      0|            break;
  488|      0|        case Py_sq_concat:
  ------------------
  |  |   48|      0|#define Py_sq_concat 40
  ------------------
  |  Branch (488:9): [True: 0, False: 458]
  ------------------
  489|      0|            ht->as_sequence.sq_concat = (binaryfunc)slot.sl_func;
  490|      0|            break;
  491|      0|        case Py_sq_contains:
  ------------------
  |  |   49|      0|#define Py_sq_contains 41
  ------------------
  |  Branch (491:9): [True: 0, False: 458]
  ------------------
  492|      0|            ht->as_sequence.sq_contains = (objobjproc)slot.sl_func;
  493|      0|            break;
  494|      0|        case Py_sq_inplace_concat:
  ------------------
  |  |   50|      0|#define Py_sq_inplace_concat 42
  ------------------
  |  Branch (494:9): [True: 0, False: 458]
  ------------------
  495|      0|            ht->as_sequence.sq_inplace_concat = (binaryfunc)slot.sl_func;
  496|      0|            break;
  497|      0|        case Py_sq_inplace_repeat:
  ------------------
  |  |   51|      0|#define Py_sq_inplace_repeat 43
  ------------------
  |  Branch (497:9): [True: 0, False: 458]
  ------------------
  498|      0|            ht->as_sequence.sq_inplace_repeat = (ssizeargfunc)slot.sl_func;
  499|      0|            break;
  500|      0|        case Py_sq_item:
  ------------------
  |  |   52|      0|#define Py_sq_item 44
  ------------------
  |  Branch (500:9): [True: 0, False: 458]
  ------------------
  501|      0|            ht->as_sequence.sq_item = (ssizeargfunc)slot.sl_func;
  502|      0|            break;
  503|      0|        case Py_sq_length:
  ------------------
  |  |   53|      0|#define Py_sq_length 45
  ------------------
  |  Branch (503:9): [True: 0, False: 458]
  ------------------
  504|      0|            ht->as_sequence.sq_length = (lenfunc)slot.sl_func;
  505|      0|            break;
  506|      0|        case Py_sq_repeat:
  ------------------
  |  |   54|      0|#define Py_sq_repeat 46
  ------------------
  |  Branch (506:9): [True: 0, False: 458]
  ------------------
  507|      0|            ht->as_sequence.sq_repeat = (ssizeargfunc)slot.sl_func;
  508|      0|            break;
  509|     16|        case Py_tp_alloc:
  ------------------
  |  |   55|     16|#define Py_tp_alloc 47
  ------------------
  |  Branch (509:9): [True: 16, False: 442]
  ------------------
  510|     16|            ht->ht_type.tp_alloc = (allocfunc)slot.sl_func;
  511|     16|            break;
  512|      0|        case Py_tp_base:
  ------------------
  |  |   56|      0|#define Py_tp_base 48
  ------------------
  |  Branch (512:9): [True: 0, False: 458]
  ------------------
  513|      0|            ht->ht_type.tp_base = slot.sl_ptr;
  514|      0|            break;
  515|      0|        case Py_tp_bases:
  ------------------
  |  |   57|      0|#define Py_tp_bases 49
  ------------------
  |  Branch (515:9): [True: 0, False: 458]
  ------------------
  516|      0|            ht->ht_type.tp_bases = slot.sl_ptr;
  517|      0|            break;
  518|      2|        case Py_tp_call:
  ------------------
  |  |   58|      2|#define Py_tp_call 50
  ------------------
  |  Branch (518:9): [True: 2, False: 456]
  ------------------
  519|      2|            ht->ht_type.tp_call = (ternaryfunc)slot.sl_func;
  520|      2|            break;
  521|     36|        case Py_tp_clear:
  ------------------
  |  |   59|     36|#define Py_tp_clear 51
  ------------------
  |  Branch (521:9): [True: 36, False: 422]
  ------------------
  522|     36|            ht->ht_type.tp_clear = (inquiry)slot.sl_func;
  523|     36|            break;
  524|     72|        case Py_tp_dealloc:
  ------------------
  |  |   60|     72|#define Py_tp_dealloc 52
  ------------------
  |  Branch (524:9): [True: 72, False: 386]
  ------------------
  525|     72|            ht->ht_type.tp_dealloc = (destructor)slot.sl_func;
  526|     72|            break;
  527|      0|        case Py_tp_del:
  ------------------
  |  |   61|      0|#define Py_tp_del 53
  ------------------
  |  Branch (527:9): [True: 0, False: 458]
  ------------------
  528|      0|            ht->ht_type.tp_del = (destructor)slot.sl_func;
  529|      0|            break;
  530|      0|        case Py_tp_descr_get:
  ------------------
  |  |   62|      0|#define Py_tp_descr_get 54
  ------------------
  |  Branch (530:9): [True: 0, False: 458]
  ------------------
  531|      0|            ht->ht_type.tp_descr_get = (descrgetfunc)slot.sl_func;
  532|      0|            break;
  533|      0|        case Py_tp_descr_set:
  ------------------
  |  |   63|      0|#define Py_tp_descr_set 55
  ------------------
  |  Branch (533:9): [True: 0, False: 458]
  ------------------
  534|      0|            ht->ht_type.tp_descr_set = (descrsetfunc)slot.sl_func;
  535|      0|            break;
  536|      0|        case Py_tp_doc:
  ------------------
  |  |   64|      0|#define Py_tp_doc 56
  ------------------
  |  Branch (536:9): [True: 0, False: 458]
  ------------------
  537|      0|            ht->ht_type.tp_doc = slot.sl_ptr;
  538|      0|            break;
  539|      0|        case Py_tp_getattr:
  ------------------
  |  |   65|      0|#define Py_tp_getattr 57
  ------------------
  |  Branch (539:9): [True: 0, False: 458]
  ------------------
  540|      0|            ht->ht_type.tp_getattr = (getattrfunc)slot.sl_func;
  541|      0|            break;
  542|      2|        case Py_tp_getattro:
  ------------------
  |  |   66|      2|#define Py_tp_getattro 58
  ------------------
  |  Branch (542:9): [True: 2, False: 456]
  ------------------
  543|      2|            ht->ht_type.tp_getattro = (getattrofunc)slot.sl_func;
  544|      2|            break;
  545|      0|        case Py_tp_hash:
  ------------------
  |  |   67|      0|#define Py_tp_hash 59
  ------------------
  |  Branch (545:9): [True: 0, False: 458]
  ------------------
  546|      0|            ht->ht_type.tp_hash = (hashfunc)slot.sl_func;
  547|      0|            break;
  548|     18|        case Py_tp_init:
  ------------------
  |  |   68|     18|#define Py_tp_init 60
  ------------------
  |  Branch (548:9): [True: 18, False: 440]
  ------------------
  549|     18|            ht->ht_type.tp_init = (initproc)slot.sl_func;
  550|     18|            break;
  551|      0|        case Py_tp_is_gc:
  ------------------
  |  |   69|      0|#define Py_tp_is_gc 61
  ------------------
  |  Branch (551:9): [True: 0, False: 458]
  ------------------
  552|      0|            ht->ht_type.tp_is_gc = (inquiry)slot.sl_func;
  553|      0|            break;
  554|      8|        case Py_tp_iter:
  ------------------
  |  |   70|      8|#define Py_tp_iter 62
  ------------------
  |  Branch (554:9): [True: 8, False: 450]
  ------------------
  555|      8|            ht->ht_type.tp_iter = (getiterfunc)slot.sl_func;
  556|      8|            break;
  557|     14|        case Py_tp_iternext:
  ------------------
  |  |   71|     14|#define Py_tp_iternext 63
  ------------------
  |  Branch (557:9): [True: 14, False: 444]
  ------------------
  558|     14|            ht->ht_type.tp_iternext = (iternextfunc)slot.sl_func;
  559|     14|            break;
  560|     66|        case Py_tp_methods:
  ------------------
  |  |   72|     66|#define Py_tp_methods 64
  ------------------
  |  Branch (560:9): [True: 66, False: 392]
  ------------------
  561|     66|            ht->ht_type.tp_methods = slot.sl_ptr;
  562|     66|            break;
  563|     44|        case Py_tp_new:
  ------------------
  |  |   73|     44|#define Py_tp_new 65
  ------------------
  |  Branch (563:9): [True: 44, False: 414]
  ------------------
  564|     44|            ht->ht_type.tp_new = (newfunc)slot.sl_func;
  565|     44|            break;
  566|     50|        case Py_tp_repr:
  ------------------
  |  |   74|     50|#define Py_tp_repr 66
  ------------------
  |  Branch (566:9): [True: 50, False: 408]
  ------------------
  567|     50|            ht->ht_type.tp_repr = (reprfunc)slot.sl_func;
  568|     50|            break;
  569|      4|        case Py_tp_richcompare:
  ------------------
  |  |   75|      4|#define Py_tp_richcompare 67
  ------------------
  |  Branch (569:9): [True: 4, False: 454]
  ------------------
  570|      4|            ht->ht_type.tp_richcompare = (richcmpfunc)slot.sl_func;
  571|      4|            break;
  572|      0|        case Py_tp_setattr:
  ------------------
  |  |   76|      0|#define Py_tp_setattr 68
  ------------------
  |  Branch (572:9): [True: 0, False: 458]
  ------------------
  573|      0|            ht->ht_type.tp_setattr = (setattrfunc)slot.sl_func;
  574|      0|            break;
  575|      2|        case Py_tp_setattro:
  ------------------
  |  |   77|      2|#define Py_tp_setattro 69
  ------------------
  |  Branch (575:9): [True: 2, False: 456]
  ------------------
  576|      2|            ht->ht_type.tp_setattro = (setattrofunc)slot.sl_func;
  577|      2|            break;
  578|      0|        case Py_tp_str:
  ------------------
  |  |   78|      0|#define Py_tp_str 70
  ------------------
  |  Branch (578:9): [True: 0, False: 458]
  ------------------
  579|      0|            ht->ht_type.tp_str = (reprfunc)slot.sl_func;
  580|      0|            break;
  581|     66|        case Py_tp_traverse:
  ------------------
  |  |   79|     66|#define Py_tp_traverse 71
  ------------------
  |  Branch (581:9): [True: 66, False: 392]
  ------------------
  582|     66|            ht->ht_type.tp_traverse = (traverseproc)slot.sl_func;
  583|     66|            break;
  584|      0|        case Py_tp_members:
  ------------------
  |  |   80|      0|#define Py_tp_members 72
  ------------------
  |  Branch (584:9): [True: 0, False: 458]
  ------------------
  585|      0|            ht->ht_type.tp_members = slot.sl_ptr;
  586|      0|            break;
  587|     32|        case Py_tp_getset:
  ------------------
  |  |   81|     32|#define Py_tp_getset 73
  ------------------
  |  Branch (587:9): [True: 32, False: 426]
  ------------------
  588|     32|            ht->ht_type.tp_getset = slot.sl_ptr;
  589|     32|            break;
  590|     14|        case Py_tp_free:
  ------------------
  |  |   82|     14|#define Py_tp_free 74
  ------------------
  |  Branch (590:9): [True: 14, False: 444]
  ------------------
  591|     14|            ht->ht_type.tp_free = (freefunc)slot.sl_func;
  592|     14|            break;
  593|      0|        case Py_nb_matrix_multiply:
  ------------------
  |  |   83|      0|#define Py_nb_matrix_multiply 75
  ------------------
  |  Branch (593:9): [True: 0, False: 458]
  ------------------
  594|      0|            ht->as_number.nb_matrix_multiply = (binaryfunc)slot.sl_func;
  595|      0|            break;
  596|      0|        case Py_nb_inplace_matrix_multiply:
  ------------------
  |  |   84|      0|#define Py_nb_inplace_matrix_multiply 76
  ------------------
  |  Branch (596:9): [True: 0, False: 458]
  ------------------
  597|      0|            ht->as_number.nb_inplace_matrix_multiply = (binaryfunc)slot.sl_func;
  598|      0|            break;
  599|      0|        case Py_am_await:
  ------------------
  |  |   85|      0|#define Py_am_await 77
  ------------------
  |  Branch (599:9): [True: 0, False: 458]
  ------------------
  600|      0|            ht->as_async.am_await = (unaryfunc)slot.sl_func;
  601|      0|            break;
  602|      0|        case Py_am_aiter:
  ------------------
  |  |   86|      0|#define Py_am_aiter 78
  ------------------
  |  Branch (602:9): [True: 0, False: 458]
  ------------------
  603|      0|            ht->as_async.am_aiter = (unaryfunc)slot.sl_func;
  604|      0|            break;
  605|      0|        case Py_am_anext:
  ------------------
  |  |   87|      0|#define Py_am_anext 79
  ------------------
  |  Branch (605:9): [True: 0, False: 458]
  ------------------
  606|      0|            ht->as_async.am_anext = (unaryfunc)slot.sl_func;
  607|      0|            break;
  608|      4|        case Py_tp_finalize:
  ------------------
  |  |   88|      4|#define Py_tp_finalize 80
  ------------------
  |  Branch (608:9): [True: 4, False: 454]
  ------------------
  609|      4|            ht->ht_type.tp_finalize = (destructor)slot.sl_func;
  610|      4|            break;
  611|      0|        case Py_am_send:
  ------------------
  |  |   89|      0|#define Py_am_send 81
  ------------------
  |  Branch (611:9): [True: 0, False: 458]
  ------------------
  612|      0|            ht->as_async.am_send = (sendfunc)slot.sl_func;
  613|      0|            break;
  614|      0|        case Py_tp_vectorcall:
  ------------------
  |  |   90|      0|#define Py_tp_vectorcall 82
  ------------------
  |  Branch (614:9): [True: 0, False: 458]
  ------------------
  615|      0|            ht->ht_type.tp_vectorcall = (vectorcallfunc)slot.sl_func;
  616|      0|            break;
  617|      2|        case Py_bf_getbuffer:
  ------------------
  |  |   96|      2|#define Py_bf_getbuffer _Py_SLOT_COMPAT_VALUE(1, 88)
  |  |  ------------------
  |  |  |  |    7|      2|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (617:9): [True: 2, False: 456]
  ------------------
  618|      2|            ht->as_buffer.bf_getbuffer = (getbufferproc)slot.sl_func;
  619|      2|            break;
  620|      2|        case Py_bf_releasebuffer:
  ------------------
  |  |   97|      2|#define Py_bf_releasebuffer _Py_SLOT_COMPAT_VALUE(2, 89)
  |  |  ------------------
  |  |  |  |    7|      2|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (620:9): [True: 2, False: 456]
  ------------------
  621|      2|            ht->as_buffer.bf_releasebuffer = (releasebufferproc)slot.sl_func;
  622|      2|            break;
  623|      0|        case Py_mp_ass_subscript:
  ------------------
  |  |   98|      0|#define Py_mp_ass_subscript _Py_SLOT_COMPAT_VALUE(3, 90)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (623:9): [True: 0, False: 458]
  ------------------
  624|      0|            ht->as_mapping.mp_ass_subscript = (objobjargproc)slot.sl_func;
  625|      0|            break;
  626|      0|        case Py_mp_length:
  ------------------
  |  |   99|      0|#define Py_mp_length _Py_SLOT_COMPAT_VALUE(4, 91)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (626:9): [True: 0, False: 458]
  ------------------
  627|      0|            ht->as_mapping.mp_length = (lenfunc)slot.sl_func;
  628|      0|            break;
  629|    458|    }
  630|    458|}
slots.c:_PySlot_resolve_type_slot:
    8|  1.31k|{
    9|  1.31k|    switch (slot_id) {
   10|      0|        case 1:
  ------------------
  |  Branch (10:9): [True: 0, False: 1.31k]
  ------------------
   11|      0|            return Py_bf_getbuffer;
  ------------------
  |  |   96|      0|#define Py_bf_getbuffer _Py_SLOT_COMPAT_VALUE(1, 88)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
   12|      0|        case 2:
  ------------------
  |  Branch (12:9): [True: 0, False: 1.31k]
  ------------------
   13|      0|            return Py_bf_releasebuffer;
  ------------------
  |  |   97|      0|#define Py_bf_releasebuffer _Py_SLOT_COMPAT_VALUE(2, 89)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
   14|      0|        case 3:
  ------------------
  |  Branch (14:9): [True: 0, False: 1.31k]
  ------------------
   15|      0|            return Py_mp_ass_subscript;
  ------------------
  |  |   98|      0|#define Py_mp_ass_subscript _Py_SLOT_COMPAT_VALUE(3, 90)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
   16|      0|        case 4:
  ------------------
  |  Branch (16:9): [True: 0, False: 1.31k]
  ------------------
   17|      0|            return Py_mp_length;
  ------------------
  |  |   99|      0|#define Py_mp_length _Py_SLOT_COMPAT_VALUE(4, 91)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
   18|    156|        case Py_slot_end:
  ------------------
  |  |   12|    156|#define Py_slot_end 0
  ------------------
  |  Branch (18:9): [True: 156, False: 1.15k]
  ------------------
   19|    156|        case Py_mp_subscript:
  ------------------
  |  |   13|    156|#define Py_mp_subscript 5
  ------------------
  |  Branch (19:9): [True: 0, False: 1.31k]
  ------------------
   20|    156|        case Py_nb_absolute:
  ------------------
  |  |   14|    156|#define Py_nb_absolute 6
  ------------------
  |  Branch (20:9): [True: 0, False: 1.31k]
  ------------------
   21|    156|        case Py_nb_add:
  ------------------
  |  |   15|    156|#define Py_nb_add 7
  ------------------
  |  Branch (21:9): [True: 0, False: 1.31k]
  ------------------
   22|    156|        case Py_nb_and:
  ------------------
  |  |   16|    156|#define Py_nb_and 8
  ------------------
  |  Branch (22:9): [True: 0, False: 1.31k]
  ------------------
   23|    156|        case Py_nb_bool:
  ------------------
  |  |   17|    156|#define Py_nb_bool 9
  ------------------
  |  Branch (23:9): [True: 0, False: 1.31k]
  ------------------
   24|    156|        case Py_nb_divmod:
  ------------------
  |  |   18|    156|#define Py_nb_divmod 10
  ------------------
  |  Branch (24:9): [True: 0, False: 1.31k]
  ------------------
   25|    156|        case Py_nb_float:
  ------------------
  |  |   19|    156|#define Py_nb_float 11
  ------------------
  |  Branch (25:9): [True: 0, False: 1.31k]
  ------------------
   26|    156|        case Py_nb_floor_divide:
  ------------------
  |  |   20|    156|#define Py_nb_floor_divide 12
  ------------------
  |  Branch (26:9): [True: 0, False: 1.31k]
  ------------------
   27|    156|        case Py_nb_index:
  ------------------
  |  |   21|    156|#define Py_nb_index 13
  ------------------
  |  Branch (27:9): [True: 0, False: 1.31k]
  ------------------
   28|    156|        case Py_nb_inplace_add:
  ------------------
  |  |   22|    156|#define Py_nb_inplace_add 14
  ------------------
  |  Branch (28:9): [True: 0, False: 1.31k]
  ------------------
   29|    156|        case Py_nb_inplace_and:
  ------------------
  |  |   23|    156|#define Py_nb_inplace_and 15
  ------------------
  |  Branch (29:9): [True: 0, False: 1.31k]
  ------------------
   30|    156|        case Py_nb_inplace_floor_divide:
  ------------------
  |  |   24|    156|#define Py_nb_inplace_floor_divide 16
  ------------------
  |  Branch (30:9): [True: 0, False: 1.31k]
  ------------------
   31|    156|        case Py_nb_inplace_lshift:
  ------------------
  |  |   25|    156|#define Py_nb_inplace_lshift 17
  ------------------
  |  Branch (31:9): [True: 0, False: 1.31k]
  ------------------
   32|    156|        case Py_nb_inplace_multiply:
  ------------------
  |  |   26|    156|#define Py_nb_inplace_multiply 18
  ------------------
  |  Branch (32:9): [True: 0, False: 1.31k]
  ------------------
   33|    156|        case Py_nb_inplace_or:
  ------------------
  |  |   27|    156|#define Py_nb_inplace_or 19
  ------------------
  |  Branch (33:9): [True: 0, False: 1.31k]
  ------------------
   34|    156|        case Py_nb_inplace_power:
  ------------------
  |  |   28|    156|#define Py_nb_inplace_power 20
  ------------------
  |  Branch (34:9): [True: 0, False: 1.31k]
  ------------------
   35|    156|        case Py_nb_inplace_remainder:
  ------------------
  |  |   29|    156|#define Py_nb_inplace_remainder 21
  ------------------
  |  Branch (35:9): [True: 0, False: 1.31k]
  ------------------
   36|    156|        case Py_nb_inplace_rshift:
  ------------------
  |  |   30|    156|#define Py_nb_inplace_rshift 22
  ------------------
  |  Branch (36:9): [True: 0, False: 1.31k]
  ------------------
   37|    156|        case Py_nb_inplace_subtract:
  ------------------
  |  |   31|    156|#define Py_nb_inplace_subtract 23
  ------------------
  |  Branch (37:9): [True: 0, False: 1.31k]
  ------------------
   38|    156|        case Py_nb_inplace_true_divide:
  ------------------
  |  |   32|    156|#define Py_nb_inplace_true_divide 24
  ------------------
  |  Branch (38:9): [True: 0, False: 1.31k]
  ------------------
   39|    156|        case Py_nb_inplace_xor:
  ------------------
  |  |   33|    156|#define Py_nb_inplace_xor 25
  ------------------
  |  Branch (39:9): [True: 0, False: 1.31k]
  ------------------
   40|    156|        case Py_nb_int:
  ------------------
  |  |   34|    156|#define Py_nb_int 26
  ------------------
  |  Branch (40:9): [True: 0, False: 1.31k]
  ------------------
   41|    156|        case Py_nb_invert:
  ------------------
  |  |   35|    156|#define Py_nb_invert 27
  ------------------
  |  Branch (41:9): [True: 0, False: 1.31k]
  ------------------
   42|    156|        case Py_nb_lshift:
  ------------------
  |  |   36|    156|#define Py_nb_lshift 28
  ------------------
  |  Branch (42:9): [True: 0, False: 1.31k]
  ------------------
   43|    156|        case Py_nb_multiply:
  ------------------
  |  |   37|    156|#define Py_nb_multiply 29
  ------------------
  |  Branch (43:9): [True: 0, False: 1.31k]
  ------------------
   44|    156|        case Py_nb_negative:
  ------------------
  |  |   38|    156|#define Py_nb_negative 30
  ------------------
  |  Branch (44:9): [True: 0, False: 1.31k]
  ------------------
   45|    164|        case Py_nb_or:
  ------------------
  |  |   39|    164|#define Py_nb_or 31
  ------------------
  |  Branch (45:9): [True: 8, False: 1.30k]
  ------------------
   46|    164|        case Py_nb_positive:
  ------------------
  |  |   40|    164|#define Py_nb_positive 32
  ------------------
  |  Branch (46:9): [True: 0, False: 1.31k]
  ------------------
   47|    164|        case Py_nb_power:
  ------------------
  |  |   41|    164|#define Py_nb_power 33
  ------------------
  |  Branch (47:9): [True: 0, False: 1.31k]
  ------------------
   48|    164|        case Py_nb_remainder:
  ------------------
  |  |   42|    164|#define Py_nb_remainder 34
  ------------------
  |  Branch (48:9): [True: 0, False: 1.31k]
  ------------------
   49|    164|        case Py_nb_rshift:
  ------------------
  |  |   43|    164|#define Py_nb_rshift 35
  ------------------
  |  Branch (49:9): [True: 0, False: 1.31k]
  ------------------
   50|    164|        case Py_nb_subtract:
  ------------------
  |  |   44|    164|#define Py_nb_subtract 36
  ------------------
  |  Branch (50:9): [True: 0, False: 1.31k]
  ------------------
   51|    164|        case Py_nb_true_divide:
  ------------------
  |  |   45|    164|#define Py_nb_true_divide 37
  ------------------
  |  Branch (51:9): [True: 0, False: 1.31k]
  ------------------
   52|    164|        case Py_nb_xor:
  ------------------
  |  |   46|    164|#define Py_nb_xor 38
  ------------------
  |  Branch (52:9): [True: 0, False: 1.31k]
  ------------------
   53|    164|        case Py_sq_ass_item:
  ------------------
  |  |   47|    164|#define Py_sq_ass_item 39
  ------------------
  |  Branch (53:9): [True: 0, False: 1.31k]
  ------------------
   54|    164|        case Py_sq_concat:
  ------------------
  |  |   48|    164|#define Py_sq_concat 40
  ------------------
  |  Branch (54:9): [True: 0, False: 1.31k]
  ------------------
   55|    164|        case Py_sq_contains:
  ------------------
  |  |   49|    164|#define Py_sq_contains 41
  ------------------
  |  Branch (55:9): [True: 0, False: 1.31k]
  ------------------
   56|    164|        case Py_sq_inplace_concat:
  ------------------
  |  |   50|    164|#define Py_sq_inplace_concat 42
  ------------------
  |  Branch (56:9): [True: 0, False: 1.31k]
  ------------------
   57|    164|        case Py_sq_inplace_repeat:
  ------------------
  |  |   51|    164|#define Py_sq_inplace_repeat 43
  ------------------
  |  Branch (57:9): [True: 0, False: 1.31k]
  ------------------
   58|    164|        case Py_sq_item:
  ------------------
  |  |   52|    164|#define Py_sq_item 44
  ------------------
  |  Branch (58:9): [True: 0, False: 1.31k]
  ------------------
   59|    164|        case Py_sq_length:
  ------------------
  |  |   53|    164|#define Py_sq_length 45
  ------------------
  |  Branch (59:9): [True: 0, False: 1.31k]
  ------------------
   60|    164|        case Py_sq_repeat:
  ------------------
  |  |   54|    164|#define Py_sq_repeat 46
  ------------------
  |  Branch (60:9): [True: 0, False: 1.31k]
  ------------------
   61|    196|        case Py_tp_alloc:
  ------------------
  |  |   55|    196|#define Py_tp_alloc 47
  ------------------
  |  Branch (61:9): [True: 32, False: 1.28k]
  ------------------
   62|    196|        case Py_tp_base:
  ------------------
  |  |   56|    196|#define Py_tp_base 48
  ------------------
  |  Branch (62:9): [True: 0, False: 1.31k]
  ------------------
   63|    196|        case Py_tp_bases:
  ------------------
  |  |   57|    196|#define Py_tp_bases 49
  ------------------
  |  Branch (63:9): [True: 0, False: 1.31k]
  ------------------
   64|    200|        case Py_tp_call:
  ------------------
  |  |   58|    200|#define Py_tp_call 50
  ------------------
  |  Branch (64:9): [True: 4, False: 1.30k]
  ------------------
   65|    272|        case Py_tp_clear:
  ------------------
  |  |   59|    272|#define Py_tp_clear 51
  ------------------
  |  Branch (65:9): [True: 72, False: 1.24k]
  ------------------
   66|    416|        case Py_tp_dealloc:
  ------------------
  |  |   60|    416|#define Py_tp_dealloc 52
  ------------------
  |  Branch (66:9): [True: 144, False: 1.16k]
  ------------------
   67|    416|        case Py_tp_del:
  ------------------
  |  |   61|    416|#define Py_tp_del 53
  ------------------
  |  Branch (67:9): [True: 0, False: 1.31k]
  ------------------
   68|    416|        case Py_tp_descr_get:
  ------------------
  |  |   62|    416|#define Py_tp_descr_get 54
  ------------------
  |  Branch (68:9): [True: 0, False: 1.31k]
  ------------------
   69|    416|        case Py_tp_descr_set:
  ------------------
  |  |   63|    416|#define Py_tp_descr_set 55
  ------------------
  |  Branch (69:9): [True: 0, False: 1.31k]
  ------------------
   70|    548|        case Py_tp_doc:
  ------------------
  |  |   64|    548|#define Py_tp_doc 56
  ------------------
  |  Branch (70:9): [True: 132, False: 1.18k]
  ------------------
   71|    548|        case Py_tp_getattr:
  ------------------
  |  |   65|    548|#define Py_tp_getattr 57
  ------------------
  |  Branch (71:9): [True: 0, False: 1.31k]
  ------------------
   72|    552|        case Py_tp_getattro:
  ------------------
  |  |   66|    552|#define Py_tp_getattro 58
  ------------------
  |  Branch (72:9): [True: 4, False: 1.30k]
  ------------------
   73|    552|        case Py_tp_hash:
  ------------------
  |  |   67|    552|#define Py_tp_hash 59
  ------------------
  |  Branch (73:9): [True: 0, False: 1.31k]
  ------------------
   74|    588|        case Py_tp_init:
  ------------------
  |  |   68|    588|#define Py_tp_init 60
  ------------------
  |  Branch (74:9): [True: 36, False: 1.27k]
  ------------------
   75|    588|        case Py_tp_is_gc:
  ------------------
  |  |   69|    588|#define Py_tp_is_gc 61
  ------------------
  |  Branch (75:9): [True: 0, False: 1.31k]
  ------------------
   76|    604|        case Py_tp_iter:
  ------------------
  |  |   70|    604|#define Py_tp_iter 62
  ------------------
  |  Branch (76:9): [True: 16, False: 1.29k]
  ------------------
   77|    632|        case Py_tp_iternext:
  ------------------
  |  |   71|    632|#define Py_tp_iternext 63
  ------------------
  |  Branch (77:9): [True: 28, False: 1.28k]
  ------------------
   78|    764|        case Py_tp_methods:
  ------------------
  |  |   72|    764|#define Py_tp_methods 64
  ------------------
  |  Branch (78:9): [True: 132, False: 1.18k]
  ------------------
   79|    852|        case Py_tp_new:
  ------------------
  |  |   73|    852|#define Py_tp_new 65
  ------------------
  |  Branch (79:9): [True: 88, False: 1.22k]
  ------------------
   80|    952|        case Py_tp_repr:
  ------------------
  |  |   74|    952|#define Py_tp_repr 66
  ------------------
  |  Branch (80:9): [True: 100, False: 1.21k]
  ------------------
   81|    960|        case Py_tp_richcompare:
  ------------------
  |  |   75|    960|#define Py_tp_richcompare 67
  ------------------
  |  Branch (81:9): [True: 8, False: 1.30k]
  ------------------
   82|    960|        case Py_tp_setattr:
  ------------------
  |  |   76|    960|#define Py_tp_setattr 68
  ------------------
  |  Branch (82:9): [True: 0, False: 1.31k]
  ------------------
   83|    964|        case Py_tp_setattro:
  ------------------
  |  |   77|    964|#define Py_tp_setattro 69
  ------------------
  |  Branch (83:9): [True: 4, False: 1.30k]
  ------------------
   84|    964|        case Py_tp_str:
  ------------------
  |  |   78|    964|#define Py_tp_str 70
  ------------------
  |  Branch (84:9): [True: 0, False: 1.31k]
  ------------------
   85|  1.09k|        case Py_tp_traverse:
  ------------------
  |  |   79|  1.09k|#define Py_tp_traverse 71
  ------------------
  |  Branch (85:9): [True: 132, False: 1.18k]
  ------------------
   86|  1.20k|        case Py_tp_members:
  ------------------
  |  |   80|  1.20k|#define Py_tp_members 72
  ------------------
  |  Branch (86:9): [True: 108, False: 1.20k]
  ------------------
   87|  1.26k|        case Py_tp_getset:
  ------------------
  |  |   81|  1.26k|#define Py_tp_getset 73
  ------------------
  |  Branch (87:9): [True: 64, False: 1.24k]
  ------------------
   88|  1.29k|        case Py_tp_free:
  ------------------
  |  |   82|  1.29k|#define Py_tp_free 74
  ------------------
  |  Branch (88:9): [True: 28, False: 1.28k]
  ------------------
   89|  1.29k|        case Py_nb_matrix_multiply:
  ------------------
  |  |   83|  1.29k|#define Py_nb_matrix_multiply 75
  ------------------
  |  Branch (89:9): [True: 0, False: 1.31k]
  ------------------
   90|  1.29k|        case Py_nb_inplace_matrix_multiply:
  ------------------
  |  |   84|  1.29k|#define Py_nb_inplace_matrix_multiply 76
  ------------------
  |  Branch (90:9): [True: 0, False: 1.31k]
  ------------------
   91|  1.29k|        case Py_am_await:
  ------------------
  |  |   85|  1.29k|#define Py_am_await 77
  ------------------
  |  Branch (91:9): [True: 0, False: 1.31k]
  ------------------
   92|  1.29k|        case Py_am_aiter:
  ------------------
  |  |   86|  1.29k|#define Py_am_aiter 78
  ------------------
  |  Branch (92:9): [True: 0, False: 1.31k]
  ------------------
   93|  1.29k|        case Py_am_anext:
  ------------------
  |  |   87|  1.29k|#define Py_am_anext 79
  ------------------
  |  Branch (93:9): [True: 0, False: 1.31k]
  ------------------
   94|  1.30k|        case Py_tp_finalize:
  ------------------
  |  |   88|  1.30k|#define Py_tp_finalize 80
  ------------------
  |  Branch (94:9): [True: 8, False: 1.30k]
  ------------------
   95|  1.30k|        case Py_am_send:
  ------------------
  |  |   89|  1.30k|#define Py_am_send 81
  ------------------
  |  Branch (95:9): [True: 0, False: 1.31k]
  ------------------
   96|  1.30k|        case Py_tp_vectorcall:
  ------------------
  |  |   90|  1.30k|#define Py_tp_vectorcall 82
  ------------------
  |  Branch (96:9): [True: 0, False: 1.31k]
  ------------------
   97|  1.30k|        case Py_tp_token:
  ------------------
  |  |   91|  1.30k|#define Py_tp_token 83
  ------------------
  |  Branch (97:9): [True: 0, False: 1.31k]
  ------------------
   98|  1.30k|        case Py_bf_getbuffer:
  ------------------
  |  |   96|  1.30k|#define Py_bf_getbuffer _Py_SLOT_COMPAT_VALUE(1, 88)
  |  |  ------------------
  |  |  |  |    7|  1.30k|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (98:9): [True: 4, False: 1.30k]
  ------------------
   99|  1.31k|        case Py_bf_releasebuffer:
  ------------------
  |  |   97|  1.31k|#define Py_bf_releasebuffer _Py_SLOT_COMPAT_VALUE(2, 89)
  |  |  ------------------
  |  |  |  |    7|  1.31k|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (99:9): [True: 4, False: 1.30k]
  ------------------
  100|  1.31k|        case Py_mp_ass_subscript:
  ------------------
  |  |   98|  1.31k|#define Py_mp_ass_subscript _Py_SLOT_COMPAT_VALUE(3, 90)
  |  |  ------------------
  |  |  |  |    7|  1.31k|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (100:9): [True: 0, False: 1.31k]
  ------------------
  101|  1.31k|        case Py_mp_length:
  ------------------
  |  |   99|  1.31k|#define Py_mp_length _Py_SLOT_COMPAT_VALUE(4, 91)
  |  |  ------------------
  |  |  |  |    7|  1.31k|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (101:9): [True: 0, False: 1.31k]
  ------------------
  102|  1.31k|        case Py_slot_subslots:
  ------------------
  |  |  100|  1.31k|#define Py_slot_subslots 92
  ------------------
  |  Branch (102:9): [True: 0, False: 1.31k]
  ------------------
  103|  1.31k|        case Py_tp_slots:
  ------------------
  |  |  101|  1.31k|#define Py_tp_slots 93
  ------------------
  |  Branch (103:9): [True: 0, False: 1.31k]
  ------------------
  104|  1.31k|        case Py_tp_name:
  ------------------
  |  |  103|  1.31k|#define Py_tp_name 95
  ------------------
  |  Branch (104:9): [True: 0, False: 1.31k]
  ------------------
  105|  1.31k|        case Py_tp_basicsize:
  ------------------
  |  |  104|  1.31k|#define Py_tp_basicsize 96
  ------------------
  |  Branch (105:9): [True: 0, False: 1.31k]
  ------------------
  106|  1.31k|        case Py_tp_extra_basicsize:
  ------------------
  |  |  105|  1.31k|#define Py_tp_extra_basicsize 97
  ------------------
  |  Branch (106:9): [True: 0, False: 1.31k]
  ------------------
  107|  1.31k|        case Py_tp_itemsize:
  ------------------
  |  |  106|  1.31k|#define Py_tp_itemsize 98
  ------------------
  |  Branch (107:9): [True: 0, False: 1.31k]
  ------------------
  108|  1.31k|        case Py_tp_flags:
  ------------------
  |  |  107|  1.31k|#define Py_tp_flags 99
  ------------------
  |  Branch (108:9): [True: 0, False: 1.31k]
  ------------------
  109|  1.31k|        case Py_tp_metaclass:
  ------------------
  |  |  115|  1.31k|#define Py_tp_metaclass 107
  ------------------
  |  Branch (109:9): [True: 0, False: 1.31k]
  ------------------
  110|  1.31k|        case Py_tp_module:
  ------------------
  |  |  116|  1.31k|#define Py_tp_module 108
  ------------------
  |  Branch (110:9): [True: 0, False: 1.31k]
  ------------------
  111|  1.31k|            return slot_id;
  112|      0|        default:
  ------------------
  |  Branch (112:9): [True: 0, False: 1.31k]
  ------------------
  113|      0|            return Py_slot_invalid;
  ------------------
  |  |   25|      0|#define Py_slot_invalid 0xffff
  ------------------
  114|  1.31k|    }
  115|  1.31k|}
slots.c:_PySlot_resolve_mod_slot:
  119|    228|{
  120|    228|    switch (slot_id) {
  121|      0|        case 1:
  ------------------
  |  Branch (121:9): [True: 0, False: 228]
  ------------------
  122|      0|            return Py_mod_create;
  ------------------
  |  |   92|      0|#define Py_mod_create _Py_SLOT_COMPAT_VALUE(1, 84)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  123|      8|        case 2:
  ------------------
  |  Branch (123:9): [True: 8, False: 220]
  ------------------
  124|      8|            return Py_mod_exec;
  ------------------
  |  |   93|      8|#define Py_mod_exec _Py_SLOT_COMPAT_VALUE(2, 85)
  |  |  ------------------
  |  |  |  |    7|      8|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  125|      8|        case 3:
  ------------------
  |  Branch (125:9): [True: 8, False: 220]
  ------------------
  126|      8|            return Py_mod_multiple_interpreters;
  ------------------
  |  |   94|      8|#define Py_mod_multiple_interpreters _Py_SLOT_COMPAT_VALUE(3, 86)
  |  |  ------------------
  |  |  |  |    7|      8|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  127|      8|        case 4:
  ------------------
  |  Branch (127:9): [True: 8, False: 220]
  ------------------
  128|      8|            return Py_mod_gil;
  ------------------
  |  |   95|      8|#define Py_mod_gil _Py_SLOT_COMPAT_VALUE(4, 87)
  |  |  ------------------
  |  |  |  |    7|      8|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  129|     48|        case Py_slot_end:
  ------------------
  |  |   12|     48|#define Py_slot_end 0
  ------------------
  |  Branch (129:9): [True: 48, False: 180]
  ------------------
  130|     48|        case Py_mod_create:
  ------------------
  |  |   92|     48|#define Py_mod_create _Py_SLOT_COMPAT_VALUE(1, 84)
  |  |  ------------------
  |  |  |  |    7|     48|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (130:9): [True: 0, False: 228]
  ------------------
  131|     84|        case Py_mod_exec:
  ------------------
  |  |   93|     84|#define Py_mod_exec _Py_SLOT_COMPAT_VALUE(2, 85)
  |  |  ------------------
  |  |  |  |    7|     84|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (131:9): [True: 36, False: 192]
  ------------------
  132|    124|        case Py_mod_multiple_interpreters:
  ------------------
  |  |   94|    124|#define Py_mod_multiple_interpreters _Py_SLOT_COMPAT_VALUE(3, 86)
  |  |  ------------------
  |  |  |  |    7|    124|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (132:9): [True: 40, False: 188]
  ------------------
  133|    164|        case Py_mod_gil:
  ------------------
  |  |   95|    164|#define Py_mod_gil _Py_SLOT_COMPAT_VALUE(4, 87)
  |  |  ------------------
  |  |  |  |    7|    164|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (133:9): [True: 40, False: 188]
  ------------------
  134|    164|        case Py_slot_subslots:
  ------------------
  |  |  100|    164|#define Py_slot_subslots 92
  ------------------
  |  Branch (134:9): [True: 0, False: 228]
  ------------------
  135|    164|        case Py_mod_slots:
  ------------------
  |  |  102|    164|#define Py_mod_slots 94
  ------------------
  |  Branch (135:9): [True: 0, False: 228]
  ------------------
  136|    164|        case Py_mod_name:
  ------------------
  |  |  108|    164|#define Py_mod_name 100
  ------------------
  |  Branch (136:9): [True: 0, False: 228]
  ------------------
  137|    164|        case Py_mod_doc:
  ------------------
  |  |  109|    164|#define Py_mod_doc 101
  ------------------
  |  Branch (137:9): [True: 0, False: 228]
  ------------------
  138|    164|        case Py_mod_state_size:
  ------------------
  |  |  110|    164|#define Py_mod_state_size 102
  ------------------
  |  Branch (138:9): [True: 0, False: 228]
  ------------------
  139|    164|        case Py_mod_methods:
  ------------------
  |  |  111|    164|#define Py_mod_methods 103
  ------------------
  |  Branch (139:9): [True: 0, False: 228]
  ------------------
  140|    164|        case Py_mod_state_traverse:
  ------------------
  |  |  112|    164|#define Py_mod_state_traverse 104
  ------------------
  |  Branch (140:9): [True: 0, False: 228]
  ------------------
  141|    164|        case Py_mod_state_clear:
  ------------------
  |  |  113|    164|#define Py_mod_state_clear 105
  ------------------
  |  Branch (141:9): [True: 0, False: 228]
  ------------------
  142|    164|        case Py_mod_state_free:
  ------------------
  |  |  114|    164|#define Py_mod_state_free 106
  ------------------
  |  Branch (142:9): [True: 0, False: 228]
  ------------------
  143|    204|        case Py_mod_abi:
  ------------------
  |  |  117|    204|#define Py_mod_abi 109
  ------------------
  |  Branch (143:9): [True: 40, False: 188]
  ------------------
  144|    204|        case Py_mod_token:
  ------------------
  |  |  118|    204|#define Py_mod_token 110
  ------------------
  |  Branch (144:9): [True: 0, False: 228]
  ------------------
  145|    204|            return slot_id;
  146|      0|        default:
  ------------------
  |  Branch (146:9): [True: 0, False: 228]
  ------------------
  147|      0|            return Py_slot_invalid;
  ------------------
  |  |   25|      0|#define Py_slot_invalid 0xffff
  ------------------
  148|    228|    }
  149|    228|}
slots.c:_PySlot_get_dtype:
  634|  3.26k|{
  635|  3.26k|    switch (slot_id) {
  636|      0|        case Py_slot_end: return _PySlot_DTYPE_VOID;
  ------------------
  |  |   12|      0|#define Py_slot_end 0
  ------------------
  |  Branch (636:9): [True: 0, False: 3.26k]
  ------------------
  637|      0|        case Py_mp_subscript: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   13|      0|#define Py_mp_subscript 5
  ------------------
  |  Branch (637:9): [True: 0, False: 3.26k]
  ------------------
  638|      0|        case Py_nb_absolute: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   14|      0|#define Py_nb_absolute 6
  ------------------
  |  Branch (638:9): [True: 0, False: 3.26k]
  ------------------
  639|      0|        case Py_nb_add: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   15|      0|#define Py_nb_add 7
  ------------------
  |  Branch (639:9): [True: 0, False: 3.26k]
  ------------------
  640|      0|        case Py_nb_and: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   16|      0|#define Py_nb_and 8
  ------------------
  |  Branch (640:9): [True: 0, False: 3.26k]
  ------------------
  641|      0|        case Py_nb_bool: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   17|      0|#define Py_nb_bool 9
  ------------------
  |  Branch (641:9): [True: 0, False: 3.26k]
  ------------------
  642|      0|        case Py_nb_divmod: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   18|      0|#define Py_nb_divmod 10
  ------------------
  |  Branch (642:9): [True: 0, False: 3.26k]
  ------------------
  643|      0|        case Py_nb_float: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   19|      0|#define Py_nb_float 11
  ------------------
  |  Branch (643:9): [True: 0, False: 3.26k]
  ------------------
  644|      0|        case Py_nb_floor_divide: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   20|      0|#define Py_nb_floor_divide 12
  ------------------
  |  Branch (644:9): [True: 0, False: 3.26k]
  ------------------
  645|      0|        case Py_nb_index: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   21|      0|#define Py_nb_index 13
  ------------------
  |  Branch (645:9): [True: 0, False: 3.26k]
  ------------------
  646|      0|        case Py_nb_inplace_add: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   22|      0|#define Py_nb_inplace_add 14
  ------------------
  |  Branch (646:9): [True: 0, False: 3.26k]
  ------------------
  647|      0|        case Py_nb_inplace_and: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   23|      0|#define Py_nb_inplace_and 15
  ------------------
  |  Branch (647:9): [True: 0, False: 3.26k]
  ------------------
  648|      0|        case Py_nb_inplace_floor_divide: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   24|      0|#define Py_nb_inplace_floor_divide 16
  ------------------
  |  Branch (648:9): [True: 0, False: 3.26k]
  ------------------
  649|      0|        case Py_nb_inplace_lshift: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   25|      0|#define Py_nb_inplace_lshift 17
  ------------------
  |  Branch (649:9): [True: 0, False: 3.26k]
  ------------------
  650|      0|        case Py_nb_inplace_multiply: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   26|      0|#define Py_nb_inplace_multiply 18
  ------------------
  |  Branch (650:9): [True: 0, False: 3.26k]
  ------------------
  651|      0|        case Py_nb_inplace_or: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   27|      0|#define Py_nb_inplace_or 19
  ------------------
  |  Branch (651:9): [True: 0, False: 3.26k]
  ------------------
  652|      0|        case Py_nb_inplace_power: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   28|      0|#define Py_nb_inplace_power 20
  ------------------
  |  Branch (652:9): [True: 0, False: 3.26k]
  ------------------
  653|      0|        case Py_nb_inplace_remainder: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   29|      0|#define Py_nb_inplace_remainder 21
  ------------------
  |  Branch (653:9): [True: 0, False: 3.26k]
  ------------------
  654|      0|        case Py_nb_inplace_rshift: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   30|      0|#define Py_nb_inplace_rshift 22
  ------------------
  |  Branch (654:9): [True: 0, False: 3.26k]
  ------------------
  655|      0|        case Py_nb_inplace_subtract: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   31|      0|#define Py_nb_inplace_subtract 23
  ------------------
  |  Branch (655:9): [True: 0, False: 3.26k]
  ------------------
  656|      0|        case Py_nb_inplace_true_divide: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   32|      0|#define Py_nb_inplace_true_divide 24
  ------------------
  |  Branch (656:9): [True: 0, False: 3.26k]
  ------------------
  657|      0|        case Py_nb_inplace_xor: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   33|      0|#define Py_nb_inplace_xor 25
  ------------------
  |  Branch (657:9): [True: 0, False: 3.26k]
  ------------------
  658|      0|        case Py_nb_int: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   34|      0|#define Py_nb_int 26
  ------------------
  |  Branch (658:9): [True: 0, False: 3.26k]
  ------------------
  659|      0|        case Py_nb_invert: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   35|      0|#define Py_nb_invert 27
  ------------------
  |  Branch (659:9): [True: 0, False: 3.26k]
  ------------------
  660|      0|        case Py_nb_lshift: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   36|      0|#define Py_nb_lshift 28
  ------------------
  |  Branch (660:9): [True: 0, False: 3.26k]
  ------------------
  661|      0|        case Py_nb_multiply: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   37|      0|#define Py_nb_multiply 29
  ------------------
  |  Branch (661:9): [True: 0, False: 3.26k]
  ------------------
  662|      0|        case Py_nb_negative: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   38|      0|#define Py_nb_negative 30
  ------------------
  |  Branch (662:9): [True: 0, False: 3.26k]
  ------------------
  663|     20|        case Py_nb_or: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   39|     20|#define Py_nb_or 31
  ------------------
  |  Branch (663:9): [True: 20, False: 3.24k]
  ------------------
  664|      0|        case Py_nb_positive: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   40|      0|#define Py_nb_positive 32
  ------------------
  |  Branch (664:9): [True: 0, False: 3.26k]
  ------------------
  665|      0|        case Py_nb_power: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   41|      0|#define Py_nb_power 33
  ------------------
  |  Branch (665:9): [True: 0, False: 3.26k]
  ------------------
  666|      0|        case Py_nb_remainder: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   42|      0|#define Py_nb_remainder 34
  ------------------
  |  Branch (666:9): [True: 0, False: 3.26k]
  ------------------
  667|      0|        case Py_nb_rshift: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   43|      0|#define Py_nb_rshift 35
  ------------------
  |  Branch (667:9): [True: 0, False: 3.26k]
  ------------------
  668|      0|        case Py_nb_subtract: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   44|      0|#define Py_nb_subtract 36
  ------------------
  |  Branch (668:9): [True: 0, False: 3.26k]
  ------------------
  669|      0|        case Py_nb_true_divide: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   45|      0|#define Py_nb_true_divide 37
  ------------------
  |  Branch (669:9): [True: 0, False: 3.26k]
  ------------------
  670|      0|        case Py_nb_xor: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   46|      0|#define Py_nb_xor 38
  ------------------
  |  Branch (670:9): [True: 0, False: 3.26k]
  ------------------
  671|      0|        case Py_sq_ass_item: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   47|      0|#define Py_sq_ass_item 39
  ------------------
  |  Branch (671:9): [True: 0, False: 3.26k]
  ------------------
  672|      0|        case Py_sq_concat: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   48|      0|#define Py_sq_concat 40
  ------------------
  |  Branch (672:9): [True: 0, False: 3.26k]
  ------------------
  673|      0|        case Py_sq_contains: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   49|      0|#define Py_sq_contains 41
  ------------------
  |  Branch (673:9): [True: 0, False: 3.26k]
  ------------------
  674|      0|        case Py_sq_inplace_concat: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   50|      0|#define Py_sq_inplace_concat 42
  ------------------
  |  Branch (674:9): [True: 0, False: 3.26k]
  ------------------
  675|      0|        case Py_sq_inplace_repeat: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   51|      0|#define Py_sq_inplace_repeat 43
  ------------------
  |  Branch (675:9): [True: 0, False: 3.26k]
  ------------------
  676|      0|        case Py_sq_item: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   52|      0|#define Py_sq_item 44
  ------------------
  |  Branch (676:9): [True: 0, False: 3.26k]
  ------------------
  677|      0|        case Py_sq_length: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   53|      0|#define Py_sq_length 45
  ------------------
  |  Branch (677:9): [True: 0, False: 3.26k]
  ------------------
  678|      0|        case Py_sq_repeat: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   54|      0|#define Py_sq_repeat 46
  ------------------
  |  Branch (678:9): [True: 0, False: 3.26k]
  ------------------
  679|     80|        case Py_tp_alloc: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   55|     80|#define Py_tp_alloc 47
  ------------------
  |  Branch (679:9): [True: 80, False: 3.18k]
  ------------------
  680|      0|        case Py_tp_base: return _PySlot_DTYPE_PTR;
  ------------------
  |  |   56|      0|#define Py_tp_base 48
  ------------------
  |  Branch (680:9): [True: 0, False: 3.26k]
  ------------------
  681|      0|        case Py_tp_bases: return _PySlot_DTYPE_PTR;
  ------------------
  |  |   57|      0|#define Py_tp_bases 49
  ------------------
  |  Branch (681:9): [True: 0, False: 3.26k]
  ------------------
  682|     10|        case Py_tp_call: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   58|     10|#define Py_tp_call 50
  ------------------
  |  Branch (682:9): [True: 10, False: 3.25k]
  ------------------
  683|    180|        case Py_tp_clear: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   59|    180|#define Py_tp_clear 51
  ------------------
  |  Branch (683:9): [True: 180, False: 3.08k]
  ------------------
  684|    360|        case Py_tp_dealloc: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   60|    360|#define Py_tp_dealloc 52
  ------------------
  |  Branch (684:9): [True: 360, False: 2.90k]
  ------------------
  685|      0|        case Py_tp_del: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   61|      0|#define Py_tp_del 53
  ------------------
  |  Branch (685:9): [True: 0, False: 3.26k]
  ------------------
  686|      0|        case Py_tp_descr_get: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   62|      0|#define Py_tp_descr_get 54
  ------------------
  |  Branch (686:9): [True: 0, False: 3.26k]
  ------------------
  687|      0|        case Py_tp_descr_set: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   63|      0|#define Py_tp_descr_set 55
  ------------------
  |  Branch (687:9): [True: 0, False: 3.26k]
  ------------------
  688|    264|        case Py_tp_doc: return _PySlot_DTYPE_PTR;
  ------------------
  |  |   64|    264|#define Py_tp_doc 56
  ------------------
  |  Branch (688:9): [True: 264, False: 3.00k]
  ------------------
  689|      0|        case Py_tp_getattr: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   65|      0|#define Py_tp_getattr 57
  ------------------
  |  Branch (689:9): [True: 0, False: 3.26k]
  ------------------
  690|     10|        case Py_tp_getattro: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   66|     10|#define Py_tp_getattro 58
  ------------------
  |  Branch (690:9): [True: 10, False: 3.25k]
  ------------------
  691|      0|        case Py_tp_hash: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   67|      0|#define Py_tp_hash 59
  ------------------
  |  Branch (691:9): [True: 0, False: 3.26k]
  ------------------
  692|     90|        case Py_tp_init: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   68|     90|#define Py_tp_init 60
  ------------------
  |  Branch (692:9): [True: 90, False: 3.17k]
  ------------------
  693|      0|        case Py_tp_is_gc: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   69|      0|#define Py_tp_is_gc 61
  ------------------
  |  Branch (693:9): [True: 0, False: 3.26k]
  ------------------
  694|     40|        case Py_tp_iter: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   70|     40|#define Py_tp_iter 62
  ------------------
  |  Branch (694:9): [True: 40, False: 3.22k]
  ------------------
  695|     70|        case Py_tp_iternext: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   71|     70|#define Py_tp_iternext 63
  ------------------
  |  Branch (695:9): [True: 70, False: 3.19k]
  ------------------
  696|    330|        case Py_tp_methods: return _PySlot_DTYPE_PTR;
  ------------------
  |  |   72|    330|#define Py_tp_methods 64
  ------------------
  |  Branch (696:9): [True: 330, False: 2.93k]
  ------------------
  697|    220|        case Py_tp_new: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   73|    220|#define Py_tp_new 65
  ------------------
  |  Branch (697:9): [True: 220, False: 3.04k]
  ------------------
  698|    250|        case Py_tp_repr: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   74|    250|#define Py_tp_repr 66
  ------------------
  |  Branch (698:9): [True: 250, False: 3.01k]
  ------------------
  699|     20|        case Py_tp_richcompare: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   75|     20|#define Py_tp_richcompare 67
  ------------------
  |  Branch (699:9): [True: 20, False: 3.24k]
  ------------------
  700|      0|        case Py_tp_setattr: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   76|      0|#define Py_tp_setattr 68
  ------------------
  |  Branch (700:9): [True: 0, False: 3.26k]
  ------------------
  701|     10|        case Py_tp_setattro: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   77|     10|#define Py_tp_setattro 69
  ------------------
  |  Branch (701:9): [True: 10, False: 3.25k]
  ------------------
  702|      0|        case Py_tp_str: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   78|      0|#define Py_tp_str 70
  ------------------
  |  Branch (702:9): [True: 0, False: 3.26k]
  ------------------
  703|    330|        case Py_tp_traverse: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   79|    330|#define Py_tp_traverse 71
  ------------------
  |  Branch (703:9): [True: 330, False: 2.93k]
  ------------------
  704|    270|        case Py_tp_members: return _PySlot_DTYPE_PTR;
  ------------------
  |  |   80|    270|#define Py_tp_members 72
  ------------------
  |  Branch (704:9): [True: 270, False: 2.99k]
  ------------------
  705|    160|        case Py_tp_getset: return _PySlot_DTYPE_PTR;
  ------------------
  |  |   81|    160|#define Py_tp_getset 73
  ------------------
  |  Branch (705:9): [True: 160, False: 3.10k]
  ------------------
  706|     70|        case Py_tp_free: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   82|     70|#define Py_tp_free 74
  ------------------
  |  Branch (706:9): [True: 70, False: 3.19k]
  ------------------
  707|      0|        case Py_nb_matrix_multiply: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   83|      0|#define Py_nb_matrix_multiply 75
  ------------------
  |  Branch (707:9): [True: 0, False: 3.26k]
  ------------------
  708|      0|        case Py_nb_inplace_matrix_multiply: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   84|      0|#define Py_nb_inplace_matrix_multiply 76
  ------------------
  |  Branch (708:9): [True: 0, False: 3.26k]
  ------------------
  709|      0|        case Py_am_await: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   85|      0|#define Py_am_await 77
  ------------------
  |  Branch (709:9): [True: 0, False: 3.26k]
  ------------------
  710|      0|        case Py_am_aiter: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   86|      0|#define Py_am_aiter 78
  ------------------
  |  Branch (710:9): [True: 0, False: 3.26k]
  ------------------
  711|      0|        case Py_am_anext: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   87|      0|#define Py_am_anext 79
  ------------------
  |  Branch (711:9): [True: 0, False: 3.26k]
  ------------------
  712|     20|        case Py_tp_finalize: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   88|     20|#define Py_tp_finalize 80
  ------------------
  |  Branch (712:9): [True: 20, False: 3.24k]
  ------------------
  713|      0|        case Py_am_send: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   89|      0|#define Py_am_send 81
  ------------------
  |  Branch (713:9): [True: 0, False: 3.26k]
  ------------------
  714|      0|        case Py_tp_vectorcall: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   90|      0|#define Py_tp_vectorcall 82
  ------------------
  |  Branch (714:9): [True: 0, False: 3.26k]
  ------------------
  715|      0|        case Py_tp_token: return _PySlot_DTYPE_PTR;
  ------------------
  |  |   91|      0|#define Py_tp_token 83
  ------------------
  |  Branch (715:9): [True: 0, False: 3.26k]
  ------------------
  716|      0|        case Py_mod_create: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   92|      0|#define Py_mod_create _Py_SLOT_COMPAT_VALUE(1, 84)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (716:9): [True: 0, False: 3.26k]
  ------------------
  717|    132|        case Py_mod_exec: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   93|    132|#define Py_mod_exec _Py_SLOT_COMPAT_VALUE(2, 85)
  |  |  ------------------
  |  |  |  |    7|    132|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (717:9): [True: 132, False: 3.13k]
  ------------------
  718|     96|        case Py_mod_multiple_interpreters: return _PySlot_DTYPE_UINT64;
  ------------------
  |  |   94|     96|#define Py_mod_multiple_interpreters _Py_SLOT_COMPAT_VALUE(3, 86)
  |  |  ------------------
  |  |  |  |    7|     96|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (718:9): [True: 96, False: 3.17k]
  ------------------
  719|     96|        case Py_mod_gil: return _PySlot_DTYPE_UINT64;
  ------------------
  |  |   95|     96|#define Py_mod_gil _Py_SLOT_COMPAT_VALUE(4, 87)
  |  |  ------------------
  |  |  |  |    7|     96|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (719:9): [True: 96, False: 3.17k]
  ------------------
  720|     10|        case Py_bf_getbuffer: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   96|     10|#define Py_bf_getbuffer _Py_SLOT_COMPAT_VALUE(1, 88)
  |  |  ------------------
  |  |  |  |    7|     10|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (720:9): [True: 10, False: 3.25k]
  ------------------
  721|     10|        case Py_bf_releasebuffer: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   97|     10|#define Py_bf_releasebuffer _Py_SLOT_COMPAT_VALUE(2, 89)
  |  |  ------------------
  |  |  |  |    7|     10|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (721:9): [True: 10, False: 3.25k]
  ------------------
  722|      0|        case Py_mp_ass_subscript: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   98|      0|#define Py_mp_ass_subscript _Py_SLOT_COMPAT_VALUE(3, 90)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (722:9): [True: 0, False: 3.26k]
  ------------------
  723|      0|        case Py_mp_length: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |   99|      0|#define Py_mp_length _Py_SLOT_COMPAT_VALUE(4, 91)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (723:9): [True: 0, False: 3.26k]
  ------------------
  724|      0|        case Py_slot_subslots: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  100|      0|#define Py_slot_subslots 92
  ------------------
  |  Branch (724:9): [True: 0, False: 3.26k]
  ------------------
  725|      0|        case Py_tp_slots: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  101|      0|#define Py_tp_slots 93
  ------------------
  |  Branch (725:9): [True: 0, False: 3.26k]
  ------------------
  726|      0|        case Py_mod_slots: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  102|      0|#define Py_mod_slots 94
  ------------------
  |  Branch (726:9): [True: 0, False: 3.26k]
  ------------------
  727|      0|        case Py_tp_name: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  103|      0|#define Py_tp_name 95
  ------------------
  |  Branch (727:9): [True: 0, False: 3.26k]
  ------------------
  728|      0|        case Py_tp_basicsize: return _PySlot_DTYPE_SIZE;
  ------------------
  |  |  104|      0|#define Py_tp_basicsize 96
  ------------------
  |  Branch (728:9): [True: 0, False: 3.26k]
  ------------------
  729|      0|        case Py_tp_extra_basicsize: return _PySlot_DTYPE_SIZE;
  ------------------
  |  |  105|      0|#define Py_tp_extra_basicsize 97
  ------------------
  |  Branch (729:9): [True: 0, False: 3.26k]
  ------------------
  730|      0|        case Py_tp_itemsize: return _PySlot_DTYPE_SIZE;
  ------------------
  |  |  106|      0|#define Py_tp_itemsize 98
  ------------------
  |  Branch (730:9): [True: 0, False: 3.26k]
  ------------------
  731|      0|        case Py_tp_flags: return _PySlot_DTYPE_UINT64;
  ------------------
  |  |  107|      0|#define Py_tp_flags 99
  ------------------
  |  Branch (731:9): [True: 0, False: 3.26k]
  ------------------
  732|      0|        case Py_mod_name: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  108|      0|#define Py_mod_name 100
  ------------------
  |  Branch (732:9): [True: 0, False: 3.26k]
  ------------------
  733|      0|        case Py_mod_doc: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  109|      0|#define Py_mod_doc 101
  ------------------
  |  Branch (733:9): [True: 0, False: 3.26k]
  ------------------
  734|      0|        case Py_mod_state_size: return _PySlot_DTYPE_SIZE;
  ------------------
  |  |  110|      0|#define Py_mod_state_size 102
  ------------------
  |  Branch (734:9): [True: 0, False: 3.26k]
  ------------------
  735|      0|        case Py_mod_methods: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  111|      0|#define Py_mod_methods 103
  ------------------
  |  Branch (735:9): [True: 0, False: 3.26k]
  ------------------
  736|      0|        case Py_mod_state_traverse: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |  112|      0|#define Py_mod_state_traverse 104
  ------------------
  |  Branch (736:9): [True: 0, False: 3.26k]
  ------------------
  737|      0|        case Py_mod_state_clear: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |  113|      0|#define Py_mod_state_clear 105
  ------------------
  |  Branch (737:9): [True: 0, False: 3.26k]
  ------------------
  738|      0|        case Py_mod_state_free: return _PySlot_DTYPE_FUNC;
  ------------------
  |  |  114|      0|#define Py_mod_state_free 106
  ------------------
  |  Branch (738:9): [True: 0, False: 3.26k]
  ------------------
  739|      0|        case Py_tp_metaclass: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  115|      0|#define Py_tp_metaclass 107
  ------------------
  |  Branch (739:9): [True: 0, False: 3.26k]
  ------------------
  740|      0|        case Py_tp_module: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  116|      0|#define Py_tp_module 108
  ------------------
  |  Branch (740:9): [True: 0, False: 3.26k]
  ------------------
  741|    120|        case Py_mod_abi: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  117|    120|#define Py_mod_abi 109
  ------------------
  |  Branch (741:9): [True: 120, False: 3.14k]
  ------------------
  742|      0|        case Py_mod_token: return _PySlot_DTYPE_PTR;
  ------------------
  |  |  118|      0|#define Py_mod_token 110
  ------------------
  |  Branch (742:9): [True: 0, False: 3.26k]
  ------------------
  743|      0|        default: return _PySlot_DTYPE_VOID;
  ------------------
  |  Branch (743:9): [True: 0, False: 3.26k]
  ------------------
  744|  3.26k|    }
  745|  3.26k|}
slots.c:_PySlot_get_must_be_static:
  948|    758|{
  949|    758|    switch (slot_id) {
  ------------------
  |  Branch (949:13): [True: 152, False: 606]
  ------------------
  950|     66|        case Py_tp_methods: return true;
  ------------------
  |  |   72|     66|#define Py_tp_methods 64
  ------------------
  |  Branch (950:9): [True: 66, False: 692]
  ------------------
  951|     54|        case Py_tp_members: return true;
  ------------------
  |  |   80|     54|#define Py_tp_members 72
  ------------------
  |  Branch (951:9): [True: 54, False: 704]
  ------------------
  952|     32|        case Py_tp_getset: return true;
  ------------------
  |  |   81|     32|#define Py_tp_getset 73
  ------------------
  |  Branch (952:9): [True: 32, False: 726]
  ------------------
  953|      0|        case Py_mod_methods: return true;
  ------------------
  |  |  111|      0|#define Py_mod_methods 103
  ------------------
  |  Branch (953:9): [True: 0, False: 758]
  ------------------
  954|    758|    }
  955|    606|    return false;
  956|    758|}
slots.c:_PySlot_get_null_handling:
  843|    758|{
  844|    758|    switch (slot_id) {
  845|      0|        case Py_slot_end:
  ------------------
  |  |   12|      0|#define Py_slot_end 0
  ------------------
  |  Branch (845:9): [True: 0, False: 758]
  ------------------
  846|     66|        case Py_tp_doc:
  ------------------
  |  |   64|     66|#define Py_tp_doc 56
  ------------------
  |  Branch (846:9): [True: 66, False: 692]
  ------------------
  847|     66|        case Py_tp_token:
  ------------------
  |  |   91|     66|#define Py_tp_token 83
  ------------------
  |  Branch (847:9): [True: 0, False: 758]
  ------------------
  848|    114|        case Py_mod_multiple_interpreters:
  ------------------
  |  |   94|    114|#define Py_mod_multiple_interpreters _Py_SLOT_COMPAT_VALUE(3, 86)
  |  |  ------------------
  |  |  |  |    7|    114|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (848:9): [True: 48, False: 710]
  ------------------
  849|    162|        case Py_mod_gil:
  ------------------
  |  |   95|    162|#define Py_mod_gil _Py_SLOT_COMPAT_VALUE(4, 87)
  |  |  ------------------
  |  |  |  |    7|    162|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (849:9): [True: 48, False: 710]
  ------------------
  850|    162|        case Py_slot_subslots:
  ------------------
  |  |  100|    162|#define Py_slot_subslots 92
  ------------------
  |  Branch (850:9): [True: 0, False: 758]
  ------------------
  851|    162|        case Py_tp_slots:
  ------------------
  |  |  101|    162|#define Py_tp_slots 93
  ------------------
  |  Branch (851:9): [True: 0, False: 758]
  ------------------
  852|    162|        case Py_mod_slots:
  ------------------
  |  |  102|    162|#define Py_mod_slots 94
  ------------------
  |  Branch (852:9): [True: 0, False: 758]
  ------------------
  853|    162|        case Py_tp_basicsize:
  ------------------
  |  |  104|    162|#define Py_tp_basicsize 96
  ------------------
  |  Branch (853:9): [True: 0, False: 758]
  ------------------
  854|    162|        case Py_tp_extra_basicsize:
  ------------------
  |  |  105|    162|#define Py_tp_extra_basicsize 97
  ------------------
  |  Branch (854:9): [True: 0, False: 758]
  ------------------
  855|    162|        case Py_tp_itemsize:
  ------------------
  |  |  106|    162|#define Py_tp_itemsize 98
  ------------------
  |  Branch (855:9): [True: 0, False: 758]
  ------------------
  856|    162|        case Py_tp_flags:
  ------------------
  |  |  107|    162|#define Py_tp_flags 99
  ------------------
  |  Branch (856:9): [True: 0, False: 758]
  ------------------
  857|    162|        case Py_mod_state_size:
  ------------------
  |  |  110|    162|#define Py_mod_state_size 102
  ------------------
  |  Branch (857:9): [True: 0, False: 758]
  ------------------
  858|    162|            return _PySlot_PROBLEM_ALLOW;
  859|      0|        case Py_mp_subscript:
  ------------------
  |  |   13|      0|#define Py_mp_subscript 5
  ------------------
  |  Branch (859:9): [True: 0, False: 758]
  ------------------
  860|      0|        case Py_nb_absolute:
  ------------------
  |  |   14|      0|#define Py_nb_absolute 6
  ------------------
  |  Branch (860:9): [True: 0, False: 758]
  ------------------
  861|      0|        case Py_nb_add:
  ------------------
  |  |   15|      0|#define Py_nb_add 7
  ------------------
  |  Branch (861:9): [True: 0, False: 758]
  ------------------
  862|      0|        case Py_nb_and:
  ------------------
  |  |   16|      0|#define Py_nb_and 8
  ------------------
  |  Branch (862:9): [True: 0, False: 758]
  ------------------
  863|      0|        case Py_nb_bool:
  ------------------
  |  |   17|      0|#define Py_nb_bool 9
  ------------------
  |  Branch (863:9): [True: 0, False: 758]
  ------------------
  864|      0|        case Py_nb_divmod:
  ------------------
  |  |   18|      0|#define Py_nb_divmod 10
  ------------------
  |  Branch (864:9): [True: 0, False: 758]
  ------------------
  865|      0|        case Py_nb_float:
  ------------------
  |  |   19|      0|#define Py_nb_float 11
  ------------------
  |  Branch (865:9): [True: 0, False: 758]
  ------------------
  866|      0|        case Py_nb_floor_divide:
  ------------------
  |  |   20|      0|#define Py_nb_floor_divide 12
  ------------------
  |  Branch (866:9): [True: 0, False: 758]
  ------------------
  867|      0|        case Py_nb_index:
  ------------------
  |  |   21|      0|#define Py_nb_index 13
  ------------------
  |  Branch (867:9): [True: 0, False: 758]
  ------------------
  868|      0|        case Py_nb_inplace_add:
  ------------------
  |  |   22|      0|#define Py_nb_inplace_add 14
  ------------------
  |  Branch (868:9): [True: 0, False: 758]
  ------------------
  869|      0|        case Py_nb_inplace_and:
  ------------------
  |  |   23|      0|#define Py_nb_inplace_and 15
  ------------------
  |  Branch (869:9): [True: 0, False: 758]
  ------------------
  870|      0|        case Py_nb_inplace_floor_divide:
  ------------------
  |  |   24|      0|#define Py_nb_inplace_floor_divide 16
  ------------------
  |  Branch (870:9): [True: 0, False: 758]
  ------------------
  871|      0|        case Py_nb_inplace_lshift:
  ------------------
  |  |   25|      0|#define Py_nb_inplace_lshift 17
  ------------------
  |  Branch (871:9): [True: 0, False: 758]
  ------------------
  872|      0|        case Py_nb_inplace_multiply:
  ------------------
  |  |   26|      0|#define Py_nb_inplace_multiply 18
  ------------------
  |  Branch (872:9): [True: 0, False: 758]
  ------------------
  873|      0|        case Py_nb_inplace_or:
  ------------------
  |  |   27|      0|#define Py_nb_inplace_or 19
  ------------------
  |  Branch (873:9): [True: 0, False: 758]
  ------------------
  874|      0|        case Py_nb_inplace_power:
  ------------------
  |  |   28|      0|#define Py_nb_inplace_power 20
  ------------------
  |  Branch (874:9): [True: 0, False: 758]
  ------------------
  875|      0|        case Py_nb_inplace_remainder:
  ------------------
  |  |   29|      0|#define Py_nb_inplace_remainder 21
  ------------------
  |  Branch (875:9): [True: 0, False: 758]
  ------------------
  876|      0|        case Py_nb_inplace_rshift:
  ------------------
  |  |   30|      0|#define Py_nb_inplace_rshift 22
  ------------------
  |  Branch (876:9): [True: 0, False: 758]
  ------------------
  877|      0|        case Py_nb_inplace_subtract:
  ------------------
  |  |   31|      0|#define Py_nb_inplace_subtract 23
  ------------------
  |  Branch (877:9): [True: 0, False: 758]
  ------------------
  878|      0|        case Py_nb_inplace_true_divide:
  ------------------
  |  |   32|      0|#define Py_nb_inplace_true_divide 24
  ------------------
  |  Branch (878:9): [True: 0, False: 758]
  ------------------
  879|      0|        case Py_nb_inplace_xor:
  ------------------
  |  |   33|      0|#define Py_nb_inplace_xor 25
  ------------------
  |  Branch (879:9): [True: 0, False: 758]
  ------------------
  880|      0|        case Py_nb_int:
  ------------------
  |  |   34|      0|#define Py_nb_int 26
  ------------------
  |  Branch (880:9): [True: 0, False: 758]
  ------------------
  881|      0|        case Py_nb_invert:
  ------------------
  |  |   35|      0|#define Py_nb_invert 27
  ------------------
  |  Branch (881:9): [True: 0, False: 758]
  ------------------
  882|      0|        case Py_nb_lshift:
  ------------------
  |  |   36|      0|#define Py_nb_lshift 28
  ------------------
  |  Branch (882:9): [True: 0, False: 758]
  ------------------
  883|      0|        case Py_nb_multiply:
  ------------------
  |  |   37|      0|#define Py_nb_multiply 29
  ------------------
  |  Branch (883:9): [True: 0, False: 758]
  ------------------
  884|      0|        case Py_nb_negative:
  ------------------
  |  |   38|      0|#define Py_nb_negative 30
  ------------------
  |  Branch (884:9): [True: 0, False: 758]
  ------------------
  885|      4|        case Py_nb_or:
  ------------------
  |  |   39|      4|#define Py_nb_or 31
  ------------------
  |  Branch (885:9): [True: 4, False: 754]
  ------------------
  886|      4|        case Py_nb_positive:
  ------------------
  |  |   40|      4|#define Py_nb_positive 32
  ------------------
  |  Branch (886:9): [True: 0, False: 758]
  ------------------
  887|      4|        case Py_nb_power:
  ------------------
  |  |   41|      4|#define Py_nb_power 33
  ------------------
  |  Branch (887:9): [True: 0, False: 758]
  ------------------
  888|      4|        case Py_nb_remainder:
  ------------------
  |  |   42|      4|#define Py_nb_remainder 34
  ------------------
  |  Branch (888:9): [True: 0, False: 758]
  ------------------
  889|      4|        case Py_nb_rshift:
  ------------------
  |  |   43|      4|#define Py_nb_rshift 35
  ------------------
  |  Branch (889:9): [True: 0, False: 758]
  ------------------
  890|      4|        case Py_nb_subtract:
  ------------------
  |  |   44|      4|#define Py_nb_subtract 36
  ------------------
  |  Branch (890:9): [True: 0, False: 758]
  ------------------
  891|      4|        case Py_nb_true_divide:
  ------------------
  |  |   45|      4|#define Py_nb_true_divide 37
  ------------------
  |  Branch (891:9): [True: 0, False: 758]
  ------------------
  892|      4|        case Py_nb_xor:
  ------------------
  |  |   46|      4|#define Py_nb_xor 38
  ------------------
  |  Branch (892:9): [True: 0, False: 758]
  ------------------
  893|      4|        case Py_sq_ass_item:
  ------------------
  |  |   47|      4|#define Py_sq_ass_item 39
  ------------------
  |  Branch (893:9): [True: 0, False: 758]
  ------------------
  894|      4|        case Py_sq_concat:
  ------------------
  |  |   48|      4|#define Py_sq_concat 40
  ------------------
  |  Branch (894:9): [True: 0, False: 758]
  ------------------
  895|      4|        case Py_sq_contains:
  ------------------
  |  |   49|      4|#define Py_sq_contains 41
  ------------------
  |  Branch (895:9): [True: 0, False: 758]
  ------------------
  896|      4|        case Py_sq_inplace_concat:
  ------------------
  |  |   50|      4|#define Py_sq_inplace_concat 42
  ------------------
  |  Branch (896:9): [True: 0, False: 758]
  ------------------
  897|      4|        case Py_sq_inplace_repeat:
  ------------------
  |  |   51|      4|#define Py_sq_inplace_repeat 43
  ------------------
  |  Branch (897:9): [True: 0, False: 758]
  ------------------
  898|      4|        case Py_sq_item:
  ------------------
  |  |   52|      4|#define Py_sq_item 44
  ------------------
  |  Branch (898:9): [True: 0, False: 758]
  ------------------
  899|      4|        case Py_sq_length:
  ------------------
  |  |   53|      4|#define Py_sq_length 45
  ------------------
  |  Branch (899:9): [True: 0, False: 758]
  ------------------
  900|      4|        case Py_sq_repeat:
  ------------------
  |  |   54|      4|#define Py_sq_repeat 46
  ------------------
  |  Branch (900:9): [True: 0, False: 758]
  ------------------
  901|     20|        case Py_tp_alloc:
  ------------------
  |  |   55|     20|#define Py_tp_alloc 47
  ------------------
  |  Branch (901:9): [True: 16, False: 742]
  ------------------
  902|     20|        case Py_tp_base:
  ------------------
  |  |   56|     20|#define Py_tp_base 48
  ------------------
  |  Branch (902:9): [True: 0, False: 758]
  ------------------
  903|     20|        case Py_tp_bases:
  ------------------
  |  |   57|     20|#define Py_tp_bases 49
  ------------------
  |  Branch (903:9): [True: 0, False: 758]
  ------------------
  904|     22|        case Py_tp_call:
  ------------------
  |  |   58|     22|#define Py_tp_call 50
  ------------------
  |  Branch (904:9): [True: 2, False: 756]
  ------------------
  905|     58|        case Py_tp_clear:
  ------------------
  |  |   59|     58|#define Py_tp_clear 51
  ------------------
  |  Branch (905:9): [True: 36, False: 722]
  ------------------
  906|    130|        case Py_tp_dealloc:
  ------------------
  |  |   60|    130|#define Py_tp_dealloc 52
  ------------------
  |  Branch (906:9): [True: 72, False: 686]
  ------------------
  907|    130|        case Py_tp_del:
  ------------------
  |  |   61|    130|#define Py_tp_del 53
  ------------------
  |  Branch (907:9): [True: 0, False: 758]
  ------------------
  908|    130|        case Py_tp_descr_get:
  ------------------
  |  |   62|    130|#define Py_tp_descr_get 54
  ------------------
  |  Branch (908:9): [True: 0, False: 758]
  ------------------
  909|    130|        case Py_tp_descr_set:
  ------------------
  |  |   63|    130|#define Py_tp_descr_set 55
  ------------------
  |  Branch (909:9): [True: 0, False: 758]
  ------------------
  910|    130|        case Py_tp_getattr:
  ------------------
  |  |   65|    130|#define Py_tp_getattr 57
  ------------------
  |  Branch (910:9): [True: 0, False: 758]
  ------------------
  911|    132|        case Py_tp_getattro:
  ------------------
  |  |   66|    132|#define Py_tp_getattro 58
  ------------------
  |  Branch (911:9): [True: 2, False: 756]
  ------------------
  912|    132|        case Py_tp_hash:
  ------------------
  |  |   67|    132|#define Py_tp_hash 59
  ------------------
  |  Branch (912:9): [True: 0, False: 758]
  ------------------
  913|    150|        case Py_tp_init:
  ------------------
  |  |   68|    150|#define Py_tp_init 60
  ------------------
  |  Branch (913:9): [True: 18, False: 740]
  ------------------
  914|    150|        case Py_tp_is_gc:
  ------------------
  |  |   69|    150|#define Py_tp_is_gc 61
  ------------------
  |  Branch (914:9): [True: 0, False: 758]
  ------------------
  915|    158|        case Py_tp_iter:
  ------------------
  |  |   70|    158|#define Py_tp_iter 62
  ------------------
  |  Branch (915:9): [True: 8, False: 750]
  ------------------
  916|    172|        case Py_tp_iternext:
  ------------------
  |  |   71|    172|#define Py_tp_iternext 63
  ------------------
  |  Branch (916:9): [True: 14, False: 744]
  ------------------
  917|    238|        case Py_tp_methods:
  ------------------
  |  |   72|    238|#define Py_tp_methods 64
  ------------------
  |  Branch (917:9): [True: 66, False: 692]
  ------------------
  918|    282|        case Py_tp_new:
  ------------------
  |  |   73|    282|#define Py_tp_new 65
  ------------------
  |  Branch (918:9): [True: 44, False: 714]
  ------------------
  919|    332|        case Py_tp_repr:
  ------------------
  |  |   74|    332|#define Py_tp_repr 66
  ------------------
  |  Branch (919:9): [True: 50, False: 708]
  ------------------
  920|    336|        case Py_tp_richcompare:
  ------------------
  |  |   75|    336|#define Py_tp_richcompare 67
  ------------------
  |  Branch (920:9): [True: 4, False: 754]
  ------------------
  921|    336|        case Py_tp_setattr:
  ------------------
  |  |   76|    336|#define Py_tp_setattr 68
  ------------------
  |  Branch (921:9): [True: 0, False: 758]
  ------------------
  922|    338|        case Py_tp_setattro:
  ------------------
  |  |   77|    338|#define Py_tp_setattro 69
  ------------------
  |  Branch (922:9): [True: 2, False: 756]
  ------------------
  923|    338|        case Py_tp_str:
  ------------------
  |  |   78|    338|#define Py_tp_str 70
  ------------------
  |  Branch (923:9): [True: 0, False: 758]
  ------------------
  924|    404|        case Py_tp_traverse:
  ------------------
  |  |   79|    404|#define Py_tp_traverse 71
  ------------------
  |  Branch (924:9): [True: 66, False: 692]
  ------------------
  925|    436|        case Py_tp_getset:
  ------------------
  |  |   81|    436|#define Py_tp_getset 73
  ------------------
  |  Branch (925:9): [True: 32, False: 726]
  ------------------
  926|    450|        case Py_tp_free:
  ------------------
  |  |   82|    450|#define Py_tp_free 74
  ------------------
  |  Branch (926:9): [True: 14, False: 744]
  ------------------
  927|    450|        case Py_nb_matrix_multiply:
  ------------------
  |  |   83|    450|#define Py_nb_matrix_multiply 75
  ------------------
  |  Branch (927:9): [True: 0, False: 758]
  ------------------
  928|    450|        case Py_nb_inplace_matrix_multiply:
  ------------------
  |  |   84|    450|#define Py_nb_inplace_matrix_multiply 76
  ------------------
  |  Branch (928:9): [True: 0, False: 758]
  ------------------
  929|    450|        case Py_am_await:
  ------------------
  |  |   85|    450|#define Py_am_await 77
  ------------------
  |  Branch (929:9): [True: 0, False: 758]
  ------------------
  930|    450|        case Py_am_aiter:
  ------------------
  |  |   86|    450|#define Py_am_aiter 78
  ------------------
  |  Branch (930:9): [True: 0, False: 758]
  ------------------
  931|    450|        case Py_am_anext:
  ------------------
  |  |   87|    450|#define Py_am_anext 79
  ------------------
  |  Branch (931:9): [True: 0, False: 758]
  ------------------
  932|    454|        case Py_tp_finalize:
  ------------------
  |  |   88|    454|#define Py_tp_finalize 80
  ------------------
  |  Branch (932:9): [True: 4, False: 754]
  ------------------
  933|    454|        case Py_am_send:
  ------------------
  |  |   89|    454|#define Py_am_send 81
  ------------------
  |  Branch (933:9): [True: 0, False: 758]
  ------------------
  934|    454|        case Py_tp_vectorcall:
  ------------------
  |  |   90|    454|#define Py_tp_vectorcall 82
  ------------------
  |  Branch (934:9): [True: 0, False: 758]
  ------------------
  935|    454|        case Py_mod_create:
  ------------------
  |  |   92|    454|#define Py_mod_create _Py_SLOT_COMPAT_VALUE(1, 84)
  |  |  ------------------
  |  |  |  |    7|    454|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (935:9): [True: 0, False: 758]
  ------------------
  936|    456|        case Py_bf_getbuffer:
  ------------------
  |  |   96|    456|#define Py_bf_getbuffer _Py_SLOT_COMPAT_VALUE(1, 88)
  |  |  ------------------
  |  |  |  |    7|    456|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (936:9): [True: 2, False: 756]
  ------------------
  937|    458|        case Py_bf_releasebuffer:
  ------------------
  |  |   97|    458|#define Py_bf_releasebuffer _Py_SLOT_COMPAT_VALUE(2, 89)
  |  |  ------------------
  |  |  |  |    7|    458|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (937:9): [True: 2, False: 756]
  ------------------
  938|    458|        case Py_mp_ass_subscript:
  ------------------
  |  |   98|    458|#define Py_mp_ass_subscript _Py_SLOT_COMPAT_VALUE(3, 90)
  |  |  ------------------
  |  |  |  |    7|    458|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (938:9): [True: 0, False: 758]
  ------------------
  939|    458|        case Py_mp_length:
  ------------------
  |  |   99|    458|#define Py_mp_length _Py_SLOT_COMPAT_VALUE(4, 91)
  |  |  ------------------
  |  |  |  |    7|    458|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (939:9): [True: 0, False: 758]
  ------------------
  940|    458|            return _PySlot_PROBLEM_DEPRECATED;
  941|    138|        default:
  ------------------
  |  Branch (941:9): [True: 138, False: 620]
  ------------------
  942|    138|            return _PySlot_PROBLEM_REJECT;
  943|    758|    }
  944|    758|}
slots.c:_PySlot_get_duplicate_handling:
  749|    758|{
  750|    758|    switch (slot_id) {
  751|      0|        case Py_mp_subscript:
  ------------------
  |  |   13|      0|#define Py_mp_subscript 5
  ------------------
  |  Branch (751:9): [True: 0, False: 758]
  ------------------
  752|      0|        case Py_nb_absolute:
  ------------------
  |  |   14|      0|#define Py_nb_absolute 6
  ------------------
  |  Branch (752:9): [True: 0, False: 758]
  ------------------
  753|      0|        case Py_nb_add:
  ------------------
  |  |   15|      0|#define Py_nb_add 7
  ------------------
  |  Branch (753:9): [True: 0, False: 758]
  ------------------
  754|      0|        case Py_nb_and:
  ------------------
  |  |   16|      0|#define Py_nb_and 8
  ------------------
  |  Branch (754:9): [True: 0, False: 758]
  ------------------
  755|      0|        case Py_nb_bool:
  ------------------
  |  |   17|      0|#define Py_nb_bool 9
  ------------------
  |  Branch (755:9): [True: 0, False: 758]
  ------------------
  756|      0|        case Py_nb_divmod:
  ------------------
  |  |   18|      0|#define Py_nb_divmod 10
  ------------------
  |  Branch (756:9): [True: 0, False: 758]
  ------------------
  757|      0|        case Py_nb_float:
  ------------------
  |  |   19|      0|#define Py_nb_float 11
  ------------------
  |  Branch (757:9): [True: 0, False: 758]
  ------------------
  758|      0|        case Py_nb_floor_divide:
  ------------------
  |  |   20|      0|#define Py_nb_floor_divide 12
  ------------------
  |  Branch (758:9): [True: 0, False: 758]
  ------------------
  759|      0|        case Py_nb_index:
  ------------------
  |  |   21|      0|#define Py_nb_index 13
  ------------------
  |  Branch (759:9): [True: 0, False: 758]
  ------------------
  760|      0|        case Py_nb_inplace_add:
  ------------------
  |  |   22|      0|#define Py_nb_inplace_add 14
  ------------------
  |  Branch (760:9): [True: 0, False: 758]
  ------------------
  761|      0|        case Py_nb_inplace_and:
  ------------------
  |  |   23|      0|#define Py_nb_inplace_and 15
  ------------------
  |  Branch (761:9): [True: 0, False: 758]
  ------------------
  762|      0|        case Py_nb_inplace_floor_divide:
  ------------------
  |  |   24|      0|#define Py_nb_inplace_floor_divide 16
  ------------------
  |  Branch (762:9): [True: 0, False: 758]
  ------------------
  763|      0|        case Py_nb_inplace_lshift:
  ------------------
  |  |   25|      0|#define Py_nb_inplace_lshift 17
  ------------------
  |  Branch (763:9): [True: 0, False: 758]
  ------------------
  764|      0|        case Py_nb_inplace_multiply:
  ------------------
  |  |   26|      0|#define Py_nb_inplace_multiply 18
  ------------------
  |  Branch (764:9): [True: 0, False: 758]
  ------------------
  765|      0|        case Py_nb_inplace_or:
  ------------------
  |  |   27|      0|#define Py_nb_inplace_or 19
  ------------------
  |  Branch (765:9): [True: 0, False: 758]
  ------------------
  766|      0|        case Py_nb_inplace_power:
  ------------------
  |  |   28|      0|#define Py_nb_inplace_power 20
  ------------------
  |  Branch (766:9): [True: 0, False: 758]
  ------------------
  767|      0|        case Py_nb_inplace_remainder:
  ------------------
  |  |   29|      0|#define Py_nb_inplace_remainder 21
  ------------------
  |  Branch (767:9): [True: 0, False: 758]
  ------------------
  768|      0|        case Py_nb_inplace_rshift:
  ------------------
  |  |   30|      0|#define Py_nb_inplace_rshift 22
  ------------------
  |  Branch (768:9): [True: 0, False: 758]
  ------------------
  769|      0|        case Py_nb_inplace_subtract:
  ------------------
  |  |   31|      0|#define Py_nb_inplace_subtract 23
  ------------------
  |  Branch (769:9): [True: 0, False: 758]
  ------------------
  770|      0|        case Py_nb_inplace_true_divide:
  ------------------
  |  |   32|      0|#define Py_nb_inplace_true_divide 24
  ------------------
  |  Branch (770:9): [True: 0, False: 758]
  ------------------
  771|      0|        case Py_nb_inplace_xor:
  ------------------
  |  |   33|      0|#define Py_nb_inplace_xor 25
  ------------------
  |  Branch (771:9): [True: 0, False: 758]
  ------------------
  772|      0|        case Py_nb_int:
  ------------------
  |  |   34|      0|#define Py_nb_int 26
  ------------------
  |  Branch (772:9): [True: 0, False: 758]
  ------------------
  773|      0|        case Py_nb_invert:
  ------------------
  |  |   35|      0|#define Py_nb_invert 27
  ------------------
  |  Branch (773:9): [True: 0, False: 758]
  ------------------
  774|      0|        case Py_nb_lshift:
  ------------------
  |  |   36|      0|#define Py_nb_lshift 28
  ------------------
  |  Branch (774:9): [True: 0, False: 758]
  ------------------
  775|      0|        case Py_nb_multiply:
  ------------------
  |  |   37|      0|#define Py_nb_multiply 29
  ------------------
  |  Branch (775:9): [True: 0, False: 758]
  ------------------
  776|      0|        case Py_nb_negative:
  ------------------
  |  |   38|      0|#define Py_nb_negative 30
  ------------------
  |  Branch (776:9): [True: 0, False: 758]
  ------------------
  777|      4|        case Py_nb_or:
  ------------------
  |  |   39|      4|#define Py_nb_or 31
  ------------------
  |  Branch (777:9): [True: 4, False: 754]
  ------------------
  778|      4|        case Py_nb_positive:
  ------------------
  |  |   40|      4|#define Py_nb_positive 32
  ------------------
  |  Branch (778:9): [True: 0, False: 758]
  ------------------
  779|      4|        case Py_nb_power:
  ------------------
  |  |   41|      4|#define Py_nb_power 33
  ------------------
  |  Branch (779:9): [True: 0, False: 758]
  ------------------
  780|      4|        case Py_nb_remainder:
  ------------------
  |  |   42|      4|#define Py_nb_remainder 34
  ------------------
  |  Branch (780:9): [True: 0, False: 758]
  ------------------
  781|      4|        case Py_nb_rshift:
  ------------------
  |  |   43|      4|#define Py_nb_rshift 35
  ------------------
  |  Branch (781:9): [True: 0, False: 758]
  ------------------
  782|      4|        case Py_nb_subtract:
  ------------------
  |  |   44|      4|#define Py_nb_subtract 36
  ------------------
  |  Branch (782:9): [True: 0, False: 758]
  ------------------
  783|      4|        case Py_nb_true_divide:
  ------------------
  |  |   45|      4|#define Py_nb_true_divide 37
  ------------------
  |  Branch (783:9): [True: 0, False: 758]
  ------------------
  784|      4|        case Py_nb_xor:
  ------------------
  |  |   46|      4|#define Py_nb_xor 38
  ------------------
  |  Branch (784:9): [True: 0, False: 758]
  ------------------
  785|      4|        case Py_sq_ass_item:
  ------------------
  |  |   47|      4|#define Py_sq_ass_item 39
  ------------------
  |  Branch (785:9): [True: 0, False: 758]
  ------------------
  786|      4|        case Py_sq_concat:
  ------------------
  |  |   48|      4|#define Py_sq_concat 40
  ------------------
  |  Branch (786:9): [True: 0, False: 758]
  ------------------
  787|      4|        case Py_sq_contains:
  ------------------
  |  |   49|      4|#define Py_sq_contains 41
  ------------------
  |  Branch (787:9): [True: 0, False: 758]
  ------------------
  788|      4|        case Py_sq_inplace_concat:
  ------------------
  |  |   50|      4|#define Py_sq_inplace_concat 42
  ------------------
  |  Branch (788:9): [True: 0, False: 758]
  ------------------
  789|      4|        case Py_sq_inplace_repeat:
  ------------------
  |  |   51|      4|#define Py_sq_inplace_repeat 43
  ------------------
  |  Branch (789:9): [True: 0, False: 758]
  ------------------
  790|      4|        case Py_sq_item:
  ------------------
  |  |   52|      4|#define Py_sq_item 44
  ------------------
  |  Branch (790:9): [True: 0, False: 758]
  ------------------
  791|      4|        case Py_sq_length:
  ------------------
  |  |   53|      4|#define Py_sq_length 45
  ------------------
  |  Branch (791:9): [True: 0, False: 758]
  ------------------
  792|      4|        case Py_sq_repeat:
  ------------------
  |  |   54|      4|#define Py_sq_repeat 46
  ------------------
  |  Branch (792:9): [True: 0, False: 758]
  ------------------
  793|     20|        case Py_tp_alloc:
  ------------------
  |  |   55|     20|#define Py_tp_alloc 47
  ------------------
  |  Branch (793:9): [True: 16, False: 742]
  ------------------
  794|     20|        case Py_tp_base:
  ------------------
  |  |   56|     20|#define Py_tp_base 48
  ------------------
  |  Branch (794:9): [True: 0, False: 758]
  ------------------
  795|     20|        case Py_tp_bases:
  ------------------
  |  |   57|     20|#define Py_tp_bases 49
  ------------------
  |  Branch (795:9): [True: 0, False: 758]
  ------------------
  796|     22|        case Py_tp_call:
  ------------------
  |  |   58|     22|#define Py_tp_call 50
  ------------------
  |  Branch (796:9): [True: 2, False: 756]
  ------------------
  797|     58|        case Py_tp_clear:
  ------------------
  |  |   59|     58|#define Py_tp_clear 51
  ------------------
  |  Branch (797:9): [True: 36, False: 722]
  ------------------
  798|    130|        case Py_tp_dealloc:
  ------------------
  |  |   60|    130|#define Py_tp_dealloc 52
  ------------------
  |  Branch (798:9): [True: 72, False: 686]
  ------------------
  799|    130|        case Py_tp_del:
  ------------------
  |  |   61|    130|#define Py_tp_del 53
  ------------------
  |  Branch (799:9): [True: 0, False: 758]
  ------------------
  800|    130|        case Py_tp_descr_get:
  ------------------
  |  |   62|    130|#define Py_tp_descr_get 54
  ------------------
  |  Branch (800:9): [True: 0, False: 758]
  ------------------
  801|    130|        case Py_tp_descr_set:
  ------------------
  |  |   63|    130|#define Py_tp_descr_set 55
  ------------------
  |  Branch (801:9): [True: 0, False: 758]
  ------------------
  802|    130|        case Py_tp_getattr:
  ------------------
  |  |   65|    130|#define Py_tp_getattr 57
  ------------------
  |  Branch (802:9): [True: 0, False: 758]
  ------------------
  803|    132|        case Py_tp_getattro:
  ------------------
  |  |   66|    132|#define Py_tp_getattro 58
  ------------------
  |  Branch (803:9): [True: 2, False: 756]
  ------------------
  804|    132|        case Py_tp_hash:
  ------------------
  |  |   67|    132|#define Py_tp_hash 59
  ------------------
  |  Branch (804:9): [True: 0, False: 758]
  ------------------
  805|    150|        case Py_tp_init:
  ------------------
  |  |   68|    150|#define Py_tp_init 60
  ------------------
  |  Branch (805:9): [True: 18, False: 740]
  ------------------
  806|    150|        case Py_tp_is_gc:
  ------------------
  |  |   69|    150|#define Py_tp_is_gc 61
  ------------------
  |  Branch (806:9): [True: 0, False: 758]
  ------------------
  807|    158|        case Py_tp_iter:
  ------------------
  |  |   70|    158|#define Py_tp_iter 62
  ------------------
  |  Branch (807:9): [True: 8, False: 750]
  ------------------
  808|    172|        case Py_tp_iternext:
  ------------------
  |  |   71|    172|#define Py_tp_iternext 63
  ------------------
  |  Branch (808:9): [True: 14, False: 744]
  ------------------
  809|    238|        case Py_tp_methods:
  ------------------
  |  |   72|    238|#define Py_tp_methods 64
  ------------------
  |  Branch (809:9): [True: 66, False: 692]
  ------------------
  810|    282|        case Py_tp_new:
  ------------------
  |  |   73|    282|#define Py_tp_new 65
  ------------------
  |  Branch (810:9): [True: 44, False: 714]
  ------------------
  811|    332|        case Py_tp_repr:
  ------------------
  |  |   74|    332|#define Py_tp_repr 66
  ------------------
  |  Branch (811:9): [True: 50, False: 708]
  ------------------
  812|    336|        case Py_tp_richcompare:
  ------------------
  |  |   75|    336|#define Py_tp_richcompare 67
  ------------------
  |  Branch (812:9): [True: 4, False: 754]
  ------------------
  813|    336|        case Py_tp_setattr:
  ------------------
  |  |   76|    336|#define Py_tp_setattr 68
  ------------------
  |  Branch (813:9): [True: 0, False: 758]
  ------------------
  814|    338|        case Py_tp_setattro:
  ------------------
  |  |   77|    338|#define Py_tp_setattro 69
  ------------------
  |  Branch (814:9): [True: 2, False: 756]
  ------------------
  815|    338|        case Py_tp_str:
  ------------------
  |  |   78|    338|#define Py_tp_str 70
  ------------------
  |  Branch (815:9): [True: 0, False: 758]
  ------------------
  816|    404|        case Py_tp_traverse:
  ------------------
  |  |   79|    404|#define Py_tp_traverse 71
  ------------------
  |  Branch (816:9): [True: 66, False: 692]
  ------------------
  817|    436|        case Py_tp_getset:
  ------------------
  |  |   81|    436|#define Py_tp_getset 73
  ------------------
  |  Branch (817:9): [True: 32, False: 726]
  ------------------
  818|    450|        case Py_tp_free:
  ------------------
  |  |   82|    450|#define Py_tp_free 74
  ------------------
  |  Branch (818:9): [True: 14, False: 744]
  ------------------
  819|    450|        case Py_nb_matrix_multiply:
  ------------------
  |  |   83|    450|#define Py_nb_matrix_multiply 75
  ------------------
  |  Branch (819:9): [True: 0, False: 758]
  ------------------
  820|    450|        case Py_nb_inplace_matrix_multiply:
  ------------------
  |  |   84|    450|#define Py_nb_inplace_matrix_multiply 76
  ------------------
  |  Branch (820:9): [True: 0, False: 758]
  ------------------
  821|    450|        case Py_am_await:
  ------------------
  |  |   85|    450|#define Py_am_await 77
  ------------------
  |  Branch (821:9): [True: 0, False: 758]
  ------------------
  822|    450|        case Py_am_aiter:
  ------------------
  |  |   86|    450|#define Py_am_aiter 78
  ------------------
  |  Branch (822:9): [True: 0, False: 758]
  ------------------
  823|    450|        case Py_am_anext:
  ------------------
  |  |   87|    450|#define Py_am_anext 79
  ------------------
  |  Branch (823:9): [True: 0, False: 758]
  ------------------
  824|    454|        case Py_tp_finalize:
  ------------------
  |  |   88|    454|#define Py_tp_finalize 80
  ------------------
  |  Branch (824:9): [True: 4, False: 754]
  ------------------
  825|    454|        case Py_am_send:
  ------------------
  |  |   89|    454|#define Py_am_send 81
  ------------------
  |  Branch (825:9): [True: 0, False: 758]
  ------------------
  826|    454|        case Py_tp_vectorcall:
  ------------------
  |  |   90|    454|#define Py_tp_vectorcall 82
  ------------------
  |  Branch (826:9): [True: 0, False: 758]
  ------------------
  827|    454|        case Py_tp_token:
  ------------------
  |  |   91|    454|#define Py_tp_token 83
  ------------------
  |  Branch (827:9): [True: 0, False: 758]
  ------------------
  828|    456|        case Py_bf_getbuffer:
  ------------------
  |  |   96|    456|#define Py_bf_getbuffer _Py_SLOT_COMPAT_VALUE(1, 88)
  |  |  ------------------
  |  |  |  |    7|    456|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (828:9): [True: 2, False: 756]
  ------------------
  829|    458|        case Py_bf_releasebuffer:
  ------------------
  |  |   97|    458|#define Py_bf_releasebuffer _Py_SLOT_COMPAT_VALUE(2, 89)
  |  |  ------------------
  |  |  |  |    7|    458|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (829:9): [True: 2, False: 756]
  ------------------
  830|    458|        case Py_mp_ass_subscript:
  ------------------
  |  |   98|    458|#define Py_mp_ass_subscript _Py_SLOT_COMPAT_VALUE(3, 90)
  |  |  ------------------
  |  |  |  |    7|    458|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (830:9): [True: 0, False: 758]
  ------------------
  831|    458|        case Py_mp_length:
  ------------------
  |  |   99|    458|#define Py_mp_length _Py_SLOT_COMPAT_VALUE(4, 91)
  |  |  ------------------
  |  |  |  |    7|    458|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (831:9): [True: 0, False: 758]
  ------------------
  832|    458|            return _PySlot_PROBLEM_DEPRECATED;
  833|     44|        case Py_mod_exec:
  ------------------
  |  |   93|     44|#define Py_mod_exec _Py_SLOT_COMPAT_VALUE(2, 85)
  |  |  ------------------
  |  |  |  |    7|     44|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (833:9): [True: 44, False: 714]
  ------------------
  834|     84|        case Py_mod_abi:
  ------------------
  |  |  117|     84|#define Py_mod_abi 109
  ------------------
  |  Branch (834:9): [True: 40, False: 718]
  ------------------
  835|     84|            return _PySlot_PROBLEM_ALLOW;
  836|    216|        default:
  ------------------
  |  Branch (836:9): [True: 216, False: 542]
  ------------------
  837|    216|            return _PySlot_PROBLEM_REJECT;
  838|    758|    }
  839|    758|}

call.c:_PyThreadState_PushCStackRef:
  766|    616|{
  767|       |#ifdef Py_GIL_DISABLED
  768|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  769|       |    ref->next = tstate_impl->c_stack_refs;
  770|       |    tstate_impl->c_stack_refs = ref;
  771|       |#endif
  772|    616|    ref->ref = PyStackRef_NULL;
  773|    616|}
call.c:PyStackRef_FromPyObjectBorrow:
  615|    308|{
  616|    308|    assert(obj != NULL);
  ------------------
  |  Branch (616:5): [True: 308, False: 0]
  ------------------
  617|    308|    return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT};
  ------------------
  |  |   55|    308|#define Py_TAG_REFCNT 1
  ------------------
  618|    308|}
call.c:_PyThreadState_PopCStackRef:
  784|    616|{
  785|       |#ifdef Py_GIL_DISABLED
  786|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  787|       |    assert(tstate_impl->c_stack_refs == ref);
  788|       |    tstate_impl->c_stack_refs = ref->next;
  789|       |#endif
  790|    616|    PyStackRef_XCLOSE(ref->ref);
  791|    616|}
call.c:PyStackRef_XCLOSE:
  701|    616|{
  702|    616|    assert(ref.bits != 0);
  ------------------
  |  Branch (702:5): [True: 616, False: 0]
  ------------------
  703|    616|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (703:9): [True: 308, False: 308]
  ------------------
  704|    308|        assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (704:9): [True: 308, False: 0]
  ------------------
  705|    308|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|    308|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    308|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    308|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  706|    308|    }
  707|    616|}
call.c:PyStackRef_RefcountOnObject:
  522|    616|{
  523|    616|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|    616|#define Py_TAG_REFCNT 1
  ------------------
  524|    616|}
call.c:PyStackRef_AsPyObjectBorrow:
  528|    616|{
  529|    616|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 616, False: 0]
  ------------------
  530|    616|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|    616|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|    616|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|    616|}
call.c:PyStackRef_IsTaggedInt:
  428|    616|{
  429|    616|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|    616|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|    616|#define Py_INT_TAG 3
  ------------------
  430|    616|}
listobject.c:PyStackRef_AsPyObjectSteal:
  542|     58|{
  543|     58|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (543:5): [True: 58, False: 0]
  ------------------
  544|     58|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (544:5): [True: 58, False: 0]
  ------------------
  545|     58|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (545:9): [True: 16, False: 42]
  ------------------
  546|     16|        return BITS_TO_PTR(ref);
  ------------------
  |  |  464|     16|#define BITS_TO_PTR(REF) ((PyObject *)((REF).bits))
  ------------------
  547|     16|    }
  548|     42|    else {
  549|     42|        return Py_NewRef(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  550|     42|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  550|     42|    }
  551|     58|}
listobject.c:PyStackRef_IsTaggedInt:
  428|     58|{
  429|     58|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|     58|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|     58|#define Py_INT_TAG 3
  ------------------
  430|     58|}
listobject.c:PyStackRef_RefcountOnObject:
  522|     58|{
  523|     58|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|     58|#define Py_TAG_REFCNT 1
  ------------------
  524|     58|}
longobject.c:PyStackRef_FromPyObjectBorrow:
  615|      8|{
  616|      8|    assert(obj != NULL);
  ------------------
  |  Branch (616:5): [True: 8, False: 0]
  ------------------
  617|      8|    return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT};
  ------------------
  |  |   55|      8|#define Py_TAG_REFCNT 1
  ------------------
  618|      8|}
dictobject.c:_PyStackRef_FromPyObjectNew:
  583|  7.44k|{
  584|  7.44k|    assert(obj != NULL);
  ------------------
  |  Branch (584:5): [True: 7.44k, False: 0]
  ------------------
  585|       |#ifdef Py_GIL_DISABLED
  586|       |    if (_PyObject_HasDeferredRefcount(obj)) {
  587|       |        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  588|       |    }
  589|       |#else
  590|  7.44k|    if (_Py_IsImmortal(obj)) {
  ------------------
  |  |  137|  7.44k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  7.44k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.44k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 386, False: 7.05k]
  |  |  ------------------
  ------------------
  591|    386|        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  ------------------
  |  |   55|    386|#define Py_TAG_REFCNT 1
  ------------------
  592|    386|    }
  593|  7.05k|#endif
  594|  7.05k|    _Py_INCREF_MORTAL(obj);
  595|  7.05k|    _PyStackRef ref = (_PyStackRef){ .bits = (uintptr_t)obj };
  596|  7.05k|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|  7.05k|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  597|  7.05k|    return ref;
  598|  7.44k|}
dictobject.c:PyStackRef_RefcountOnObject:
  522|  1.50k|{
  523|  1.50k|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|  1.50k|#define Py_TAG_REFCNT 1
  ------------------
  524|  1.50k|}
dictobject.c:PyStackRef_AsPyObjectBorrow:
  528|  1.50k|{
  529|  1.50k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 1.50k, False: 0]
  ------------------
  530|  1.50k|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|  1.50k|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|  1.50k|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|  1.50k|}
dictobject.c:PyStackRef_IsTaggedInt:
  428|  1.50k|{
  429|  1.50k|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|  1.50k|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|  1.50k|#define Py_INT_TAG 3
  ------------------
  430|  1.50k|}
dictobject.c:PyStackRef_CLOSE:
  679|  1.50k|{
  680|  1.50k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (680:5): [True: 1.50k, False: 0]
  ------------------
  681|  1.50k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (681:9): [True: 1.50k, False: 0]
  ------------------
  682|  1.50k|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|  1.50k|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.50k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.50k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  683|  1.50k|    }
  684|  1.50k|}
object.c:PyStackRef_FromPyObjectSteal:
  555|  1.60k|{
  556|  1.60k|    assert(obj != NULL);
  ------------------
  |  Branch (556:5): [True: 1.60k, False: 0]
  ------------------
  557|       |#ifdef Py_GIL_DISABLED
  558|       |    return (_PyStackRef){ .bits = (uintptr_t)obj };
  559|       |#else
  560|  1.60k|#  if SIZEOF_VOID_P > 4
  561|  1.60k|    unsigned int tag = obj->ob_flags & Py_TAG_REFCNT;
  ------------------
  |  |   55|  1.60k|#define Py_TAG_REFCNT 1
  ------------------
  562|       |#  else
  563|       |    unsigned int tag = _Py_IsImmortal(obj) ? Py_TAG_REFCNT : 0;
  564|       |#  endif
  565|  1.60k|    _PyStackRef ref = ((_PyStackRef){.bits = ((uintptr_t)(obj)) | tag});
  566|  1.60k|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|  1.60k|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  567|  1.60k|    return ref;
  568|  1.60k|#endif
  569|  1.60k|}
object.c:PyStackRef_AsPyObjectBorrow:
  528|  8.00k|{
  529|  8.00k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 8.00k, False: 0]
  ------------------
  530|  8.00k|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|  8.00k|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|  8.00k|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|  8.00k|}
object.c:PyStackRef_XCLOSE:
  701|  7.11k|{
  702|  7.11k|    assert(ref.bits != 0);
  ------------------
  |  Branch (702:5): [True: 7.11k, False: 0]
  ------------------
  703|  7.11k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (703:9): [True: 1.49k, False: 5.61k]
  ------------------
  704|  1.49k|        assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (704:9): [True: 1.49k, False: 0]
  ------------------
  705|  1.49k|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|  1.49k|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.49k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.49k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  706|  1.49k|    }
  707|  7.11k|}
object.c:PyStackRef_RefcountOnObject:
  522|  7.12k|{
  523|  7.12k|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|  7.12k|#define Py_TAG_REFCNT 1
  ------------------
  524|  7.12k|}
object.c:_PyThreadState_PushCStackRef:
  766|  6.61k|{
  767|       |#ifdef Py_GIL_DISABLED
  768|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  769|       |    ref->next = tstate_impl->c_stack_refs;
  770|       |    tstate_impl->c_stack_refs = ref;
  771|       |#endif
  772|  6.61k|    ref->ref = PyStackRef_NULL;
  773|  6.61k|}
object.c:PyStackRef_AsPyObjectSteal:
  542|      6|{
  543|      6|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (543:5): [True: 6, False: 0]
  ------------------
  544|      6|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (544:5): [True: 6, False: 0]
  ------------------
  545|      6|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (545:9): [True: 0, False: 6]
  ------------------
  546|      0|        return BITS_TO_PTR(ref);
  ------------------
  |  |  464|      0|#define BITS_TO_PTR(REF) ((PyObject *)((REF).bits))
  ------------------
  547|      0|    }
  548|      6|    else {
  549|      6|        return Py_NewRef(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  550|      6|    }
  551|      6|}
object.c:_PyThreadState_PopCStackRef:
  784|  6.61k|{
  785|       |#ifdef Py_GIL_DISABLED
  786|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  787|       |    assert(tstate_impl->c_stack_refs == ref);
  788|       |    tstate_impl->c_stack_refs = ref->next;
  789|       |#endif
  790|  6.61k|    PyStackRef_XCLOSE(ref->ref);
  791|  6.61k|}
object.c:PyStackRef_IsTaggedInt:
  428|  8.01k|{
  429|  8.01k|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|  8.01k|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|  8.01k|#define Py_INT_TAG 3
  ------------------
  430|  8.01k|}
tupleobject.c:PyStackRef_AsPyObjectSteal:
  542|  1.68k|{
  543|  1.68k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (543:5): [True: 1.68k, False: 0]
  ------------------
  544|  1.68k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (544:5): [True: 1.68k, False: 0]
  ------------------
  545|  1.68k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (545:9): [True: 454, False: 1.23k]
  ------------------
  546|    454|        return BITS_TO_PTR(ref);
  ------------------
  |  |  464|    454|#define BITS_TO_PTR(REF) ((PyObject *)((REF).bits))
  ------------------
  547|    454|    }
  548|  1.23k|    else {
  549|  1.23k|        return Py_NewRef(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  550|  1.23k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.23k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.23k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  550|  1.23k|    }
  551|  1.68k|}
tupleobject.c:PyStackRef_IsTaggedInt:
  428|  1.68k|{
  429|  1.68k|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|  1.68k|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|  1.68k|#define Py_INT_TAG 3
  ------------------
  430|  1.68k|}
tupleobject.c:PyStackRef_RefcountOnObject:
  522|  1.68k|{
  523|  1.68k|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|  1.68k|#define Py_TAG_REFCNT 1
  ------------------
  524|  1.68k|}
typeobject.c:PyStackRef_AsPyObjectBorrow:
  528|  10.1k|{
  529|  10.1k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 10.1k, False: 0]
  ------------------
  530|  10.1k|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|  10.1k|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|  10.1k|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|  10.1k|}
typeobject.c:PyStackRef_IsTaggedInt:
  428|  11.5k|{
  429|  11.5k|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|  11.5k|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|  11.5k|#define Py_INT_TAG 3
  ------------------
  430|  11.5k|}
typeobject.c:PyStackRef_XCLOSE:
  701|  24.1k|{
  702|  24.1k|    assert(ref.bits != 0);
  ------------------
  |  Branch (702:5): [True: 24.1k, False: 0]
  ------------------
  703|  24.1k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (703:9): [True: 19.8k, False: 4.36k]
  ------------------
  704|  19.8k|        assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (704:9): [True: 19.8k, False: 0]
  ------------------
  705|  19.8k|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|  19.8k|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  19.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  19.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  706|  19.8k|    }
  707|  24.1k|}
typeobject.c:PyStackRef_RefcountOnObject:
  522|  29.0k|{
  523|  29.0k|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|  29.0k|#define Py_TAG_REFCNT 1
  ------------------
  524|  29.0k|}
typeobject.c:PyStackRef_FromPyObjectSteal:
  555|  1.04k|{
  556|  1.04k|    assert(obj != NULL);
  ------------------
  |  Branch (556:5): [True: 1.04k, False: 0]
  ------------------
  557|       |#ifdef Py_GIL_DISABLED
  558|       |    return (_PyStackRef){ .bits = (uintptr_t)obj };
  559|       |#else
  560|  1.04k|#  if SIZEOF_VOID_P > 4
  561|  1.04k|    unsigned int tag = obj->ob_flags & Py_TAG_REFCNT;
  ------------------
  |  |   55|  1.04k|#define Py_TAG_REFCNT 1
  ------------------
  562|       |#  else
  563|       |    unsigned int tag = _Py_IsImmortal(obj) ? Py_TAG_REFCNT : 0;
  564|       |#  endif
  565|  1.04k|    _PyStackRef ref = ((_PyStackRef){.bits = ((uintptr_t)(obj)) | tag});
  566|  1.04k|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|  1.04k|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  567|  1.04k|    return ref;
  568|  1.04k|#endif
  569|  1.04k|}
typeobject.c:PyStackRef_AsPyObjectSteal:
  542|  1.45k|{
  543|  1.45k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (543:5): [True: 1.45k, False: 0]
  ------------------
  544|  1.45k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (544:5): [True: 1.45k, False: 0]
  ------------------
  545|  1.45k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (545:9): [True: 1.44k, False: 10]
  ------------------
  546|  1.44k|        return BITS_TO_PTR(ref);
  ------------------
  |  |  464|  1.44k|#define BITS_TO_PTR(REF) ((PyObject *)((REF).bits))
  ------------------
  547|  1.44k|    }
  548|     10|    else {
  549|     10|        return Py_NewRef(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  550|     10|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  550|     10|    }
  551|  1.45k|}
typeobject.c:_PyStackRef_FromPyObjectNew:
  583|  24.3k|{
  584|  24.3k|    assert(obj != NULL);
  ------------------
  |  Branch (584:5): [True: 24.3k, False: 0]
  ------------------
  585|       |#ifdef Py_GIL_DISABLED
  586|       |    if (_PyObject_HasDeferredRefcount(obj)) {
  587|       |        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  588|       |    }
  589|       |#else
  590|  24.3k|    if (_Py_IsImmortal(obj)) {
  ------------------
  |  |  137|  24.3k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  24.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  24.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 2.07k, False: 22.2k]
  |  |  ------------------
  ------------------
  591|  2.07k|        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  ------------------
  |  |   55|  2.07k|#define Py_TAG_REFCNT 1
  ------------------
  592|  2.07k|    }
  593|  22.2k|#endif
  594|  22.2k|    _Py_INCREF_MORTAL(obj);
  595|  22.2k|    _PyStackRef ref = (_PyStackRef){ .bits = (uintptr_t)obj };
  596|  22.2k|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|  22.2k|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  597|  22.2k|    return ref;
  598|  24.3k|}
typeobject.c:_PyThreadState_PushCStackRef:
  766|  24.7k|{
  767|       |#ifdef Py_GIL_DISABLED
  768|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  769|       |    ref->next = tstate_impl->c_stack_refs;
  770|       |    tstate_impl->c_stack_refs = ref;
  771|       |#endif
  772|  24.7k|    ref->ref = PyStackRef_NULL;
  773|  24.7k|}
typeobject.c:_PyThreadState_PopCStackRef:
  784|  23.2k|{
  785|       |#ifdef Py_GIL_DISABLED
  786|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  787|       |    assert(tstate_impl->c_stack_refs == ref);
  788|       |    tstate_impl->c_stack_refs = ref->next;
  789|       |#endif
  790|  23.2k|    PyStackRef_XCLOSE(ref->ref);
  791|  23.2k|}
typeobject.c:_PyThreadState_PopCStackRefSteal:
  795|  1.54k|{
  796|       |#ifdef Py_GIL_DISABLED
  797|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  798|       |    assert(tstate_impl->c_stack_refs == ref);
  799|       |    tstate_impl->c_stack_refs = ref->next;
  800|       |#endif
  801|  1.54k|    return ref->ref;
  802|  1.54k|}
typeobject.c:PyStackRef_CLOSE:
  679|  3.39k|{
  680|  3.39k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (680:5): [True: 3.39k, False: 0]
  ------------------
  681|  3.39k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (681:9): [True: 3.37k, False: 18]
  ------------------
  682|  3.37k|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|  3.37k|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.37k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.37k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  683|  3.37k|    }
  684|  3.39k|}
typeobject.c:_PyThreadState_PushCStackRefNew:
  777|    354|{
  778|    354|    _PyThreadState_PushCStackRef(tstate, ref);
  779|    354|    ref->ref = PyStackRef_FromPyObjectNew(obj);
  ------------------
  |  |  599|    354|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    354|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    354|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  780|    354|}
ceval.c:_PyThreadState_PushCStackRef:
  766|  1.26k|{
  767|       |#ifdef Py_GIL_DISABLED
  768|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  769|       |    ref->next = tstate_impl->c_stack_refs;
  770|       |    tstate_impl->c_stack_refs = ref;
  771|       |#endif
  772|  1.26k|    ref->ref = PyStackRef_NULL;
  773|  1.26k|}
ceval.c:PyStackRef_FromPyObjectBorrow:
  615|  9.16k|{
  616|  9.16k|    assert(obj != NULL);
  ------------------
  |  Branch (616:5): [True: 9.16k, False: 0]
  ------------------
  617|  9.16k|    return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT};
  ------------------
  |  |   55|  9.16k|#define Py_TAG_REFCNT 1
  ------------------
  618|  9.16k|}
ceval.c:PyStackRef_AsPyObjectBorrow:
  528|   152k|{
  529|   152k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 152k, False: 0]
  ------------------
  530|   152k|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|   152k|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|   152k|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|   152k|}
ceval.c:PyStackRef_XCLOSE:
  701|  27.1k|{
  702|  27.1k|    assert(ref.bits != 0);
  ------------------
  |  Branch (702:5): [True: 27.1k, False: 0]
  ------------------
  703|  27.1k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (703:9): [True: 9.65k, False: 17.4k]
  ------------------
  704|  9.65k|        assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (704:9): [True: 9.65k, False: 0]
  ------------------
  705|  9.65k|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|  9.65k|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  9.65k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.65k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  706|  9.65k|    }
  707|  27.1k|}
ceval.c:PyStackRef_RefcountOnObject:
  522|  61.6k|{
  523|  61.6k|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|  61.6k|#define Py_TAG_REFCNT 1
  ------------------
  524|  61.6k|}
ceval.c:PyStackRef_CLOSE:
  679|  21.2k|{
  680|  21.2k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (680:5): [True: 21.2k, False: 0]
  ------------------
  681|  21.2k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (681:9): [True: 10.2k, False: 10.9k]
  ------------------
  682|  10.2k|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|  10.2k|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  10.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  683|  10.2k|    }
  684|  21.2k|}
ceval.c:_PyThreadState_PopCStackRefSteal:
  795|  1.26k|{
  796|       |#ifdef Py_GIL_DISABLED
  797|       |    _PyThreadStateImpl *tstate_impl = (_PyThreadStateImpl *)tstate;
  798|       |    assert(tstate_impl->c_stack_refs == ref);
  799|       |    tstate_impl->c_stack_refs = ref->next;
  800|       |#endif
  801|  1.26k|    return ref->ref;
  802|  1.26k|}
ceval.c:PyStackRef_TYPE:
  727|  1.88k|PyStackRef_TYPE(_PyStackRef stackref) {
  728|  1.88k|    if (PyStackRef_IsTaggedInt(stackref)) {
  ------------------
  |  Branch (728:9): [True: 0, False: 1.88k]
  ------------------
  729|      0|        return &PyLong_Type;
  730|      0|    }
  731|  1.88k|    return Py_TYPE(PyStackRef_AsPyObjectBorrow(stackref));
  ------------------
  |  |  213|  1.88k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  732|  1.88k|}
ceval.c:PyStackRef_TagInt:
  434|    702|{
  435|    702|    assert(Py_ARITHMETIC_RIGHT_SHIFT(intptr_t, (intptr_t)(((uintptr_t)i) << Py_TAGGED_SHIFT),
  ------------------
  |  Branch (435:5): [True: 702, False: 0]
  ------------------
  436|    702|                                     Py_TAGGED_SHIFT) == i);
  437|    702|    return (_PyStackRef){ .bits = ((((uintptr_t)i) << Py_TAGGED_SHIFT) | Py_INT_TAG) };
  ------------------
  |  |   58|    702|#define Py_TAGGED_SHIFT 2
  ------------------
                  return (_PyStackRef){ .bits = ((((uintptr_t)i) << Py_TAGGED_SHIFT) | Py_INT_TAG) };
  ------------------
  |  |   53|    702|#define Py_INT_TAG 3
  ------------------
  438|    702|}
ceval.c:PyStackRef_FromPyObjectSteal:
  555|  11.3k|{
  556|  11.3k|    assert(obj != NULL);
  ------------------
  |  Branch (556:5): [True: 11.3k, False: 0]
  ------------------
  557|       |#ifdef Py_GIL_DISABLED
  558|       |    return (_PyStackRef){ .bits = (uintptr_t)obj };
  559|       |#else
  560|  11.3k|#  if SIZEOF_VOID_P > 4
  561|  11.3k|    unsigned int tag = obj->ob_flags & Py_TAG_REFCNT;
  ------------------
  |  |   55|  11.3k|#define Py_TAG_REFCNT 1
  ------------------
  562|       |#  else
  563|       |    unsigned int tag = _Py_IsImmortal(obj) ? Py_TAG_REFCNT : 0;
  564|       |#  endif
  565|  11.3k|    _PyStackRef ref = ((_PyStackRef){.bits = ((uintptr_t)(obj)) | tag});
  566|  11.3k|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|  11.3k|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  567|  11.3k|    return ref;
  568|  11.3k|#endif
  569|  11.3k|}
ceval.c:PyStackRef_CLOSE_SPECIALIZED:
  689|  4.60k|{
  690|  4.60k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (690:5): [True: 4.60k, False: 0]
  ------------------
  691|  4.60k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (691:9): [True: 456, False: 4.15k]
  ------------------
  692|    456|        Py_DECREF_MORTAL_SPECIALIZED(BITS_TO_PTR(ref), destruct);
  ------------------
  |  |  471|    456|#define Py_DECREF_MORTAL_SPECIALIZED(op, destruct) Py_DECREF_MORTAL_SPECIALIZED(_PyObject_CAST(op), destruct)
  |  |  ------------------
  |  |  |  |  171|    456|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    456|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  693|    456|    }
  694|  4.60k|}
ceval.c:PyStackRef_IsHeapSafe:
  638|  3.74k|{
  639|       |#ifdef Py_GIL_DISABLED
  640|       |    if ((ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT) {
  641|       |        return true;
  642|       |    }
  643|       |    PyObject *obj = BITS_TO_PTR_MASKED(ref);
  644|       |    return obj == NULL || _PyObject_HasDeferredRefcount(obj);
  645|       |#else
  646|  3.74k|    return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |   56|  3.74k|#define Py_TAG_BITS 3
  ------------------
                  return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |   55|  7.49k|#define Py_TAG_REFCNT 1
  ------------------
                  return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  467|  2.91k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  ------------------
  |  |  |  |   55|  6.66k|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
                  return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  137|  6.63k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 2.11k, False: 772]
  |  |  ------------------
  ------------------
  |  Branch (646:12): [True: 830, False: 2.91k]
  |  Branch (646:57): [True: 36, False: 2.88k]
  ------------------
  647|  3.74k|#endif
  648|  3.74k|}
ceval.c:PyStackRef_AsPyObjectSteal:
  542|  5.89k|{
  543|  5.89k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (543:5): [True: 5.89k, False: 0]
  ------------------
  544|  5.89k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (544:5): [True: 5.89k, False: 0]
  ------------------
  545|  5.89k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (545:9): [True: 1.64k, False: 4.25k]
  ------------------
  546|  1.64k|        return BITS_TO_PTR(ref);
  ------------------
  |  |  464|  1.64k|#define BITS_TO_PTR(REF) ((PyObject *)((REF).bits))
  ------------------
  547|  1.64k|    }
  548|  4.25k|    else {
  549|  4.25k|        return Py_NewRef(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  550|  4.25k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  4.25k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.25k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  550|  4.25k|    }
  551|  5.89k|}
ceval.c:_PyStackRef_FromPyObjectNew:
  583|  23.2k|{
  584|  23.2k|    assert(obj != NULL);
  ------------------
  |  Branch (584:5): [True: 23.2k, False: 0]
  ------------------
  585|       |#ifdef Py_GIL_DISABLED
  586|       |    if (_PyObject_HasDeferredRefcount(obj)) {
  587|       |        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  588|       |    }
  589|       |#else
  590|  23.2k|    if (_Py_IsImmortal(obj)) {
  ------------------
  |  |  137|  23.2k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  23.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  23.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 7.02k, False: 16.2k]
  |  |  ------------------
  ------------------
  591|  7.02k|        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  ------------------
  |  |   55|  7.02k|#define Py_TAG_REFCNT 1
  ------------------
  592|  7.02k|    }
  593|  16.2k|#endif
  594|  16.2k|    _Py_INCREF_MORTAL(obj);
  595|  16.2k|    _PyStackRef ref = (_PyStackRef){ .bits = (uintptr_t)obj };
  596|  16.2k|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|  16.2k|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  597|  16.2k|    return ref;
  598|  23.2k|}
ceval.c:PyStackRef_Wrap:
  386|  1.83k|{
  387|  1.83k|    assert(ptr != NULL);
  ------------------
  |  Branch (387:5): [True: 1.83k, False: 0]
  ------------------
  388|       |#ifdef Py_DEBUG
  389|       |    assert(((uintptr_t)ptr & Py_TAG_BITS) == 0);
  390|       |    return (_PyStackRef){ .bits = ((uintptr_t)ptr) | Py_TAG_INVALID };
  391|       |#else
  392|  1.83k|    return (_PyStackRef){ .bits = (uintptr_t)ptr };
  393|  1.83k|#endif
  394|  1.83k|}
ceval.c:PyStackRef_Unwrap:
  398|  1.83k|{
  399|       |#ifdef Py_DEBUG
  400|       |    assert ((ref.bits & Py_TAG_BITS) == Py_TAG_INVALID);
  401|       |    return (void *)(ref.bits & ~Py_TAG_BITS);
  402|       |#else
  403|  1.83k|    return (void *)(ref.bits);
  404|  1.83k|#endif
  405|  1.83k|}
ceval.c:PyStackRef_FromPyObjectStealMortal:
  573|  1.10k|{
  574|  1.10k|    assert(obj != NULL);
  ------------------
  |  Branch (574:5): [True: 1.10k, False: 0]
  ------------------
  575|  1.10k|    assert(!_Py_IsImmortal(obj));
  ------------------
  |  Branch (575:5): [True: 1.10k, False: 0]
  ------------------
  576|  1.10k|    _PyStackRef ref = (_PyStackRef){ .bits = (uintptr_t)obj };
  577|  1.10k|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|  1.10k|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  578|  1.10k|    return ref;
  579|  1.10k|}
ceval.c:PyStackRef_DUP:
  627|  2.79k|{
  628|  2.79k|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (628:5): [True: 2.79k, False: 0]
  ------------------
  629|  2.79k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (629:9): [True: 1.55k, False: 1.24k]
  ------------------
  630|  1.55k|        _Py_INCREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  464|  1.55k|#define BITS_TO_PTR(REF) ((PyObject *)((REF).bits))
  ------------------
  631|  1.55k|    }
  632|  2.79k|    return ref;
  633|  2.79k|}
ceval.c:_PyStackRef_CloseStack:
  852|  1.84k|{
  853|       |    // arguments is a pointer into the GC visible stack,
  854|       |    // so we must NULL out values as we clear them.
  855|  5.72k|    for (int i = total_args-1; i >= 0; i--) {
  ------------------
  |  Branch (855:32): [True: 3.88k, False: 1.84k]
  ------------------
  856|  3.88k|        _PyStackRef tmp = arguments[i];
  857|  3.88k|        arguments[i] = PyStackRef_NULL;
  858|  3.88k|        PyStackRef_CLOSE(tmp);
  859|  3.88k|    }
  860|  1.84k|}
ceval.c:PyStackRef_IsValid:
  421|    108|{
  422|       |    /* Invalid values are ERROR and NULL */
  423|    108|    return ref.bits >= Py_INT_TAG;
  ------------------
  |  |   53|    108|#define Py_INT_TAG 3
  ------------------
  424|    108|}
ceval.c:PyStackRef_IsError:
  409|    106|{
  410|    106|    return ref.bits == Py_TAG_INVALID;
  ------------------
  |  |   54|    106|#define Py_TAG_INVALID 2
  ------------------
  411|    106|}
ceval.c:PyStackRef_IsTaggedInt:
  428|   172k|{
  429|   172k|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|   172k|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|   172k|#define Py_INT_TAG 3
  ------------------
  430|   172k|}
ceval.c:PyStackRef_UntagInt:
  442|  3.16k|{
  443|  3.16k|    assert(PyStackRef_IsTaggedInt(i));
  ------------------
  |  Branch (443:5): [True: 3.16k, False: 0]
  ------------------
  444|  3.16k|    intptr_t val = (intptr_t)i.bits;
  445|  3.16k|    return Py_ARITHMETIC_RIGHT_SHIFT(intptr_t, val, Py_TAGGED_SHIFT);
  ------------------
  |  |  226|  3.16k|#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
  ------------------
  446|  3.16k|}
ceval.c:PyStackRef_IncrementTaggedIntNoOverflow:
  451|  1.41k|{
  452|  1.41k|    assert((ref.bits & Py_TAG_BITS) == Py_INT_TAG); // Is tagged int
  ------------------
  |  Branch (452:5): [True: 1.41k, False: 0]
  ------------------
  453|  1.41k|    assert((ref.bits & (~Py_TAG_BITS)) != (INTPTR_MAX & (~Py_TAG_BITS))); // Isn't about to overflow
  ------------------
  |  Branch (453:5): [True: 1.41k, False: 0]
  ------------------
  454|  1.41k|    return (_PyStackRef){ .bits = ref.bits + (1 << Py_TAGGED_SHIFT) };
  ------------------
  |  |   58|  1.41k|#define Py_TAGGED_SHIFT 2
  ------------------
  455|  1.41k|}
ceval.c:PyStackRef_MakeHeapSafe:
  652|  3.74k|{
  653|  3.74k|    if (PyStackRef_IsHeapSafe(ref)) {
  ------------------
  |  Branch (653:9): [True: 2.97k, False: 768]
  ------------------
  654|  2.97k|        return ref;
  655|  2.97k|    }
  656|    768|    PyObject *obj = BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|    768|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|    768|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  657|    768|    Py_INCREF(obj);
  ------------------
  |  |  310|    768|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    768|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    768|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  658|    768|    ref.bits = (uintptr_t)obj;
  659|    768|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|    768|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  660|    768|    return ref;
  661|  3.74k|}
ceval.c:PyStackRef_Borrow:
  535|  16.6k|{
  536|  16.6k|    return (_PyStackRef){ .bits = ref.bits | Py_TAG_REFCNT };
  ------------------
  |  |   55|  16.6k|#define Py_TAG_REFCNT 1
  ------------------
  537|  16.6k|}
frame.c:PyStackRef_IsTaggedInt:
  428|    410|{
  429|    410|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|    410|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|    410|#define Py_INT_TAG 3
  ------------------
  430|    410|}
frame.c:PyStackRef_XCLOSE:
  701|  13.6k|{
  702|  13.6k|    assert(ref.bits != 0);
  ------------------
  |  Branch (702:5): [True: 13.6k, False: 0]
  ------------------
  703|  13.6k|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (703:9): [True: 8.75k, False: 4.90k]
  ------------------
  704|  8.75k|        assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (704:9): [True: 8.75k, False: 0]
  ------------------
  705|  8.75k|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|  8.75k|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  8.75k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.75k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  706|  8.75k|    }
  707|  13.6k|}
frame.c:PyStackRef_RefcountOnObject:
  522|  13.6k|{
  523|  13.6k|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|  13.6k|#define Py_TAG_REFCNT 1
  ------------------
  524|  13.6k|}
frame.c:PyStackRef_MakeHeapSafe:
  652|    192|{
  653|    192|    if (PyStackRef_IsHeapSafe(ref)) {
  ------------------
  |  Branch (653:9): [True: 180, False: 12]
  ------------------
  654|    180|        return ref;
  655|    180|    }
  656|     12|    PyObject *obj = BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|     12|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|     12|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  657|     12|    Py_INCREF(obj);
  ------------------
  |  |  310|     12|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  658|     12|    ref.bits = (uintptr_t)obj;
  659|     12|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|     12|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  660|     12|    return ref;
  661|    192|}
frame.c:PyStackRef_IsHeapSafe:
  638|    192|{
  639|       |#ifdef Py_GIL_DISABLED
  640|       |    if ((ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT) {
  641|       |        return true;
  642|       |    }
  643|       |    PyObject *obj = BITS_TO_PTR_MASKED(ref);
  644|       |    return obj == NULL || _PyObject_HasDeferredRefcount(obj);
  645|       |#else
  646|    192|    return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |   56|    192|#define Py_TAG_BITS 3
  ------------------
                  return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |   55|    384|#define Py_TAG_REFCNT 1
  ------------------
                  return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  467|     84|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  ------------------
  |  |  |  |   55|    276|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
                  return (ref.bits & Py_TAG_BITS) != Py_TAG_REFCNT || ref.bits == PyStackRef_NULL_BITS || _Py_IsImmortal(BITS_TO_PTR_MASKED(ref));
  ------------------
  |  |  137|    234|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 30, False: 12]
  |  |  ------------------
  ------------------
  |  Branch (646:12): [True: 108, False: 84]
  |  Branch (646:57): [True: 42, False: 42]
  ------------------
  647|    192|#endif
  648|    192|}
frame.c:PyStackRef_DUP:
  627|     28|{
  628|     28|    assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (628:5): [True: 28, False: 0]
  ------------------
  629|     28|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (629:9): [True: 28, False: 0]
  ------------------
  630|     28|        _Py_INCREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  464|     28|#define BITS_TO_PTR(REF) ((PyObject *)((REF).bits))
  ------------------
  631|     28|    }
  632|     28|    return ref;
  633|     28|}
frame.c:PyStackRef_AsPyObjectBorrow:
  528|    410|{
  529|    410|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 410, False: 0]
  ------------------
  530|    410|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|    410|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|    410|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|    410|}
specialize.c:PyStackRef_AsPyObjectBorrow:
  528|  1.62k|{
  529|  1.62k|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 1.62k, False: 0]
  ------------------
  530|  1.62k|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|  1.62k|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|  1.62k|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|  1.62k|}
specialize.c:PyStackRef_IsTaggedInt:
  428|  1.66k|{
  429|  1.66k|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|  1.66k|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|  1.66k|#define Py_INT_TAG 3
  ------------------
  430|  1.66k|}
specialize.c:PyStackRef_TYPE:
  727|     36|PyStackRef_TYPE(_PyStackRef stackref) {
  728|     36|    if (PyStackRef_IsTaggedInt(stackref)) {
  ------------------
  |  Branch (728:9): [True: 0, False: 36]
  ------------------
  729|      0|        return &PyLong_Type;
  730|      0|    }
  731|     36|    return Py_TYPE(PyStackRef_AsPyObjectBorrow(stackref));
  ------------------
  |  |  213|     36|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  732|     36|}
sysmodule.c:PyStackRef_AsPyObjectBorrow:
  528|      4|{
  529|      4|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 4, False: 0]
  ------------------
  530|      4|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|      4|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|      4|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|      4|}
sysmodule.c:PyStackRef_IsTaggedInt:
  428|      4|{
  429|      4|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|      4|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|      4|#define Py_INT_TAG 3
  ------------------
  430|      4|}
traceback.c:PyStackRef_AsPyObjectBorrow:
  528|    204|{
  529|    204|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 204, False: 0]
  ------------------
  530|    204|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|    204|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|    204|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|    204|}
traceback.c:PyStackRef_IsTaggedInt:
  428|    204|{
  429|    204|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|    204|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|    204|#define Py_INT_TAG 3
  ------------------
  430|    204|}
genobject.c:PyStackRef_XCLOSE:
  701|     42|{
  702|     42|    assert(ref.bits != 0);
  ------------------
  |  Branch (702:5): [True: 42, False: 0]
  ------------------
  703|     42|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (703:9): [True: 42, False: 0]
  ------------------
  704|     42|        assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (704:9): [True: 42, False: 0]
  ------------------
  705|     42|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|     42|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  706|     42|    }
  707|     42|}
genobject.c:PyStackRef_RefcountOnObject:
  522|     42|{
  523|     42|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|     42|#define Py_TAG_REFCNT 1
  ------------------
  524|     42|}
genobject.c:_PyStackRef_FromPyObjectNew:
  583|     68|{
  584|     68|    assert(obj != NULL);
  ------------------
  |  Branch (584:5): [True: 68, False: 0]
  ------------------
  585|       |#ifdef Py_GIL_DISABLED
  586|       |    if (_PyObject_HasDeferredRefcount(obj)) {
  587|       |        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  588|       |    }
  589|       |#else
  590|     68|    if (_Py_IsImmortal(obj)) {
  ------------------
  |  |  137|     68|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 68, False: 0]
  |  |  ------------------
  ------------------
  591|     68|        return (_PyStackRef){ .bits = (uintptr_t)obj | Py_TAG_REFCNT };
  ------------------
  |  |   55|     68|#define Py_TAG_REFCNT 1
  ------------------
  592|     68|    }
  593|      0|#endif
  594|      0|    _Py_INCREF_MORTAL(obj);
  595|      0|    _PyStackRef ref = (_PyStackRef){ .bits = (uintptr_t)obj };
  596|      0|    PyStackRef_CheckValid(ref);
  ------------------
  |  |  510|      0|#define PyStackRef_CheckValid(REF) ((void)0)
  ------------------
  597|      0|    return ref;
  598|     68|}
genobject.c:PyStackRef_IsTaggedInt:
  428|     12|{
  429|     12|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|     12|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|     12|#define Py_INT_TAG 3
  ------------------
  430|     12|}
genobject.c:PyStackRef_AsPyObjectBorrow:
  528|     12|{
  529|     12|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 12, False: 0]
  ------------------
  530|     12|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|     12|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|     12|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|     12|}
frameobject.c:PyStackRef_AsPyObjectBorrow:
  528|     46|{
  529|     46|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 46, False: 0]
  ------------------
  530|     46|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|     46|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|     46|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|     46|}
frameobject.c:PyStackRef_IsTaggedInt:
  428|     46|{
  429|     46|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|     46|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|     46|#define Py_INT_TAG 3
  ------------------
  430|     46|}
frameobject.c:PyStackRef_RefcountOnObject:
  522|    192|{
  523|    192|    return (ref.bits & Py_TAG_REFCNT) == 0;
  ------------------
  |  |   55|    192|#define Py_TAG_REFCNT 1
  ------------------
  524|    192|}
frameobject.c:PyStackRef_XCLOSE:
  701|    192|{
  702|    192|    assert(ref.bits != 0);
  ------------------
  |  Branch (702:5): [True: 192, False: 0]
  ------------------
  703|    192|    if (PyStackRef_RefcountOnObject(ref)) {
  ------------------
  |  Branch (703:9): [True: 120, False: 72]
  ------------------
  704|    120|        assert(!PyStackRef_IsNull(ref));
  ------------------
  |  Branch (704:9): [True: 120, False: 0]
  ------------------
  705|    120|        Py_DECREF_MORTAL(BITS_TO_PTR(ref));
  ------------------
  |  |  460|    120|#define Py_DECREF_MORTAL(op) Py_DECREF_MORTAL(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  706|    120|    }
  707|    192|}
lazyimportobject.c:PyStackRef_AsPyObjectBorrow:
  528|     16|{
  529|     16|    assert(!PyStackRef_IsTaggedInt(ref));
  ------------------
  |  Branch (529:5): [True: 16, False: 0]
  ------------------
  530|     16|    return BITS_TO_PTR_MASKED(ref);
  ------------------
  |  |  465|     16|#define BITS_TO_PTR_MASKED(REF) ((PyObject *)(((REF).bits) & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|     16|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
  531|     16|}
lazyimportobject.c:PyStackRef_IsTaggedInt:
  428|     16|{
  429|     16|    return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   56|     16|#define Py_TAG_BITS 3
  ------------------
                  return (i.bits & Py_TAG_BITS) == Py_INT_TAG;
  ------------------
  |  |   53|     16|#define Py_INT_TAG 3
  ------------------
  430|     16|}

floatobject.c:_PyStructSequence_InitBuiltin:
   29|      2|{
   30|      2|    return _PyStructSequence_InitBuiltinWithFlags(interp, type, desc, 0);
   31|      2|}
longobject.c:_PyStructSequence_InitBuiltin:
   29|      2|{
   30|      2|    return _PyStructSequence_InitBuiltinWithFlags(interp, type, desc, 0);
   31|      2|}
errors.c:_PyStructSequence_InitBuiltin:
   29|      2|{
   30|      2|    return _PyStructSequence_InitBuiltinWithFlags(interp, type, desc, 0);
   31|      2|}
sysmodule.c:_PyStructSequence_InitBuiltin:
   29|      4|{
   30|      4|    return _PyStructSequence_InitBuiltinWithFlags(interp, type, desc, 0);
   31|      4|}
thread.c:_PyStructSequence_InitBuiltin:
   29|      2|{
   30|      2|    return _PyStructSequence_InitBuiltinWithFlags(interp, type, desc, 0);
   31|      2|}

dictobject.c:_PyTuple_Recycle:
   53|     66|{
   54|     66|    _PyTuple_RESET_HASH_CACHE(op);
  ------------------
  |  |   44|     66|    do {                                    \
  |  |   45|     66|        assert(op != NULL);                 \
  |  |   46|    132|        _PyTuple_CAST(op)->ob_hash = -1;    \
  |  |  ------------------
  |  |  |  |   19|     66|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   47|    132|    } while (0)
  |  |  ------------------
  |  |  |  Branch (47:14): [Folded, False: 66]
  |  |  ------------------
  ------------------
  |  Branch (54:5): [True: 66, False: 0]
  |  Branch (54:5): [True: 66, False: 0]
  ------------------
   55|     66|    if (!_PyObject_GC_IS_TRACKED(op)) {
  ------------------
  |  |   81|     66|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (55:9): [True: 60, False: 6]
  ------------------
   56|     60|        _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|     60|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   57|     60|    }
   58|     66|}

object.c:_PyType_IsReady:
  110|  7.55k|{
  111|       |    return _PyType_GetDict(type) != NULL;
  112|  7.55k|}
typeobject.c:_PyType_IsReady:
  110|  3.08k|{
  111|       |    return _PyType_GetDict(type) != NULL;
  112|  3.08k|}
weakrefobject.c:_PyStaticType_GET_WEAKREFS_LISTPTR:
   49|    572|{
   50|    572|    assert(state != NULL);
  ------------------
  |  Branch (50:5): [True: 572, False: 0]
  ------------------
   51|    572|    return &state->tp_weaklist;
   52|    572|}
modsupport.c:_PyType_IsReady:
  110|     38|{
  111|       |    return _PyType_GetDict(type) != NULL;
  112|     38|}
specialize.c:_PyType_IsReady:
  110|    600|{
  111|       |    return _PyType_GetDict(type) != NULL;
  112|    600|}
_abc.c:_PyType_GetModuleState:
   81|     58|{
   82|     58|    assert(PyType_Check(type));
  ------------------
  |  Branch (82:5): [True: 58, False: 0]
  ------------------
   83|     58|    assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
  ------------------
  |  Branch (83:5): [True: 58, False: 0]
  ------------------
   84|     58|    PyHeapTypeObject *et = (PyHeapTypeObject *)type;
   85|     58|    assert(et->ht_module);
  ------------------
  |  Branch (85:5): [True: 58, False: 0]
  ------------------
   86|     58|    PyModuleObject *mod = (PyModuleObject *)(et->ht_module);
   87|     58|    assert(mod != NULL);
  ------------------
  |  Branch (87:5): [True: 58, False: 0]
  ------------------
   88|     58|    return mod->md_state;
   89|     58|}

unicodeobject.c:_PyUnicodeWriter_WriteCharInline:
  110|  20.8k|{
  111|  20.8k|    assert(ch <= _Py_MAX_UNICODE);
  ------------------
  |  Branch (111:5): [True: 20.8k, False: 0]
  ------------------
  112|  20.8k|    if (_PyUnicodeWriter_Prepare(writer, 1, ch) < 0)
  ------------------
  |  |  562|  20.8k|    (((MAXCHAR) <= (WRITER)->maxchar                                  \
  |  |  ------------------
  |  |  |  Branch (562:7): [True: 18.8k, False: 1.95k]
  |  |  ------------------
  |  |  563|  20.8k|      && (LENGTH) <= (WRITER)->size - (WRITER)->pos)                  \
  |  |  ------------------
  |  |  |  Branch (563:10): [True: 18.8k, False: 0]
  |  |  ------------------
  |  |  564|  20.8k|     ? 0                                                              \
  |  |  565|  20.8k|     : (((LENGTH) == 0)                                               \
  |  |  ------------------
  |  |  |  Branch (565:9): [Folded, False: 1.95k]
  |  |  ------------------
  |  |  566|  1.95k|        ? 0                                                           \
  |  |  567|  1.95k|        : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  ------------------
  |  Branch (112:9): [True: 0, False: 20.8k]
  ------------------
  113|      0|        return -1;
  114|  20.8k|    PyUnicode_WRITE(writer->kind, writer->data, writer->pos, ch);
  ------------------
  |  |  335|  20.8k|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|  20.8k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|  20.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|  20.8k|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|  20.8k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  115|  20.8k|    writer->pos++;
  116|  20.8k|    return 0;
  117|  20.8k|}
unicodeobject.c:_PyUnicode_EnsureUnicode:
   99|    480|{
  100|    480|    if (!PyUnicode_Check(obj)) {
  ------------------
  |  |  103|    480|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    480|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (100:9): [True: 0, False: 480]
  ------------------
  101|      0|        PyErr_Format(PyExc_TypeError,
  102|      0|                     "must be str, not %T", obj);
  103|      0|        return -1;
  104|      0|    }
  105|    480|    return 0;
  106|    480|}

unicodeobject.c:_PyUnicode_InitStaticStrings:
   13|      2|_PyUnicode_InitStaticStrings(PyInterpreterState *interp) {
   14|      2|    PyObject *string;
   15|      2|    string = &_Py_ID(AGEN_CLOSED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   16|      2|    _PyUnicode_InternStatic(interp, &string);
   17|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (17:5): [True: 2, False: 0]
  ------------------
   18|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (18:5): [True: 2, False: 0]
  ------------------
   19|      2|    string = &_Py_ID(AGEN_CREATED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   20|      2|    _PyUnicode_InternStatic(interp, &string);
   21|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (21:5): [True: 2, False: 0]
  ------------------
   22|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (22:5): [True: 2, False: 0]
  ------------------
   23|      2|    string = &_Py_ID(AGEN_RUNNING);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   24|      2|    _PyUnicode_InternStatic(interp, &string);
   25|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (25:5): [True: 2, False: 0]
  ------------------
   26|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (26:5): [True: 2, False: 0]
  ------------------
   27|      2|    string = &_Py_ID(AGEN_SUSPENDED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   28|      2|    _PyUnicode_InternStatic(interp, &string);
   29|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (29:5): [True: 2, False: 0]
  ------------------
   30|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (30:5): [True: 2, False: 0]
  ------------------
   31|      2|    string = &_Py_ID(CANCELLED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|      2|    _PyUnicode_InternStatic(interp, &string);
   33|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (33:5): [True: 2, False: 0]
  ------------------
   34|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (34:5): [True: 2, False: 0]
  ------------------
   35|      2|    string = &_Py_ID(CORO_CLOSED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|      2|    _PyUnicode_InternStatic(interp, &string);
   37|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (37:5): [True: 2, False: 0]
  ------------------
   38|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (38:5): [True: 2, False: 0]
  ------------------
   39|      2|    string = &_Py_ID(CORO_CREATED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   40|      2|    _PyUnicode_InternStatic(interp, &string);
   41|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (41:5): [True: 2, False: 0]
  ------------------
   42|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (42:5): [True: 2, False: 0]
  ------------------
   43|      2|    string = &_Py_ID(CORO_RUNNING);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   44|      2|    _PyUnicode_InternStatic(interp, &string);
   45|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (45:5): [True: 2, False: 0]
  ------------------
   46|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (46:5): [True: 2, False: 0]
  ------------------
   47|      2|    string = &_Py_ID(CORO_SUSPENDED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   48|      2|    _PyUnicode_InternStatic(interp, &string);
   49|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (49:5): [True: 2, False: 0]
  ------------------
   50|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (50:5): [True: 2, False: 0]
  ------------------
   51|      2|    string = &_Py_ID(Emax);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   52|      2|    _PyUnicode_InternStatic(interp, &string);
   53|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (53:5): [True: 2, False: 0]
  ------------------
   54|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (54:5): [True: 2, False: 0]
  ------------------
   55|      2|    string = &_Py_ID(Emin);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   56|      2|    _PyUnicode_InternStatic(interp, &string);
   57|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (57:5): [True: 2, False: 0]
  ------------------
   58|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (58:5): [True: 2, False: 0]
  ------------------
   59|      2|    string = &_Py_ID(FINISHED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   60|      2|    _PyUnicode_InternStatic(interp, &string);
   61|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (61:5): [True: 2, False: 0]
  ------------------
   62|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (62:5): [True: 2, False: 0]
  ------------------
   63|      2|    string = &_Py_ID(False);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   64|      2|    _PyUnicode_InternStatic(interp, &string);
   65|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (65:5): [True: 2, False: 0]
  ------------------
   66|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (66:5): [True: 2, False: 0]
  ------------------
   67|      2|    string = &_Py_ID(GEN_CLOSED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   68|      2|    _PyUnicode_InternStatic(interp, &string);
   69|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (69:5): [True: 2, False: 0]
  ------------------
   70|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (70:5): [True: 2, False: 0]
  ------------------
   71|      2|    string = &_Py_ID(GEN_CREATED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   72|      2|    _PyUnicode_InternStatic(interp, &string);
   73|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (73:5): [True: 2, False: 0]
  ------------------
   74|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (74:5): [True: 2, False: 0]
  ------------------
   75|      2|    string = &_Py_ID(GEN_RUNNING);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   76|      2|    _PyUnicode_InternStatic(interp, &string);
   77|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (77:5): [True: 2, False: 0]
  ------------------
   78|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (78:5): [True: 2, False: 0]
  ------------------
   79|      2|    string = &_Py_ID(GEN_SUSPENDED);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   80|      2|    _PyUnicode_InternStatic(interp, &string);
   81|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (81:5): [True: 2, False: 0]
  ------------------
   82|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (82:5): [True: 2, False: 0]
  ------------------
   83|      2|    string = &_Py_ID(JSONDecodeError);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   84|      2|    _PyUnicode_InternStatic(interp, &string);
   85|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (85:5): [True: 2, False: 0]
  ------------------
   86|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (86:5): [True: 2, False: 0]
  ------------------
   87|      2|    string = &_Py_ID(PENDING);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   88|      2|    _PyUnicode_InternStatic(interp, &string);
   89|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (89:5): [True: 2, False: 0]
  ------------------
   90|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (90:5): [True: 2, False: 0]
  ------------------
   91|      2|    string = &_Py_ID(Py_Repr);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   92|      2|    _PyUnicode_InternStatic(interp, &string);
   93|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (93:5): [True: 2, False: 0]
  ------------------
   94|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (94:5): [True: 2, False: 0]
  ------------------
   95|      2|    string = &_Py_ID(TextIOWrapper);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   96|      2|    _PyUnicode_InternStatic(interp, &string);
   97|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (97:5): [True: 2, False: 0]
  ------------------
   98|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (98:5): [True: 2, False: 0]
  ------------------
   99|      2|    string = &_Py_ID(True);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  100|      2|    _PyUnicode_InternStatic(interp, &string);
  101|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (101:5): [True: 2, False: 0]
  ------------------
  102|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (102:5): [True: 2, False: 0]
  ------------------
  103|      2|    string = &_Py_ID(WarningMessage);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  104|      2|    _PyUnicode_InternStatic(interp, &string);
  105|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (105:5): [True: 2, False: 0]
  ------------------
  106|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (106:5): [True: 2, False: 0]
  ------------------
  107|      2|    string = &_Py_ID(_WindowsConsoleIO);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  108|      2|    _PyUnicode_InternStatic(interp, &string);
  109|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (109:5): [True: 2, False: 0]
  ------------------
  110|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (110:5): [True: 2, False: 0]
  ------------------
  111|      2|    string = &_Py_ID(__IOBase_closed);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  112|      2|    _PyUnicode_InternStatic(interp, &string);
  113|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (113:5): [True: 2, False: 0]
  ------------------
  114|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (114:5): [True: 2, False: 0]
  ------------------
  115|      2|    string = &_Py_ID(__abc_tpflags__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  116|      2|    _PyUnicode_InternStatic(interp, &string);
  117|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (117:5): [True: 2, False: 0]
  ------------------
  118|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (118:5): [True: 2, False: 0]
  ------------------
  119|      2|    string = &_Py_ID(__abs__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  120|      2|    _PyUnicode_InternStatic(interp, &string);
  121|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (121:5): [True: 2, False: 0]
  ------------------
  122|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (122:5): [True: 2, False: 0]
  ------------------
  123|      2|    string = &_Py_ID(__abstractmethods__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  124|      2|    _PyUnicode_InternStatic(interp, &string);
  125|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (125:5): [True: 2, False: 0]
  ------------------
  126|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (126:5): [True: 2, False: 0]
  ------------------
  127|      2|    string = &_Py_ID(__add__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  128|      2|    _PyUnicode_InternStatic(interp, &string);
  129|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (129:5): [True: 2, False: 0]
  ------------------
  130|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (130:5): [True: 2, False: 0]
  ------------------
  131|      2|    string = &_Py_ID(__aenter__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  132|      2|    _PyUnicode_InternStatic(interp, &string);
  133|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (133:5): [True: 2, False: 0]
  ------------------
  134|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (134:5): [True: 2, False: 0]
  ------------------
  135|      2|    string = &_Py_ID(__aexit__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  136|      2|    _PyUnicode_InternStatic(interp, &string);
  137|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (137:5): [True: 2, False: 0]
  ------------------
  138|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (138:5): [True: 2, False: 0]
  ------------------
  139|      2|    string = &_Py_ID(__aiter__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  140|      2|    _PyUnicode_InternStatic(interp, &string);
  141|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (141:5): [True: 2, False: 0]
  ------------------
  142|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (142:5): [True: 2, False: 0]
  ------------------
  143|      2|    string = &_Py_ID(__all__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  144|      2|    _PyUnicode_InternStatic(interp, &string);
  145|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (145:5): [True: 2, False: 0]
  ------------------
  146|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (146:5): [True: 2, False: 0]
  ------------------
  147|      2|    string = &_Py_ID(__and__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  148|      2|    _PyUnicode_InternStatic(interp, &string);
  149|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (149:5): [True: 2, False: 0]
  ------------------
  150|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (150:5): [True: 2, False: 0]
  ------------------
  151|      2|    string = &_Py_ID(__anext__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  152|      2|    _PyUnicode_InternStatic(interp, &string);
  153|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (153:5): [True: 2, False: 0]
  ------------------
  154|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (154:5): [True: 2, False: 0]
  ------------------
  155|      2|    string = &_Py_ID(__annotate__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  156|      2|    _PyUnicode_InternStatic(interp, &string);
  157|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (157:5): [True: 2, False: 0]
  ------------------
  158|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (158:5): [True: 2, False: 0]
  ------------------
  159|      2|    string = &_Py_ID(__annotate_func__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  160|      2|    _PyUnicode_InternStatic(interp, &string);
  161|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (161:5): [True: 2, False: 0]
  ------------------
  162|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (162:5): [True: 2, False: 0]
  ------------------
  163|      2|    string = &_Py_ID(__annotations__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  164|      2|    _PyUnicode_InternStatic(interp, &string);
  165|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (165:5): [True: 2, False: 0]
  ------------------
  166|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (166:5): [True: 2, False: 0]
  ------------------
  167|      2|    string = &_Py_ID(__annotations_cache__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  168|      2|    _PyUnicode_InternStatic(interp, &string);
  169|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (169:5): [True: 2, False: 0]
  ------------------
  170|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (170:5): [True: 2, False: 0]
  ------------------
  171|      2|    string = &_Py_ID(__args__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  172|      2|    _PyUnicode_InternStatic(interp, &string);
  173|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (173:5): [True: 2, False: 0]
  ------------------
  174|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (174:5): [True: 2, False: 0]
  ------------------
  175|      2|    string = &_Py_ID(__await__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  176|      2|    _PyUnicode_InternStatic(interp, &string);
  177|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (177:5): [True: 2, False: 0]
  ------------------
  178|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (178:5): [True: 2, False: 0]
  ------------------
  179|      2|    string = &_Py_ID(__bases__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  180|      2|    _PyUnicode_InternStatic(interp, &string);
  181|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (181:5): [True: 2, False: 0]
  ------------------
  182|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (182:5): [True: 2, False: 0]
  ------------------
  183|      2|    string = &_Py_ID(__bool__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  184|      2|    _PyUnicode_InternStatic(interp, &string);
  185|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (185:5): [True: 2, False: 0]
  ------------------
  186|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (186:5): [True: 2, False: 0]
  ------------------
  187|      2|    string = &_Py_ID(__buffer__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  188|      2|    _PyUnicode_InternStatic(interp, &string);
  189|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (189:5): [True: 2, False: 0]
  ------------------
  190|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (190:5): [True: 2, False: 0]
  ------------------
  191|      2|    string = &_Py_ID(__build_class__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  192|      2|    _PyUnicode_InternStatic(interp, &string);
  193|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (193:5): [True: 2, False: 0]
  ------------------
  194|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (194:5): [True: 2, False: 0]
  ------------------
  195|      2|    string = &_Py_ID(__builtins__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  196|      2|    _PyUnicode_InternStatic(interp, &string);
  197|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (197:5): [True: 2, False: 0]
  ------------------
  198|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (198:5): [True: 2, False: 0]
  ------------------
  199|      2|    string = &_Py_ID(__bytes__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  200|      2|    _PyUnicode_InternStatic(interp, &string);
  201|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (201:5): [True: 2, False: 0]
  ------------------
  202|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (202:5): [True: 2, False: 0]
  ------------------
  203|      2|    string = &_Py_ID(__call__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  204|      2|    _PyUnicode_InternStatic(interp, &string);
  205|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (205:5): [True: 2, False: 0]
  ------------------
  206|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (206:5): [True: 2, False: 0]
  ------------------
  207|      2|    string = &_Py_ID(__cantrace__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  208|      2|    _PyUnicode_InternStatic(interp, &string);
  209|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (209:5): [True: 2, False: 0]
  ------------------
  210|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (210:5): [True: 2, False: 0]
  ------------------
  211|      2|    string = &_Py_ID(__ceil__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  212|      2|    _PyUnicode_InternStatic(interp, &string);
  213|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (213:5): [True: 2, False: 0]
  ------------------
  214|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (214:5): [True: 2, False: 0]
  ------------------
  215|      2|    string = &_Py_ID(__class__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  216|      2|    _PyUnicode_InternStatic(interp, &string);
  217|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (217:5): [True: 2, False: 0]
  ------------------
  218|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (218:5): [True: 2, False: 0]
  ------------------
  219|      2|    string = &_Py_ID(__class_getitem__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  220|      2|    _PyUnicode_InternStatic(interp, &string);
  221|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (221:5): [True: 2, False: 0]
  ------------------
  222|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (222:5): [True: 2, False: 0]
  ------------------
  223|      2|    string = &_Py_ID(__classcell__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  224|      2|    _PyUnicode_InternStatic(interp, &string);
  225|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (225:5): [True: 2, False: 0]
  ------------------
  226|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (226:5): [True: 2, False: 0]
  ------------------
  227|      2|    string = &_Py_ID(__classdict__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  228|      2|    _PyUnicode_InternStatic(interp, &string);
  229|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (229:5): [True: 2, False: 0]
  ------------------
  230|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (230:5): [True: 2, False: 0]
  ------------------
  231|      2|    string = &_Py_ID(__classdictcell__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  232|      2|    _PyUnicode_InternStatic(interp, &string);
  233|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (233:5): [True: 2, False: 0]
  ------------------
  234|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (234:5): [True: 2, False: 0]
  ------------------
  235|      2|    string = &_Py_ID(__complex__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  236|      2|    _PyUnicode_InternStatic(interp, &string);
  237|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (237:5): [True: 2, False: 0]
  ------------------
  238|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (238:5): [True: 2, False: 0]
  ------------------
  239|      2|    string = &_Py_ID(__conditional_annotations__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  240|      2|    _PyUnicode_InternStatic(interp, &string);
  241|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (241:5): [True: 2, False: 0]
  ------------------
  242|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (242:5): [True: 2, False: 0]
  ------------------
  243|      2|    string = &_Py_ID(__contains__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  244|      2|    _PyUnicode_InternStatic(interp, &string);
  245|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (245:5): [True: 2, False: 0]
  ------------------
  246|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (246:5): [True: 2, False: 0]
  ------------------
  247|      2|    string = &_Py_ID(__ctypes_from_outparam__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  248|      2|    _PyUnicode_InternStatic(interp, &string);
  249|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (249:5): [True: 2, False: 0]
  ------------------
  250|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (250:5): [True: 2, False: 0]
  ------------------
  251|      2|    string = &_Py_ID(__del__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  252|      2|    _PyUnicode_InternStatic(interp, &string);
  253|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (253:5): [True: 2, False: 0]
  ------------------
  254|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (254:5): [True: 2, False: 0]
  ------------------
  255|      2|    string = &_Py_ID(__delattr__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  256|      2|    _PyUnicode_InternStatic(interp, &string);
  257|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (257:5): [True: 2, False: 0]
  ------------------
  258|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (258:5): [True: 2, False: 0]
  ------------------
  259|      2|    string = &_Py_ID(__delete__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  260|      2|    _PyUnicode_InternStatic(interp, &string);
  261|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (261:5): [True: 2, False: 0]
  ------------------
  262|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (262:5): [True: 2, False: 0]
  ------------------
  263|      2|    string = &_Py_ID(__delitem__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  264|      2|    _PyUnicode_InternStatic(interp, &string);
  265|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (265:5): [True: 2, False: 0]
  ------------------
  266|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (266:5): [True: 2, False: 0]
  ------------------
  267|      2|    string = &_Py_ID(__dict__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  268|      2|    _PyUnicode_InternStatic(interp, &string);
  269|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (269:5): [True: 2, False: 0]
  ------------------
  270|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (270:5): [True: 2, False: 0]
  ------------------
  271|      2|    string = &_Py_ID(__dictoffset__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  272|      2|    _PyUnicode_InternStatic(interp, &string);
  273|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (273:5): [True: 2, False: 0]
  ------------------
  274|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (274:5): [True: 2, False: 0]
  ------------------
  275|      2|    string = &_Py_ID(__dir__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  276|      2|    _PyUnicode_InternStatic(interp, &string);
  277|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (277:5): [True: 2, False: 0]
  ------------------
  278|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (278:5): [True: 2, False: 0]
  ------------------
  279|      2|    string = &_Py_ID(__divmod__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  280|      2|    _PyUnicode_InternStatic(interp, &string);
  281|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (281:5): [True: 2, False: 0]
  ------------------
  282|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (282:5): [True: 2, False: 0]
  ------------------
  283|      2|    string = &_Py_ID(__doc__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  284|      2|    _PyUnicode_InternStatic(interp, &string);
  285|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (285:5): [True: 2, False: 0]
  ------------------
  286|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (286:5): [True: 2, False: 0]
  ------------------
  287|      2|    string = &_Py_ID(__enter__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  288|      2|    _PyUnicode_InternStatic(interp, &string);
  289|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (289:5): [True: 2, False: 0]
  ------------------
  290|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (290:5): [True: 2, False: 0]
  ------------------
  291|      2|    string = &_Py_ID(__eq__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  292|      2|    _PyUnicode_InternStatic(interp, &string);
  293|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (293:5): [True: 2, False: 0]
  ------------------
  294|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (294:5): [True: 2, False: 0]
  ------------------
  295|      2|    string = &_Py_ID(__exit__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  296|      2|    _PyUnicode_InternStatic(interp, &string);
  297|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (297:5): [True: 2, False: 0]
  ------------------
  298|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (298:5): [True: 2, False: 0]
  ------------------
  299|      2|    string = &_Py_ID(__file__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  300|      2|    _PyUnicode_InternStatic(interp, &string);
  301|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (301:5): [True: 2, False: 0]
  ------------------
  302|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (302:5): [True: 2, False: 0]
  ------------------
  303|      2|    string = &_Py_ID(__firstlineno__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  304|      2|    _PyUnicode_InternStatic(interp, &string);
  305|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (305:5): [True: 2, False: 0]
  ------------------
  306|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (306:5): [True: 2, False: 0]
  ------------------
  307|      2|    string = &_Py_ID(__float__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  308|      2|    _PyUnicode_InternStatic(interp, &string);
  309|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (309:5): [True: 2, False: 0]
  ------------------
  310|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (310:5): [True: 2, False: 0]
  ------------------
  311|      2|    string = &_Py_ID(__floor__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  312|      2|    _PyUnicode_InternStatic(interp, &string);
  313|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (313:5): [True: 2, False: 0]
  ------------------
  314|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (314:5): [True: 2, False: 0]
  ------------------
  315|      2|    string = &_Py_ID(__floordiv__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  316|      2|    _PyUnicode_InternStatic(interp, &string);
  317|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (317:5): [True: 2, False: 0]
  ------------------
  318|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (318:5): [True: 2, False: 0]
  ------------------
  319|      2|    string = &_Py_ID(__format__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  320|      2|    _PyUnicode_InternStatic(interp, &string);
  321|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (321:5): [True: 2, False: 0]
  ------------------
  322|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (322:5): [True: 2, False: 0]
  ------------------
  323|      2|    string = &_Py_ID(__fspath__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  324|      2|    _PyUnicode_InternStatic(interp, &string);
  325|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (325:5): [True: 2, False: 0]
  ------------------
  326|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (326:5): [True: 2, False: 0]
  ------------------
  327|      2|    string = &_Py_ID(__ge__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  328|      2|    _PyUnicode_InternStatic(interp, &string);
  329|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (329:5): [True: 2, False: 0]
  ------------------
  330|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (330:5): [True: 2, False: 0]
  ------------------
  331|      2|    string = &_Py_ID(__get__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  332|      2|    _PyUnicode_InternStatic(interp, &string);
  333|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (333:5): [True: 2, False: 0]
  ------------------
  334|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (334:5): [True: 2, False: 0]
  ------------------
  335|      2|    string = &_Py_ID(__getattr__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  336|      2|    _PyUnicode_InternStatic(interp, &string);
  337|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (337:5): [True: 2, False: 0]
  ------------------
  338|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (338:5): [True: 2, False: 0]
  ------------------
  339|      2|    string = &_Py_ID(__getattribute__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  340|      2|    _PyUnicode_InternStatic(interp, &string);
  341|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (341:5): [True: 2, False: 0]
  ------------------
  342|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (342:5): [True: 2, False: 0]
  ------------------
  343|      2|    string = &_Py_ID(__getinitargs__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  344|      2|    _PyUnicode_InternStatic(interp, &string);
  345|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (345:5): [True: 2, False: 0]
  ------------------
  346|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (346:5): [True: 2, False: 0]
  ------------------
  347|      2|    string = &_Py_ID(__getitem__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  348|      2|    _PyUnicode_InternStatic(interp, &string);
  349|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (349:5): [True: 2, False: 0]
  ------------------
  350|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (350:5): [True: 2, False: 0]
  ------------------
  351|      2|    string = &_Py_ID(__getnewargs__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  352|      2|    _PyUnicode_InternStatic(interp, &string);
  353|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (353:5): [True: 2, False: 0]
  ------------------
  354|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (354:5): [True: 2, False: 0]
  ------------------
  355|      2|    string = &_Py_ID(__getnewargs_ex__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  356|      2|    _PyUnicode_InternStatic(interp, &string);
  357|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (357:5): [True: 2, False: 0]
  ------------------
  358|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (358:5): [True: 2, False: 0]
  ------------------
  359|      2|    string = &_Py_ID(__getstate__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  360|      2|    _PyUnicode_InternStatic(interp, &string);
  361|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (361:5): [True: 2, False: 0]
  ------------------
  362|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (362:5): [True: 2, False: 0]
  ------------------
  363|      2|    string = &_Py_ID(__gt__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  364|      2|    _PyUnicode_InternStatic(interp, &string);
  365|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (365:5): [True: 2, False: 0]
  ------------------
  366|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (366:5): [True: 2, False: 0]
  ------------------
  367|      2|    string = &_Py_ID(__hash__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  368|      2|    _PyUnicode_InternStatic(interp, &string);
  369|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (369:5): [True: 2, False: 0]
  ------------------
  370|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (370:5): [True: 2, False: 0]
  ------------------
  371|      2|    string = &_Py_ID(__iadd__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  372|      2|    _PyUnicode_InternStatic(interp, &string);
  373|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (373:5): [True: 2, False: 0]
  ------------------
  374|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (374:5): [True: 2, False: 0]
  ------------------
  375|      2|    string = &_Py_ID(__iand__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  376|      2|    _PyUnicode_InternStatic(interp, &string);
  377|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (377:5): [True: 2, False: 0]
  ------------------
  378|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (378:5): [True: 2, False: 0]
  ------------------
  379|      2|    string = &_Py_ID(__ifloordiv__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  380|      2|    _PyUnicode_InternStatic(interp, &string);
  381|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (381:5): [True: 2, False: 0]
  ------------------
  382|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (382:5): [True: 2, False: 0]
  ------------------
  383|      2|    string = &_Py_ID(__ilshift__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  384|      2|    _PyUnicode_InternStatic(interp, &string);
  385|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (385:5): [True: 2, False: 0]
  ------------------
  386|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (386:5): [True: 2, False: 0]
  ------------------
  387|      2|    string = &_Py_ID(__imatmul__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  388|      2|    _PyUnicode_InternStatic(interp, &string);
  389|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (389:5): [True: 2, False: 0]
  ------------------
  390|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (390:5): [True: 2, False: 0]
  ------------------
  391|      2|    string = &_Py_ID(__imod__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  392|      2|    _PyUnicode_InternStatic(interp, &string);
  393|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (393:5): [True: 2, False: 0]
  ------------------
  394|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (394:5): [True: 2, False: 0]
  ------------------
  395|      2|    string = &_Py_ID(__import__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  396|      2|    _PyUnicode_InternStatic(interp, &string);
  397|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (397:5): [True: 2, False: 0]
  ------------------
  398|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (398:5): [True: 2, False: 0]
  ------------------
  399|      2|    string = &_Py_ID(__imul__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  400|      2|    _PyUnicode_InternStatic(interp, &string);
  401|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (401:5): [True: 2, False: 0]
  ------------------
  402|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (402:5): [True: 2, False: 0]
  ------------------
  403|      2|    string = &_Py_ID(__index__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  404|      2|    _PyUnicode_InternStatic(interp, &string);
  405|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (405:5): [True: 2, False: 0]
  ------------------
  406|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (406:5): [True: 2, False: 0]
  ------------------
  407|      2|    string = &_Py_ID(__init__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  408|      2|    _PyUnicode_InternStatic(interp, &string);
  409|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (409:5): [True: 2, False: 0]
  ------------------
  410|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (410:5): [True: 2, False: 0]
  ------------------
  411|      2|    string = &_Py_ID(__init_subclass__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  412|      2|    _PyUnicode_InternStatic(interp, &string);
  413|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (413:5): [True: 2, False: 0]
  ------------------
  414|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (414:5): [True: 2, False: 0]
  ------------------
  415|      2|    string = &_Py_ID(__instancecheck__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  416|      2|    _PyUnicode_InternStatic(interp, &string);
  417|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (417:5): [True: 2, False: 0]
  ------------------
  418|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (418:5): [True: 2, False: 0]
  ------------------
  419|      2|    string = &_Py_ID(__int__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  420|      2|    _PyUnicode_InternStatic(interp, &string);
  421|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (421:5): [True: 2, False: 0]
  ------------------
  422|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (422:5): [True: 2, False: 0]
  ------------------
  423|      2|    string = &_Py_ID(__invert__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  424|      2|    _PyUnicode_InternStatic(interp, &string);
  425|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (425:5): [True: 2, False: 0]
  ------------------
  426|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (426:5): [True: 2, False: 0]
  ------------------
  427|      2|    string = &_Py_ID(__ior__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  428|      2|    _PyUnicode_InternStatic(interp, &string);
  429|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (429:5): [True: 2, False: 0]
  ------------------
  430|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (430:5): [True: 2, False: 0]
  ------------------
  431|      2|    string = &_Py_ID(__ipow__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  432|      2|    _PyUnicode_InternStatic(interp, &string);
  433|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (433:5): [True: 2, False: 0]
  ------------------
  434|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (434:5): [True: 2, False: 0]
  ------------------
  435|      2|    string = &_Py_ID(__irshift__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  436|      2|    _PyUnicode_InternStatic(interp, &string);
  437|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (437:5): [True: 2, False: 0]
  ------------------
  438|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (438:5): [True: 2, False: 0]
  ------------------
  439|      2|    string = &_Py_ID(__isabstractmethod__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  440|      2|    _PyUnicode_InternStatic(interp, &string);
  441|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (441:5): [True: 2, False: 0]
  ------------------
  442|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (442:5): [True: 2, False: 0]
  ------------------
  443|      2|    string = &_Py_ID(__isub__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  444|      2|    _PyUnicode_InternStatic(interp, &string);
  445|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (445:5): [True: 2, False: 0]
  ------------------
  446|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (446:5): [True: 2, False: 0]
  ------------------
  447|      2|    string = &_Py_ID(__iter__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  448|      2|    _PyUnicode_InternStatic(interp, &string);
  449|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (449:5): [True: 2, False: 0]
  ------------------
  450|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (450:5): [True: 2, False: 0]
  ------------------
  451|      2|    string = &_Py_ID(__itruediv__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  452|      2|    _PyUnicode_InternStatic(interp, &string);
  453|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (453:5): [True: 2, False: 0]
  ------------------
  454|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (454:5): [True: 2, False: 0]
  ------------------
  455|      2|    string = &_Py_ID(__ixor__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  456|      2|    _PyUnicode_InternStatic(interp, &string);
  457|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (457:5): [True: 2, False: 0]
  ------------------
  458|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (458:5): [True: 2, False: 0]
  ------------------
  459|      2|    string = &_Py_ID(__lazy_import__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  460|      2|    _PyUnicode_InternStatic(interp, &string);
  461|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (461:5): [True: 2, False: 0]
  ------------------
  462|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (462:5): [True: 2, False: 0]
  ------------------
  463|      2|    string = &_Py_ID(__lazy_modules__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  464|      2|    _PyUnicode_InternStatic(interp, &string);
  465|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (465:5): [True: 2, False: 0]
  ------------------
  466|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (466:5): [True: 2, False: 0]
  ------------------
  467|      2|    string = &_Py_ID(__le__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  468|      2|    _PyUnicode_InternStatic(interp, &string);
  469|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (469:5): [True: 2, False: 0]
  ------------------
  470|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (470:5): [True: 2, False: 0]
  ------------------
  471|      2|    string = &_Py_ID(__len__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  472|      2|    _PyUnicode_InternStatic(interp, &string);
  473|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (473:5): [True: 2, False: 0]
  ------------------
  474|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (474:5): [True: 2, False: 0]
  ------------------
  475|      2|    string = &_Py_ID(__length_hint__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  476|      2|    _PyUnicode_InternStatic(interp, &string);
  477|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (477:5): [True: 2, False: 0]
  ------------------
  478|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (478:5): [True: 2, False: 0]
  ------------------
  479|      2|    string = &_Py_ID(__lltrace__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  480|      2|    _PyUnicode_InternStatic(interp, &string);
  481|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (481:5): [True: 2, False: 0]
  ------------------
  482|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (482:5): [True: 2, False: 0]
  ------------------
  483|      2|    string = &_Py_ID(__loader__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  484|      2|    _PyUnicode_InternStatic(interp, &string);
  485|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (485:5): [True: 2, False: 0]
  ------------------
  486|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (486:5): [True: 2, False: 0]
  ------------------
  487|      2|    string = &_Py_ID(__lshift__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  488|      2|    _PyUnicode_InternStatic(interp, &string);
  489|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (489:5): [True: 2, False: 0]
  ------------------
  490|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (490:5): [True: 2, False: 0]
  ------------------
  491|      2|    string = &_Py_ID(__lt__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  492|      2|    _PyUnicode_InternStatic(interp, &string);
  493|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (493:5): [True: 2, False: 0]
  ------------------
  494|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (494:5): [True: 2, False: 0]
  ------------------
  495|      2|    string = &_Py_ID(__main__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  496|      2|    _PyUnicode_InternStatic(interp, &string);
  497|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (497:5): [True: 2, False: 0]
  ------------------
  498|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (498:5): [True: 2, False: 0]
  ------------------
  499|      2|    string = &_Py_ID(__match_args__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  500|      2|    _PyUnicode_InternStatic(interp, &string);
  501|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (501:5): [True: 2, False: 0]
  ------------------
  502|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (502:5): [True: 2, False: 0]
  ------------------
  503|      2|    string = &_Py_ID(__matmul__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  504|      2|    _PyUnicode_InternStatic(interp, &string);
  505|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (505:5): [True: 2, False: 0]
  ------------------
  506|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (506:5): [True: 2, False: 0]
  ------------------
  507|      2|    string = &_Py_ID(__missing__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  508|      2|    _PyUnicode_InternStatic(interp, &string);
  509|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (509:5): [True: 2, False: 0]
  ------------------
  510|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (510:5): [True: 2, False: 0]
  ------------------
  511|      2|    string = &_Py_ID(__mod__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  512|      2|    _PyUnicode_InternStatic(interp, &string);
  513|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (513:5): [True: 2, False: 0]
  ------------------
  514|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (514:5): [True: 2, False: 0]
  ------------------
  515|      2|    string = &_Py_ID(__module__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  516|      2|    _PyUnicode_InternStatic(interp, &string);
  517|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (517:5): [True: 2, False: 0]
  ------------------
  518|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (518:5): [True: 2, False: 0]
  ------------------
  519|      2|    string = &_Py_ID(__mro_entries__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  520|      2|    _PyUnicode_InternStatic(interp, &string);
  521|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (521:5): [True: 2, False: 0]
  ------------------
  522|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (522:5): [True: 2, False: 0]
  ------------------
  523|      2|    string = &_Py_ID(__mul__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  524|      2|    _PyUnicode_InternStatic(interp, &string);
  525|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (525:5): [True: 2, False: 0]
  ------------------
  526|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (526:5): [True: 2, False: 0]
  ------------------
  527|      2|    string = &_Py_ID(__name__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  528|      2|    _PyUnicode_InternStatic(interp, &string);
  529|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (529:5): [True: 2, False: 0]
  ------------------
  530|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (530:5): [True: 2, False: 0]
  ------------------
  531|      2|    string = &_Py_ID(__ne__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  532|      2|    _PyUnicode_InternStatic(interp, &string);
  533|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (533:5): [True: 2, False: 0]
  ------------------
  534|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (534:5): [True: 2, False: 0]
  ------------------
  535|      2|    string = &_Py_ID(__neg__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  536|      2|    _PyUnicode_InternStatic(interp, &string);
  537|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (537:5): [True: 2, False: 0]
  ------------------
  538|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (538:5): [True: 2, False: 0]
  ------------------
  539|      2|    string = &_Py_ID(__new__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  540|      2|    _PyUnicode_InternStatic(interp, &string);
  541|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (541:5): [True: 2, False: 0]
  ------------------
  542|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (542:5): [True: 2, False: 0]
  ------------------
  543|      2|    string = &_Py_ID(__newobj__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  544|      2|    _PyUnicode_InternStatic(interp, &string);
  545|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (545:5): [True: 2, False: 0]
  ------------------
  546|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (546:5): [True: 2, False: 0]
  ------------------
  547|      2|    string = &_Py_ID(__newobj_ex__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  548|      2|    _PyUnicode_InternStatic(interp, &string);
  549|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (549:5): [True: 2, False: 0]
  ------------------
  550|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (550:5): [True: 2, False: 0]
  ------------------
  551|      2|    string = &_Py_ID(__next__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  552|      2|    _PyUnicode_InternStatic(interp, &string);
  553|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (553:5): [True: 2, False: 0]
  ------------------
  554|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (554:5): [True: 2, False: 0]
  ------------------
  555|      2|    string = &_Py_ID(__notes__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  556|      2|    _PyUnicode_InternStatic(interp, &string);
  557|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (557:5): [True: 2, False: 0]
  ------------------
  558|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (558:5): [True: 2, False: 0]
  ------------------
  559|      2|    string = &_Py_ID(__or__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  560|      2|    _PyUnicode_InternStatic(interp, &string);
  561|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (561:5): [True: 2, False: 0]
  ------------------
  562|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (562:5): [True: 2, False: 0]
  ------------------
  563|      2|    string = &_Py_ID(__orig_class__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  564|      2|    _PyUnicode_InternStatic(interp, &string);
  565|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (565:5): [True: 2, False: 0]
  ------------------
  566|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (566:5): [True: 2, False: 0]
  ------------------
  567|      2|    string = &_Py_ID(__origin__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  568|      2|    _PyUnicode_InternStatic(interp, &string);
  569|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (569:5): [True: 2, False: 0]
  ------------------
  570|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (570:5): [True: 2, False: 0]
  ------------------
  571|      2|    string = &_Py_ID(__package__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  572|      2|    _PyUnicode_InternStatic(interp, &string);
  573|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (573:5): [True: 2, False: 0]
  ------------------
  574|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (574:5): [True: 2, False: 0]
  ------------------
  575|      2|    string = &_Py_ID(__parameters__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  576|      2|    _PyUnicode_InternStatic(interp, &string);
  577|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (577:5): [True: 2, False: 0]
  ------------------
  578|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (578:5): [True: 2, False: 0]
  ------------------
  579|      2|    string = &_Py_ID(__path__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  580|      2|    _PyUnicode_InternStatic(interp, &string);
  581|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (581:5): [True: 2, False: 0]
  ------------------
  582|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (582:5): [True: 2, False: 0]
  ------------------
  583|      2|    string = &_Py_ID(__pos__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  584|      2|    _PyUnicode_InternStatic(interp, &string);
  585|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (585:5): [True: 2, False: 0]
  ------------------
  586|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (586:5): [True: 2, False: 0]
  ------------------
  587|      2|    string = &_Py_ID(__pow__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  588|      2|    _PyUnicode_InternStatic(interp, &string);
  589|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (589:5): [True: 2, False: 0]
  ------------------
  590|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (590:5): [True: 2, False: 0]
  ------------------
  591|      2|    string = &_Py_ID(__prepare__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  592|      2|    _PyUnicode_InternStatic(interp, &string);
  593|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (593:5): [True: 2, False: 0]
  ------------------
  594|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (594:5): [True: 2, False: 0]
  ------------------
  595|      2|    string = &_Py_ID(__qualname__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  596|      2|    _PyUnicode_InternStatic(interp, &string);
  597|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (597:5): [True: 2, False: 0]
  ------------------
  598|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (598:5): [True: 2, False: 0]
  ------------------
  599|      2|    string = &_Py_ID(__radd__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  600|      2|    _PyUnicode_InternStatic(interp, &string);
  601|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (601:5): [True: 2, False: 0]
  ------------------
  602|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (602:5): [True: 2, False: 0]
  ------------------
  603|      2|    string = &_Py_ID(__rand__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  604|      2|    _PyUnicode_InternStatic(interp, &string);
  605|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (605:5): [True: 2, False: 0]
  ------------------
  606|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (606:5): [True: 2, False: 0]
  ------------------
  607|      2|    string = &_Py_ID(__rdivmod__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  608|      2|    _PyUnicode_InternStatic(interp, &string);
  609|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (609:5): [True: 2, False: 0]
  ------------------
  610|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (610:5): [True: 2, False: 0]
  ------------------
  611|      2|    string = &_Py_ID(__reduce__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  612|      2|    _PyUnicode_InternStatic(interp, &string);
  613|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (613:5): [True: 2, False: 0]
  ------------------
  614|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (614:5): [True: 2, False: 0]
  ------------------
  615|      2|    string = &_Py_ID(__reduce_ex__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  616|      2|    _PyUnicode_InternStatic(interp, &string);
  617|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (617:5): [True: 2, False: 0]
  ------------------
  618|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (618:5): [True: 2, False: 0]
  ------------------
  619|      2|    string = &_Py_ID(__release_buffer__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  620|      2|    _PyUnicode_InternStatic(interp, &string);
  621|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (621:5): [True: 2, False: 0]
  ------------------
  622|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (622:5): [True: 2, False: 0]
  ------------------
  623|      2|    string = &_Py_ID(__repr__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  624|      2|    _PyUnicode_InternStatic(interp, &string);
  625|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (625:5): [True: 2, False: 0]
  ------------------
  626|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (626:5): [True: 2, False: 0]
  ------------------
  627|      2|    string = &_Py_ID(__reversed__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  628|      2|    _PyUnicode_InternStatic(interp, &string);
  629|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (629:5): [True: 2, False: 0]
  ------------------
  630|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (630:5): [True: 2, False: 0]
  ------------------
  631|      2|    string = &_Py_ID(__rfloordiv__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  632|      2|    _PyUnicode_InternStatic(interp, &string);
  633|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (633:5): [True: 2, False: 0]
  ------------------
  634|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (634:5): [True: 2, False: 0]
  ------------------
  635|      2|    string = &_Py_ID(__rlshift__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  636|      2|    _PyUnicode_InternStatic(interp, &string);
  637|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (637:5): [True: 2, False: 0]
  ------------------
  638|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (638:5): [True: 2, False: 0]
  ------------------
  639|      2|    string = &_Py_ID(__rmatmul__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  640|      2|    _PyUnicode_InternStatic(interp, &string);
  641|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (641:5): [True: 2, False: 0]
  ------------------
  642|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (642:5): [True: 2, False: 0]
  ------------------
  643|      2|    string = &_Py_ID(__rmod__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  644|      2|    _PyUnicode_InternStatic(interp, &string);
  645|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (645:5): [True: 2, False: 0]
  ------------------
  646|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (646:5): [True: 2, False: 0]
  ------------------
  647|      2|    string = &_Py_ID(__rmul__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  648|      2|    _PyUnicode_InternStatic(interp, &string);
  649|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (649:5): [True: 2, False: 0]
  ------------------
  650|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (650:5): [True: 2, False: 0]
  ------------------
  651|      2|    string = &_Py_ID(__ror__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  652|      2|    _PyUnicode_InternStatic(interp, &string);
  653|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (653:5): [True: 2, False: 0]
  ------------------
  654|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (654:5): [True: 2, False: 0]
  ------------------
  655|      2|    string = &_Py_ID(__round__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  656|      2|    _PyUnicode_InternStatic(interp, &string);
  657|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (657:5): [True: 2, False: 0]
  ------------------
  658|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (658:5): [True: 2, False: 0]
  ------------------
  659|      2|    string = &_Py_ID(__rpow__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  660|      2|    _PyUnicode_InternStatic(interp, &string);
  661|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (661:5): [True: 2, False: 0]
  ------------------
  662|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (662:5): [True: 2, False: 0]
  ------------------
  663|      2|    string = &_Py_ID(__rrshift__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  664|      2|    _PyUnicode_InternStatic(interp, &string);
  665|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (665:5): [True: 2, False: 0]
  ------------------
  666|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (666:5): [True: 2, False: 0]
  ------------------
  667|      2|    string = &_Py_ID(__rshift__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  668|      2|    _PyUnicode_InternStatic(interp, &string);
  669|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (669:5): [True: 2, False: 0]
  ------------------
  670|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (670:5): [True: 2, False: 0]
  ------------------
  671|      2|    string = &_Py_ID(__rsub__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  672|      2|    _PyUnicode_InternStatic(interp, &string);
  673|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (673:5): [True: 2, False: 0]
  ------------------
  674|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (674:5): [True: 2, False: 0]
  ------------------
  675|      2|    string = &_Py_ID(__rtruediv__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  676|      2|    _PyUnicode_InternStatic(interp, &string);
  677|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (677:5): [True: 2, False: 0]
  ------------------
  678|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (678:5): [True: 2, False: 0]
  ------------------
  679|      2|    string = &_Py_ID(__rxor__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  680|      2|    _PyUnicode_InternStatic(interp, &string);
  681|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (681:5): [True: 2, False: 0]
  ------------------
  682|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (682:5): [True: 2, False: 0]
  ------------------
  683|      2|    string = &_Py_ID(__set__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  684|      2|    _PyUnicode_InternStatic(interp, &string);
  685|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (685:5): [True: 2, False: 0]
  ------------------
  686|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (686:5): [True: 2, False: 0]
  ------------------
  687|      2|    string = &_Py_ID(__set_name__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  688|      2|    _PyUnicode_InternStatic(interp, &string);
  689|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (689:5): [True: 2, False: 0]
  ------------------
  690|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (690:5): [True: 2, False: 0]
  ------------------
  691|      2|    string = &_Py_ID(__setattr__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  692|      2|    _PyUnicode_InternStatic(interp, &string);
  693|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (693:5): [True: 2, False: 0]
  ------------------
  694|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (694:5): [True: 2, False: 0]
  ------------------
  695|      2|    string = &_Py_ID(__setitem__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  696|      2|    _PyUnicode_InternStatic(interp, &string);
  697|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (697:5): [True: 2, False: 0]
  ------------------
  698|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (698:5): [True: 2, False: 0]
  ------------------
  699|      2|    string = &_Py_ID(__setstate__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  700|      2|    _PyUnicode_InternStatic(interp, &string);
  701|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (701:5): [True: 2, False: 0]
  ------------------
  702|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (702:5): [True: 2, False: 0]
  ------------------
  703|      2|    string = &_Py_ID(__sizeof__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  704|      2|    _PyUnicode_InternStatic(interp, &string);
  705|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (705:5): [True: 2, False: 0]
  ------------------
  706|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (706:5): [True: 2, False: 0]
  ------------------
  707|      2|    string = &_Py_ID(__slotnames__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  708|      2|    _PyUnicode_InternStatic(interp, &string);
  709|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (709:5): [True: 2, False: 0]
  ------------------
  710|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (710:5): [True: 2, False: 0]
  ------------------
  711|      2|    string = &_Py_ID(__slots__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  712|      2|    _PyUnicode_InternStatic(interp, &string);
  713|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (713:5): [True: 2, False: 0]
  ------------------
  714|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (714:5): [True: 2, False: 0]
  ------------------
  715|      2|    string = &_Py_ID(__spec__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  716|      2|    _PyUnicode_InternStatic(interp, &string);
  717|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (717:5): [True: 2, False: 0]
  ------------------
  718|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (718:5): [True: 2, False: 0]
  ------------------
  719|      2|    string = &_Py_ID(__static_attributes__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  720|      2|    _PyUnicode_InternStatic(interp, &string);
  721|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (721:5): [True: 2, False: 0]
  ------------------
  722|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (722:5): [True: 2, False: 0]
  ------------------
  723|      2|    string = &_Py_ID(__str__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  724|      2|    _PyUnicode_InternStatic(interp, &string);
  725|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (725:5): [True: 2, False: 0]
  ------------------
  726|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (726:5): [True: 2, False: 0]
  ------------------
  727|      2|    string = &_Py_ID(__sub__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  728|      2|    _PyUnicode_InternStatic(interp, &string);
  729|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (729:5): [True: 2, False: 0]
  ------------------
  730|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (730:5): [True: 2, False: 0]
  ------------------
  731|      2|    string = &_Py_ID(__subclasscheck__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  732|      2|    _PyUnicode_InternStatic(interp, &string);
  733|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (733:5): [True: 2, False: 0]
  ------------------
  734|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (734:5): [True: 2, False: 0]
  ------------------
  735|      2|    string = &_Py_ID(__subclasshook__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  736|      2|    _PyUnicode_InternStatic(interp, &string);
  737|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (737:5): [True: 2, False: 0]
  ------------------
  738|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (738:5): [True: 2, False: 0]
  ------------------
  739|      2|    string = &_Py_ID(__truediv__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  740|      2|    _PyUnicode_InternStatic(interp, &string);
  741|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (741:5): [True: 2, False: 0]
  ------------------
  742|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (742:5): [True: 2, False: 0]
  ------------------
  743|      2|    string = &_Py_ID(__trunc__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  744|      2|    _PyUnicode_InternStatic(interp, &string);
  745|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (745:5): [True: 2, False: 0]
  ------------------
  746|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (746:5): [True: 2, False: 0]
  ------------------
  747|      2|    string = &_Py_ID(__type_params__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  748|      2|    _PyUnicode_InternStatic(interp, &string);
  749|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (749:5): [True: 2, False: 0]
  ------------------
  750|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (750:5): [True: 2, False: 0]
  ------------------
  751|      2|    string = &_Py_ID(__typing_is_unpacked_typevartuple__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  752|      2|    _PyUnicode_InternStatic(interp, &string);
  753|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (753:5): [True: 2, False: 0]
  ------------------
  754|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (754:5): [True: 2, False: 0]
  ------------------
  755|      2|    string = &_Py_ID(__typing_prepare_subst__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  756|      2|    _PyUnicode_InternStatic(interp, &string);
  757|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (757:5): [True: 2, False: 0]
  ------------------
  758|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (758:5): [True: 2, False: 0]
  ------------------
  759|      2|    string = &_Py_ID(__typing_subst__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  760|      2|    _PyUnicode_InternStatic(interp, &string);
  761|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (761:5): [True: 2, False: 0]
  ------------------
  762|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (762:5): [True: 2, False: 0]
  ------------------
  763|      2|    string = &_Py_ID(__typing_unpacked_tuple_args__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  764|      2|    _PyUnicode_InternStatic(interp, &string);
  765|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (765:5): [True: 2, False: 0]
  ------------------
  766|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (766:5): [True: 2, False: 0]
  ------------------
  767|      2|    string = &_Py_ID(__warningregistry__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  768|      2|    _PyUnicode_InternStatic(interp, &string);
  769|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (769:5): [True: 2, False: 0]
  ------------------
  770|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (770:5): [True: 2, False: 0]
  ------------------
  771|      2|    string = &_Py_ID(__weaklistoffset__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  772|      2|    _PyUnicode_InternStatic(interp, &string);
  773|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (773:5): [True: 2, False: 0]
  ------------------
  774|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (774:5): [True: 2, False: 0]
  ------------------
  775|      2|    string = &_Py_ID(__weakref__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  776|      2|    _PyUnicode_InternStatic(interp, &string);
  777|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (777:5): [True: 2, False: 0]
  ------------------
  778|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (778:5): [True: 2, False: 0]
  ------------------
  779|      2|    string = &_Py_ID(__xor__);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  780|      2|    _PyUnicode_InternStatic(interp, &string);
  781|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (781:5): [True: 2, False: 0]
  ------------------
  782|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (782:5): [True: 2, False: 0]
  ------------------
  783|      2|    string = &_Py_ID(_abc_impl);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  784|      2|    _PyUnicode_InternStatic(interp, &string);
  785|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (785:5): [True: 2, False: 0]
  ------------------
  786|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (786:5): [True: 2, False: 0]
  ------------------
  787|      2|    string = &_Py_ID(_abstract_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  788|      2|    _PyUnicode_InternStatic(interp, &string);
  789|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (789:5): [True: 2, False: 0]
  ------------------
  790|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (790:5): [True: 2, False: 0]
  ------------------
  791|      2|    string = &_Py_ID(_active);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  792|      2|    _PyUnicode_InternStatic(interp, &string);
  793|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (793:5): [True: 2, False: 0]
  ------------------
  794|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (794:5): [True: 2, False: 0]
  ------------------
  795|      2|    string = &_Py_ID(_anonymous_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  796|      2|    _PyUnicode_InternStatic(interp, &string);
  797|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (797:5): [True: 2, False: 0]
  ------------------
  798|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (798:5): [True: 2, False: 0]
  ------------------
  799|      2|    string = &_Py_ID(_argtypes_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  800|      2|    _PyUnicode_InternStatic(interp, &string);
  801|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (801:5): [True: 2, False: 0]
  ------------------
  802|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (802:5): [True: 2, False: 0]
  ------------------
  803|      2|    string = &_Py_ID(_as_parameter_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  804|      2|    _PyUnicode_InternStatic(interp, &string);
  805|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (805:5): [True: 2, False: 0]
  ------------------
  806|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (806:5): [True: 2, False: 0]
  ------------------
  807|      2|    string = &_Py_ID(_asyncio_future_blocking);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  808|      2|    _PyUnicode_InternStatic(interp, &string);
  809|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (809:5): [True: 2, False: 0]
  ------------------
  810|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (810:5): [True: 2, False: 0]
  ------------------
  811|      2|    string = &_Py_ID(_blksize);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  812|      2|    _PyUnicode_InternStatic(interp, &string);
  813|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (813:5): [True: 2, False: 0]
  ------------------
  814|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (814:5): [True: 2, False: 0]
  ------------------
  815|      2|    string = &_Py_ID(_bootstrap);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  816|      2|    _PyUnicode_InternStatic(interp, &string);
  817|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (817:5): [True: 2, False: 0]
  ------------------
  818|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (818:5): [True: 2, False: 0]
  ------------------
  819|      2|    string = &_Py_ID(_check_retval_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  820|      2|    _PyUnicode_InternStatic(interp, &string);
  821|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (821:5): [True: 2, False: 0]
  ------------------
  822|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (822:5): [True: 2, False: 0]
  ------------------
  823|      2|    string = &_Py_ID(_dealloc_warn);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  824|      2|    _PyUnicode_InternStatic(interp, &string);
  825|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (825:5): [True: 2, False: 0]
  ------------------
  826|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (826:5): [True: 2, False: 0]
  ------------------
  827|      2|    string = &_Py_ID(_feature_version);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  828|      2|    _PyUnicode_InternStatic(interp, &string);
  829|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (829:5): [True: 2, False: 0]
  ------------------
  830|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (830:5): [True: 2, False: 0]
  ------------------
  831|      2|    string = &_Py_ID(_field_types);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  832|      2|    _PyUnicode_InternStatic(interp, &string);
  833|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (833:5): [True: 2, False: 0]
  ------------------
  834|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (834:5): [True: 2, False: 0]
  ------------------
  835|      2|    string = &_Py_ID(_fields_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  836|      2|    _PyUnicode_InternStatic(interp, &string);
  837|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (837:5): [True: 2, False: 0]
  ------------------
  838|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (838:5): [True: 2, False: 0]
  ------------------
  839|      2|    string = &_Py_ID(_filters);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  840|      2|    _PyUnicode_InternStatic(interp, &string);
  841|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (841:5): [True: 2, False: 0]
  ------------------
  842|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (842:5): [True: 2, False: 0]
  ------------------
  843|      2|    string = &_Py_ID(_finalizing);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  844|      2|    _PyUnicode_InternStatic(interp, &string);
  845|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (845:5): [True: 2, False: 0]
  ------------------
  846|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (846:5): [True: 2, False: 0]
  ------------------
  847|      2|    string = &_Py_ID(_find_and_load);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  848|      2|    _PyUnicode_InternStatic(interp, &string);
  849|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (849:5): [True: 2, False: 0]
  ------------------
  850|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (850:5): [True: 2, False: 0]
  ------------------
  851|      2|    string = &_Py_ID(_fix_up_module);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  852|      2|    _PyUnicode_InternStatic(interp, &string);
  853|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (853:5): [True: 2, False: 0]
  ------------------
  854|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (854:5): [True: 2, False: 0]
  ------------------
  855|      2|    string = &_Py_ID(_flags_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  856|      2|    _PyUnicode_InternStatic(interp, &string);
  857|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (857:5): [True: 2, False: 0]
  ------------------
  858|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (858:5): [True: 2, False: 0]
  ------------------
  859|      2|    string = &_Py_ID(_get_sourcefile);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  860|      2|    _PyUnicode_InternStatic(interp, &string);
  861|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (861:5): [True: 2, False: 0]
  ------------------
  862|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (862:5): [True: 2, False: 0]
  ------------------
  863|      2|    string = &_Py_ID(_handle_fromlist);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  864|      2|    _PyUnicode_InternStatic(interp, &string);
  865|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (865:5): [True: 2, False: 0]
  ------------------
  866|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (866:5): [True: 2, False: 0]
  ------------------
  867|      2|    string = &_Py_ID(_initializing);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  868|      2|    _PyUnicode_InternStatic(interp, &string);
  869|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (869:5): [True: 2, False: 0]
  ------------------
  870|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (870:5): [True: 2, False: 0]
  ------------------
  871|      2|    string = &_Py_ID(_internal_use);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  872|      2|    _PyUnicode_InternStatic(interp, &string);
  873|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (873:5): [True: 2, False: 0]
  ------------------
  874|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (874:5): [True: 2, False: 0]
  ------------------
  875|      2|    string = &_Py_ID(_io);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  876|      2|    _PyUnicode_InternStatic(interp, &string);
  877|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (877:5): [True: 2, False: 0]
  ------------------
  878|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (878:5): [True: 2, False: 0]
  ------------------
  879|      2|    string = &_Py_ID(_is_text_encoding);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  880|      2|    _PyUnicode_InternStatic(interp, &string);
  881|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (881:5): [True: 2, False: 0]
  ------------------
  882|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (882:5): [True: 2, False: 0]
  ------------------
  883|      2|    string = &_Py_ID(_isatty_open_only);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  884|      2|    _PyUnicode_InternStatic(interp, &string);
  885|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (885:5): [True: 2, False: 0]
  ------------------
  886|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (886:5): [True: 2, False: 0]
  ------------------
  887|      2|    string = &_Py_ID(_length_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  888|      2|    _PyUnicode_InternStatic(interp, &string);
  889|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (889:5): [True: 2, False: 0]
  ------------------
  890|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (890:5): [True: 2, False: 0]
  ------------------
  891|      2|    string = &_Py_ID(_limbo);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  892|      2|    _PyUnicode_InternStatic(interp, &string);
  893|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (893:5): [True: 2, False: 0]
  ------------------
  894|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (894:5): [True: 2, False: 0]
  ------------------
  895|      2|    string = &_Py_ID(_lock_unlock_module);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  896|      2|    _PyUnicode_InternStatic(interp, &string);
  897|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (897:5): [True: 2, False: 0]
  ------------------
  898|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (898:5): [True: 2, False: 0]
  ------------------
  899|      2|    string = &_Py_ID(_loop);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  900|      2|    _PyUnicode_InternStatic(interp, &string);
  901|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (901:5): [True: 2, False: 0]
  ------------------
  902|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (902:5): [True: 2, False: 0]
  ------------------
  903|      2|    string = &_Py_ID(_needs_com_addref_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  904|      2|    _PyUnicode_InternStatic(interp, &string);
  905|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (905:5): [True: 2, False: 0]
  ------------------
  906|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (906:5): [True: 2, False: 0]
  ------------------
  907|      2|    string = &_Py_ID(_only_immortal);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  908|      2|    _PyUnicode_InternStatic(interp, &string);
  909|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (909:5): [True: 2, False: 0]
  ------------------
  910|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (910:5): [True: 2, False: 0]
  ------------------
  911|      2|    string = &_Py_ID(_restype_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  912|      2|    _PyUnicode_InternStatic(interp, &string);
  913|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (913:5): [True: 2, False: 0]
  ------------------
  914|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (914:5): [True: 2, False: 0]
  ------------------
  915|      2|    string = &_Py_ID(_showwarnmsg);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  916|      2|    _PyUnicode_InternStatic(interp, &string);
  917|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (917:5): [True: 2, False: 0]
  ------------------
  918|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (918:5): [True: 2, False: 0]
  ------------------
  919|      2|    string = &_Py_ID(_shutdown);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  920|      2|    _PyUnicode_InternStatic(interp, &string);
  921|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (921:5): [True: 2, False: 0]
  ------------------
  922|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (922:5): [True: 2, False: 0]
  ------------------
  923|      2|    string = &_Py_ID(_slotnames);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  924|      2|    _PyUnicode_InternStatic(interp, &string);
  925|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (925:5): [True: 2, False: 0]
  ------------------
  926|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (926:5): [True: 2, False: 0]
  ------------------
  927|      2|    string = &_Py_ID(_strptime);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  928|      2|    _PyUnicode_InternStatic(interp, &string);
  929|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (929:5): [True: 2, False: 0]
  ------------------
  930|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (930:5): [True: 2, False: 0]
  ------------------
  931|      2|    string = &_Py_ID(_strptime_datetime_date);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  932|      2|    _PyUnicode_InternStatic(interp, &string);
  933|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (933:5): [True: 2, False: 0]
  ------------------
  934|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (934:5): [True: 2, False: 0]
  ------------------
  935|      2|    string = &_Py_ID(_strptime_datetime_datetime);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  936|      2|    _PyUnicode_InternStatic(interp, &string);
  937|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (937:5): [True: 2, False: 0]
  ------------------
  938|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (938:5): [True: 2, False: 0]
  ------------------
  939|      2|    string = &_Py_ID(_strptime_datetime_time);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  940|      2|    _PyUnicode_InternStatic(interp, &string);
  941|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (941:5): [True: 2, False: 0]
  ------------------
  942|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (942:5): [True: 2, False: 0]
  ------------------
  943|      2|    string = &_Py_ID(_type_);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  944|      2|    _PyUnicode_InternStatic(interp, &string);
  945|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (945:5): [True: 2, False: 0]
  ------------------
  946|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (946:5): [True: 2, False: 0]
  ------------------
  947|      2|    string = &_Py_ID(_uninitialized_submodules);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  948|      2|    _PyUnicode_InternStatic(interp, &string);
  949|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (949:5): [True: 2, False: 0]
  ------------------
  950|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (950:5): [True: 2, False: 0]
  ------------------
  951|      2|    string = &_Py_ID(_warn_unawaited_coroutine);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  952|      2|    _PyUnicode_InternStatic(interp, &string);
  953|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (953:5): [True: 2, False: 0]
  ------------------
  954|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (954:5): [True: 2, False: 0]
  ------------------
  955|      2|    string = &_Py_ID(_xoptions);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  956|      2|    _PyUnicode_InternStatic(interp, &string);
  957|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (957:5): [True: 2, False: 0]
  ------------------
  958|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (958:5): [True: 2, False: 0]
  ------------------
  959|      2|    string = &_Py_ID(abs_tol);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  960|      2|    _PyUnicode_InternStatic(interp, &string);
  961|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (961:5): [True: 2, False: 0]
  ------------------
  962|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (962:5): [True: 2, False: 0]
  ------------------
  963|      2|    string = &_Py_ID(access);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  964|      2|    _PyUnicode_InternStatic(interp, &string);
  965|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (965:5): [True: 2, False: 0]
  ------------------
  966|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (966:5): [True: 2, False: 0]
  ------------------
  967|      2|    string = &_Py_ID(aclose);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  968|      2|    _PyUnicode_InternStatic(interp, &string);
  969|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (969:5): [True: 2, False: 0]
  ------------------
  970|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (970:5): [True: 2, False: 0]
  ------------------
  971|      2|    string = &_Py_ID(add);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  972|      2|    _PyUnicode_InternStatic(interp, &string);
  973|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (973:5): [True: 2, False: 0]
  ------------------
  974|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (974:5): [True: 2, False: 0]
  ------------------
  975|      2|    string = &_Py_ID(add_done_callback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  976|      2|    _PyUnicode_InternStatic(interp, &string);
  977|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (977:5): [True: 2, False: 0]
  ------------------
  978|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (978:5): [True: 2, False: 0]
  ------------------
  979|      2|    string = &_Py_ID(adobe);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  980|      2|    _PyUnicode_InternStatic(interp, &string);
  981|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (981:5): [True: 2, False: 0]
  ------------------
  982|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (982:5): [True: 2, False: 0]
  ------------------
  983|      2|    string = &_Py_ID(after_in_child);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  984|      2|    _PyUnicode_InternStatic(interp, &string);
  985|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (985:5): [True: 2, False: 0]
  ------------------
  986|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (986:5): [True: 2, False: 0]
  ------------------
  987|      2|    string = &_Py_ID(after_in_parent);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  988|      2|    _PyUnicode_InternStatic(interp, &string);
  989|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (989:5): [True: 2, False: 0]
  ------------------
  990|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (990:5): [True: 2, False: 0]
  ------------------
  991|      2|    string = &_Py_ID(alias);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  992|      2|    _PyUnicode_InternStatic(interp, &string);
  993|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (993:5): [True: 2, False: 0]
  ------------------
  994|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (994:5): [True: 2, False: 0]
  ------------------
  995|      2|    string = &_Py_ID(align);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  996|      2|    _PyUnicode_InternStatic(interp, &string);
  997|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (997:5): [True: 2, False: 0]
  ------------------
  998|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (998:5): [True: 2, False: 0]
  ------------------
  999|      2|    string = &_Py_ID(all);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1000|      2|    _PyUnicode_InternStatic(interp, &string);
 1001|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1001:5): [True: 2, False: 0]
  ------------------
 1002|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1002:5): [True: 2, False: 0]
  ------------------
 1003|      2|    string = &_Py_ID(all_interpreters);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1004|      2|    _PyUnicode_InternStatic(interp, &string);
 1005|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1005:5): [True: 2, False: 0]
  ------------------
 1006|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1006:5): [True: 2, False: 0]
  ------------------
 1007|      2|    string = &_Py_ID(all_threads);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1008|      2|    _PyUnicode_InternStatic(interp, &string);
 1009|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1009:5): [True: 2, False: 0]
  ------------------
 1010|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1010:5): [True: 2, False: 0]
  ------------------
 1011|      2|    string = &_Py_ID(allow_code);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1012|      2|    _PyUnicode_InternStatic(interp, &string);
 1013|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1013:5): [True: 2, False: 0]
  ------------------
 1014|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1014:5): [True: 2, False: 0]
  ------------------
 1015|      2|    string = &_Py_ID(alphabet);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1016|      2|    _PyUnicode_InternStatic(interp, &string);
 1017|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1017:5): [True: 2, False: 0]
  ------------------
 1018|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1018:5): [True: 2, False: 0]
  ------------------
 1019|      2|    string = &_Py_ID(any);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1020|      2|    _PyUnicode_InternStatic(interp, &string);
 1021|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1021:5): [True: 2, False: 0]
  ------------------
 1022|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1022:5): [True: 2, False: 0]
  ------------------
 1023|      2|    string = &_Py_ID(append);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1024|      2|    _PyUnicode_InternStatic(interp, &string);
 1025|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1025:5): [True: 2, False: 0]
  ------------------
 1026|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1026:5): [True: 2, False: 0]
  ------------------
 1027|      2|    string = &_Py_ID(arg);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1028|      2|    _PyUnicode_InternStatic(interp, &string);
 1029|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1029:5): [True: 2, False: 0]
  ------------------
 1030|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1030:5): [True: 2, False: 0]
  ------------------
 1031|      2|    string = &_Py_ID(argdefs);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1032|      2|    _PyUnicode_InternStatic(interp, &string);
 1033|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1033:5): [True: 2, False: 0]
  ------------------
 1034|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1034:5): [True: 2, False: 0]
  ------------------
 1035|      2|    string = &_Py_ID(args);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1036|      2|    _PyUnicode_InternStatic(interp, &string);
 1037|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1037:5): [True: 2, False: 0]
  ------------------
 1038|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1038:5): [True: 2, False: 0]
  ------------------
 1039|      2|    string = &_Py_ID(arguments);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1040|      2|    _PyUnicode_InternStatic(interp, &string);
 1041|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1041:5): [True: 2, False: 0]
  ------------------
 1042|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1042:5): [True: 2, False: 0]
  ------------------
 1043|      2|    string = &_Py_ID(argv);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1044|      2|    _PyUnicode_InternStatic(interp, &string);
 1045|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1045:5): [True: 2, False: 0]
  ------------------
 1046|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1046:5): [True: 2, False: 0]
  ------------------
 1047|      2|    string = &_Py_ID(as_integer_ratio);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1048|      2|    _PyUnicode_InternStatic(interp, &string);
 1049|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1049:5): [True: 2, False: 0]
  ------------------
 1050|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1050:5): [True: 2, False: 0]
  ------------------
 1051|      2|    string = &_Py_ID(asend);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1052|      2|    _PyUnicode_InternStatic(interp, &string);
 1053|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1053:5): [True: 2, False: 0]
  ------------------
 1054|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1054:5): [True: 2, False: 0]
  ------------------
 1055|      2|    string = &_Py_ID(ast);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1056|      2|    _PyUnicode_InternStatic(interp, &string);
 1057|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1057:5): [True: 2, False: 0]
  ------------------
 1058|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1058:5): [True: 2, False: 0]
  ------------------
 1059|      2|    string = &_Py_ID(athrow);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1060|      2|    _PyUnicode_InternStatic(interp, &string);
 1061|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1061:5): [True: 2, False: 0]
  ------------------
 1062|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1062:5): [True: 2, False: 0]
  ------------------
 1063|      2|    string = &_Py_ID(attribute);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1064|      2|    _PyUnicode_InternStatic(interp, &string);
 1065|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1065:5): [True: 2, False: 0]
  ------------------
 1066|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1066:5): [True: 2, False: 0]
  ------------------
 1067|      2|    string = &_Py_ID(autocommit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1068|      2|    _PyUnicode_InternStatic(interp, &string);
 1069|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1069:5): [True: 2, False: 0]
  ------------------
 1070|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1070:5): [True: 2, False: 0]
  ------------------
 1071|      2|    string = &_Py_ID(backtick);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1072|      2|    _PyUnicode_InternStatic(interp, &string);
 1073|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1073:5): [True: 2, False: 0]
  ------------------
 1074|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1074:5): [True: 2, False: 0]
  ------------------
 1075|      2|    string = &_Py_ID(base);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1076|      2|    _PyUnicode_InternStatic(interp, &string);
 1077|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1077:5): [True: 2, False: 0]
  ------------------
 1078|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1078:5): [True: 2, False: 0]
  ------------------
 1079|      2|    string = &_Py_ID(before);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1080|      2|    _PyUnicode_InternStatic(interp, &string);
 1081|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1081:5): [True: 2, False: 0]
  ------------------
 1082|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1082:5): [True: 2, False: 0]
  ------------------
 1083|      2|    string = &_Py_ID(big);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1084|      2|    _PyUnicode_InternStatic(interp, &string);
 1085|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1085:5): [True: 2, False: 0]
  ------------------
 1086|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1086:5): [True: 2, False: 0]
  ------------------
 1087|      2|    string = &_Py_ID(binary_form);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1088|      2|    _PyUnicode_InternStatic(interp, &string);
 1089|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1089:5): [True: 2, False: 0]
  ------------------
 1090|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1090:5): [True: 2, False: 0]
  ------------------
 1091|      2|    string = &_Py_ID(bit_offset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1092|      2|    _PyUnicode_InternStatic(interp, &string);
 1093|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1093:5): [True: 2, False: 0]
  ------------------
 1094|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1094:5): [True: 2, False: 0]
  ------------------
 1095|      2|    string = &_Py_ID(bit_size);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1096|      2|    _PyUnicode_InternStatic(interp, &string);
 1097|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1097:5): [True: 2, False: 0]
  ------------------
 1098|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1098:5): [True: 2, False: 0]
  ------------------
 1099|      2|    string = &_Py_ID(block);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1100|      2|    _PyUnicode_InternStatic(interp, &string);
 1101|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1101:5): [True: 2, False: 0]
  ------------------
 1102|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1102:5): [True: 2, False: 0]
  ------------------
 1103|      2|    string = &_Py_ID(blocking);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1104|      2|    _PyUnicode_InternStatic(interp, &string);
 1105|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1105:5): [True: 2, False: 0]
  ------------------
 1106|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1106:5): [True: 2, False: 0]
  ------------------
 1107|      2|    string = &_Py_ID(bound);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1108|      2|    _PyUnicode_InternStatic(interp, &string);
 1109|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1109:5): [True: 2, False: 0]
  ------------------
 1110|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1110:5): [True: 2, False: 0]
  ------------------
 1111|      2|    string = &_Py_ID(buffer);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1112|      2|    _PyUnicode_InternStatic(interp, &string);
 1113|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1113:5): [True: 2, False: 0]
  ------------------
 1114|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1114:5): [True: 2, False: 0]
  ------------------
 1115|      2|    string = &_Py_ID(buffer_callback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1116|      2|    _PyUnicode_InternStatic(interp, &string);
 1117|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1117:5): [True: 2, False: 0]
  ------------------
 1118|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1118:5): [True: 2, False: 0]
  ------------------
 1119|      2|    string = &_Py_ID(buffer_size);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1120|      2|    _PyUnicode_InternStatic(interp, &string);
 1121|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1121:5): [True: 2, False: 0]
  ------------------
 1122|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1122:5): [True: 2, False: 0]
  ------------------
 1123|      2|    string = &_Py_ID(buffering);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1124|      2|    _PyUnicode_InternStatic(interp, &string);
 1125|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1125:5): [True: 2, False: 0]
  ------------------
 1126|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1126:5): [True: 2, False: 0]
  ------------------
 1127|      2|    string = &_Py_ID(buffers);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1128|      2|    _PyUnicode_InternStatic(interp, &string);
 1129|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1129:5): [True: 2, False: 0]
  ------------------
 1130|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1130:5): [True: 2, False: 0]
  ------------------
 1131|      2|    string = &_Py_ID(bufsize);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1132|      2|    _PyUnicode_InternStatic(interp, &string);
 1133|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1133:5): [True: 2, False: 0]
  ------------------
 1134|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1134:5): [True: 2, False: 0]
  ------------------
 1135|      2|    string = &_Py_ID(builtins);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1136|      2|    _PyUnicode_InternStatic(interp, &string);
 1137|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1137:5): [True: 2, False: 0]
  ------------------
 1138|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1138:5): [True: 2, False: 0]
  ------------------
 1139|      2|    string = &_Py_ID(byte_offset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1140|      2|    _PyUnicode_InternStatic(interp, &string);
 1141|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1141:5): [True: 2, False: 0]
  ------------------
 1142|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1142:5): [True: 2, False: 0]
  ------------------
 1143|      2|    string = &_Py_ID(byte_size);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1144|      2|    _PyUnicode_InternStatic(interp, &string);
 1145|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1145:5): [True: 2, False: 0]
  ------------------
 1146|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1146:5): [True: 2, False: 0]
  ------------------
 1147|      2|    string = &_Py_ID(byteorder);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1148|      2|    _PyUnicode_InternStatic(interp, &string);
 1149|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1149:5): [True: 2, False: 0]
  ------------------
 1150|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1150:5): [True: 2, False: 0]
  ------------------
 1151|      2|    string = &_Py_ID(bytes);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1152|      2|    _PyUnicode_InternStatic(interp, &string);
 1153|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1153:5): [True: 2, False: 0]
  ------------------
 1154|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1154:5): [True: 2, False: 0]
  ------------------
 1155|      2|    string = &_Py_ID(bytes_per_sep);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1156|      2|    _PyUnicode_InternStatic(interp, &string);
 1157|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1157:5): [True: 2, False: 0]
  ------------------
 1158|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1158:5): [True: 2, False: 0]
  ------------------
 1159|      2|    string = &_Py_ID(c_call);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1160|      2|    _PyUnicode_InternStatic(interp, &string);
 1161|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1161:5): [True: 2, False: 0]
  ------------------
 1162|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1162:5): [True: 2, False: 0]
  ------------------
 1163|      2|    string = &_Py_ID(c_exception);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1164|      2|    _PyUnicode_InternStatic(interp, &string);
 1165|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1165:5): [True: 2, False: 0]
  ------------------
 1166|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1166:5): [True: 2, False: 0]
  ------------------
 1167|      2|    string = &_Py_ID(c_parameter_type);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1168|      2|    _PyUnicode_InternStatic(interp, &string);
 1169|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1169:5): [True: 2, False: 0]
  ------------------
 1170|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1170:5): [True: 2, False: 0]
  ------------------
 1171|      2|    string = &_Py_ID(c_return);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1172|      2|    _PyUnicode_InternStatic(interp, &string);
 1173|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1173:5): [True: 2, False: 0]
  ------------------
 1174|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1174:5): [True: 2, False: 0]
  ------------------
 1175|      2|    string = &_Py_ID(c_stack);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1176|      2|    _PyUnicode_InternStatic(interp, &string);
 1177|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1177:5): [True: 2, False: 0]
  ------------------
 1178|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1178:5): [True: 2, False: 0]
  ------------------
 1179|      2|    string = &_Py_ID(cache_frames);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1180|      2|    _PyUnicode_InternStatic(interp, &string);
 1181|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1181:5): [True: 2, False: 0]
  ------------------
 1182|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1182:5): [True: 2, False: 0]
  ------------------
 1183|      2|    string = &_Py_ID(cached_datetime_module);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1184|      2|    _PyUnicode_InternStatic(interp, &string);
 1185|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1185:5): [True: 2, False: 0]
  ------------------
 1186|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1186:5): [True: 2, False: 0]
  ------------------
 1187|      2|    string = &_Py_ID(cached_statements);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1188|      2|    _PyUnicode_InternStatic(interp, &string);
 1189|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1189:5): [True: 2, False: 0]
  ------------------
 1190|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1190:5): [True: 2, False: 0]
  ------------------
 1191|      2|    string = &_Py_ID(cadata);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1192|      2|    _PyUnicode_InternStatic(interp, &string);
 1193|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1193:5): [True: 2, False: 0]
  ------------------
 1194|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1194:5): [True: 2, False: 0]
  ------------------
 1195|      2|    string = &_Py_ID(cafile);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1196|      2|    _PyUnicode_InternStatic(interp, &string);
 1197|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1197:5): [True: 2, False: 0]
  ------------------
 1198|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1198:5): [True: 2, False: 0]
  ------------------
 1199|      2|    string = &_Py_ID(call);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1200|      2|    _PyUnicode_InternStatic(interp, &string);
 1201|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1201:5): [True: 2, False: 0]
  ------------------
 1202|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1202:5): [True: 2, False: 0]
  ------------------
 1203|      2|    string = &_Py_ID(call_exception_handler);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1204|      2|    _PyUnicode_InternStatic(interp, &string);
 1205|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1205:5): [True: 2, False: 0]
  ------------------
 1206|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1206:5): [True: 2, False: 0]
  ------------------
 1207|      2|    string = &_Py_ID(call_soon);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1208|      2|    _PyUnicode_InternStatic(interp, &string);
 1209|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1209:5): [True: 2, False: 0]
  ------------------
 1210|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1210:5): [True: 2, False: 0]
  ------------------
 1211|      2|    string = &_Py_ID(callable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1212|      2|    _PyUnicode_InternStatic(interp, &string);
 1213|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1213:5): [True: 2, False: 0]
  ------------------
 1214|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1214:5): [True: 2, False: 0]
  ------------------
 1215|      2|    string = &_Py_ID(callback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1216|      2|    _PyUnicode_InternStatic(interp, &string);
 1217|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1217:5): [True: 2, False: 0]
  ------------------
 1218|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1218:5): [True: 2, False: 0]
  ------------------
 1219|      2|    string = &_Py_ID(cancel);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1220|      2|    _PyUnicode_InternStatic(interp, &string);
 1221|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1221:5): [True: 2, False: 0]
  ------------------
 1222|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1222:5): [True: 2, False: 0]
  ------------------
 1223|      2|    string = &_Py_ID(canonical);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1224|      2|    _PyUnicode_InternStatic(interp, &string);
 1225|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1225:5): [True: 2, False: 0]
  ------------------
 1226|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1226:5): [True: 2, False: 0]
  ------------------
 1227|      2|    string = &_Py_ID(capath);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1228|      2|    _PyUnicode_InternStatic(interp, &string);
 1229|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1229:5): [True: 2, False: 0]
  ------------------
 1230|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1230:5): [True: 2, False: 0]
  ------------------
 1231|      2|    string = &_Py_ID(capitals);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1232|      2|    _PyUnicode_InternStatic(interp, &string);
 1233|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1233:5): [True: 2, False: 0]
  ------------------
 1234|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1234:5): [True: 2, False: 0]
  ------------------
 1235|      2|    string = &_Py_ID(category);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1236|      2|    _PyUnicode_InternStatic(interp, &string);
 1237|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1237:5): [True: 2, False: 0]
  ------------------
 1238|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1238:5): [True: 2, False: 0]
  ------------------
 1239|      2|    string = &_Py_ID(cb_type);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1240|      2|    _PyUnicode_InternStatic(interp, &string);
 1241|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1241:5): [True: 2, False: 0]
  ------------------
 1242|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1242:5): [True: 2, False: 0]
  ------------------
 1243|      2|    string = &_Py_ID(certfile);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1244|      2|    _PyUnicode_InternStatic(interp, &string);
 1245|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1245:5): [True: 2, False: 0]
  ------------------
 1246|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1246:5): [True: 2, False: 0]
  ------------------
 1247|      2|    string = &_Py_ID(chain);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1248|      2|    _PyUnicode_InternStatic(interp, &string);
 1249|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1249:5): [True: 2, False: 0]
  ------------------
 1250|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1250:5): [True: 2, False: 0]
  ------------------
 1251|      2|    string = &_Py_ID(check_same_thread);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1252|      2|    _PyUnicode_InternStatic(interp, &string);
 1253|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1253:5): [True: 2, False: 0]
  ------------------
 1254|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1254:5): [True: 2, False: 0]
  ------------------
 1255|      2|    string = &_Py_ID(clamp);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1256|      2|    _PyUnicode_InternStatic(interp, &string);
 1257|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1257:5): [True: 2, False: 0]
  ------------------
 1258|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1258:5): [True: 2, False: 0]
  ------------------
 1259|      2|    string = &_Py_ID(clear);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1260|      2|    _PyUnicode_InternStatic(interp, &string);
 1261|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1261:5): [True: 2, False: 0]
  ------------------
 1262|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1262:5): [True: 2, False: 0]
  ------------------
 1263|      2|    string = &_Py_ID(close);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1264|      2|    _PyUnicode_InternStatic(interp, &string);
 1265|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1265:5): [True: 2, False: 0]
  ------------------
 1266|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1266:5): [True: 2, False: 0]
  ------------------
 1267|      2|    string = &_Py_ID(closed);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1268|      2|    _PyUnicode_InternStatic(interp, &string);
 1269|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1269:5): [True: 2, False: 0]
  ------------------
 1270|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1270:5): [True: 2, False: 0]
  ------------------
 1271|      2|    string = &_Py_ID(closefd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1272|      2|    _PyUnicode_InternStatic(interp, &string);
 1273|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1273:5): [True: 2, False: 0]
  ------------------
 1274|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1274:5): [True: 2, False: 0]
  ------------------
 1275|      2|    string = &_Py_ID(closure);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1276|      2|    _PyUnicode_InternStatic(interp, &string);
 1277|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1277:5): [True: 2, False: 0]
  ------------------
 1278|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1278:5): [True: 2, False: 0]
  ------------------
 1279|      2|    string = &_Py_ID(co_argcount);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1280|      2|    _PyUnicode_InternStatic(interp, &string);
 1281|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1281:5): [True: 2, False: 0]
  ------------------
 1282|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1282:5): [True: 2, False: 0]
  ------------------
 1283|      2|    string = &_Py_ID(co_cellvars);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1284|      2|    _PyUnicode_InternStatic(interp, &string);
 1285|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1285:5): [True: 2, False: 0]
  ------------------
 1286|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1286:5): [True: 2, False: 0]
  ------------------
 1287|      2|    string = &_Py_ID(co_code);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1288|      2|    _PyUnicode_InternStatic(interp, &string);
 1289|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1289:5): [True: 2, False: 0]
  ------------------
 1290|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1290:5): [True: 2, False: 0]
  ------------------
 1291|      2|    string = &_Py_ID(co_consts);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1292|      2|    _PyUnicode_InternStatic(interp, &string);
 1293|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1293:5): [True: 2, False: 0]
  ------------------
 1294|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1294:5): [True: 2, False: 0]
  ------------------
 1295|      2|    string = &_Py_ID(co_exceptiontable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1296|      2|    _PyUnicode_InternStatic(interp, &string);
 1297|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1297:5): [True: 2, False: 0]
  ------------------
 1298|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1298:5): [True: 2, False: 0]
  ------------------
 1299|      2|    string = &_Py_ID(co_filename);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1300|      2|    _PyUnicode_InternStatic(interp, &string);
 1301|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1301:5): [True: 2, False: 0]
  ------------------
 1302|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1302:5): [True: 2, False: 0]
  ------------------
 1303|      2|    string = &_Py_ID(co_firstlineno);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1304|      2|    _PyUnicode_InternStatic(interp, &string);
 1305|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1305:5): [True: 2, False: 0]
  ------------------
 1306|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1306:5): [True: 2, False: 0]
  ------------------
 1307|      2|    string = &_Py_ID(co_flags);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1308|      2|    _PyUnicode_InternStatic(interp, &string);
 1309|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1309:5): [True: 2, False: 0]
  ------------------
 1310|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1310:5): [True: 2, False: 0]
  ------------------
 1311|      2|    string = &_Py_ID(co_freevars);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1312|      2|    _PyUnicode_InternStatic(interp, &string);
 1313|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1313:5): [True: 2, False: 0]
  ------------------
 1314|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1314:5): [True: 2, False: 0]
  ------------------
 1315|      2|    string = &_Py_ID(co_kwonlyargcount);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1316|      2|    _PyUnicode_InternStatic(interp, &string);
 1317|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1317:5): [True: 2, False: 0]
  ------------------
 1318|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1318:5): [True: 2, False: 0]
  ------------------
 1319|      2|    string = &_Py_ID(co_linetable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1320|      2|    _PyUnicode_InternStatic(interp, &string);
 1321|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1321:5): [True: 2, False: 0]
  ------------------
 1322|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1322:5): [True: 2, False: 0]
  ------------------
 1323|      2|    string = &_Py_ID(co_name);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1324|      2|    _PyUnicode_InternStatic(interp, &string);
 1325|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1325:5): [True: 2, False: 0]
  ------------------
 1326|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1326:5): [True: 2, False: 0]
  ------------------
 1327|      2|    string = &_Py_ID(co_names);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1328|      2|    _PyUnicode_InternStatic(interp, &string);
 1329|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1329:5): [True: 2, False: 0]
  ------------------
 1330|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1330:5): [True: 2, False: 0]
  ------------------
 1331|      2|    string = &_Py_ID(co_nlocals);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1332|      2|    _PyUnicode_InternStatic(interp, &string);
 1333|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1333:5): [True: 2, False: 0]
  ------------------
 1334|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1334:5): [True: 2, False: 0]
  ------------------
 1335|      2|    string = &_Py_ID(co_posonlyargcount);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1336|      2|    _PyUnicode_InternStatic(interp, &string);
 1337|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1337:5): [True: 2, False: 0]
  ------------------
 1338|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1338:5): [True: 2, False: 0]
  ------------------
 1339|      2|    string = &_Py_ID(co_qualname);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1340|      2|    _PyUnicode_InternStatic(interp, &string);
 1341|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1341:5): [True: 2, False: 0]
  ------------------
 1342|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1342:5): [True: 2, False: 0]
  ------------------
 1343|      2|    string = &_Py_ID(co_stacksize);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1344|      2|    _PyUnicode_InternStatic(interp, &string);
 1345|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1345:5): [True: 2, False: 0]
  ------------------
 1346|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1346:5): [True: 2, False: 0]
  ------------------
 1347|      2|    string = &_Py_ID(co_varnames);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1348|      2|    _PyUnicode_InternStatic(interp, &string);
 1349|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1349:5): [True: 2, False: 0]
  ------------------
 1350|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1350:5): [True: 2, False: 0]
  ------------------
 1351|      2|    string = &_Py_ID(code);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1352|      2|    _PyUnicode_InternStatic(interp, &string);
 1353|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1353:5): [True: 2, False: 0]
  ------------------
 1354|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1354:5): [True: 2, False: 0]
  ------------------
 1355|      2|    string = &_Py_ID(col_offset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1356|      2|    _PyUnicode_InternStatic(interp, &string);
 1357|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1357:5): [True: 2, False: 0]
  ------------------
 1358|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1358:5): [True: 2, False: 0]
  ------------------
 1359|      2|    string = &_Py_ID(collector);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1360|      2|    _PyUnicode_InternStatic(interp, &string);
 1361|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1361:5): [True: 2, False: 0]
  ------------------
 1362|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1362:5): [True: 2, False: 0]
  ------------------
 1363|      2|    string = &_Py_ID(command);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1364|      2|    _PyUnicode_InternStatic(interp, &string);
 1365|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1365:5): [True: 2, False: 0]
  ------------------
 1366|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1366:5): [True: 2, False: 0]
  ------------------
 1367|      2|    string = &_Py_ID(comment_factory);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1368|      2|    _PyUnicode_InternStatic(interp, &string);
 1369|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1369:5): [True: 2, False: 0]
  ------------------
 1370|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1370:5): [True: 2, False: 0]
  ------------------
 1371|      2|    string = &_Py_ID(compile_mode);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1372|      2|    _PyUnicode_InternStatic(interp, &string);
 1373|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1373:5): [True: 2, False: 0]
  ------------------
 1374|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1374:5): [True: 2, False: 0]
  ------------------
 1375|      2|    string = &_Py_ID(compression);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1376|      2|    _PyUnicode_InternStatic(interp, &string);
 1377|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1377:5): [True: 2, False: 0]
  ------------------
 1378|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1378:5): [True: 2, False: 0]
  ------------------
 1379|      2|    string = &_Py_ID(config);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1380|      2|    _PyUnicode_InternStatic(interp, &string);
 1381|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1381:5): [True: 2, False: 0]
  ------------------
 1382|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1382:5): [True: 2, False: 0]
  ------------------
 1383|      2|    string = &_Py_ID(consts);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1384|      2|    _PyUnicode_InternStatic(interp, &string);
 1385|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1385:5): [True: 2, False: 0]
  ------------------
 1386|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1386:5): [True: 2, False: 0]
  ------------------
 1387|      2|    string = &_Py_ID(context);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1388|      2|    _PyUnicode_InternStatic(interp, &string);
 1389|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1389:5): [True: 2, False: 0]
  ------------------
 1390|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1390:5): [True: 2, False: 0]
  ------------------
 1391|      2|    string = &_Py_ID(contravariant);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1392|      2|    _PyUnicode_InternStatic(interp, &string);
 1393|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1393:5): [True: 2, False: 0]
  ------------------
 1394|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1394:5): [True: 2, False: 0]
  ------------------
 1395|      2|    string = &_Py_ID(conversion);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1396|      2|    _PyUnicode_InternStatic(interp, &string);
 1397|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1397:5): [True: 2, False: 0]
  ------------------
 1398|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1398:5): [True: 2, False: 0]
  ------------------
 1399|      2|    string = &_Py_ID(cookie);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1400|      2|    _PyUnicode_InternStatic(interp, &string);
 1401|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1401:5): [True: 2, False: 0]
  ------------------
 1402|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1402:5): [True: 2, False: 0]
  ------------------
 1403|      2|    string = &_Py_ID(copy);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1404|      2|    _PyUnicode_InternStatic(interp, &string);
 1405|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1405:5): [True: 2, False: 0]
  ------------------
 1406|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1406:5): [True: 2, False: 0]
  ------------------
 1407|      2|    string = &_Py_ID(copyreg);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1408|      2|    _PyUnicode_InternStatic(interp, &string);
 1409|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1409:5): [True: 2, False: 0]
  ------------------
 1410|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1410:5): [True: 2, False: 0]
  ------------------
 1411|      2|    string = &_Py_ID(coro);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1412|      2|    _PyUnicode_InternStatic(interp, &string);
 1413|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1413:5): [True: 2, False: 0]
  ------------------
 1414|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1414:5): [True: 2, False: 0]
  ------------------
 1415|      2|    string = &_Py_ID(count);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1416|      2|    _PyUnicode_InternStatic(interp, &string);
 1417|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1417:5): [True: 2, False: 0]
  ------------------
 1418|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1418:5): [True: 2, False: 0]
  ------------------
 1419|      2|    string = &_Py_ID(covariant);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1420|      2|    _PyUnicode_InternStatic(interp, &string);
 1421|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1421:5): [True: 2, False: 0]
  ------------------
 1422|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1422:5): [True: 2, False: 0]
  ------------------
 1423|      2|    string = &_Py_ID(ctx);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1424|      2|    _PyUnicode_InternStatic(interp, &string);
 1425|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1425:5): [True: 2, False: 0]
  ------------------
 1426|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1426:5): [True: 2, False: 0]
  ------------------
 1427|      2|    string = &_Py_ID(cwd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1428|      2|    _PyUnicode_InternStatic(interp, &string);
 1429|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1429:5): [True: 2, False: 0]
  ------------------
 1430|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1430:5): [True: 2, False: 0]
  ------------------
 1431|      2|    string = &_Py_ID(d_parameter_type);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1432|      2|    _PyUnicode_InternStatic(interp, &string);
 1433|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1433:5): [True: 2, False: 0]
  ------------------
 1434|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1434:5): [True: 2, False: 0]
  ------------------
 1435|      2|    string = &_Py_ID(data);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1436|      2|    _PyUnicode_InternStatic(interp, &string);
 1437|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1437:5): [True: 2, False: 0]
  ------------------
 1438|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1438:5): [True: 2, False: 0]
  ------------------
 1439|      2|    string = &_Py_ID(database);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1440|      2|    _PyUnicode_InternStatic(interp, &string);
 1441|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1441:5): [True: 2, False: 0]
  ------------------
 1442|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1442:5): [True: 2, False: 0]
  ------------------
 1443|      2|    string = &_Py_ID(date);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1444|      2|    _PyUnicode_InternStatic(interp, &string);
 1445|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1445:5): [True: 2, False: 0]
  ------------------
 1446|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1446:5): [True: 2, False: 0]
  ------------------
 1447|      2|    string = &_Py_ID(day);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1448|      2|    _PyUnicode_InternStatic(interp, &string);
 1449|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1449:5): [True: 2, False: 0]
  ------------------
 1450|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1450:5): [True: 2, False: 0]
  ------------------
 1451|      2|    string = &_Py_ID(days);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1452|      2|    _PyUnicode_InternStatic(interp, &string);
 1453|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1453:5): [True: 2, False: 0]
  ------------------
 1454|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1454:5): [True: 2, False: 0]
  ------------------
 1455|      2|    string = &_Py_ID(debug);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1456|      2|    _PyUnicode_InternStatic(interp, &string);
 1457|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1457:5): [True: 2, False: 0]
  ------------------
 1458|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1458:5): [True: 2, False: 0]
  ------------------
 1459|      2|    string = &_Py_ID(decode);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1460|      2|    _PyUnicode_InternStatic(interp, &string);
 1461|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1461:5): [True: 2, False: 0]
  ------------------
 1462|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1462:5): [True: 2, False: 0]
  ------------------
 1463|      2|    string = &_Py_ID(decoder);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1464|      2|    _PyUnicode_InternStatic(interp, &string);
 1465|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1465:5): [True: 2, False: 0]
  ------------------
 1466|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1466:5): [True: 2, False: 0]
  ------------------
 1467|      2|    string = &_Py_ID(default);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1468|      2|    _PyUnicode_InternStatic(interp, &string);
 1469|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1469:5): [True: 2, False: 0]
  ------------------
 1470|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1470:5): [True: 2, False: 0]
  ------------------
 1471|      2|    string = &_Py_ID(defaultaction);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1472|      2|    _PyUnicode_InternStatic(interp, &string);
 1473|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1473:5): [True: 2, False: 0]
  ------------------
 1474|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1474:5): [True: 2, False: 0]
  ------------------
 1475|      2|    string = &_Py_ID(delete);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1476|      2|    _PyUnicode_InternStatic(interp, &string);
 1477|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1477:5): [True: 2, False: 0]
  ------------------
 1478|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1478:5): [True: 2, False: 0]
  ------------------
 1479|      2|    string = &_Py_ID(depth);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1480|      2|    _PyUnicode_InternStatic(interp, &string);
 1481|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1481:5): [True: 2, False: 0]
  ------------------
 1482|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1482:5): [True: 2, False: 0]
  ------------------
 1483|      2|    string = &_Py_ID(desired_access);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1484|      2|    _PyUnicode_InternStatic(interp, &string);
 1485|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1485:5): [True: 2, False: 0]
  ------------------
 1486|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1486:5): [True: 2, False: 0]
  ------------------
 1487|      2|    string = &_Py_ID(detect_types);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1488|      2|    _PyUnicode_InternStatic(interp, &string);
 1489|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1489:5): [True: 2, False: 0]
  ------------------
 1490|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1490:5): [True: 2, False: 0]
  ------------------
 1491|      2|    string = &_Py_ID(deterministic);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1492|      2|    _PyUnicode_InternStatic(interp, &string);
 1493|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1493:5): [True: 2, False: 0]
  ------------------
 1494|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1494:5): [True: 2, False: 0]
  ------------------
 1495|      2|    string = &_Py_ID(device);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1496|      2|    _PyUnicode_InternStatic(interp, &string);
 1497|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1497:5): [True: 2, False: 0]
  ------------------
 1498|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1498:5): [True: 2, False: 0]
  ------------------
 1499|      2|    string = &_Py_ID(dict);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1500|      2|    _PyUnicode_InternStatic(interp, &string);
 1501|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1501:5): [True: 2, False: 0]
  ------------------
 1502|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1502:5): [True: 2, False: 0]
  ------------------
 1503|      2|    string = &_Py_ID(difference_update);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1504|      2|    _PyUnicode_InternStatic(interp, &string);
 1505|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1505:5): [True: 2, False: 0]
  ------------------
 1506|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1506:5): [True: 2, False: 0]
  ------------------
 1507|      2|    string = &_Py_ID(digest);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1508|      2|    _PyUnicode_InternStatic(interp, &string);
 1509|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1509:5): [True: 2, False: 0]
  ------------------
 1510|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1510:5): [True: 2, False: 0]
  ------------------
 1511|      2|    string = &_Py_ID(digest_size);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1512|      2|    _PyUnicode_InternStatic(interp, &string);
 1513|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1513:5): [True: 2, False: 0]
  ------------------
 1514|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1514:5): [True: 2, False: 0]
  ------------------
 1515|      2|    string = &_Py_ID(digestmod);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1516|      2|    _PyUnicode_InternStatic(interp, &string);
 1517|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1517:5): [True: 2, False: 0]
  ------------------
 1518|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1518:5): [True: 2, False: 0]
  ------------------
 1519|      2|    string = &_Py_ID(dir_fd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1520|      2|    _PyUnicode_InternStatic(interp, &string);
 1521|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1521:5): [True: 2, False: 0]
  ------------------
 1522|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1522:5): [True: 2, False: 0]
  ------------------
 1523|      2|    string = &_Py_ID(discard);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1524|      2|    _PyUnicode_InternStatic(interp, &string);
 1525|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1525:5): [True: 2, False: 0]
  ------------------
 1526|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1526:5): [True: 2, False: 0]
  ------------------
 1527|      2|    string = &_Py_ID(dispatch_table);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1528|      2|    _PyUnicode_InternStatic(interp, &string);
 1529|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1529:5): [True: 2, False: 0]
  ------------------
 1530|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1530:5): [True: 2, False: 0]
  ------------------
 1531|      2|    string = &_Py_ID(displayhook);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1532|      2|    _PyUnicode_InternStatic(interp, &string);
 1533|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1533:5): [True: 2, False: 0]
  ------------------
 1534|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1534:5): [True: 2, False: 0]
  ------------------
 1535|      2|    string = &_Py_ID(dklen);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1536|      2|    _PyUnicode_InternStatic(interp, &string);
 1537|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1537:5): [True: 2, False: 0]
  ------------------
 1538|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1538:5): [True: 2, False: 0]
  ------------------
 1539|      2|    string = &_Py_ID(doc);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1540|      2|    _PyUnicode_InternStatic(interp, &string);
 1541|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1541:5): [True: 2, False: 0]
  ------------------
 1542|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1542:5): [True: 2, False: 0]
  ------------------
 1543|      2|    string = &_Py_ID(done);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1544|      2|    _PyUnicode_InternStatic(interp, &string);
 1545|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1545:5): [True: 2, False: 0]
  ------------------
 1546|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1546:5): [True: 2, False: 0]
  ------------------
 1547|      2|    string = &_Py_ID(dont_inherit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1548|      2|    _PyUnicode_InternStatic(interp, &string);
 1549|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1549:5): [True: 2, False: 0]
  ------------------
 1550|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1550:5): [True: 2, False: 0]
  ------------------
 1551|      2|    string = &_Py_ID(dst);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1552|      2|    _PyUnicode_InternStatic(interp, &string);
 1553|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1553:5): [True: 2, False: 0]
  ------------------
 1554|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1554:5): [True: 2, False: 0]
  ------------------
 1555|      2|    string = &_Py_ID(dst_dir_fd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1556|      2|    _PyUnicode_InternStatic(interp, &string);
 1557|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1557:5): [True: 2, False: 0]
  ------------------
 1558|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1558:5): [True: 2, False: 0]
  ------------------
 1559|      2|    string = &_Py_ID(eager_start);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1560|      2|    _PyUnicode_InternStatic(interp, &string);
 1561|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1561:5): [True: 2, False: 0]
  ------------------
 1562|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1562:5): [True: 2, False: 0]
  ------------------
 1563|      2|    string = &_Py_ID(effective_ids);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1564|      2|    _PyUnicode_InternStatic(interp, &string);
 1565|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1565:5): [True: 2, False: 0]
  ------------------
 1566|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1566:5): [True: 2, False: 0]
  ------------------
 1567|      2|    string = &_Py_ID(element_factory);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1568|      2|    _PyUnicode_InternStatic(interp, &string);
 1569|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1569:5): [True: 2, False: 0]
  ------------------
 1570|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1570:5): [True: 2, False: 0]
  ------------------
 1571|      2|    string = &_Py_ID(emptyerror);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1572|      2|    _PyUnicode_InternStatic(interp, &string);
 1573|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1573:5): [True: 2, False: 0]
  ------------------
 1574|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1574:5): [True: 2, False: 0]
  ------------------
 1575|      2|    string = &_Py_ID(encode);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1576|      2|    _PyUnicode_InternStatic(interp, &string);
 1577|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1577:5): [True: 2, False: 0]
  ------------------
 1578|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1578:5): [True: 2, False: 0]
  ------------------
 1579|      2|    string = &_Py_ID(encoding);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1580|      2|    _PyUnicode_InternStatic(interp, &string);
 1581|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1581:5): [True: 2, False: 0]
  ------------------
 1582|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1582:5): [True: 2, False: 0]
  ------------------
 1583|      2|    string = &_Py_ID(end);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1584|      2|    _PyUnicode_InternStatic(interp, &string);
 1585|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1585:5): [True: 2, False: 0]
  ------------------
 1586|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1586:5): [True: 2, False: 0]
  ------------------
 1587|      2|    string = &_Py_ID(end_col_offset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1588|      2|    _PyUnicode_InternStatic(interp, &string);
 1589|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1589:5): [True: 2, False: 0]
  ------------------
 1590|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1590:5): [True: 2, False: 0]
  ------------------
 1591|      2|    string = &_Py_ID(end_lineno);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1592|      2|    _PyUnicode_InternStatic(interp, &string);
 1593|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1593:5): [True: 2, False: 0]
  ------------------
 1594|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1594:5): [True: 2, False: 0]
  ------------------
 1595|      2|    string = &_Py_ID(end_offset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1596|      2|    _PyUnicode_InternStatic(interp, &string);
 1597|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1597:5): [True: 2, False: 0]
  ------------------
 1598|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1598:5): [True: 2, False: 0]
  ------------------
 1599|      2|    string = &_Py_ID(endpos);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1600|      2|    _PyUnicode_InternStatic(interp, &string);
 1601|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1601:5): [True: 2, False: 0]
  ------------------
 1602|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1602:5): [True: 2, False: 0]
  ------------------
 1603|      2|    string = &_Py_ID(entrypoint);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1604|      2|    _PyUnicode_InternStatic(interp, &string);
 1605|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1605:5): [True: 2, False: 0]
  ------------------
 1606|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1606:5): [True: 2, False: 0]
  ------------------
 1607|      2|    string = &_Py_ID(env);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1608|      2|    _PyUnicode_InternStatic(interp, &string);
 1609|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1609:5): [True: 2, False: 0]
  ------------------
 1610|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1610:5): [True: 2, False: 0]
  ------------------
 1611|      2|    string = &_Py_ID(errors);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1612|      2|    _PyUnicode_InternStatic(interp, &string);
 1613|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1613:5): [True: 2, False: 0]
  ------------------
 1614|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1614:5): [True: 2, False: 0]
  ------------------
 1615|      2|    string = &_Py_ID(event);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1616|      2|    _PyUnicode_InternStatic(interp, &string);
 1617|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1617:5): [True: 2, False: 0]
  ------------------
 1618|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1618:5): [True: 2, False: 0]
  ------------------
 1619|      2|    string = &_Py_ID(eventmask);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1620|      2|    _PyUnicode_InternStatic(interp, &string);
 1621|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1621:5): [True: 2, False: 0]
  ------------------
 1622|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1622:5): [True: 2, False: 0]
  ------------------
 1623|      2|    string = &_Py_ID(exc);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1624|      2|    _PyUnicode_InternStatic(interp, &string);
 1625|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1625:5): [True: 2, False: 0]
  ------------------
 1626|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1626:5): [True: 2, False: 0]
  ------------------
 1627|      2|    string = &_Py_ID(exc_tb);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1628|      2|    _PyUnicode_InternStatic(interp, &string);
 1629|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1629:5): [True: 2, False: 0]
  ------------------
 1630|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1630:5): [True: 2, False: 0]
  ------------------
 1631|      2|    string = &_Py_ID(exc_type);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1632|      2|    _PyUnicode_InternStatic(interp, &string);
 1633|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1633:5): [True: 2, False: 0]
  ------------------
 1634|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1634:5): [True: 2, False: 0]
  ------------------
 1635|      2|    string = &_Py_ID(exc_val);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1636|      2|    _PyUnicode_InternStatic(interp, &string);
 1637|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1637:5): [True: 2, False: 0]
  ------------------
 1638|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1638:5): [True: 2, False: 0]
  ------------------
 1639|      2|    string = &_Py_ID(exc_value);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1640|      2|    _PyUnicode_InternStatic(interp, &string);
 1641|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1641:5): [True: 2, False: 0]
  ------------------
 1642|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1642:5): [True: 2, False: 0]
  ------------------
 1643|      2|    string = &_Py_ID(excepthook);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1644|      2|    _PyUnicode_InternStatic(interp, &string);
 1645|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1645:5): [True: 2, False: 0]
  ------------------
 1646|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1646:5): [True: 2, False: 0]
  ------------------
 1647|      2|    string = &_Py_ID(exception);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1648|      2|    _PyUnicode_InternStatic(interp, &string);
 1649|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1649:5): [True: 2, False: 0]
  ------------------
 1650|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1650:5): [True: 2, False: 0]
  ------------------
 1651|      2|    string = &_Py_ID(existing_file_name);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1652|      2|    _PyUnicode_InternStatic(interp, &string);
 1653|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1653:5): [True: 2, False: 0]
  ------------------
 1654|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1654:5): [True: 2, False: 0]
  ------------------
 1655|      2|    string = &_Py_ID(exit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1656|      2|    _PyUnicode_InternStatic(interp, &string);
 1657|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1657:5): [True: 2, False: 0]
  ------------------
 1658|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1658:5): [True: 2, False: 0]
  ------------------
 1659|      2|    string = &_Py_ID(exp);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1660|      2|    _PyUnicode_InternStatic(interp, &string);
 1661|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1661:5): [True: 2, False: 0]
  ------------------
 1662|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1662:5): [True: 2, False: 0]
  ------------------
 1663|      2|    string = &_Py_ID(expression);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1664|      2|    _PyUnicode_InternStatic(interp, &string);
 1665|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1665:5): [True: 2, False: 0]
  ------------------
 1666|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1666:5): [True: 2, False: 0]
  ------------------
 1667|      2|    string = &_Py_ID(extend);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1668|      2|    _PyUnicode_InternStatic(interp, &string);
 1669|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1669:5): [True: 2, False: 0]
  ------------------
 1670|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1670:5): [True: 2, False: 0]
  ------------------
 1671|      2|    string = &_Py_ID(extra_tokens);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1672|      2|    _PyUnicode_InternStatic(interp, &string);
 1673|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1673:5): [True: 2, False: 0]
  ------------------
 1674|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1674:5): [True: 2, False: 0]
  ------------------
 1675|      2|    string = &_Py_ID(facility);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1676|      2|    _PyUnicode_InternStatic(interp, &string);
 1677|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1677:5): [True: 2, False: 0]
  ------------------
 1678|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1678:5): [True: 2, False: 0]
  ------------------
 1679|      2|    string = &_Py_ID(factory);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1680|      2|    _PyUnicode_InternStatic(interp, &string);
 1681|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1681:5): [True: 2, False: 0]
  ------------------
 1682|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1682:5): [True: 2, False: 0]
  ------------------
 1683|      2|    string = &_Py_ID(fallback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1684|      2|    _PyUnicode_InternStatic(interp, &string);
 1685|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1685:5): [True: 2, False: 0]
  ------------------
 1686|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1686:5): [True: 2, False: 0]
  ------------------
 1687|      2|    string = &_Py_ID(false);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1688|      2|    _PyUnicode_InternStatic(interp, &string);
 1689|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1689:5): [True: 2, False: 0]
  ------------------
 1690|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1690:5): [True: 2, False: 0]
  ------------------
 1691|      2|    string = &_Py_ID(family);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1692|      2|    _PyUnicode_InternStatic(interp, &string);
 1693|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1693:5): [True: 2, False: 0]
  ------------------
 1694|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1694:5): [True: 2, False: 0]
  ------------------
 1695|      2|    string = &_Py_ID(fanout);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1696|      2|    _PyUnicode_InternStatic(interp, &string);
 1697|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1697:5): [True: 2, False: 0]
  ------------------
 1698|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1698:5): [True: 2, False: 0]
  ------------------
 1699|      2|    string = &_Py_ID(fd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1700|      2|    _PyUnicode_InternStatic(interp, &string);
 1701|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1701:5): [True: 2, False: 0]
  ------------------
 1702|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1702:5): [True: 2, False: 0]
  ------------------
 1703|      2|    string = &_Py_ID(fd2);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1704|      2|    _PyUnicode_InternStatic(interp, &string);
 1705|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1705:5): [True: 2, False: 0]
  ------------------
 1706|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1706:5): [True: 2, False: 0]
  ------------------
 1707|      2|    string = &_Py_ID(fdel);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1708|      2|    _PyUnicode_InternStatic(interp, &string);
 1709|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1709:5): [True: 2, False: 0]
  ------------------
 1710|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1710:5): [True: 2, False: 0]
  ------------------
 1711|      2|    string = &_Py_ID(fget);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1712|      2|    _PyUnicode_InternStatic(interp, &string);
 1713|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1713:5): [True: 2, False: 0]
  ------------------
 1714|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1714:5): [True: 2, False: 0]
  ------------------
 1715|      2|    string = &_Py_ID(fields);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1716|      2|    _PyUnicode_InternStatic(interp, &string);
 1717|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1717:5): [True: 2, False: 0]
  ------------------
 1718|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1718:5): [True: 2, False: 0]
  ------------------
 1719|      2|    string = &_Py_ID(file);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1720|      2|    _PyUnicode_InternStatic(interp, &string);
 1721|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1721:5): [True: 2, False: 0]
  ------------------
 1722|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1722:5): [True: 2, False: 0]
  ------------------
 1723|      2|    string = &_Py_ID(file_actions);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1724|      2|    _PyUnicode_InternStatic(interp, &string);
 1725|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1725:5): [True: 2, False: 0]
  ------------------
 1726|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1726:5): [True: 2, False: 0]
  ------------------
 1727|      2|    string = &_Py_ID(filename);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1728|      2|    _PyUnicode_InternStatic(interp, &string);
 1729|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1729:5): [True: 2, False: 0]
  ------------------
 1730|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1730:5): [True: 2, False: 0]
  ------------------
 1731|      2|    string = &_Py_ID(fileno);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1732|      2|    _PyUnicode_InternStatic(interp, &string);
 1733|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1733:5): [True: 2, False: 0]
  ------------------
 1734|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1734:5): [True: 2, False: 0]
  ------------------
 1735|      2|    string = &_Py_ID(filepath);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1736|      2|    _PyUnicode_InternStatic(interp, &string);
 1737|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1737:5): [True: 2, False: 0]
  ------------------
 1738|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1738:5): [True: 2, False: 0]
  ------------------
 1739|      2|    string = &_Py_ID(fillvalue);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1740|      2|    _PyUnicode_InternStatic(interp, &string);
 1741|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1741:5): [True: 2, False: 0]
  ------------------
 1742|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1742:5): [True: 2, False: 0]
  ------------------
 1743|      2|    string = &_Py_ID(filter);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1744|      2|    _PyUnicode_InternStatic(interp, &string);
 1745|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1745:5): [True: 2, False: 0]
  ------------------
 1746|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1746:5): [True: 2, False: 0]
  ------------------
 1747|      2|    string = &_Py_ID(filters);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1748|      2|    _PyUnicode_InternStatic(interp, &string);
 1749|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1749:5): [True: 2, False: 0]
  ------------------
 1750|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1750:5): [True: 2, False: 0]
  ------------------
 1751|      2|    string = &_Py_ID(final);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1752|      2|    _PyUnicode_InternStatic(interp, &string);
 1753|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1753:5): [True: 2, False: 0]
  ------------------
 1754|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1754:5): [True: 2, False: 0]
  ------------------
 1755|      2|    string = &_Py_ID(find_class);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1756|      2|    _PyUnicode_InternStatic(interp, &string);
 1757|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1757:5): [True: 2, False: 0]
  ------------------
 1758|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1758:5): [True: 2, False: 0]
  ------------------
 1759|      2|    string = &_Py_ID(fix_imports);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1760|      2|    _PyUnicode_InternStatic(interp, &string);
 1761|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1761:5): [True: 2, False: 0]
  ------------------
 1762|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1762:5): [True: 2, False: 0]
  ------------------
 1763|      2|    string = &_Py_ID(flags);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1764|      2|    _PyUnicode_InternStatic(interp, &string);
 1765|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1765:5): [True: 2, False: 0]
  ------------------
 1766|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1766:5): [True: 2, False: 0]
  ------------------
 1767|      2|    string = &_Py_ID(flush);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1768|      2|    _PyUnicode_InternStatic(interp, &string);
 1769|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1769:5): [True: 2, False: 0]
  ------------------
 1770|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1770:5): [True: 2, False: 0]
  ------------------
 1771|      2|    string = &_Py_ID(fold);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1772|      2|    _PyUnicode_InternStatic(interp, &string);
 1773|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1773:5): [True: 2, False: 0]
  ------------------
 1774|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1774:5): [True: 2, False: 0]
  ------------------
 1775|      2|    string = &_Py_ID(foldspaces);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1776|      2|    _PyUnicode_InternStatic(interp, &string);
 1777|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1777:5): [True: 2, False: 0]
  ------------------
 1778|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1778:5): [True: 2, False: 0]
  ------------------
 1779|      2|    string = &_Py_ID(follow_symlinks);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1780|      2|    _PyUnicode_InternStatic(interp, &string);
 1781|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1781:5): [True: 2, False: 0]
  ------------------
 1782|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1782:5): [True: 2, False: 0]
  ------------------
 1783|      2|    string = &_Py_ID(format);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1784|      2|    _PyUnicode_InternStatic(interp, &string);
 1785|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1785:5): [True: 2, False: 0]
  ------------------
 1786|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1786:5): [True: 2, False: 0]
  ------------------
 1787|      2|    string = &_Py_ID(format_spec);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1788|      2|    _PyUnicode_InternStatic(interp, &string);
 1789|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1789:5): [True: 2, False: 0]
  ------------------
 1790|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1790:5): [True: 2, False: 0]
  ------------------
 1791|      2|    string = &_Py_ID(frame_buffer);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1792|      2|    _PyUnicode_InternStatic(interp, &string);
 1793|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1793:5): [True: 2, False: 0]
  ------------------
 1794|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1794:5): [True: 2, False: 0]
  ------------------
 1795|      2|    string = &_Py_ID(free_threaded);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1796|      2|    _PyUnicode_InternStatic(interp, &string);
 1797|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1797:5): [True: 2, False: 0]
  ------------------
 1798|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1798:5): [True: 2, False: 0]
  ------------------
 1799|      2|    string = &_Py_ID(from_param);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1800|      2|    _PyUnicode_InternStatic(interp, &string);
 1801|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1801:5): [True: 2, False: 0]
  ------------------
 1802|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1802:5): [True: 2, False: 0]
  ------------------
 1803|      2|    string = &_Py_ID(fromlist);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1804|      2|    _PyUnicode_InternStatic(interp, &string);
 1805|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1805:5): [True: 2, False: 0]
  ------------------
 1806|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1806:5): [True: 2, False: 0]
  ------------------
 1807|      2|    string = &_Py_ID(fromtimestamp);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1808|      2|    _PyUnicode_InternStatic(interp, &string);
 1809|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1809:5): [True: 2, False: 0]
  ------------------
 1810|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1810:5): [True: 2, False: 0]
  ------------------
 1811|      2|    string = &_Py_ID(fromutc);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1812|      2|    _PyUnicode_InternStatic(interp, &string);
 1813|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1813:5): [True: 2, False: 0]
  ------------------
 1814|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1814:5): [True: 2, False: 0]
  ------------------
 1815|      2|    string = &_Py_ID(fset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1816|      2|    _PyUnicode_InternStatic(interp, &string);
 1817|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1817:5): [True: 2, False: 0]
  ------------------
 1818|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1818:5): [True: 2, False: 0]
  ------------------
 1819|      2|    string = &_Py_ID(fullerror);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1820|      2|    _PyUnicode_InternStatic(interp, &string);
 1821|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1821:5): [True: 2, False: 0]
  ------------------
 1822|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1822:5): [True: 2, False: 0]
  ------------------
 1823|      2|    string = &_Py_ID(func);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1824|      2|    _PyUnicode_InternStatic(interp, &string);
 1825|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1825:5): [True: 2, False: 0]
  ------------------
 1826|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1826:5): [True: 2, False: 0]
  ------------------
 1827|      2|    string = &_Py_ID(future);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1828|      2|    _PyUnicode_InternStatic(interp, &string);
 1829|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1829:5): [True: 2, False: 0]
  ------------------
 1830|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1830:5): [True: 2, False: 0]
  ------------------
 1831|      2|    string = &_Py_ID(gc);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1832|      2|    _PyUnicode_InternStatic(interp, &string);
 1833|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1833:5): [True: 2, False: 0]
  ------------------
 1834|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1834:5): [True: 2, False: 0]
  ------------------
 1835|      2|    string = &_Py_ID(generation);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1836|      2|    _PyUnicode_InternStatic(interp, &string);
 1837|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1837:5): [True: 2, False: 0]
  ------------------
 1838|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1838:5): [True: 2, False: 0]
  ------------------
 1839|      2|    string = &_Py_ID(get);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1840|      2|    _PyUnicode_InternStatic(interp, &string);
 1841|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1841:5): [True: 2, False: 0]
  ------------------
 1842|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1842:5): [True: 2, False: 0]
  ------------------
 1843|      2|    string = &_Py_ID(get_debug);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1844|      2|    _PyUnicode_InternStatic(interp, &string);
 1845|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1845:5): [True: 2, False: 0]
  ------------------
 1846|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1846:5): [True: 2, False: 0]
  ------------------
 1847|      2|    string = &_Py_ID(get_event_loop);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1848|      2|    _PyUnicode_InternStatic(interp, &string);
 1849|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1849:5): [True: 2, False: 0]
  ------------------
 1850|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1850:5): [True: 2, False: 0]
  ------------------
 1851|      2|    string = &_Py_ID(get_loop);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1852|      2|    _PyUnicode_InternStatic(interp, &string);
 1853|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1853:5): [True: 2, False: 0]
  ------------------
 1854|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1854:5): [True: 2, False: 0]
  ------------------
 1855|      2|    string = &_Py_ID(get_source);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1856|      2|    _PyUnicode_InternStatic(interp, &string);
 1857|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1857:5): [True: 2, False: 0]
  ------------------
 1858|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1858:5): [True: 2, False: 0]
  ------------------
 1859|      2|    string = &_Py_ID(getattr);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1860|      2|    _PyUnicode_InternStatic(interp, &string);
 1861|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1861:5): [True: 2, False: 0]
  ------------------
 1862|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1862:5): [True: 2, False: 0]
  ------------------
 1863|      2|    string = &_Py_ID(getstate);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1864|      2|    _PyUnicode_InternStatic(interp, &string);
 1865|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1865:5): [True: 2, False: 0]
  ------------------
 1866|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1866:5): [True: 2, False: 0]
  ------------------
 1867|      2|    string = &_Py_ID(gid);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1868|      2|    _PyUnicode_InternStatic(interp, &string);
 1869|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1869:5): [True: 2, False: 0]
  ------------------
 1870|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1870:5): [True: 2, False: 0]
  ------------------
 1871|      2|    string = &_Py_ID(globals);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1872|      2|    _PyUnicode_InternStatic(interp, &string);
 1873|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1873:5): [True: 2, False: 0]
  ------------------
 1874|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1874:5): [True: 2, False: 0]
  ------------------
 1875|      2|    string = &_Py_ID(groupindex);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1876|      2|    _PyUnicode_InternStatic(interp, &string);
 1877|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1877:5): [True: 2, False: 0]
  ------------------
 1878|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1878:5): [True: 2, False: 0]
  ------------------
 1879|      2|    string = &_Py_ID(groups);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1880|      2|    _PyUnicode_InternStatic(interp, &string);
 1881|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1881:5): [True: 2, False: 0]
  ------------------
 1882|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1882:5): [True: 2, False: 0]
  ------------------
 1883|      2|    string = &_Py_ID(handle);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1884|      2|    _PyUnicode_InternStatic(interp, &string);
 1885|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1885:5): [True: 2, False: 0]
  ------------------
 1886|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1886:5): [True: 2, False: 0]
  ------------------
 1887|      2|    string = &_Py_ID(handle_seq);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1888|      2|    _PyUnicode_InternStatic(interp, &string);
 1889|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1889:5): [True: 2, False: 0]
  ------------------
 1890|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1890:5): [True: 2, False: 0]
  ------------------
 1891|      2|    string = &_Py_ID(has_location);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1892|      2|    _PyUnicode_InternStatic(interp, &string);
 1893|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1893:5): [True: 2, False: 0]
  ------------------
 1894|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1894:5): [True: 2, False: 0]
  ------------------
 1895|      2|    string = &_Py_ID(hash_name);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1896|      2|    _PyUnicode_InternStatic(interp, &string);
 1897|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1897:5): [True: 2, False: 0]
  ------------------
 1898|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1898:5): [True: 2, False: 0]
  ------------------
 1899|      2|    string = &_Py_ID(header);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1900|      2|    _PyUnicode_InternStatic(interp, &string);
 1901|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1901:5): [True: 2, False: 0]
  ------------------
 1902|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1902:5): [True: 2, False: 0]
  ------------------
 1903|      2|    string = &_Py_ID(headers);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1904|      2|    _PyUnicode_InternStatic(interp, &string);
 1905|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1905:5): [True: 2, False: 0]
  ------------------
 1906|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1906:5): [True: 2, False: 0]
  ------------------
 1907|      2|    string = &_Py_ID(hi);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1908|      2|    _PyUnicode_InternStatic(interp, &string);
 1909|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1909:5): [True: 2, False: 0]
  ------------------
 1910|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1910:5): [True: 2, False: 0]
  ------------------
 1911|      2|    string = &_Py_ID(hook);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1912|      2|    _PyUnicode_InternStatic(interp, &string);
 1913|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1913:5): [True: 2, False: 0]
  ------------------
 1914|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1914:5): [True: 2, False: 0]
  ------------------
 1915|      2|    string = &_Py_ID(hour);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1916|      2|    _PyUnicode_InternStatic(interp, &string);
 1917|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1917:5): [True: 2, False: 0]
  ------------------
 1918|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1918:5): [True: 2, False: 0]
  ------------------
 1919|      2|    string = &_Py_ID(hours);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1920|      2|    _PyUnicode_InternStatic(interp, &string);
 1921|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1921:5): [True: 2, False: 0]
  ------------------
 1922|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1922:5): [True: 2, False: 0]
  ------------------
 1923|      2|    string = &_Py_ID(id);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1924|      2|    _PyUnicode_InternStatic(interp, &string);
 1925|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1925:5): [True: 2, False: 0]
  ------------------
 1926|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1926:5): [True: 2, False: 0]
  ------------------
 1927|      2|    string = &_Py_ID(ident);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1928|      2|    _PyUnicode_InternStatic(interp, &string);
 1929|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1929:5): [True: 2, False: 0]
  ------------------
 1930|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1930:5): [True: 2, False: 0]
  ------------------
 1931|      2|    string = &_Py_ID(identity_hint);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1932|      2|    _PyUnicode_InternStatic(interp, &string);
 1933|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1933:5): [True: 2, False: 0]
  ------------------
 1934|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1934:5): [True: 2, False: 0]
  ------------------
 1935|      2|    string = &_Py_ID(ignore);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1936|      2|    _PyUnicode_InternStatic(interp, &string);
 1937|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1937:5): [True: 2, False: 0]
  ------------------
 1938|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1938:5): [True: 2, False: 0]
  ------------------
 1939|      2|    string = &_Py_ID(ignorechars);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1940|      2|    _PyUnicode_InternStatic(interp, &string);
 1941|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1941:5): [True: 2, False: 0]
  ------------------
 1942|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1942:5): [True: 2, False: 0]
  ------------------
 1943|      2|    string = &_Py_ID(imag);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1944|      2|    _PyUnicode_InternStatic(interp, &string);
 1945|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1945:5): [True: 2, False: 0]
  ------------------
 1946|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1946:5): [True: 2, False: 0]
  ------------------
 1947|      2|    string = &_Py_ID(implieslink);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1948|      2|    _PyUnicode_InternStatic(interp, &string);
 1949|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1949:5): [True: 2, False: 0]
  ------------------
 1950|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1950:5): [True: 2, False: 0]
  ------------------
 1951|      2|    string = &_Py_ID(importlib);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1952|      2|    _PyUnicode_InternStatic(interp, &string);
 1953|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1953:5): [True: 2, False: 0]
  ------------------
 1954|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1954:5): [True: 2, False: 0]
  ------------------
 1955|      2|    string = &_Py_ID(in_fd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1956|      2|    _PyUnicode_InternStatic(interp, &string);
 1957|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1957:5): [True: 2, False: 0]
  ------------------
 1958|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1958:5): [True: 2, False: 0]
  ------------------
 1959|      2|    string = &_Py_ID(include_aliases);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1960|      2|    _PyUnicode_InternStatic(interp, &string);
 1961|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1961:5): [True: 2, False: 0]
  ------------------
 1962|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1962:5): [True: 2, False: 0]
  ------------------
 1963|      2|    string = &_Py_ID(incoming);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1964|      2|    _PyUnicode_InternStatic(interp, &string);
 1965|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1965:5): [True: 2, False: 0]
  ------------------
 1966|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1966:5): [True: 2, False: 0]
  ------------------
 1967|      2|    string = &_Py_ID(index);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1968|      2|    _PyUnicode_InternStatic(interp, &string);
 1969|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1969:5): [True: 2, False: 0]
  ------------------
 1970|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1970:5): [True: 2, False: 0]
  ------------------
 1971|      2|    string = &_Py_ID(indexgroup);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1972|      2|    _PyUnicode_InternStatic(interp, &string);
 1973|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1973:5): [True: 2, False: 0]
  ------------------
 1974|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1974:5): [True: 2, False: 0]
  ------------------
 1975|      2|    string = &_Py_ID(inf);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1976|      2|    _PyUnicode_InternStatic(interp, &string);
 1977|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1977:5): [True: 2, False: 0]
  ------------------
 1978|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1978:5): [True: 2, False: 0]
  ------------------
 1979|      2|    string = &_Py_ID(infer_variance);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1980|      2|    _PyUnicode_InternStatic(interp, &string);
 1981|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1981:5): [True: 2, False: 0]
  ------------------
 1982|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1982:5): [True: 2, False: 0]
  ------------------
 1983|      2|    string = &_Py_ID(inherit_handle);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1984|      2|    _PyUnicode_InternStatic(interp, &string);
 1985|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1985:5): [True: 2, False: 0]
  ------------------
 1986|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1986:5): [True: 2, False: 0]
  ------------------
 1987|      2|    string = &_Py_ID(inheritable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1988|      2|    _PyUnicode_InternStatic(interp, &string);
 1989|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1989:5): [True: 2, False: 0]
  ------------------
 1990|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1990:5): [True: 2, False: 0]
  ------------------
 1991|      2|    string = &_Py_ID(initial);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1992|      2|    _PyUnicode_InternStatic(interp, &string);
 1993|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1993:5): [True: 2, False: 0]
  ------------------
 1994|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1994:5): [True: 2, False: 0]
  ------------------
 1995|      2|    string = &_Py_ID(initial_bytes);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1996|      2|    _PyUnicode_InternStatic(interp, &string);
 1997|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (1997:5): [True: 2, False: 0]
  ------------------
 1998|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (1998:5): [True: 2, False: 0]
  ------------------
 1999|      2|    string = &_Py_ID(initial_owner);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2000|      2|    _PyUnicode_InternStatic(interp, &string);
 2001|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2001:5): [True: 2, False: 0]
  ------------------
 2002|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2002:5): [True: 2, False: 0]
  ------------------
 2003|      2|    string = &_Py_ID(initial_state);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2004|      2|    _PyUnicode_InternStatic(interp, &string);
 2005|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2005:5): [True: 2, False: 0]
  ------------------
 2006|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2006:5): [True: 2, False: 0]
  ------------------
 2007|      2|    string = &_Py_ID(initial_value);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2008|      2|    _PyUnicode_InternStatic(interp, &string);
 2009|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2009:5): [True: 2, False: 0]
  ------------------
 2010|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2010:5): [True: 2, False: 0]
  ------------------
 2011|      2|    string = &_Py_ID(initval);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2012|      2|    _PyUnicode_InternStatic(interp, &string);
 2013|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2013:5): [True: 2, False: 0]
  ------------------
 2014|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2014:5): [True: 2, False: 0]
  ------------------
 2015|      2|    string = &_Py_ID(inner_size);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2016|      2|    _PyUnicode_InternStatic(interp, &string);
 2017|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2017:5): [True: 2, False: 0]
  ------------------
 2018|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2018:5): [True: 2, False: 0]
  ------------------
 2019|      2|    string = &_Py_ID(input);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2020|      2|    _PyUnicode_InternStatic(interp, &string);
 2021|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2021:5): [True: 2, False: 0]
  ------------------
 2022|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2022:5): [True: 2, False: 0]
  ------------------
 2023|      2|    string = &_Py_ID(insert_comments);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2024|      2|    _PyUnicode_InternStatic(interp, &string);
 2025|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2025:5): [True: 2, False: 0]
  ------------------
 2026|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2026:5): [True: 2, False: 0]
  ------------------
 2027|      2|    string = &_Py_ID(insert_pis);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2028|      2|    _PyUnicode_InternStatic(interp, &string);
 2029|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2029:5): [True: 2, False: 0]
  ------------------
 2030|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2030:5): [True: 2, False: 0]
  ------------------
 2031|      2|    string = &_Py_ID(instructions);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2032|      2|    _PyUnicode_InternStatic(interp, &string);
 2033|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2033:5): [True: 2, False: 0]
  ------------------
 2034|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2034:5): [True: 2, False: 0]
  ------------------
 2035|      2|    string = &_Py_ID(intern);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2036|      2|    _PyUnicode_InternStatic(interp, &string);
 2037|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2037:5): [True: 2, False: 0]
  ------------------
 2038|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2038:5): [True: 2, False: 0]
  ------------------
 2039|      2|    string = &_Py_ID(intersection);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2040|      2|    _PyUnicode_InternStatic(interp, &string);
 2041|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2041:5): [True: 2, False: 0]
  ------------------
 2042|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2042:5): [True: 2, False: 0]
  ------------------
 2043|      2|    string = &_Py_ID(interval);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2044|      2|    _PyUnicode_InternStatic(interp, &string);
 2045|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2045:5): [True: 2, False: 0]
  ------------------
 2046|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2046:5): [True: 2, False: 0]
  ------------------
 2047|      2|    string = &_Py_ID(io);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2048|      2|    _PyUnicode_InternStatic(interp, &string);
 2049|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2049:5): [True: 2, False: 0]
  ------------------
 2050|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2050:5): [True: 2, False: 0]
  ------------------
 2051|      2|    string = &_Py_ID(is_compress);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2052|      2|    _PyUnicode_InternStatic(interp, &string);
 2053|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2053:5): [True: 2, False: 0]
  ------------------
 2054|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2054:5): [True: 2, False: 0]
  ------------------
 2055|      2|    string = &_Py_ID(is_raw);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2056|      2|    _PyUnicode_InternStatic(interp, &string);
 2057|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2057:5): [True: 2, False: 0]
  ------------------
 2058|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2058:5): [True: 2, False: 0]
  ------------------
 2059|      2|    string = &_Py_ID(is_running);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2060|      2|    _PyUnicode_InternStatic(interp, &string);
 2061|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2061:5): [True: 2, False: 0]
  ------------------
 2062|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2062:5): [True: 2, False: 0]
  ------------------
 2063|      2|    string = &_Py_ID(is_struct);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2064|      2|    _PyUnicode_InternStatic(interp, &string);
 2065|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2065:5): [True: 2, False: 0]
  ------------------
 2066|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2066:5): [True: 2, False: 0]
  ------------------
 2067|      2|    string = &_Py_ID(isatty);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2068|      2|    _PyUnicode_InternStatic(interp, &string);
 2069|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2069:5): [True: 2, False: 0]
  ------------------
 2070|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2070:5): [True: 2, False: 0]
  ------------------
 2071|      2|    string = &_Py_ID(isinstance);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2072|      2|    _PyUnicode_InternStatic(interp, &string);
 2073|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2073:5): [True: 2, False: 0]
  ------------------
 2074|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2074:5): [True: 2, False: 0]
  ------------------
 2075|      2|    string = &_Py_ID(isoformat);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2076|      2|    _PyUnicode_InternStatic(interp, &string);
 2077|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2077:5): [True: 2, False: 0]
  ------------------
 2078|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2078:5): [True: 2, False: 0]
  ------------------
 2079|      2|    string = &_Py_ID(isolation_level);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2080|      2|    _PyUnicode_InternStatic(interp, &string);
 2081|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2081:5): [True: 2, False: 0]
  ------------------
 2082|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2082:5): [True: 2, False: 0]
  ------------------
 2083|      2|    string = &_Py_ID(istext);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2084|      2|    _PyUnicode_InternStatic(interp, &string);
 2085|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2085:5): [True: 2, False: 0]
  ------------------
 2086|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2086:5): [True: 2, False: 0]
  ------------------
 2087|      2|    string = &_Py_ID(item);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2088|      2|    _PyUnicode_InternStatic(interp, &string);
 2089|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2089:5): [True: 2, False: 0]
  ------------------
 2090|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2090:5): [True: 2, False: 0]
  ------------------
 2091|      2|    string = &_Py_ID(items);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2092|      2|    _PyUnicode_InternStatic(interp, &string);
 2093|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2093:5): [True: 2, False: 0]
  ------------------
 2094|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2094:5): [True: 2, False: 0]
  ------------------
 2095|      2|    string = &_Py_ID(iter);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2096|      2|    _PyUnicode_InternStatic(interp, &string);
 2097|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2097:5): [True: 2, False: 0]
  ------------------
 2098|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2098:5): [True: 2, False: 0]
  ------------------
 2099|      2|    string = &_Py_ID(iterable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2100|      2|    _PyUnicode_InternStatic(interp, &string);
 2101|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2101:5): [True: 2, False: 0]
  ------------------
 2102|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2102:5): [True: 2, False: 0]
  ------------------
 2103|      2|    string = &_Py_ID(iterations);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2104|      2|    _PyUnicode_InternStatic(interp, &string);
 2105|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2105:5): [True: 2, False: 0]
  ------------------
 2106|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2106:5): [True: 2, False: 0]
  ------------------
 2107|      2|    string = &_Py_ID(join);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2108|      2|    _PyUnicode_InternStatic(interp, &string);
 2109|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2109:5): [True: 2, False: 0]
  ------------------
 2110|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2110:5): [True: 2, False: 0]
  ------------------
 2111|      2|    string = &_Py_ID(jump);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2112|      2|    _PyUnicode_InternStatic(interp, &string);
 2113|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2113:5): [True: 2, False: 0]
  ------------------
 2114|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2114:5): [True: 2, False: 0]
  ------------------
 2115|      2|    string = &_Py_ID(keepends);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2116|      2|    _PyUnicode_InternStatic(interp, &string);
 2117|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2117:5): [True: 2, False: 0]
  ------------------
 2118|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2118:5): [True: 2, False: 0]
  ------------------
 2119|      2|    string = &_Py_ID(key);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2120|      2|    _PyUnicode_InternStatic(interp, &string);
 2121|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2121:5): [True: 2, False: 0]
  ------------------
 2122|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2122:5): [True: 2, False: 0]
  ------------------
 2123|      2|    string = &_Py_ID(keyfile);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2124|      2|    _PyUnicode_InternStatic(interp, &string);
 2125|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2125:5): [True: 2, False: 0]
  ------------------
 2126|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2126:5): [True: 2, False: 0]
  ------------------
 2127|      2|    string = &_Py_ID(keys);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2128|      2|    _PyUnicode_InternStatic(interp, &string);
 2129|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2129:5): [True: 2, False: 0]
  ------------------
 2130|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2130:5): [True: 2, False: 0]
  ------------------
 2131|      2|    string = &_Py_ID(kind);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2132|      2|    _PyUnicode_InternStatic(interp, &string);
 2133|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2133:5): [True: 2, False: 0]
  ------------------
 2134|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2134:5): [True: 2, False: 0]
  ------------------
 2135|      2|    string = &_Py_ID(kw);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2136|      2|    _PyUnicode_InternStatic(interp, &string);
 2137|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2137:5): [True: 2, False: 0]
  ------------------
 2138|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2138:5): [True: 2, False: 0]
  ------------------
 2139|      2|    string = &_Py_ID(kw1);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2140|      2|    _PyUnicode_InternStatic(interp, &string);
 2141|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2141:5): [True: 2, False: 0]
  ------------------
 2142|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2142:5): [True: 2, False: 0]
  ------------------
 2143|      2|    string = &_Py_ID(kw2);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2144|      2|    _PyUnicode_InternStatic(interp, &string);
 2145|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2145:5): [True: 2, False: 0]
  ------------------
 2146|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2146:5): [True: 2, False: 0]
  ------------------
 2147|      2|    string = &_Py_ID(kwargs);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2148|      2|    _PyUnicode_InternStatic(interp, &string);
 2149|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2149:5): [True: 2, False: 0]
  ------------------
 2150|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2150:5): [True: 2, False: 0]
  ------------------
 2151|      2|    string = &_Py_ID(kwdefaults);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2152|      2|    _PyUnicode_InternStatic(interp, &string);
 2153|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2153:5): [True: 2, False: 0]
  ------------------
 2154|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2154:5): [True: 2, False: 0]
  ------------------
 2155|      2|    string = &_Py_ID(label);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2156|      2|    _PyUnicode_InternStatic(interp, &string);
 2157|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2157:5): [True: 2, False: 0]
  ------------------
 2158|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2158:5): [True: 2, False: 0]
  ------------------
 2159|      2|    string = &_Py_ID(last);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2160|      2|    _PyUnicode_InternStatic(interp, &string);
 2161|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2161:5): [True: 2, False: 0]
  ------------------
 2162|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2162:5): [True: 2, False: 0]
  ------------------
 2163|      2|    string = &_Py_ID(last_exc);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2164|      2|    _PyUnicode_InternStatic(interp, &string);
 2165|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2165:5): [True: 2, False: 0]
  ------------------
 2166|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2166:5): [True: 2, False: 0]
  ------------------
 2167|      2|    string = &_Py_ID(last_node);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2168|      2|    _PyUnicode_InternStatic(interp, &string);
 2169|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2169:5): [True: 2, False: 0]
  ------------------
 2170|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2170:5): [True: 2, False: 0]
  ------------------
 2171|      2|    string = &_Py_ID(last_traceback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2172|      2|    _PyUnicode_InternStatic(interp, &string);
 2173|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2173:5): [True: 2, False: 0]
  ------------------
 2174|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2174:5): [True: 2, False: 0]
  ------------------
 2175|      2|    string = &_Py_ID(last_type);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2176|      2|    _PyUnicode_InternStatic(interp, &string);
 2177|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2177:5): [True: 2, False: 0]
  ------------------
 2178|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2178:5): [True: 2, False: 0]
  ------------------
 2179|      2|    string = &_Py_ID(last_value);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2180|      2|    _PyUnicode_InternStatic(interp, &string);
 2181|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2181:5): [True: 2, False: 0]
  ------------------
 2182|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2182:5): [True: 2, False: 0]
  ------------------
 2183|      2|    string = &_Py_ID(latin1);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2184|      2|    _PyUnicode_InternStatic(interp, &string);
 2185|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2185:5): [True: 2, False: 0]
  ------------------
 2186|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2186:5): [True: 2, False: 0]
  ------------------
 2187|      2|    string = &_Py_ID(leaf_size);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2188|      2|    _PyUnicode_InternStatic(interp, &string);
 2189|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2189:5): [True: 2, False: 0]
  ------------------
 2190|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2190:5): [True: 2, False: 0]
  ------------------
 2191|      2|    string = &_Py_ID(legacy);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2192|      2|    _PyUnicode_InternStatic(interp, &string);
 2193|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2193:5): [True: 2, False: 0]
  ------------------
 2194|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2194:5): [True: 2, False: 0]
  ------------------
 2195|      2|    string = &_Py_ID(len);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2196|      2|    _PyUnicode_InternStatic(interp, &string);
 2197|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2197:5): [True: 2, False: 0]
  ------------------
 2198|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2198:5): [True: 2, False: 0]
  ------------------
 2199|      2|    string = &_Py_ID(length);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2200|      2|    _PyUnicode_InternStatic(interp, &string);
 2201|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2201:5): [True: 2, False: 0]
  ------------------
 2202|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2202:5): [True: 2, False: 0]
  ------------------
 2203|      2|    string = &_Py_ID(level);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2204|      2|    _PyUnicode_InternStatic(interp, &string);
 2205|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2205:5): [True: 2, False: 0]
  ------------------
 2206|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2206:5): [True: 2, False: 0]
  ------------------
 2207|      2|    string = &_Py_ID(limit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2208|      2|    _PyUnicode_InternStatic(interp, &string);
 2209|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2209:5): [True: 2, False: 0]
  ------------------
 2210|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2210:5): [True: 2, False: 0]
  ------------------
 2211|      2|    string = &_Py_ID(line);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2212|      2|    _PyUnicode_InternStatic(interp, &string);
 2213|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2213:5): [True: 2, False: 0]
  ------------------
 2214|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2214:5): [True: 2, False: 0]
  ------------------
 2215|      2|    string = &_Py_ID(line_buffering);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2216|      2|    _PyUnicode_InternStatic(interp, &string);
 2217|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2217:5): [True: 2, False: 0]
  ------------------
 2218|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2218:5): [True: 2, False: 0]
  ------------------
 2219|      2|    string = &_Py_ID(lineno);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2220|      2|    _PyUnicode_InternStatic(interp, &string);
 2221|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2221:5): [True: 2, False: 0]
  ------------------
 2222|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2222:5): [True: 2, False: 0]
  ------------------
 2223|      2|    string = &_Py_ID(little);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2224|      2|    _PyUnicode_InternStatic(interp, &string);
 2225|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2225:5): [True: 2, False: 0]
  ------------------
 2226|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2226:5): [True: 2, False: 0]
  ------------------
 2227|      2|    string = &_Py_ID(lo);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2228|      2|    _PyUnicode_InternStatic(interp, &string);
 2229|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2229:5): [True: 2, False: 0]
  ------------------
 2230|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2230:5): [True: 2, False: 0]
  ------------------
 2231|      2|    string = &_Py_ID(locale);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2232|      2|    _PyUnicode_InternStatic(interp, &string);
 2233|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2233:5): [True: 2, False: 0]
  ------------------
 2234|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2234:5): [True: 2, False: 0]
  ------------------
 2235|      2|    string = &_Py_ID(locals);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2236|      2|    _PyUnicode_InternStatic(interp, &string);
 2237|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2237:5): [True: 2, False: 0]
  ------------------
 2238|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2238:5): [True: 2, False: 0]
  ------------------
 2239|      2|    string = &_Py_ID(logoption);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2240|      2|    _PyUnicode_InternStatic(interp, &string);
 2241|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2241:5): [True: 2, False: 0]
  ------------------
 2242|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2242:5): [True: 2, False: 0]
  ------------------
 2243|      2|    string = &_Py_ID(loop);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2244|      2|    _PyUnicode_InternStatic(interp, &string);
 2245|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2245:5): [True: 2, False: 0]
  ------------------
 2246|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2246:5): [True: 2, False: 0]
  ------------------
 2247|      2|    string = &_Py_ID(manual_reset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2248|      2|    _PyUnicode_InternStatic(interp, &string);
 2249|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2249:5): [True: 2, False: 0]
  ------------------
 2250|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2250:5): [True: 2, False: 0]
  ------------------
 2251|      2|    string = &_Py_ID(mapping);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2252|      2|    _PyUnicode_InternStatic(interp, &string);
 2253|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2253:5): [True: 2, False: 0]
  ------------------
 2254|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2254:5): [True: 2, False: 0]
  ------------------
 2255|      2|    string = &_Py_ID(mask);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2256|      2|    _PyUnicode_InternStatic(interp, &string);
 2257|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2257:5): [True: 2, False: 0]
  ------------------
 2258|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2258:5): [True: 2, False: 0]
  ------------------
 2259|      2|    string = &_Py_ID(match);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2260|      2|    _PyUnicode_InternStatic(interp, &string);
 2261|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2261:5): [True: 2, False: 0]
  ------------------
 2262|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2262:5): [True: 2, False: 0]
  ------------------
 2263|      2|    string = &_Py_ID(max_length);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2264|      2|    _PyUnicode_InternStatic(interp, &string);
 2265|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2265:5): [True: 2, False: 0]
  ------------------
 2266|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2266:5): [True: 2, False: 0]
  ------------------
 2267|      2|    string = &_Py_ID(max_threads);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2268|      2|    _PyUnicode_InternStatic(interp, &string);
 2269|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2269:5): [True: 2, False: 0]
  ------------------
 2270|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2270:5): [True: 2, False: 0]
  ------------------
 2271|      2|    string = &_Py_ID(maxdigits);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2272|      2|    _PyUnicode_InternStatic(interp, &string);
 2273|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2273:5): [True: 2, False: 0]
  ------------------
 2274|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2274:5): [True: 2, False: 0]
  ------------------
 2275|      2|    string = &_Py_ID(maxevents);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2276|      2|    _PyUnicode_InternStatic(interp, &string);
 2277|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2277:5): [True: 2, False: 0]
  ------------------
 2278|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2278:5): [True: 2, False: 0]
  ------------------
 2279|      2|    string = &_Py_ID(maxlen);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2280|      2|    _PyUnicode_InternStatic(interp, &string);
 2281|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2281:5): [True: 2, False: 0]
  ------------------
 2282|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2282:5): [True: 2, False: 0]
  ------------------
 2283|      2|    string = &_Py_ID(maxmem);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2284|      2|    _PyUnicode_InternStatic(interp, &string);
 2285|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2285:5): [True: 2, False: 0]
  ------------------
 2286|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2286:5): [True: 2, False: 0]
  ------------------
 2287|      2|    string = &_Py_ID(maxsize);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2288|      2|    _PyUnicode_InternStatic(interp, &string);
 2289|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2289:5): [True: 2, False: 0]
  ------------------
 2290|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2290:5): [True: 2, False: 0]
  ------------------
 2291|      2|    string = &_Py_ID(maxsplit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2292|      2|    _PyUnicode_InternStatic(interp, &string);
 2293|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2293:5): [True: 2, False: 0]
  ------------------
 2294|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2294:5): [True: 2, False: 0]
  ------------------
 2295|      2|    string = &_Py_ID(maxvalue);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2296|      2|    _PyUnicode_InternStatic(interp, &string);
 2297|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2297:5): [True: 2, False: 0]
  ------------------
 2298|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2298:5): [True: 2, False: 0]
  ------------------
 2299|      2|    string = &_Py_ID(memLevel);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2300|      2|    _PyUnicode_InternStatic(interp, &string);
 2301|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2301:5): [True: 2, False: 0]
  ------------------
 2302|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2302:5): [True: 2, False: 0]
  ------------------
 2303|      2|    string = &_Py_ID(memlimit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2304|      2|    _PyUnicode_InternStatic(interp, &string);
 2305|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2305:5): [True: 2, False: 0]
  ------------------
 2306|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2306:5): [True: 2, False: 0]
  ------------------
 2307|      2|    string = &_Py_ID(message);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2308|      2|    _PyUnicode_InternStatic(interp, &string);
 2309|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2309:5): [True: 2, False: 0]
  ------------------
 2310|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2310:5): [True: 2, False: 0]
  ------------------
 2311|      2|    string = &_Py_ID(metaclass);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2312|      2|    _PyUnicode_InternStatic(interp, &string);
 2313|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2313:5): [True: 2, False: 0]
  ------------------
 2314|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2314:5): [True: 2, False: 0]
  ------------------
 2315|      2|    string = &_Py_ID(metadata);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2316|      2|    _PyUnicode_InternStatic(interp, &string);
 2317|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2317:5): [True: 2, False: 0]
  ------------------
 2318|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2318:5): [True: 2, False: 0]
  ------------------
 2319|      2|    string = &_Py_ID(method);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2320|      2|    _PyUnicode_InternStatic(interp, &string);
 2321|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2321:5): [True: 2, False: 0]
  ------------------
 2322|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2322:5): [True: 2, False: 0]
  ------------------
 2323|      2|    string = &_Py_ID(microsecond);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2324|      2|    _PyUnicode_InternStatic(interp, &string);
 2325|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2325:5): [True: 2, False: 0]
  ------------------
 2326|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2326:5): [True: 2, False: 0]
  ------------------
 2327|      2|    string = &_Py_ID(microseconds);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2328|      2|    _PyUnicode_InternStatic(interp, &string);
 2329|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2329:5): [True: 2, False: 0]
  ------------------
 2330|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2330:5): [True: 2, False: 0]
  ------------------
 2331|      2|    string = &_Py_ID(milliseconds);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2332|      2|    _PyUnicode_InternStatic(interp, &string);
 2333|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2333:5): [True: 2, False: 0]
  ------------------
 2334|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2334:5): [True: 2, False: 0]
  ------------------
 2335|      2|    string = &_Py_ID(minute);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2336|      2|    _PyUnicode_InternStatic(interp, &string);
 2337|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2337:5): [True: 2, False: 0]
  ------------------
 2338|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2338:5): [True: 2, False: 0]
  ------------------
 2339|      2|    string = &_Py_ID(minutes);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2340|      2|    _PyUnicode_InternStatic(interp, &string);
 2341|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2341:5): [True: 2, False: 0]
  ------------------
 2342|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2342:5): [True: 2, False: 0]
  ------------------
 2343|      2|    string = &_Py_ID(mod);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2344|      2|    _PyUnicode_InternStatic(interp, &string);
 2345|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2345:5): [True: 2, False: 0]
  ------------------
 2346|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2346:5): [True: 2, False: 0]
  ------------------
 2347|      2|    string = &_Py_ID(mode);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2348|      2|    _PyUnicode_InternStatic(interp, &string);
 2349|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2349:5): [True: 2, False: 0]
  ------------------
 2350|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2350:5): [True: 2, False: 0]
  ------------------
 2351|      2|    string = &_Py_ID(module);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2352|      2|    _PyUnicode_InternStatic(interp, &string);
 2353|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2353:5): [True: 2, False: 0]
  ------------------
 2354|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2354:5): [True: 2, False: 0]
  ------------------
 2355|      2|    string = &_Py_ID(module_globals);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2356|      2|    _PyUnicode_InternStatic(interp, &string);
 2357|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2357:5): [True: 2, False: 0]
  ------------------
 2358|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2358:5): [True: 2, False: 0]
  ------------------
 2359|      2|    string = &_Py_ID(modules);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2360|      2|    _PyUnicode_InternStatic(interp, &string);
 2361|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2361:5): [True: 2, False: 0]
  ------------------
 2362|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2362:5): [True: 2, False: 0]
  ------------------
 2363|      2|    string = &_Py_ID(modulo);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2364|      2|    _PyUnicode_InternStatic(interp, &string);
 2365|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2365:5): [True: 2, False: 0]
  ------------------
 2366|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2366:5): [True: 2, False: 0]
  ------------------
 2367|      2|    string = &_Py_ID(month);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2368|      2|    _PyUnicode_InternStatic(interp, &string);
 2369|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2369:5): [True: 2, False: 0]
  ------------------
 2370|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2370:5): [True: 2, False: 0]
  ------------------
 2371|      2|    string = &_Py_ID(mro);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2372|      2|    _PyUnicode_InternStatic(interp, &string);
 2373|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2373:5): [True: 2, False: 0]
  ------------------
 2374|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2374:5): [True: 2, False: 0]
  ------------------
 2375|      2|    string = &_Py_ID(msg);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2376|      2|    _PyUnicode_InternStatic(interp, &string);
 2377|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2377:5): [True: 2, False: 0]
  ------------------
 2378|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2378:5): [True: 2, False: 0]
  ------------------
 2379|      2|    string = &_Py_ID(mutex);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2380|      2|    _PyUnicode_InternStatic(interp, &string);
 2381|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2381:5): [True: 2, False: 0]
  ------------------
 2382|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2382:5): [True: 2, False: 0]
  ------------------
 2383|      2|    string = &_Py_ID(mycmp);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2384|      2|    _PyUnicode_InternStatic(interp, &string);
 2385|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2385:5): [True: 2, False: 0]
  ------------------
 2386|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2386:5): [True: 2, False: 0]
  ------------------
 2387|      2|    string = &_Py_ID(n_fields);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2388|      2|    _PyUnicode_InternStatic(interp, &string);
 2389|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2389:5): [True: 2, False: 0]
  ------------------
 2390|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2390:5): [True: 2, False: 0]
  ------------------
 2391|      2|    string = &_Py_ID(n_sequence_fields);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2392|      2|    _PyUnicode_InternStatic(interp, &string);
 2393|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2393:5): [True: 2, False: 0]
  ------------------
 2394|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2394:5): [True: 2, False: 0]
  ------------------
 2395|      2|    string = &_Py_ID(n_unnamed_fields);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2396|      2|    _PyUnicode_InternStatic(interp, &string);
 2397|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2397:5): [True: 2, False: 0]
  ------------------
 2398|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2398:5): [True: 2, False: 0]
  ------------------
 2399|      2|    string = &_Py_ID(name);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2400|      2|    _PyUnicode_InternStatic(interp, &string);
 2401|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2401:5): [True: 2, False: 0]
  ------------------
 2402|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2402:5): [True: 2, False: 0]
  ------------------
 2403|      2|    string = &_Py_ID(name_from);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2404|      2|    _PyUnicode_InternStatic(interp, &string);
 2405|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2405:5): [True: 2, False: 0]
  ------------------
 2406|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2406:5): [True: 2, False: 0]
  ------------------
 2407|      2|    string = &_Py_ID(namespace_separator);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2408|      2|    _PyUnicode_InternStatic(interp, &string);
 2409|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2409:5): [True: 2, False: 0]
  ------------------
 2410|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2410:5): [True: 2, False: 0]
  ------------------
 2411|      2|    string = &_Py_ID(namespaces);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2412|      2|    _PyUnicode_InternStatic(interp, &string);
 2413|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2413:5): [True: 2, False: 0]
  ------------------
 2414|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2414:5): [True: 2, False: 0]
  ------------------
 2415|      2|    string = &_Py_ID(native);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2416|      2|    _PyUnicode_InternStatic(interp, &string);
 2417|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2417:5): [True: 2, False: 0]
  ------------------
 2418|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2418:5): [True: 2, False: 0]
  ------------------
 2419|      2|    string = &_Py_ID(ndigits);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2420|      2|    _PyUnicode_InternStatic(interp, &string);
 2421|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2421:5): [True: 2, False: 0]
  ------------------
 2422|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2422:5): [True: 2, False: 0]
  ------------------
 2423|      2|    string = &_Py_ID(nested);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2424|      2|    _PyUnicode_InternStatic(interp, &string);
 2425|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2425:5): [True: 2, False: 0]
  ------------------
 2426|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2426:5): [True: 2, False: 0]
  ------------------
 2427|      2|    string = &_Py_ID(new_file_name);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2428|      2|    _PyUnicode_InternStatic(interp, &string);
 2429|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2429:5): [True: 2, False: 0]
  ------------------
 2430|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2430:5): [True: 2, False: 0]
  ------------------
 2431|      2|    string = &_Py_ID(new_limit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2432|      2|    _PyUnicode_InternStatic(interp, &string);
 2433|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2433:5): [True: 2, False: 0]
  ------------------
 2434|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2434:5): [True: 2, False: 0]
  ------------------
 2435|      2|    string = &_Py_ID(newline);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2436|      2|    _PyUnicode_InternStatic(interp, &string);
 2437|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2437:5): [True: 2, False: 0]
  ------------------
 2438|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2438:5): [True: 2, False: 0]
  ------------------
 2439|      2|    string = &_Py_ID(newlines);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2440|      2|    _PyUnicode_InternStatic(interp, &string);
 2441|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2441:5): [True: 2, False: 0]
  ------------------
 2442|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2442:5): [True: 2, False: 0]
  ------------------
 2443|      2|    string = &_Py_ID(next);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2444|      2|    _PyUnicode_InternStatic(interp, &string);
 2445|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2445:5): [True: 2, False: 0]
  ------------------
 2446|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2446:5): [True: 2, False: 0]
  ------------------
 2447|      2|    string = &_Py_ID(nlocals);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2448|      2|    _PyUnicode_InternStatic(interp, &string);
 2449|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2449:5): [True: 2, False: 0]
  ------------------
 2450|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2450:5): [True: 2, False: 0]
  ------------------
 2451|      2|    string = &_Py_ID(node_depth);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2452|      2|    _PyUnicode_InternStatic(interp, &string);
 2453|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2453:5): [True: 2, False: 0]
  ------------------
 2454|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2454:5): [True: 2, False: 0]
  ------------------
 2455|      2|    string = &_Py_ID(node_offset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2456|      2|    _PyUnicode_InternStatic(interp, &string);
 2457|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2457:5): [True: 2, False: 0]
  ------------------
 2458|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2458:5): [True: 2, False: 0]
  ------------------
 2459|      2|    string = &_Py_ID(ns);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2460|      2|    _PyUnicode_InternStatic(interp, &string);
 2461|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2461:5): [True: 2, False: 0]
  ------------------
 2462|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2462:5): [True: 2, False: 0]
  ------------------
 2463|      2|    string = &_Py_ID(nstype);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2464|      2|    _PyUnicode_InternStatic(interp, &string);
 2465|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2465:5): [True: 2, False: 0]
  ------------------
 2466|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2466:5): [True: 2, False: 0]
  ------------------
 2467|      2|    string = &_Py_ID(nt);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2468|      2|    _PyUnicode_InternStatic(interp, &string);
 2469|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2469:5): [True: 2, False: 0]
  ------------------
 2470|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2470:5): [True: 2, False: 0]
  ------------------
 2471|      2|    string = &_Py_ID(null);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2472|      2|    _PyUnicode_InternStatic(interp, &string);
 2473|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2473:5): [True: 2, False: 0]
  ------------------
 2474|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2474:5): [True: 2, False: 0]
  ------------------
 2475|      2|    string = &_Py_ID(number);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2476|      2|    _PyUnicode_InternStatic(interp, &string);
 2477|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2477:5): [True: 2, False: 0]
  ------------------
 2478|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2478:5): [True: 2, False: 0]
  ------------------
 2479|      2|    string = &_Py_ID(obj);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2480|      2|    _PyUnicode_InternStatic(interp, &string);
 2481|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2481:5): [True: 2, False: 0]
  ------------------
 2482|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2482:5): [True: 2, False: 0]
  ------------------
 2483|      2|    string = &_Py_ID(object);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2484|      2|    _PyUnicode_InternStatic(interp, &string);
 2485|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2485:5): [True: 2, False: 0]
  ------------------
 2486|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2486:5): [True: 2, False: 0]
  ------------------
 2487|      2|    string = &_Py_ID(offset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2488|      2|    _PyUnicode_InternStatic(interp, &string);
 2489|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2489:5): [True: 2, False: 0]
  ------------------
 2490|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2490:5): [True: 2, False: 0]
  ------------------
 2491|      2|    string = &_Py_ID(offset_dst);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2492|      2|    _PyUnicode_InternStatic(interp, &string);
 2493|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2493:5): [True: 2, False: 0]
  ------------------
 2494|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2494:5): [True: 2, False: 0]
  ------------------
 2495|      2|    string = &_Py_ID(offset_src);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2496|      2|    _PyUnicode_InternStatic(interp, &string);
 2497|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2497:5): [True: 2, False: 0]
  ------------------
 2498|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2498:5): [True: 2, False: 0]
  ------------------
 2499|      2|    string = &_Py_ID(on_type_read);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2500|      2|    _PyUnicode_InternStatic(interp, &string);
 2501|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2501:5): [True: 2, False: 0]
  ------------------
 2502|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2502:5): [True: 2, False: 0]
  ------------------
 2503|      2|    string = &_Py_ID(onceregistry);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2504|      2|    _PyUnicode_InternStatic(interp, &string);
 2505|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2505:5): [True: 2, False: 0]
  ------------------
 2506|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2506:5): [True: 2, False: 0]
  ------------------
 2507|      2|    string = &_Py_ID(only_active_thread);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2508|      2|    _PyUnicode_InternStatic(interp, &string);
 2509|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2509:5): [True: 2, False: 0]
  ------------------
 2510|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2510:5): [True: 2, False: 0]
  ------------------
 2511|      2|    string = &_Py_ID(only_keys);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2512|      2|    _PyUnicode_InternStatic(interp, &string);
 2513|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2513:5): [True: 2, False: 0]
  ------------------
 2514|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2514:5): [True: 2, False: 0]
  ------------------
 2515|      2|    string = &_Py_ID(oparg);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2516|      2|    _PyUnicode_InternStatic(interp, &string);
 2517|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2517:5): [True: 2, False: 0]
  ------------------
 2518|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2518:5): [True: 2, False: 0]
  ------------------
 2519|      2|    string = &_Py_ID(opcode);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2520|      2|    _PyUnicode_InternStatic(interp, &string);
 2521|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2521:5): [True: 2, False: 0]
  ------------------
 2522|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2522:5): [True: 2, False: 0]
  ------------------
 2523|      2|    string = &_Py_ID(opcodes);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2524|      2|    _PyUnicode_InternStatic(interp, &string);
 2525|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2525:5): [True: 2, False: 0]
  ------------------
 2526|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2526:5): [True: 2, False: 0]
  ------------------
 2527|      2|    string = &_Py_ID(open);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2528|      2|    _PyUnicode_InternStatic(interp, &string);
 2529|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2529:5): [True: 2, False: 0]
  ------------------
 2530|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2530:5): [True: 2, False: 0]
  ------------------
 2531|      2|    string = &_Py_ID(opener);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2532|      2|    _PyUnicode_InternStatic(interp, &string);
 2533|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2533:5): [True: 2, False: 0]
  ------------------
 2534|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2534:5): [True: 2, False: 0]
  ------------------
 2535|      2|    string = &_Py_ID(operation);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2536|      2|    _PyUnicode_InternStatic(interp, &string);
 2537|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2537:5): [True: 2, False: 0]
  ------------------
 2538|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2538:5): [True: 2, False: 0]
  ------------------
 2539|      2|    string = &_Py_ID(optimize);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2540|      2|    _PyUnicode_InternStatic(interp, &string);
 2541|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2541:5): [True: 2, False: 0]
  ------------------
 2542|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2542:5): [True: 2, False: 0]
  ------------------
 2543|      2|    string = &_Py_ID(options);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2544|      2|    _PyUnicode_InternStatic(interp, &string);
 2545|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2545:5): [True: 2, False: 0]
  ------------------
 2546|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2546:5): [True: 2, False: 0]
  ------------------
 2547|      2|    string = &_Py_ID(order);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2548|      2|    _PyUnicode_InternStatic(interp, &string);
 2549|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2549:5): [True: 2, False: 0]
  ------------------
 2550|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2550:5): [True: 2, False: 0]
  ------------------
 2551|      2|    string = &_Py_ID(origin);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2552|      2|    _PyUnicode_InternStatic(interp, &string);
 2553|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2553:5): [True: 2, False: 0]
  ------------------
 2554|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2554:5): [True: 2, False: 0]
  ------------------
 2555|      2|    string = &_Py_ID(other);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2556|      2|    _PyUnicode_InternStatic(interp, &string);
 2557|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2557:5): [True: 2, False: 0]
  ------------------
 2558|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2558:5): [True: 2, False: 0]
  ------------------
 2559|      2|    string = &_Py_ID(out_fd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2560|      2|    _PyUnicode_InternStatic(interp, &string);
 2561|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2561:5): [True: 2, False: 0]
  ------------------
 2562|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2562:5): [True: 2, False: 0]
  ------------------
 2563|      2|    string = &_Py_ID(outgoing);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2564|      2|    _PyUnicode_InternStatic(interp, &string);
 2565|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2565:5): [True: 2, False: 0]
  ------------------
 2566|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2566:5): [True: 2, False: 0]
  ------------------
 2567|      2|    string = &_Py_ID(outpath);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2568|      2|    _PyUnicode_InternStatic(interp, &string);
 2569|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2569:5): [True: 2, False: 0]
  ------------------
 2570|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2570:5): [True: 2, False: 0]
  ------------------
 2571|      2|    string = &_Py_ID(overlapped);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2572|      2|    _PyUnicode_InternStatic(interp, &string);
 2573|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2573:5): [True: 2, False: 0]
  ------------------
 2574|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2574:5): [True: 2, False: 0]
  ------------------
 2575|      2|    string = &_Py_ID(owner);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2576|      2|    _PyUnicode_InternStatic(interp, &string);
 2577|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2577:5): [True: 2, False: 0]
  ------------------
 2578|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2578:5): [True: 2, False: 0]
  ------------------
 2579|      2|    string = &_Py_ID(pad);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2580|      2|    _PyUnicode_InternStatic(interp, &string);
 2581|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2581:5): [True: 2, False: 0]
  ------------------
 2582|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2582:5): [True: 2, False: 0]
  ------------------
 2583|      2|    string = &_Py_ID(padded);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2584|      2|    _PyUnicode_InternStatic(interp, &string);
 2585|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2585:5): [True: 2, False: 0]
  ------------------
 2586|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2586:5): [True: 2, False: 0]
  ------------------
 2587|      2|    string = &_Py_ID(pages);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2588|      2|    _PyUnicode_InternStatic(interp, &string);
 2589|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2589:5): [True: 2, False: 0]
  ------------------
 2590|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2590:5): [True: 2, False: 0]
  ------------------
 2591|      2|    string = &_Py_ID(parameter);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2592|      2|    _PyUnicode_InternStatic(interp, &string);
 2593|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2593:5): [True: 2, False: 0]
  ------------------
 2594|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2594:5): [True: 2, False: 0]
  ------------------
 2595|      2|    string = &_Py_ID(parent);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2596|      2|    _PyUnicode_InternStatic(interp, &string);
 2597|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2597:5): [True: 2, False: 0]
  ------------------
 2598|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2598:5): [True: 2, False: 0]
  ------------------
 2599|      2|    string = &_Py_ID(password);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2600|      2|    _PyUnicode_InternStatic(interp, &string);
 2601|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2601:5): [True: 2, False: 0]
  ------------------
 2602|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2602:5): [True: 2, False: 0]
  ------------------
 2603|      2|    string = &_Py_ID(path);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2604|      2|    _PyUnicode_InternStatic(interp, &string);
 2605|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2605:5): [True: 2, False: 0]
  ------------------
 2606|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2606:5): [True: 2, False: 0]
  ------------------
 2607|      2|    string = &_Py_ID(pattern);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2608|      2|    _PyUnicode_InternStatic(interp, &string);
 2609|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2609:5): [True: 2, False: 0]
  ------------------
 2610|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2610:5): [True: 2, False: 0]
  ------------------
 2611|      2|    string = &_Py_ID(peek);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2612|      2|    _PyUnicode_InternStatic(interp, &string);
 2613|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2613:5): [True: 2, False: 0]
  ------------------
 2614|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2614:5): [True: 2, False: 0]
  ------------------
 2615|      2|    string = &_Py_ID(persistent_id);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2616|      2|    _PyUnicode_InternStatic(interp, &string);
 2617|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2617:5): [True: 2, False: 0]
  ------------------
 2618|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2618:5): [True: 2, False: 0]
  ------------------
 2619|      2|    string = &_Py_ID(persistent_load);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2620|      2|    _PyUnicode_InternStatic(interp, &string);
 2621|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2621:5): [True: 2, False: 0]
  ------------------
 2622|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2622:5): [True: 2, False: 0]
  ------------------
 2623|      2|    string = &_Py_ID(person);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2624|      2|    _PyUnicode_InternStatic(interp, &string);
 2625|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2625:5): [True: 2, False: 0]
  ------------------
 2626|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2626:5): [True: 2, False: 0]
  ------------------
 2627|      2|    string = &_Py_ID(pi_factory);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2628|      2|    _PyUnicode_InternStatic(interp, &string);
 2629|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2629:5): [True: 2, False: 0]
  ------------------
 2630|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2630:5): [True: 2, False: 0]
  ------------------
 2631|      2|    string = &_Py_ID(pid);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2632|      2|    _PyUnicode_InternStatic(interp, &string);
 2633|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2633:5): [True: 2, False: 0]
  ------------------
 2634|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2634:5): [True: 2, False: 0]
  ------------------
 2635|      2|    string = &_Py_ID(pidfd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2636|      2|    _PyUnicode_InternStatic(interp, &string);
 2637|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2637:5): [True: 2, False: 0]
  ------------------
 2638|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2638:5): [True: 2, False: 0]
  ------------------
 2639|      2|    string = &_Py_ID(pointer_bits);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2640|      2|    _PyUnicode_InternStatic(interp, &string);
 2641|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2641:5): [True: 2, False: 0]
  ------------------
 2642|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2642:5): [True: 2, False: 0]
  ------------------
 2643|      2|    string = &_Py_ID(policy);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2644|      2|    _PyUnicode_InternStatic(interp, &string);
 2645|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2645:5): [True: 2, False: 0]
  ------------------
 2646|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2646:5): [True: 2, False: 0]
  ------------------
 2647|      2|    string = &_Py_ID(pos);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2648|      2|    _PyUnicode_InternStatic(interp, &string);
 2649|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2649:5): [True: 2, False: 0]
  ------------------
 2650|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2650:5): [True: 2, False: 0]
  ------------------
 2651|      2|    string = &_Py_ID(pos1);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2652|      2|    _PyUnicode_InternStatic(interp, &string);
 2653|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2653:5): [True: 2, False: 0]
  ------------------
 2654|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2654:5): [True: 2, False: 0]
  ------------------
 2655|      2|    string = &_Py_ID(pos2);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2656|      2|    _PyUnicode_InternStatic(interp, &string);
 2657|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2657:5): [True: 2, False: 0]
  ------------------
 2658|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2658:5): [True: 2, False: 0]
  ------------------
 2659|      2|    string = &_Py_ID(posix);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2660|      2|    _PyUnicode_InternStatic(interp, &string);
 2661|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2661:5): [True: 2, False: 0]
  ------------------
 2662|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2662:5): [True: 2, False: 0]
  ------------------
 2663|      2|    string = &_Py_ID(prec);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2664|      2|    _PyUnicode_InternStatic(interp, &string);
 2665|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2665:5): [True: 2, False: 0]
  ------------------
 2666|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2666:5): [True: 2, False: 0]
  ------------------
 2667|      2|    string = &_Py_ID(preserve_exc);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2668|      2|    _PyUnicode_InternStatic(interp, &string);
 2669|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2669:5): [True: 2, False: 0]
  ------------------
 2670|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2670:5): [True: 2, False: 0]
  ------------------
 2671|      2|    string = &_Py_ID(print_file_and_line);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2672|      2|    _PyUnicode_InternStatic(interp, &string);
 2673|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2673:5): [True: 2, False: 0]
  ------------------
 2674|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2674:5): [True: 2, False: 0]
  ------------------
 2675|      2|    string = &_Py_ID(priority);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2676|      2|    _PyUnicode_InternStatic(interp, &string);
 2677|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2677:5): [True: 2, False: 0]
  ------------------
 2678|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2678:5): [True: 2, False: 0]
  ------------------
 2679|      2|    string = &_Py_ID(progress);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2680|      2|    _PyUnicode_InternStatic(interp, &string);
 2681|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2681:5): [True: 2, False: 0]
  ------------------
 2682|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2682:5): [True: 2, False: 0]
  ------------------
 2683|      2|    string = &_Py_ID(progress_callback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2684|      2|    _PyUnicode_InternStatic(interp, &string);
 2685|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2685:5): [True: 2, False: 0]
  ------------------
 2686|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2686:5): [True: 2, False: 0]
  ------------------
 2687|      2|    string = &_Py_ID(progress_routine);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2688|      2|    _PyUnicode_InternStatic(interp, &string);
 2689|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2689:5): [True: 2, False: 0]
  ------------------
 2690|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2690:5): [True: 2, False: 0]
  ------------------
 2691|      2|    string = &_Py_ID(proto);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2692|      2|    _PyUnicode_InternStatic(interp, &string);
 2693|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2693:5): [True: 2, False: 0]
  ------------------
 2694|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2694:5): [True: 2, False: 0]
  ------------------
 2695|      2|    string = &_Py_ID(protocol);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2696|      2|    _PyUnicode_InternStatic(interp, &string);
 2697|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2697:5): [True: 2, False: 0]
  ------------------
 2698|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2698:5): [True: 2, False: 0]
  ------------------
 2699|      2|    string = &_Py_ID(ps1);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2700|      2|    _PyUnicode_InternStatic(interp, &string);
 2701|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2701:5): [True: 2, False: 0]
  ------------------
 2702|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2702:5): [True: 2, False: 0]
  ------------------
 2703|      2|    string = &_Py_ID(ps2);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2704|      2|    _PyUnicode_InternStatic(interp, &string);
 2705|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2705:5): [True: 2, False: 0]
  ------------------
 2706|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2706:5): [True: 2, False: 0]
  ------------------
 2707|      2|    string = &_Py_ID(qid);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2708|      2|    _PyUnicode_InternStatic(interp, &string);
 2709|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2709:5): [True: 2, False: 0]
  ------------------
 2710|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2710:5): [True: 2, False: 0]
  ------------------
 2711|      2|    string = &_Py_ID(qualname);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2712|      2|    _PyUnicode_InternStatic(interp, &string);
 2713|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2713:5): [True: 2, False: 0]
  ------------------
 2714|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2714:5): [True: 2, False: 0]
  ------------------
 2715|      2|    string = &_Py_ID(query);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2716|      2|    _PyUnicode_InternStatic(interp, &string);
 2717|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2717:5): [True: 2, False: 0]
  ------------------
 2718|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2718:5): [True: 2, False: 0]
  ------------------
 2719|      2|    string = &_Py_ID(queuetype);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2720|      2|    _PyUnicode_InternStatic(interp, &string);
 2721|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2721:5): [True: 2, False: 0]
  ------------------
 2722|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2722:5): [True: 2, False: 0]
  ------------------
 2723|      2|    string = &_Py_ID(quotetabs);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2724|      2|    _PyUnicode_InternStatic(interp, &string);
 2725|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2725:5): [True: 2, False: 0]
  ------------------
 2726|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2726:5): [True: 2, False: 0]
  ------------------
 2727|      2|    string = &_Py_ID(raw);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2728|      2|    _PyUnicode_InternStatic(interp, &string);
 2729|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2729:5): [True: 2, False: 0]
  ------------------
 2730|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2730:5): [True: 2, False: 0]
  ------------------
 2731|      2|    string = &_Py_ID(read);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2732|      2|    _PyUnicode_InternStatic(interp, &string);
 2733|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2733:5): [True: 2, False: 0]
  ------------------
 2734|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2734:5): [True: 2, False: 0]
  ------------------
 2735|      2|    string = &_Py_ID(read1);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2736|      2|    _PyUnicode_InternStatic(interp, &string);
 2737|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2737:5): [True: 2, False: 0]
  ------------------
 2738|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2738:5): [True: 2, False: 0]
  ------------------
 2739|      2|    string = &_Py_ID(readable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2740|      2|    _PyUnicode_InternStatic(interp, &string);
 2741|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2741:5): [True: 2, False: 0]
  ------------------
 2742|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2742:5): [True: 2, False: 0]
  ------------------
 2743|      2|    string = &_Py_ID(readall);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2744|      2|    _PyUnicode_InternStatic(interp, &string);
 2745|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2745:5): [True: 2, False: 0]
  ------------------
 2746|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2746:5): [True: 2, False: 0]
  ------------------
 2747|      2|    string = &_Py_ID(readinto);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2748|      2|    _PyUnicode_InternStatic(interp, &string);
 2749|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2749:5): [True: 2, False: 0]
  ------------------
 2750|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2750:5): [True: 2, False: 0]
  ------------------
 2751|      2|    string = &_Py_ID(readinto1);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2752|      2|    _PyUnicode_InternStatic(interp, &string);
 2753|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2753:5): [True: 2, False: 0]
  ------------------
 2754|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2754:5): [True: 2, False: 0]
  ------------------
 2755|      2|    string = &_Py_ID(readline);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2756|      2|    _PyUnicode_InternStatic(interp, &string);
 2757|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2757:5): [True: 2, False: 0]
  ------------------
 2758|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2758:5): [True: 2, False: 0]
  ------------------
 2759|      2|    string = &_Py_ID(readonly);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2760|      2|    _PyUnicode_InternStatic(interp, &string);
 2761|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2761:5): [True: 2, False: 0]
  ------------------
 2762|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2762:5): [True: 2, False: 0]
  ------------------
 2763|      2|    string = &_Py_ID(real);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2764|      2|    _PyUnicode_InternStatic(interp, &string);
 2765|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2765:5): [True: 2, False: 0]
  ------------------
 2766|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2766:5): [True: 2, False: 0]
  ------------------
 2767|      2|    string = &_Py_ID(recursive);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2768|      2|    _PyUnicode_InternStatic(interp, &string);
 2769|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2769:5): [True: 2, False: 0]
  ------------------
 2770|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2770:5): [True: 2, False: 0]
  ------------------
 2771|      2|    string = &_Py_ID(reducer_override);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2772|      2|    _PyUnicode_InternStatic(interp, &string);
 2773|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2773:5): [True: 2, False: 0]
  ------------------
 2774|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2774:5): [True: 2, False: 0]
  ------------------
 2775|      2|    string = &_Py_ID(registry);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2776|      2|    _PyUnicode_InternStatic(interp, &string);
 2777|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2777:5): [True: 2, False: 0]
  ------------------
 2778|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2778:5): [True: 2, False: 0]
  ------------------
 2779|      2|    string = &_Py_ID(rel_tol);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2780|      2|    _PyUnicode_InternStatic(interp, &string);
 2781|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2781:5): [True: 2, False: 0]
  ------------------
 2782|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2782:5): [True: 2, False: 0]
  ------------------
 2783|      2|    string = &_Py_ID(release);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2784|      2|    _PyUnicode_InternStatic(interp, &string);
 2785|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2785:5): [True: 2, False: 0]
  ------------------
 2786|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2786:5): [True: 2, False: 0]
  ------------------
 2787|      2|    string = &_Py_ID(reload);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2788|      2|    _PyUnicode_InternStatic(interp, &string);
 2789|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2789:5): [True: 2, False: 0]
  ------------------
 2790|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2790:5): [True: 2, False: 0]
  ------------------
 2791|      2|    string = &_Py_ID(repeat);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2792|      2|    _PyUnicode_InternStatic(interp, &string);
 2793|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2793:5): [True: 2, False: 0]
  ------------------
 2794|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2794:5): [True: 2, False: 0]
  ------------------
 2795|      2|    string = &_Py_ID(repl);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2796|      2|    _PyUnicode_InternStatic(interp, &string);
 2797|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2797:5): [True: 2, False: 0]
  ------------------
 2798|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2798:5): [True: 2, False: 0]
  ------------------
 2799|      2|    string = &_Py_ID(replace);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2800|      2|    _PyUnicode_InternStatic(interp, &string);
 2801|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2801:5): [True: 2, False: 0]
  ------------------
 2802|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2802:5): [True: 2, False: 0]
  ------------------
 2803|      2|    string = &_Py_ID(reqrefs);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2804|      2|    _PyUnicode_InternStatic(interp, &string);
 2805|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2805:5): [True: 2, False: 0]
  ------------------
 2806|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2806:5): [True: 2, False: 0]
  ------------------
 2807|      2|    string = &_Py_ID(require_ready);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2808|      2|    _PyUnicode_InternStatic(interp, &string);
 2809|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2809:5): [True: 2, False: 0]
  ------------------
 2810|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2810:5): [True: 2, False: 0]
  ------------------
 2811|      2|    string = &_Py_ID(reserved);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2812|      2|    _PyUnicode_InternStatic(interp, &string);
 2813|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2813:5): [True: 2, False: 0]
  ------------------
 2814|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2814:5): [True: 2, False: 0]
  ------------------
 2815|      2|    string = &_Py_ID(reset);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2816|      2|    _PyUnicode_InternStatic(interp, &string);
 2817|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2817:5): [True: 2, False: 0]
  ------------------
 2818|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2818:5): [True: 2, False: 0]
  ------------------
 2819|      2|    string = &_Py_ID(resetids);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2820|      2|    _PyUnicode_InternStatic(interp, &string);
 2821|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2821:5): [True: 2, False: 0]
  ------------------
 2822|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2822:5): [True: 2, False: 0]
  ------------------
 2823|      2|    string = &_Py_ID(restrict);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2824|      2|    _PyUnicode_InternStatic(interp, &string);
 2825|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2825:5): [True: 2, False: 0]
  ------------------
 2826|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2826:5): [True: 2, False: 0]
  ------------------
 2827|      2|    string = &_Py_ID(return);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2828|      2|    _PyUnicode_InternStatic(interp, &string);
 2829|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2829:5): [True: 2, False: 0]
  ------------------
 2830|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2830:5): [True: 2, False: 0]
  ------------------
 2831|      2|    string = &_Py_ID(reverse);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2832|      2|    _PyUnicode_InternStatic(interp, &string);
 2833|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2833:5): [True: 2, False: 0]
  ------------------
 2834|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2834:5): [True: 2, False: 0]
  ------------------
 2835|      2|    string = &_Py_ID(reversed);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2836|      2|    _PyUnicode_InternStatic(interp, &string);
 2837|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2837:5): [True: 2, False: 0]
  ------------------
 2838|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2838:5): [True: 2, False: 0]
  ------------------
 2839|      2|    string = &_Py_ID(rounding);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2840|      2|    _PyUnicode_InternStatic(interp, &string);
 2841|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2841:5): [True: 2, False: 0]
  ------------------
 2842|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2842:5): [True: 2, False: 0]
  ------------------
 2843|      2|    string = &_Py_ID(salt);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2844|      2|    _PyUnicode_InternStatic(interp, &string);
 2845|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2845:5): [True: 2, False: 0]
  ------------------
 2846|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2846:5): [True: 2, False: 0]
  ------------------
 2847|      2|    string = &_Py_ID(sample_interval_us);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2848|      2|    _PyUnicode_InternStatic(interp, &string);
 2849|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2849:5): [True: 2, False: 0]
  ------------------
 2850|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2850:5): [True: 2, False: 0]
  ------------------
 2851|      2|    string = &_Py_ID(sched_priority);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2852|      2|    _PyUnicode_InternStatic(interp, &string);
 2853|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2853:5): [True: 2, False: 0]
  ------------------
 2854|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2854:5): [True: 2, False: 0]
  ------------------
 2855|      2|    string = &_Py_ID(scheduler);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2856|      2|    _PyUnicode_InternStatic(interp, &string);
 2857|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2857:5): [True: 2, False: 0]
  ------------------
 2858|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2858:5): [True: 2, False: 0]
  ------------------
 2859|      2|    string = &_Py_ID(script);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2860|      2|    _PyUnicode_InternStatic(interp, &string);
 2861|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2861:5): [True: 2, False: 0]
  ------------------
 2862|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2862:5): [True: 2, False: 0]
  ------------------
 2863|      2|    string = &_Py_ID(second);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2864|      2|    _PyUnicode_InternStatic(interp, &string);
 2865|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2865:5): [True: 2, False: 0]
  ------------------
 2866|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2866:5): [True: 2, False: 0]
  ------------------
 2867|      2|    string = &_Py_ID(seconds);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2868|      2|    _PyUnicode_InternStatic(interp, &string);
 2869|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2869:5): [True: 2, False: 0]
  ------------------
 2870|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2870:5): [True: 2, False: 0]
  ------------------
 2871|      2|    string = &_Py_ID(security_attributes);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2872|      2|    _PyUnicode_InternStatic(interp, &string);
 2873|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2873:5): [True: 2, False: 0]
  ------------------
 2874|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2874:5): [True: 2, False: 0]
  ------------------
 2875|      2|    string = &_Py_ID(seek);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2876|      2|    _PyUnicode_InternStatic(interp, &string);
 2877|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2877:5): [True: 2, False: 0]
  ------------------
 2878|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2878:5): [True: 2, False: 0]
  ------------------
 2879|      2|    string = &_Py_ID(seekable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2880|      2|    _PyUnicode_InternStatic(interp, &string);
 2881|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2881:5): [True: 2, False: 0]
  ------------------
 2882|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2882:5): [True: 2, False: 0]
  ------------------
 2883|      2|    string = &_Py_ID(selectors);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2884|      2|    _PyUnicode_InternStatic(interp, &string);
 2885|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2885:5): [True: 2, False: 0]
  ------------------
 2886|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2886:5): [True: 2, False: 0]
  ------------------
 2887|      2|    string = &_Py_ID(self);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2888|      2|    _PyUnicode_InternStatic(interp, &string);
 2889|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2889:5): [True: 2, False: 0]
  ------------------
 2890|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2890:5): [True: 2, False: 0]
  ------------------
 2891|      2|    string = &_Py_ID(send);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2892|      2|    _PyUnicode_InternStatic(interp, &string);
 2893|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2893:5): [True: 2, False: 0]
  ------------------
 2894|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2894:5): [True: 2, False: 0]
  ------------------
 2895|      2|    string = &_Py_ID(sep);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2896|      2|    _PyUnicode_InternStatic(interp, &string);
 2897|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2897:5): [True: 2, False: 0]
  ------------------
 2898|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2898:5): [True: 2, False: 0]
  ------------------
 2899|      2|    string = &_Py_ID(sequence);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2900|      2|    _PyUnicode_InternStatic(interp, &string);
 2901|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2901:5): [True: 2, False: 0]
  ------------------
 2902|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2902:5): [True: 2, False: 0]
  ------------------
 2903|      2|    string = &_Py_ID(server_hostname);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2904|      2|    _PyUnicode_InternStatic(interp, &string);
 2905|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2905:5): [True: 2, False: 0]
  ------------------
 2906|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2906:5): [True: 2, False: 0]
  ------------------
 2907|      2|    string = &_Py_ID(server_side);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2908|      2|    _PyUnicode_InternStatic(interp, &string);
 2909|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2909:5): [True: 2, False: 0]
  ------------------
 2910|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2910:5): [True: 2, False: 0]
  ------------------
 2911|      2|    string = &_Py_ID(session);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2912|      2|    _PyUnicode_InternStatic(interp, &string);
 2913|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2913:5): [True: 2, False: 0]
  ------------------
 2914|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2914:5): [True: 2, False: 0]
  ------------------
 2915|      2|    string = &_Py_ID(setpgroup);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2916|      2|    _PyUnicode_InternStatic(interp, &string);
 2917|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2917:5): [True: 2, False: 0]
  ------------------
 2918|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2918:5): [True: 2, False: 0]
  ------------------
 2919|      2|    string = &_Py_ID(setsid);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2920|      2|    _PyUnicode_InternStatic(interp, &string);
 2921|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2921:5): [True: 2, False: 0]
  ------------------
 2922|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2922:5): [True: 2, False: 0]
  ------------------
 2923|      2|    string = &_Py_ID(setsigdef);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2924|      2|    _PyUnicode_InternStatic(interp, &string);
 2925|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2925:5): [True: 2, False: 0]
  ------------------
 2926|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2926:5): [True: 2, False: 0]
  ------------------
 2927|      2|    string = &_Py_ID(setsigmask);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2928|      2|    _PyUnicode_InternStatic(interp, &string);
 2929|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2929:5): [True: 2, False: 0]
  ------------------
 2930|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2930:5): [True: 2, False: 0]
  ------------------
 2931|      2|    string = &_Py_ID(setstate);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2932|      2|    _PyUnicode_InternStatic(interp, &string);
 2933|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2933:5): [True: 2, False: 0]
  ------------------
 2934|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2934:5): [True: 2, False: 0]
  ------------------
 2935|      2|    string = &_Py_ID(shape);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2936|      2|    _PyUnicode_InternStatic(interp, &string);
 2937|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2937:5): [True: 2, False: 0]
  ------------------
 2938|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2938:5): [True: 2, False: 0]
  ------------------
 2939|      2|    string = &_Py_ID(shared);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2940|      2|    _PyUnicode_InternStatic(interp, &string);
 2941|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2941:5): [True: 2, False: 0]
  ------------------
 2942|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2942:5): [True: 2, False: 0]
  ------------------
 2943|      2|    string = &_Py_ID(short);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2944|      2|    _PyUnicode_InternStatic(interp, &string);
 2945|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2945:5): [True: 2, False: 0]
  ------------------
 2946|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2946:5): [True: 2, False: 0]
  ------------------
 2947|      2|    string = &_Py_ID(show_cmd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2948|      2|    _PyUnicode_InternStatic(interp, &string);
 2949|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2949:5): [True: 2, False: 0]
  ------------------
 2950|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2950:5): [True: 2, False: 0]
  ------------------
 2951|      2|    string = &_Py_ID(signed);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2952|      2|    _PyUnicode_InternStatic(interp, &string);
 2953|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2953:5): [True: 2, False: 0]
  ------------------
 2954|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2954:5): [True: 2, False: 0]
  ------------------
 2955|      2|    string = &_Py_ID(signum);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2956|      2|    _PyUnicode_InternStatic(interp, &string);
 2957|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2957:5): [True: 2, False: 0]
  ------------------
 2958|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2958:5): [True: 2, False: 0]
  ------------------
 2959|      2|    string = &_Py_ID(size);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2960|      2|    _PyUnicode_InternStatic(interp, &string);
 2961|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2961:5): [True: 2, False: 0]
  ------------------
 2962|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2962:5): [True: 2, False: 0]
  ------------------
 2963|      2|    string = &_Py_ID(sizehint);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2964|      2|    _PyUnicode_InternStatic(interp, &string);
 2965|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2965:5): [True: 2, False: 0]
  ------------------
 2966|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2966:5): [True: 2, False: 0]
  ------------------
 2967|      2|    string = &_Py_ID(skip_file_prefixes);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2968|      2|    _PyUnicode_InternStatic(interp, &string);
 2969|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2969:5): [True: 2, False: 0]
  ------------------
 2970|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2970:5): [True: 2, False: 0]
  ------------------
 2971|      2|    string = &_Py_ID(skip_non_matching_threads);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2972|      2|    _PyUnicode_InternStatic(interp, &string);
 2973|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2973:5): [True: 2, False: 0]
  ------------------
 2974|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2974:5): [True: 2, False: 0]
  ------------------
 2975|      2|    string = &_Py_ID(sleep);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2976|      2|    _PyUnicode_InternStatic(interp, &string);
 2977|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2977:5): [True: 2, False: 0]
  ------------------
 2978|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2978:5): [True: 2, False: 0]
  ------------------
 2979|      2|    string = &_Py_ID(sock);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2980|      2|    _PyUnicode_InternStatic(interp, &string);
 2981|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2981:5): [True: 2, False: 0]
  ------------------
 2982|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2982:5): [True: 2, False: 0]
  ------------------
 2983|      2|    string = &_Py_ID(sort);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2984|      2|    _PyUnicode_InternStatic(interp, &string);
 2985|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2985:5): [True: 2, False: 0]
  ------------------
 2986|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2986:5): [True: 2, False: 0]
  ------------------
 2987|      2|    string = &_Py_ID(source);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2988|      2|    _PyUnicode_InternStatic(interp, &string);
 2989|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2989:5): [True: 2, False: 0]
  ------------------
 2990|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2990:5): [True: 2, False: 0]
  ------------------
 2991|      2|    string = &_Py_ID(source_traceback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2992|      2|    _PyUnicode_InternStatic(interp, &string);
 2993|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2993:5): [True: 2, False: 0]
  ------------------
 2994|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2994:5): [True: 2, False: 0]
  ------------------
 2995|      2|    string = &_Py_ID(spam);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2996|      2|    _PyUnicode_InternStatic(interp, &string);
 2997|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (2997:5): [True: 2, False: 0]
  ------------------
 2998|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (2998:5): [True: 2, False: 0]
  ------------------
 2999|      2|    string = &_Py_ID(src);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3000|      2|    _PyUnicode_InternStatic(interp, &string);
 3001|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3001:5): [True: 2, False: 0]
  ------------------
 3002|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3002:5): [True: 2, False: 0]
  ------------------
 3003|      2|    string = &_Py_ID(src_dir_fd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3004|      2|    _PyUnicode_InternStatic(interp, &string);
 3005|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3005:5): [True: 2, False: 0]
  ------------------
 3006|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3006:5): [True: 2, False: 0]
  ------------------
 3007|      2|    string = &_Py_ID(stack_frames);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3008|      2|    _PyUnicode_InternStatic(interp, &string);
 3009|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3009:5): [True: 2, False: 0]
  ------------------
 3010|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3010:5): [True: 2, False: 0]
  ------------------
 3011|      2|    string = &_Py_ID(stacklevel);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3012|      2|    _PyUnicode_InternStatic(interp, &string);
 3013|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3013:5): [True: 2, False: 0]
  ------------------
 3014|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3014:5): [True: 2, False: 0]
  ------------------
 3015|      2|    string = &_Py_ID(start);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3016|      2|    _PyUnicode_InternStatic(interp, &string);
 3017|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3017:5): [True: 2, False: 0]
  ------------------
 3018|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3018:5): [True: 2, False: 0]
  ------------------
 3019|      2|    string = &_Py_ID(start_time_us);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3020|      2|    _PyUnicode_InternStatic(interp, &string);
 3021|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3021:5): [True: 2, False: 0]
  ------------------
 3022|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3022:5): [True: 2, False: 0]
  ------------------
 3023|      2|    string = &_Py_ID(statement);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3024|      2|    _PyUnicode_InternStatic(interp, &string);
 3025|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3025:5): [True: 2, False: 0]
  ------------------
 3026|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3026:5): [True: 2, False: 0]
  ------------------
 3027|      2|    string = &_Py_ID(stats);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3028|      2|    _PyUnicode_InternStatic(interp, &string);
 3029|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3029:5): [True: 2, False: 0]
  ------------------
 3030|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3030:5): [True: 2, False: 0]
  ------------------
 3031|      2|    string = &_Py_ID(status);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3032|      2|    _PyUnicode_InternStatic(interp, &string);
 3033|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3033:5): [True: 2, False: 0]
  ------------------
 3034|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3034:5): [True: 2, False: 0]
  ------------------
 3035|      2|    string = &_Py_ID(stderr);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3036|      2|    _PyUnicode_InternStatic(interp, &string);
 3037|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3037:5): [True: 2, False: 0]
  ------------------
 3038|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3038:5): [True: 2, False: 0]
  ------------------
 3039|      2|    string = &_Py_ID(stdin);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3040|      2|    _PyUnicode_InternStatic(interp, &string);
 3041|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3041:5): [True: 2, False: 0]
  ------------------
 3042|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3042:5): [True: 2, False: 0]
  ------------------
 3043|      2|    string = &_Py_ID(stdout);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3044|      2|    _PyUnicode_InternStatic(interp, &string);
 3045|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3045:5): [True: 2, False: 0]
  ------------------
 3046|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3046:5): [True: 2, False: 0]
  ------------------
 3047|      2|    string = &_Py_ID(step);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3048|      2|    _PyUnicode_InternStatic(interp, &string);
 3049|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3049:5): [True: 2, False: 0]
  ------------------
 3050|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3050:5): [True: 2, False: 0]
  ------------------
 3051|      2|    string = &_Py_ID(steps);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3052|      2|    _PyUnicode_InternStatic(interp, &string);
 3053|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3053:5): [True: 2, False: 0]
  ------------------
 3054|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3054:5): [True: 2, False: 0]
  ------------------
 3055|      2|    string = &_Py_ID(store_name);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3056|      2|    _PyUnicode_InternStatic(interp, &string);
 3057|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3057:5): [True: 2, False: 0]
  ------------------
 3058|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3058:5): [True: 2, False: 0]
  ------------------
 3059|      2|    string = &_Py_ID(strategy);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3060|      2|    _PyUnicode_InternStatic(interp, &string);
 3061|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3061:5): [True: 2, False: 0]
  ------------------
 3062|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3062:5): [True: 2, False: 0]
  ------------------
 3063|      2|    string = &_Py_ID(strftime);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3064|      2|    _PyUnicode_InternStatic(interp, &string);
 3065|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3065:5): [True: 2, False: 0]
  ------------------
 3066|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3066:5): [True: 2, False: 0]
  ------------------
 3067|      2|    string = &_Py_ID(strict);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3068|      2|    _PyUnicode_InternStatic(interp, &string);
 3069|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3069:5): [True: 2, False: 0]
  ------------------
 3070|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3070:5): [True: 2, False: 0]
  ------------------
 3071|      2|    string = &_Py_ID(strict_mode);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3072|      2|    _PyUnicode_InternStatic(interp, &string);
 3073|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3073:5): [True: 2, False: 0]
  ------------------
 3074|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3074:5): [True: 2, False: 0]
  ------------------
 3075|      2|    string = &_Py_ID(string);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3076|      2|    _PyUnicode_InternStatic(interp, &string);
 3077|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3077:5): [True: 2, False: 0]
  ------------------
 3078|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3078:5): [True: 2, False: 0]
  ------------------
 3079|      2|    string = &_Py_ID(sub_key);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3080|      2|    _PyUnicode_InternStatic(interp, &string);
 3081|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3081:5): [True: 2, False: 0]
  ------------------
 3082|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3082:5): [True: 2, False: 0]
  ------------------
 3083|      2|    string = &_Py_ID(subcalls);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3084|      2|    _PyUnicode_InternStatic(interp, &string);
 3085|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3085:5): [True: 2, False: 0]
  ------------------
 3086|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3086:5): [True: 2, False: 0]
  ------------------
 3087|      2|    string = &_Py_ID(symmetric_difference_update);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3088|      2|    _PyUnicode_InternStatic(interp, &string);
 3089|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3089:5): [True: 2, False: 0]
  ------------------
 3090|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3090:5): [True: 2, False: 0]
  ------------------
 3091|      2|    string = &_Py_ID(tabsize);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3092|      2|    _PyUnicode_InternStatic(interp, &string);
 3093|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3093:5): [True: 2, False: 0]
  ------------------
 3094|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3094:5): [True: 2, False: 0]
  ------------------
 3095|      2|    string = &_Py_ID(tag);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3096|      2|    _PyUnicode_InternStatic(interp, &string);
 3097|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3097:5): [True: 2, False: 0]
  ------------------
 3098|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3098:5): [True: 2, False: 0]
  ------------------
 3099|      2|    string = &_Py_ID(take_bytes);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3100|      2|    _PyUnicode_InternStatic(interp, &string);
 3101|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3101:5): [True: 2, False: 0]
  ------------------
 3102|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3102:5): [True: 2, False: 0]
  ------------------
 3103|      2|    string = &_Py_ID(target);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3104|      2|    _PyUnicode_InternStatic(interp, &string);
 3105|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3105:5): [True: 2, False: 0]
  ------------------
 3106|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3106:5): [True: 2, False: 0]
  ------------------
 3107|      2|    string = &_Py_ID(target_is_directory);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3108|      2|    _PyUnicode_InternStatic(interp, &string);
 3109|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3109:5): [True: 2, False: 0]
  ------------------
 3110|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3110:5): [True: 2, False: 0]
  ------------------
 3111|      2|    string = &_Py_ID(targetfd);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3112|      2|    _PyUnicode_InternStatic(interp, &string);
 3113|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3113:5): [True: 2, False: 0]
  ------------------
 3114|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3114:5): [True: 2, False: 0]
  ------------------
 3115|      2|    string = &_Py_ID(task);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3116|      2|    _PyUnicode_InternStatic(interp, &string);
 3117|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3117:5): [True: 2, False: 0]
  ------------------
 3118|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3118:5): [True: 2, False: 0]
  ------------------
 3119|      2|    string = &_Py_ID(tb_frame);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3120|      2|    _PyUnicode_InternStatic(interp, &string);
 3121|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3121:5): [True: 2, False: 0]
  ------------------
 3122|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3122:5): [True: 2, False: 0]
  ------------------
 3123|      2|    string = &_Py_ID(tb_lasti);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3124|      2|    _PyUnicode_InternStatic(interp, &string);
 3125|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3125:5): [True: 2, False: 0]
  ------------------
 3126|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3126:5): [True: 2, False: 0]
  ------------------
 3127|      2|    string = &_Py_ID(tb_lineno);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3128|      2|    _PyUnicode_InternStatic(interp, &string);
 3129|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3129:5): [True: 2, False: 0]
  ------------------
 3130|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3130:5): [True: 2, False: 0]
  ------------------
 3131|      2|    string = &_Py_ID(tb_next);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3132|      2|    _PyUnicode_InternStatic(interp, &string);
 3133|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3133:5): [True: 2, False: 0]
  ------------------
 3134|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3134:5): [True: 2, False: 0]
  ------------------
 3135|      2|    string = &_Py_ID(tell);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3136|      2|    _PyUnicode_InternStatic(interp, &string);
 3137|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3137:5): [True: 2, False: 0]
  ------------------
 3138|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3138:5): [True: 2, False: 0]
  ------------------
 3139|      2|    string = &_Py_ID(template);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3140|      2|    _PyUnicode_InternStatic(interp, &string);
 3141|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3141:5): [True: 2, False: 0]
  ------------------
 3142|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3142:5): [True: 2, False: 0]
  ------------------
 3143|      2|    string = &_Py_ID(term);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3144|      2|    _PyUnicode_InternStatic(interp, &string);
 3145|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3145:5): [True: 2, False: 0]
  ------------------
 3146|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3146:5): [True: 2, False: 0]
  ------------------
 3147|      2|    string = &_Py_ID(text);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3148|      2|    _PyUnicode_InternStatic(interp, &string);
 3149|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3149:5): [True: 2, False: 0]
  ------------------
 3150|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3150:5): [True: 2, False: 0]
  ------------------
 3151|      2|    string = &_Py_ID(third);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3152|      2|    _PyUnicode_InternStatic(interp, &string);
 3153|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3153:5): [True: 2, False: 0]
  ------------------
 3154|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3154:5): [True: 2, False: 0]
  ------------------
 3155|      2|    string = &_Py_ID(threading);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3156|      2|    _PyUnicode_InternStatic(interp, &string);
 3157|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3157:5): [True: 2, False: 0]
  ------------------
 3158|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3158:5): [True: 2, False: 0]
  ------------------
 3159|      2|    string = &_Py_ID(throw);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3160|      2|    _PyUnicode_InternStatic(interp, &string);
 3161|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3161:5): [True: 2, False: 0]
  ------------------
 3162|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3162:5): [True: 2, False: 0]
  ------------------
 3163|      2|    string = &_Py_ID(time);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3164|      2|    _PyUnicode_InternStatic(interp, &string);
 3165|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3165:5): [True: 2, False: 0]
  ------------------
 3166|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3166:5): [True: 2, False: 0]
  ------------------
 3167|      2|    string = &_Py_ID(timeout);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3168|      2|    _PyUnicode_InternStatic(interp, &string);
 3169|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3169:5): [True: 2, False: 0]
  ------------------
 3170|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3170:5): [True: 2, False: 0]
  ------------------
 3171|      2|    string = &_Py_ID(timer);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3172|      2|    _PyUnicode_InternStatic(interp, &string);
 3173|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3173:5): [True: 2, False: 0]
  ------------------
 3174|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3174:5): [True: 2, False: 0]
  ------------------
 3175|      2|    string = &_Py_ID(times);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3176|      2|    _PyUnicode_InternStatic(interp, &string);
 3177|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3177:5): [True: 2, False: 0]
  ------------------
 3178|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3178:5): [True: 2, False: 0]
  ------------------
 3179|      2|    string = &_Py_ID(timespec);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3180|      2|    _PyUnicode_InternStatic(interp, &string);
 3181|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3181:5): [True: 2, False: 0]
  ------------------
 3182|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3182:5): [True: 2, False: 0]
  ------------------
 3183|      2|    string = &_Py_ID(timestamp);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3184|      2|    _PyUnicode_InternStatic(interp, &string);
 3185|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3185:5): [True: 2, False: 0]
  ------------------
 3186|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3186:5): [True: 2, False: 0]
  ------------------
 3187|      2|    string = &_Py_ID(timestamp_us);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3188|      2|    _PyUnicode_InternStatic(interp, &string);
 3189|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3189:5): [True: 2, False: 0]
  ------------------
 3190|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3190:5): [True: 2, False: 0]
  ------------------
 3191|      2|    string = &_Py_ID(timetuple);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3192|      2|    _PyUnicode_InternStatic(interp, &string);
 3193|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3193:5): [True: 2, False: 0]
  ------------------
 3194|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3194:5): [True: 2, False: 0]
  ------------------
 3195|      2|    string = &_Py_ID(timeunit);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3196|      2|    _PyUnicode_InternStatic(interp, &string);
 3197|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3197:5): [True: 2, False: 0]
  ------------------
 3198|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3198:5): [True: 2, False: 0]
  ------------------
 3199|      2|    string = &_Py_ID(top);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3200|      2|    _PyUnicode_InternStatic(interp, &string);
 3201|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3201:5): [True: 2, False: 0]
  ------------------
 3202|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3202:5): [True: 2, False: 0]
  ------------------
 3203|      2|    string = &_Py_ID(traceback);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3204|      2|    _PyUnicode_InternStatic(interp, &string);
 3205|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3205:5): [True: 2, False: 0]
  ------------------
 3206|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3206:5): [True: 2, False: 0]
  ------------------
 3207|      2|    string = &_Py_ID(trailers);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3208|      2|    _PyUnicode_InternStatic(interp, &string);
 3209|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3209:5): [True: 2, False: 0]
  ------------------
 3210|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3210:5): [True: 2, False: 0]
  ------------------
 3211|      2|    string = &_Py_ID(translate);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3212|      2|    _PyUnicode_InternStatic(interp, &string);
 3213|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3213:5): [True: 2, False: 0]
  ------------------
 3214|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3214:5): [True: 2, False: 0]
  ------------------
 3215|      2|    string = &_Py_ID(traps);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3216|      2|    _PyUnicode_InternStatic(interp, &string);
 3217|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3217:5): [True: 2, False: 0]
  ------------------
 3218|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3218:5): [True: 2, False: 0]
  ------------------
 3219|      2|    string = &_Py_ID(true);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3220|      2|    _PyUnicode_InternStatic(interp, &string);
 3221|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3221:5): [True: 2, False: 0]
  ------------------
 3222|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3222:5): [True: 2, False: 0]
  ------------------
 3223|      2|    string = &_Py_ID(truncate);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3224|      2|    _PyUnicode_InternStatic(interp, &string);
 3225|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3225:5): [True: 2, False: 0]
  ------------------
 3226|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3226:5): [True: 2, False: 0]
  ------------------
 3227|      2|    string = &_Py_ID(twice);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3228|      2|    _PyUnicode_InternStatic(interp, &string);
 3229|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3229:5): [True: 2, False: 0]
  ------------------
 3230|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3230:5): [True: 2, False: 0]
  ------------------
 3231|      2|    string = &_Py_ID(txt);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3232|      2|    _PyUnicode_InternStatic(interp, &string);
 3233|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3233:5): [True: 2, False: 0]
  ------------------
 3234|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3234:5): [True: 2, False: 0]
  ------------------
 3235|      2|    string = &_Py_ID(type);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3236|      2|    _PyUnicode_InternStatic(interp, &string);
 3237|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3237:5): [True: 2, False: 0]
  ------------------
 3238|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3238:5): [True: 2, False: 0]
  ------------------
 3239|      2|    string = &_Py_ID(type_params);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3240|      2|    _PyUnicode_InternStatic(interp, &string);
 3241|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3241:5): [True: 2, False: 0]
  ------------------
 3242|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3242:5): [True: 2, False: 0]
  ------------------
 3243|      2|    string = &_Py_ID(tz);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3244|      2|    _PyUnicode_InternStatic(interp, &string);
 3245|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3245:5): [True: 2, False: 0]
  ------------------
 3246|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3246:5): [True: 2, False: 0]
  ------------------
 3247|      2|    string = &_Py_ID(tzinfo);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3248|      2|    _PyUnicode_InternStatic(interp, &string);
 3249|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3249:5): [True: 2, False: 0]
  ------------------
 3250|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3250:5): [True: 2, False: 0]
  ------------------
 3251|      2|    string = &_Py_ID(tzname);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3252|      2|    _PyUnicode_InternStatic(interp, &string);
 3253|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3253:5): [True: 2, False: 0]
  ------------------
 3254|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3254:5): [True: 2, False: 0]
  ------------------
 3255|      2|    string = &_Py_ID(uid);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3256|      2|    _PyUnicode_InternStatic(interp, &string);
 3257|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3257:5): [True: 2, False: 0]
  ------------------
 3258|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3258:5): [True: 2, False: 0]
  ------------------
 3259|      2|    string = &_Py_ID(unboundop);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3260|      2|    _PyUnicode_InternStatic(interp, &string);
 3261|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3261:5): [True: 2, False: 0]
  ------------------
 3262|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3262:5): [True: 2, False: 0]
  ------------------
 3263|      2|    string = &_Py_ID(unlink);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3264|      2|    _PyUnicode_InternStatic(interp, &string);
 3265|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3265:5): [True: 2, False: 0]
  ------------------
 3266|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3266:5): [True: 2, False: 0]
  ------------------
 3267|      2|    string = &_Py_ID(unraisablehook);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3268|      2|    _PyUnicode_InternStatic(interp, &string);
 3269|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3269:5): [True: 2, False: 0]
  ------------------
 3270|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3270:5): [True: 2, False: 0]
  ------------------
 3271|      2|    string = &_Py_ID(updates);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3272|      2|    _PyUnicode_InternStatic(interp, &string);
 3273|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3273:5): [True: 2, False: 0]
  ------------------
 3274|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3274:5): [True: 2, False: 0]
  ------------------
 3275|      2|    string = &_Py_ID(uri);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3276|      2|    _PyUnicode_InternStatic(interp, &string);
 3277|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3277:5): [True: 2, False: 0]
  ------------------
 3278|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3278:5): [True: 2, False: 0]
  ------------------
 3279|      2|    string = &_Py_ID(usedforsecurity);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3280|      2|    _PyUnicode_InternStatic(interp, &string);
 3281|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3281:5): [True: 2, False: 0]
  ------------------
 3282|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3282:5): [True: 2, False: 0]
  ------------------
 3283|      2|    string = &_Py_ID(value);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3284|      2|    _PyUnicode_InternStatic(interp, &string);
 3285|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3285:5): [True: 2, False: 0]
  ------------------
 3286|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3286:5): [True: 2, False: 0]
  ------------------
 3287|      2|    string = &_Py_ID(values);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3288|      2|    _PyUnicode_InternStatic(interp, &string);
 3289|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3289:5): [True: 2, False: 0]
  ------------------
 3290|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3290:5): [True: 2, False: 0]
  ------------------
 3291|      2|    string = &_Py_ID(version);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3292|      2|    _PyUnicode_InternStatic(interp, &string);
 3293|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3293:5): [True: 2, False: 0]
  ------------------
 3294|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3294:5): [True: 2, False: 0]
  ------------------
 3295|      2|    string = &_Py_ID(volume);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3296|      2|    _PyUnicode_InternStatic(interp, &string);
 3297|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3297:5): [True: 2, False: 0]
  ------------------
 3298|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3298:5): [True: 2, False: 0]
  ------------------
 3299|      2|    string = &_Py_ID(wait_all);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3300|      2|    _PyUnicode_InternStatic(interp, &string);
 3301|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3301:5): [True: 2, False: 0]
  ------------------
 3302|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3302:5): [True: 2, False: 0]
  ------------------
 3303|      2|    string = &_Py_ID(warn_on_full_buffer);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3304|      2|    _PyUnicode_InternStatic(interp, &string);
 3305|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3305:5): [True: 2, False: 0]
  ------------------
 3306|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3306:5): [True: 2, False: 0]
  ------------------
 3307|      2|    string = &_Py_ID(warnings);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3308|      2|    _PyUnicode_InternStatic(interp, &string);
 3309|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3309:5): [True: 2, False: 0]
  ------------------
 3310|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3310:5): [True: 2, False: 0]
  ------------------
 3311|      2|    string = &_Py_ID(warnoptions);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3312|      2|    _PyUnicode_InternStatic(interp, &string);
 3313|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3313:5): [True: 2, False: 0]
  ------------------
 3314|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3314:5): [True: 2, False: 0]
  ------------------
 3315|      2|    string = &_Py_ID(wbits);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3316|      2|    _PyUnicode_InternStatic(interp, &string);
 3317|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3317:5): [True: 2, False: 0]
  ------------------
 3318|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3318:5): [True: 2, False: 0]
  ------------------
 3319|      2|    string = &_Py_ID(week);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3320|      2|    _PyUnicode_InternStatic(interp, &string);
 3321|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3321:5): [True: 2, False: 0]
  ------------------
 3322|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3322:5): [True: 2, False: 0]
  ------------------
 3323|      2|    string = &_Py_ID(weekday);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3324|      2|    _PyUnicode_InternStatic(interp, &string);
 3325|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3325:5): [True: 2, False: 0]
  ------------------
 3326|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3326:5): [True: 2, False: 0]
  ------------------
 3327|      2|    string = &_Py_ID(weeks);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3328|      2|    _PyUnicode_InternStatic(interp, &string);
 3329|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3329:5): [True: 2, False: 0]
  ------------------
 3330|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3330:5): [True: 2, False: 0]
  ------------------
 3331|      2|    string = &_Py_ID(which);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3332|      2|    _PyUnicode_InternStatic(interp, &string);
 3333|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3333:5): [True: 2, False: 0]
  ------------------
 3334|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3334:5): [True: 2, False: 0]
  ------------------
 3335|      2|    string = &_Py_ID(who);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3336|      2|    _PyUnicode_InternStatic(interp, &string);
 3337|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3337:5): [True: 2, False: 0]
  ------------------
 3338|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3338:5): [True: 2, False: 0]
  ------------------
 3339|      2|    string = &_Py_ID(withdata);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3340|      2|    _PyUnicode_InternStatic(interp, &string);
 3341|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3341:5): [True: 2, False: 0]
  ------------------
 3342|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3342:5): [True: 2, False: 0]
  ------------------
 3343|      2|    string = &_Py_ID(wrapcol);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3344|      2|    _PyUnicode_InternStatic(interp, &string);
 3345|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3345:5): [True: 2, False: 0]
  ------------------
 3346|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3346:5): [True: 2, False: 0]
  ------------------
 3347|      2|    string = &_Py_ID(writable);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3348|      2|    _PyUnicode_InternStatic(interp, &string);
 3349|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3349:5): [True: 2, False: 0]
  ------------------
 3350|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3350:5): [True: 2, False: 0]
  ------------------
 3351|      2|    string = &_Py_ID(write);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3352|      2|    _PyUnicode_InternStatic(interp, &string);
 3353|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3353:5): [True: 2, False: 0]
  ------------------
 3354|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3354:5): [True: 2, False: 0]
  ------------------
 3355|      2|    string = &_Py_ID(write_through);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3356|      2|    _PyUnicode_InternStatic(interp, &string);
 3357|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3357:5): [True: 2, False: 0]
  ------------------
 3358|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3358:5): [True: 2, False: 0]
  ------------------
 3359|      2|    string = &_Py_ID(year);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3360|      2|    _PyUnicode_InternStatic(interp, &string);
 3361|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3361:5): [True: 2, False: 0]
  ------------------
 3362|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3362:5): [True: 2, False: 0]
  ------------------
 3363|      2|    string = &_Py_ID(zdict);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3364|      2|    _PyUnicode_InternStatic(interp, &string);
 3365|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3365:5): [True: 2, False: 0]
  ------------------
 3366|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3366:5): [True: 2, False: 0]
  ------------------
 3367|      2|    string = &_Py_ID(zstd_dict);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3368|      2|    _PyUnicode_InternStatic(interp, &string);
 3369|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3369:5): [True: 2, False: 0]
  ------------------
 3370|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3370:5): [True: 2, False: 0]
  ------------------
 3371|      2|    string = &_Py_STR(empty);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3372|      2|    _PyUnicode_InternStatic(interp, &string);
 3373|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3373:5): [True: 2, False: 0]
  ------------------
 3374|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3374:5): [True: 2, False: 0]
  ------------------
 3375|      2|    string = &_Py_STR(dbl_percent);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3376|      2|    _PyUnicode_InternStatic(interp, &string);
 3377|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3377:5): [True: 2, False: 0]
  ------------------
 3378|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3378:5): [True: 2, False: 0]
  ------------------
 3379|      2|    string = &_Py_STR(dot_locals);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3380|      2|    _PyUnicode_InternStatic(interp, &string);
 3381|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3381:5): [True: 2, False: 0]
  ------------------
 3382|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3382:5): [True: 2, False: 0]
  ------------------
 3383|      2|    string = &_Py_STR(defaults);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3384|      2|    _PyUnicode_InternStatic(interp, &string);
 3385|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3385:5): [True: 2, False: 0]
  ------------------
 3386|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3386:5): [True: 2, False: 0]
  ------------------
 3387|      2|    string = &_Py_STR(format);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3388|      2|    _PyUnicode_InternStatic(interp, &string);
 3389|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3389:5): [True: 2, False: 0]
  ------------------
 3390|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3390:5): [True: 2, False: 0]
  ------------------
 3391|      2|    string = &_Py_STR(generic_base);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3392|      2|    _PyUnicode_InternStatic(interp, &string);
 3393|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3393:5): [True: 2, False: 0]
  ------------------
 3394|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3394:5): [True: 2, False: 0]
  ------------------
 3395|      2|    string = &_Py_STR(kwdefaults);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3396|      2|    _PyUnicode_InternStatic(interp, &string);
 3397|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3397:5): [True: 2, False: 0]
  ------------------
 3398|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3398:5): [True: 2, False: 0]
  ------------------
 3399|      2|    string = &_Py_STR(type_params);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3400|      2|    _PyUnicode_InternStatic(interp, &string);
 3401|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3401:5): [True: 2, False: 0]
  ------------------
 3402|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3402:5): [True: 2, False: 0]
  ------------------
 3403|      2|    string = &_Py_STR(str_replace_inf);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3404|      2|    _PyUnicode_InternStatic(interp, &string);
 3405|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3405:5): [True: 2, False: 0]
  ------------------
 3406|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3406:5): [True: 2, False: 0]
  ------------------
 3407|      2|    string = &_Py_STR(gc);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3408|      2|    _PyUnicode_InternStatic(interp, &string);
 3409|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3409:5): [True: 2, False: 0]
  ------------------
 3410|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3410:5): [True: 2, False: 0]
  ------------------
 3411|      2|    string = &_Py_STR(anon_null);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3412|      2|    _PyUnicode_InternStatic(interp, &string);
 3413|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3413:5): [True: 2, False: 0]
  ------------------
 3414|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3414:5): [True: 2, False: 0]
  ------------------
 3415|      2|    string = &_Py_STR(anon_dictcomp);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3416|      2|    _PyUnicode_InternStatic(interp, &string);
 3417|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3417:5): [True: 2, False: 0]
  ------------------
 3418|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3418:5): [True: 2, False: 0]
  ------------------
 3419|      2|    string = &_Py_STR(anon_genexpr);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3420|      2|    _PyUnicode_InternStatic(interp, &string);
 3421|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3421:5): [True: 2, False: 0]
  ------------------
 3422|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3422:5): [True: 2, False: 0]
  ------------------
 3423|      2|    string = &_Py_STR(anon_lambda);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3424|      2|    _PyUnicode_InternStatic(interp, &string);
 3425|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3425:5): [True: 2, False: 0]
  ------------------
 3426|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3426:5): [True: 2, False: 0]
  ------------------
 3427|      2|    string = &_Py_STR(anon_listcomp);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3428|      2|    _PyUnicode_InternStatic(interp, &string);
 3429|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3429:5): [True: 2, False: 0]
  ------------------
 3430|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3430:5): [True: 2, False: 0]
  ------------------
 3431|      2|    string = &_Py_STR(anon_module);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3432|      2|    _PyUnicode_InternStatic(interp, &string);
 3433|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3433:5): [True: 2, False: 0]
  ------------------
 3434|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3434:5): [True: 2, False: 0]
  ------------------
 3435|      2|    string = &_Py_STR(native);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3436|      2|    _PyUnicode_InternStatic(interp, &string);
 3437|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3437:5): [True: 2, False: 0]
  ------------------
 3438|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3438:5): [True: 2, False: 0]
  ------------------
 3439|      2|    string = &_Py_STR(anon_setcomp);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3440|      2|    _PyUnicode_InternStatic(interp, &string);
 3441|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3441:5): [True: 2, False: 0]
  ------------------
 3442|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3442:5): [True: 2, False: 0]
  ------------------
 3443|      2|    string = &_Py_STR(anon_string);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3444|      2|    _PyUnicode_InternStatic(interp, &string);
 3445|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3445:5): [True: 2, False: 0]
  ------------------
 3446|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3446:5): [True: 2, False: 0]
  ------------------
 3447|      2|    string = &_Py_STR(anon_unknown);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3448|      2|    _PyUnicode_InternStatic(interp, &string);
 3449|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3449:5): [True: 2, False: 0]
  ------------------
 3450|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3450:5): [True: 2, False: 0]
  ------------------
 3451|      2|    string = &_Py_STR(json_decoder);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3452|      2|    _PyUnicode_InternStatic(interp, &string);
 3453|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3453:5): [True: 2, False: 0]
  ------------------
 3454|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3454:5): [True: 2, False: 0]
  ------------------
 3455|      2|    string = &_Py_STR(list_err);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3456|      2|    _PyUnicode_InternStatic(interp, &string);
 3457|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3457:5): [True: 2, False: 0]
  ------------------
 3458|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3458:5): [True: 2, False: 0]
  ------------------
 3459|      2|    string = &_Py_STR(utf_8);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3460|      2|    _PyUnicode_InternStatic(interp, &string);
 3461|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3461:5): [True: 2, False: 0]
  ------------------
 3462|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3462:5): [True: 2, False: 0]
  ------------------
 3463|      2|    string = &_Py_STR(dbl_open_br);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3464|      2|    _PyUnicode_InternStatic(interp, &string);
 3465|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3465:5): [True: 2, False: 0]
  ------------------
 3466|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3466:5): [True: 2, False: 0]
  ------------------
 3467|      2|    string = &_Py_STR(dbl_close_br);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3468|      2|    _PyUnicode_InternStatic(interp, &string);
 3469|      2|    assert(_PyUnicode_CheckConsistency(string, 1));
  ------------------
  |  Branch (3469:5): [True: 2, False: 0]
  ------------------
 3470|      2|    assert(PyUnicode_GET_LENGTH(string) != 1);
  ------------------
  |  Branch (3470:5): [True: 2, False: 0]
  ------------------
 3471|      2|}

weakrefobject.c:_PyWeakref_GET_REF:
   73|    244|{
   74|    244|    assert(PyWeakref_Check(ref_obj));
  ------------------
  |  Branch (74:5): [True: 0, False: 0]
  |  Branch (74:5): [True: 0, False: 0]
  |  Branch (74:5): [True: 244, False: 0]
  ------------------
   75|    244|    PyWeakReference *ref = _Py_CAST(PyWeakReference*, ref_obj);
  ------------------
  |  |   37|    244|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
   76|       |
   77|    244|    PyObject *obj = FT_ATOMIC_LOAD_PTR(ref->wr_object);
  ------------------
  |  |  145|    244|#define FT_ATOMIC_LOAD_PTR(value) value
  ------------------
   78|    244|    if (obj == Py_None) {
  ------------------
  |  |  616|    244|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (78:9): [True: 0, False: 244]
  ------------------
   79|       |        // clear_weakref() was called
   80|      0|        return NULL;
   81|      0|    }
   82|       |
   83|    244|    LOCK_WEAKREFS(obj);
   84|       |#ifdef Py_GIL_DISABLED
   85|       |    if (ref->wr_object == Py_None) {
   86|       |        // clear_weakref() was called
   87|       |        UNLOCK_WEAKREFS(obj);
   88|       |        return NULL;
   89|       |    }
   90|       |#endif
   91|    244|    if (_Py_TryIncref(obj)) {
  ------------------
  |  Branch (91:9): [True: 244, False: 0]
  ------------------
   92|    244|        UNLOCK_WEAKREFS(obj);
   93|    244|        return obj;
   94|    244|    }
   95|      0|    UNLOCK_WEAKREFS(obj);
   96|       |    return NULL;
   97|    244|}
import.c:_PyWeakref_GET_REF:
   73|      2|{
   74|      2|    assert(PyWeakref_Check(ref_obj));
  ------------------
  |  Branch (74:5): [True: 0, False: 0]
  |  Branch (74:5): [True: 0, False: 0]
  |  Branch (74:5): [True: 2, False: 0]
  ------------------
   75|      2|    PyWeakReference *ref = _Py_CAST(PyWeakReference*, ref_obj);
  ------------------
  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
   76|       |
   77|      2|    PyObject *obj = FT_ATOMIC_LOAD_PTR(ref->wr_object);
  ------------------
  |  |  145|      2|#define FT_ATOMIC_LOAD_PTR(value) value
  ------------------
   78|      2|    if (obj == Py_None) {
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (78:9): [True: 0, False: 2]
  ------------------
   79|       |        // clear_weakref() was called
   80|      0|        return NULL;
   81|      0|    }
   82|       |
   83|      2|    LOCK_WEAKREFS(obj);
   84|       |#ifdef Py_GIL_DISABLED
   85|       |    if (ref->wr_object == Py_None) {
   86|       |        // clear_weakref() was called
   87|       |        UNLOCK_WEAKREFS(obj);
   88|       |        return NULL;
   89|       |    }
   90|       |#endif
   91|      2|    if (_Py_TryIncref(obj)) {
  ------------------
  |  Branch (91:9): [True: 2, False: 0]
  ------------------
   92|      2|        UNLOCK_WEAKREFS(obj);
   93|      2|        return obj;
   94|      2|    }
   95|      0|    UNLOCK_WEAKREFS(obj);
   96|       |    return NULL;
   97|      2|}
_weakref.c:_PyWeakref_IS_DEAD:
  100|     60|{
  101|     60|    assert(PyWeakref_Check(ref_obj));
  ------------------
  |  Branch (101:5): [True: 0, False: 0]
  |  Branch (101:5): [True: 0, False: 0]
  |  Branch (101:5): [True: 60, False: 0]
  ------------------
  102|     60|    int ret = 0;
  103|     60|    PyWeakReference *ref = _Py_CAST(PyWeakReference*, ref_obj);
  ------------------
  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  104|     60|    PyObject *obj = FT_ATOMIC_LOAD_PTR(ref->wr_object);
  ------------------
  |  |  145|     60|#define FT_ATOMIC_LOAD_PTR(value) value
  ------------------
  105|     60|    if (obj == Py_None) {
  ------------------
  |  |  616|     60|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (105:9): [True: 60, False: 0]
  ------------------
  106|       |        // clear_weakref() was called
  107|     60|        ret = 1;
  108|     60|    }
  109|      0|    else {
  110|      0|        LOCK_WEAKREFS(obj);
  111|       |        // See _PyWeakref_GET_REF() for the rationale of this test
  112|       |#ifdef Py_GIL_DISABLED
  113|       |        ret = (ref->wr_object == Py_None) || _is_dead(obj);
  114|       |#else
  115|      0|        ret = _is_dead(obj);
  116|      0|#endif
  117|      0|        UNLOCK_WEAKREFS(obj);
  118|      0|    }
  119|     60|    return ret;
  120|     60|}

bytesobject.c:Py_SET_TYPE:
  206|  8.48k|{
  207|  8.48k|    ob->ob_type = type;
  208|  8.48k|}
bytesobject.c:PyType_HasFeature:
  749|  9.77k|{
  750|  9.77k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  9.77k|    flags = type->tp_flags;
  756|  9.77k|#endif
  757|  9.77k|    return ((flags & feature) != 0);
  758|  9.77k|}
bytesobject.c:_Py_TYPE_impl:
  233|  30.7k|{
  234|  30.7k|    return ob->ob_type;
  235|  30.7k|}
bytesobject.c:_Py_SIZE_impl:
  240|  2.01k|{
  241|  2.01k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 2.01k, False: 0]
  ------------------
  242|  2.01k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 2.01k, False: 0]
  ------------------
  243|  2.01k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  2.01k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  2.01k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  2.01k|}
bytesobject.c:_Py_SET_SIZE_impl:
  254|  8.48k|{
  255|  8.48k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 8.48k, False: 0]
  ------------------
  256|  8.48k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 8.48k, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|  8.48k|    ob->ob_size = size;
  261|  8.48k|#endif
  262|  8.48k|}
call.c:_Py_TYPE_impl:
  233|  14.7k|{
  234|  14.7k|    return ob->ob_type;
  235|  14.7k|}
call.c:PyType_HasFeature:
  749|  11.1k|{
  750|  11.1k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  11.1k|    flags = type->tp_flags;
  756|  11.1k|#endif
  757|  11.1k|    return ((flags & feature) != 0);
  758|  11.1k|}
call.c:_Py_SIZE_impl:
  240|    868|{
  241|    868|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 868, False: 0]
  ------------------
  242|    868|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 868, False: 0]
  ------------------
  243|    868|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|    868|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    868|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|    868|}
call.c:_Py_IS_TYPE_impl:
  248|    638|{
  249|    638|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    638|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    638|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    638|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    638|}
exceptions.c:PyType_Check:
  762|  3.80k|static inline int PyType_Check(PyObject *op) {
  763|  3.80k|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|  3.80k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|  3.80k|}
exceptions.c:PyType_HasFeature:
  749|  16.0k|{
  750|  16.0k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  16.0k|    flags = type->tp_flags;
  756|  16.0k|#endif
  757|  16.0k|    return ((flags & feature) != 0);
  758|  16.0k|}
exceptions.c:_Py_SIZE_impl:
  240|     54|{
  241|     54|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 54, False: 0]
  ------------------
  242|     54|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 54, False: 0]
  ------------------
  243|     54|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     54|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     54|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     54|}
exceptions.c:_Py_TYPE_impl:
  233|  20.5k|{
  234|  20.5k|    return ob->ob_type;
  235|  20.5k|}
exceptions.c:PyObject_TypeCheck:
  374|    196|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    196|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    392|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    196|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    196|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 132, False: 64]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|     64|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 64, False: 0]
  ------------------
  376|    196|}
exceptions.c:_Py_IS_TYPE_impl:
  248|    446|{
  249|    446|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    446|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    446|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    446|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    446|}
genericaliasobject.c:PyType_HasFeature:
  749|      4|{
  750|      4|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      4|    flags = type->tp_flags;
  756|      4|#endif
  757|      4|    return ((flags & feature) != 0);
  758|      4|}
genericaliasobject.c:_Py_TYPE_impl:
  233|      8|{
  234|      8|    return ob->ob_type;
  235|      8|}
floatobject.c:Py_SET_TYPE:
  206|     20|{
  207|     20|    ob->ob_type = type;
  208|     20|}
floatobject.c:PyType_HasFeature:
  749|  14.4k|{
  750|  14.4k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  14.4k|    flags = type->tp_flags;
  756|  14.4k|#endif
  757|  14.4k|    return ((flags & feature) != 0);
  758|  14.4k|}
floatobject.c:_Py_TYPE_impl:
  233|  26.9k|{
  234|  26.9k|    return ob->ob_type;
  235|  26.9k|}
floatobject.c:_Py_SIZE_impl:
  240|  3.60k|{
  241|  3.60k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 3.60k, False: 0]
  ------------------
  242|  3.60k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 3.60k, False: 0]
  ------------------
  243|  3.60k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  3.60k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  3.60k|}
floatobject.c:PyObject_TypeCheck:
  374|  1.79k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  1.79k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  3.58k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  1.79k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.79k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 1.78k, False: 6]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 6]
  ------------------
  376|  1.79k|}
floatobject.c:_Py_IS_TYPE_impl:
  248|  5.29k|{
  249|  5.29k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  5.29k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  5.29k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.29k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  5.29k|}
funcobject.c:PyType_HasFeature:
  749|  3.58k|{
  750|  3.58k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  3.58k|    flags = type->tp_flags;
  756|  3.58k|#endif
  757|  3.58k|    return ((flags & feature) != 0);
  758|  3.58k|}
funcobject.c:_Py_TYPE_impl:
  233|  6.20k|{
  234|  6.20k|    return ob->ob_type;
  235|  6.20k|}
funcobject.c:PyObject_TypeCheck:
  374|    510|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    510|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  1.02k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    510|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    510|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 510, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|    510|}
funcobject.c:_Py_IS_TYPE_impl:
  248|  2.61k|{
  249|  2.61k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  2.61k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.61k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  2.61k|}
listobject.c:_Py_SET_SIZE_impl:
  254|  12.9k|{
  255|  12.9k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 12.9k, False: 0]
  ------------------
  256|  12.9k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 12.9k, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|  12.9k|    ob->ob_size = size;
  261|  12.9k|#endif
  262|  12.9k|}
listobject.c:PyType_HasFeature:
  749|  98.4k|{
  750|  98.4k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  98.4k|    flags = type->tp_flags;
  756|  98.4k|#endif
  757|  98.4k|    return ((flags & feature) != 0);
  758|  98.4k|}
listobject.c:_Py_TYPE_impl:
  233|   177k|{
  234|   177k|    return ob->ob_type;
  235|   177k|}
listobject.c:_Py_SIZE_impl:
  240|  20.0k|{
  241|  20.0k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 20.0k, False: 0]
  ------------------
  242|  20.0k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 20.0k, False: 0]
  ------------------
  243|  20.0k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  20.0k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  20.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  20.0k|}
listobject.c:_Py_IS_TYPE_impl:
  248|  12.7k|{
  249|  12.7k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  12.7k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  12.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  12.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  12.7k|}
listobject.c:PyType_Check:
  762|     48|static inline int PyType_Check(PyObject *op) {
  763|     48|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|     48|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|     48|}
longobject.c:Py_SET_TYPE:
  206|  1.33k|{
  207|  1.33k|    ob->ob_type = type;
  208|  1.33k|}
longobject.c:PyType_HasFeature:
  749|  11.7k|{
  750|  11.7k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  11.7k|    flags = type->tp_flags;
  756|  11.7k|#endif
  757|  11.7k|    return ((flags & feature) != 0);
  758|  11.7k|}
longobject.c:_Py_TYPE_impl:
  233|  7.61k|{
  234|  7.61k|    return ob->ob_type;
  235|  7.61k|}
longobject.c:_Py_IS_TYPE_impl:
  248|    528|{
  249|    528|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    528|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    528|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    528|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    528|}
dictobject.c:PyType_HasFeature:
  749|   285k|{
  750|   285k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|   285k|    flags = type->tp_flags;
  756|   285k|#endif
  757|   285k|    return ((flags & feature) != 0);
  758|   285k|}
dictobject.c:_Py_TYPE_impl:
  233|   661k|{
  234|   661k|    return ob->ob_type;
  235|   661k|}
dictobject.c:PyObject_TypeCheck:
  374|  45.9k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  45.9k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  91.9k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  45.9k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  45.9k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 45.9k]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|  45.9k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  45.9k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  45.9k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 45.9k]
  ------------------
  376|  45.9k|}
dictobject.c:_Py_IS_TYPE_impl:
  248|   321k|{
  249|   321k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|   321k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|   321k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|   321k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|   321k|}
dictobject.c:_Py_SIZE_impl:
  240|    402|{
  241|    402|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 402, False: 0]
  ------------------
  242|    402|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 402, False: 0]
  ------------------
  243|    402|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|    402|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    402|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|    402|}
moduleobject.c:PyObject_TypeCheck:
  374|  3.45k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  3.45k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  6.90k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  3.45k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.45k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 3.45k, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|  3.45k|}
moduleobject.c:Py_SET_TYPE:
  206|     32|{
  207|     32|    ob->ob_type = type;
  208|     32|}
moduleobject.c:PyType_HasFeature:
  749|  4.89k|{
  750|  4.89k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  4.89k|    flags = type->tp_flags;
  756|  4.89k|#endif
  757|  4.89k|    return ((flags & feature) != 0);
  758|  4.89k|}
moduleobject.c:_Py_TYPE_impl:
  233|  11.3k|{
  234|  11.3k|    return ob->ob_type;
  235|  11.3k|}
moduleobject.c:_Py_IS_TYPE_impl:
  248|  6.39k|{
  249|  6.39k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  6.39k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  6.39k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.39k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  6.39k|}
moduleobject.c:_Py_SIZE_impl:
  240|     28|{
  241|     28|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 28, False: 0]
  ------------------
  242|     28|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 28, False: 0]
  ------------------
  243|     28|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     28|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     28|}
object.c:_Py_TYPE_impl:
  233|   170k|{
  234|   170k|    return ob->ob_type;
  235|   170k|}
object.c:PyType_HasFeature:
  749|  17.0k|{
  750|  17.0k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  17.0k|    flags = type->tp_flags;
  756|  17.0k|#endif
  757|  17.0k|    return ((flags & feature) != 0);
  758|  17.0k|}
object.c:Py_SET_TYPE:
  206|  1.65k|{
  207|  1.65k|    ob->ob_type = type;
  208|  1.65k|}
object.c:_Py_IS_TYPE_impl:
  248|  16.8k|{
  249|  16.8k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  16.8k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  16.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  16.8k|}
object.c:_Py_SET_SIZE_impl:
  254|  1.48k|{
  255|  1.48k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 1.48k, False: 0]
  ------------------
  256|  1.48k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 1.48k, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|  1.48k|    ob->ob_size = size;
  261|  1.48k|#endif
  262|  1.48k|}
rangeobject.c:_Py_IS_TYPE_impl:
  248|     14|{
  249|     14|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     14|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     14|}
rangeobject.c:_Py_TYPE_impl:
  233|     38|{
  234|     38|    return ob->ob_type;
  235|     38|}
rangeobject.c:PyType_HasFeature:
  749|     24|{
  750|     24|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     24|    flags = type->tp_flags;
  756|     24|#endif
  757|     24|    return ((flags & feature) != 0);
  758|     24|}
setobject.c:PyType_HasFeature:
  749|  1.63k|{
  750|  1.63k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  1.63k|    flags = type->tp_flags;
  756|  1.63k|#endif
  757|  1.63k|    return ((flags & feature) != 0);
  758|  1.63k|}
setobject.c:_Py_IS_TYPE_impl:
  248|  4.82k|{
  249|  4.82k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  4.82k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  4.82k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.82k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  4.82k|}
setobject.c:_Py_TYPE_impl:
  233|  6.63k|{
  234|  6.63k|    return ob->ob_type;
  235|  6.63k|}
setobject.c:PyType_Check:
  762|    250|static inline int PyType_Check(PyObject *op) {
  763|    250|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|    250|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|    250|}
structseq.c:PyType_HasFeature:
  749|  1.02k|{
  750|  1.02k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  1.02k|    flags = type->tp_flags;
  756|  1.02k|#endif
  757|  1.02k|    return ((flags & feature) != 0);
  758|  1.02k|}
structseq.c:_Py_TYPE_impl:
  233|  3.96k|{
  234|  3.96k|    return ob->ob_type;
  235|  3.96k|}
structseq.c:_Py_SET_SIZE_impl:
  254|     40|{
  255|     40|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 40, False: 0]
  ------------------
  256|     40|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 40, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|     40|    ob->ob_size = size;
  261|     40|#endif
  262|     40|}
structseq.c:_Py_SIZE_impl:
  240|  1.01k|{
  241|  1.01k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 1.01k, False: 0]
  ------------------
  242|  1.01k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 1.01k, False: 0]
  ------------------
  243|  1.01k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  1.01k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  1.01k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  1.01k|}
structseq.c:Py_SET_TYPE:
  206|     16|{
  207|     16|    ob->ob_type = type;
  208|     16|}
tupleobject.c:PyType_HasFeature:
  749|  35.7k|{
  750|  35.7k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  35.7k|    flags = type->tp_flags;
  756|  35.7k|#endif
  757|  35.7k|    return ((flags & feature) != 0);
  758|  35.7k|}
tupleobject.c:_Py_TYPE_impl:
  233|   115k|{
  234|   115k|    return ob->ob_type;
  235|   115k|}
tupleobject.c:_Py_SIZE_impl:
  240|  30.8k|{
  241|  30.8k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 30.8k, False: 0]
  ------------------
  242|  30.8k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 30.8k, False: 0]
  ------------------
  243|  30.8k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  30.8k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  30.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  30.8k|}
tupleobject.c:_Py_IS_TYPE_impl:
  248|  9.62k|{
  249|  9.62k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  9.62k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  9.62k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.62k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  9.62k|}
tupleobject.c:PyType_Check:
  762|      2|static inline int PyType_Check(PyObject *op) {
  763|      2|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|      2|}
typeobject.c:_Py_IS_TYPE_impl:
  248|  33.4k|{
  249|  33.4k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  33.4k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  33.4k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  33.4k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  33.4k|}
typeobject.c:PyType_Check:
  762|  70.4k|static inline int PyType_Check(PyObject *op) {
  763|  70.4k|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|  70.4k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|  70.4k|}
typeobject.c:PyType_HasFeature:
  749|   518k|{
  750|   518k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|   518k|    flags = type->tp_flags;
  756|   518k|#endif
  757|   518k|    return ((flags & feature) != 0);
  758|   518k|}
typeobject.c:_Py_TYPE_impl:
  233|   740k|{
  234|   740k|    return ob->ob_type;
  235|   740k|}
typeobject.c:Py_SET_TYPE:
  206|  11.3k|{
  207|  11.3k|    ob->ob_type = type;
  208|  11.3k|}
typeobject.c:_Py_SET_SIZE_impl:
  254|    254|{
  255|    254|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 254, False: 0]
  ------------------
  256|    254|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 254, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|    254|    ob->ob_size = size;
  261|    254|#endif
  262|    254|}
typeobject.c:_Py_SIZE_impl:
  240|  91.1k|{
  241|  91.1k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 91.1k, False: 0]
  ------------------
  242|  91.1k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 91.1k, False: 0]
  ------------------
  243|  91.1k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  91.1k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  91.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  91.1k|}
typeobject.c:PyObject_TypeCheck:
  374|  1.62k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  1.62k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  3.24k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  1.62k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.62k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 1.60k, False: 20]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|     20|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 20, False: 0]
  ------------------
  376|  1.62k|}
unicode_writer.c:PyType_HasFeature:
  749|  49.6k|{
  750|  49.6k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  49.6k|    flags = type->tp_flags;
  756|  49.6k|#endif
  757|  49.6k|    return ((flags & feature) != 0);
  758|  49.6k|}
unicode_writer.c:_Py_TYPE_impl:
  233|  49.6k|{
  234|  49.6k|    return ob->ob_type;
  235|  49.6k|}
unicodeobject.c:PyType_HasFeature:
  749|  1.10M|{
  750|  1.10M|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  1.10M|    flags = type->tp_flags;
  756|  1.10M|#endif
  757|  1.10M|    return ((flags & feature) != 0);
  758|  1.10M|}
unicodeobject.c:_Py_TYPE_impl:
  233|  1.16M|{
  234|  1.16M|    return ob->ob_type;
  235|  1.16M|}
unicodeobject.c:Py_SET_TYPE:
  206|  27.1k|{
  207|  27.1k|    ob->ob_type = type;
  208|  27.1k|}
unicodeobject.c:_Py_IS_TYPE_impl:
  248|  42.5k|{
  249|  42.5k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  42.5k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  42.5k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  42.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  42.5k|}
unicodeobject.c:_Py_SIZE_impl:
  240|    506|{
  241|    506|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 506, False: 0]
  ------------------
  242|    506|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 506, False: 0]
  ------------------
  243|    506|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|    506|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    506|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|    506|}
unicodeobject.c:_Py_SET_SIZE_impl:
  254|      4|{
  255|      4|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 4, False: 0]
  ------------------
  256|      4|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 4, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|      4|    ob->ob_size = size;
  261|      4|#endif
  262|      4|}
weakrefobject.c:_Py_TYPE_impl:
  233|  8.10k|{
  234|  8.10k|    return ob->ob_type;
  235|  8.10k|}
weakrefobject.c:PyType_Check:
  762|  1.71k|static inline int PyType_Check(PyObject *op) {
  763|  1.71k|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|  1.71k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|  1.71k|}
weakrefobject.c:PyObject_TypeCheck:
  374|  1.66k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  1.66k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  3.33k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  1.66k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.66k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 1.60k, False: 60]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|     60|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 60, False: 0]
  ------------------
  376|  1.66k|}
weakrefobject.c:_Py_IS_TYPE_impl:
  248|  2.60k|{
  249|  2.60k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  2.60k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  2.60k|}
weakrefobject.c:_Py_SIZE_impl:
  240|    216|{
  241|    216|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 216, False: 0]
  ------------------
  242|    216|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 216, False: 0]
  ------------------
  243|    216|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|    216|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|    216|}
weakrefobject.c:PyType_HasFeature:
  749|  2.14k|{
  750|  2.14k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  2.14k|    flags = type->tp_flags;
  756|  2.14k|#endif
  757|  2.14k|    return ((flags & feature) != 0);
  758|  2.14k|}
_warnings.c:PyType_HasFeature:
  749|     20|{
  750|     20|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     20|    flags = type->tp_flags;
  756|     20|#endif
  757|     20|    return ((flags & feature) != 0);
  758|     20|}
_warnings.c:_Py_TYPE_impl:
  233|     20|{
  234|     20|    return ob->ob_type;
  235|     20|}
bltinmodule.c:_Py_TYPE_impl:
  233|  1.72k|{
  234|  1.72k|    return ob->ob_type;
  235|  1.72k|}
bltinmodule.c:PyType_Check:
  762|    310|static inline int PyType_Check(PyObject *op) {
  763|    310|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|    310|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|    310|}
bltinmodule.c:PyType_HasFeature:
  749|    928|{
  750|    928|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    928|    flags = type->tp_flags;
  756|    928|#endif
  757|    928|    return ((flags & feature) != 0);
  758|    928|}
bltinmodule.c:_Py_SIZE_impl:
  240|    152|{
  241|    152|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 152, False: 0]
  ------------------
  242|    152|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 152, False: 0]
  ------------------
  243|    152|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|    152|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    152|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|    152|}
bltinmodule.c:_Py_IS_TYPE_impl:
  248|    392|{
  249|    392|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    392|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    392|}
ceval.c:PyType_HasFeature:
  749|  36.9k|{
  750|  36.9k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  36.9k|    flags = type->tp_flags;
  756|  36.9k|#endif
  757|  36.9k|    return ((flags & feature) != 0);
  758|  36.9k|}
ceval.c:_Py_TYPE_impl:
  233|   154k|{
  234|   154k|    return ob->ob_type;
  235|   154k|}
ceval.c:PyType_Check:
  762|    816|static inline int PyType_Check(PyObject *op) {
  763|    816|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|    816|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|    816|}
ceval.c:_Py_IS_TYPE_impl:
  248|  63.8k|{
  249|  63.8k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  63.8k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  63.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  63.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  63.8k|}
ceval.c:PyObject_TypeCheck:
  374|  3.78k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  3.78k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  7.57k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  3.78k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.78k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 3.78k, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|  3.78k|}
ceval.c:_Py_SIZE_impl:
  240|  4.55k|{
  241|  4.55k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 4.55k, False: 0]
  ------------------
  242|  4.55k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 4.55k, False: 0]
  ------------------
  243|  4.55k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  4.55k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  4.55k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  4.55k|}
ceval.c:_Py_SET_SIZE_impl:
  254|    934|{
  255|    934|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 934, False: 0]
  ------------------
  256|    934|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 934, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|    934|    ob->ob_size = size;
  261|    934|#endif
  262|    934|}
codecs.c:_Py_IS_TYPE_impl:
  248|      6|{
  249|      6|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      6|}
codecs.c:_Py_SIZE_impl:
  240|      2|{
  241|      2|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 2, False: 0]
  ------------------
  242|      2|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 2, False: 0]
  ------------------
  243|      2|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|      2|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|      2|}
codecs.c:PyType_HasFeature:
  749|      4|{
  750|      4|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      4|    flags = type->tp_flags;
  756|      4|#endif
  757|      4|    return ((flags & feature) != 0);
  758|      4|}
codecs.c:_Py_TYPE_impl:
  233|     14|{
  234|     14|    return ob->ob_type;
  235|     14|}
context.c:_Py_TYPE_impl:
  233|      2|{
  234|      2|    return ob->ob_type;
  235|      2|}
context.c:PyType_HasFeature:
  749|      2|{
  750|      2|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      2|    flags = type->tp_flags;
  756|      2|#endif
  757|      2|    return ((flags & feature) != 0);
  758|      2|}
errors.c:PyType_Check:
  762|  12.2k|static inline int PyType_Check(PyObject *op) {
  763|  12.2k|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|  12.2k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|  12.2k|}
errors.c:PyType_HasFeature:
  749|  48.1k|{
  750|  48.1k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  48.1k|    flags = type->tp_flags;
  756|  48.1k|#endif
  757|  48.1k|    return ((flags & feature) != 0);
  758|  48.1k|}
errors.c:_Py_TYPE_impl:
  233|  48.2k|{
  234|  48.2k|    return ob->ob_type;
  235|  48.2k|}
frame.c:_Py_IS_TYPE_impl:
  248|    410|{
  249|    410|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    410|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    410|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    410|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    410|}
frame.c:_Py_TYPE_impl:
  233|    410|{
  234|    410|    return ob->ob_type;
  235|    410|}
gc.c:_Py_SIZE_impl:
  240|     16|{
  241|     16|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 16, False: 0]
  ------------------
  242|     16|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 16, False: 0]
  ------------------
  243|     16|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     16|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     16|}
gc.c:PyType_HasFeature:
  749|     68|{
  750|     68|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     68|    flags = type->tp_flags;
  756|     68|#endif
  757|     68|    return ((flags & feature) != 0);
  758|     68|}
gc.c:_Py_IS_TYPE_impl:
  248|  10.2k|{
  249|  10.2k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  10.2k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  10.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  10.2k|}
gc.c:PyType_Check:
  762|     52|static inline int PyType_Check(PyObject *op) {
  763|     52|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|     52|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|     52|}
gc.c:PyObject_TypeCheck:
  374|     44|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|     44|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     88|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 44]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|     44|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 44]
  ------------------
  376|     44|}
gc.c:Py_SET_TYPE:
  206|  9.90k|{
  207|  9.90k|    ob->ob_type = type;
  208|  9.90k|}
gc.c:_Py_TYPE_impl:
  233|   128k|{
  234|   128k|    return ob->ob_type;
  235|   128k|}
gc.c:_Py_SET_SIZE_impl:
  254|  4.87k|{
  255|  4.87k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 4.87k, False: 0]
  ------------------
  256|  4.87k|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 4.87k, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|  4.87k|    ob->ob_size = size;
  261|  4.87k|#endif
  262|  4.87k|}
getargs.c:PyType_HasFeature:
  749|  2.78k|{
  750|  2.78k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  2.78k|    flags = type->tp_flags;
  756|  2.78k|#endif
  757|  2.78k|    return ((flags & feature) != 0);
  758|  2.78k|}
getargs.c:_Py_TYPE_impl:
  233|  4.72k|{
  234|  4.72k|    return ob->ob_type;
  235|  4.72k|}
getargs.c:_Py_SIZE_impl:
  240|    858|{
  241|    858|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 858, False: 0]
  ------------------
  242|    858|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 858, False: 0]
  ------------------
  243|    858|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|    858|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    858|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|    858|}
getargs.c:_Py_IS_TYPE_impl:
  248|     48|{
  249|     48|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     48|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     48|}
import.c:_Py_SIZE_impl:
  240|     14|{
  241|     14|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 14, False: 0]
  ------------------
  242|     14|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 14, False: 0]
  ------------------
  243|     14|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     14|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     14|}
import.c:PyType_HasFeature:
  749|    724|{
  750|    724|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    724|    flags = type->tp_flags;
  756|    724|#endif
  757|    724|    return ((flags & feature) != 0);
  758|    724|}
import.c:_Py_TYPE_impl:
  233|    838|{
  234|    838|    return ob->ob_type;
  235|    838|}
import.c:PyObject_TypeCheck:
  374|     44|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|     44|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     88|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 44, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|     44|}
import.c:_Py_IS_TYPE_impl:
  248|     82|{
  249|     82|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     82|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     82|}
importdl.c:PyType_HasFeature:
  749|     24|{
  750|     24|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     24|    flags = type->tp_flags;
  756|     24|#endif
  757|     24|    return ((flags & feature) != 0);
  758|     24|}
importdl.c:_Py_TYPE_impl:
  233|     72|{
  234|     72|    return ob->ob_type;
  235|     72|}
importdl.c:_Py_IS_TYPE_impl:
  248|     48|{
  249|     48|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     48|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     48|}
importdl.c:PyObject_TypeCheck:
  374|     24|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|     24|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     48|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 24, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|     24|}
initconfig.c:PyType_HasFeature:
  749|     64|{
  750|     64|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     64|    flags = type->tp_flags;
  756|     64|#endif
  757|     64|    return ((flags & feature) != 0);
  758|     64|}
initconfig.c:_Py_TYPE_impl:
  233|    100|{
  234|    100|    return ob->ob_type;
  235|    100|}
initconfig.c:_Py_SIZE_impl:
  240|     10|{
  241|     10|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 10, False: 0]
  ------------------
  242|     10|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 10, False: 0]
  ------------------
  243|     10|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     10|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     10|}
initconfig.c:_Py_IS_TYPE_impl:
  248|     16|{
  249|     16|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     16|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     16|}
intrinsics.c:PyType_HasFeature:
  749|  5.99k|{
  750|  5.99k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  5.99k|    flags = type->tp_flags;
  756|  5.99k|#endif
  757|  5.99k|    return ((flags & feature) != 0);
  758|  5.99k|}
intrinsics.c:_Py_TYPE_impl:
  233|  6.98k|{
  234|  6.98k|    return ob->ob_type;
  235|  6.98k|}
intrinsics.c:_Py_IS_TYPE_impl:
  248|    986|{
  249|    986|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    986|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    986|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    986|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    986|}
marshal.c:PyType_HasFeature:
  749|  55.9k|{
  750|  55.9k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  55.9k|    flags = type->tp_flags;
  756|  55.9k|#endif
  757|  55.9k|    return ((flags & feature) != 0);
  758|  55.9k|}
marshal.c:_Py_TYPE_impl:
  233|   127k|{
  234|   127k|    return ob->ob_type;
  235|   127k|}
marshal.c:_Py_SIZE_impl:
  240|  35.5k|{
  241|  35.5k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 35.5k, False: 0]
  ------------------
  242|  35.5k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 35.5k, False: 0]
  ------------------
  243|  35.5k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  35.5k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  35.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  35.5k|}
modsupport.c:_Py_TYPE_impl:
  233|    808|{
  234|    808|    return ob->ob_type;
  235|    808|}
modsupport.c:PyType_HasFeature:
  749|     74|{
  750|     74|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     74|    flags = type->tp_flags;
  756|     74|#endif
  757|     74|    return ((flags & feature) != 0);
  758|     74|}
modsupport.c:_Py_SIZE_impl:
  240|     74|{
  241|     74|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 74, False: 0]
  ------------------
  242|     74|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 74, False: 0]
  ------------------
  243|     74|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     74|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     74|}
modsupport.c:PyObject_TypeCheck:
  374|    586|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    586|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  1.17k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    586|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    586|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 586, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|    586|}
modsupport.c:_Py_IS_TYPE_impl:
  248|    586|{
  249|    586|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    586|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    586|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    586|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    586|}
pylifecycle.c:PyType_HasFeature:
  749|      2|{
  750|      2|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      2|    flags = type->tp_flags;
  756|      2|#endif
  757|      2|    return ((flags & feature) != 0);
  758|      2|}
pylifecycle.c:_Py_TYPE_impl:
  233|      2|{
  234|      2|    return ob->ob_type;
  235|      2|}
specialize.c:PyType_Check:
  762|    604|static inline int PyType_Check(PyObject *op) {
  763|    604|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|    604|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|    604|}
specialize.c:_Py_TYPE_impl:
  233|  9.48k|{
  234|  9.48k|    return ob->ob_type;
  235|  9.48k|}
specialize.c:_Py_IS_TYPE_impl:
  248|  3.69k|{
  249|  3.69k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  3.69k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  3.69k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.69k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  3.69k|}
specialize.c:PyObject_TypeCheck:
  374|    278|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    278|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    556|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    278|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    278|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 278, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|    278|}
specialize.c:_Py_SIZE_impl:
  240|     28|{
  241|     28|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 28, False: 0]
  ------------------
  242|     28|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 28, False: 0]
  ------------------
  243|     28|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     28|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     28|}
specialize.c:PyType_HasFeature:
  749|    756|{
  750|    756|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    756|    flags = type->tp_flags;
  756|    756|#endif
  757|    756|    return ((flags & feature) != 0);
  758|    756|}
symtable.c:PyType_HasFeature:
  749|    100|{
  750|    100|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    100|    flags = type->tp_flags;
  756|    100|#endif
  757|    100|    return ((flags & feature) != 0);
  758|    100|}
symtable.c:_Py_TYPE_impl:
  233|    100|{
  234|    100|    return ob->ob_type;
  235|    100|}
sysmodule.c:PyType_HasFeature:
  749|    640|{
  750|    640|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    640|    flags = type->tp_flags;
  756|    640|#endif
  757|    640|    return ((flags & feature) != 0);
  758|    640|}
sysmodule.c:_Py_TYPE_impl:
  233|  1.82k|{
  234|  1.82k|    return ob->ob_type;
  235|  1.82k|}
sysmodule.c:_Py_IS_TYPE_impl:
  248|      4|{
  249|      4|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      4|}
sysmodule.c:_Py_SIZE_impl:
  240|    592|{
  241|    592|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 592, False: 0]
  ------------------
  242|    592|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 592, False: 0]
  ------------------
  243|    592|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|    592|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    592|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|    592|}
traceback.c:_Py_IS_TYPE_impl:
  248|    448|{
  249|    448|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    448|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    448|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    448|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    448|}
traceback.c:PyType_HasFeature:
  749|    204|{
  750|    204|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    204|    flags = type->tp_flags;
  756|    204|#endif
  757|    204|    return ((flags & feature) != 0);
  758|    204|}
traceback.c:_Py_TYPE_impl:
  233|    652|{
  234|    652|    return ob->ob_type;
  235|    652|}
posixmodule.c:_Py_IS_TYPE_impl:
  248|     34|{
  249|     34|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     34|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     34|}
posixmodule.c:_Py_SIZE_impl:
  240|     46|{
  241|     46|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 46, False: 0]
  ------------------
  242|     46|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 46, False: 0]
  ------------------
  243|     46|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     46|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     46|}
posixmodule.c:_Py_TYPE_impl:
  233|    428|{
  234|    428|    return ob->ob_type;
  235|    428|}
posixmodule.c:PyType_HasFeature:
  749|    302|{
  750|    302|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    302|    flags = type->tp_flags;
  756|    302|#endif
  757|    302|    return ((flags & feature) != 0);
  758|    302|}
posixmodule.c:PyObject_TypeCheck:
  374|     34|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|     34|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     68|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 34, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|     34|}
_datetimemodule.c:PyObject_TypeCheck:
  374|      4|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|      4|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|      4|}
_datetimemodule.c:_Py_IS_TYPE_impl:
  248|      4|{
  249|      4|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      4|}
_datetimemodule.c:_Py_TYPE_impl:
  233|      4|{
  234|      4|    return ob->ob_type;
  235|      4|}
_datetimemodule.c:Py_SET_TYPE:
  206|      8|{
  207|      8|    ob->ob_type = type;
  208|      8|}
_codecsmodule.c:PyType_HasFeature:
  749|     14|{
  750|     14|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     14|    flags = type->tp_flags;
  756|     14|#endif
  757|     14|    return ((flags & feature) != 0);
  758|     14|}
_codecsmodule.c:_Py_TYPE_impl:
  233|     14|{
  234|     14|    return ob->ob_type;
  235|     14|}
_iomodule.c:PyType_HasFeature:
  749|      6|{
  750|      6|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      6|    flags = type->tp_flags;
  756|      6|#endif
  757|      6|    return ((flags & feature) != 0);
  758|      6|}
_iomodule.c:_Py_TYPE_impl:
  233|     18|{
  234|     18|    return ob->ob_type;
  235|     18|}
_iomodule.c:PyObject_TypeCheck:
  374|     12|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|     12|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     24|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 12, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|     12|}
_iomodule.c:_Py_IS_TYPE_impl:
  248|     12|{
  249|     12|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     12|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     12|}
fileio.c:_Py_TYPE_impl:
  233|     42|{
  234|     42|    return ob->ob_type;
  235|     42|}
fileio.c:PyType_HasFeature:
  749|     24|{
  750|     24|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     24|    flags = type->tp_flags;
  756|     24|#endif
  757|     24|    return ((flags & feature) != 0);
  758|     24|}
fileio.c:_Py_SIZE_impl:
  240|      6|{
  241|      6|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 6, False: 0]
  ------------------
  242|      6|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 6, False: 0]
  ------------------
  243|      6|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|      6|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|      6|}
fileio.c:_Py_IS_TYPE_impl:
  248|      6|{
  249|      6|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      6|}
bufferedio.c:_Py_IS_TYPE_impl:
  248|     18|{
  249|     18|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     18|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     18|}
bufferedio.c:_Py_TYPE_impl:
  233|     54|{
  234|     54|    return ob->ob_type;
  235|     54|}
bufferedio.c:PyType_HasFeature:
  749|     18|{
  750|     18|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     18|    flags = type->tp_flags;
  756|     18|#endif
  757|     18|    return ((flags & feature) != 0);
  758|     18|}
bufferedio.c:_Py_SIZE_impl:
  240|      6|{
  241|      6|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 6, False: 0]
  ------------------
  242|      6|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 6, False: 0]
  ------------------
  243|      6|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|      6|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|      6|}
bufferedio.c:PyObject_TypeCheck:
  374|      6|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|      6|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 6, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|      6|}
textio.c:_Py_SIZE_impl:
  240|      6|{
  241|      6|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 6, False: 0]
  ------------------
  242|      6|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 6, False: 0]
  ------------------
  243|      6|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|      6|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|      6|}
textio.c:PyType_HasFeature:
  749|     64|{
  750|     64|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     64|    flags = type->tp_flags;
  756|     64|#endif
  757|     64|    return ((flags & feature) != 0);
  758|     64|}
textio.c:_Py_TYPE_impl:
  233|    104|{
  234|    104|    return ob->ob_type;
  235|    104|}
textio.c:PyObject_TypeCheck:
  374|      6|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|      6|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 6, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|      6|}
textio.c:_Py_IS_TYPE_impl:
  248|     22|{
  249|     22|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     22|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     22|}
_threadmodule.c:PyObject_TypeCheck:
  374|    102|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    102|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    204|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    102|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    102|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 102, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|    102|}
_threadmodule.c:_Py_IS_TYPE_impl:
  248|    102|{
  249|    102|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    102|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    102|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    102|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    102|}
_threadmodule.c:_Py_TYPE_impl:
  233|    198|{
  234|    198|    return ob->ob_type;
  235|    198|}
timemodule.c:_Py_TYPE_impl:
  233|      6|{
  234|      6|    return ob->ob_type;
  235|      6|}
timemodule.c:PyObject_TypeCheck:
  374|      6|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|      6|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 6, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|      6|}
timemodule.c:_Py_IS_TYPE_impl:
  248|      6|{
  249|      6|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      6|}
_weakref.c:PyType_HasFeature:
  749|     60|{
  750|     60|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     60|    flags = type->tp_flags;
  756|     60|#endif
  757|     60|    return ((flags & feature) != 0);
  758|     60|}
_weakref.c:_Py_TYPE_impl:
  233|    300|{
  234|    300|    return ob->ob_type;
  235|    300|}
_weakref.c:PyObject_TypeCheck:
  374|    120|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    120|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    240|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 120]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|    120|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 120, False: 0]
  ------------------
  376|    120|}
_weakref.c:_Py_IS_TYPE_impl:
  248|    120|{
  249|    120|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    120|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    120|}
_abc.c:PyObject_TypeCheck:
  374|    268|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    268|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    536|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    268|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    268|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 268, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|    268|}
_abc.c:_Py_IS_TYPE_impl:
  248|    416|{
  249|    416|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    416|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    416|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    416|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    416|}
_abc.c:_Py_TYPE_impl:
  233|  8.31k|{
  234|  8.31k|    return ob->ob_type;
  235|  8.31k|}
_abc.c:PyType_HasFeature:
  749|  5.21k|{
  750|  5.21k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  5.21k|    flags = type->tp_flags;
  756|  5.21k|#endif
  757|  5.21k|    return ((flags & feature) != 0);
  758|  5.21k|}
_abc.c:_Py_SIZE_impl:
  240|  1.34k|{
  241|  1.34k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 1.34k, False: 0]
  ------------------
  242|  1.34k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 1.34k, False: 0]
  ------------------
  243|  1.34k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  1.34k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  1.34k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  1.34k|}
_abc.c:PyType_Check:
  762|    288|static inline int PyType_Check(PyObject *op) {
  763|    288|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|    288|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|    288|}
_stat.c:PyType_HasFeature:
  749|      2|{
  750|      2|    unsigned long flags;
  751|      2|#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|      2|    flags = PyType_GetFlags(type);
  754|       |#else
  755|       |    flags = type->tp_flags;
  756|       |#endif
  757|      2|    return ((flags & feature) != 0);
  758|      2|}
_stat.c:_Py_TYPE_impl:
  233|      2|{
  234|      2|    return ob->ob_type;
  235|      2|}
getpath.c:_Py_IS_TYPE_impl:
  248|      2|{
  249|      2|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      2|}
getpath.c:_Py_TYPE_impl:
  233|    222|{
  234|    222|    return ob->ob_type;
  235|    222|}
getpath.c:PyType_HasFeature:
  749|    168|{
  750|    168|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    168|    flags = type->tp_flags;
  756|    168|#endif
  757|    168|    return ((flags & feature) != 0);
  758|    168|}
getpath.c:_Py_SIZE_impl:
  240|     26|{
  241|     26|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 26, False: 0]
  ------------------
  242|     26|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 26, False: 0]
  ------------------
  243|     26|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     26|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     26|}
abstract.c:_Py_TYPE_impl:
  233|  11.5k|{
  234|  11.5k|    return ob->ob_type;
  235|  11.5k|}
abstract.c:PyType_HasFeature:
  749|    618|{
  750|    618|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    618|    flags = type->tp_flags;
  756|    618|#endif
  757|    618|    return ((flags & feature) != 0);
  758|    618|}
abstract.c:PyType_Check:
  762|    384|static inline int PyType_Check(PyObject *op) {
  763|    384|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|    384|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|    384|}
abstract.c:_Py_IS_TYPE_impl:
  248|  5.71k|{
  249|  5.71k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  5.71k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  5.71k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.71k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  5.71k|}
abstract.c:PyObject_TypeCheck:
  374|     52|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|     52|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    104|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 52]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|     52|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 52]
  ------------------
  376|     52|}
abstract.c:PyType_CheckExact:
  772|    344|static inline int PyType_CheckExact(PyObject *op) {
  773|    344|    return Py_IS_TYPE(op, &PyType_Type);
  ------------------
  |  |  215|    344|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    344|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    344|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  774|    344|}
boolobject.c:_Py_TYPE_impl:
  233|      2|{
  234|      2|    return ob->ob_type;
  235|      2|}
boolobject.c:PyType_Check:
  762|      2|static inline int PyType_Check(PyObject *op) {
  763|      2|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|      2|}
boolobject.c:PyType_HasFeature:
  749|      2|{
  750|      2|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      2|    flags = type->tp_flags;
  756|      2|#endif
  757|      2|    return ((flags & feature) != 0);
  758|      2|}
bytearrayobject.c:PyType_HasFeature:
  749|    170|{
  750|    170|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|    170|    flags = type->tp_flags;
  756|    170|#endif
  757|    170|    return ((flags & feature) != 0);
  758|    170|}
bytearrayobject.c:_Py_SET_SIZE_impl:
  254|    164|{
  255|    164|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
  ------------------
  |  Branch (255:5): [True: 164, False: 0]
  ------------------
  256|    164|    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
  ------------------
  |  Branch (256:5): [True: 164, False: 0]
  ------------------
  257|       |#ifdef Py_GIL_DISABLED
  258|       |    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
  259|       |#else
  260|    164|    ob->ob_size = size;
  261|    164|#endif
  262|    164|}
bytearrayobject.c:PyObject_TypeCheck:
  374|    166|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    166|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    332|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 166, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|    166|}
bytearrayobject.c:_Py_IS_TYPE_impl:
  248|    166|{
  249|    166|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    166|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    166|}
bytearrayobject.c:_Py_SIZE_impl:
  240|      4|{
  241|      4|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 4, False: 0]
  ------------------
  242|      4|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 4, False: 0]
  ------------------
  243|      4|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|      4|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|      4|}
bytearrayobject.c:_Py_TYPE_impl:
  233|    836|{
  234|    836|    return ob->ob_type;
  235|    836|}
cellobject.c:_Py_IS_TYPE_impl:
  248|    160|{
  249|    160|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    160|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    160|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    160|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    160|}
cellobject.c:_Py_TYPE_impl:
  233|    160|{
  234|    160|    return ob->ob_type;
  235|    160|}
classobject.c:_Py_IS_TYPE_impl:
  248|    806|{
  249|    806|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    806|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    806|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    806|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    806|}
classobject.c:_Py_TYPE_impl:
  233|    806|{
  234|    806|    return ob->ob_type;
  235|    806|}
codeobject.c:PyType_HasFeature:
  749|   121k|{
  750|   121k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|   121k|    flags = type->tp_flags;
  756|   121k|#endif
  757|   121k|    return ((flags & feature) != 0);
  758|   121k|}
codeobject.c:_Py_TYPE_impl:
  233|   210k|{
  234|   210k|    return ob->ob_type;
  235|   210k|}
codeobject.c:_Py_SIZE_impl:
  240|  30.8k|{
  241|  30.8k|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 30.8k, False: 0]
  ------------------
  242|  30.8k|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 30.8k, False: 0]
  ------------------
  243|  30.8k|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|  30.8k|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  30.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|  30.8k|}
codeobject.c:_Py_IS_TYPE_impl:
  248|  27.7k|{
  249|  27.7k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  27.7k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  27.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  27.7k|}
descrobject.c:PyType_HasFeature:
  749|  1.00k|{
  750|  1.00k|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|  1.00k|    flags = type->tp_flags;
  756|  1.00k|#endif
  757|  1.00k|    return ((flags & feature) != 0);
  758|  1.00k|}
descrobject.c:PyType_Check:
  762|    350|static inline int PyType_Check(PyObject *op) {
  763|    350|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|    350|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|    350|}
descrobject.c:_Py_SIZE_impl:
  240|     74|{
  241|     74|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 74, False: 0]
  ------------------
  242|     74|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 74, False: 0]
  ------------------
  243|     74|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|     74|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|     74|}
descrobject.c:_Py_TYPE_impl:
  233|  5.71k|{
  234|  5.71k|    return ob->ob_type;
  235|  5.71k|}
descrobject.c:_Py_IS_TYPE_impl:
  248|  2.31k|{
  249|  2.31k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  2.31k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.31k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.31k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  2.31k|}
descrobject.c:PyObject_TypeCheck:
  374|  2.22k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  2.22k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  4.44k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  2.22k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.22k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 1.71k, False: 508]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|    508|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    508|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    508|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 508, False: 0]
  ------------------
  376|  2.22k|}
enumobject.c:_Py_TYPE_impl:
  233|     12|{
  234|     12|    return ob->ob_type;
  235|     12|}
enumobject.c:PyType_HasFeature:
  749|     12|{
  750|     12|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     12|    flags = type->tp_flags;
  756|     12|#endif
  757|     12|    return ((flags & feature) != 0);
  758|     12|}
enumobject.c:PyType_Check:
  762|      6|static inline int PyType_Check(PyObject *op) {
  763|      6|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|      6|}
genobject.c:_Py_IS_TYPE_impl:
  248|    196|{
  249|    196|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    196|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    196|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    196|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    196|}
genobject.c:_Py_TYPE_impl:
  233|    196|{
  234|    196|    return ob->ob_type;
  235|    196|}
frameobject.c:PyObject_TypeCheck:
  374|    188|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|    188|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|    376|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    188|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    188|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 188, False: 0]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 0, False: 0]
  ------------------
  376|    188|}
frameobject.c:_Py_IS_TYPE_impl:
  248|    236|{
  249|    236|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|    236|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    236|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    236|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    236|}
frameobject.c:_Py_SIZE_impl:
  240|      2|{
  241|      2|    assert(Py_TYPE(ob) != &PyLong_Type);
  ------------------
  |  Branch (241:5): [True: 2, False: 0]
  ------------------
  242|      2|    assert(Py_TYPE(ob) != &PyBool_Type);
  ------------------
  |  Branch (242:5): [True: 2, False: 0]
  ------------------
  243|      2|    return  _PyVarObject_CAST(ob)->ob_size;
  ------------------
  |  |  182|      2|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  244|      2|}
frameobject.c:PyType_HasFeature:
  749|      4|{
  750|      4|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      4|    flags = type->tp_flags;
  756|      4|#endif
  757|      4|    return ((flags & feature) != 0);
  758|      4|}
frameobject.c:_Py_TYPE_impl:
  233|    246|{
  234|    246|    return ob->ob_type;
  235|    246|}
lazyimportobject.c:PyType_HasFeature:
  749|      8|{
  750|      8|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|      8|    flags = type->tp_flags;
  756|      8|#endif
  757|      8|    return ((flags & feature) != 0);
  758|      8|}
lazyimportobject.c:_Py_TYPE_impl:
  233|     24|{
  234|     24|    return ob->ob_type;
  235|     24|}
lazyimportobject.c:_Py_IS_TYPE_impl:
  248|     16|{
  249|     16|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|     16|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|     16|}
methodobject.c:PyObject_TypeCheck:
  374|  10.0k|static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
  375|  10.0k|    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  215|  20.0k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  10.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 10.0k, False: 14]
  |  |  ------------------
  ------------------
                  return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
  ------------------
  |  |  213|     14|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (375:36): [True: 8, False: 6]
  ------------------
  376|  10.0k|}
methodobject.c:_Py_IS_TYPE_impl:
  248|  10.5k|{
  249|  10.5k|    return Py_TYPE(ob) == type;
  ------------------
  |  |  213|  10.5k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  10.5k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|  10.5k|}
methodobject.c:_Py_TYPE_impl:
  233|  10.5k|{
  234|  10.5k|    return ob->ob_type;
  235|  10.5k|}
methodobject.c:PyType_Check:
  762|      6|static inline int PyType_Check(PyObject *op) {
  763|      6|    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
  ------------------
  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  ------------------
  764|      6|}
methodobject.c:PyType_HasFeature:
  749|     12|{
  750|     12|    unsigned long flags;
  751|       |#ifdef Py_LIMITED_API
  752|       |    // PyTypeObject is opaque in the limited C API
  753|       |    flags = PyType_GetFlags(type);
  754|       |#else
  755|     12|    flags = type->tp_flags;
  756|     12|#endif
  757|     12|    return ((flags & feature) != 0);
  758|     12|}
namespaceobject.c:_Py_TYPE_impl:
  233|     32|{
  234|     32|    return ob->ob_type;
  235|     32|}
crossinterp.c:_Py_TYPE_impl:
  233|      2|{
  234|      2|    return ob->ob_type;
  235|      2|}

gc.c:PyDTrace_GC_START_ENABLED:
   44|      4|static inline int PyDTrace_GC_START_ENABLED(void) { return 0; }
gc.c:PyDTrace_GC_DONE_ENABLED:
   45|      4|static inline int PyDTrace_GC_DONE_ENABLED(void) { return 0; }
import.c:PyDTrace_IMPORT_FIND_LOAD_START_ENABLED:
   50|     48|static inline int PyDTrace_IMPORT_FIND_LOAD_START_ENABLED(void) { return 0; }
import.c:PyDTrace_IMPORT_FIND_LOAD_DONE_ENABLED:
   51|     48|static inline int PyDTrace_IMPORT_FIND_LOAD_DONE_ENABLED(void) { return 0; }
sysmodule.c:PyDTrace_AUDIT_ENABLED:
   52|    140|static inline int PyDTrace_AUDIT_ENABLED(void) { return 0; }

bytesobject.c:_Py_IsImmortal:
  127|  8.61k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  8.61k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  8.61k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  8.61k|}
bytesobject.c:Py_INCREF:
  256|  8.48k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  8.48k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  8.48k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 8.48k, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|  8.48k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  8.48k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  8.48k|        return;
  291|  8.48k|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
bytesobject.c:Py_DECREF:
  418|      2|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      2|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      2|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  422|      2|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      2|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      2|        return;
  424|      2|    }
  425|      0|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      0|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 0]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      0|}
bytesobject.c:Py_XDECREF:
  518|      4|{
  519|      4|    if (op != _Py_NULL) {
  ------------------
  |  |   57|      4|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 2, False: 2]
  ------------------
  520|      2|        Py_DECREF(op);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      2|    }
  522|      4|}
bytesobject.c:_Py_NewRef:
  535|      2|{
  536|      2|    Py_INCREF(obj);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      2|    return obj;
  538|      2|}
call.c:Py_DECREF:
  418|  1.55k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  1.55k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  1.55k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.55k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.55k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 414, False: 1.14k]
  |  |  ------------------
  ------------------
  422|    414|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    414|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    414|        return;
  424|    414|    }
  425|  1.14k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.14k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  1.14k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 900, False: 242]
  ------------------
  427|    900|        _Py_Dealloc(op);
  428|    900|    }
  429|  1.14k|}
call.c:_Py_IsImmortal:
  127|  1.55k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.55k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.55k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.55k|}
call.c:_Py_IsStaticImmortal:
  141|    308|{
  142|    308|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|    308|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|    308|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|    308|}
call.c:_Py_NewRef:
  535|    244|{
  536|    244|    Py_INCREF(obj);
  ------------------
  |  |  310|    244|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    244|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    244|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|    244|    return obj;
  538|    244|}
call.c:Py_INCREF:
  256|    244|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    244|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    244|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 202, False: 42]
  ------------------
  288|       |        // the object is immortal
  289|    202|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    202|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    202|        return;
  291|    202|    }
  292|     42|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|     42|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     42|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|     42|#endif
  308|     42|}
exceptions.c:_Py_XNewRef:
  541|  4.32k|{
  542|  4.32k|    Py_XINCREF(obj);
  ------------------
  |  |  514|  4.32k|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|  4.32k|    return obj;
  544|  4.32k|}
exceptions.c:Py_XINCREF:
  508|  4.32k|{
  509|  4.32k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  4.32k|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 82, False: 4.24k]
  ------------------
  510|     82|        Py_INCREF(op);
  ------------------
  |  |  310|     82|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|     82|    }
  512|  4.32k|}
exceptions.c:Py_XDECREF:
  518|    526|{
  519|    526|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    526|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 98, False: 428]
  ------------------
  520|     98|        Py_DECREF(op);
  ------------------
  |  |  430|     98|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     98|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     98|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|     98|    }
  522|    526|}
exceptions.c:_Py_NewRef:
  535|    384|{
  536|    384|    Py_INCREF(obj);
  ------------------
  |  |  310|    384|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    384|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    384|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|    384|    return obj;
  538|    384|}
exceptions.c:Py_INCREF:
  256|    486|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    486|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    486|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 24, False: 462]
  ------------------
  288|       |        // the object is immortal
  289|     24|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     24|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     24|        return;
  291|     24|    }
  292|    462|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    462|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    462|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    462|#endif
  308|    462|}
exceptions.c:Py_DECREF:
  418|  4.53k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  4.53k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  4.53k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.53k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.53k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 214, False: 4.32k]
  |  |  ------------------
  ------------------
  422|    214|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    214|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    214|        return;
  424|    214|    }
  425|  4.32k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  4.32k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  4.32k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 4.10k, False: 220]
  ------------------
  427|  4.10k|        _Py_Dealloc(op);
  428|  4.10k|    }
  429|  4.32k|}
exceptions.c:_Py_IsImmortal:
  127|  4.53k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  4.53k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  4.53k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  4.53k|}
genericaliasobject.c:Py_XDECREF:
  518|     12|{
  519|     12|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     12|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 8, False: 4]
  ------------------
  520|      8|        Py_DECREF(op);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      8|    }
  522|     12|}
genericaliasobject.c:Py_DECREF:
  418|      8|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      8|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      8|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 4, False: 4]
  |  |  ------------------
  ------------------
  422|      4|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      4|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      4|        return;
  424|      4|    }
  425|      4|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      4|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      4|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 4, False: 0]
  ------------------
  427|      4|        _Py_Dealloc(op);
  428|      4|    }
  429|      4|}
genericaliasobject.c:_Py_IsImmortal:
  127|      8|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|      8|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|      8|}
genericaliasobject.c:_Py_NewRef:
  535|      4|{
  536|      4|    Py_INCREF(obj);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      4|    return obj;
  538|      4|}
genericaliasobject.c:Py_INCREF:
  256|      4|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      4|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      4|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 4, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|      4|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      4|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      4|        return;
  291|      4|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
genericaliasobject.c:_Py_REFCNT:
  105|      4|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|      4|    #if !defined(Py_GIL_DISABLED)
  107|      4|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|      4|    }
floatobject.c:_Py_IsImmortal:
  127|     20|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     20|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     20|}
floatobject.c:Py_INCREF:
  256|     20|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     20|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     20|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 20, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|     20|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     20|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     20|        return;
  291|     20|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
floatobject.c:Py_XDECREF:
  518|  3.60k|{
  519|  3.60k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  3.60k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 0, False: 3.60k]
  ------------------
  520|      0|        Py_DECREF(op);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      0|    }
  522|  3.60k|}
funcobject.c:Py_XDECREF:
  518|    156|{
  519|    156|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    156|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 36, False: 120]
  ------------------
  520|     36|        Py_DECREF(op);
  ------------------
  |  |  430|     36|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|     36|    }
  522|    156|}
funcobject.c:Py_INCREF:
  256|  8.13k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  8.13k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  8.13k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 4.22k, False: 3.91k]
  ------------------
  288|       |        // the object is immortal
  289|  4.22k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  4.22k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  4.22k|        return;
  291|  4.22k|    }
  292|  3.91k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  3.91k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  3.91k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  3.91k|#endif
  308|  3.91k|}
funcobject.c:_Py_NewRef:
  535|  2.15k|{
  536|  2.15k|    Py_INCREF(obj);
  ------------------
  |  |  310|  2.15k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.15k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.15k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  2.15k|    return obj;
  538|  2.15k|}
funcobject.c:_Py_XNewRef:
  541|     96|{
  542|     96|    Py_XINCREF(obj);
  ------------------
  |  |  514|     96|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     96|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     96|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|     96|    return obj;
  544|     96|}
funcobject.c:Py_XINCREF:
  508|     96|{
  509|     96|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     96|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 0, False: 96]
  ------------------
  510|      0|        Py_INCREF(op);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|      0|    }
  512|     96|}
funcobject.c:_Py_REFCNT:
  105|  3.20k|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|  3.20k|    #if !defined(Py_GIL_DISABLED)
  107|  3.20k|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|  3.20k|    }
funcobject.c:Py_DECREF:
  418|  3.60k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  3.60k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  3.60k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 2.18k, False: 1.42k]
  |  |  ------------------
  ------------------
  422|  2.18k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  2.18k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  2.18k|        return;
  424|  2.18k|    }
  425|  1.42k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.42k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  1.42k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 82, False: 1.34k]
  ------------------
  427|     82|        _Py_Dealloc(op);
  428|     82|    }
  429|  1.42k|}
funcobject.c:_Py_IsImmortal:
  127|  4.28k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  4.28k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  4.28k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  4.28k|}
funcobject.c:Py_SET_REFCNT:
  154|    672|static inline void Py_SET_REFCNT(PyObject *ob, Py_ssize_t refcnt) {
  155|    672|    assert(refcnt >= 0);
  ------------------
  |  Branch (155:5): [True: 672, False: 0]
  ------------------
  156|       |#if (defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030d0000) \
  157|       |    || defined(_Py_OPAQUE_PYOBJECT)
  158|       |    // Stable ABI implements Py_SET_REFCNT() as a function call
  159|       |    // on limited C API version 3.13 and newer, and abi3t.
  160|       |    _Py_SetRefcnt(ob, refcnt);
  161|       |#else
  162|       |    // This immortal check is for code that is unaware of immortal objects.
  163|       |    // The runtime tracks these objects and we should avoid as much
  164|       |    // as possible having extensions inadvertently change the refcnt
  165|       |    // of an immortalized object.
  166|    672|    if (_Py_IsImmortal(ob)) {
  ------------------
  |  |  137|    672|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    672|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    672|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 672]
  |  |  ------------------
  ------------------
  167|      0|        return;
  168|      0|    }
  169|    672|#ifndef Py_GIL_DISABLED
  170|    672|#if SIZEOF_VOID_P > 4
  171|    672|    ob->ob_refcnt = (uint32_t)refcnt;
  172|       |#else
  173|       |    ob->ob_refcnt = refcnt;
  174|       |#endif
  175|       |#else
  176|       |    if (_Py_IsOwnedByCurrentThread(ob)) {
  177|       |        if ((size_t)refcnt > (size_t)UINT32_MAX) {
  178|       |            // On overflow, make the object immortal
  179|       |            ob->ob_tid = _Py_UNOWNED_TID;
  180|       |            ob->ob_ref_local = _Py_IMMORTAL_REFCNT_LOCAL;
  181|       |            ob->ob_ref_shared = 0;
  182|       |        }
  183|       |        else {
  184|       |            // Set local refcount to desired refcount and shared refcount
  185|       |            // to zero, but preserve the shared refcount flags.
  186|       |            ob->ob_ref_local = _Py_STATIC_CAST(uint32_t, refcnt);
  187|       |            ob->ob_ref_shared &= _Py_REF_SHARED_FLAG_MASK;
  188|       |        }
  189|       |    }
  190|       |    else {
  191|       |        // Set local refcount to zero and shared refcount to desired refcount.
  192|       |        // Mark the object as merged.
  193|       |        ob->ob_tid = _Py_UNOWNED_TID;
  194|       |        ob->ob_ref_local = 0;
  195|       |        ob->ob_ref_shared = _Py_REF_SHARED(refcnt, _Py_REF_MERGED);
  196|       |    }
  197|       |#endif  // Py_GIL_DISABLED
  198|    672|#endif  // Py_LIMITED_API
  199|    672|}
listobject.c:Py_DECREF:
  418|  17.0k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  17.0k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  17.0k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  17.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  17.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 10.3k, False: 6.78k]
  |  |  ------------------
  ------------------
  422|  10.3k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  10.3k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  10.3k|        return;
  424|  10.3k|    }
  425|  6.78k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  6.78k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  6.78k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 2.09k, False: 4.69k]
  ------------------
  427|  2.09k|        _Py_Dealloc(op);
  428|  2.09k|    }
  429|  6.78k|}
listobject.c:_Py_IsImmortal:
  127|  17.0k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  17.0k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  17.0k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  17.0k|}
listobject.c:Py_XDECREF:
  518|  15.2k|{
  519|  15.2k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  15.2k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 15.2k, False: 66]
  ------------------
  520|  15.2k|        Py_DECREF(op);
  ------------------
  |  |  430|  15.2k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|  15.2k|    }
  522|  15.2k|}
listobject.c:_Py_NewRef:
  535|  16.0k|{
  536|  16.0k|    Py_INCREF(obj);
  ------------------
  |  |  310|  16.0k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  16.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  16.0k|    return obj;
  538|  16.0k|}
listobject.c:Py_INCREF:
  256|  16.2k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  16.2k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  16.2k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 10.0k, False: 6.25k]
  ------------------
  288|       |        // the object is immortal
  289|  10.0k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  10.0k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  10.0k|        return;
  291|  10.0k|    }
  292|  6.25k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  6.25k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  6.25k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  6.25k|#endif
  308|  6.25k|}
listobject.c:_Py_XNewRef:
  541|     78|{
  542|     78|    Py_XINCREF(obj);
  ------------------
  |  |  514|     78|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|     78|    return obj;
  544|     78|}
listobject.c:Py_XINCREF:
  508|     78|{
  509|     78|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     78|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 78, False: 0]
  ------------------
  510|     78|        Py_INCREF(op);
  ------------------
  |  |  310|     78|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|     78|    }
  512|     78|}
longobject.c:_Py_IsImmortal:
  127|  1.35k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.35k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.35k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.35k|}
longobject.c:Py_DECREF:
  418|      4|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      4|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      4|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 4, False: 0]
  |  |  ------------------
  ------------------
  422|      4|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      4|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      4|        return;
  424|      4|    }
  425|      0|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      0|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 0]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      0|}
longobject.c:Py_INCREF:
  256|  1.33k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  1.33k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  1.33k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 1.33k, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|  1.33k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  1.33k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  1.33k|        return;
  291|  1.33k|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
longobject.c:_Py_REFCNT:
  105|      8|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|      8|    #if !defined(Py_GIL_DISABLED)
  107|      8|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|      8|    }
dictobject.c:_Py_XNewRef:
  541|  1.01k|{
  542|  1.01k|    Py_XINCREF(obj);
  ------------------
  |  |  514|  1.01k|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.01k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.01k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|  1.01k|    return obj;
  544|  1.01k|}
dictobject.c:Py_XINCREF:
  508|  1.01k|{
  509|  1.01k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  1.01k|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 694, False: 316]
  ------------------
  510|    694|        Py_INCREF(op);
  ------------------
  |  |  310|    694|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    694|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    694|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|    694|    }
  512|  1.01k|}
dictobject.c:_Py_IsImmortal:
  127|  25.7k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  25.7k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  25.7k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  25.7k|}
dictobject.c:_Py_IsStaticImmortal:
  141|  8.56k|{
  142|  8.56k|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|  8.56k|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|  8.56k|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|  8.56k|}
dictobject.c:Py_INCREF:
  256|  78.8k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  78.8k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  78.8k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 31.0k, False: 47.7k]
  ------------------
  288|       |        // the object is immortal
  289|  31.0k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  31.0k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  31.0k|        return;
  291|  31.0k|    }
  292|  47.7k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  47.7k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  47.7k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  47.7k|#endif
  308|  47.7k|}
dictobject.c:Py_DECREF:
  418|  16.3k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  16.3k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  16.3k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  16.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 11.8k, False: 4.47k]
  |  |  ------------------
  ------------------
  422|  11.8k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  11.8k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  11.8k|        return;
  424|  11.8k|    }
  425|  4.47k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  4.47k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  4.47k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 1.11k, False: 3.36k]
  ------------------
  427|  1.11k|        _Py_Dealloc(op);
  428|  1.11k|    }
  429|  4.47k|}
dictobject.c:_Py_REFCNT:
  105|  29.5k|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|  29.5k|    #if !defined(Py_GIL_DISABLED)
  107|  29.5k|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|  29.5k|    }
dictobject.c:_Py_NewRef:
  535|  67.1k|{
  536|  67.1k|    Py_INCREF(obj);
  ------------------
  |  |  310|  67.1k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  67.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  67.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  67.1k|    return obj;
  538|  67.1k|}
dictobject.c:Py_XDECREF:
  518|  11.1k|{
  519|  11.1k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  11.1k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 10.4k, False: 666]
  ------------------
  520|  10.4k|        Py_DECREF(op);
  ------------------
  |  |  430|  10.4k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  10.4k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.4k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|  10.4k|    }
  522|  11.1k|}
dictobject.c:Py_SET_REFCNT:
  154|  2.01k|static inline void Py_SET_REFCNT(PyObject *ob, Py_ssize_t refcnt) {
  155|  2.01k|    assert(refcnt >= 0);
  ------------------
  |  Branch (155:5): [True: 2.01k, False: 0]
  ------------------
  156|       |#if (defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030d0000) \
  157|       |    || defined(_Py_OPAQUE_PYOBJECT)
  158|       |    // Stable ABI implements Py_SET_REFCNT() as a function call
  159|       |    // on limited C API version 3.13 and newer, and abi3t.
  160|       |    _Py_SetRefcnt(ob, refcnt);
  161|       |#else
  162|       |    // This immortal check is for code that is unaware of immortal objects.
  163|       |    // The runtime tracks these objects and we should avoid as much
  164|       |    // as possible having extensions inadvertently change the refcnt
  165|       |    // of an immortalized object.
  166|  2.01k|    if (_Py_IsImmortal(ob)) {
  ------------------
  |  |  137|  2.01k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.01k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.01k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 2.01k]
  |  |  ------------------
  ------------------
  167|      0|        return;
  168|      0|    }
  169|  2.01k|#ifndef Py_GIL_DISABLED
  170|  2.01k|#if SIZEOF_VOID_P > 4
  171|  2.01k|    ob->ob_refcnt = (uint32_t)refcnt;
  172|       |#else
  173|       |    ob->ob_refcnt = refcnt;
  174|       |#endif
  175|       |#else
  176|       |    if (_Py_IsOwnedByCurrentThread(ob)) {
  177|       |        if ((size_t)refcnt > (size_t)UINT32_MAX) {
  178|       |            // On overflow, make the object immortal
  179|       |            ob->ob_tid = _Py_UNOWNED_TID;
  180|       |            ob->ob_ref_local = _Py_IMMORTAL_REFCNT_LOCAL;
  181|       |            ob->ob_ref_shared = 0;
  182|       |        }
  183|       |        else {
  184|       |            // Set local refcount to desired refcount and shared refcount
  185|       |            // to zero, but preserve the shared refcount flags.
  186|       |            ob->ob_ref_local = _Py_STATIC_CAST(uint32_t, refcnt);
  187|       |            ob->ob_ref_shared &= _Py_REF_SHARED_FLAG_MASK;
  188|       |        }
  189|       |    }
  190|       |    else {
  191|       |        // Set local refcount to zero and shared refcount to desired refcount.
  192|       |        // Mark the object as merged.
  193|       |        ob->ob_tid = _Py_UNOWNED_TID;
  194|       |        ob->ob_ref_local = 0;
  195|       |        ob->ob_ref_shared = _Py_REF_SHARED(refcnt, _Py_REF_MERGED);
  196|       |    }
  197|       |#endif  // Py_GIL_DISABLED
  198|  2.01k|#endif  // Py_LIMITED_API
  199|  2.01k|}
moduleobject.c:Py_SET_REFCNT:
  154|     32|static inline void Py_SET_REFCNT(PyObject *ob, Py_ssize_t refcnt) {
  155|     32|    assert(refcnt >= 0);
  ------------------
  |  Branch (155:5): [True: 32, False: 0]
  ------------------
  156|       |#if (defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030d0000) \
  157|       |    || defined(_Py_OPAQUE_PYOBJECT)
  158|       |    // Stable ABI implements Py_SET_REFCNT() as a function call
  159|       |    // on limited C API version 3.13 and newer, and abi3t.
  160|       |    _Py_SetRefcnt(ob, refcnt);
  161|       |#else
  162|       |    // This immortal check is for code that is unaware of immortal objects.
  163|       |    // The runtime tracks these objects and we should avoid as much
  164|       |    // as possible having extensions inadvertently change the refcnt
  165|       |    // of an immortalized object.
  166|     32|    if (_Py_IsImmortal(ob)) {
  ------------------
  |  |  137|     32|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 32, False: 0]
  |  |  ------------------
  ------------------
  167|     32|        return;
  168|     32|    }
  169|      0|#ifndef Py_GIL_DISABLED
  170|      0|#if SIZEOF_VOID_P > 4
  171|      0|    ob->ob_refcnt = (uint32_t)refcnt;
  172|       |#else
  173|       |    ob->ob_refcnt = refcnt;
  174|       |#endif
  175|       |#else
  176|       |    if (_Py_IsOwnedByCurrentThread(ob)) {
  177|       |        if ((size_t)refcnt > (size_t)UINT32_MAX) {
  178|       |            // On overflow, make the object immortal
  179|       |            ob->ob_tid = _Py_UNOWNED_TID;
  180|       |            ob->ob_ref_local = _Py_IMMORTAL_REFCNT_LOCAL;
  181|       |            ob->ob_ref_shared = 0;
  182|       |        }
  183|       |        else {
  184|       |            // Set local refcount to desired refcount and shared refcount
  185|       |            // to zero, but preserve the shared refcount flags.
  186|       |            ob->ob_ref_local = _Py_STATIC_CAST(uint32_t, refcnt);
  187|       |            ob->ob_ref_shared &= _Py_REF_SHARED_FLAG_MASK;
  188|       |        }
  189|       |    }
  190|       |    else {
  191|       |        // Set local refcount to zero and shared refcount to desired refcount.
  192|       |        // Mark the object as merged.
  193|       |        ob->ob_tid = _Py_UNOWNED_TID;
  194|       |        ob->ob_ref_local = 0;
  195|       |        ob->ob_ref_shared = _Py_REF_SHARED(refcnt, _Py_REF_MERGED);
  196|       |    }
  197|       |#endif  // Py_GIL_DISABLED
  198|      0|#endif  // Py_LIMITED_API
  199|      0|}
moduleobject.c:_Py_IsImmortal:
  127|  1.11k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.11k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.11k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.11k|}
moduleobject.c:_Py_NewRef:
  535|     66|{
  536|     66|    Py_INCREF(obj);
  ------------------
  |  |  310|     66|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     66|    return obj;
  538|     66|}
moduleobject.c:Py_INCREF:
  256|     66|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     66|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     66|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 42, False: 24]
  ------------------
  288|       |        // the object is immortal
  289|     42|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     42|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     42|        return;
  291|     42|    }
  292|     24|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|     24|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     24|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|     24|#endif
  308|     24|}
moduleobject.c:Py_DECREF:
  418|  1.08k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  1.08k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  1.08k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.08k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.08k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 116, False: 966]
  |  |  ------------------
  ------------------
  422|    116|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    116|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    116|        return;
  424|    116|    }
  425|    966|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    966|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    966|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 966]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|    966|}
moduleobject.c:Py_XDECREF:
  518|     86|{
  519|     86|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     86|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 2, False: 84]
  ------------------
  520|      2|        Py_DECREF(op);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      2|    }
  522|     86|}
object.c:_Py_REFCNT:
  105|    210|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|    210|    #if !defined(Py_GIL_DISABLED)
  107|    210|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|    210|    }
object.c:Py_XDECREF:
  518|     44|{
  519|     44|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     44|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 8, False: 36]
  ------------------
  520|      8|        Py_DECREF(op);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      8|    }
  522|     44|}
object.c:Py_INCREF:
  256|  15.3k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  15.3k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  15.3k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 10.4k, False: 4.91k]
  ------------------
  288|       |        // the object is immortal
  289|  10.4k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  10.4k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  10.4k|        return;
  291|  10.4k|    }
  292|  4.91k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  4.91k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  4.91k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  4.91k|#endif
  308|  4.91k|}
object.c:Py_DECREF:
  418|  15.3k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  15.3k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  15.3k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 9.43k, False: 5.95k]
  |  |  ------------------
  ------------------
  422|  9.43k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  9.43k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  9.43k|        return;
  424|  9.43k|    }
  425|  5.95k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  5.95k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  5.95k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 10, False: 5.94k]
  ------------------
  427|     10|        _Py_Dealloc(op);
  428|     10|    }
  429|  5.95k|}
object.c:_Py_NewRef:
  535|     98|{
  536|     98|    Py_INCREF(obj);
  ------------------
  |  |  310|     98|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     98|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     98|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     98|    return obj;
  538|     98|}
object.c:_Py_IsImmortal:
  127|  31.6k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  31.6k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  31.6k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  31.6k|}
object.c:_Py_IsStaticImmortal:
  141|  1.49k|{
  142|  1.49k|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|  1.49k|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|  1.49k|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|  1.49k|}
object.c:Py_SET_REFCNT:
  154|     84|static inline void Py_SET_REFCNT(PyObject *ob, Py_ssize_t refcnt) {
  155|     84|    assert(refcnt >= 0);
  ------------------
  |  Branch (155:5): [True: 84, False: 0]
  ------------------
  156|       |#if (defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030d0000) \
  157|       |    || defined(_Py_OPAQUE_PYOBJECT)
  158|       |    // Stable ABI implements Py_SET_REFCNT() as a function call
  159|       |    // on limited C API version 3.13 and newer, and abi3t.
  160|       |    _Py_SetRefcnt(ob, refcnt);
  161|       |#else
  162|       |    // This immortal check is for code that is unaware of immortal objects.
  163|       |    // The runtime tracks these objects and we should avoid as much
  164|       |    // as possible having extensions inadvertently change the refcnt
  165|       |    // of an immortalized object.
  166|     84|    if (_Py_IsImmortal(ob)) {
  ------------------
  |  |  137|     84|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     84|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     84|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 84]
  |  |  ------------------
  ------------------
  167|      0|        return;
  168|      0|    }
  169|     84|#ifndef Py_GIL_DISABLED
  170|     84|#if SIZEOF_VOID_P > 4
  171|     84|    ob->ob_refcnt = (uint32_t)refcnt;
  172|       |#else
  173|       |    ob->ob_refcnt = refcnt;
  174|       |#endif
  175|       |#else
  176|       |    if (_Py_IsOwnedByCurrentThread(ob)) {
  177|       |        if ((size_t)refcnt > (size_t)UINT32_MAX) {
  178|       |            // On overflow, make the object immortal
  179|       |            ob->ob_tid = _Py_UNOWNED_TID;
  180|       |            ob->ob_ref_local = _Py_IMMORTAL_REFCNT_LOCAL;
  181|       |            ob->ob_ref_shared = 0;
  182|       |        }
  183|       |        else {
  184|       |            // Set local refcount to desired refcount and shared refcount
  185|       |            // to zero, but preserve the shared refcount flags.
  186|       |            ob->ob_ref_local = _Py_STATIC_CAST(uint32_t, refcnt);
  187|       |            ob->ob_ref_shared &= _Py_REF_SHARED_FLAG_MASK;
  188|       |        }
  189|       |    }
  190|       |    else {
  191|       |        // Set local refcount to zero and shared refcount to desired refcount.
  192|       |        // Mark the object as merged.
  193|       |        ob->ob_tid = _Py_UNOWNED_TID;
  194|       |        ob->ob_ref_local = 0;
  195|       |        ob->ob_ref_shared = _Py_REF_SHARED(refcnt, _Py_REF_MERGED);
  196|       |    }
  197|       |#endif  // Py_GIL_DISABLED
  198|     84|#endif  // Py_LIMITED_API
  199|     84|}
rangeobject.c:Py_DECREF:
  418|     46|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     46|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     46|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 34, False: 12]
  |  |  ------------------
  ------------------
  422|     34|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     34|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     34|        return;
  424|     34|    }
  425|     12|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     12|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     12|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 10, False: 2]
  ------------------
  427|     10|        _Py_Dealloc(op);
  428|     10|    }
  429|     12|}
rangeobject.c:_Py_IsImmortal:
  127|     46|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     46|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     46|}
rangeobject.c:_Py_NewRef:
  535|      6|{
  536|      6|    Py_INCREF(obj);
  ------------------
  |  |  310|      6|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      6|    return obj;
  538|      6|}
rangeobject.c:Py_INCREF:
  256|      8|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      8|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      8|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 6, False: 2]
  ------------------
  288|       |        // the object is immortal
  289|      6|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      6|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      6|        return;
  291|      6|    }
  292|      2|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      2|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      2|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      2|#endif
  308|      2|}
rangeobject.c:Py_XDECREF:
  518|      6|{
  519|      6|    if (op != _Py_NULL) {
  ------------------
  |  |   57|      6|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 6, False: 0]
  ------------------
  520|      6|        Py_DECREF(op);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      6|    }
  522|      6|}
setobject.c:Py_DECREF:
  418|  1.29k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  1.29k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  1.29k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.29k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.29k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 1.29k]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|  1.29k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.29k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  1.29k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 26, False: 1.26k]
  ------------------
  427|     26|        _Py_Dealloc(op);
  428|     26|    }
  429|  1.29k|}
setobject.c:_Py_IsImmortal:
  127|  1.29k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.29k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.29k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.29k|}
setobject.c:Py_INCREF:
  256|  1.67k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  1.67k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  1.67k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 238, False: 1.43k]
  ------------------
  288|       |        // the object is immortal
  289|    238|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    238|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    238|        return;
  291|    238|    }
  292|  1.43k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  1.43k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  1.43k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  1.43k|#endif
  308|  1.43k|}
setobject.c:Py_XDECREF:
  518|     62|{
  519|     62|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     62|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 2, False: 60]
  ------------------
  520|      2|        Py_DECREF(op);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      2|    }
  522|     62|}
setobject.c:_Py_REFCNT:
  105|    178|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|    178|    #if !defined(Py_GIL_DISABLED)
  107|    178|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|    178|    }
setobject.c:_Py_NewRef:
  535|  1.66k|{
  536|  1.66k|    Py_INCREF(obj);
  ------------------
  |  |  310|  1.66k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.66k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.66k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  1.66k|    return obj;
  538|  1.66k|}
sliceobject.c:_Py_NewRef:
  535|    282|{
  536|    282|    Py_INCREF(obj);
  ------------------
  |  |  310|    282|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    282|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    282|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|    282|    return obj;
  538|    282|}
sliceobject.c:Py_INCREF:
  256|    282|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    282|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    282|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 282, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|    282|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    282|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    282|        return;
  291|    282|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
sliceobject.c:Py_DECREF:
  418|     48|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     48|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     48|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 48, False: 0]
  |  |  ------------------
  ------------------
  422|     48|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     48|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     48|        return;
  424|     48|    }
  425|      0|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      0|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 0]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      0|}
sliceobject.c:_Py_IsImmortal:
  127|     48|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     48|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     48|}
structseq.c:_Py_IsImmortal:
  127|    696|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    696|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    696|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    696|}
structseq.c:Py_XDECREF:
  518|    532|{
  519|    532|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    532|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 532, False: 0]
  ------------------
  520|    532|        Py_DECREF(op);
  ------------------
  |  |  430|    532|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    532|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    532|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    532|    }
  522|    532|}
structseq.c:Py_DECREF:
  418|    696|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    696|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    696|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    696|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    696|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 242, False: 454]
  |  |  ------------------
  ------------------
  422|    242|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    242|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    242|        return;
  424|    242|    }
  425|    454|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    454|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    454|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 380, False: 74]
  ------------------
  427|    380|        _Py_Dealloc(op);
  428|    380|    }
  429|    454|}
tupleobject.c:_Py_REFCNT:
  105|     34|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|     34|    #if !defined(Py_GIL_DISABLED)
  107|     34|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|     34|    }
tupleobject.c:Py_XDECREF:
  518|  18.3k|{
  519|  18.3k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  18.3k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 18.3k, False: 24]
  ------------------
  520|  18.3k|        Py_DECREF(op);
  ------------------
  |  |  430|  18.3k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  18.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  18.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|  18.3k|    }
  522|  18.3k|}
tupleobject.c:_Py_NewRef:
  535|  9.17k|{
  536|  9.17k|    Py_INCREF(obj);
  ------------------
  |  |  310|  9.17k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  9.17k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.17k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  9.17k|    return obj;
  538|  9.17k|}
tupleobject.c:Py_INCREF:
  256|  9.19k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  9.19k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  9.19k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 2.20k, False: 6.99k]
  ------------------
  288|       |        // the object is immortal
  289|  2.20k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  2.20k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  2.20k|        return;
  291|  2.20k|    }
  292|  6.99k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  6.99k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  6.99k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  6.99k|#endif
  308|  6.99k|}
tupleobject.c:Py_DECREF:
  418|  18.3k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  18.3k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  18.3k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  18.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  18.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 8.87k, False: 9.49k]
  |  |  ------------------
  ------------------
  422|  8.87k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  8.87k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  8.87k|        return;
  424|  8.87k|    }
  425|  9.49k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  9.49k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  9.49k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 4.42k, False: 5.07k]
  ------------------
  427|  4.42k|        _Py_Dealloc(op);
  428|  4.42k|    }
  429|  9.49k|}
tupleobject.c:_Py_IsImmortal:
  127|  18.3k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  18.3k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  18.3k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  18.3k|}
typeobject.c:_Py_NewRef:
  535|  6.07k|{
  536|  6.07k|    Py_INCREF(obj);
  ------------------
  |  |  310|  6.07k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.07k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.07k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  6.07k|    return obj;
  538|  6.07k|}
typeobject.c:_Py_XNewRef:
  541|    752|{
  542|    752|    Py_XINCREF(obj);
  ------------------
  |  |  514|    752|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    752|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    752|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|    752|    return obj;
  544|    752|}
typeobject.c:Py_XINCREF:
  508|    926|{
  509|    926|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    926|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 224, False: 702]
  ------------------
  510|    224|        Py_INCREF(op);
  ------------------
  |  |  310|    224|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    224|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    224|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|    224|    }
  512|    926|}
typeobject.c:Py_INCREF:
  256|  17.8k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  17.8k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  17.8k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 14.4k, False: 3.35k]
  ------------------
  288|       |        // the object is immortal
  289|  14.4k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  14.4k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  14.4k|        return;
  291|  14.4k|    }
  292|  3.35k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  3.35k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  3.35k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  3.35k|#endif
  308|  3.35k|}
typeobject.c:Py_DECREF:
  418|  13.6k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  13.6k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  13.6k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  13.6k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  13.6k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 3.04k, False: 10.6k]
  |  |  ------------------
  ------------------
  422|  3.04k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  3.04k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  3.04k|        return;
  424|  3.04k|    }
  425|  10.6k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  10.6k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  10.6k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 859, False: 9.77k]
  ------------------
  427|    859|        _Py_Dealloc(op);
  428|    859|    }
  429|  10.6k|}
typeobject.c:_Py_IsImmortal:
  127|  49.2k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  49.2k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  49.2k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  49.2k|}
typeobject.c:_Py_REFCNT:
  105|    978|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|    978|    #if !defined(Py_GIL_DISABLED)
  107|    978|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|    978|    }
typeobject.c:_Py_IsStaticImmortal:
  141|  45.4k|{
  142|  45.4k|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|  45.4k|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|  45.4k|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|  45.4k|}
typeobject.c:Py_XDECREF:
  518|  3.01k|{
  519|  3.01k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  3.01k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 680, False: 2.33k]
  ------------------
  520|    680|        Py_DECREF(op);
  ------------------
  |  |  430|    680|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    680|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    680|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    680|    }
  522|  3.01k|}
unicode_writer.c:Py_DECREF:
  418|  1.95k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  1.95k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  1.95k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.95k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.95k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 1.95k]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|  1.95k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.95k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  1.95k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 1.95k, False: 0]
  ------------------
  427|  1.95k|        _Py_Dealloc(op);
  428|  1.95k|    }
  429|  1.95k|}
unicode_writer.c:_Py_IsImmortal:
  127|  1.95k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.95k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.95k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.95k|}
unicodeobject.c:Py_DECREF:
  418|  30.8k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  30.8k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  30.8k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  30.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  30.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 146, False: 30.7k]
  |  |  ------------------
  ------------------
  422|    146|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    146|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    146|        return;
  424|    146|    }
  425|  30.7k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  30.7k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  30.7k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 9.72k, False: 20.9k]
  ------------------
  427|  9.72k|        _Py_Dealloc(op);
  428|  9.72k|    }
  429|  30.7k|}
unicodeobject.c:_Py_IsImmortal:
  127|  85.5k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  85.5k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  85.5k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  85.5k|}
unicodeobject.c:_Py_REFCNT:
  105|  3.86k|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|  3.86k|    #if !defined(Py_GIL_DISABLED)
  107|  3.86k|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|  3.86k|    }
unicodeobject.c:_Py_NewRef:
  535|  5.66k|{
  536|  5.66k|    Py_INCREF(obj);
  ------------------
  |  |  310|  5.66k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.66k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.66k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  5.66k|    return obj;
  538|  5.66k|}
unicodeobject.c:Py_XDECREF:
  518|  3.34k|{
  519|  3.34k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  3.34k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 140, False: 3.20k]
  ------------------
  520|    140|        Py_DECREF(op);
  ------------------
  |  |  430|    140|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    140|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    140|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    140|    }
  522|  3.34k|}
unicodeobject.c:Py_INCREF:
  256|  33.3k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  33.3k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  33.3k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 33.1k, False: 194]
  ------------------
  288|       |        // the object is immortal
  289|  33.1k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  33.1k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  33.1k|        return;
  291|  33.1k|    }
  292|    194|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    194|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    194|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    194|#endif
  308|    194|}
weakrefobject.c:Py_INCREF:
  256|    668|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    668|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    668|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 172, False: 496]
  ------------------
  288|       |        // the object is immortal
  289|    172|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    172|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    172|        return;
  291|    172|    }
  292|    496|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    496|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    496|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    496|#endif
  308|    496|}
weakrefobject.c:_Py_XNewRef:
  541|    944|{
  542|    944|    Py_XINCREF(obj);
  ------------------
  |  |  514|    944|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    944|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    944|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|    944|    return obj;
  544|    944|}
weakrefobject.c:Py_XINCREF:
  508|    944|{
  509|    944|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    944|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 212, False: 732]
  ------------------
  510|    212|        Py_INCREF(op);
  ------------------
  |  |  310|    212|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    212|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    212|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|    212|    }
  512|    944|}
weakrefobject.c:Py_DECREF:
  418|    374|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    374|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    374|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    374|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    374|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 250, False: 124]
  |  |  ------------------
  ------------------
  422|    250|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    250|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    250|        return;
  424|    250|    }
  425|    124|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    124|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    124|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 124, False: 0]
  ------------------
  427|    124|        _Py_Dealloc(op);
  428|    124|    }
  429|    124|}
weakrefobject.c:_Py_IsImmortal:
  127|    374|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    374|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    374|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    374|}
weakrefobject.c:_Py_REFCNT:
  105|    872|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|    872|    #if !defined(Py_GIL_DISABLED)
  107|    872|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|    872|    }
weakrefobject.c:Py_XDECREF:
  518|    250|{
  519|    250|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    250|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 16, False: 234]
  ------------------
  520|     16|        Py_DECREF(op);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|     16|    }
  522|    250|}
_warnings.c:_Py_NewRef:
  535|      8|{
  536|      8|    Py_INCREF(obj);
  ------------------
  |  |  310|      8|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      8|    return obj;
  538|      8|}
_warnings.c:Py_INCREF:
  256|      8|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      8|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      8|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 8, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|      8|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      8|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      8|        return;
  291|      8|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
_warnings.c:Py_DECREF:
  418|     10|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     10|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     10|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 10, False: 0]
  |  |  ------------------
  ------------------
  422|     10|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     10|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     10|        return;
  424|     10|    }
  425|      0|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      0|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 0]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      0|}
_warnings.c:_Py_IsImmortal:
  127|     10|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     10|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     10|}
bltinmodule.c:Py_XDECREF:
  518|    678|{
  519|    678|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    678|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 530, False: 148]
  ------------------
  520|    530|        Py_DECREF(op);
  ------------------
  |  |  430|    530|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    530|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    530|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    530|    }
  522|    678|}
bltinmodule.c:_Py_NewRef:
  535|    128|{
  536|    128|    Py_INCREF(obj);
  ------------------
  |  |  310|    128|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|    128|    return obj;
  538|    128|}
bltinmodule.c:Py_INCREF:
  256|    316|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    316|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    316|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 174, False: 142]
  ------------------
  288|       |        // the object is immortal
  289|    174|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    174|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    174|        return;
  291|    174|    }
  292|    142|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    142|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    142|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    142|#endif
  308|    142|}
bltinmodule.c:_Py_XNewRef:
  541|     12|{
  542|     12|    Py_XINCREF(obj);
  ------------------
  |  |  514|     12|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|     12|    return obj;
  544|     12|}
bltinmodule.c:Py_XINCREF:
  508|     12|{
  509|     12|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     12|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 12, False: 0]
  ------------------
  510|     12|        Py_INCREF(op);
  ------------------
  |  |  310|     12|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|     12|    }
  512|     12|}
bltinmodule.c:_Py_IsImmortal:
  127|  1.13k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.13k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.13k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.13k|}
bltinmodule.c:Py_DECREF:
  418|  1.13k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  1.13k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  1.13k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.13k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.13k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 420, False: 712]
  |  |  ------------------
  ------------------
  422|    420|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    420|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    420|        return;
  424|    420|    }
  425|    712|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    712|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    712|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 382, False: 330]
  ------------------
  427|    382|        _Py_Dealloc(op);
  428|    382|    }
  429|    712|}
ceval.c:_Py_IsImmortal:
  127|  28.2k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  28.2k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  28.2k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  28.2k|}
ceval.c:_Py_NewRef:
  535|  4.43k|{
  536|  4.43k|    Py_INCREF(obj);
  ------------------
  |  |  310|  4.43k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.43k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.43k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  4.43k|    return obj;
  538|  4.43k|}
ceval.c:_Py_IsStaticImmortal:
  141|  38.1k|{
  142|  38.1k|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|  38.1k|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|  38.1k|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|  38.1k|}
ceval.c:_Py_REFCNT:
  105|     34|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|     34|    #if !defined(Py_GIL_DISABLED)
  107|     34|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|     34|    }
ceval.c:Py_INCREF:
  256|  5.83k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  5.83k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  5.83k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 3.54k, False: 2.29k]
  ------------------
  288|       |        // the object is immortal
  289|  3.54k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  3.54k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  3.54k|        return;
  291|  3.54k|    }
  292|  2.29k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  2.29k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  2.29k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  2.29k|#endif
  308|  2.29k|}
ceval.c:Py_XDECREF:
  518|    182|{
  519|    182|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    182|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 18, False: 164]
  ------------------
  520|     18|        Py_DECREF(op);
  ------------------
  |  |  430|     18|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|     18|    }
  522|    182|}
ceval.c:Py_DECREF:
  418|     18|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     18|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     18|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 18]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|     18|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     18|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     18|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 4, False: 14]
  ------------------
  427|      4|        _Py_Dealloc(op);
  428|      4|    }
  429|     18|}
ceval.c:Py_XINCREF:
  508|  1.22k|{
  509|  1.22k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  1.22k|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 582, False: 638]
  ------------------
  510|    582|        Py_INCREF(op);
  ------------------
  |  |  310|    582|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    582|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    582|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|    582|    }
  512|  1.22k|}
ceval.c:_Py_XNewRef:
  541|    382|{
  542|    382|    Py_XINCREF(obj);
  ------------------
  |  |  514|    382|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    382|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    382|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|    382|    return obj;
  544|    382|}
codecs.c:Py_DECREF:
  418|     44|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     44|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     44|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 18, False: 26]
  |  |  ------------------
  ------------------
  422|     18|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     18|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     18|        return;
  424|     18|    }
  425|     26|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     26|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     26|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 26]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     26|}
codecs.c:_Py_IsImmortal:
  127|     44|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     44|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     44|}
context.c:_Py_NewRef:
  535|      2|{
  536|      2|    Py_INCREF(obj);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      2|    return obj;
  538|      2|}
context.c:Py_INCREF:
  256|      2|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      2|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      2|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 2]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|      2|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      2|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      2|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      2|#endif
  308|      2|}
context.c:Py_DECREF:
  418|      4|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      4|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      4|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 2, False: 2]
  |  |  ------------------
  ------------------
  422|      2|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      2|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      2|        return;
  424|      2|    }
  425|      2|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      2|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      2|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 2]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      2|}
context.c:_Py_IsImmortal:
  127|      4|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|      4|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|      4|}
context.c:Py_XINCREF:
  508|      2|{
  509|      2|    if (op != _Py_NULL) {
  ------------------
  |  |   57|      2|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 0, False: 2]
  ------------------
  510|      0|        Py_INCREF(op);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|      0|    }
  512|      2|}
context.c:_Py_XNewRef:
  541|      2|{
  542|      2|    Py_XINCREF(obj);
  ------------------
  |  |  514|      2|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|      2|    return obj;
  544|      2|}
errors.c:Py_XDECREF:
  518|  17.8k|{
  519|  17.8k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  17.8k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 7.44k, False: 10.3k]
  ------------------
  520|  7.44k|        Py_DECREF(op);
  ------------------
  |  |  430|  7.44k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  7.44k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.44k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|  7.44k|    }
  522|  17.8k|}
errors.c:Py_DECREF:
  418|  15.2k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  15.2k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  15.2k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 3.90k, False: 11.3k]
  |  |  ------------------
  ------------------
  422|  3.90k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  3.90k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  3.90k|        return;
  424|  3.90k|    }
  425|  11.3k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  11.3k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  11.3k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 3.72k, False: 7.58k]
  ------------------
  427|  3.72k|        _Py_Dealloc(op);
  428|  3.72k|    }
  429|  11.3k|}
errors.c:_Py_IsImmortal:
  127|  15.2k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  15.2k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  15.2k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  15.2k|}
errors.c:Py_XINCREF:
  508|  3.88k|{
  509|  3.88k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  3.88k|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 3.88k, False: 0]
  ------------------
  510|  3.88k|        Py_INCREF(op);
  ------------------
  |  |  310|  3.88k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|  3.88k|    }
  512|  3.88k|}
errors.c:Py_INCREF:
  256|  7.79k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  7.79k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  7.79k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 3.90k, False: 3.88k]
  ------------------
  288|       |        // the object is immortal
  289|  3.90k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  3.90k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  3.90k|        return;
  291|  3.90k|    }
  292|  3.88k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  3.88k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  3.88k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  3.88k|#endif
  308|  3.88k|}
errors.c:_Py_NewRef:
  535|  3.88k|{
  536|  3.88k|    Py_INCREF(obj);
  ------------------
  |  |  310|  3.88k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  3.88k|    return obj;
  538|  3.88k|}
frame.c:_Py_IsStaticImmortal:
  141|  8.77k|{
  142|  8.77k|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|  8.77k|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|  8.77k|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|  8.77k|}
frame.c:Py_DECREF:
  418|    386|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    386|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    386|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    386|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    386|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 386]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|    386|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    386|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    386|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 158, False: 228]
  ------------------
  427|    158|        _Py_Dealloc(op);
  428|    158|    }
  429|    386|}
frame.c:_Py_IsImmortal:
  127|    428|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    428|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    428|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    428|}
frame.c:_Py_REFCNT:
  105|    186|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|    186|    #if !defined(Py_GIL_DISABLED)
  107|    186|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|    186|    }
frame.c:Py_INCREF:
  256|     40|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     40|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     40|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 40]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|     40|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|     40|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     40|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|     40|#endif
  308|     40|}
frame.c:_Py_NewRef:
  535|     28|{
  536|     28|    Py_INCREF(obj);
  ------------------
  |  |  310|     28|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     28|    return obj;
  538|     28|}
gc.c:Py_DECREF:
  418|     12|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     12|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     12|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 12]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|     12|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     12|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     12|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 10, False: 2]
  ------------------
  427|     10|        _Py_Dealloc(op);
  428|     10|    }
  429|     12|}
gc.c:_Py_IsImmortal:
  127|  20.0k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  20.0k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  20.0k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  20.0k|}
gc.c:Py_INCREF:
  256|  9.91k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  9.91k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  9.91k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 9.88k, False: 32]
  ------------------
  288|       |        // the object is immortal
  289|  9.88k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  9.88k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  9.88k|        return;
  291|  9.88k|    }
  292|     32|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|     32|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     32|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|     32|#endif
  308|     32|}
gc.c:_Py_REFCNT:
  105|  10.1k|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|  10.1k|    #if !defined(Py_GIL_DISABLED)
  107|  10.1k|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|  10.1k|    }
gc.c:Py_XDECREF:
  518|      8|{
  519|      8|    if (op != _Py_NULL) {
  ------------------
  |  |   57|      8|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 0, False: 8]
  ------------------
  520|      0|        Py_DECREF(op);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      0|    }
  522|      8|}
getargs.c:_Py_NewRef:
  535|      4|{
  536|      4|    Py_INCREF(obj);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      4|    return obj;
  538|      4|}
getargs.c:Py_INCREF:
  256|      4|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      4|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      4|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 2, False: 2]
  ------------------
  288|       |        // the object is immortal
  289|      2|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      2|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      2|        return;
  291|      2|    }
  292|      2|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      2|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      2|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      2|#endif
  308|      2|}
getargs.c:Py_DECREF:
  418|     18|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     18|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     18|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 6, False: 12]
  |  |  ------------------
  ------------------
  422|      6|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      6|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      6|        return;
  424|      6|    }
  425|     12|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     12|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     12|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 12]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     12|}
getargs.c:_Py_IsImmortal:
  127|     18|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     18|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     18|}
import.c:Py_INCREF:
  256|    630|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    630|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    630|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 142, False: 488]
  ------------------
  288|       |        // the object is immortal
  289|    142|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    142|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    142|        return;
  291|    142|    }
  292|    488|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    488|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    488|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    488|#endif
  308|    488|}
import.c:Py_DECREF:
  418|  1.18k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  1.18k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  1.18k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.18k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.18k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 182, False: 998]
  |  |  ------------------
  ------------------
  422|    182|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    182|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    182|        return;
  424|    182|    }
  425|    998|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    998|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    998|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 62, False: 936]
  ------------------
  427|     62|        _Py_Dealloc(op);
  428|     62|    }
  429|    998|}
import.c:_Py_IsImmortal:
  127|  1.18k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.18k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.18k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.18k|}
import.c:Py_XDECREF:
  518|    544|{
  519|    544|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    544|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 424, False: 120]
  ------------------
  520|    424|        Py_DECREF(op);
  ------------------
  |  |  430|    424|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    424|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    424|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    424|    }
  522|    544|}
import.c:_Py_REFCNT:
  105|      2|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|      2|    #if !defined(Py_GIL_DISABLED)
  107|      2|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|      2|    }
import.c:Py_XINCREF:
  508|     16|{
  509|     16|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     16|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 4, False: 12]
  ------------------
  510|      4|        Py_INCREF(op);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|      4|    }
  512|     16|}
import.c:_Py_NewRef:
  535|    322|{
  536|    322|    Py_INCREF(obj);
  ------------------
  |  |  310|    322|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    322|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    322|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|    322|    return obj;
  538|    322|}
import.c:_Py_XNewRef:
  541|     16|{
  542|     16|    Py_XINCREF(obj);
  ------------------
  |  |  514|     16|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|     16|    return obj;
  544|     16|}
importdl.c:Py_DECREF:
  418|     48|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     48|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     48|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 22, False: 26]
  |  |  ------------------
  ------------------
  422|     22|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     22|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     22|        return;
  424|     22|    }
  425|     26|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     26|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     26|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 24, False: 2]
  ------------------
  427|     24|        _Py_Dealloc(op);
  428|     24|    }
  429|     26|}
importdl.c:_Py_IsImmortal:
  127|     48|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     48|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     48|}
importdl.c:_Py_NewRef:
  535|     24|{
  536|     24|    Py_INCREF(obj);
  ------------------
  |  |  310|     24|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     24|    return obj;
  538|     24|}
importdl.c:Py_INCREF:
  256|     24|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     24|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     24|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 22, False: 2]
  ------------------
  288|       |        // the object is immortal
  289|     22|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     22|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     22|        return;
  291|     22|    }
  292|      2|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      2|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      2|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      2|#endif
  308|      2|}
initconfig.c:Py_DECREF:
  418|    284|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    284|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    284|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    284|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    284|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 230, False: 54]
  |  |  ------------------
  ------------------
  422|    230|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    230|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    230|        return;
  424|    230|    }
  425|     54|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     54|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     54|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 54]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     54|}
initconfig.c:_Py_IsImmortal:
  127|    284|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    284|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    284|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    284|}
initconfig.c:_Py_NewRef:
  535|     32|{
  536|     32|    Py_INCREF(obj);
  ------------------
  |  |  310|     32|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     32|    return obj;
  538|     32|}
initconfig.c:Py_INCREF:
  256|     32|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     32|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     32|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 32, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|     32|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     32|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     32|        return;
  291|     32|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
instrumentation.c:Py_DECREF:
  418|     48|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     48|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     48|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 30, False: 18]
  |  |  ------------------
  ------------------
  422|     30|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     30|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     30|        return;
  424|     30|    }
  425|     18|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     18|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     18|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 18]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     18|}
instrumentation.c:_Py_IsImmortal:
  127|     48|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     48|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     48|}
intrinsics.c:Py_DECREF:
  418|  2.02k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  2.02k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  2.02k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.02k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.02k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 1.02k, False: 1.00k]
  |  |  ------------------
  ------------------
  422|  1.02k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  1.02k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  1.02k|        return;
  424|  1.02k|    }
  425|  1.00k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.00k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  1.00k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 6, False: 996]
  ------------------
  427|      6|        _Py_Dealloc(op);
  428|      6|    }
  429|  1.00k|}
intrinsics.c:_Py_IsImmortal:
  127|  2.02k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  2.02k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  2.02k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  2.02k|}
intrinsics.c:Py_XDECREF:
  518|    978|{
  519|    978|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    978|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 978, False: 0]
  ------------------
  520|    978|        Py_DECREF(op);
  ------------------
  |  |  430|    978|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    978|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    978|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    978|    }
  522|    978|}
intrinsics.c:_Py_REFCNT:
  105|      8|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|      8|    #if !defined(Py_GIL_DISABLED)
  107|      8|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|      8|    }
marshal.c:Py_XDECREF:
  518|  15.1k|{
  519|  15.1k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  15.1k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 15.1k, False: 0]
  ------------------
  520|  15.1k|        Py_DECREF(op);
  ------------------
  |  |  430|  15.1k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|  15.1k|    }
  522|  15.1k|}
marshal.c:_Py_NewRef:
  535|  15.7k|{
  536|  15.7k|    Py_INCREF(obj);
  ------------------
  |  |  310|  15.7k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  15.7k|    return obj;
  538|  15.7k|}
marshal.c:Py_INCREF:
  256|  15.7k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  15.7k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  15.7k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 14.1k, False: 1.58k]
  ------------------
  288|       |        // the object is immortal
  289|  14.1k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  14.1k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  14.1k|        return;
  291|  14.1k|    }
  292|  1.58k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  1.58k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  1.58k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  1.58k|#endif
  308|  1.58k|}
marshal.c:Py_DECREF:
  418|  15.2k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  15.2k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  15.2k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 6.22k, False: 8.99k]
  |  |  ------------------
  ------------------
  422|  6.22k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  6.22k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  6.22k|        return;
  424|  6.22k|    }
  425|  8.99k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  8.99k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  8.99k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 32, False: 8.96k]
  ------------------
  427|     32|        _Py_Dealloc(op);
  428|     32|    }
  429|  8.99k|}
marshal.c:_Py_IsImmortal:
  127|  15.2k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  15.2k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  15.2k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  15.2k|}
modsupport.c:Py_INCREF:
  256|    184|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    184|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    184|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 58, False: 126]
  ------------------
  288|       |        // the object is immortal
  289|     58|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     58|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     58|        return;
  291|     58|    }
  292|    126|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    126|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    126|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    126|#endif
  308|    126|}
modsupport.c:Py_XDECREF:
  518|    508|{
  519|    508|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    508|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 508, False: 0]
  ------------------
  520|    508|        Py_DECREF(op);
  ------------------
  |  |  430|    508|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    508|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    508|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    508|    }
  522|    508|}
modsupport.c:Py_DECREF:
  418|    512|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    512|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    512|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    512|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    512|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 346, False: 166]
  |  |  ------------------
  ------------------
  422|    346|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    346|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    346|        return;
  424|    346|    }
  425|    166|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    166|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    166|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 166]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|    166|}
modsupport.c:_Py_IsImmortal:
  127|    512|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    512|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    512|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    512|}
pylifecycle.c:_Py_NewRef:
  535|      2|{
  536|      2|    Py_INCREF(obj);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      2|    return obj;
  538|      2|}
pylifecycle.c:Py_INCREF:
  256|      2|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      2|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      2|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 2]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|      2|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      2|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      2|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      2|#endif
  308|      2|}
pylifecycle.c:Py_DECREF:
  418|     72|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     72|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     72|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 14, False: 58]
  |  |  ------------------
  ------------------
  422|     14|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     14|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     14|        return;
  424|     14|    }
  425|     58|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     58|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     58|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 6, False: 52]
  ------------------
  427|      6|        _Py_Dealloc(op);
  428|      6|    }
  429|     58|}
pylifecycle.c:_Py_IsImmortal:
  127|     72|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     72|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     72|}
pylifecycle.c:Py_XDECREF:
  518|     12|{
  519|     12|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     12|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 12, False: 0]
  ------------------
  520|     12|        Py_DECREF(op);
  ------------------
  |  |  430|     12|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|     12|    }
  522|     12|}
specialize.c:Py_XDECREF:
  518|    492|{
  519|    492|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    492|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 200, False: 292]
  ------------------
  520|    200|        Py_DECREF(op);
  ------------------
  |  |  430|    200|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    200|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    200|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    200|    }
  522|    492|}
specialize.c:Py_DECREF:
  418|    210|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    210|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    210|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    210|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 4, False: 206]
  |  |  ------------------
  ------------------
  422|      4|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      4|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      4|        return;
  424|      4|    }
  425|    206|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    206|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    206|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 206]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|    206|}
specialize.c:_Py_IsImmortal:
  127|    210|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    210|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    210|}
structmember.c:Py_INCREF:
  256|    500|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    500|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    500|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 188, False: 312]
  ------------------
  288|       |        // the object is immortal
  289|    188|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    188|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    188|        return;
  291|    188|    }
  292|    312|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    312|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    312|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    312|#endif
  308|    312|}
structmember.c:Py_XINCREF:
  508|    138|{
  509|    138|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    138|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 138, False: 0]
  ------------------
  510|    138|        Py_INCREF(op);
  ------------------
  |  |  310|    138|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|    138|    }
  512|    138|}
structmember.c:Py_DECREF:
  418|     38|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     38|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     38|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     38|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     38|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 26, False: 12]
  |  |  ------------------
  ------------------
  422|     26|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     26|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     26|        return;
  424|     26|    }
  425|     12|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     12|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     12|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 12]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     12|}
structmember.c:_Py_IsImmortal:
  127|     38|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     38|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     38|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     38|}
structmember.c:_Py_XNewRef:
  541|    130|{
  542|    130|    Py_XINCREF(obj);
  ------------------
  |  |  514|    130|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    130|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    130|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|    130|    return obj;
  544|    130|}
structmember.c:Py_XDECREF:
  518|    130|{
  519|    130|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    130|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 38, False: 92]
  ------------------
  520|     38|        Py_DECREF(op);
  ------------------
  |  |  430|     38|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     38|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     38|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|     38|    }
  522|    130|}
symtable.c:_Py_NewRef:
  535|     10|{
  536|     10|    Py_INCREF(obj);
  ------------------
  |  |  310|     10|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     10|    return obj;
  538|     10|}
symtable.c:Py_INCREF:
  256|     10|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     10|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     10|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 10, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|     10|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     10|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     10|        return;
  291|     10|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
sysmodule.c:Py_XDECREF:
  518|    142|{
  519|    142|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    142|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 98, False: 44]
  ------------------
  520|     98|        Py_DECREF(op);
  ------------------
  |  |  430|     98|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     98|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     98|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|     98|    }
  522|    142|}
sysmodule.c:Py_DECREF:
  418|    298|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    298|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    298|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    298|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    298|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 142, False: 156]
  |  |  ------------------
  ------------------
  422|    142|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    142|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    142|        return;
  424|    142|    }
  425|    156|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    156|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    156|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 58, False: 98]
  ------------------
  427|     58|        _Py_Dealloc(op);
  428|     58|    }
  429|    156|}
sysmodule.c:_Py_IsImmortal:
  127|    298|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    298|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    298|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    298|}
sysmodule.c:_Py_XNewRef:
  541|      2|{
  542|      2|    Py_XINCREF(obj);
  ------------------
  |  |  514|      2|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|      2|    return obj;
  544|      2|}
sysmodule.c:Py_XINCREF:
  508|      2|{
  509|      2|    if (op != _Py_NULL) {
  ------------------
  |  |   57|      2|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 2, False: 0]
  ------------------
  510|      2|        Py_INCREF(op);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|      2|    }
  512|      2|}
sysmodule.c:Py_INCREF:
  256|     96|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     96|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     96|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 88, False: 8]
  ------------------
  288|       |        // the object is immortal
  289|     88|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     88|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     88|        return;
  291|     88|    }
  292|      8|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      8|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      8|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      8|#endif
  308|      8|}
sysmodule.c:_Py_NewRef:
  535|     94|{
  536|     94|    Py_INCREF(obj);
  ------------------
  |  |  310|     94|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     94|    return obj;
  538|     94|}
traceback.c:Py_INCREF:
  256|    224|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    224|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    224|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 224]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|    224|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    224|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    224|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    224|#endif
  308|    224|}
traceback.c:Py_XINCREF:
  508|    408|{
  509|    408|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    408|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 224, False: 184]
  ------------------
  510|    224|        Py_INCREF(op);
  ------------------
  |  |  310|    224|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    224|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    224|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|    224|    }
  512|    408|}
traceback.c:_Py_XNewRef:
  541|    408|{
  542|    408|    Py_XINCREF(obj);
  ------------------
  |  |  514|    408|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    408|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    408|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|    408|    return obj;
  544|    408|}
traceback.c:Py_XDECREF:
  518|    816|{
  519|    816|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    816|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 448, False: 368]
  ------------------
  520|    448|        Py_DECREF(op);
  ------------------
  |  |  430|    448|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    448|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    448|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    448|    }
  522|    816|}
traceback.c:Py_DECREF:
  418|    448|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    448|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    448|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    448|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    448|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 448]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|    448|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    448|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    448|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 48, False: 400]
  ------------------
  427|     48|        _Py_Dealloc(op);
  428|     48|    }
  429|    448|}
traceback.c:_Py_IsImmortal:
  127|    448|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    448|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    448|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    448|}
posixmodule.c:Py_DECREF:
  418|  1.21k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  1.21k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  1.21k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.21k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.21k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 338, False: 878]
  |  |  ------------------
  ------------------
  422|    338|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    338|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    338|        return;
  424|    338|    }
  425|    878|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    878|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    878|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 46, False: 832]
  ------------------
  427|     46|        _Py_Dealloc(op);
  428|     46|    }
  429|    878|}
posixmodule.c:_Py_IsImmortal:
  127|  1.21k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  1.21k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  1.21k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  1.21k|}
posixmodule.c:_Py_NewRef:
  535|     80|{
  536|     80|    Py_INCREF(obj);
  ------------------
  |  |  310|     80|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     80|    return obj;
  538|     80|}
posixmodule.c:Py_INCREF:
  256|    136|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    136|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    136|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 12, False: 124]
  ------------------
  288|       |        // the object is immortal
  289|     12|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     12|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     12|        return;
  291|     12|    }
  292|    124|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    124|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    124|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    124|#endif
  308|    124|}
_datetimemodule.c:Py_INCREF:
  256|     12|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     12|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     12|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 8, False: 4]
  ------------------
  288|       |        // the object is immortal
  289|      8|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      8|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      8|        return;
  291|      8|    }
  292|      4|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      4|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      4|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      4|#endif
  308|      4|}
_datetimemodule.c:_Py_NewRef:
  535|      4|{
  536|      4|    Py_INCREF(obj);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      4|    return obj;
  538|      4|}
_datetimemodule.c:Py_DECREF:
  418|     32|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     32|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     32|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 32]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|     32|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     32|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     32|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 32]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     32|}
_datetimemodule.c:_Py_IsImmortal:
  127|     40|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     40|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     40|}
_datetimemodule.c:_Py_XNewRef:
  541|      4|{
  542|      4|    Py_XINCREF(obj);
  ------------------
  |  |  514|      4|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|      4|    return obj;
  544|      4|}
_datetimemodule.c:Py_XINCREF:
  508|      4|{
  509|      4|    if (op != _Py_NULL) {
  ------------------
  |  |   57|      4|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 0, False: 4]
  ------------------
  510|      0|        Py_INCREF(op);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|      0|    }
  512|      4|}
errnomodule.c:Py_DECREF:
  333|    550|static inline void Py_DECREF(PyObject *op) {
  334|    550|#  if Py_LIMITED_API+0 >= 0x030a00A7
  335|    550|    _Py_DecRef(op);
  336|       |#  else
  337|       |    Py_DecRef(op);
  338|       |#  endif
  339|    550|}
_iomodule.c:Py_DECREF:
  418|     40|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     40|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     40|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 22, False: 18]
  |  |  ------------------
  ------------------
  422|     22|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     22|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     22|        return;
  424|     22|    }
  425|     18|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     18|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     18|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 12, False: 6]
  ------------------
  427|     12|        _Py_Dealloc(op);
  428|     12|    }
  429|     18|}
_iomodule.c:_Py_IsImmortal:
  127|     40|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     40|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     40|}
_iomodule.c:_Py_NewRef:
  535|      6|{
  536|      6|    Py_INCREF(obj);
  ------------------
  |  |  310|      6|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      6|    return obj;
  538|      6|}
_iomodule.c:Py_INCREF:
  256|      6|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      6|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      6|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 6, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|      6|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      6|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      6|        return;
  291|      6|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
iobase.c:Py_DECREF:
  418|      6|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      6|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      6|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 6, False: 0]
  |  |  ------------------
  ------------------
  422|      6|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      6|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      6|        return;
  424|      6|    }
  425|      0|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      0|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 0]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      0|}
iobase.c:_Py_IsImmortal:
  127|      6|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|      6|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|      6|}
bufferedio.c:Py_DECREF:
  418|     16|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     16|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     16|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 10, False: 6]
  |  |  ------------------
  ------------------
  422|     10|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     10|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     10|        return;
  424|     10|    }
  425|      6|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      6|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      6|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 6]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      6|}
bufferedio.c:_Py_IsImmortal:
  127|     16|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     16|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     16|}
bufferedio.c:Py_XDECREF:
  518|      6|{
  519|      6|    if (op != _Py_NULL) {
  ------------------
  |  |   57|      6|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 0, False: 6]
  ------------------
  520|      0|        Py_DECREF(op);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      0|    }
  522|      6|}
bufferedio.c:_Py_NewRef:
  535|      2|{
  536|      2|    Py_INCREF(obj);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      2|    return obj;
  538|      2|}
bufferedio.c:Py_INCREF:
  256|      6|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      6|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      6|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 6]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|      6|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      6|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      6|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      6|#endif
  308|      6|}
textio.c:_Py_NewRef:
  535|     12|{
  536|     12|    Py_INCREF(obj);
  ------------------
  |  |  310|     12|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     12|    return obj;
  538|     12|}
textio.c:Py_INCREF:
  256|     12|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     12|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     12|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 12]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|     12|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|     12|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     12|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|     12|#endif
  308|     12|}
textio.c:Py_DECREF:
  418|     34|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     34|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     34|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 24, False: 10]
  |  |  ------------------
  ------------------
  422|     24|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     24|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     24|        return;
  424|     24|    }
  425|     10|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     10|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     10|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 10]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     10|}
textio.c:_Py_IsImmortal:
  127|     34|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     34|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     34|}
textio.c:Py_XDECREF:
  518|     10|{
  519|     10|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     10|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 4, False: 6]
  ------------------
  520|      4|        Py_DECREF(op);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|      4|    }
  522|     10|}
_threadmodule.c:Py_DECREF:
  418|     96|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     96|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     96|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     96|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     96|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 96]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|     96|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     96|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     96|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 96]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|     96|}
_threadmodule.c:_Py_IsImmortal:
  127|     96|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     96|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     96|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     96|}
_abc.c:Py_INCREF:
  256|    696|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    696|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    696|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 696, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|    696|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    696|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    696|        return;
  291|    696|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
_abc.c:Py_DECREF:
  418|  2.30k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  2.30k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  2.30k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.30k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.30k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 752, False: 1.55k]
  |  |  ------------------
  ------------------
  422|    752|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    752|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    752|        return;
  424|    752|    }
  425|  1.55k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.55k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  1.55k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 220, False: 1.33k]
  ------------------
  427|    220|        _Py_Dealloc(op);
  428|    220|    }
  429|  1.55k|}
_abc.c:_Py_IsImmortal:
  127|  2.30k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  2.30k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  2.30k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  2.30k|}
_abc.c:Py_XDECREF:
  518|    296|{
  519|    296|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    296|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 210, False: 86]
  ------------------
  520|    210|        Py_DECREF(op);
  ------------------
  |  |  430|    210|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    210|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    210|    }
  522|    296|}
_abc.c:_Py_NewRef:
  535|     68|{
  536|     68|    Py_INCREF(obj);
  ------------------
  |  |  310|     68|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     68|    return obj;
  538|     68|}
_abc.c:_Py_XNewRef:
  541|     68|{
  542|     68|    Py_XINCREF(obj);
  ------------------
  |  |  514|     68|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|     68|    return obj;
  544|     68|}
_abc.c:Py_XINCREF:
  508|     68|{
  509|     68|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     68|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 68, False: 0]
  ------------------
  510|     68|        Py_INCREF(op);
  ------------------
  |  |  310|     68|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|     68|    }
  512|     68|}
getpath.c:Py_DECREF:
  418|     64|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     64|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     64|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 24, False: 40]
  |  |  ------------------
  ------------------
  422|     24|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     24|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     24|        return;
  424|     24|    }
  425|     40|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     40|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     40|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 2, False: 38]
  ------------------
  427|      2|        _Py_Dealloc(op);
  428|      2|    }
  429|     40|}
getpath.c:_Py_IsImmortal:
  127|     64|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     64|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     64|}
getpath.c:_Py_NewRef:
  535|     16|{
  536|     16|    Py_INCREF(obj);
  ------------------
  |  |  310|     16|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     16|    return obj;
  538|     16|}
getpath.c:Py_INCREF:
  256|     36|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     36|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     36|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 36, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|     36|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     36|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     36|        return;
  291|     36|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
getpath.c:_Py_XNewRef:
  541|     20|{
  542|     20|    Py_XINCREF(obj);
  ------------------
  |  |  514|     20|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|     20|    return obj;
  544|     20|}
getpath.c:Py_XINCREF:
  508|     20|{
  509|     20|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     20|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 20, False: 0]
  ------------------
  510|     20|        Py_INCREF(op);
  ------------------
  |  |  310|     20|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|     20|    }
  512|     20|}
abstract.c:_Py_NewRef:
  535|  1.50k|{
  536|  1.50k|    Py_INCREF(obj);
  ------------------
  |  |  310|  1.50k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.50k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.50k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  1.50k|    return obj;
  538|  1.50k|}
abstract.c:Py_INCREF:
  256|  1.50k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  1.50k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  1.50k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 102, False: 1.40k]
  ------------------
  288|       |        // the object is immortal
  289|    102|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    102|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    102|        return;
  291|    102|    }
  292|  1.40k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  1.40k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  1.40k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  1.40k|#endif
  308|  1.40k|}
abstract.c:Py_DECREF:
  418|    602|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    602|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    602|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    602|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    602|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 338, False: 264]
  |  |  ------------------
  ------------------
  422|    338|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    338|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    338|        return;
  424|    338|    }
  425|    264|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    264|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    264|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 262, False: 2]
  ------------------
  427|    262|        _Py_Dealloc(op);
  428|    262|    }
  429|    264|}
abstract.c:_Py_IsImmortal:
  127|    602|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    602|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    602|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    602|}
bytearrayobject.c:Py_DECREF:
  418|    166|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    166|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    166|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 2, False: 164]
  |  |  ------------------
  ------------------
  422|      2|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      2|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      2|        return;
  424|      2|    }
  425|    164|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    164|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    164|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 164, False: 0]
  ------------------
  427|    164|        _Py_Dealloc(op);
  428|    164|    }
  429|    164|}
bytearrayobject.c:_Py_IsImmortal:
  127|    166|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    166|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    166|}
bytearrayobject.c:Py_XDECREF:
  518|    166|{
  519|    166|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    166|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 166, False: 0]
  ------------------
  520|    166|        Py_DECREF(op);
  ------------------
  |  |  430|    166|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    166|    }
  522|    166|}
bytearrayobject.c:_Py_NewRef:
  535|      2|{
  536|      2|    Py_INCREF(obj);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      2|    return obj;
  538|      2|}
bytearrayobject.c:Py_INCREF:
  256|      2|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|      2|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|      2|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 2]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|      2|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      2|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      2|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      2|#endif
  308|      2|}
cellobject.c:_Py_XNewRef:
  541|    370|{
  542|    370|    Py_XINCREF(obj);
  ------------------
  |  |  514|    370|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    370|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    370|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|    370|    return obj;
  544|    370|}
cellobject.c:Py_XINCREF:
  508|    370|{
  509|    370|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    370|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 192, False: 178]
  ------------------
  510|    192|        Py_INCREF(op);
  ------------------
  |  |  310|    192|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    192|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    192|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|    192|    }
  512|    370|}
cellobject.c:Py_INCREF:
  256|    192|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    192|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    192|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 192]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|    192|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    192|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    192|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    192|#endif
  308|    192|}
cellobject.c:Py_XDECREF:
  518|    326|{
  519|    326|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    326|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 312, False: 14]
  ------------------
  520|    312|        Py_DECREF(op);
  ------------------
  |  |  430|    312|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    312|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    312|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    312|    }
  522|    326|}
cellobject.c:Py_DECREF:
  418|    312|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    312|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    312|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    312|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    312|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 2, False: 310]
  |  |  ------------------
  ------------------
  422|      2|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      2|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      2|        return;
  424|      2|    }
  425|    310|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    310|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    310|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 310]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|    310|}
cellobject.c:_Py_IsImmortal:
  127|    312|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    312|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    312|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    312|}
classobject.c:_Py_NewRef:
  535|    784|{
  536|    784|    Py_INCREF(obj);
  ------------------
  |  |  310|    784|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    784|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    784|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|    784|    return obj;
  538|    784|}
classobject.c:Py_INCREF:
  256|    784|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|    784|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|    784|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 784]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|    784|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|    784|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|    784|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|    784|#endif
  308|    784|}
classobject.c:_Py_REFCNT:
  105|    392|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|    392|    #if !defined(Py_GIL_DISABLED)
  107|    392|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|    392|    }
classobject.c:Py_DECREF:
  418|    784|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    784|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    784|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    784|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    784|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 784]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|    784|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    784|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    784|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 784]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|    784|}
classobject.c:_Py_IsImmortal:
  127|    784|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    784|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    784|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    784|}
classobject.c:Py_XDECREF:
  518|    392|{
  519|    392|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    392|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 392, False: 0]
  ------------------
  520|    392|        Py_DECREF(op);
  ------------------
  |  |  430|    392|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    392|    }
  522|    392|}
codeobject.c:_Py_NewRef:
  535|  13.3k|{
  536|  13.3k|    Py_INCREF(obj);
  ------------------
  |  |  310|  13.3k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  13.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  13.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  13.3k|    return obj;
  538|  13.3k|}
codeobject.c:Py_INCREF:
  256|  13.3k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  13.3k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  13.3k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 5.89k, False: 7.47k]
  ------------------
  288|       |        // the object is immortal
  289|  5.89k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  5.89k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  5.89k|        return;
  291|  5.89k|    }
  292|  7.47k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  7.47k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  7.47k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  7.47k|#endif
  308|  7.47k|}
codeobject.c:Py_XDECREF:
  518|  3.97k|{
  519|  3.97k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  3.97k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 2.48k, False: 1.48k]
  ------------------
  520|  2.48k|        Py_DECREF(op);
  ------------------
  |  |  430|  2.48k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|  2.48k|    }
  522|  3.97k|}
codeobject.c:_Py_REFCNT:
  105|  2.86k|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|  2.86k|    #if !defined(Py_GIL_DISABLED)
  107|  2.86k|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|  2.86k|    }
codeobject.c:Py_DECREF:
  418|  2.49k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  2.49k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  2.49k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.49k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.49k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 1.20k, False: 1.28k]
  |  |  ------------------
  ------------------
  422|  1.20k|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|  1.20k|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|  1.20k|        return;
  424|  1.20k|    }
  425|  1.28k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  1.28k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  1.28k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 1.05k, False: 228]
  ------------------
  427|  1.05k|        _Py_Dealloc(op);
  428|  1.05k|    }
  429|  1.28k|}
codeobject.c:_Py_IsImmortal:
  127|  3.04k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  3.04k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  3.04k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  3.04k|}
codeobject.c:Py_SET_REFCNT:
  154|    552|static inline void Py_SET_REFCNT(PyObject *ob, Py_ssize_t refcnt) {
  155|    552|    assert(refcnt >= 0);
  ------------------
  |  Branch (155:5): [True: 552, False: 0]
  ------------------
  156|       |#if (defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030d0000) \
  157|       |    || defined(_Py_OPAQUE_PYOBJECT)
  158|       |    // Stable ABI implements Py_SET_REFCNT() as a function call
  159|       |    // on limited C API version 3.13 and newer, and abi3t.
  160|       |    _Py_SetRefcnt(ob, refcnt);
  161|       |#else
  162|       |    // This immortal check is for code that is unaware of immortal objects.
  163|       |    // The runtime tracks these objects and we should avoid as much
  164|       |    // as possible having extensions inadvertently change the refcnt
  165|       |    // of an immortalized object.
  166|    552|    if (_Py_IsImmortal(ob)) {
  ------------------
  |  |  137|    552|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    552|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    552|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 552]
  |  |  ------------------
  ------------------
  167|      0|        return;
  168|      0|    }
  169|    552|#ifndef Py_GIL_DISABLED
  170|    552|#if SIZEOF_VOID_P > 4
  171|    552|    ob->ob_refcnt = (uint32_t)refcnt;
  172|       |#else
  173|       |    ob->ob_refcnt = refcnt;
  174|       |#endif
  175|       |#else
  176|       |    if (_Py_IsOwnedByCurrentThread(ob)) {
  177|       |        if ((size_t)refcnt > (size_t)UINT32_MAX) {
  178|       |            // On overflow, make the object immortal
  179|       |            ob->ob_tid = _Py_UNOWNED_TID;
  180|       |            ob->ob_ref_local = _Py_IMMORTAL_REFCNT_LOCAL;
  181|       |            ob->ob_ref_shared = 0;
  182|       |        }
  183|       |        else {
  184|       |            // Set local refcount to desired refcount and shared refcount
  185|       |            // to zero, but preserve the shared refcount flags.
  186|       |            ob->ob_ref_local = _Py_STATIC_CAST(uint32_t, refcnt);
  187|       |            ob->ob_ref_shared &= _Py_REF_SHARED_FLAG_MASK;
  188|       |        }
  189|       |    }
  190|       |    else {
  191|       |        // Set local refcount to zero and shared refcount to desired refcount.
  192|       |        // Mark the object as merged.
  193|       |        ob->ob_tid = _Py_UNOWNED_TID;
  194|       |        ob->ob_ref_local = 0;
  195|       |        ob->ob_ref_shared = _Py_REF_SHARED(refcnt, _Py_REF_MERGED);
  196|       |    }
  197|       |#endif  // Py_GIL_DISABLED
  198|    552|#endif  // Py_LIMITED_API
  199|    552|}
descrobject.c:Py_XDECREF:
  518|    292|{
  519|    292|    if (op != _Py_NULL) {
  ------------------
  |  |   57|    292|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 128, False: 164]
  ------------------
  520|    128|        Py_DECREF(op);
  ------------------
  |  |  430|    128|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    128|    }
  522|    292|}
descrobject.c:Py_DECREF:
  418|    444|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    444|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    444|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    444|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    444|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 98, False: 346]
  |  |  ------------------
  ------------------
  422|     98|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     98|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     98|        return;
  424|     98|    }
  425|    346|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    346|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    346|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 76, False: 270]
  ------------------
  427|     76|        _Py_Dealloc(op);
  428|     76|    }
  429|    346|}
descrobject.c:_Py_IsImmortal:
  127|    444|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    444|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    444|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    444|}
descrobject.c:_Py_XNewRef:
  541|  4.81k|{
  542|  4.81k|    Py_XINCREF(obj);
  ------------------
  |  |  514|  4.81k|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.81k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.81k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|  4.81k|    return obj;
  544|  4.81k|}
descrobject.c:Py_XINCREF:
  508|  4.81k|{
  509|  4.81k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  4.81k|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 4.79k, False: 20]
  ------------------
  510|  4.79k|        Py_INCREF(op);
  ------------------
  |  |  310|  4.79k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.79k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.79k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|  4.79k|    }
  512|  4.81k|}
descrobject.c:Py_INCREF:
  256|  5.01k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  5.01k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  5.01k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 3.79k, False: 1.21k]
  ------------------
  288|       |        // the object is immortal
  289|  3.79k|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|  3.79k|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|  3.79k|        return;
  291|  3.79k|    }
  292|  1.21k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  1.21k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  1.21k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  1.21k|#endif
  308|  1.21k|}
descrobject.c:_Py_NewRef:
  535|    224|{
  536|    224|    Py_INCREF(obj);
  ------------------
  |  |  310|    224|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    224|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    224|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|    224|    return obj;
  538|    224|}
enumobject.c:Py_DECREF:
  418|      6|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      6|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      6|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 6]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|      6|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      6|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      6|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 6, False: 0]
  ------------------
  427|      6|        _Py_Dealloc(op);
  428|      6|    }
  429|      6|}
enumobject.c:_Py_IsImmortal:
  127|      6|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|      6|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|      6|}
genobject.c:Py_INCREF:
  256|     84|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     84|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     84|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 84, False: 0]
  ------------------
  288|       |        // the object is immortal
  289|     84|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|     84|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|     84|        return;
  291|     84|    }
  292|      0|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|      0|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|      0|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|      0|#endif
  308|      0|}
genobject.c:_Py_NewRef:
  535|     84|{
  536|     84|    Py_INCREF(obj);
  ------------------
  |  |  310|     84|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     84|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     84|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     84|    return obj;
  538|     84|}
genobject.c:Py_DECREF:
  418|    116|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    116|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    116|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 116, False: 0]
  |  |  ------------------
  ------------------
  422|    116|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    116|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    116|        return;
  424|    116|    }
  425|      0|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      0|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 0]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      0|}
genobject.c:_Py_IsImmortal:
  127|    184|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    184|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    184|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    184|}
genobject.c:_Py_REFCNT:
  105|     42|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|     42|    #if !defined(Py_GIL_DISABLED)
  107|     42|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|     42|    }
genobject.c:_Py_IsStaticImmortal:
  141|     42|{
  142|     42|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|     42|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|     42|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|     42|}
frameobject.c:Py_INCREF:
  256|     18|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     18|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     18|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 0, False: 18]
  ------------------
  288|       |        // the object is immortal
  289|      0|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      0|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      0|        return;
  291|      0|    }
  292|     18|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|     18|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     18|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|     18|#endif
  308|     18|}
frameobject.c:_Py_IsImmortal:
  127|     32|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|     32|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|     32|}
frameobject.c:_Py_IsStaticImmortal:
  141|    120|{
  142|    120|#if defined(Py_GIL_DISABLED) || SIZEOF_VOID_P > 4
  143|    120|    return (op->ob_flags & _Py_STATICALLY_ALLOCATED_FLAG) != 0;
  ------------------
  |  |  583|    120|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  ------------------
  144|       |#else
  145|       |    return op->ob_refcnt >= _Py_STATIC_IMMORTAL_MINIMUM_REFCNT;
  146|       |#endif
  147|    120|}
frameobject.c:Py_DECREF:
  418|     32|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|     32|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|     32|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 32]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|     32|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|     32|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|     32|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 2, False: 30]
  ------------------
  427|      2|        _Py_Dealloc(op);
  428|      2|    }
  429|     32|}
frameobject.c:_Py_NewRef:
  535|     18|{
  536|     18|    Py_INCREF(obj);
  ------------------
  |  |  310|     18|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     18|    return obj;
  538|     18|}
interpolationobject.c:Py_DECREF:
  418|      2|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      2|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      2|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|      2|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      2|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      2|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 0, False: 2]
  ------------------
  427|      0|        _Py_Dealloc(op);
  428|      0|    }
  429|      2|}
interpolationobject.c:_Py_IsImmortal:
  127|      2|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|      2|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|      2|}
lazyimportobject.c:_Py_XNewRef:
  541|     16|{
  542|     16|    Py_XINCREF(obj);
  ------------------
  |  |  514|     16|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|     16|    return obj;
  544|     16|}
lazyimportobject.c:Py_XINCREF:
  508|     16|{
  509|     16|    if (op != _Py_NULL) {
  ------------------
  |  |   57|     16|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 8, False: 8]
  ------------------
  510|      8|        Py_INCREF(op);
  ------------------
  |  |  310|      8|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|      8|    }
  512|     16|}
lazyimportobject.c:Py_INCREF:
  256|     24|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|     24|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|     24|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 8, False: 16]
  ------------------
  288|       |        // the object is immortal
  289|      8|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|      8|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|      8|        return;
  291|      8|    }
  292|     16|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|     16|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|     16|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|     16|#endif
  308|     16|}
lazyimportobject.c:_Py_NewRef:
  535|     16|{
  536|     16|    Py_INCREF(obj);
  ------------------
  |  |  310|     16|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|     16|    return obj;
  538|     16|}
methodobject.c:_Py_NewRef:
  535|      4|{
  536|      4|    Py_INCREF(obj);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      4|    return obj;
  538|      4|}
methodobject.c:Py_INCREF:
  256|  2.62k|{
  257|       |#if (defined(Py_LIMITED_API) && (Py_LIMITED_API+0 >= 0x030c0000 || defined(Py_REF_DEBUG))) \
  258|       |    || defined(_Py_OPAQUE_PYOBJECT)
  259|       |    // Stable ABI implements Py_INCREF() as a function call on limited C API
  260|       |    // version 3.12 and newer, abi3t, and on Python built in debug mode.
  261|       |    // _Py_IncRef() was added to Python 3.10.0a7, use Py_IncRef() on older versions.
  262|       |    // Py_IncRef() accepts NULL whereas _Py_IncRef() doesn't.
  263|       |#  if Py_LIMITED_API+0 >= 0x030a00A7
  264|       |    _Py_IncRef(op);
  265|       |#  else
  266|       |    Py_IncRef(op);
  267|       |#  endif
  268|       |#else
  269|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  270|       |    // directly PyObject.ob_refcnt.
  271|       |#if defined(Py_GIL_DISABLED)
  272|       |    uint32_t local = _Py_atomic_load_uint32_relaxed(&op->ob_ref_local);
  273|       |    uint32_t new_local = local + 1;
  274|       |    if (new_local == 0) {
  275|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  276|       |        // local is equal to _Py_IMMORTAL_REFCNT_LOCAL: do nothing
  277|       |        return;
  278|       |    }
  279|       |    if (_Py_IsOwnedByCurrentThread(op)) {
  280|       |        _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, new_local);
  281|       |    }
  282|       |    else {
  283|       |        _Py_atomic_add_ssize(&op->ob_ref_shared, (1 << _Py_REF_SHARED_SHIFT));
  284|       |    }
  285|       |#elif SIZEOF_VOID_P > 4
  286|       |    uint32_t cur_refcnt = op->ob_refcnt;
  287|  2.62k|    if (cur_refcnt >= _Py_IMMORTAL_INITIAL_REFCNT) {
  ------------------
  |  |   47|  2.62k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
  |  Branch (287:9): [True: 950, False: 1.67k]
  ------------------
  288|       |        // the object is immortal
  289|    950|        _Py_INCREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   21|    950|#  define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  290|    950|        return;
  291|    950|    }
  292|  1.67k|    op->ob_refcnt = cur_refcnt + 1;
  293|       |#else
  294|       |    if (_Py_IsImmortal(op)) {
  295|       |        _Py_INCREF_IMMORTAL_STAT_INC();
  296|       |        return;
  297|       |    }
  298|       |    op->ob_refcnt++;
  299|       |#endif
  300|  1.67k|    _Py_INCREF_STAT_INC();
  ------------------
  |  |   19|  1.67k|#  define _Py_INCREF_STAT_INC() ((void)0)
  ------------------
  301|       |#ifdef Py_REF_DEBUG
  302|       |    // Don't count the incref if the object is immortal.
  303|       |    if (!_Py_IsImmortal(op)) {
  304|       |        _Py_INCREF_IncRefTotal();
  305|       |    }
  306|       |#endif
  307|  1.67k|#endif
  308|  1.67k|}
methodobject.c:_Py_XNewRef:
  541|  3.52k|{
  542|  3.52k|    Py_XINCREF(obj);
  ------------------
  |  |  514|  3.52k|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.52k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.52k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  543|  3.52k|    return obj;
  544|  3.52k|}
methodobject.c:Py_XINCREF:
  508|  3.52k|{
  509|  3.52k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  3.52k|#  define _Py_NULL NULL
  ------------------
  |  Branch (509:9): [True: 2.61k, False: 908]
  ------------------
  510|  2.61k|        Py_INCREF(op);
  ------------------
  |  |  310|  2.61k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.61k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  511|  2.61k|    }
  512|  3.52k|}
methodobject.c:_Py_REFCNT:
  105|    508|    static inline Py_ssize_t _Py_REFCNT(PyObject *ob) {
  106|    508|    #if !defined(Py_GIL_DISABLED)
  107|    508|        return ob->ob_refcnt;
  108|       |    #else
  109|       |        uint32_t local = _Py_atomic_load_uint32_relaxed(&ob->ob_ref_local);
  110|       |        if (local == _Py_IMMORTAL_REFCNT_LOCAL) {
  111|       |            return _Py_IMMORTAL_INITIAL_REFCNT;
  112|       |        }
  113|       |        Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&ob->ob_ref_shared);
  114|       |        return _Py_STATIC_CAST(Py_ssize_t, local) +
  115|       |               Py_ARITHMETIC_RIGHT_SHIFT(Py_ssize_t, shared, _Py_REF_SHARED_SHIFT);
  116|       |    #endif
  117|    508|    }
methodobject.c:Py_XDECREF:
  518|  1.52k|{
  519|  1.52k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  1.52k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 488, False: 1.03k]
  ------------------
  520|    488|        Py_DECREF(op);
  ------------------
  |  |  430|    488|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    488|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    488|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|    488|    }
  522|  1.52k|}
methodobject.c:Py_DECREF:
  418|    494|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|    494|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|    494|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    494|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    494|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 114, False: 380]
  |  |  ------------------
  ------------------
  422|    114|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|    114|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|    114|        return;
  424|    114|    }
  425|    380|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|    380|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|    380|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 22, False: 358]
  ------------------
  427|     22|        _Py_Dealloc(op);
  428|     22|    }
  429|    380|}
methodobject.c:_Py_IsImmortal:
  127|    494|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|    494|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|    494|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|    494|}
namespaceobject.c:Py_DECREF:
  418|      2|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|      2|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|      2|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  422|      0|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|      0|        return;
  424|      0|    }
  425|      2|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|      2|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|      2|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 2, False: 0]
  ------------------
  427|      2|        _Py_Dealloc(op);
  428|      2|    }
  429|      2|}
namespaceobject.c:_Py_IsImmortal:
  127|      2|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|      2|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|      2|}

PyInit__abc:
 1000|      2|{
 1001|      2|    return PyModuleDef_Init(&_abcmodule);
 1002|      2|}
_abc.c:get_abc_state:
   29|    268|{
   30|    268|    void *state = _PyModule_GetState(module);
   31|    268|    assert(state != NULL);
  ------------------
  |  Branch (31:5): [True: 268, False: 0]
  ------------------
   32|    268|    return (_abcmodule_state *)state;
   33|    268|}
_abc.c:get_invalidation_counter:
   37|    126|{
   38|       |#ifdef Py_GIL_DISABLED
   39|       |    return _Py_atomic_load_uint64(&state->abc_invalidation_counter);
   40|       |#else
   41|    126|    return state->abc_invalidation_counter;
   42|    126|#endif
   43|    126|}
_abc.c:_abc__abc_init:
  499|     58|{
  500|     58|    _abcmodule_state *state = get_abc_state(module);
  501|     58|    PyObject *data;
  502|     58|    if (compute_abstract_methods(self) < 0) {
  ------------------
  |  Branch (502:9): [True: 0, False: 58]
  ------------------
  503|      0|        return NULL;
  504|      0|    }
  505|       |
  506|       |    /* Set up inheritance registry. */
  507|     58|    data = abc_data_new(state->_abc_data_type, NULL, NULL);
  508|     58|    if (data == NULL) {
  ------------------
  |  Branch (508:9): [True: 0, False: 58]
  ------------------
  509|      0|        return NULL;
  510|      0|    }
  511|     58|    if (PyObject_SetAttr(self, &_Py_ID(_abc_impl), data) < 0) {
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (511:9): [True: 0, False: 58]
  ------------------
  512|      0|        Py_DECREF(data);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  513|      0|        return NULL;
  514|      0|    }
  515|     58|    Py_DECREF(data);
  ------------------
  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  516|       |    /* If __abc_tpflags__ & COLLECTION_FLAGS is set, then set the corresponding bit(s)
  517|       |     * in the new class.
  518|       |     * Used by collections.abc.Sequence and collections.abc.Mapping to indicate
  519|       |     * their special status w.r.t. pattern matching. */
  520|     58|    if (PyType_Check(self)) {
  ------------------
  |  |  766|     58|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 58, False: 0]
  |  |  ------------------
  ------------------
  521|     58|        PyTypeObject *cls = (PyTypeObject *)self;
  522|     58|        PyObject *dict = _PyType_GetDict(cls);
  523|     58|        PyObject *flags = NULL;
  524|     58|        if (PyDict_Pop(dict, &_Py_ID(__abc_tpflags__), &flags) < 0) {
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (524:13): [True: 0, False: 58]
  ------------------
  525|      0|            return NULL;
  526|      0|        }
  527|     58|        if (flags == NULL || !PyLong_CheckExact(flags)) {
  ------------------
  |  |   14|      4|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (527:13): [True: 54, False: 4]
  |  Branch (527:30): [True: 0, False: 4]
  ------------------
  528|     54|            Py_XDECREF(flags);
  ------------------
  |  |  524|     54|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     54|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     54|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  529|     54|            Py_RETURN_NONE;
  ------------------
  |  |  628|     54|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     54|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  530|     54|        }
  531|       |
  532|      4|        long val = PyLong_AsLong(flags);
  533|      4|        Py_DECREF(flags);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  534|      4|        if (val == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (534:13): [True: 0, False: 4]
  |  Branch (534:26): [True: 0, False: 0]
  ------------------
  535|      0|            return NULL;
  536|      0|        }
  537|      4|        if ((val & COLLECTION_FLAGS) == COLLECTION_FLAGS) {
  ------------------
  |  |  484|      4|#define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  490|      4|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |               #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  492|      4|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  ------------------
                      if ((val & COLLECTION_FLAGS) == COLLECTION_FLAGS) {
  ------------------
  |  |  484|      4|#define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  490|      4|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |               #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  492|      4|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  ------------------
  |  Branch (537:13): [True: 0, False: 4]
  ------------------
  538|      0|            PyErr_SetString(PyExc_TypeError, "__abc_tpflags__ cannot be both Py_TPFLAGS_SEQUENCE and Py_TPFLAGS_MAPPING");
  539|      0|            return NULL;
  540|      0|        }
  541|      4|        _PyType_SetFlags((PyTypeObject *)self, 0, val & COLLECTION_FLAGS);
  ------------------
  |  |  484|      4|#define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  490|      4|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |               #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  492|      4|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  ------------------
  542|      4|    }
  543|      4|    Py_RETURN_NONE;
  ------------------
  |  |  628|      4|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  544|     58|}
_abc.c:compute_abstract_methods:
  363|     58|{
  364|     58|    int ret = -1;
  365|     58|    PyObject *abstracts = PyFrozenSet_New(NULL);
  366|     58|    if (abstracts == NULL) {
  ------------------
  |  Branch (366:9): [True: 0, False: 58]
  ------------------
  367|      0|        return -1;
  368|      0|    }
  369|       |
  370|     58|    PyObject *ns = NULL, *items = NULL, *bases = NULL;  // Py_XDECREF()ed on error.
  371|       |
  372|       |    /* Stage 1: direct abstract methods. */
  373|     58|    ns = PyObject_GetAttr(self, &_Py_ID(__dict__));
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  374|     58|    if (!ns) {
  ------------------
  |  Branch (374:9): [True: 0, False: 58]
  ------------------
  375|      0|        goto error;
  376|      0|    }
  377|       |
  378|       |    // We can't use PyDict_Next(ns) even when ns is dict because
  379|       |    // _PyObject_IsAbstract() can mutate ns.
  380|     58|    items = PyMapping_Items(ns);
  381|     58|    if (!items) {
  ------------------
  |  Branch (381:9): [True: 0, False: 58]
  ------------------
  382|      0|        goto error;
  383|      0|    }
  384|     58|    assert(PyList_Check(items));
  ------------------
  |  Branch (384:5): [True: 58, False: 0]
  ------------------
  385|    618|    for (Py_ssize_t pos = 0; pos < PyList_GET_SIZE(items); pos++) {
  ------------------
  |  |   38|    618|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    618|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    618|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (385:30): [True: 560, False: 58]
  ------------------
  386|    560|        PyObject *it = PySequence_Fast(
  387|    560|                PyList_GET_ITEM(items, pos),
  ------------------
  |  |   40|    560|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|    560|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    560|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (387:17): [True: 560, False: 0]
  ------------------
  388|      0|                "items() returned non-iterable");
  389|    560|        if (!it) {
  ------------------
  |  Branch (389:13): [True: 0, False: 560]
  ------------------
  390|      0|            goto error;
  391|      0|        }
  392|    560|        if (PySequence_Fast_GET_SIZE(it) != 2) {
  ------------------
  |  |   92|    560|    (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   25|    560|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    560|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 560]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   27|    560|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    560|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    560|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (392:13): [True: 0, False: 560]
  ------------------
  393|      0|            PyErr_SetString(PyExc_TypeError,
  394|      0|                            "items() returned item which size is not 2");
  395|      0|            Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  396|      0|            goto error;
  397|      0|        }
  398|       |
  399|       |        // borrowed
  400|    560|        PyObject *key = PySequence_Fast_GET_ITEM(it, 0);
  ------------------
  |  |   97|    560|     (PyList_Check(o) ? PyList_GET_ITEM((o), (i)) : PyTuple_GET_ITEM((o), (i)))
  |  |  ------------------
  |  |  |  |   25|    560|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    560|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 560]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    (PyList_Check(o) ? PyList_GET_ITEM((o), (i)) : PyTuple_GET_ITEM((o), (i)))
  |  |  ------------------
  |  |  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    (PyList_Check(o) ? PyList_GET_ITEM((o), (i)) : PyTuple_GET_ITEM((o), (i)))
  |  |  ------------------
  |  |  |  |   29|    560|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|    560|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    560|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (400:25): [True: 0, False: 0]
  |  Branch (400:25): [True: 560, False: 0]
  ------------------
  401|    560|        PyObject *value = PySequence_Fast_GET_ITEM(it, 1);
  ------------------
  |  |   97|    560|     (PyList_Check(o) ? PyList_GET_ITEM((o), (i)) : PyTuple_GET_ITEM((o), (i)))
  |  |  ------------------
  |  |  |  |   25|    560|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    560|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 560]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    (PyList_Check(o) ? PyList_GET_ITEM((o), (i)) : PyTuple_GET_ITEM((o), (i)))
  |  |  ------------------
  |  |  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    (PyList_Check(o) ? PyList_GET_ITEM((o), (i)) : PyTuple_GET_ITEM((o), (i)))
  |  |  ------------------
  |  |  |  |   29|    560|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|    560|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    560|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (401:27): [True: 0, False: 0]
  |  Branch (401:27): [True: 560, False: 0]
  ------------------
  402|       |        // items or it may be cleared while accessing __abstractmethod__
  403|       |        // So we need to keep strong reference for key
  404|    560|        Py_INCREF(key);
  ------------------
  |  |  310|    560|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    560|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    560|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  405|    560|        int is_abstract = _PyObject_IsAbstract(value);
  406|    560|        if (is_abstract < 0 ||
  ------------------
  |  Branch (406:13): [True: 0, False: 560]
  ------------------
  407|    560|                (is_abstract && PySet_Add(abstracts, key) < 0)) {
  ------------------
  |  Branch (407:18): [True: 54, False: 506]
  |  Branch (407:33): [True: 0, False: 54]
  ------------------
  408|      0|            Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  409|      0|            Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  410|      0|            goto error;
  411|      0|        }
  412|    560|        Py_DECREF(key);
  ------------------
  |  |  430|    560|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    560|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    560|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  413|    560|        Py_DECREF(it);
  ------------------
  |  |  430|    560|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    560|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    560|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  414|    560|    }
  415|       |
  416|       |    /* Stage 2: inherited abstract methods. */
  417|     58|    bases = PyObject_GetAttr(self, &_Py_ID(__bases__));
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  418|     58|    if (!bases) {
  ------------------
  |  Branch (418:9): [True: 0, False: 58]
  ------------------
  419|      0|        goto error;
  420|      0|    }
  421|     58|    if (!PyTuple_Check(bases)) {
  ------------------
  |  |   27|     58|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     58|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (421:9): [True: 0, False: 58]
  ------------------
  422|      0|        PyErr_SetString(PyExc_TypeError, "__bases__ is not tuple");
  423|      0|        goto error;
  424|      0|    }
  425|       |
  426|    128|    for (Py_ssize_t pos = 0; pos < PyTuple_GET_SIZE(bases); pos++) {
  ------------------
  |  |   27|    128|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (426:30): [True: 70, False: 58]
  ------------------
  427|     70|        PyObject *item = PyTuple_GET_ITEM(bases, pos);  // borrowed
  ------------------
  |  |   29|     70|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     70|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     70|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (427:26): [True: 70, False: 0]
  ------------------
  428|      0|        PyObject *base_abstracts, *iter;
  429|       |
  430|     70|        if (PyObject_GetOptionalAttr(item, &_Py_ID(__abstractmethods__),
  ------------------
  |  |  917|     70|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     70|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     70|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (430:13): [True: 0, False: 70]
  ------------------
  431|     70|                                 &base_abstracts) < 0) {
  432|      0|            goto error;
  433|      0|        }
  434|     70|        if (base_abstracts == NULL) {
  ------------------
  |  Branch (434:13): [True: 18, False: 52]
  ------------------
  435|     18|            continue;
  436|     18|        }
  437|     52|        if (!(iter = PyObject_GetIter(base_abstracts))) {
  ------------------
  |  Branch (437:13): [True: 0, False: 52]
  ------------------
  438|      0|            Py_DECREF(base_abstracts);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  439|      0|            goto error;
  440|      0|        }
  441|     52|        Py_DECREF(base_abstracts);
  ------------------
  |  |  430|     52|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  442|     52|        PyObject *key, *value;
  443|    142|        while ((key = PyIter_Next(iter))) {
  ------------------
  |  Branch (443:16): [True: 90, False: 52]
  ------------------
  444|     90|            if (PyObject_GetOptionalAttr(self, key, &value) < 0) {
  ------------------
  |  Branch (444:17): [True: 0, False: 90]
  ------------------
  445|      0|                Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  446|      0|                Py_DECREF(iter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  447|      0|                goto error;
  448|      0|            }
  449|     90|            if (value == NULL) {
  ------------------
  |  Branch (449:17): [True: 0, False: 90]
  ------------------
  450|      0|                Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  451|      0|                continue;
  452|      0|            }
  453|       |
  454|     90|            int is_abstract = _PyObject_IsAbstract(value);
  455|     90|            Py_DECREF(value);
  ------------------
  |  |  430|     90|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     90|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     90|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  456|     90|            if (is_abstract < 0 ||
  ------------------
  |  Branch (456:17): [True: 0, False: 90]
  ------------------
  457|     90|                    (is_abstract && PySet_Add(abstracts, key) < 0))
  ------------------
  |  Branch (457:22): [True: 42, False: 48]
  |  Branch (457:37): [True: 0, False: 42]
  ------------------
  458|      0|            {
  459|      0|                Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  460|      0|                Py_DECREF(iter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  461|      0|                goto error;
  462|      0|            }
  463|     90|            Py_DECREF(key);
  ------------------
  |  |  430|     90|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     90|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     90|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  464|     90|        }
  465|     52|        Py_DECREF(iter);
  ------------------
  |  |  430|     52|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  466|     52|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (466:13): [True: 0, False: 52]
  ------------------
  467|      0|            goto error;
  468|      0|        }
  469|     52|    }
  470|       |
  471|     58|    if (PyObject_SetAttr(self, &_Py_ID(__abstractmethods__), abstracts) < 0) {
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (471:9): [True: 0, False: 58]
  ------------------
  472|      0|        goto error;
  473|      0|    }
  474|       |
  475|     58|    ret = 0;
  476|     58|error:
  477|     58|    Py_DECREF(abstracts);
  ------------------
  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  478|     58|    Py_XDECREF(ns);
  ------------------
  |  |  524|     58|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  479|     58|    Py_XDECREF(items);
  ------------------
  |  |  524|     58|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  480|     58|    Py_XDECREF(bases);
  ------------------
  |  |  524|     58|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  481|     58|    return ret;
  482|     58|}
_abc.c:abc_data_new:
  125|     58|{
  126|     58|    _abc_data *self = (_abc_data *) type->tp_alloc(type, 0);
  127|     58|    _abcmodule_state *state = NULL;
  128|     58|    if (self == NULL) {
  ------------------
  |  Branch (128:9): [True: 0, False: 58]
  ------------------
  129|      0|        return NULL;
  130|      0|    }
  131|       |
  132|     58|    state = _PyType_GetModuleState(type);
  133|     58|    if (state == NULL) {
  ------------------
  |  Branch (133:9): [True: 0, False: 58]
  ------------------
  134|      0|        Py_DECREF(self);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  135|      0|        return NULL;
  136|      0|    }
  137|       |
  138|     58|    self->_abc_registry = NULL;
  139|     58|    self->_abc_cache = NULL;
  140|       |    self->_abc_negative_cache = NULL;
  141|     58|    self->_abc_negative_cache_version = get_invalidation_counter(state);
  142|     58|    return (PyObject *) self;
  143|     58|}
_abc.c:_get_impl:
  166|    104|{
  167|    104|    _abcmodule_state *state = get_abc_state(module);
  168|    104|    PyObject *impl = PyObject_GetAttr(self, &_Py_ID(_abc_impl));
  ------------------
  |  |  917|    104|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    104|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    104|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  169|    104|    if (impl == NULL) {
  ------------------
  |  Branch (169:9): [True: 0, False: 104]
  ------------------
  170|      0|        return NULL;
  171|      0|    }
  172|    104|    if (!Py_IS_TYPE(impl, state->_abc_data_type)) {
  ------------------
  |  |  215|    104|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    104|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    104|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (172:9): [True: 0, False: 104]
  ------------------
  173|      0|        PyErr_SetString(PyExc_TypeError, "_abc_impl is set to a wrong type");
  174|      0|        Py_DECREF(impl);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  175|      0|        return NULL;
  176|      0|    }
  177|    104|    return (_abc_data *)impl;
  178|    104|}
_abc.c:get_cache_version:
   74|     68|{
   75|       |#ifdef Py_GIL_DISABLED
   76|       |    return _Py_atomic_load_uint64(&impl->_abc_negative_cache_version);
   77|       |#else
   78|     68|    return impl->_abc_negative_cache_version;
   79|     68|#endif
   80|     68|}
_abc.c:_abc__abc_register_impl:
  560|     68|{
  561|     68|    if (!PyType_Check(subclass)) {
  ------------------
  |  |  766|     68|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (561:9): [True: 0, False: 68]
  ------------------
  562|      0|        PyErr_SetString(PyExc_TypeError, "Can only register classes");
  563|      0|        return NULL;
  564|      0|    }
  565|     68|    int result = PyObject_IsSubclass(subclass, self);
  566|     68|    if (result > 0) {
  ------------------
  |  Branch (566:9): [True: 32, False: 36]
  ------------------
  567|     32|        return Py_NewRef(subclass);  /* Already a subclass. */
  ------------------
  |  |  550|     32|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  568|     32|    }
  569|     36|    if (result < 0) {
  ------------------
  |  Branch (569:9): [True: 0, False: 36]
  ------------------
  570|      0|        return NULL;
  571|      0|    }
  572|       |    /* Subtle: test for cycles *after* testing for "already a subclass";
  573|       |       this means we allow X.register(X) and interpret it as a no-op. */
  574|     36|    result = PyObject_IsSubclass(self, subclass);
  575|     36|    if (result > 0) {
  ------------------
  |  Branch (575:9): [True: 0, False: 36]
  ------------------
  576|       |        /* This would create a cycle, which is bad for the algorithm below. */
  577|      0|        PyErr_SetString(PyExc_RuntimeError, "Refusing to create an inheritance cycle");
  578|      0|        return NULL;
  579|      0|    }
  580|     36|    if (result < 0) {
  ------------------
  |  Branch (580:9): [True: 0, False: 36]
  ------------------
  581|      0|        return NULL;
  582|      0|    }
  583|     36|    _abc_data *impl = _get_impl(module, self);
  584|     36|    if (impl == NULL) {
  ------------------
  |  Branch (584:9): [True: 0, False: 36]
  ------------------
  585|      0|        return NULL;
  586|      0|    }
  587|     36|    if (_add_to_weak_set(impl, &impl->_abc_registry, subclass) < 0) {
  ------------------
  |  Branch (587:9): [True: 0, False: 36]
  ------------------
  588|      0|        Py_DECREF(impl);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  589|      0|        return NULL;
  590|      0|    }
  591|     36|    Py_DECREF(impl);
  ------------------
  |  |  430|     36|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  592|       |
  593|       |    /* Invalidate negative cache */
  594|     36|    increment_invalidation_counter(get_abc_state(module));
  595|       |
  596|       |    /* Set Py_TPFLAGS_SEQUENCE or Py_TPFLAGS_MAPPING flag */
  597|     36|    if (PyType_Check(self)) {
  ------------------
  |  |  766|     36|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 36, False: 0]
  |  |  ------------------
  ------------------
  598|     36|        unsigned long collection_flag =
  599|     36|            PyType_GetFlags((PyTypeObject *)self) & COLLECTION_FLAGS;
  ------------------
  |  |  484|     36|#define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  490|     36|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |               #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  492|     36|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  ------------------
  600|     36|        if (collection_flag) {
  ------------------
  |  Branch (600:13): [True: 26, False: 10]
  ------------------
  601|     26|            _PyType_SetFlagsRecursive((PyTypeObject *)subclass,
  602|     26|                                      COLLECTION_FLAGS,
  ------------------
  |  |  484|     26|#define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  490|     26|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |               #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  492|     26|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  ------------------
  603|     26|                                      collection_flag);
  604|     26|        }
  605|     36|    }
  606|     36|    return Py_NewRef(subclass);
  ------------------
  |  |  550|     36|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  607|     36|}
_abc.c:_add_to_weak_set:
  224|    104|{
  225|    104|    PyObject *set;
  226|    104|    Py_BEGIN_CRITICAL_SECTION(impl);
  ------------------
  |  |   51|    104|    {
  ------------------
  227|    104|    set = *pset;
  228|    104|    if (set == NULL) {
  ------------------
  |  Branch (228:9): [True: 48, False: 56]
  ------------------
  229|     48|        set = *pset = PySet_New(NULL);
  230|     48|    }
  231|    104|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    104|    }
  ------------------
  232|    104|    if (set == NULL) {
  ------------------
  |  Branch (232:9): [True: 0, False: 104]
  ------------------
  233|      0|        return -1;
  234|      0|    }
  235|       |
  236|    104|    PyObject *ref, *wr;
  237|    104|    PyObject *destroy_cb;
  238|    104|    wr = PyWeakref_NewRef(set, NULL);
  239|    104|    if (wr == NULL) {
  ------------------
  |  Branch (239:9): [True: 0, False: 104]
  ------------------
  240|      0|        return -1;
  241|      0|    }
  242|    104|    destroy_cb = PyCFunction_NewEx(&_destroy_def, wr, NULL);
  ------------------
  |  |   87|    104|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
  243|    104|    if (destroy_cb == NULL) {
  ------------------
  |  Branch (243:9): [True: 0, False: 104]
  ------------------
  244|      0|        Py_DECREF(wr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  245|      0|        return -1;
  246|      0|    }
  247|    104|    ref = PyWeakref_NewRef(obj, destroy_cb);
  248|    104|    Py_DECREF(destroy_cb);
  ------------------
  |  |  430|    104|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    104|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    104|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  249|    104|    if (ref == NULL) {
  ------------------
  |  Branch (249:9): [True: 0, False: 104]
  ------------------
  250|      0|        Py_DECREF(wr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  251|      0|        return -1;
  252|      0|    }
  253|    104|    int ret = PySet_Add(set, ref);
  254|    104|    Py_DECREF(wr);
  ------------------
  |  |  430|    104|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    104|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    104|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  255|    104|    Py_DECREF(ref);
  ------------------
  |  |  430|    104|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    104|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    104|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  256|    104|    return ret;
  257|    104|}
_abc.c:increment_invalidation_counter:
   47|     36|{
   48|       |#ifdef Py_GIL_DISABLED
   49|       |    _Py_atomic_add_uint64(&state->abc_invalidation_counter, 1);
   50|       |#else
   51|     36|    state->abc_invalidation_counter++;
   52|     36|#endif
   53|     36|}
_abc.c:_in_weak_set:
  182|    156|{
  183|    156|    PyObject *set;
  184|    156|    Py_BEGIN_CRITICAL_SECTION(impl);
  ------------------
  |  |   51|    156|    {
  ------------------
  185|    156|    set = *pset;
  186|    156|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    156|    }
  ------------------
  187|    156|    if (set == NULL || PySet_GET_SIZE(set) == 0) {
  ------------------
  |  |   71|     40|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (187:9): [True: 116, False: 40]
  |  Branch (187:24): [True: 0, False: 40]
  ------------------
  188|    116|        return 0;
  189|    116|    }
  190|     40|    PyObject *ref = PyWeakref_NewRef(obj, NULL);
  191|     40|    if (ref == NULL) {
  ------------------
  |  Branch (191:9): [True: 0, False: 40]
  ------------------
  192|      0|        if (PyErr_ExceptionMatches(PyExc_TypeError)) {
  ------------------
  |  Branch (192:13): [True: 0, False: 0]
  ------------------
  193|      0|            PyErr_Clear();
  194|      0|            return 0;
  195|      0|        }
  196|      0|        return -1;
  197|      0|    }
  198|     40|    int res = PySet_Contains(set, ref);
  199|     40|    Py_DECREF(ref);
  ------------------
  |  |  430|     40|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  200|     40|    return res;
  201|     40|}
_abc.c:_abc__abc_subclasscheck_impl:
  712|     68|{
  713|     68|    if (!PyType_Check(subclass)) {
  ------------------
  |  |  766|     68|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (713:9): [True: 0, False: 68]
  ------------------
  714|      0|        PyErr_SetString(PyExc_TypeError, "issubclass() arg 1 must be a class");
  715|      0|        return NULL;
  716|      0|    }
  717|       |
  718|     68|    PyObject *ok, *subclasses = NULL, *result = NULL;
  719|     68|    _abcmodule_state *state = NULL;
  720|     68|    Py_ssize_t pos;
  721|     68|    int incache;
  722|     68|    _abc_data *impl = _get_impl(module, self);
  723|     68|    if (impl == NULL) {
  ------------------
  |  Branch (723:9): [True: 0, False: 68]
  ------------------
  724|      0|        return NULL;
  725|      0|    }
  726|       |
  727|       |    /* 1. Check cache. */
  728|     68|    incache = _in_weak_set(impl, &impl->_abc_cache, subclass);
  729|     68|    if (incache < 0) {
  ------------------
  |  Branch (729:9): [True: 0, False: 68]
  ------------------
  730|      0|        goto end;
  731|      0|    }
  732|     68|    if (incache > 0) {
  ------------------
  |  Branch (732:9): [True: 0, False: 68]
  ------------------
  733|      0|        result = Py_True;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  734|      0|        goto end;
  735|      0|    }
  736|       |
  737|     68|    state = get_abc_state(module);
  738|       |    /* 2. Check negative cache; may have to invalidate. */
  739|     68|    uint64_t invalidation_counter = get_invalidation_counter(state);
  740|     68|    if (get_cache_version(impl) < invalidation_counter) {
  ------------------
  |  Branch (740:9): [True: 16, False: 52]
  ------------------
  741|       |        /* Invalidate the negative cache. */
  742|     16|        PyObject *negative_cache;
  743|     16|        Py_BEGIN_CRITICAL_SECTION(impl);
  ------------------
  |  |   51|     16|    {
  ------------------
  744|     16|        negative_cache = impl->_abc_negative_cache;
  745|     16|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     16|    }
  ------------------
  746|     16|        if (negative_cache != NULL && PySet_Clear(negative_cache) < 0) {
  ------------------
  |  Branch (746:13): [True: 16, False: 0]
  |  Branch (746:39): [True: 0, False: 16]
  ------------------
  747|      0|            goto end;
  748|      0|        }
  749|     16|        set_cache_version(impl, invalidation_counter);
  750|     16|    }
  751|     52|    else {
  752|     52|        incache = _in_weak_set(impl, &impl->_abc_negative_cache, subclass);
  753|     52|        if (incache < 0) {
  ------------------
  |  Branch (753:13): [True: 0, False: 52]
  ------------------
  754|      0|            goto end;
  755|      0|        }
  756|     52|        if (incache > 0) {
  ------------------
  |  Branch (756:13): [True: 0, False: 52]
  ------------------
  757|      0|            result = Py_False;
  ------------------
  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  758|      0|            goto end;
  759|      0|        }
  760|     52|    }
  761|       |
  762|       |    /* 3. Check the subclass hook. */
  763|     68|    ok = PyObject_CallMethodOneArg(
  764|     68|            (PyObject *)self, &_Py_ID(__subclasshook__), subclass);
  ------------------
  |  |  917|     68|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     68|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     68|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  765|     68|    if (ok == NULL) {
  ------------------
  |  Branch (765:9): [True: 0, False: 68]
  ------------------
  766|      0|        goto end;
  767|      0|    }
  768|     68|    if (ok == Py_True) {
  ------------------
  |  |   26|     68|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (768:9): [True: 32, False: 36]
  ------------------
  769|     32|        Py_DECREF(ok);
  ------------------
  |  |  430|     32|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  770|     32|        if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
  ------------------
  |  Branch (770:13): [True: 0, False: 32]
  ------------------
  771|      0|            goto end;
  772|      0|        }
  773|     32|        result = Py_True;
  ------------------
  |  |   26|     32|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  774|     32|        goto end;
  775|     32|    }
  776|     36|    if (ok == Py_False) {
  ------------------
  |  |   25|     36|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (776:9): [True: 0, False: 36]
  ------------------
  777|      0|        Py_DECREF(ok);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  778|      0|        if (_add_to_weak_set(impl, &impl->_abc_negative_cache, subclass) < 0) {
  ------------------
  |  Branch (778:13): [True: 0, False: 0]
  ------------------
  779|      0|            goto end;
  780|      0|        }
  781|      0|        result = Py_False;
  ------------------
  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  782|      0|        goto end;
  783|      0|    }
  784|     36|    if (ok != Py_NotImplemented) {
  ------------------
  |  |  640|     36|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (784:9): [True: 0, False: 36]
  ------------------
  785|      0|        Py_DECREF(ok);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  786|      0|        PyErr_SetString(PyExc_AssertionError, "__subclasshook__ must return either"
  787|      0|                                              " False, True, or NotImplemented");
  788|      0|        goto end;
  789|      0|    }
  790|     36|    Py_DECREF(ok);
  ------------------
  |  |  430|     36|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  791|       |
  792|       |    /* 4. Check if it's a direct subclass. */
  793|     36|    if (PyType_IsSubtype((PyTypeObject *)subclass, (PyTypeObject *)self)) {
  ------------------
  |  Branch (793:9): [True: 0, False: 36]
  ------------------
  794|      0|        if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
  ------------------
  |  Branch (794:13): [True: 0, False: 0]
  ------------------
  795|      0|            goto end;
  796|      0|        }
  797|      0|        result = Py_True;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  798|      0|        goto end;
  799|      0|    }
  800|       |
  801|       |    /* 5. Check if it's a subclass of a registered class (recursive). */
  802|     36|    if (subclasscheck_check_registry(impl, subclass, &result)) {
  ------------------
  |  Branch (802:9): [True: 0, False: 36]
  ------------------
  803|       |        // Exception occurred or result is set.
  804|      0|        goto end;
  805|      0|    }
  806|       |
  807|       |    /* 6. Check if it's a subclass of a subclass (recursive). */
  808|     36|    subclasses = PyObject_CallMethod(self, "__subclasses__", NULL);
  809|     36|    if (subclasses == NULL) {
  ------------------
  |  Branch (809:9): [True: 0, False: 36]
  ------------------
  810|      0|        goto end;
  811|      0|    }
  812|     36|    if (!PyList_Check(subclasses)) {
  ------------------
  |  |   25|     36|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     36|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (812:9): [True: 0, False: 36]
  ------------------
  813|      0|        PyErr_SetString(PyExc_TypeError, "__subclasses__() must return a list");
  814|      0|        goto end;
  815|      0|    }
  816|     36|    for (pos = 0; pos < PyList_GET_SIZE(subclasses); pos++) {
  ------------------
  |  |   38|     36|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (816:19): [True: 0, False: 36]
  ------------------
  817|      0|        PyObject *scls = PyList_GetItemRef(subclasses, pos);
  818|      0|        if (scls == NULL) {
  ------------------
  |  Branch (818:13): [True: 0, False: 0]
  ------------------
  819|      0|            goto end;
  820|      0|        }
  821|      0|        int r = PyObject_IsSubclass(subclass, scls);
  822|      0|        Py_DECREF(scls);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  823|      0|        if (r > 0) {
  ------------------
  |  Branch (823:13): [True: 0, False: 0]
  ------------------
  824|      0|            if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
  ------------------
  |  Branch (824:17): [True: 0, False: 0]
  ------------------
  825|      0|                goto end;
  826|      0|            }
  827|      0|            result = Py_True;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  828|      0|            goto end;
  829|      0|        }
  830|      0|        if (r < 0) {
  ------------------
  |  Branch (830:13): [True: 0, False: 0]
  ------------------
  831|      0|            goto end;
  832|      0|        }
  833|      0|    }
  834|       |
  835|       |    /* No dice; update negative cache. */
  836|     36|    if (_add_to_weak_set(impl, &impl->_abc_negative_cache, subclass) < 0) {
  ------------------
  |  Branch (836:9): [True: 0, False: 36]
  ------------------
  837|      0|        goto end;
  838|      0|    }
  839|     36|    result = Py_False;
  ------------------
  |  |   25|     36|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  840|       |
  841|     68|end:
  842|     68|    Py_DECREF(impl);
  ------------------
  |  |  430|     68|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  843|     68|    Py_XDECREF(subclasses);
  ------------------
  |  |  524|     68|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  844|     68|    return Py_XNewRef(result);
  ------------------
  |  |  551|     68|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  845|     36|}
_abc.c:set_cache_version:
   84|     16|{
   85|       |#ifdef Py_GIL_DISABLED
   86|       |    _Py_atomic_store_uint64(&impl->_abc_negative_cache_version, version);
   87|       |#else
   88|     16|    impl->_abc_negative_cache_version = version;
   89|     16|#endif
   90|     16|}
_abc.c:subclasscheck_check_registry:
  851|     36|{
  852|       |    // Fast path: check subclass is in weakref directly.
  853|     36|    int ret = _in_weak_set(impl, &impl->_abc_registry, subclass);
  854|     36|    if (ret < 0) {
  ------------------
  |  Branch (854:9): [True: 0, False: 36]
  ------------------
  855|      0|        *result = NULL;
  856|      0|        return -1;
  857|      0|    }
  858|     36|    if (ret > 0) {
  ------------------
  |  Branch (858:9): [True: 0, False: 36]
  ------------------
  859|      0|        *result = Py_True;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  860|      0|        return 1;
  861|      0|    }
  862|       |
  863|     36|    PyObject *registry_shared;
  864|     36|    Py_BEGIN_CRITICAL_SECTION(impl);
  ------------------
  |  |   51|     36|    {
  ------------------
  865|     36|    registry_shared = impl->_abc_registry;
  866|     36|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     36|    }
  ------------------
  867|     36|    if (registry_shared == NULL) {
  ------------------
  |  Branch (867:9): [True: 20, False: 16]
  ------------------
  868|     20|        return 0;
  869|     20|    }
  870|       |
  871|       |    // Make a local copy of the registry to protect against concurrent
  872|       |    // modifications of _abc_registry.
  873|     16|    PyObject *registry = PyFrozenSet_New(registry_shared);
  874|     16|    if (registry == NULL) {
  ------------------
  |  Branch (874:9): [True: 0, False: 16]
  ------------------
  875|      0|        return -1;
  876|      0|    }
  877|     16|    PyObject *key;
  878|     16|    Py_ssize_t pos = 0;
  879|     16|    Py_hash_t hash;
  880|       |
  881|     46|    while (_PySet_NextEntry(registry, &pos, &key, &hash)) {
  ------------------
  |  Branch (881:12): [True: 30, False: 16]
  ------------------
  882|     30|        PyObject *rkey;
  883|     30|        if (PyWeakref_GetRef(key, &rkey) < 0) {
  ------------------
  |  Branch (883:13): [True: 0, False: 30]
  ------------------
  884|       |            // Someone inject non-weakref type in the registry.
  885|      0|            ret = -1;
  886|      0|            break;
  887|      0|        }
  888|       |
  889|     30|        if (rkey == NULL) {
  ------------------
  |  Branch (889:13): [True: 0, False: 30]
  ------------------
  890|      0|            continue;
  891|      0|        }
  892|     30|        int r = PyObject_IsSubclass(subclass, rkey);
  893|     30|        Py_DECREF(rkey);
  ------------------
  |  |  430|     30|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  894|     30|        if (r < 0) {
  ------------------
  |  Branch (894:13): [True: 0, False: 30]
  ------------------
  895|      0|            ret = -1;
  896|      0|            break;
  897|      0|        }
  898|     30|        if (r > 0) {
  ------------------
  |  Branch (898:13): [True: 0, False: 30]
  ------------------
  899|      0|            if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
  ------------------
  |  Branch (899:17): [True: 0, False: 0]
  ------------------
  900|      0|                ret = -1;
  901|      0|                break;
  902|      0|            }
  903|      0|            *result = Py_True;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  904|      0|            ret = 1;
  905|      0|            break;
  906|      0|        }
  907|     30|    }
  908|       |
  909|     16|    Py_DECREF(registry);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  910|     16|    return ret;
  911|     16|}
_abc.c:_abcmodule_exec:
  945|      2|{
  946|      2|    _abcmodule_state *state = get_abc_state(module);
  947|      2|    state->abc_invalidation_counter = 0;
  948|      2|    state->_abc_data_type = (PyTypeObject *)PyType_FromModuleAndSpec(module, &_abc_data_type_spec, NULL);
  949|      2|    if (state->_abc_data_type == NULL) {
  ------------------
  |  Branch (949:9): [True: 0, False: 2]
  ------------------
  950|      0|        return -1;
  951|      0|    }
  952|       |
  953|      2|    return 0;
  954|      2|}

PyInit__codecs:
 1136|      2|{
 1137|      2|    return PyModuleDef_Init(&codecsmodule);
 1138|      2|}
_codecsmodule.c:_codecs_register:
   66|      2|{
   67|      2|    if (PyCodec_Register(search_function))
  ------------------
  |  Branch (67:9): [True: 0, False: 2]
  ------------------
   68|      0|        return NULL;
   69|       |
   70|      2|    Py_RETURN_NONE;
  ------------------
  |  |  628|      2|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
   71|      2|}
_codecsmodule.c:_codecs_lookup_error_impl:
 1017|     12|{
 1018|     12|    return PyCodec_LookupError(name);
 1019|     12|}
_codecsmodule.c:_codecs__normalize_encoding_impl:
 1035|      2|{
 1036|      2|    Py_ssize_t len;
 1037|      2|    const char *cstr = PyUnicode_AsUTF8AndSize(encoding, &len);
 1038|      2|    if (cstr == NULL) {
  ------------------
  |  Branch (1038:9): [True: 0, False: 2]
  ------------------
 1039|      0|        return NULL;
 1040|      0|    }
 1041|       |
 1042|      2|    if (len > PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|      2|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1042:9): [True: 0, False: 2]
  ------------------
 1043|      0|        PyErr_SetString(PyExc_OverflowError, "encoding is too large");
 1044|      0|        return NULL;
 1045|      0|    }
 1046|       |
 1047|      2|    char *normalized = PyMem_Malloc(len + 1);
 1048|      2|    if (normalized == NULL) {
  ------------------
  |  Branch (1048:9): [True: 0, False: 2]
  ------------------
 1049|      0|        return PyErr_NoMemory();
 1050|      0|    }
 1051|       |
 1052|      2|    if (!_Py_normalize_encoding(cstr, normalized, len + 1, 0)) {
  ------------------
  |  Branch (1052:9): [True: 0, False: 2]
  ------------------
 1053|      0|        PyMem_Free(normalized);
 1054|      0|        return NULL;
 1055|      0|    }
 1056|       |
 1057|      2|    PyObject *result = PyUnicode_FromString(normalized);
 1058|      2|    PyMem_Free(normalized);
 1059|      2|    return result;
 1060|      2|}

_PyDateTime_InitTypes:
 7491|      2|{
 7492|       |    /* Bases classes must be initialized before subclasses,
 7493|       |     * so capi_types must have the types in the appropriate order. */
 7494|     14|    for (size_t i = 0; i < Py_ARRAY_LENGTH(capi_types); i++) {
  ------------------
  |  |  196|     14|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (7494:24): [True: 12, False: 2]
  ------------------
 7495|     12|        PyTypeObject *type = capi_types[i];
 7496|     12|        if (_PyStaticType_InitForExtension(interp, type) < 0) {
  ------------------
  |  Branch (7496:13): [True: 0, False: 12]
  ------------------
 7497|      0|            return _PyStatus_ERR("could not initialize static types");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 7498|      0|        }
 7499|     12|    }
 7500|       |
 7501|      2|#define DATETIME_ADD_MACRO(dict, c, value_expr)         \
 7502|      2|    do {                                                \
 7503|      2|        assert(!PyErr_Occurred());                      \
 7504|      2|        PyObject *value = (value_expr);                 \
 7505|      2|        if (value == NULL) {                            \
 7506|      2|            goto error;                                 \
 7507|      2|        }                                               \
 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
 7509|      2|            Py_DECREF(value);                           \
 7510|      2|            goto error;                                 \
 7511|      2|        }                                               \
 7512|      2|        Py_DECREF(value);                               \
 7513|      2|    } while(0)
 7514|       |
 7515|       |    /* timedelta values */
 7516|      2|    PyObject *d = _PyType_GetDict(&PyDateTime_DeltaType);
 7517|      2|    DATETIME_ADD_MACRO(d, "resolution", new_delta(0, 0, 1, 0));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7517:5): [True: 2, False: 0]
  ------------------
 7518|      2|    DATETIME_ADD_MACRO(d, "min", new_delta(-MAX_DELTA_DAYS, 0, 0, 0));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7518:5): [True: 2, False: 0]
  ------------------
 7519|      2|    DATETIME_ADD_MACRO(d, "max",
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7519:5): [True: 2, False: 0]
  ------------------
 7520|      2|                        new_delta(MAX_DELTA_DAYS, 24*3600-1, 1000000-1, 0));
 7521|       |
 7522|       |    /* date values */
 7523|      2|    d = _PyType_GetDict(&PyDateTime_DateType);
 7524|      2|    DATETIME_ADD_MACRO(d, "min", new_date(1, 1, 1));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7524:5): [True: 2, False: 0]
  ------------------
 7525|      2|    DATETIME_ADD_MACRO(d, "max", new_date(MAXYEAR, 12, 31));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7525:5): [True: 2, False: 0]
  ------------------
 7526|      2|    DATETIME_ADD_MACRO(d, "resolution", new_delta(1, 0, 0, 0));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7526:5): [True: 2, False: 0]
  ------------------
 7527|       |
 7528|       |    /* time values */
 7529|      2|    d = _PyType_GetDict(&PyDateTime_TimeType);
 7530|      2|    DATETIME_ADD_MACRO(d, "min", new_time(0, 0, 0, 0, Py_None, 0));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7530:5): [True: 2, False: 0]
  ------------------
 7531|      2|    DATETIME_ADD_MACRO(d, "max", new_time(23, 59, 59, 999999, Py_None, 0));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7531:5): [True: 2, False: 0]
  ------------------
 7532|      2|    DATETIME_ADD_MACRO(d, "resolution", new_delta(0, 0, 1, 0));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7532:5): [True: 2, False: 0]
  ------------------
 7533|       |
 7534|       |    /* datetime values */
 7535|      2|    d = _PyType_GetDict(&PyDateTime_DateTimeType);
 7536|      2|    DATETIME_ADD_MACRO(d, "min",
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7536:5): [True: 2, False: 0]
  ------------------
 7537|      2|                        new_datetime(1, 1, 1, 0, 0, 0, 0, Py_None, 0));
 7538|      2|    DATETIME_ADD_MACRO(d, "max", new_datetime(MAXYEAR, 12, 31, 23, 59, 59,
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7538:5): [True: 2, False: 0]
  ------------------
 7539|      2|                                                999999, Py_None, 0));
 7540|      2|    DATETIME_ADD_MACRO(d, "resolution", new_delta(0, 0, 1, 0));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7540:5): [True: 2, False: 0]
  ------------------
 7541|       |
 7542|       |    /* timezone values */
 7543|      2|    d = _PyType_GetDict(&PyDateTime_TimeZoneType);
 7544|      2|    if (PyDict_SetItemString(d, "utc", (PyObject *)&utc_timezone) < 0) {
  ------------------
  |  Branch (7544:9): [True: 0, False: 2]
  ------------------
 7545|      0|        goto error;
 7546|      0|    }
 7547|       |
 7548|       |    /* bpo-37642: These attributes are rounded to the nearest minute for backwards
 7549|       |    * compatibility, even though the constructor will accept a wider range of
 7550|       |    * values. This may change in the future.*/
 7551|       |
 7552|       |    /* -23:59 */
 7553|      2|    DATETIME_ADD_MACRO(d, "min", create_timezone_from_delta(-1, 60, 0, 1));
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7553:5): [True: 2, False: 0]
  ------------------
 7554|       |
 7555|       |    /* +23:59 */
 7556|      2|    DATETIME_ADD_MACRO(
  ------------------
  |  | 7502|      2|    do {                                                \
  |  | 7503|      2|        assert(!PyErr_Occurred());                      \
  |  | 7504|      2|        PyObject *value = (value_expr);                 \
  |  | 7505|      2|        if (value == NULL) {                            \
  |  |  ------------------
  |  |  |  Branch (7505:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7506|      0|            goto error;                                 \
  |  | 7507|      0|        }                                               \
  |  | 7508|      2|        if (PyDict_SetItemString(dict, c, value) < 0) { \
  |  |  ------------------
  |  |  |  Branch (7508:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 7509|      0|            Py_DECREF(value);                           \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7510|      0|            goto error;                                 \
  |  | 7511|      0|        }                                               \
  |  | 7512|      2|        Py_DECREF(value);                               \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7513|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (7513:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (7556:5): [True: 2, False: 0]
  ------------------
 7557|      2|            d, "max", create_timezone_from_delta(0, (23 * 60 + 59) * 60, 0, 0));
 7558|       |
 7559|      2|#undef DATETIME_ADD_MACRO
 7560|       |
 7561|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 7562|       |
 7563|      0|error:
 7564|      0|    return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 7565|      2|}
_datetimemodule.c:days_in_month:
  432|      8|{
  433|      8|    assert(month >= 1);
  ------------------
  |  Branch (433:5): [True: 8, False: 0]
  ------------------
  434|      8|    assert(month <= 12);
  ------------------
  |  Branch (434:5): [True: 8, False: 0]
  ------------------
  435|      8|    if (month == 2 && is_leap(year))
  ------------------
  |  Branch (435:9): [True: 0, False: 8]
  |  Branch (435:23): [True: 0, False: 0]
  ------------------
  436|      0|        return 29;
  437|      8|    else
  438|      8|        return _days_in_month[month];
  439|      8|}
_datetimemodule.c:new_delta_ex:
 1373|     16|{
 1374|     16|    PyDateTime_Delta *self;
 1375|       |
 1376|     16|    if (normalize)
  ------------------
  |  Branch (1376:9): [True: 2, False: 14]
  ------------------
 1377|      2|        normalize_d_s_us(&days, &seconds, &microseconds);
 1378|     16|    assert(0 <= seconds && seconds < 24*3600);
  ------------------
  |  Branch (1378:5): [True: 16, False: 0]
  |  Branch (1378:5): [True: 16, False: 0]
  ------------------
 1379|     16|    assert(0 <= microseconds && microseconds < 1000000);
  ------------------
  |  Branch (1379:5): [True: 16, False: 0]
  |  Branch (1379:5): [True: 16, False: 0]
  ------------------
 1380|       |
 1381|     16|    if (check_delta_day_range(days) < 0)
  ------------------
  |  Branch (1381:9): [True: 0, False: 16]
  ------------------
 1382|      0|        return NULL;
 1383|       |
 1384|     16|    self = look_up_delta(days, seconds, microseconds, type);
 1385|     16|    if (self != NULL) {
  ------------------
  |  Branch (1385:9): [True: 0, False: 16]
  ------------------
 1386|      0|        return (PyObject *)self;
 1387|      0|    }
 1388|     16|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (1388:5): [True: 16, False: 0]
  ------------------
 1389|       |
 1390|     16|    self = (PyDateTime_Delta *) (type->tp_alloc(type, 0));
 1391|     16|    if (self != NULL) {
  ------------------
  |  Branch (1391:9): [True: 16, False: 0]
  ------------------
 1392|     16|        self->hashcode = -1;
 1393|     16|        SET_TD_DAYS(self, days);
  ------------------
  |  |  315|     16|#define SET_TD_DAYS(o, v)       ((o)->days = (v))
  ------------------
 1394|     16|        SET_TD_SECONDS(self, seconds);
  ------------------
  |  |  316|     16|#define SET_TD_SECONDS(o, v)    ((o)->seconds = (v))
  ------------------
 1395|     16|        SET_TD_MICROSECONDS(self, microseconds);
  ------------------
  |  |  317|     16|#define SET_TD_MICROSECONDS(o, v) ((o)->microseconds = (v))
  ------------------
 1396|     16|    }
 1397|     16|    return (PyObject *) self;
 1398|     16|}
_datetimemodule.c:normalize_d_s_us:
  737|      2|{
  738|      2|    if (*us < 0 || *us >= 1000000) {
  ------------------
  |  Branch (738:9): [True: 0, False: 2]
  |  Branch (738:20): [True: 0, False: 2]
  ------------------
  739|      0|        normalize_pair(s, us, 1000000);
  740|       |        /* |s| can't be bigger than about
  741|       |         * |original s| + |original us|/1000000 now.
  742|       |         */
  743|       |
  744|      0|    }
  745|      2|    if (*s < 0 || *s >= 24*3600) {
  ------------------
  |  Branch (745:9): [True: 0, False: 2]
  |  Branch (745:19): [True: 0, False: 2]
  ------------------
  746|      0|        normalize_pair(d, s, 24*3600);
  747|       |        /* |d| can't be bigger than about
  748|       |         * |original d| +
  749|       |         * (|original s| + |original us|/1000000) / (24*3600) now.
  750|       |         */
  751|      0|    }
  752|      2|    assert(0 <= *s && *s < 24*3600);
  ------------------
  |  Branch (752:5): [True: 2, False: 0]
  |  Branch (752:5): [True: 2, False: 0]
  ------------------
  753|      2|    assert(0 <= *us && *us < 1000000);
  ------------------
  |  Branch (753:5): [True: 2, False: 0]
  |  Branch (753:5): [True: 2, False: 0]
  ------------------
  754|      2|}
_datetimemodule.c:check_delta_day_range:
  638|     16|{
  639|     16|    if (-MAX_DELTA_DAYS <= days && days <= MAX_DELTA_DAYS)
  ------------------
  |  |  267|     16|#define MAX_DELTA_DAYS 999999999
  ------------------
                  if (-MAX_DELTA_DAYS <= days && days <= MAX_DELTA_DAYS)
  ------------------
  |  |  267|     16|#define MAX_DELTA_DAYS 999999999
  ------------------
  |  Branch (639:9): [True: 16, False: 0]
  |  Branch (639:36): [True: 16, False: 0]
  ------------------
  640|     16|        return 0;
  641|      0|    PyErr_Format(PyExc_OverflowError,
  642|      0|                 "days=%d; must have magnitude <= %d",
  643|      0|                 days, MAX_DELTA_DAYS);
  ------------------
  |  |  267|      0|#define MAX_DELTA_DAYS 999999999
  ------------------
  644|      0|    return -1;
  645|     16|}
_datetimemodule.c:look_up_delta:
 3146|     16|{
 3147|     16|    if (days == 0 && seconds == 0 && microseconds == 0
  ------------------
  |  Branch (3147:9): [True: 8, False: 8]
  |  Branch (3147:22): [True: 6, False: 2]
  |  Branch (3147:38): [True: 0, False: 6]
  ------------------
 3148|      0|            && type == Py_TYPE(&zero_delta))
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3148:16): [True: 0, False: 0]
  ------------------
 3149|      0|    {
 3150|      0|        return &zero_delta;
 3151|      0|    }
 3152|     16|    return NULL;
 3153|     16|}
_datetimemodule.c:check_tzinfo_subclass:
 1477|      8|{
 1478|      8|    if (p == Py_None || PyTZInfo_Check(p))
  ------------------
  |  |  616|     16|#  define Py_None (&_Py_NoneStruct)
  ------------------
                  if (p == Py_None || PyTZInfo_Check(p))
  ------------------
  |  |  100|      0|#define PyTZInfo_Check(op) PyObject_TypeCheck(op, TZINFO_TYPE(NO_STATE))
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1478:9): [True: 8, False: 0]
  ------------------
 1479|      8|        return 0;
 1480|      0|    PyErr_Format(PyExc_TypeError,
 1481|      0|                 "tzinfo argument must be None or of a tzinfo subclass, "
 1482|      0|                 "not type '%s'",
 1483|      0|                 Py_TYPE(p)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1484|      0|    return -1;
 1485|      8|}
_datetimemodule.c:new_date_ex:
 1156|      4|{
 1157|      4|    PyDateTime_Date *self;
 1158|       |
 1159|      4|    if (check_date_args(year, month, day) < 0) {
  ------------------
  |  Branch (1159:9): [True: 0, False: 4]
  ------------------
 1160|      0|        return NULL;
 1161|      0|    }
 1162|       |
 1163|      4|    self = (PyDateTime_Date *)(type->tp_alloc(type, 0));
 1164|      4|    if (self != NULL)
  ------------------
  |  Branch (1164:9): [True: 4, False: 0]
  ------------------
 1165|      4|        set_date_fields(self, year, month, day);
 1166|      4|    return (PyObject *)self;
 1167|      4|}
_datetimemodule.c:check_date_args:
  652|      8|{
  653|       |
  654|      8|    if (year < MINYEAR || year > MAXYEAR) {
  ------------------
  |  |  258|     16|#define MINYEAR 1
  ------------------
                  if (year < MINYEAR || year > MAXYEAR) {
  ------------------
  |  |  259|      8|#define MAXYEAR 9999
  ------------------
  |  Branch (654:9): [True: 0, False: 8]
  |  Branch (654:27): [True: 0, False: 8]
  ------------------
  655|      0|        PyErr_Format(PyExc_ValueError,
  656|      0|                     "year must be in %d..%d, not %d", MINYEAR, MAXYEAR, year);
  ------------------
  |  |  258|      0|#define MINYEAR 1
  ------------------
                                   "year must be in %d..%d, not %d", MINYEAR, MAXYEAR, year);
  ------------------
  |  |  259|      0|#define MAXYEAR 9999
  ------------------
  657|      0|        return -1;
  658|      0|    }
  659|      8|    if (month < 1 || month > 12) {
  ------------------
  |  Branch (659:9): [True: 0, False: 8]
  |  Branch (659:22): [True: 0, False: 8]
  ------------------
  660|      0|        PyErr_Format(PyExc_ValueError,
  661|      0|                     "month must be in 1..12, not %d", month);
  662|      0|        return -1;
  663|      0|    }
  664|      8|    int dim = days_in_month(year, month);
  665|      8|    if (day < 1 || day > dim) {
  ------------------
  |  Branch (665:9): [True: 0, False: 8]
  |  Branch (665:20): [True: 0, False: 8]
  ------------------
  666|      0|        PyErr_Format(PyExc_ValueError,
  667|      0|                     "day %i must be in range 1..%d for month %i in year %i",
  668|      0|                     day, dim, month, year);
  669|      0|        return -1;
  670|      0|    }
  671|      8|    return 0;
  672|      8|}
_datetimemodule.c:set_date_fields:
  903|      8|{
  904|      8|    self->hashcode = -1;
  905|      8|    SET_YEAR(self, y);
  ------------------
  |  |  280|      8|#define SET_YEAR(o, v)          (((o)->data[0] = ((v) & 0xff00) >> 8), \
  |  |  281|      8|                 ((o)->data[1] = ((v) & 0x00ff)))
  ------------------
  906|      8|    SET_MONTH(self, m);
  ------------------
  |  |  282|      8|#define SET_MONTH(o, v)         (PyDateTime_GET_MONTH(o) = (v))
  |  |  ------------------
  |  |  |  |  124|      8|#define PyDateTime_GET_MONTH(o)    (((PyDateTime_Date*)(o))->data[2])
  |  |  ------------------
  ------------------
  907|      8|    SET_DAY(self, d);
  ------------------
  |  |  283|      8|#define SET_DAY(o, v)           (PyDateTime_GET_DAY(o) = (v))
  |  |  ------------------
  |  |  |  |  125|      8|#define PyDateTime_GET_DAY(o)      (((PyDateTime_Date*)(o))->data[3])
  |  |  ------------------
  ------------------
  908|      8|}
_datetimemodule.c:check_time_args:
  679|      8|{
  680|      8|    if (h < 0 || h > 23) {
  ------------------
  |  Branch (680:9): [True: 0, False: 8]
  |  Branch (680:18): [True: 0, False: 8]
  ------------------
  681|      0|        PyErr_Format(PyExc_ValueError, "hour must be in 0..23, not %i", h);
  682|      0|        return -1;
  683|      0|    }
  684|      8|    if (m < 0 || m > 59) {
  ------------------
  |  Branch (684:9): [True: 0, False: 8]
  |  Branch (684:18): [True: 0, False: 8]
  ------------------
  685|      0|        PyErr_Format(PyExc_ValueError, "minute must be in 0..59, not %i", m);
  686|      0|        return -1;
  687|      0|    }
  688|      8|    if (s < 0 || s > 59) {
  ------------------
  |  Branch (688:9): [True: 0, False: 8]
  |  Branch (688:18): [True: 0, False: 8]
  ------------------
  689|      0|        PyErr_Format(PyExc_ValueError, "second must be in 0..59, not %i", s);
  690|      0|        return -1;
  691|      0|    }
  692|      8|    if (us < 0 || us > 999999) {
  ------------------
  |  Branch (692:9): [True: 0, False: 8]
  |  Branch (692:19): [True: 0, False: 8]
  ------------------
  693|      0|        PyErr_Format(PyExc_ValueError,
  694|      0|                     "microsecond must be in 0..999999, not %i", us);
  695|      0|        return -1;
  696|      0|    }
  697|      8|    if (fold != 0 && fold != 1) {
  ------------------
  |  Branch (697:9): [True: 0, False: 8]
  |  Branch (697:22): [True: 0, False: 0]
  ------------------
  698|      0|        PyErr_Format(PyExc_ValueError,
  699|      0|                     "fold must be either 0 or 1, not %i", fold);
  700|      0|        return -1;
  701|      0|    }
  702|      8|    return 0;
  703|      8|}
_datetimemodule.c:create_timezone:
 1419|      4|{
 1420|      4|    PyDateTime_TimeZone *self;
 1421|      4|    PyTypeObject *type = TIMEZONE_TYPE(NO_STATE);
  ------------------
  |  |   80|      4|#define TIMEZONE_TYPE(st) &PyDateTime_TimeZoneType
  ------------------
 1422|       |
 1423|      4|    assert(offset != NULL);
  ------------------
  |  Branch (1423:5): [True: 4, False: 0]
  ------------------
 1424|      4|    assert(PyDelta_Check(offset));
  ------------------
  |  Branch (1424:5): [True: 4, False: 0]
  ------------------
 1425|      4|    assert(name == NULL || PyUnicode_Check(name));
  ------------------
  |  Branch (1425:5): [True: 4, False: 0]
  |  Branch (1425:5): [True: 0, False: 0]
  ------------------
 1426|       |
 1427|      4|    self = look_up_timezone(offset, name);
 1428|      4|    if (self != NULL) {
  ------------------
  |  Branch (1428:9): [True: 0, False: 4]
  ------------------
 1429|      0|        return (PyObject *)self;
 1430|      0|    }
 1431|      4|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (1431:5): [True: 4, False: 0]
  ------------------
 1432|       |
 1433|      4|    self = (PyDateTime_TimeZone *)(type->tp_alloc(type, 0));
 1434|      4|    if (self == NULL) {
  ------------------
  |  Branch (1434:9): [True: 0, False: 4]
  ------------------
 1435|      0|        return NULL;
 1436|      0|    }
 1437|      4|    self->offset = Py_NewRef(offset);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1438|      4|    self->name = Py_XNewRef(name);
  ------------------
  |  |  551|      4|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1439|      4|    return (PyObject *)self;
 1440|      4|}
_datetimemodule.c:look_up_timezone:
 4573|      4|{
 4574|      4|    if (offset == utc_timezone.offset && name == NULL) {
  ------------------
  |  Branch (4574:9): [True: 0, False: 4]
  |  Branch (4574:42): [True: 0, False: 0]
  ------------------
 4575|      0|        return (PyDateTime_TimeZone *)CONST_UTC(NO_STATE);
  ------------------
  |  |  116|      0|#define CONST_UTC(st) ((PyObject *)&utc_timezone)
  ------------------
 4576|      0|    }
 4577|      4|    return NULL;
 4578|      4|}
_datetimemodule.c:time_alloc:
  873|      4|{
  874|      4|    size_t size = aware ? sizeof(PyDateTime_Time) : sizeof(_PyDateTime_BaseTime);
  ------------------
  |  Branch (874:19): [True: 0, False: 4]
  ------------------
  875|      4|    PyObject *self = (PyObject *)PyObject_Malloc(size);
  876|      4|    if (self == NULL) {
  ------------------
  |  Branch (876:9): [True: 0, False: 4]
  ------------------
  877|      0|        return PyErr_NoMemory();
  878|      0|    }
  879|      4|    _PyObject_Init(self, type);
  880|      4|    return self;
  881|      4|}
_datetimemodule.c:new_time_ex2:
 1307|      4|{
 1308|      4|    PyDateTime_Time *self;
 1309|      4|    char aware = tzinfo != Py_None;
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
 1310|       |
 1311|      4|    if (check_time_args(hour, minute, second, usecond, fold) < 0) {
  ------------------
  |  Branch (1311:9): [True: 0, False: 4]
  ------------------
 1312|      0|        return NULL;
 1313|      0|    }
 1314|      4|    if (check_tzinfo_subclass(tzinfo) < 0) {
  ------------------
  |  Branch (1314:9): [True: 0, False: 4]
  ------------------
 1315|      0|        return NULL;
 1316|      0|    }
 1317|       |
 1318|      4|    self = (PyDateTime_Time *) (type->tp_alloc(type, aware));
 1319|      4|    if (self != NULL) {
  ------------------
  |  Branch (1319:9): [True: 4, False: 0]
  ------------------
 1320|      4|        self->hastzinfo = aware;
 1321|      4|        self->hashcode = -1;
 1322|      4|        TIME_SET_HOUR(self, hour);
  ------------------
  |  |  301|      4|#define TIME_SET_HOUR(o, v)     (PyDateTime_TIME_GET_HOUR(o) = (v))
  |  |  ------------------
  |  |  |  |  139|      4|#define PyDateTime_TIME_GET_HOUR(o)        (((PyDateTime_Time*)(o))->data[0])
  |  |  ------------------
  ------------------
 1323|      4|        TIME_SET_MINUTE(self, minute);
  ------------------
  |  |  302|      4|#define TIME_SET_MINUTE(o, v)   (PyDateTime_TIME_GET_MINUTE(o) = (v))
  |  |  ------------------
  |  |  |  |  140|      4|#define PyDateTime_TIME_GET_MINUTE(o)      (((PyDateTime_Time*)(o))->data[1])
  |  |  ------------------
  ------------------
 1324|      4|        TIME_SET_SECOND(self, second);
  ------------------
  |  |  303|      4|#define TIME_SET_SECOND(o, v)   (PyDateTime_TIME_GET_SECOND(o) = (v))
  |  |  ------------------
  |  |  |  |  141|      4|#define PyDateTime_TIME_GET_SECOND(o)      (((PyDateTime_Time*)(o))->data[2])
  |  |  ------------------
  ------------------
 1325|      4|        TIME_SET_MICROSECOND(self, usecond);
  ------------------
  |  |  305|      4|    (((o)->data[3] = ((v) & 0xff0000) >> 16), \
  |  |  306|      4|     ((o)->data[4] = ((v) & 0x00ff00) >> 8), \
  |  |  307|      4|     ((o)->data[5] = ((v) & 0x0000ff)))
  ------------------
 1326|      4|        if (aware) {
  ------------------
  |  Branch (1326:13): [True: 0, False: 4]
  ------------------
 1327|      0|            self->tzinfo = Py_NewRef(tzinfo);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1328|      0|        }
 1329|      4|        TIME_SET_FOLD(self, fold);
  ------------------
  |  |  308|      4|#define TIME_SET_FOLD(o, v)   (PyDateTime_TIME_GET_FOLD(o) = (v))
  |  |  ------------------
  |  |  |  |  146|      4|#define PyDateTime_TIME_GET_FOLD(o)        (((PyDateTime_Time*)(o))->fold)
  |  |  ------------------
  ------------------
 1330|      4|    }
 1331|      4|    return (PyObject *)self;
 1332|      4|}
_datetimemodule.c:datetime_alloc:
  885|      4|{
  886|      4|    size_t size = aware ? sizeof(PyDateTime_DateTime) : sizeof(_PyDateTime_BaseDateTime);
  ------------------
  |  Branch (886:19): [True: 0, False: 4]
  ------------------
  887|      4|    PyObject *self = (PyObject *)PyObject_Malloc(size);
  888|      4|    if (self == NULL) {
  ------------------
  |  Branch (888:9): [True: 0, False: 4]
  ------------------
  889|      0|        return PyErr_NoMemory();
  890|      0|    }
  891|      4|    _PyObject_Init(self, type);
  892|      4|    return self;
  893|      4|}
_datetimemodule.c:new_datetime_ex2:
 1199|      4|{
 1200|      4|    PyDateTime_DateTime *self;
 1201|      4|    char aware = tzinfo != Py_None;
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
 1202|       |
 1203|      4|    if (check_date_args(year, month, day) < 0) {
  ------------------
  |  Branch (1203:9): [True: 0, False: 4]
  ------------------
 1204|      0|        return NULL;
 1205|      0|    }
 1206|      4|    if (check_time_args(hour, minute, second, usecond, fold) < 0) {
  ------------------
  |  Branch (1206:9): [True: 0, False: 4]
  ------------------
 1207|      0|        return NULL;
 1208|      0|    }
 1209|      4|    if (check_tzinfo_subclass(tzinfo) < 0) {
  ------------------
  |  Branch (1209:9): [True: 0, False: 4]
  ------------------
 1210|      0|        return NULL;
 1211|      0|    }
 1212|       |
 1213|      4|    self = (PyDateTime_DateTime *) (type->tp_alloc(type, aware));
 1214|      4|    if (self != NULL) {
  ------------------
  |  Branch (1214:9): [True: 4, False: 0]
  ------------------
 1215|      4|        self->hastzinfo = aware;
 1216|      4|        set_date_fields((PyDateTime_Date *)self, year, month, day);
 1217|      4|        DATE_SET_HOUR(self, hour);
  ------------------
  |  |  286|      4|#define DATE_SET_HOUR(o, v)     (PyDateTime_DATE_GET_HOUR(o) = (v))
  |  |  ------------------
  |  |  |  |  127|      4|#define PyDateTime_DATE_GET_HOUR(o)        (((PyDateTime_DateTime*)(o))->data[4])
  |  |  ------------------
  ------------------
 1218|      4|        DATE_SET_MINUTE(self, minute);
  ------------------
  |  |  287|      4|#define DATE_SET_MINUTE(o, v)   (PyDateTime_DATE_GET_MINUTE(o) = (v))
  |  |  ------------------
  |  |  |  |  128|      4|#define PyDateTime_DATE_GET_MINUTE(o)      (((PyDateTime_DateTime*)(o))->data[5])
  |  |  ------------------
  ------------------
 1219|      4|        DATE_SET_SECOND(self, second);
  ------------------
  |  |  288|      4|#define DATE_SET_SECOND(o, v)   (PyDateTime_DATE_GET_SECOND(o) = (v))
  |  |  ------------------
  |  |  |  |  129|      4|#define PyDateTime_DATE_GET_SECOND(o)      (((PyDateTime_DateTime*)(o))->data[6])
  |  |  ------------------
  ------------------
 1220|      4|        DATE_SET_MICROSECOND(self, usecond);
  ------------------
  |  |  290|      4|    (((o)->data[7] = ((v) & 0xff0000) >> 16), \
  |  |  291|      4|     ((o)->data[8] = ((v) & 0x00ff00) >> 8), \
  |  |  292|      4|     ((o)->data[9] = ((v) & 0x0000ff)))
  ------------------
 1221|      4|        if (aware) {
  ------------------
  |  Branch (1221:13): [True: 0, False: 4]
  ------------------
 1222|      0|            self->tzinfo = Py_NewRef(tzinfo);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1223|      0|        }
 1224|      4|        DATE_SET_FOLD(self, fold);
  ------------------
  |  |  293|      4|#define DATE_SET_FOLD(o, v)   (PyDateTime_DATE_GET_FOLD(o) = (v))
  |  |  ------------------
  |  |  |  |  134|      4|#define PyDateTime_DATE_GET_FOLD(o)        (((PyDateTime_DateTime*)(o))->fold)
  |  |  ------------------
  ------------------
 1225|      4|    }
 1226|      4|    return (PyObject *)self;
 1227|      4|}
_datetimemodule.c:create_timezone_from_delta:
 7372|      4|{
 7373|      4|    PyObject *delta = new_delta(days, sec, ms, normalize);
  ------------------
  |  | 1401|      4|    new_delta_ex(d, s, us, normalize, DELTA_TYPE(NO_STATE))
  |  |  ------------------
  |  |  |  |   78|      4|#define DELTA_TYPE(st) &PyDateTime_DeltaType
  |  |  ------------------
  ------------------
 7374|      4|    if (delta == NULL) {
  ------------------
  |  Branch (7374:9): [True: 0, False: 4]
  ------------------
 7375|      0|        return NULL;
 7376|      0|    }
 7377|      4|    PyObject *tz = create_timezone(delta, NULL);
 7378|      4|    Py_DECREF(delta);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7379|      4|    return tz;
 7380|      4|}

PyNumber_AsOff_t:
  527|     10|{
  528|     10|    Py_off_t result;
  529|     10|    PyObject *runerr;
  530|     10|    PyObject *value = _PyNumber_Index(item);
  531|     10|    if (value == NULL)
  ------------------
  |  Branch (531:9): [True: 0, False: 10]
  ------------------
  532|      0|        return -1;
  533|       |
  534|       |    /* We're done if PyLong_AsSsize_t() returns without error. */
  535|     10|    result = PyLong_AsOff_t(value);
  ------------------
  |  |  111|     10|# define PyLong_AsOff_t     PyLong_AsSsize_t
  ------------------
  536|     10|    if (result != -1 || !(runerr = PyErr_Occurred()))
  ------------------
  |  Branch (536:9): [True: 10, False: 0]
  |  Branch (536:25): [True: 0, False: 0]
  ------------------
  537|     10|        goto finish;
  538|       |
  539|       |    /* Error handling code -- only manage OverflowError differently */
  540|      0|    if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError))
  ------------------
  |  Branch (540:9): [True: 0, False: 0]
  ------------------
  541|      0|        goto finish;
  542|       |
  543|      0|    PyErr_Clear();
  544|       |    /* If no error-handling desired then the default clipping
  545|       |       is sufficient.
  546|       |     */
  547|      0|    if (!err) {
  ------------------
  |  Branch (547:9): [True: 0, False: 0]
  ------------------
  548|      0|        assert(PyLong_Check(value));
  ------------------
  |  Branch (548:9): [True: 0, False: 0]
  ------------------
  549|      0|        if (_PyLong_IsNegative((PyLongObject *)value))
  ------------------
  |  Branch (549:13): [True: 0, False: 0]
  ------------------
  550|      0|            result = PY_OFF_T_MIN;
  ------------------
  |  |  114|      0|# define PY_OFF_T_MIN       PY_SSIZE_T_MIN
  |  |  ------------------
  |  |  |  |  146|      0|#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  551|      0|        else
  552|      0|            result = PY_OFF_T_MAX;
  ------------------
  |  |  113|      0|# define PY_OFF_T_MAX       PY_SSIZE_T_MAX
  |  |  ------------------
  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  ------------------
  553|      0|    }
  554|      0|    else {
  555|       |        /* Otherwise replace the error with caller's error object. */
  556|      0|        PyErr_Format(err,
  557|      0|                     "cannot fit '%.200s' into an offset-sized integer",
  558|      0|                     Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  559|      0|    }
  560|       |
  561|     10| finish:
  562|     10|    Py_DECREF(value);
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  563|     10|    return result;
  564|      0|}
PyInit__io:
  746|      2|{
  747|      2|    return PyModuleDef_Init(&_PyIO_Module);
  748|      2|}
_iomodule.c:_io_open_impl:
  204|      6|{
  205|      6|    size_t i;
  206|       |
  207|      6|    int creating = 0, reading = 0, writing = 0, appending = 0, updating = 0;
  208|      6|    int text = 0, binary = 0;
  209|       |
  210|      6|    char rawmode[6], *m;
  211|      6|    int line_buffering, is_number, isatty = 0;
  212|       |
  213|      6|    PyObject *raw, *modeobj = NULL, *buffer, *wrapper, *result = NULL, *path_or_fd = NULL;
  214|       |
  215|      6|    is_number = PyNumber_Check(file);
  216|       |
  217|      6|    if (is_number) {
  ------------------
  |  Branch (217:9): [True: 6, False: 0]
  ------------------
  218|      6|        path_or_fd = Py_NewRef(file);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  219|      6|    } else {
  220|      0|        path_or_fd = PyOS_FSPath(file);
  221|      0|        if (path_or_fd == NULL) {
  ------------------
  |  Branch (221:13): [True: 0, False: 0]
  ------------------
  222|      0|            return NULL;
  223|      0|        }
  224|      0|    }
  225|       |
  226|      6|    if (!is_number &&
  ------------------
  |  Branch (226:9): [True: 0, False: 6]
  ------------------
  227|      6|        !PyUnicode_Check(path_or_fd) &&
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (227:9): [True: 0, False: 0]
  ------------------
  228|      0|        !PyBytes_Check(path_or_fd)) {
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (228:9): [True: 0, False: 0]
  ------------------
  229|      0|        PyErr_Format(PyExc_TypeError, "invalid file: %R", file);
  230|      0|        goto error;
  231|      0|    }
  232|       |
  233|       |    /* Decode mode */
  234|     18|    for (i = 0; i < strlen(mode); i++) {
  ------------------
  |  Branch (234:17): [True: 12, False: 6]
  ------------------
  235|     12|        char c = mode[i];
  236|       |
  237|     12|        switch (c) {
  238|      0|        case 'x':
  ------------------
  |  Branch (238:9): [True: 0, False: 12]
  ------------------
  239|      0|            creating = 1;
  240|      0|            break;
  241|      2|        case 'r':
  ------------------
  |  Branch (241:9): [True: 2, False: 10]
  ------------------
  242|      2|            reading = 1;
  243|      2|            break;
  244|      4|        case 'w':
  ------------------
  |  Branch (244:9): [True: 4, False: 8]
  ------------------
  245|      4|            writing = 1;
  246|      4|            break;
  247|      0|        case 'a':
  ------------------
  |  Branch (247:9): [True: 0, False: 12]
  ------------------
  248|      0|            appending = 1;
  249|      0|            break;
  250|      0|        case '+':
  ------------------
  |  Branch (250:9): [True: 0, False: 12]
  ------------------
  251|      0|            updating = 1;
  252|      0|            break;
  253|      0|        case 't':
  ------------------
  |  Branch (253:9): [True: 0, False: 12]
  ------------------
  254|      0|            text = 1;
  255|      0|            break;
  256|      6|        case 'b':
  ------------------
  |  Branch (256:9): [True: 6, False: 6]
  ------------------
  257|      6|            binary = 1;
  258|      6|            break;
  259|      0|        default:
  ------------------
  |  Branch (259:9): [True: 0, False: 12]
  ------------------
  260|      0|            goto invalid_mode;
  261|     12|        }
  262|       |
  263|       |        /* c must not be duplicated */
  264|     12|        if (strchr(mode+i+1, c)) {
  ------------------
  |  Branch (264:13): [True: 0, False: 12]
  ------------------
  265|      0|          invalid_mode:
  266|      0|            PyErr_Format(PyExc_ValueError, "invalid mode: '%s'", mode);
  267|      0|            goto error;
  268|      0|        }
  269|       |
  270|     12|    }
  271|       |
  272|      6|    m = rawmode;
  273|      6|    if (creating)  *(m++) = 'x';
  ------------------
  |  Branch (273:9): [True: 0, False: 6]
  ------------------
  274|      6|    if (reading)   *(m++) = 'r';
  ------------------
  |  Branch (274:9): [True: 2, False: 4]
  ------------------
  275|      6|    if (writing)   *(m++) = 'w';
  ------------------
  |  Branch (275:9): [True: 4, False: 2]
  ------------------
  276|      6|    if (appending) *(m++) = 'a';
  ------------------
  |  Branch (276:9): [True: 0, False: 6]
  ------------------
  277|      6|    if (updating)  *(m++) = '+';
  ------------------
  |  Branch (277:9): [True: 0, False: 6]
  ------------------
  278|      6|    *m = '\0';
  279|       |
  280|       |    /* Parameters validation */
  281|      6|    if (text && binary) {
  ------------------
  |  Branch (281:9): [True: 0, False: 6]
  |  Branch (281:17): [True: 0, False: 0]
  ------------------
  282|      0|        PyErr_SetString(PyExc_ValueError,
  283|      0|                        "can't have text and binary mode at once");
  284|      0|        goto error;
  285|      0|    }
  286|       |
  287|      6|    if (creating + reading + writing + appending > 1) {
  ------------------
  |  Branch (287:9): [True: 0, False: 6]
  ------------------
  288|      0|        PyErr_SetString(PyExc_ValueError,
  289|      0|                        "must have exactly one of create/read/write/append mode");
  290|      0|        goto error;
  291|      0|    }
  292|       |
  293|      6|    if (binary && encoding != NULL) {
  ------------------
  |  Branch (293:9): [True: 6, False: 0]
  |  Branch (293:19): [True: 0, False: 6]
  ------------------
  294|      0|        PyErr_SetString(PyExc_ValueError,
  295|      0|                        "binary mode doesn't take an encoding argument");
  296|      0|        goto error;
  297|      0|    }
  298|       |
  299|      6|    if (binary && errors != NULL) {
  ------------------
  |  Branch (299:9): [True: 6, False: 0]
  |  Branch (299:19): [True: 0, False: 6]
  ------------------
  300|      0|        PyErr_SetString(PyExc_ValueError,
  301|      0|                        "binary mode doesn't take an errors argument");
  302|      0|        goto error;
  303|      0|    }
  304|       |
  305|      6|    if (binary && newline != NULL) {
  ------------------
  |  Branch (305:9): [True: 6, False: 0]
  |  Branch (305:19): [True: 0, False: 6]
  ------------------
  306|      0|        PyErr_SetString(PyExc_ValueError,
  307|      0|                        "binary mode doesn't take a newline argument");
  308|      0|        goto error;
  309|      0|    }
  310|       |
  311|      6|    if (binary && buffering == 1) {
  ------------------
  |  Branch (311:9): [True: 6, False: 0]
  |  Branch (311:19): [True: 0, False: 6]
  ------------------
  312|      0|        if (PyErr_WarnEx(PyExc_RuntimeWarning,
  ------------------
  |  Branch (312:13): [True: 0, False: 0]
  ------------------
  313|      0|                         "line buffering (buffering=1) isn't supported in "
  314|      0|                         "binary mode, the default buffer size will be used",
  315|      0|                         1) < 0) {
  316|      0|           goto error;
  317|      0|        }
  318|      0|    }
  319|       |
  320|       |    /* Create the Raw file stream */
  321|      6|    _PyIO_State *state = get_io_state(module);
  322|      6|    {
  323|      6|        PyObject *RawIO_class = (PyObject *)state->PyFileIO_Type;
  324|       |#ifdef HAVE_WINDOWS_CONSOLE_IO
  325|       |        const PyConfig *config = _Py_GetConfig();
  326|       |        if (!config->legacy_windows_stdio && _PyIO_get_console_type(path_or_fd) != '\0') {
  327|       |            RawIO_class = (PyObject *)state->PyWindowsConsoleIO_Type;
  328|       |            encoding = "utf-8";
  329|       |        }
  330|       |#endif
  331|      6|        raw = PyObject_CallFunction(RawIO_class, "OsOO",
  332|      6|                                    path_or_fd, rawmode,
  333|      6|                                    closefd ? Py_True : Py_False,
  ------------------
  |  |   26|      6|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                                                  closefd ? Py_True : Py_False,
  ------------------
  |  |   25|      6|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (333:37): [True: 0, False: 6]
  ------------------
  334|      6|                                    opener);
  335|      6|    }
  336|       |
  337|      6|    if (raw == NULL)
  ------------------
  |  Branch (337:9): [True: 0, False: 6]
  ------------------
  338|      0|        goto error;
  339|      6|    result = raw;
  340|       |
  341|      6|    Py_SETREF(path_or_fd, NULL);
  ------------------
  |  |  352|      6|    do { \
  |  |  353|      6|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      6|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      6|        *_tmp_dst_ptr = (src); \
  |  |  356|      6|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
  342|       |
  343|      6|    modeobj = PyUnicode_FromString(mode);
  344|      6|    if (modeobj == NULL)
  ------------------
  |  Branch (344:9): [True: 0, False: 6]
  ------------------
  345|      0|        goto error;
  346|       |
  347|       |    /* buffering */
  348|      6|    if (buffering < 0) {
  ------------------
  |  Branch (348:9): [True: 6, False: 0]
  ------------------
  349|      6|        PyObject *res = PyObject_CallMethodNoArgs(raw, &_Py_ID(_isatty_open_only));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  350|      6|        if (res == NULL)
  ------------------
  |  Branch (350:13): [True: 0, False: 6]
  ------------------
  351|      0|            goto error;
  352|      6|        isatty = PyObject_IsTrue(res);
  353|      6|        Py_DECREF(res);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  354|      6|        if (isatty < 0)
  ------------------
  |  Branch (354:13): [True: 0, False: 6]
  ------------------
  355|      0|            goto error;
  356|      6|    }
  357|       |
  358|      6|    if (buffering == 1 || isatty) {
  ------------------
  |  Branch (358:9): [True: 0, False: 6]
  |  Branch (358:27): [True: 0, False: 6]
  ------------------
  359|      0|        buffering = -1;
  360|      0|        line_buffering = 1;
  361|      0|    }
  362|      6|    else
  363|      6|        line_buffering = 0;
  364|       |
  365|      6|    if (buffering < 0) {
  ------------------
  |  Branch (365:9): [True: 6, False: 0]
  ------------------
  366|      6|        PyObject *blksize_obj;
  367|      6|        blksize_obj = PyObject_GetAttr(raw, &_Py_ID(_blksize));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  368|      6|        if (blksize_obj == NULL)
  ------------------
  |  Branch (368:13): [True: 0, False: 6]
  ------------------
  369|      0|            goto error;
  370|      6|        buffering = PyLong_AsLong(blksize_obj);
  371|      6|        Py_DECREF(blksize_obj);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  372|      6|        if (buffering == -1 && PyErr_Occurred())
  ------------------
  |  Branch (372:13): [True: 0, False: 6]
  |  Branch (372:32): [True: 0, False: 0]
  ------------------
  373|      0|            goto error;
  374|      6|        buffering = Py_MAX(Py_MIN(buffering, 8192 * 1024), DEFAULT_BUFFER_SIZE);
  ------------------
  |  |  115|     12|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 6]
  |  |  |  Branch (115:25): [True: 0, False: 6]
  |  |  |  Branch (115:38): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  375|      6|    }
  376|      6|    if (buffering < 0) {
  ------------------
  |  Branch (376:9): [True: 0, False: 6]
  ------------------
  377|      0|        PyErr_SetString(PyExc_ValueError,
  378|      0|                        "invalid buffering size");
  379|      0|        goto error;
  380|      0|    }
  381|       |
  382|       |    /* if not buffering, returns the raw file object */
  383|      6|    if (buffering == 0) {
  ------------------
  |  Branch (383:9): [True: 0, False: 6]
  ------------------
  384|      0|        if (!binary) {
  ------------------
  |  Branch (384:13): [True: 0, False: 0]
  ------------------
  385|      0|            PyErr_SetString(PyExc_ValueError,
  386|      0|                            "can't have unbuffered text I/O");
  387|      0|            goto error;
  388|      0|        }
  389|       |
  390|      0|        Py_DECREF(modeobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  391|      0|        return result;
  392|      0|    }
  393|       |
  394|       |    /* wraps into a buffered file */
  395|      6|    {
  396|      6|        PyObject *Buffered_class;
  397|       |
  398|      6|        if (updating) {
  ------------------
  |  Branch (398:13): [True: 0, False: 6]
  ------------------
  399|      0|            Buffered_class = (PyObject *)state->PyBufferedRandom_Type;
  400|      0|        }
  401|      6|        else if (creating || writing || appending) {
  ------------------
  |  Branch (401:18): [True: 0, False: 6]
  |  Branch (401:30): [True: 4, False: 2]
  |  Branch (401:41): [True: 0, False: 2]
  ------------------
  402|      4|            Buffered_class = (PyObject *)state->PyBufferedWriter_Type;
  403|      4|        }
  404|      2|        else if (reading) {
  ------------------
  |  Branch (404:18): [True: 2, False: 0]
  ------------------
  405|      2|            Buffered_class = (PyObject *)state->PyBufferedReader_Type;
  406|      2|        }
  407|      0|        else {
  408|      0|            PyErr_Format(PyExc_ValueError,
  409|      0|                         "unknown mode: '%s'", mode);
  410|      0|            goto error;
  411|      0|        }
  412|       |
  413|      6|        buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);
  414|      6|    }
  415|      6|    if (buffer == NULL)
  ------------------
  |  Branch (415:9): [True: 0, False: 6]
  ------------------
  416|      0|        goto error;
  417|      6|    result = buffer;
  418|      6|    Py_DECREF(raw);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  419|       |
  420|       |
  421|       |    /* if binary, returns the buffered file */
  422|      6|    if (binary) {
  ------------------
  |  Branch (422:9): [True: 6, False: 0]
  ------------------
  423|      6|        Py_DECREF(modeobj);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  424|      6|        return result;
  425|      6|    }
  426|       |
  427|       |    /* wraps into a TextIOWrapper */
  428|      0|    wrapper = PyObject_CallFunction((PyObject *)state->PyTextIOWrapper_Type,
  429|      0|                                    "OsssO",
  430|      0|                                    buffer,
  431|      0|                                    encoding, errors, newline,
  432|      0|                                    line_buffering ? Py_True : Py_False);
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                                                  line_buffering ? Py_True : Py_False);
  ------------------
  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (432:37): [True: 0, False: 0]
  ------------------
  433|      0|    if (wrapper == NULL)
  ------------------
  |  Branch (433:9): [True: 0, False: 0]
  ------------------
  434|      0|        goto error;
  435|      0|    result = wrapper;
  436|      0|    Py_DECREF(buffer);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  437|       |
  438|      0|    if (PyObject_SetAttr(wrapper, &_Py_ID(mode), modeobj) < 0)
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (438:9): [True: 0, False: 0]
  ------------------
  439|      0|        goto error;
  440|      0|    Py_DECREF(modeobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  441|      0|    return result;
  442|       |
  443|      0|  error:
  444|      0|    if (result != NULL) {
  ------------------
  |  Branch (444:9): [True: 0, False: 0]
  ------------------
  445|      0|        PyObject *exc = PyErr_GetRaisedException();
  446|      0|        PyObject *close_result = PyObject_CallMethodNoArgs(result, &_Py_ID(close));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  447|      0|        _PyErr_ChainExceptions1(exc);
  448|      0|        Py_XDECREF(close_result);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  449|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  450|      0|    }
  451|      0|    Py_XDECREF(path_or_fd);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  452|      0|    Py_XDECREF(modeobj);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  453|       |    return NULL;
  454|      0|}
_iomodule.c:iomodule_exec:
  653|      2|{
  654|      2|    _PyIO_State *state = get_io_state(m);
  655|       |
  656|       |    /* DEFAULT_BUFFER_SIZE */
  657|      2|    if (PyModule_AddIntMacro(m, DEFAULT_BUFFER_SIZE) < 0)
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (657:9): [True: 0, False: 2]
  ------------------
  658|      0|        return -1;
  659|       |
  660|       |    /* UnsupportedOperation inherits from ValueError and OSError */
  661|      2|    state->unsupported_operation = PyObject_CallFunction(
  662|      2|        (PyObject *)&PyType_Type, "s(OO){}",
  663|      2|        "UnsupportedOperation", PyExc_OSError, PyExc_ValueError);
  664|      2|    if (state->unsupported_operation == NULL)
  ------------------
  |  Branch (664:9): [True: 0, False: 2]
  ------------------
  665|      0|        return -1;
  666|      2|    if (PyObject_SetAttrString(state->unsupported_operation,
  ------------------
  |  Branch (666:9): [True: 0, False: 2]
  ------------------
  667|      2|                               "__module__", &_Py_ID(io)) < 0)
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  668|      0|    {
  669|      0|        return -1;
  670|      0|    }
  671|      2|    if (PyModule_AddObjectRef(m, "UnsupportedOperation",
  ------------------
  |  Branch (671:9): [True: 0, False: 2]
  ------------------
  672|      2|                              state->unsupported_operation) < 0)
  673|      0|    {
  674|      0|        return -1;
  675|      0|    }
  676|       |
  677|       |    /* BlockingIOError, for compatibility */
  678|      2|    if (PyModule_AddObjectRef(m, "BlockingIOError",
  ------------------
  |  Branch (678:9): [True: 0, False: 2]
  ------------------
  679|      2|                              (PyObject *) PyExc_BlockingIOError) < 0) {
  680|      0|        return -1;
  681|      0|    }
  682|       |
  683|       |    // Base classes
  684|      2|    ADD_TYPE(m, state->PyIncrementalNewlineDecoder_Type, &_Py_nldecoder_spec, NULL);
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  685|      2|    ADD_TYPE(m, state->PyBytesIOBuffer_Type, &_Py_bytesiobuf_spec, NULL);
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  686|      2|    ADD_TYPE(m, state->PyIOBase_Type, &_Py_iobase_spec, NULL);
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  687|       |
  688|       |    // PyIOBase_Type subclasses
  689|      2|    ADD_TYPE(m, state->PyTextIOBase_Type, &_Py_textiobase_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  690|      2|             state->PyIOBase_Type);
  691|      2|    ADD_TYPE(m, state->PyBufferedIOBase_Type, &_Py_bufferediobase_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  692|      2|             state->PyIOBase_Type);
  693|      2|    ADD_TYPE(m, state->PyRawIOBase_Type, &_Py_rawiobase_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  694|      2|             state->PyIOBase_Type);
  695|       |
  696|       |    // PyBufferedIOBase_Type(PyIOBase_Type) subclasses
  697|      2|    ADD_TYPE(m, state->PyBytesIO_Type, &_Py_bytesio_spec, state->PyBufferedIOBase_Type);
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  698|      2|    ADD_TYPE(m, state->PyBufferedWriter_Type, &_Py_bufferedwriter_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  699|      2|             state->PyBufferedIOBase_Type);
  700|      2|    ADD_TYPE(m, state->PyBufferedReader_Type, &_Py_bufferedreader_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  701|      2|             state->PyBufferedIOBase_Type);
  702|      2|    ADD_TYPE(m, state->PyBufferedRWPair_Type, &_Py_bufferedrwpair_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  703|      2|             state->PyBufferedIOBase_Type);
  704|      2|    ADD_TYPE(m, state->PyBufferedRandom_Type, &_Py_bufferedrandom_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  705|      2|             state->PyBufferedIOBase_Type);
  706|       |
  707|       |    // PyRawIOBase_Type(PyIOBase_Type) subclasses
  708|      2|    ADD_TYPE(m, state->PyFileIO_Type, &_Py_fileio_spec, state->PyRawIOBase_Type);
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  709|       |
  710|       |#ifdef HAVE_WINDOWS_CONSOLE_IO
  711|       |    ADD_TYPE(m, state->PyWindowsConsoleIO_Type, &_Py_winconsoleio_spec,
  712|       |             state->PyRawIOBase_Type);
  713|       |#endif
  714|       |
  715|       |    // PyTextIOBase_Type(PyIOBase_Type) subclasses
  716|      2|    ADD_TYPE(m, state->PyStringIO_Type, &_Py_stringio_spec, state->PyTextIOBase_Type);
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  717|      2|    ADD_TYPE(m, state->PyTextIOWrapper_Type, &_Py_textiowrapper_spec,
  ------------------
  |  |  639|      2|#define ADD_TYPE(module, type, spec, base)                               \
  |  |  640|      2|do {                                                                     \
  |  |  641|      2|    type = (PyTypeObject *)PyType_FromModuleAndSpec(module, spec,        \
  |  |  642|      2|                                                    (PyObject *)base);   \
  |  |  643|      2|    if (type == NULL) {                                                  \
  |  |  ------------------
  |  |  |  Branch (643:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  644|      0|        return -1;                                                       \
  |  |  645|      0|    }                                                                    \
  |  |  646|      2|    if (PyModule_AddType(module, type) < 0) {                            \
  |  |  ------------------
  |  |  |  Branch (646:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  647|      0|        return -1;                                                       \
  |  |  648|      0|    }                                                                    \
  |  |  649|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (649:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
  718|      2|             state->PyTextIOBase_Type);
  719|       |
  720|      2|#undef ADD_TYPE
  721|      2|    return 0;
  722|      2|}
_iomodule.c:iomodule_traverse:
  567|      4|iomodule_traverse(PyObject *mod, visitproc visit, void *arg) {
  568|      4|    _PyIO_State *state = get_io_state(mod);
  569|      4|    Py_VISIT(state->unsupported_operation);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  570|       |
  571|      4|    Py_VISIT(state->PyIOBase_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  572|      4|    Py_VISIT(state->PyIncrementalNewlineDecoder_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  573|      4|    Py_VISIT(state->PyRawIOBase_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  574|      4|    Py_VISIT(state->PyBufferedIOBase_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  575|      4|    Py_VISIT(state->PyBufferedRWPair_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  576|      4|    Py_VISIT(state->PyBufferedRandom_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  577|      4|    Py_VISIT(state->PyBufferedReader_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  578|      4|    Py_VISIT(state->PyBufferedWriter_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  579|      4|    Py_VISIT(state->PyBytesIOBuffer_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  580|      4|    Py_VISIT(state->PyBytesIO_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  581|      4|    Py_VISIT(state->PyFileIO_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  582|      4|    Py_VISIT(state->PyStringIO_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  583|      4|    Py_VISIT(state->PyTextIOBase_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  584|      4|    Py_VISIT(state->PyTextIOWrapper_Type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  585|       |#ifdef HAVE_WINDOWS_CONSOLE_IO
  586|       |    Py_VISIT(state->PyWindowsConsoleIO_Type);
  587|       |#endif
  588|      4|    return 0;
  589|      4|}

_iomodule.c:get_io_state:
  171|     12|{
  172|     12|    void *state = _PyModule_GetState(module);
  173|     12|    assert(state != NULL);
  ------------------
  |  Branch (173:5): [True: 12, False: 0]
  ------------------
  174|     12|    return (_PyIO_State *)state;
  175|     12|}
bufferedio.c:find_io_state_by_def:
  187|      6|{
  188|      6|    PyObject *mod = PyType_GetModuleByDef(type, &_PyIO_Module);
  189|      6|    assert(mod != NULL);
  ------------------
  |  Branch (189:5): [True: 6, False: 0]
  ------------------
  190|      6|    return get_io_state(mod);
  191|      6|}
bufferedio.c:get_io_state:
  171|      6|{
  172|      6|    void *state = _PyModule_GetState(module);
  173|      6|    assert(state != NULL);
  ------------------
  |  Branch (173:5): [True: 6, False: 0]
  ------------------
  174|      6|    return (_PyIO_State *)state;
  175|      6|}
textio.c:find_io_state_by_def:
  187|      6|{
  188|      6|    PyObject *mod = PyType_GetModuleByDef(type, &_PyIO_Module);
  189|      6|    assert(mod != NULL);
  ------------------
  |  Branch (189:5): [True: 6, False: 0]
  ------------------
  190|      6|    return get_io_state(mod);
  191|      6|}
textio.c:get_io_state:
  171|      6|{
  172|      6|    void *state = _PyModule_GetState(module);
  173|      6|    assert(state != NULL);
  ------------------
  |  Branch (173:5): [True: 6, False: 0]
  ------------------
  174|      6|    return (_PyIO_State *)state;
  175|      6|}

bufferedio.c:_bufferedwriter_reset_buf:
 1924|      4|{
 1925|      4|    self->write_pos = 0;
 1926|      4|    self->write_end = -1;
 1927|      4|}
bufferedio.c:_bufferedreader_reset_buf:
 1577|      2|{
 1578|      2|    self->read_end = -1;
 1579|      2|}
bufferedio.c:_io__Buffered_seekable_impl:
  642|      6|{
  643|      6|    CHECK_INITIALIZED(self)
  ------------------
  |  |  341|      6|    if (self->ok <= 0) { \
  |  |  ------------------
  |  |  |  Branch (341:9): [True: 0, False: 6]
  |  |  ------------------
  |  |  342|      0|        if (self->detached) { \
  |  |  ------------------
  |  |  |  Branch (342:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  343|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  344|      0|                 "raw stream has been detached"); \
  |  |  345|      0|        } else { \
  |  |  346|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  347|      0|                "I/O operation on uninitialized object"); \
  |  |  348|      0|        } \
  |  |  349|      0|        return NULL; \
  |  |  350|      0|    }
  ------------------
  644|      6|    return PyObject_CallMethodNoArgs(self->raw, &_Py_ID(seekable));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  645|      6|}
bufferedio.c:_io__Buffered_readable_impl:
  655|      2|{
  656|      2|    CHECK_INITIALIZED(self)
  ------------------
  |  |  341|      2|    if (self->ok <= 0) { \
  |  |  ------------------
  |  |  |  Branch (341:9): [True: 0, False: 2]
  |  |  ------------------
  |  |  342|      0|        if (self->detached) { \
  |  |  ------------------
  |  |  |  Branch (342:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  343|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  344|      0|                 "raw stream has been detached"); \
  |  |  345|      0|        } else { \
  |  |  346|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  347|      0|                "I/O operation on uninitialized object"); \
  |  |  348|      0|        } \
  |  |  349|      0|        return NULL; \
  |  |  350|      0|    }
  ------------------
  657|      2|    return PyObject_CallMethodNoArgs(self->raw, &_Py_ID(readable));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  658|      2|}
bufferedio.c:_buffered_raw_tell:
  785|     10|{
  786|     10|    Py_off_t n;
  787|     10|    PyObject *res;
  788|     10|    res = PyObject_CallMethodNoArgs(self->raw, &_Py_ID(tell));
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  789|     10|    if (res == NULL)
  ------------------
  |  Branch (789:9): [True: 0, False: 10]
  ------------------
  790|      0|        return -1;
  791|     10|    n = PyNumber_AsOff_t(res, PyExc_ValueError);
  792|     10|    Py_DECREF(res);
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  793|     10|    if (n < 0) {
  ------------------
  |  Branch (793:9): [True: 0, False: 10]
  ------------------
  794|      0|        if (!PyErr_Occurred())
  ------------------
  |  Branch (794:13): [True: 0, False: 0]
  ------------------
  795|      0|            PyErr_Format(PyExc_OSError,
  796|      0|                         "Raw stream returned invalid position %" PY_PRIdOFF,
  ------------------
  |  |  116|      0|# define PY_PRIdOFF         "zd"
  ------------------
  797|      0|                         (PY_OFF_T_COMPAT)n);
  798|      0|        return -1;
  799|      0|    }
  800|     10|    self->abs_pos = n;
  801|     10|    return n;
  802|     10|}
bufferedio.c:_io__Buffered_tell_impl:
 1337|      4|{
 1338|      4|    Py_off_t pos;
 1339|       |
 1340|      4|    CHECK_INITIALIZED(self)
  ------------------
  |  |  341|      4|    if (self->ok <= 0) { \
  |  |  ------------------
  |  |  |  Branch (341:9): [True: 0, False: 4]
  |  |  ------------------
  |  |  342|      0|        if (self->detached) { \
  |  |  ------------------
  |  |  |  Branch (342:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  343|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  344|      0|                 "raw stream has been detached"); \
  |  |  345|      0|        } else { \
  |  |  346|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  347|      0|                "I/O operation on uninitialized object"); \
  |  |  348|      0|        } \
  |  |  349|      0|        return NULL; \
  |  |  350|      0|    }
  ------------------
 1341|      4|    pos = _buffered_raw_tell(self);
 1342|      4|    if (pos == -1)
  ------------------
  |  Branch (1342:9): [True: 0, False: 4]
  ------------------
 1343|      0|        return NULL;
 1344|      4|    pos -= RAW_OFFSET(self);
  ------------------
  |  |  402|      4|    (((VALID_READ_BUFFER(self) || VALID_WRITE_BUFFER(self)) \
  |  |  ------------------
  |  |  |  |  385|      8|    (self->readable && self->read_end != -1)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (385:6): [True: 0, False: 4]
  |  |  |  |  |  Branch (385:24): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (((VALID_READ_BUFFER(self) || VALID_WRITE_BUFFER(self)) \
  |  |  ------------------
  |  |  |  |  388|      4|    (self->writable && self->write_end != -1)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (388:6): [True: 4, False: 0]
  |  |  |  |  |  Branch (388:24): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  403|      4|        && self->raw_pos >= 0) ? self->raw_pos - self->pos : 0)
  |  |  ------------------
  |  |  |  Branch (403:12): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1345|       |
 1346|       |    // GH-95782
 1347|      4|    if (pos < 0)
  ------------------
  |  Branch (1347:9): [True: 0, False: 4]
  ------------------
 1348|      0|        pos = 0;
 1349|       |
 1350|      4|    return PyLong_FromOff_t(pos);
  ------------------
  |  |  112|      4|# define PyLong_FromOff_t   PyLong_FromSsize_t
  ------------------
 1351|      4|}
bufferedio.c:_io_BufferedReader___init___impl:
 1593|      2|{
 1594|      2|    self->ok = 0;
 1595|      2|    self->detached = 0;
 1596|       |
 1597|      2|    _PyIO_State *state = find_io_state_by_def(Py_TYPE(self));
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1598|      2|    if (_PyIOBase_check_readable(state, raw, Py_True) == NULL) {
  ------------------
  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1598:9): [True: 0, False: 2]
  ------------------
 1599|      0|        return -1;
 1600|      0|    }
 1601|       |
 1602|      2|    Py_XSETREF(self->raw, Py_NewRef(raw));
  ------------------
  |  |  374|      2|    do { \
  |  |  375|      2|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      2|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      2|        *_tmp_dst_ptr = (src); \
  |  |  378|      2|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1603|      2|    self->buffer_size = buffer_size;
 1604|      2|    self->readable = 1;
 1605|      2|    self->writable = 0;
 1606|       |
 1607|      2|    if (_buffered_init(self) < 0)
  ------------------
  |  Branch (1607:9): [True: 0, False: 2]
  ------------------
 1608|      0|        return -1;
 1609|      2|    _bufferedreader_reset_buf(self);
 1610|       |
 1611|      2|    self->fast_closed_checks = (
 1612|      2|        Py_IS_TYPE(self, state->PyBufferedReader_Type) &&
  ------------------
  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  ------------------
  ------------------
 1613|      2|        Py_IS_TYPE(raw, state->PyFileIO_Type)
  ------------------
  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  ------------------
  ------------------
 1614|      2|    );
 1615|       |
 1616|      2|    self->ok = 1;
 1617|      2|    return 0;
 1618|      2|}
bufferedio.c:_buffered_init:
  839|      6|{
  840|      6|    Py_ssize_t n;
  841|      6|    if (self->buffer_size <= 0) {
  ------------------
  |  Branch (841:9): [True: 0, False: 6]
  ------------------
  842|      0|        PyErr_SetString(PyExc_ValueError,
  843|      0|            "buffer size must be strictly positive");
  844|      0|        return -1;
  845|      0|    }
  846|      6|    if (self->buffer)
  ------------------
  |  Branch (846:9): [True: 0, False: 6]
  ------------------
  847|      0|        PyMem_Free(self->buffer);
  848|      6|    self->buffer = PyMem_Malloc(self->buffer_size);
  849|      6|    if (self->buffer == NULL) {
  ------------------
  |  Branch (849:9): [True: 0, False: 6]
  ------------------
  850|      0|        PyErr_NoMemory();
  851|      0|        return -1;
  852|      0|    }
  853|      6|    if (self->lock)
  ------------------
  |  Branch (853:9): [True: 0, False: 6]
  ------------------
  854|      0|        PyThread_free_lock(self->lock);
  855|      6|    self->lock = PyThread_allocate_lock();
  856|      6|    if (self->lock == NULL) {
  ------------------
  |  Branch (856:9): [True: 0, False: 6]
  ------------------
  857|      0|        PyErr_SetString(PyExc_RuntimeError, "can't allocate read lock");
  858|      0|        return -1;
  859|      0|    }
  860|      6|    self->owner = 0;
  861|       |    /* Find out whether buffer_size is a power of 2 */
  862|       |    /* XXX is this optimization useful? */
  863|    108|    for (n = self->buffer_size - 1; n & 1; n >>= 1)
  ------------------
  |  Branch (863:37): [True: 102, False: 6]
  ------------------
  864|    102|        ;
  865|      6|    if (n == 0)
  ------------------
  |  Branch (865:9): [True: 6, False: 0]
  ------------------
  866|      6|        self->buffer_mask = self->buffer_size - 1;
  867|      0|    else
  868|      0|        self->buffer_mask = 0;
  869|      6|    if (_buffered_raw_tell(self) == -1)
  ------------------
  |  Branch (869:9): [True: 0, False: 6]
  ------------------
  870|      0|        PyErr_Clear();
  871|      6|    return 0;
  872|      6|}
bufferedio.c:_io__Buffered_writable_impl:
  668|      4|{
  669|      4|    CHECK_INITIALIZED(self)
  ------------------
  |  |  341|      4|    if (self->ok <= 0) { \
  |  |  ------------------
  |  |  |  Branch (341:9): [True: 0, False: 4]
  |  |  ------------------
  |  |  342|      0|        if (self->detached) { \
  |  |  ------------------
  |  |  |  Branch (342:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  343|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  344|      0|                 "raw stream has been detached"); \
  |  |  345|      0|        } else { \
  |  |  346|      0|            PyErr_SetString(PyExc_ValueError, \
  |  |  347|      0|                "I/O operation on uninitialized object"); \
  |  |  348|      0|        } \
  |  |  349|      0|        return NULL; \
  |  |  350|      0|    }
  ------------------
  670|      4|    return PyObject_CallMethodNoArgs(self->raw, &_Py_ID(writable));
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  671|      4|}
bufferedio.c:_io_BufferedWriter___init___impl:
 1945|      4|{
 1946|      4|    self->ok = 0;
 1947|      4|    self->detached = 0;
 1948|       |
 1949|      4|    _PyIO_State *state = find_io_state_by_def(Py_TYPE(self));
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1950|      4|    if (_PyIOBase_check_writable(state, raw, Py_True) == NULL) {
  ------------------
  |  |   26|      4|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1950:9): [True: 0, False: 4]
  ------------------
 1951|      0|        return -1;
 1952|      0|    }
 1953|       |
 1954|      4|    Py_INCREF(raw);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1955|      4|    Py_XSETREF(self->raw, raw);
  ------------------
  |  |  374|      4|    do { \
  |  |  375|      4|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      4|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      4|        *_tmp_dst_ptr = (src); \
  |  |  378|      4|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1956|      4|    self->readable = 0;
 1957|      4|    self->writable = 1;
 1958|       |
 1959|      4|    self->buffer_size = buffer_size;
 1960|      4|    if (_buffered_init(self) < 0)
  ------------------
  |  Branch (1960:9): [True: 0, False: 4]
  ------------------
 1961|      0|        return -1;
 1962|      4|    _bufferedwriter_reset_buf(self);
 1963|      4|    self->pos = 0;
 1964|       |
 1965|      4|    self->fast_closed_checks = (
 1966|      4|        Py_IS_TYPE(self, state->PyBufferedWriter_Type) &&
  ------------------
  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
 1967|      4|        Py_IS_TYPE(raw, state->PyFileIO_Type)
  ------------------
  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
 1968|      4|    );
 1969|       |
 1970|      4|    self->ok = 1;
 1971|      4|    return 0;
 1972|      4|}

_iomodule.c:_io_open:
  140|      6|{
  141|      6|    PyObject *return_value = NULL;
  142|      6|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  143|       |
  144|      6|    #define NUM_KEYWORDS 8
  145|      6|    static struct {
  146|      6|        PyGC_Head _this_is_not_used;
  147|      6|        PyObject_VAR_HEAD
  148|      6|        Py_hash_t ob_hash;
  149|      6|        PyObject *ob_item[NUM_KEYWORDS];
  150|      6|    } _kwtuple = {
  151|      6|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      6|    {                                     \
  |  |   98|      6|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      6|    {                               \
  |  |  |  |   91|      6|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      6|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      6|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      6|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      6|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      6|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      6|        (type)                      \
  |  |  |  |   93|      6|    },
  |  |  ------------------
  |  |   99|      6|        (size)                            \
  |  |  100|      6|    },
  ------------------
  152|      6|        .ob_hash = -1,
  153|      6|        .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(buffering), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  154|      6|    };
  155|      6|    #undef NUM_KEYWORDS
  156|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  157|       |
  158|       |    #else  // !Py_BUILD_CORE
  159|       |    #  define KWTUPLE NULL
  160|       |    #endif  // !Py_BUILD_CORE
  161|       |
  162|      6|    static const char * const _keywords[] = {"file", "mode", "buffering", "encoding", "errors", "newline", "closefd", "opener", NULL};
  163|      6|    static _PyArg_Parser _parser = {
  164|      6|        .keywords = _keywords,
  165|      6|        .fname = "open",
  166|      6|        .kwtuple = KWTUPLE,
  ------------------
  |  |  156|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  167|      6|    };
  168|      6|    #undef KWTUPLE
  169|      6|    PyObject *argsbuf[8];
  170|      6|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (170:36): [True: 0, False: 6]
  ------------------
  171|      6|    PyObject *file;
  172|      6|    const char *mode = "r";
  173|      6|    int buffering = -1;
  174|      6|    const char *encoding = NULL;
  175|      6|    const char *errors = NULL;
  176|      6|    const char *newline = NULL;
  177|      6|    int closefd = 1;
  178|      6|    PyObject *opener = Py_None;
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  179|       |
  180|      6|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      6|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 6, False: 0]
  |  |  ------------------
  |  |   89|      6|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 6, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 6]
  |  |  |  Branch (89:43): [True: 6, False: 0]
  |  |  |  Branch (89:67): [True: 6, False: 0]
  |  |  ------------------
  |  |   90|      6|      (args) : \
  |  |   91|      6|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  181|      6|            /*minpos*/ 1, /*maxpos*/ 8, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  182|      6|    if (!args) {
  ------------------
  |  Branch (182:9): [True: 0, False: 6]
  ------------------
  183|      0|        goto exit;
  184|      0|    }
  185|      6|    file = args[0];
  186|      6|    if (!noptargs) {
  ------------------
  |  Branch (186:9): [True: 0, False: 6]
  ------------------
  187|      0|        goto skip_optional_pos;
  188|      0|    }
  189|      6|    if (args[1]) {
  ------------------
  |  Branch (189:9): [True: 6, False: 0]
  ------------------
  190|      6|        if (!PyUnicode_Check(args[1])) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (190:13): [True: 0, False: 6]
  ------------------
  191|      0|            _PyArg_BadArgument("open", "argument 'mode'", "str", args[1]);
  192|      0|            goto exit;
  193|      0|        }
  194|      6|        Py_ssize_t mode_length;
  195|      6|        mode = PyUnicode_AsUTF8AndSize(args[1], &mode_length);
  196|      6|        if (mode == NULL) {
  ------------------
  |  Branch (196:13): [True: 0, False: 6]
  ------------------
  197|      0|            goto exit;
  198|      0|        }
  199|      6|        if (strlen(mode) != (size_t)mode_length) {
  ------------------
  |  Branch (199:13): [True: 0, False: 6]
  ------------------
  200|      0|            PyErr_SetString(PyExc_ValueError, "embedded null character");
  201|      0|            goto exit;
  202|      0|        }
  203|      6|        if (!--noptargs) {
  ------------------
  |  Branch (203:13): [True: 0, False: 6]
  ------------------
  204|      0|            goto skip_optional_pos;
  205|      0|        }
  206|      6|    }
  207|      6|    if (args[2]) {
  ------------------
  |  Branch (207:9): [True: 6, False: 0]
  ------------------
  208|      6|        buffering = PyLong_AsInt(args[2]);
  209|      6|        if (buffering == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (209:13): [True: 6, False: 0]
  |  Branch (209:32): [True: 0, False: 6]
  ------------------
  210|      0|            goto exit;
  211|      0|        }
  212|      6|        if (!--noptargs) {
  ------------------
  |  Branch (212:13): [True: 0, False: 6]
  ------------------
  213|      0|            goto skip_optional_pos;
  214|      0|        }
  215|      6|    }
  216|      6|    if (args[3]) {
  ------------------
  |  Branch (216:9): [True: 6, False: 0]
  ------------------
  217|      6|        if (args[3] == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (217:13): [True: 6, False: 0]
  ------------------
  218|      6|            encoding = NULL;
  219|      6|        }
  220|      0|        else if (PyUnicode_Check(args[3])) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  221|      0|            Py_ssize_t encoding_length;
  222|      0|            encoding = PyUnicode_AsUTF8AndSize(args[3], &encoding_length);
  223|      0|            if (encoding == NULL) {
  ------------------
  |  Branch (223:17): [True: 0, False: 0]
  ------------------
  224|      0|                goto exit;
  225|      0|            }
  226|      0|            if (strlen(encoding) != (size_t)encoding_length) {
  ------------------
  |  Branch (226:17): [True: 0, False: 0]
  ------------------
  227|      0|                PyErr_SetString(PyExc_ValueError, "embedded null character");
  228|      0|                goto exit;
  229|      0|            }
  230|      0|        }
  231|      0|        else {
  232|      0|            _PyArg_BadArgument("open", "argument 'encoding'", "str or None", args[3]);
  233|      0|            goto exit;
  234|      0|        }
  235|      6|        if (!--noptargs) {
  ------------------
  |  Branch (235:13): [True: 0, False: 6]
  ------------------
  236|      0|            goto skip_optional_pos;
  237|      0|        }
  238|      6|    }
  239|      6|    if (args[4]) {
  ------------------
  |  Branch (239:9): [True: 6, False: 0]
  ------------------
  240|      6|        if (args[4] == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (240:13): [True: 6, False: 0]
  ------------------
  241|      6|            errors = NULL;
  242|      6|        }
  243|      0|        else if (PyUnicode_Check(args[4])) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  244|      0|            Py_ssize_t errors_length;
  245|      0|            errors = PyUnicode_AsUTF8AndSize(args[4], &errors_length);
  246|      0|            if (errors == NULL) {
  ------------------
  |  Branch (246:17): [True: 0, False: 0]
  ------------------
  247|      0|                goto exit;
  248|      0|            }
  249|      0|            if (strlen(errors) != (size_t)errors_length) {
  ------------------
  |  Branch (249:17): [True: 0, False: 0]
  ------------------
  250|      0|                PyErr_SetString(PyExc_ValueError, "embedded null character");
  251|      0|                goto exit;
  252|      0|            }
  253|      0|        }
  254|      0|        else {
  255|      0|            _PyArg_BadArgument("open", "argument 'errors'", "str or None", args[4]);
  256|      0|            goto exit;
  257|      0|        }
  258|      6|        if (!--noptargs) {
  ------------------
  |  Branch (258:13): [True: 0, False: 6]
  ------------------
  259|      0|            goto skip_optional_pos;
  260|      0|        }
  261|      6|    }
  262|      6|    if (args[5]) {
  ------------------
  |  Branch (262:9): [True: 6, False: 0]
  ------------------
  263|      6|        if (args[5] == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (263:13): [True: 6, False: 0]
  ------------------
  264|      6|            newline = NULL;
  265|      6|        }
  266|      0|        else if (PyUnicode_Check(args[5])) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  267|      0|            Py_ssize_t newline_length;
  268|      0|            newline = PyUnicode_AsUTF8AndSize(args[5], &newline_length);
  269|      0|            if (newline == NULL) {
  ------------------
  |  Branch (269:17): [True: 0, False: 0]
  ------------------
  270|      0|                goto exit;
  271|      0|            }
  272|      0|            if (strlen(newline) != (size_t)newline_length) {
  ------------------
  |  Branch (272:17): [True: 0, False: 0]
  ------------------
  273|      0|                PyErr_SetString(PyExc_ValueError, "embedded null character");
  274|      0|                goto exit;
  275|      0|            }
  276|      0|        }
  277|      0|        else {
  278|      0|            _PyArg_BadArgument("open", "argument 'newline'", "str or None", args[5]);
  279|      0|            goto exit;
  280|      0|        }
  281|      6|        if (!--noptargs) {
  ------------------
  |  Branch (281:13): [True: 0, False: 6]
  ------------------
  282|      0|            goto skip_optional_pos;
  283|      0|        }
  284|      6|    }
  285|      6|    if (args[6]) {
  ------------------
  |  Branch (285:9): [True: 6, False: 0]
  ------------------
  286|      6|        closefd = PyObject_IsTrue(args[6]);
  287|      6|        if (closefd < 0) {
  ------------------
  |  Branch (287:13): [True: 0, False: 6]
  ------------------
  288|      0|            goto exit;
  289|      0|        }
  290|      6|        if (!--noptargs) {
  ------------------
  |  Branch (290:13): [True: 6, False: 0]
  ------------------
  291|      6|            goto skip_optional_pos;
  292|      6|        }
  293|      6|    }
  294|      0|    opener = args[7];
  295|      6|skip_optional_pos:
  296|      6|    return_value = _io_open_impl(module, file, mode, buffering, encoding, errors, newline, closefd, opener);
  297|       |
  298|      6|exit:
  299|      6|    return return_value;
  300|      6|}

bufferedio.c:_io__Buffered_seekable:
  430|      6|{
  431|      6|    PyObject *return_value = NULL;
  432|       |
  433|      6|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      6|    {
  ------------------
  434|      6|    return_value = _io__Buffered_seekable_impl((buffered *)self);
  435|      6|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      6|    }
  ------------------
  436|       |
  437|      6|    return return_value;
  438|      6|}
bufferedio.c:_io__Buffered_readable:
  453|      2|{
  454|      2|    PyObject *return_value = NULL;
  455|       |
  456|      2|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      2|    {
  ------------------
  457|      2|    return_value = _io__Buffered_readable_impl((buffered *)self);
  458|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
  459|       |
  460|      2|    return return_value;
  461|      2|}
bufferedio.c:_io__Buffered_tell:
  844|      4|{
  845|      4|    PyObject *return_value = NULL;
  846|       |
  847|      4|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      4|    {
  ------------------
  848|      4|    return_value = _io__Buffered_tell_impl((buffered *)self);
  849|      4|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      4|    }
  ------------------
  850|       |
  851|      4|    return return_value;
  852|      4|}
bufferedio.c:_io_BufferedReader___init__:
  953|      2|{
  954|      2|    int return_value = -1;
  955|      2|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  956|       |
  957|      2|    #define NUM_KEYWORDS 2
  958|      2|    static struct {
  959|      2|        PyGC_Head _this_is_not_used;
  960|      2|        PyObject_VAR_HEAD
  961|      2|        Py_hash_t ob_hash;
  962|      2|        PyObject *ob_item[NUM_KEYWORDS];
  963|      2|    } _kwtuple = {
  964|      2|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      2|    {                                     \
  |  |   98|      2|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      2|    {                               \
  |  |  |  |   91|      2|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      2|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      2|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      2|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      2|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      2|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      2|        (type)                      \
  |  |  |  |   93|      2|    },
  |  |  ------------------
  |  |   99|      2|        (size)                            \
  |  |  100|      2|    },
  ------------------
  965|      2|        .ob_hash = -1,
  966|      2|        .ob_item = { &_Py_ID(raw), &_Py_ID(buffer_size), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(raw), &_Py_ID(buffer_size), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  967|      2|    };
  968|      2|    #undef NUM_KEYWORDS
  969|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  970|       |
  971|       |    #else  // !Py_BUILD_CORE
  972|       |    #  define KWTUPLE NULL
  973|       |    #endif  // !Py_BUILD_CORE
  974|       |
  975|      2|    static const char * const _keywords[] = {"raw", "buffer_size", NULL};
  976|      2|    static _PyArg_Parser _parser = {
  977|      2|        .keywords = _keywords,
  978|      2|        .fname = "BufferedReader",
  979|      2|        .kwtuple = KWTUPLE,
  ------------------
  |  |  969|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  980|      2|    };
  981|      2|    #undef KWTUPLE
  982|      2|    PyObject *argsbuf[2];
  983|      2|    PyObject * const *fastargs;
  984|      2|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  985|      2|    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1;
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (985:36): [True: 0, False: 2]
  ------------------
  986|      2|    PyObject *raw;
  987|      2|    Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
  ------------------
  |  |   81|      2|#define DEFAULT_BUFFER_SIZE (128 * 1024)  /* bytes */
  ------------------
  988|       |
  989|      2|    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
  ------------------
  |  |   88|      2|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 2, Folded]
  |  |  |  Branch (88:23): [True: 2, False: 0]
  |  |  |  Branch (88:43): [True: 0, Folded]
  |  |  ------------------
  |  |   89|      4|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 2, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 2]
  |  |  |  Branch (89:43): [True: 2, False: 0]
  |  |  |  Branch (89:67): [True: 2, False: 0]
  |  |  |  Branch (89:68): [True: 2, False: 0]
  |  |  ------------------
  |  |   90|      4|      (args) : \
  |  |  ------------------
  |  |  |  Branch (90:8): [True: 2, False: 0]
  |  |  ------------------
  |  |   91|      2|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |  ------------------
  |  |  |  Branch (91:29): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  990|      2|            /*minpos*/ 1, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  991|      2|    if (!fastargs) {
  ------------------
  |  Branch (991:9): [True: 0, False: 2]
  ------------------
  992|      0|        goto exit;
  993|      0|    }
  994|      2|    raw = fastargs[0];
  995|      2|    if (!noptargs) {
  ------------------
  |  Branch (995:9): [True: 0, False: 2]
  ------------------
  996|      0|        goto skip_optional_pos;
  997|      0|    }
  998|      2|    {
  999|      2|        Py_ssize_t ival = -1;
 1000|      2|        PyObject *iobj = _PyNumber_Index(fastargs[1]);
 1001|      2|        if (iobj != NULL) {
  ------------------
  |  Branch (1001:13): [True: 2, False: 0]
  ------------------
 1002|      2|            ival = PyLong_AsSsize_t(iobj);
 1003|      2|            Py_DECREF(iobj);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1004|      2|        }
 1005|      2|        if (ival == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1005:13): [True: 0, False: 2]
  |  Branch (1005:27): [True: 0, False: 0]
  ------------------
 1006|      0|            goto exit;
 1007|      0|        }
 1008|      2|        buffer_size = ival;
 1009|      2|    }
 1010|      2|skip_optional_pos:
 1011|      2|    return_value = _io_BufferedReader___init___impl((buffered *)self, raw, buffer_size);
 1012|       |
 1013|      2|exit:
 1014|      2|    return return_value;
 1015|      2|}
bufferedio.c:_io__Buffered_writable:
  476|      4|{
  477|      4|    PyObject *return_value = NULL;
  478|       |
  479|      4|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      4|    {
  ------------------
  480|      4|    return_value = _io__Buffered_writable_impl((buffered *)self);
  481|      4|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      4|    }
  ------------------
  482|       |
  483|      4|    return return_value;
  484|      4|}
bufferedio.c:_io_BufferedWriter___init__:
 1033|      4|{
 1034|      4|    int return_value = -1;
 1035|      4|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 1036|       |
 1037|      4|    #define NUM_KEYWORDS 2
 1038|      4|    static struct {
 1039|      4|        PyGC_Head _this_is_not_used;
 1040|      4|        PyObject_VAR_HEAD
 1041|      4|        Py_hash_t ob_hash;
 1042|      4|        PyObject *ob_item[NUM_KEYWORDS];
 1043|      4|    } _kwtuple = {
 1044|      4|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      4|    {                                     \
  |  |   98|      4|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      4|    {                               \
  |  |  |  |   91|      4|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      4|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      4|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      4|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      4|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      4|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      4|        (type)                      \
  |  |  |  |   93|      4|    },
  |  |  ------------------
  |  |   99|      4|        (size)                            \
  |  |  100|      4|    },
  ------------------
 1045|      4|        .ob_hash = -1,
 1046|      4|        .ob_item = { &_Py_ID(raw), &_Py_ID(buffer_size), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(raw), &_Py_ID(buffer_size), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1047|      4|    };
 1048|      4|    #undef NUM_KEYWORDS
 1049|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
 1050|       |
 1051|       |    #else  // !Py_BUILD_CORE
 1052|       |    #  define KWTUPLE NULL
 1053|       |    #endif  // !Py_BUILD_CORE
 1054|       |
 1055|      4|    static const char * const _keywords[] = {"raw", "buffer_size", NULL};
 1056|      4|    static _PyArg_Parser _parser = {
 1057|      4|        .keywords = _keywords,
 1058|      4|        .fname = "BufferedWriter",
 1059|      4|        .kwtuple = KWTUPLE,
  ------------------
  |  | 1049|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
 1060|      4|    };
 1061|      4|    #undef KWTUPLE
 1062|      4|    PyObject *argsbuf[2];
 1063|      4|    PyObject * const *fastargs;
 1064|      4|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|      4|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1065|      4|    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1;
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1065:36): [True: 0, False: 4]
  ------------------
 1066|      4|    PyObject *raw;
 1067|      4|    Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
  ------------------
  |  |   81|      4|#define DEFAULT_BUFFER_SIZE (128 * 1024)  /* bytes */
  ------------------
 1068|       |
 1069|      4|    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
  ------------------
  |  |   88|      4|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 4, Folded]
  |  |  |  Branch (88:23): [True: 4, False: 0]
  |  |  |  Branch (88:43): [True: 0, Folded]
  |  |  ------------------
  |  |   89|      8|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 4, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 4]
  |  |  |  Branch (89:43): [True: 4, False: 0]
  |  |  |  Branch (89:67): [True: 4, False: 0]
  |  |  |  Branch (89:68): [True: 4, False: 0]
  |  |  ------------------
  |  |   90|      8|      (args) : \
  |  |  ------------------
  |  |  |  Branch (90:8): [True: 4, False: 0]
  |  |  ------------------
  |  |   91|      4|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |  ------------------
  |  |  |  Branch (91:29): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
 1070|      4|            /*minpos*/ 1, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
 1071|      4|    if (!fastargs) {
  ------------------
  |  Branch (1071:9): [True: 0, False: 4]
  ------------------
 1072|      0|        goto exit;
 1073|      0|    }
 1074|      4|    raw = fastargs[0];
 1075|      4|    if (!noptargs) {
  ------------------
  |  Branch (1075:9): [True: 0, False: 4]
  ------------------
 1076|      0|        goto skip_optional_pos;
 1077|      0|    }
 1078|      4|    {
 1079|      4|        Py_ssize_t ival = -1;
 1080|      4|        PyObject *iobj = _PyNumber_Index(fastargs[1]);
 1081|      4|        if (iobj != NULL) {
  ------------------
  |  Branch (1081:13): [True: 4, False: 0]
  ------------------
 1082|      4|            ival = PyLong_AsSsize_t(iobj);
 1083|      4|            Py_DECREF(iobj);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1084|      4|        }
 1085|      4|        if (ival == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1085:13): [True: 0, False: 4]
  |  Branch (1085:27): [True: 0, False: 0]
  ------------------
 1086|      0|            goto exit;
 1087|      0|        }
 1088|      4|        buffer_size = ival;
 1089|      4|    }
 1090|      4|skip_optional_pos:
 1091|      4|    return_value = _io_BufferedWriter___init___impl((buffered *)self, raw, buffer_size);
 1092|       |
 1093|      4|exit:
 1094|      4|    return return_value;
 1095|      4|}

fileio.c:_io_FileIO_tell:
  470|     10|{
  471|     10|    return _io_FileIO_tell_impl((fileio *)self);
  472|     10|}
fileio.c:_io_FileIO_seekable:
  211|      6|{
  212|      6|    return _io_FileIO_seekable_impl((fileio *)self);
  213|      6|}
fileio.c:_io_FileIO_readable:
  175|      4|{
  176|      4|    return _io_FileIO_readable_impl((fileio *)self);
  177|      4|}
fileio.c:_io_FileIO_writable:
  193|      8|{
  194|      8|    return _io_FileIO_writable_impl((fileio *)self);
  195|      8|}
fileio.c:_io_FileIO_isatty:
  543|      6|{
  544|      6|    return _io_FileIO_isatty_impl((fileio *)self);
  545|      6|}
fileio.c:_io_FileIO___init__:
   61|      6|{
   62|      6|    int return_value = -1;
   63|      6|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
   64|       |
   65|      6|    #define NUM_KEYWORDS 4
   66|      6|    static struct {
   67|      6|        PyGC_Head _this_is_not_used;
   68|      6|        PyObject_VAR_HEAD
   69|      6|        Py_hash_t ob_hash;
   70|      6|        PyObject *ob_item[NUM_KEYWORDS];
   71|      6|    } _kwtuple = {
   72|      6|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      6|    {                                     \
  |  |   98|      6|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      6|    {                               \
  |  |  |  |   91|      6|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      6|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      6|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      6|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      6|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      6|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      6|        (type)                      \
  |  |  |  |   93|      6|    },
  |  |  ------------------
  |  |   99|      6|        (size)                            \
  |  |  100|      6|    },
  ------------------
   73|      6|        .ob_hash = -1,
   74|      6|        .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(file), &_Py_ID(mode), &_Py_ID(closefd), &_Py_ID(opener), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   75|      6|    };
   76|      6|    #undef NUM_KEYWORDS
   77|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
   78|       |
   79|       |    #else  // !Py_BUILD_CORE
   80|       |    #  define KWTUPLE NULL
   81|       |    #endif  // !Py_BUILD_CORE
   82|       |
   83|      6|    static const char * const _keywords[] = {"file", "mode", "closefd", "opener", NULL};
   84|      6|    static _PyArg_Parser _parser = {
   85|      6|        .keywords = _keywords,
   86|      6|        .fname = "FileIO",
   87|      6|        .kwtuple = KWTUPLE,
  ------------------
  |  |   77|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
   88|      6|    };
   89|      6|    #undef KWTUPLE
   90|      6|    PyObject *argsbuf[4];
   91|      6|    PyObject * const *fastargs;
   92|      6|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|      6|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   93|      6|    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1;
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (93:36): [True: 0, False: 6]
  ------------------
   94|      6|    PyObject *nameobj;
   95|      6|    const char *mode = "r";
   96|      6|    int closefd = 1;
   97|      6|    PyObject *opener = Py_None;
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
   98|       |
   99|      6|    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
  ------------------
  |  |   88|      6|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 6, Folded]
  |  |  |  Branch (88:23): [True: 6, False: 0]
  |  |  |  Branch (88:43): [True: 0, Folded]
  |  |  ------------------
  |  |   89|     12|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 6, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 6]
  |  |  |  Branch (89:43): [True: 6, False: 0]
  |  |  |  Branch (89:67): [True: 6, False: 0]
  |  |  |  Branch (89:68): [True: 6, False: 0]
  |  |  ------------------
  |  |   90|     12|      (args) : \
  |  |  ------------------
  |  |  |  Branch (90:8): [True: 6, False: 0]
  |  |  ------------------
  |  |   91|      6|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |  ------------------
  |  |  |  Branch (91:29): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  100|      6|            /*minpos*/ 1, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  101|      6|    if (!fastargs) {
  ------------------
  |  Branch (101:9): [True: 0, False: 6]
  ------------------
  102|      0|        goto exit;
  103|      0|    }
  104|      6|    nameobj = fastargs[0];
  105|      6|    if (!noptargs) {
  ------------------
  |  Branch (105:9): [True: 0, False: 6]
  ------------------
  106|      0|        goto skip_optional_pos;
  107|      0|    }
  108|      6|    if (fastargs[1]) {
  ------------------
  |  Branch (108:9): [True: 6, False: 0]
  ------------------
  109|      6|        if (!PyUnicode_Check(fastargs[1])) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (109:13): [True: 0, False: 6]
  ------------------
  110|      0|            _PyArg_BadArgument("FileIO", "argument 'mode'", "str", fastargs[1]);
  111|      0|            goto exit;
  112|      0|        }
  113|      6|        Py_ssize_t mode_length;
  114|      6|        mode = PyUnicode_AsUTF8AndSize(fastargs[1], &mode_length);
  115|      6|        if (mode == NULL) {
  ------------------
  |  Branch (115:13): [True: 0, False: 6]
  ------------------
  116|      0|            goto exit;
  117|      0|        }
  118|      6|        if (strlen(mode) != (size_t)mode_length) {
  ------------------
  |  Branch (118:13): [True: 0, False: 6]
  ------------------
  119|      0|            PyErr_SetString(PyExc_ValueError, "embedded null character");
  120|      0|            goto exit;
  121|      0|        }
  122|      6|        if (!--noptargs) {
  ------------------
  |  Branch (122:13): [True: 0, False: 6]
  ------------------
  123|      0|            goto skip_optional_pos;
  124|      0|        }
  125|      6|    }
  126|      6|    if (fastargs[2]) {
  ------------------
  |  Branch (126:9): [True: 6, False: 0]
  ------------------
  127|      6|        closefd = PyObject_IsTrue(fastargs[2]);
  128|      6|        if (closefd < 0) {
  ------------------
  |  Branch (128:13): [True: 0, False: 6]
  ------------------
  129|      0|            goto exit;
  130|      0|        }
  131|      6|        if (!--noptargs) {
  ------------------
  |  Branch (131:13): [True: 0, False: 6]
  ------------------
  132|      0|            goto skip_optional_pos;
  133|      0|        }
  134|      6|    }
  135|      6|    opener = fastargs[3];
  136|      6|skip_optional_pos:
  137|      6|    return_value = _io_FileIO___init___impl((fileio *)self, nameobj, mode, closefd, opener);
  138|       |
  139|      6|exit:
  140|      6|    return return_value;
  141|      6|}

iobase.c:_io__IOBase_readable:
  229|      4|{
  230|      4|    return _io__IOBase_readable_impl(self);
  231|      4|}
iobase.c:_io__IOBase_writable:
  249|      2|{
  250|      2|    return _io__IOBase_writable_impl(self);
  251|      2|}

textio.c:_io_TextIOWrapper___init__:
  553|      6|{
  554|      6|    int return_value = -1;
  555|      6|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  556|       |
  557|      6|    #define NUM_KEYWORDS 6
  558|      6|    static struct {
  559|      6|        PyGC_Head _this_is_not_used;
  560|      6|        PyObject_VAR_HEAD
  561|      6|        Py_hash_t ob_hash;
  562|      6|        PyObject *ob_item[NUM_KEYWORDS];
  563|      6|    } _kwtuple = {
  564|      6|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      6|    {                                     \
  |  |   98|      6|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      6|    {                               \
  |  |  |  |   91|      6|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      6|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      6|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      6|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      6|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      6|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      6|        (type)                      \
  |  |  |  |   93|      6|    },
  |  |  ------------------
  |  |   99|      6|        (size)                            \
  |  |  100|      6|    },
  ------------------
  565|      6|        .ob_hash = -1,
  566|      6|        .ob_item = { &_Py_ID(buffer), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(line_buffering), &_Py_ID(write_through), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(buffer), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(line_buffering), &_Py_ID(write_through), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(buffer), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(line_buffering), &_Py_ID(write_through), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(buffer), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(line_buffering), &_Py_ID(write_through), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(buffer), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(line_buffering), &_Py_ID(write_through), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(buffer), &_Py_ID(encoding), &_Py_ID(errors), &_Py_ID(newline), &_Py_ID(line_buffering), &_Py_ID(write_through), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  567|      6|    };
  568|      6|    #undef NUM_KEYWORDS
  569|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  570|       |
  571|       |    #else  // !Py_BUILD_CORE
  572|       |    #  define KWTUPLE NULL
  573|       |    #endif  // !Py_BUILD_CORE
  574|       |
  575|      6|    static const char * const _keywords[] = {"buffer", "encoding", "errors", "newline", "line_buffering", "write_through", NULL};
  576|      6|    static _PyArg_Parser _parser = {
  577|      6|        .keywords = _keywords,
  578|      6|        .fname = "TextIOWrapper",
  579|      6|        .kwtuple = KWTUPLE,
  ------------------
  |  |  569|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  580|      6|    };
  581|      6|    #undef KWTUPLE
  582|      6|    PyObject *argsbuf[6];
  583|      6|    PyObject * const *fastargs;
  584|      6|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|      6|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  585|      6|    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1;
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (585:36): [True: 0, False: 6]
  ------------------
  586|      6|    PyObject *buffer;
  587|      6|    const char *encoding = NULL;
  588|      6|    PyObject *errors = Py_None;
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  589|      6|    const char *newline = NULL;
  590|      6|    int line_buffering = 0;
  591|      6|    int write_through = 0;
  592|       |
  593|      6|    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
  ------------------
  |  |   88|      6|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 6, Folded]
  |  |  |  Branch (88:23): [True: 6, False: 0]
  |  |  |  Branch (88:43): [True: 0, Folded]
  |  |  ------------------
  |  |   89|     12|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 6, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 6]
  |  |  |  Branch (89:43): [True: 6, False: 0]
  |  |  |  Branch (89:67): [True: 6, False: 0]
  |  |  |  Branch (89:68): [True: 6, False: 0]
  |  |  ------------------
  |  |   90|     12|      (args) : \
  |  |  ------------------
  |  |  |  Branch (90:8): [True: 6, False: 0]
  |  |  ------------------
  |  |   91|      6|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |  ------------------
  |  |  |  Branch (91:29): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  594|      6|            /*minpos*/ 1, /*maxpos*/ 6, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  595|      6|    if (!fastargs) {
  ------------------
  |  Branch (595:9): [True: 0, False: 6]
  ------------------
  596|      0|        goto exit;
  597|      0|    }
  598|      6|    buffer = fastargs[0];
  599|      6|    if (!noptargs) {
  ------------------
  |  Branch (599:9): [True: 0, False: 6]
  ------------------
  600|      0|        goto skip_optional_pos;
  601|      0|    }
  602|      6|    if (fastargs[1]) {
  ------------------
  |  Branch (602:9): [True: 6, False: 0]
  ------------------
  603|      6|        if (fastargs[1] == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (603:13): [True: 0, False: 6]
  ------------------
  604|      0|            encoding = NULL;
  605|      0|        }
  606|      6|        else if (PyUnicode_Check(fastargs[1])) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  607|      6|            Py_ssize_t encoding_length;
  608|      6|            encoding = PyUnicode_AsUTF8AndSize(fastargs[1], &encoding_length);
  609|      6|            if (encoding == NULL) {
  ------------------
  |  Branch (609:17): [True: 0, False: 6]
  ------------------
  610|      0|                goto exit;
  611|      0|            }
  612|      6|            if (strlen(encoding) != (size_t)encoding_length) {
  ------------------
  |  Branch (612:17): [True: 0, False: 6]
  ------------------
  613|      0|                PyErr_SetString(PyExc_ValueError, "embedded null character");
  614|      0|                goto exit;
  615|      0|            }
  616|      6|        }
  617|      0|        else {
  618|      0|            _PyArg_BadArgument("TextIOWrapper", "argument 'encoding'", "str or None", fastargs[1]);
  619|      0|            goto exit;
  620|      0|        }
  621|      6|        if (!--noptargs) {
  ------------------
  |  Branch (621:13): [True: 0, False: 6]
  ------------------
  622|      0|            goto skip_optional_pos;
  623|      0|        }
  624|      6|    }
  625|      6|    if (fastargs[2]) {
  ------------------
  |  Branch (625:9): [True: 6, False: 0]
  ------------------
  626|      6|        errors = fastargs[2];
  627|      6|        if (!--noptargs) {
  ------------------
  |  Branch (627:13): [True: 0, False: 6]
  ------------------
  628|      0|            goto skip_optional_pos;
  629|      0|        }
  630|      6|    }
  631|      6|    if (fastargs[3]) {
  ------------------
  |  Branch (631:9): [True: 6, False: 0]
  ------------------
  632|      6|        if (fastargs[3] == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (632:13): [True: 0, False: 6]
  ------------------
  633|      0|            newline = NULL;
  634|      0|        }
  635|      6|        else if (PyUnicode_Check(fastargs[3])) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  636|      6|            Py_ssize_t newline_length;
  637|      6|            newline = PyUnicode_AsUTF8AndSize(fastargs[3], &newline_length);
  638|      6|            if (newline == NULL) {
  ------------------
  |  Branch (638:17): [True: 0, False: 6]
  ------------------
  639|      0|                goto exit;
  640|      0|            }
  641|      6|            if (strlen(newline) != (size_t)newline_length) {
  ------------------
  |  Branch (641:17): [True: 0, False: 6]
  ------------------
  642|      0|                PyErr_SetString(PyExc_ValueError, "embedded null character");
  643|      0|                goto exit;
  644|      0|            }
  645|      6|        }
  646|      0|        else {
  647|      0|            _PyArg_BadArgument("TextIOWrapper", "argument 'newline'", "str or None", fastargs[3]);
  648|      0|            goto exit;
  649|      0|        }
  650|      6|        if (!--noptargs) {
  ------------------
  |  Branch (650:13): [True: 0, False: 6]
  ------------------
  651|      0|            goto skip_optional_pos;
  652|      0|        }
  653|      6|    }
  654|      6|    if (fastargs[4]) {
  ------------------
  |  Branch (654:9): [True: 6, False: 0]
  ------------------
  655|      6|        line_buffering = PyObject_IsTrue(fastargs[4]);
  656|      6|        if (line_buffering < 0) {
  ------------------
  |  Branch (656:13): [True: 0, False: 6]
  ------------------
  657|      0|            goto exit;
  658|      0|        }
  659|      6|        if (!--noptargs) {
  ------------------
  |  Branch (659:13): [True: 0, False: 6]
  ------------------
  660|      0|            goto skip_optional_pos;
  661|      0|        }
  662|      6|    }
  663|      6|    write_through = PyObject_IsTrue(fastargs[5]);
  664|      6|    if (write_through < 0) {
  ------------------
  |  Branch (664:9): [True: 0, False: 6]
  ------------------
  665|      0|        goto exit;
  666|      0|    }
  667|      6|skip_optional_pos:
  668|      6|    return_value = _io_TextIOWrapper___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through);
  669|       |
  670|      6|exit:
  671|      6|    return return_value;
  672|      6|}

fileio.c:portable_lseek:
  957|     10|{
  958|     10|    Py_off_t pos, res;
  959|     10|    int fd = self->fd;
  960|       |
  961|     10|#ifdef SEEK_SET
  962|       |    /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
  963|     10|    switch (whence) {
  ------------------
  |  Branch (963:13): [Folded, False: 10]
  ------------------
  964|       |#if SEEK_SET != 0
  965|       |    case 0: whence = SEEK_SET; break;
  966|       |#endif
  967|       |#if SEEK_CUR != 1
  968|       |    case 1: whence = SEEK_CUR; break;
  969|       |#endif
  970|       |#if SEEK_END != 2
  971|       |    case 2: whence = SEEK_END; break;
  972|       |#endif
  973|     10|    }
  974|     10|#endif /* SEEK_SET */
  975|       |
  976|     10|    if (posobj == NULL) {
  ------------------
  |  Branch (976:9): [True: 10, False: 0]
  ------------------
  977|     10|        pos = 0;
  978|     10|    }
  979|      0|    else {
  980|       |#if defined(HAVE_LARGEFILE_SUPPORT)
  981|       |        pos = PyLong_AsLongLong(posobj);
  982|       |#else
  983|      0|        pos = PyLong_AsLong(posobj);
  984|      0|#endif
  985|      0|        if (PyErr_Occurred())
  ------------------
  |  Branch (985:13): [True: 0, False: 0]
  ------------------
  986|      0|            return NULL;
  987|      0|    }
  988|       |
  989|     10|    Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|     10|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|     10|                        PyThreadState *_save; \
  |  |  121|     10|                        _save = PyEval_SaveThread();
  ------------------
  990|     10|    _Py_BEGIN_SUPPRESS_IPH
  991|       |#ifdef MS_WINDOWS
  992|       |    res = _lseeki64(fd, pos, whence);
  993|       |#else
  994|     10|    res = lseek(fd, pos, whence);
  995|     10|#endif
  996|     10|    _Py_END_SUPPRESS_IPH
  997|     10|    Py_END_ALLOW_THREADS
  ------------------
  |  |  124|     10|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|     10|                 }
  ------------------
  998|       |
  999|     10|    if (self->seekable < 0) {
  ------------------
  |  Branch (999:9): [True: 6, False: 4]
  ------------------
 1000|      6|        self->seekable = (res >= 0);
 1001|      6|    }
 1002|       |
 1003|     10|    if (res < 0) {
  ------------------
  |  Branch (1003:9): [True: 0, False: 10]
  ------------------
 1004|      0|        if (suppress_pipe_error && errno == ESPIPE) {
  ------------------
  |  Branch (1004:13): [True: 0, False: 0]
  |  Branch (1004:36): [True: 0, False: 0]
  ------------------
 1005|      0|            res = 0;
 1006|      0|        } else {
 1007|      0|            return PyErr_SetFromErrno(PyExc_OSError);
 1008|      0|        }
 1009|      0|    }
 1010|       |
 1011|       |#if defined(HAVE_LARGEFILE_SUPPORT)
 1012|       |    return PyLong_FromLongLong(res);
 1013|       |#else
 1014|     10|    return PyLong_FromLong(res);
 1015|     10|#endif
 1016|     10|}
fileio.c:_io_FileIO_tell_impl:
 1057|     10|{
 1058|     10|    if (self->fd < 0)
  ------------------
  |  Branch (1058:9): [True: 0, False: 10]
  ------------------
 1059|      0|        return err_closed();
 1060|       |
 1061|     10|    return portable_lseek(self, NULL, 1, false);
 1062|     10|}
fileio.c:_io_FileIO_seekable_impl:
  653|      6|{
  654|      6|    if (self->fd < 0)
  ------------------
  |  Branch (654:9): [True: 0, False: 6]
  ------------------
  655|      0|        return err_closed();
  656|      6|    if (self->seekable < 0) {
  ------------------
  |  Branch (656:9): [True: 0, False: 6]
  ------------------
  657|       |        /* portable_lseek() sets the seekable attribute */
  658|      0|        PyObject *pos = portable_lseek(self, NULL, SEEK_CUR, false);
  659|      0|        assert(self->seekable >= 0);
  ------------------
  |  Branch (659:9): [True: 0, False: 0]
  ------------------
  660|      0|        if (pos == NULL) {
  ------------------
  |  Branch (660:13): [True: 0, False: 0]
  ------------------
  661|      0|            PyErr_Clear();
  662|      0|        }
  663|      0|        else {
  664|      0|            Py_DECREF(pos);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  665|      0|        }
  666|      0|    }
  667|      6|    return PyBool_FromLong((long) self->seekable);
  668|      6|}
fileio.c:_io_FileIO_readable_impl:
  623|      4|{
  624|      4|    if (self->fd < 0)
  ------------------
  |  Branch (624:9): [True: 0, False: 4]
  ------------------
  625|      0|        return err_closed();
  626|      4|    return PyBool_FromLong((long) self->readable);
  627|      4|}
fileio.c:_io_FileIO_writable_impl:
  638|      8|{
  639|      8|    if (self->fd < 0)
  ------------------
  |  Branch (639:9): [True: 0, False: 8]
  ------------------
  640|      0|        return err_closed();
  641|      8|    return PyBool_FromLong((long) self->writable);
  642|      8|}
fileio.c:_io_FileIO_isatty_impl:
 1221|      8|{
 1222|      8|    long res;
 1223|       |
 1224|      8|    if (self->fd < 0)
  ------------------
  |  Branch (1224:9): [True: 0, False: 8]
  ------------------
 1225|      0|        return err_closed();
 1226|      8|    Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      8|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      8|                        PyThreadState *_save; \
  |  |  121|      8|                        _save = PyEval_SaveThread();
  ------------------
 1227|      8|    _Py_BEGIN_SUPPRESS_IPH
 1228|      8|    res = isatty(self->fd);
 1229|      8|    _Py_END_SUPPRESS_IPH
 1230|      8|    Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      8|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      8|                 }
  ------------------
 1231|      8|    return PyBool_FromLong(res);
 1232|      8|}
fileio.c:_io_FileIO_isatty_open_only:
 1244|      6|{
 1245|      6|    fileio *self = PyFileIO_CAST(op);
  ------------------
  |  |   88|      6|#define PyFileIO_CAST(op) ((fileio *)(op))
  ------------------
 1246|      6|    if (self->stat_atopen != NULL && !S_ISCHR(self->stat_atopen->st_mode)) {
  ------------------
  |  Branch (1246:9): [True: 6, False: 0]
  |  Branch (1246:38): [True: 4, False: 2]
  ------------------
 1247|      4|        Py_RETURN_FALSE;
  ------------------
  |  |   45|      4|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      4|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1248|      4|    }
 1249|      2|    return _io_FileIO_isatty_impl(self);
 1250|      6|}
fileio.c:fileio_get_blksize:
 1299|      6|{
 1300|      6|#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
 1301|      6|    fileio *self = PyFileIO_CAST(op);
  ------------------
  |  |   88|      6|#define PyFileIO_CAST(op) ((fileio *)(op))
  ------------------
 1302|      6|    if (self->stat_atopen != NULL && self->stat_atopen->st_blksize > 1) {
  ------------------
  |  Branch (1302:9): [True: 6, False: 0]
  |  Branch (1302:38): [True: 6, False: 0]
  ------------------
 1303|      6|        return PyLong_FromLong(self->stat_atopen->st_blksize);
 1304|      6|    }
 1305|      0|#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
 1306|      0|    return PyLong_FromLong(DEFAULT_BUFFER_SIZE);
  ------------------
  |  |   81|      0|#define DEFAULT_BUFFER_SIZE (128 * 1024)  /* bytes */
  ------------------
 1307|      6|}
fileio.c:_io_FileIO___init___impl:
  250|      6|{
  251|       |#ifdef MS_WINDOWS
  252|       |    wchar_t *widename = NULL;
  253|       |#else
  254|      6|    const char *name = NULL;
  255|      6|#endif
  256|      6|    PyObject *stringobj = NULL;
  257|      6|    const char *s;
  258|      6|    int ret = 0;
  259|      6|    int rwa = 0, plus = 0;
  260|      6|    int flags = 0;
  261|      6|    int fd = -1;
  262|      6|    int fd_is_own = 0;
  263|      6|#ifdef O_CLOEXEC
  264|      6|    int *atomic_flag_works = &_Py_open_cloexec_works;
  265|       |#elif !defined(MS_WINDOWS)
  266|       |    int *atomic_flag_works = NULL;
  267|       |#endif
  268|      6|    int fstat_result;
  269|      6|    int async_err = 0;
  270|       |
  271|       |#ifdef Py_DEBUG
  272|       |    _PyIO_State *state = find_io_state_by_def(Py_TYPE(self));
  273|       |    assert(PyFileIO_Check(state, self));
  274|       |#endif
  275|      6|    if (self->fd >= 0) {
  ------------------
  |  Branch (275:9): [True: 0, False: 6]
  ------------------
  276|      0|        if (self->closefd) {
  ------------------
  |  Branch (276:13): [True: 0, False: 0]
  ------------------
  277|       |            /* Have to close the existing file first. */
  278|      0|            if (internal_close(self) < 0) {
  ------------------
  |  Branch (278:17): [True: 0, False: 0]
  ------------------
  279|      0|                return -1;
  280|      0|            }
  281|      0|        }
  282|      0|        else
  283|      0|            self->fd = -1;
  284|      0|    }
  285|       |
  286|      6|    if (PyBool_Check(nameobj)) {
  ------------------
  |  |   12|      6|#define PyBool_Check(x) Py_IS_TYPE((x), &PyBool_Type)
  |  |  ------------------
  |  |  |  |  215|      6|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  287|      0|        if (PyErr_WarnEx(PyExc_RuntimeWarning,
  ------------------
  |  Branch (287:13): [True: 0, False: 0]
  ------------------
  288|      0|                "bool is used as a file descriptor", 1))
  289|      0|        {
  290|      0|            return -1;
  291|      0|        }
  292|      0|    }
  293|      6|    fd = PyLong_AsInt(nameobj);
  294|      6|    if (fd < 0) {
  ------------------
  |  Branch (294:9): [True: 0, False: 6]
  ------------------
  295|      0|        if (!PyErr_Occurred()) {
  ------------------
  |  Branch (295:13): [True: 0, False: 0]
  ------------------
  296|      0|            PyErr_SetString(PyExc_ValueError,
  297|      0|                            "negative file descriptor");
  298|      0|            return -1;
  299|      0|        }
  300|      0|        PyErr_Clear();
  301|      0|    }
  302|       |
  303|      6|    if (fd < 0) {
  ------------------
  |  Branch (303:9): [True: 0, False: 6]
  ------------------
  304|       |#ifdef MS_WINDOWS
  305|       |        if (!PyUnicode_FSDecoder(nameobj, &stringobj)) {
  306|       |            return -1;
  307|       |        }
  308|       |        widename = PyUnicode_AsWideCharString(stringobj, NULL);
  309|       |        if (widename == NULL)
  310|       |            return -1;
  311|       |#else
  312|      0|        if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
  ------------------
  |  Branch (312:13): [True: 0, False: 0]
  ------------------
  313|      0|            return -1;
  314|      0|        }
  315|      0|        name = PyBytes_AS_STRING(stringobj);
  ------------------
  |  |   27|      0|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  316|      0|#endif
  317|      0|    }
  318|       |
  319|      6|    s = mode;
  320|     12|    while (*s) {
  ------------------
  |  Branch (320:12): [True: 6, False: 6]
  ------------------
  321|      6|        switch (*s++) {
  322|      0|        case 'x':
  ------------------
  |  Branch (322:9): [True: 0, False: 6]
  ------------------
  323|      0|            if (rwa) {
  ------------------
  |  Branch (323:17): [True: 0, False: 0]
  ------------------
  324|      0|            bad_mode:
  325|      0|                PyErr_SetString(PyExc_ValueError,
  326|      0|                                "Must have exactly one of create/read/write/append "
  327|      0|                                "mode and at most one plus");
  328|      0|                goto error;
  329|      0|            }
  330|      0|            rwa = 1;
  331|      0|            self->created = 1;
  332|      0|            self->writable = 1;
  333|      0|            flags |= O_EXCL | O_CREAT;
  334|      0|            break;
  335|      2|        case 'r':
  ------------------
  |  Branch (335:9): [True: 2, False: 4]
  ------------------
  336|      2|            if (rwa)
  ------------------
  |  Branch (336:17): [True: 0, False: 2]
  ------------------
  337|      0|                goto bad_mode;
  338|      2|            rwa = 1;
  339|      2|            self->readable = 1;
  340|      2|            break;
  341|      4|        case 'w':
  ------------------
  |  Branch (341:9): [True: 4, False: 2]
  ------------------
  342|      4|            if (rwa)
  ------------------
  |  Branch (342:17): [True: 0, False: 4]
  ------------------
  343|      0|                goto bad_mode;
  344|      4|            rwa = 1;
  345|      4|            self->writable = 1;
  346|      4|            self->truncate = 1;
  347|      4|            flags |= O_CREAT | O_TRUNC;
  348|      4|            break;
  349|      0|        case 'a':
  ------------------
  |  Branch (349:9): [True: 0, False: 6]
  ------------------
  350|      0|            if (rwa)
  ------------------
  |  Branch (350:17): [True: 0, False: 0]
  ------------------
  351|      0|                goto bad_mode;
  352|      0|            rwa = 1;
  353|      0|            self->writable = 1;
  354|      0|            self->appending = 1;
  355|      0|            flags |= O_APPEND | O_CREAT;
  356|      0|            break;
  357|      0|        case 'b':
  ------------------
  |  Branch (357:9): [True: 0, False: 6]
  ------------------
  358|      0|            break;
  359|      0|        case '+':
  ------------------
  |  Branch (359:9): [True: 0, False: 6]
  ------------------
  360|      0|            if (plus)
  ------------------
  |  Branch (360:17): [True: 0, False: 0]
  ------------------
  361|      0|                goto bad_mode;
  362|      0|            self->readable = self->writable = 1;
  363|      0|            plus = 1;
  364|      0|            break;
  365|      0|        default:
  ------------------
  |  Branch (365:9): [True: 0, False: 6]
  ------------------
  366|      0|            PyErr_Format(PyExc_ValueError,
  367|      0|                         "invalid mode: %.200s", mode);
  368|      0|            goto error;
  369|      6|        }
  370|      6|    }
  371|       |
  372|      6|    if (!rwa)
  ------------------
  |  Branch (372:9): [True: 0, False: 6]
  ------------------
  373|      0|        goto bad_mode;
  374|       |
  375|      6|    if (self->readable && self->writable)
  ------------------
  |  Branch (375:9): [True: 2, False: 4]
  |  Branch (375:27): [True: 0, False: 2]
  ------------------
  376|      0|        flags |= O_RDWR;
  377|      6|    else if (self->readable)
  ------------------
  |  Branch (377:14): [True: 2, False: 4]
  ------------------
  378|      2|        flags |= O_RDONLY;
  379|      4|    else
  380|      4|        flags |= O_WRONLY;
  381|       |
  382|       |#ifdef O_BINARY
  383|       |    flags |= O_BINARY;
  384|       |#endif
  385|       |
  386|       |#ifdef MS_WINDOWS
  387|       |    flags |= O_NOINHERIT;
  388|       |#elif defined(O_CLOEXEC)
  389|      6|    flags |= O_CLOEXEC;
  390|      6|#endif
  391|       |
  392|      6|    if (PySys_Audit("open", "Osi", nameobj, mode, flags) < 0) {
  ------------------
  |  Branch (392:9): [True: 0, False: 6]
  ------------------
  393|      0|        goto error;
  394|      0|    }
  395|       |
  396|      6|    if (fd >= 0) {
  ------------------
  |  Branch (396:9): [True: 6, False: 0]
  ------------------
  397|      6|        self->fd = fd;
  398|      6|        self->closefd = closefd;
  399|      6|    }
  400|      0|    else {
  401|      0|        self->closefd = 1;
  402|      0|        if (!closefd) {
  ------------------
  |  Branch (402:13): [True: 0, False: 0]
  ------------------
  403|      0|            PyErr_SetString(PyExc_ValueError,
  404|      0|                "Cannot use closefd=False with file name");
  405|      0|            goto error;
  406|      0|        }
  407|       |
  408|      0|        errno = 0;
  409|      0|        if (opener == Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (409:13): [True: 0, False: 0]
  ------------------
  410|      0|            do {
  411|      0|                Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      0|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      0|                        PyThreadState *_save; \
  |  |  121|      0|                        _save = PyEval_SaveThread();
  ------------------
  412|       |#ifdef MS_WINDOWS
  413|       |                self->fd = _wopen(widename, flags, 0666);
  414|       |#else
  415|      0|                self->fd = open(name, flags, 0666);
  416|      0|#endif
  417|      0|                Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      0|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      0|                 }
  ------------------
  418|      0|            } while (self->fd < 0 && errno == EINTR &&
  ------------------
  |  Branch (418:22): [True: 0, False: 0]
  |  Branch (418:38): [True: 0, False: 0]
  ------------------
  419|      0|                     !(async_err = PyErr_CheckSignals()));
  ------------------
  |  Branch (419:22): [True: 0, False: 0]
  ------------------
  420|       |
  421|      0|            if (async_err)
  ------------------
  |  Branch (421:17): [True: 0, False: 0]
  ------------------
  422|      0|                goto error;
  423|       |
  424|      0|            if (self->fd < 0) {
  ------------------
  |  Branch (424:17): [True: 0, False: 0]
  ------------------
  425|      0|                PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, nameobj);
  426|      0|                goto error;
  427|      0|            }
  428|      0|        }
  429|      0|        else {
  430|      0|            PyObject *fdobj;
  431|       |
  432|      0|#ifndef MS_WINDOWS
  433|       |            /* the opener may clear the atomic flag */
  434|      0|            atomic_flag_works = NULL;
  435|      0|#endif
  436|       |
  437|      0|            fdobj = PyObject_CallFunction(opener, "Oi", nameobj, flags);
  438|      0|            if (fdobj == NULL)
  ------------------
  |  Branch (438:17): [True: 0, False: 0]
  ------------------
  439|      0|                goto error;
  440|      0|            if (!PyLong_Check(fdobj)) {
  ------------------
  |  |   13|      0|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (440:17): [True: 0, False: 0]
  ------------------
  441|      0|                Py_DECREF(fdobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  442|      0|                PyErr_SetString(PyExc_TypeError,
  443|      0|                        "expected integer from opener");
  444|      0|                goto error;
  445|      0|            }
  446|       |
  447|      0|            self->fd = PyLong_AsInt(fdobj);
  448|      0|            Py_DECREF(fdobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  449|      0|            if (self->fd < 0) {
  ------------------
  |  Branch (449:17): [True: 0, False: 0]
  ------------------
  450|      0|                if (!PyErr_Occurred()) {
  ------------------
  |  Branch (450:21): [True: 0, False: 0]
  ------------------
  451|       |                    /* The opener returned a negative but didn't set an
  452|       |                       exception.  See issue #27066 */
  453|      0|                    PyErr_Format(PyExc_ValueError,
  454|      0|                                 "opener returned %d", self->fd);
  455|      0|                }
  456|      0|                goto error;
  457|      0|            }
  458|      0|        }
  459|      0|        fd_is_own = 1;
  460|       |
  461|      0|#ifndef MS_WINDOWS
  462|      0|        if (_Py_set_inheritable(self->fd, 0, atomic_flag_works) < 0)
  ------------------
  |  Branch (462:13): [True: 0, False: 0]
  ------------------
  463|      0|            goto error;
  464|      0|#endif
  465|      0|    }
  466|       |
  467|      6|    PyMem_Free(self->stat_atopen);
  468|      6|    self->stat_atopen = PyMem_New(struct _Py_stat_struct, 1);
  ------------------
  |  |   64|      6|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  ------------------
  |  |  |  |  137|      6|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  |  |  |  Branch (64:5): [Folded, False: 6]
  |  |  ------------------
  |  |   65|      6|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  ------------------
  469|      6|    if (self->stat_atopen == NULL) {
  ------------------
  |  Branch (469:9): [True: 0, False: 6]
  ------------------
  470|      0|        PyErr_NoMemory();
  471|      0|        goto error;
  472|      0|    }
  473|      6|    Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      6|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      6|                        PyThreadState *_save; \
  |  |  121|      6|                        _save = PyEval_SaveThread();
  ------------------
  474|      6|    fstat_result = _Py_fstat_noraise(self->fd, self->stat_atopen);
  475|      6|    Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      6|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      6|                 }
  ------------------
  476|      6|    if (fstat_result < 0) {
  ------------------
  |  Branch (476:9): [True: 0, False: 6]
  ------------------
  477|       |        /* Tolerate fstat() errors other than EBADF.  See Issue #25717, where
  478|       |        an anonymous file on a Virtual Box shared folder filesystem would
  479|       |        raise ENOENT. */
  480|       |#ifdef MS_WINDOWS
  481|       |        if (GetLastError() == ERROR_INVALID_HANDLE) {
  482|       |            PyErr_SetFromWindowsErr(0);
  483|       |#else
  484|      0|        if (errno == EBADF) {
  ------------------
  |  Branch (484:13): [True: 0, False: 0]
  ------------------
  485|      0|            PyErr_SetFromErrno(PyExc_OSError);
  486|      0|#endif
  487|      0|            goto error;
  488|      0|        }
  489|       |
  490|      0|        PyMem_Free(self->stat_atopen);
  491|      0|        self->stat_atopen = NULL;
  492|      0|    }
  493|      6|    else {
  494|      6|#if defined(S_ISDIR) && defined(EISDIR)
  495|       |        /* On Unix, open will succeed for directories.
  496|       |           In Python, there should be no file objects referring to
  497|       |           directories, so we need a check.  */
  498|      6|        if (S_ISDIR(self->stat_atopen->st_mode)) {
  ------------------
  |  Branch (498:13): [True: 0, False: 6]
  ------------------
  499|      0|            errno = EISDIR;
  500|      0|            PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, nameobj);
  501|      0|            goto error;
  502|      0|        }
  503|      6|#endif /* defined(S_ISDIR) */
  504|      6|    }
  505|       |
  506|       |#if defined(MS_WINDOWS) || defined(__CYGWIN__)
  507|       |    /* don't translate newlines (\r\n <=> \n) */
  508|       |    _setmode(self->fd, O_BINARY);
  509|       |#endif
  510|       |
  511|      6|    if (PyObject_SetAttr((PyObject *)self, &_Py_ID(name), nameobj) < 0)
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (511:9): [True: 0, False: 6]
  ------------------
  512|      0|        goto error;
  513|       |
  514|      6|    if (self->appending) {
  ------------------
  |  Branch (514:9): [True: 0, False: 6]
  ------------------
  515|       |        /* For consistent behaviour, we explicitly seek to the
  516|       |           end of file (otherwise, it might be done only on the
  517|       |           first write()). */
  518|      0|        PyObject *pos = portable_lseek(self, NULL, 2, true);
  519|      0|        if (pos == NULL)
  ------------------
  |  Branch (519:13): [True: 0, False: 0]
  ------------------
  520|      0|            goto error;
  521|      0|        Py_DECREF(pos);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  522|      0|    }
  523|       |
  524|      6|    goto done;
  525|       |
  526|      6| error:
  527|      0|    ret = -1;
  528|      0|    if (!fd_is_own)
  ------------------
  |  Branch (528:9): [True: 0, False: 0]
  ------------------
  529|      0|        self->fd = -1;
  530|      0|    if (self->fd >= 0) {
  ------------------
  |  Branch (530:9): [True: 0, False: 0]
  ------------------
  531|      0|        PyObject *exc = PyErr_GetRaisedException();
  532|      0|        internal_close(self);
  533|      0|        _PyErr_ChainExceptions1(exc);
  534|      0|    }
  535|      0|    PyMem_Free(self->stat_atopen);
  536|      0|    self->stat_atopen = NULL;
  537|       |
  538|      6| done:
  539|       |#ifdef MS_WINDOWS
  540|       |    PyMem_Free(widename);
  541|       |#endif
  542|       |    Py_CLEAR(stringobj);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
  543|      6|    return ret;
  544|      0|}
fileio.c:fileio_new:
  199|      6|{
  200|      6|    assert(type != NULL && type->tp_alloc != NULL);
  ------------------
  |  Branch (200:5): [True: 6, False: 0]
  |  Branch (200:5): [True: 6, False: 0]
  ------------------
  201|       |
  202|      6|    fileio *self = (fileio *) type->tp_alloc(type, 0);
  203|      6|    if (self == NULL) {
  ------------------
  |  Branch (203:9): [True: 0, False: 6]
  ------------------
  204|      0|        return NULL;
  205|      0|    }
  206|       |
  207|      6|    self->fd = -1;
  208|      6|    self->created = 0;
  209|      6|    self->readable = 0;
  210|      6|    self->writable = 0;
  211|      6|    self->appending = 0;
  212|      6|    self->seekable = -1;
  213|      6|    self->truncate = 0;
  214|      6|    self->stat_atopen = NULL;
  215|      6|    self->closefd = 1;
  216|       |    self->weakreflist = NULL;
  217|      6|    return (PyObject *) self;
  218|      6|}

_PyIOBase_check_readable:
  447|      2|{
  448|      2|    PyObject *res = PyObject_CallMethodNoArgs(self, &_Py_ID(readable));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  449|      2|    if (res == NULL)
  ------------------
  |  Branch (449:9): [True: 0, False: 2]
  ------------------
  450|      0|        return NULL;
  451|      2|    if (res != Py_True) {
  ------------------
  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (451:9): [True: 0, False: 2]
  ------------------
  452|      0|        Py_CLEAR(res);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  453|      0|        iobase_unsupported(state, "File or stream is not readable.");
  454|      0|        return NULL;
  455|      0|    }
  456|      2|    if (args == Py_True) {
  ------------------
  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (456:9): [True: 2, False: 0]
  ------------------
  457|      2|        Py_DECREF(res);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  458|      2|    }
  459|      2|    return res;
  460|      2|}
_PyIOBase_check_writable:
  480|      4|{
  481|      4|    PyObject *res = PyObject_CallMethodNoArgs(self, &_Py_ID(writable));
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  482|      4|    if (res == NULL)
  ------------------
  |  Branch (482:9): [True: 0, False: 4]
  ------------------
  483|      0|        return NULL;
  484|      4|    if (res != Py_True) {
  ------------------
  |  |   26|      4|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (484:9): [True: 0, False: 4]
  ------------------
  485|      0|        Py_CLEAR(res);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  486|      0|        iobase_unsupported(state, "File or stream is not writable.");
  487|      0|        return NULL;
  488|      0|    }
  489|      4|    if (args == Py_True) {
  ------------------
  |  |   26|      4|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (489:9): [True: 4, False: 0]
  ------------------
  490|      4|        Py_DECREF(res);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  491|      4|    }
  492|      4|    return res;
  493|      4|}
iobase.c:_io__IOBase_readable_impl:
  440|      4|{
  441|      4|    Py_RETURN_FALSE;
  ------------------
  |  |   45|      4|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      4|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  442|      4|}
iobase.c:_io__IOBase_writable_impl:
  473|      2|{
  474|      2|    Py_RETURN_FALSE;
  ------------------
  |  |   45|      2|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  475|      2|}

textio.c:validate_newline:
  846|      6|{
  847|      6|    if (newline && newline[0] != '\0'
  ------------------
  |  Branch (847:9): [True: 6, False: 0]
  |  Branch (847:20): [True: 6, False: 0]
  ------------------
  848|      6|        && !(newline[0] == '\n' && newline[1] == '\0')
  ------------------
  |  Branch (848:14): [True: 6, False: 0]
  |  Branch (848:36): [True: 6, False: 0]
  ------------------
  849|      0|        && !(newline[0] == '\r' && newline[1] == '\0')
  ------------------
  |  Branch (849:14): [True: 0, False: 0]
  |  Branch (849:36): [True: 0, False: 0]
  ------------------
  850|      0|        && !(newline[0] == '\r' && newline[1] == '\n' && newline[2] == '\0')) {
  ------------------
  |  Branch (850:14): [True: 0, False: 0]
  |  Branch (850:36): [True: 0, False: 0]
  |  Branch (850:58): [True: 0, False: 0]
  ------------------
  851|      0|        PyErr_Format(PyExc_ValueError,
  852|      0|                     "illegal newline value: %s", newline);
  853|      0|        return -1;
  854|      0|    }
  855|      6|    return 0;
  856|      6|}
textio.c:set_newline:
  860|      6|{
  861|      6|    PyObject *old = self->readnl;
  862|      6|    if (newline == NULL) {
  ------------------
  |  Branch (862:9): [True: 0, False: 6]
  ------------------
  863|      0|        self->readnl = NULL;
  864|      0|    }
  865|      6|    else {
  866|      6|        self->readnl = PyUnicode_FromString(newline);
  867|      6|        if (self->readnl == NULL) {
  ------------------
  |  Branch (867:13): [True: 0, False: 6]
  ------------------
  868|      0|            self->readnl = old;
  869|      0|            return -1;
  870|      0|        }
  871|      6|    }
  872|      6|    self->readuniversal = (newline == NULL || newline[0] == '\0');
  ------------------
  |  Branch (872:28): [True: 0, False: 6]
  |  Branch (872:47): [True: 0, False: 6]
  ------------------
  873|      6|    self->readtranslate = (newline == NULL);
  874|      6|    self->writetranslate = (newline == NULL || newline[0] != '\0');
  ------------------
  |  Branch (874:29): [True: 0, False: 6]
  |  Branch (874:48): [True: 6, False: 0]
  ------------------
  875|      6|    if (!self->readuniversal && self->readnl != NULL) {
  ------------------
  |  Branch (875:9): [True: 6, False: 0]
  |  Branch (875:33): [True: 6, False: 0]
  ------------------
  876|       |        // validate_newline() accepts only ASCII newlines.
  877|      6|        assert(PyUnicode_KIND(self->readnl) == PyUnicode_1BYTE_KIND);
  ------------------
  |  Branch (877:9): [True: 6, False: 0]
  |  Branch (877:9): [True: 6, False: 0]
  ------------------
  878|      6|        self->writenl = (const char *)PyUnicode_1BYTE_DATA(self->readnl);
  ------------------
  |  |  291|      6|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      6|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  879|      6|        if (strcmp(self->writenl, "\n") == 0) {
  ------------------
  |  Branch (879:13): [True: 6, False: 0]
  ------------------
  880|      6|            self->writenl = NULL;
  881|      6|        }
  882|      6|    }
  883|      0|    else {
  884|       |#ifdef MS_WINDOWS
  885|       |        self->writenl = "\r\n";
  886|       |#else
  887|      0|        self->writenl = NULL;
  888|      0|#endif
  889|      0|    }
  890|      6|    Py_XDECREF(old);
  ------------------
  |  |  524|      6|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  891|      6|    return 0;
  892|      6|}
textio.c:_textiowrapper_set_decoder:
  897|      6|{
  898|      6|    PyObject *res;
  899|      6|    int r;
  900|       |
  901|      6|    res = PyObject_CallMethodNoArgs(self->buffer, &_Py_ID(readable));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  902|      6|    if (res == NULL)
  ------------------
  |  Branch (902:9): [True: 0, False: 6]
  ------------------
  903|      0|        return -1;
  904|       |
  905|      6|    r = PyObject_IsTrue(res);
  906|      6|    Py_DECREF(res);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  907|      6|    if (r == -1)
  ------------------
  |  Branch (907:9): [True: 0, False: 6]
  ------------------
  908|      0|        return -1;
  909|       |
  910|      6|    if (r != 1)
  ------------------
  |  Branch (910:9): [True: 4, False: 2]
  ------------------
  911|      4|        return 0;
  912|       |
  913|      2|    Py_CLEAR(self->decoder);
  ------------------
  |  |  484|      2|    do { \
  |  |  485|      2|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      2|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      2|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  914|      2|    self->decoder = _PyCodecInfo_GetIncrementalDecoder(codec_info, errors);
  915|      2|    if (self->decoder == NULL)
  ------------------
  |  Branch (915:9): [True: 0, False: 2]
  ------------------
  916|      0|        return -1;
  917|       |
  918|      2|    if (self->readuniversal) {
  ------------------
  |  Branch (918:9): [True: 0, False: 2]
  ------------------
  919|      0|        _PyIO_State *state = self->state;
  920|      0|        PyObject *incrementalDecoder = PyObject_CallFunctionObjArgs(
  921|      0|            (PyObject *)state->PyIncrementalNewlineDecoder_Type,
  922|      0|            self->decoder, self->readtranslate ? Py_True : Py_False, NULL);
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          self->decoder, self->readtranslate ? Py_True : Py_False, NULL);
  ------------------
  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (922:28): [True: 0, False: 0]
  ------------------
  923|      0|        if (incrementalDecoder == NULL)
  ------------------
  |  Branch (923:13): [True: 0, False: 0]
  ------------------
  924|      0|            return -1;
  925|      0|        Py_XSETREF(self->decoder, incrementalDecoder);
  ------------------
  |  |  374|      0|    do { \
  |  |  375|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      0|        *_tmp_dst_ptr = (src); \
  |  |  378|      0|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  926|      0|    }
  927|       |
  928|      2|    return 0;
  929|      2|}
textio.c:_textiowrapper_set_encoder:
  953|      6|{
  954|      6|    PyObject *res;
  955|      6|    int r;
  956|       |
  957|      6|    res = PyObject_CallMethodNoArgs(self->buffer, &_Py_ID(writable));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  958|      6|    if (res == NULL)
  ------------------
  |  Branch (958:9): [True: 0, False: 6]
  ------------------
  959|      0|        return -1;
  960|       |
  961|      6|    r = PyObject_IsTrue(res);
  962|      6|    Py_DECREF(res);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  963|      6|    if (r == -1)
  ------------------
  |  Branch (963:9): [True: 0, False: 6]
  ------------------
  964|      0|        return -1;
  965|       |
  966|      6|    if (r != 1)
  ------------------
  |  Branch (966:9): [True: 2, False: 4]
  ------------------
  967|      2|        return 0;
  968|       |
  969|      4|    Py_CLEAR(self->encoder);
  ------------------
  |  |  484|      4|    do { \
  |  |  485|      4|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      4|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      4|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 4]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  970|      4|    self->encodefunc = NULL;
  971|      4|    self->encoder = _PyCodecInfo_GetIncrementalEncoder(codec_info, errors);
  972|      4|    if (self->encoder == NULL)
  ------------------
  |  Branch (972:9): [True: 0, False: 4]
  ------------------
  973|      0|        return -1;
  974|       |
  975|       |    /* Get the normalized named of the codec */
  976|      4|    if (PyObject_GetOptionalAttr(codec_info, &_Py_ID(name), &res) < 0) {
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (976:9): [True: 0, False: 4]
  ------------------
  977|      0|        return -1;
  978|      0|    }
  979|      4|    if (res != NULL && PyUnicode_Check(res)) {
  ------------------
  |  |  103|      4|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (979:9): [True: 4, False: 0]
  ------------------
  980|      4|        const encodefuncentry *e = encodefuncs;
  981|     12|        while (e->name != NULL) {
  ------------------
  |  Branch (981:16): [True: 12, False: 0]
  ------------------
  982|     12|            if (_PyUnicode_EqualToASCIIString(res, e->name)) {
  ------------------
  |  Branch (982:17): [True: 4, False: 8]
  ------------------
  983|      4|                self->encodefunc = e->encodefunc;
  984|      4|                break;
  985|      4|            }
  986|      8|            e++;
  987|      8|        }
  988|      4|    }
  989|      4|    Py_XDECREF(res);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  990|       |
  991|      4|    return 0;
  992|      4|}
textio.c:_textiowrapper_fix_encoder_state:
  996|      6|{
  997|      6|    if (!self->seekable || !self->encoder) {
  ------------------
  |  Branch (997:9): [True: 0, False: 6]
  |  Branch (997:28): [True: 2, False: 4]
  ------------------
  998|      2|        return 0;
  999|      2|    }
 1000|       |
 1001|      4|    self->encoding_start_of_stream = 1;
 1002|       |
 1003|      4|    PyObject *cookieObj = PyObject_CallMethodNoArgs(
 1004|      4|        self->buffer, &_Py_ID(tell));
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1005|      4|    if (cookieObj == NULL) {
  ------------------
  |  Branch (1005:9): [True: 0, False: 4]
  ------------------
 1006|      0|        return -1;
 1007|      0|    }
 1008|       |
 1009|      4|    int cmp = PyObject_RichCompareBool(cookieObj, _PyLong_GetZero(), Py_EQ);
  ------------------
  |  |  654|      4|#define Py_EQ 2
  ------------------
 1010|      4|    Py_DECREF(cookieObj);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1011|      4|    if (cmp < 0) {
  ------------------
  |  Branch (1011:9): [True: 0, False: 4]
  ------------------
 1012|      0|        return -1;
 1013|      0|    }
 1014|       |
 1015|      4|    if (cmp == 0) {
  ------------------
  |  Branch (1015:9): [True: 2, False: 2]
  ------------------
 1016|      2|        self->encoding_start_of_stream = 0;
 1017|      2|        PyObject *res = PyObject_CallMethodOneArg(
 1018|      2|            self->encoder, &_Py_ID(setstate), _PyLong_GetZero());
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1019|      2|        if (res == NULL) {
  ------------------
  |  Branch (1019:13): [True: 0, False: 2]
  ------------------
 1020|      0|            return -1;
 1021|      0|        }
 1022|      2|        Py_DECREF(res);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1023|      2|    }
 1024|       |
 1025|      4|    return 0;
 1026|      4|}
textio.c:_io_TextIOWrapper___init___impl:
 1108|      6|{
 1109|      6|    PyObject *raw, *codec_info = NULL;
 1110|      6|    PyObject *res;
 1111|      6|    int r;
 1112|       |
 1113|      6|    self->ok = 0;
 1114|      6|    self->detached = 0;
 1115|       |
 1116|      6|    if (encoding == NULL) {
  ------------------
  |  Branch (1116:9): [True: 0, False: 6]
  ------------------
 1117|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
 1118|      0|        if (_PyInterpreterState_GetConfig(interp)->warn_default_encoding) {
  ------------------
  |  Branch (1118:13): [True: 0, False: 0]
  ------------------
 1119|      0|            if (PyErr_WarnEx(PyExc_EncodingWarning,
  ------------------
  |  Branch (1119:17): [True: 0, False: 0]
  ------------------
 1120|      0|                             "'encoding' argument not specified", 1)) {
 1121|      0|                return -1;
 1122|      0|            }
 1123|      0|        }
 1124|      0|    }
 1125|       |
 1126|      6|    if (errors == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1126:9): [True: 0, False: 6]
  ------------------
 1127|      0|        errors = &_Py_ID(strict);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1128|      0|    }
 1129|      6|    else if (!PyUnicode_Check(errors)) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1129:14): [True: 0, False: 6]
  ------------------
 1130|       |        // Check 'errors' argument here because Argument Clinic doesn't support
 1131|       |        // 'str(accept={str, NoneType})' converter.
 1132|      0|        PyErr_Format(
 1133|      0|            PyExc_TypeError,
 1134|      0|            "TextIOWrapper() argument 'errors' must be str or None, not %.50s",
 1135|      0|            Py_TYPE(errors)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1136|      0|        return -1;
 1137|      0|    }
 1138|      6|    else if (io_check_errors(errors)) {
  ------------------
  |  Branch (1138:14): [True: 0, False: 6]
  ------------------
 1139|      0|        return -1;
 1140|      0|    }
 1141|      6|    const char *errors_str = _PyUnicode_AsUTF8NoNUL(errors);
 1142|      6|    if (errors_str == NULL) {
  ------------------
  |  Branch (1142:9): [True: 0, False: 6]
  ------------------
 1143|      0|        return -1;
 1144|      0|    }
 1145|       |
 1146|      6|    if (validate_newline(newline) < 0) {
  ------------------
  |  Branch (1146:9): [True: 0, False: 6]
  ------------------
 1147|      0|        return -1;
 1148|      0|    }
 1149|       |
 1150|      6|    Py_CLEAR(self->buffer);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1151|      6|    Py_CLEAR(self->encoding);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1152|      6|    Py_CLEAR(self->encoder);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1153|      6|    Py_CLEAR(self->decoder);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1154|      6|    Py_CLEAR(self->readnl);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1155|      6|    Py_CLEAR(self->decoded_chars);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1156|      6|    Py_CLEAR(self->pending_bytes);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1157|      6|    Py_CLEAR(self->snapshot);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1158|      6|    Py_CLEAR(self->errors);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1159|      6|    Py_CLEAR(self->raw);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1160|      6|    self->decoded_chars_used = 0;
 1161|      6|    self->pending_bytes_count = 0;
 1162|      6|    self->encodefunc = NULL;
 1163|      6|    self->b2cratio = 0.0;
 1164|       |
 1165|      6|    if (encoding == NULL && _PyRuntime.preconfig.utf8_mode) {
  ------------------
  |  Branch (1165:9): [True: 0, False: 6]
  |  Branch (1165:29): [True: 0, False: 0]
  ------------------
 1166|      0|        _Py_DECLARE_STR(utf_8, "utf-8");
 1167|      0|        self->encoding = &_Py_STR(utf_8);
  ------------------
  |  |  919|      0|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1168|      0|    }
 1169|      6|    else if (encoding == NULL || (strcmp(encoding, "locale") == 0)) {
  ------------------
  |  Branch (1169:14): [True: 0, False: 6]
  |  Branch (1169:34): [True: 0, False: 6]
  ------------------
 1170|      0|        self->encoding = _Py_GetLocaleEncodingObject();
 1171|      0|        if (self->encoding == NULL) {
  ------------------
  |  Branch (1171:13): [True: 0, False: 0]
  ------------------
 1172|      0|            goto error;
 1173|      0|        }
 1174|      0|        assert(PyUnicode_Check(self->encoding));
  ------------------
  |  Branch (1174:9): [True: 0, False: 0]
  ------------------
 1175|      0|    }
 1176|       |
 1177|      6|    if (self->encoding != NULL) {
  ------------------
  |  Branch (1177:9): [True: 0, False: 6]
  ------------------
 1178|      0|        encoding = PyUnicode_AsUTF8(self->encoding);
 1179|      0|        if (encoding == NULL)
  ------------------
  |  Branch (1179:13): [True: 0, False: 0]
  ------------------
 1180|      0|            goto error;
 1181|      0|    }
 1182|      6|    else if (encoding != NULL) {
  ------------------
  |  Branch (1182:14): [True: 6, False: 0]
  ------------------
 1183|      6|        self->encoding = PyUnicode_FromString(encoding);
 1184|      6|        if (self->encoding == NULL)
  ------------------
  |  Branch (1184:13): [True: 0, False: 6]
  ------------------
 1185|      0|            goto error;
 1186|      6|    }
 1187|      0|    else {
 1188|      0|        PyErr_SetString(PyExc_OSError,
 1189|      0|                        "could not determine default encoding");
 1190|      0|        goto error;
 1191|      0|    }
 1192|       |
 1193|       |    /* Check we have been asked for a real text encoding */
 1194|      6|    codec_info = _PyCodec_LookupTextEncoding(encoding, NULL);
 1195|      6|    if (codec_info == NULL) {
  ------------------
  |  Branch (1195:9): [True: 0, False: 6]
  ------------------
 1196|      0|        Py_CLEAR(self->encoding);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1197|      0|        goto error;
 1198|      0|    }
 1199|       |
 1200|       |    /* XXX: Failures beyond this point have the potential to leak elements
 1201|       |     * of the partially constructed object (like self->encoding)
 1202|       |     */
 1203|       |
 1204|      6|    self->errors = Py_NewRef(errors);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1205|      6|    self->chunk_size = 8192;
 1206|      6|    self->line_buffering = line_buffering;
 1207|      6|    self->write_through = write_through;
 1208|      6|    if (set_newline(self, newline) < 0) {
  ------------------
  |  Branch (1208:9): [True: 0, False: 6]
  ------------------
 1209|      0|        goto error;
 1210|      0|    }
 1211|       |
 1212|      6|    self->buffer = Py_NewRef(buffer);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1213|       |
 1214|       |    /* Build the decoder object */
 1215|      6|    _PyIO_State *state = find_io_state_by_def(Py_TYPE(self));
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1216|      6|    self->state = state;
 1217|      6|    if (_textiowrapper_set_decoder(self, codec_info, errors_str) != 0)
  ------------------
  |  Branch (1217:9): [True: 0, False: 6]
  ------------------
 1218|      0|        goto error;
 1219|       |
 1220|       |    /* Build the encoder object */
 1221|      6|    if (_textiowrapper_set_encoder(self, codec_info, errors_str) != 0)
  ------------------
  |  Branch (1221:9): [True: 0, False: 6]
  ------------------
 1222|      0|        goto error;
 1223|       |
 1224|       |    /* Finished sorting out the codec details */
 1225|      6|    Py_CLEAR(codec_info);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 6, False: 0]
  |  |  ------------------
  |  |  488|      6|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      6|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      6|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      6|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1226|       |
 1227|      6|    if (Py_IS_TYPE(buffer, state->PyBufferedReader_Type) ||
  ------------------
  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 2, False: 4]
  |  |  ------------------
  ------------------
 1228|      4|        Py_IS_TYPE(buffer, state->PyBufferedWriter_Type) ||
  ------------------
  |  |  215|     10|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
 1229|      0|        Py_IS_TYPE(buffer, state->PyBufferedRandom_Type))
  ------------------
  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1230|      6|    {
 1231|      6|        if (PyObject_GetOptionalAttr(buffer, &_Py_ID(raw), &raw) < 0)
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1231:13): [True: 0, False: 6]
  ------------------
 1232|      0|            goto error;
 1233|       |        /* Cache the raw FileIO object to speed up 'closed' checks */
 1234|      6|        if (raw != NULL) {
  ------------------
  |  Branch (1234:13): [True: 6, False: 0]
  ------------------
 1235|      6|            if (Py_IS_TYPE(raw, state->PyFileIO_Type))
  ------------------
  |  |  215|      6|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 6, False: 0]
  |  |  ------------------
  ------------------
 1236|      6|                self->raw = raw;
 1237|      0|            else
 1238|      0|                Py_DECREF(raw);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1239|      6|        }
 1240|      6|    }
 1241|       |
 1242|      6|    res = PyObject_CallMethodNoArgs(buffer, &_Py_ID(seekable));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1243|      6|    if (res == NULL)
  ------------------
  |  Branch (1243:9): [True: 0, False: 6]
  ------------------
 1244|      0|        goto error;
 1245|      6|    r = PyObject_IsTrue(res);
 1246|      6|    Py_DECREF(res);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1247|      6|    if (r < 0)
  ------------------
  |  Branch (1247:9): [True: 0, False: 6]
  ------------------
 1248|      0|        goto error;
 1249|      6|    self->seekable = self->telling = r;
 1250|       |
 1251|      6|    r = PyObject_HasAttrWithError(buffer, &_Py_ID(read1));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1252|      6|    if (r < 0) {
  ------------------
  |  Branch (1252:9): [True: 0, False: 6]
  ------------------
 1253|      0|        goto error;
 1254|      0|    }
 1255|      6|    self->has_read1 = r;
 1256|       |
 1257|      6|    self->encoding_start_of_stream = 0;
 1258|      6|    if (_textiowrapper_fix_encoder_state(self) < 0) {
  ------------------
  |  Branch (1258:9): [True: 0, False: 6]
  ------------------
 1259|      0|        goto error;
 1260|      0|    }
 1261|       |
 1262|      6|    self->ok = 1;
 1263|      6|    return 0;
 1264|       |
 1265|      0|  error:
 1266|      0|    Py_XDECREF(codec_info);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1267|      0|    return -1;
 1268|      6|}
textio.c:io_check_errors:
 1030|      6|{
 1031|      6|    assert(errors != NULL && errors != Py_None);
  ------------------
  |  Branch (1031:5): [True: 6, False: 0]
  |  Branch (1031:5): [True: 6, False: 0]
  ------------------
 1032|       |
 1033|      6|    PyInterpreterState *interp = _PyInterpreterState_GET();
 1034|      6|#ifndef Py_DEBUG
 1035|       |    /* In release mode, only check in development mode (-X dev) */
 1036|      6|    if (!_PyInterpreterState_GetConfig(interp)->dev_mode) {
  ------------------
  |  Branch (1036:9): [True: 6, False: 0]
  ------------------
 1037|      6|        return 0;
 1038|      6|    }
 1039|       |#else
 1040|       |    /* Always check in debug mode */
 1041|       |#endif
 1042|       |
 1043|       |    /* Avoid calling PyCodec_LookupError() before the codec registry is ready:
 1044|       |       before_PyUnicode_InitEncodings() is called. */
 1045|      0|    if (!interp->unicode.fs_codec.encoding) {
  ------------------
  |  Branch (1045:9): [True: 0, False: 0]
  ------------------
 1046|      0|        return 0;
 1047|      0|    }
 1048|       |
 1049|      0|    const char *name = _PyUnicode_AsUTF8NoNUL(errors);
 1050|      0|    if (name == NULL) {
  ------------------
  |  Branch (1050:9): [True: 0, False: 0]
  ------------------
 1051|      0|        return -1;
 1052|      0|    }
 1053|      0|    PyObject *handler = PyCodec_LookupError(name);
 1054|      0|    if (handler != NULL) {
  ------------------
  |  Branch (1054:9): [True: 0, False: 0]
  ------------------
 1055|      0|        Py_DECREF(handler);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1056|      0|        return 0;
 1057|      0|    }
 1058|      0|    return -1;
 1059|      0|}

PyInit__stat:
  711|      2|{
  712|      2|    return PyModuleDef_Init(&statmodule);
  713|      2|}
_stat.c:stat_S_ISDIR:
  334|      2|stat_S_ISFUNC(S_ISDIR,
  ------------------
  |  |  326|      2|    {                                                          \
  |  |  327|      2|       mode_t mode = _PyLong_AsMode_t(omode);                   \
  |  |  328|      2|       if ((mode == (mode_t)-1) && PyErr_Occurred())           \
  |  |  ------------------
  |  |  |  Branch (328:12): [True: 0, False: 2]
  |  |  |  Branch (328:36): [True: 0, False: 0]
  |  |  ------------------
  |  |  329|      2|           return NULL;                                        \
  |  |  330|      2|       return PyBool_FromLong(isfunc(mode));                   \
  |  |  ------------------
  |  |  |  |  334|      2|stat_S_ISFUNC(S_ISDIR,
  |  |  ------------------
  |  |  331|      2|    }                                                          \
  ------------------
_stat.c:_PyLong_AsMode_t:
  294|      2|{
  295|      2|    unsigned long value;
  296|      2|    mode_t mode;
  297|       |
  298|      2|    if (PyLong_Check(op)) {
  ------------------
  |  |   13|      2|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  299|      2|        value = PyLong_AsUnsignedLong(op);
  300|      2|    }
  301|      0|    else {
  302|      0|        op = PyNumber_Index(op);
  303|      0|        if (op == NULL) {
  ------------------
  |  Branch (303:13): [True: 0, False: 0]
  ------------------
  304|      0|            return (mode_t)-1;
  305|      0|        }
  306|      0|        value = PyLong_AsUnsignedLong(op);
  307|      0|        Py_DECREF(op);
  ------------------
  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  308|      0|    }
  309|       |
  310|      2|    if ((value == (unsigned long)-1) && PyErr_Occurred()) {
  ------------------
  |  Branch (310:9): [True: 0, False: 2]
  |  Branch (310:41): [True: 0, False: 0]
  ------------------
  311|      0|        return (mode_t)-1;
  312|      0|    }
  313|       |
  314|      2|    mode = (mode_t)value;
  315|      2|    if ((unsigned long)mode != value) {
  ------------------
  |  Branch (315:9): [True: 0, False: 2]
  ------------------
  316|      0|        PyErr_SetString(PyExc_OverflowError, "mode out of range");
  317|      0|        return (mode_t)-1;
  318|      0|    }
  319|      2|    return mode;
  320|      2|}
_stat.c:stat_exec:
  565|      2|{
  566|      2|#define ADD_INT_MACRO(module, macro)                                  \
  567|      2|    do {                                                              \
  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  569|      2|            return -1;                                                \
  570|      2|        }                                                             \
  571|      2|    } while (0)
  572|       |
  573|      2|    ADD_INT_MACRO(module, S_IFDIR);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  574|      2|    ADD_INT_MACRO(module, S_IFCHR);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  575|      2|    ADD_INT_MACRO(module, S_IFBLK);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  576|      2|    ADD_INT_MACRO(module, S_IFREG);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  577|      2|    ADD_INT_MACRO(module, S_IFIFO);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  578|      2|    ADD_INT_MACRO(module, S_IFLNK);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  579|      2|    ADD_INT_MACRO(module, S_IFSOCK);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  580|      2|    ADD_INT_MACRO(module, S_IFDOOR);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  581|      2|    ADD_INT_MACRO(module, S_IFPORT);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  582|      2|    ADD_INT_MACRO(module, S_IFWHT);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  583|       |
  584|      2|    ADD_INT_MACRO(module, S_ISUID);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  585|      2|    ADD_INT_MACRO(module, S_ISGID);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  586|      2|    ADD_INT_MACRO(module, S_ISVTX);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  587|      2|    ADD_INT_MACRO(module, S_ENFMT);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  588|       |
  589|      2|    ADD_INT_MACRO(module, S_IREAD);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  590|      2|    ADD_INT_MACRO(module, S_IWRITE);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  591|      2|    ADD_INT_MACRO(module, S_IEXEC);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  592|       |
  593|      2|    ADD_INT_MACRO(module, S_IRWXU);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  594|      2|    ADD_INT_MACRO(module, S_IRUSR);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  595|      2|    ADD_INT_MACRO(module, S_IWUSR);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  596|      2|    ADD_INT_MACRO(module, S_IXUSR);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  597|       |
  598|      2|    ADD_INT_MACRO(module, S_IRWXG);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  599|      2|    ADD_INT_MACRO(module, S_IRGRP);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  600|      2|    ADD_INT_MACRO(module, S_IWGRP);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  601|      2|    ADD_INT_MACRO(module, S_IXGRP);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  602|       |
  603|      2|    ADD_INT_MACRO(module, S_IRWXO);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  604|      2|    ADD_INT_MACRO(module, S_IROTH);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  605|      2|    ADD_INT_MACRO(module, S_IWOTH);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  606|      2|    ADD_INT_MACRO(module, S_IXOTH);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  607|       |
  608|      2|    ADD_INT_MACRO(module, UF_SETTABLE);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  609|      2|    ADD_INT_MACRO(module, UF_NODUMP);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  610|      2|    ADD_INT_MACRO(module, UF_IMMUTABLE);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  611|      2|    ADD_INT_MACRO(module, UF_APPEND);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  612|      2|    ADD_INT_MACRO(module, UF_OPAQUE);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  613|      2|    ADD_INT_MACRO(module, UF_NOUNLINK);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  614|      2|    ADD_INT_MACRO(module, UF_COMPRESSED);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  615|      2|    ADD_INT_MACRO(module, UF_TRACKED);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  616|      2|    ADD_INT_MACRO(module, UF_DATAVAULT);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  617|      2|    ADD_INT_MACRO(module, UF_HIDDEN);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  618|      2|    ADD_INT_MACRO(module, SF_SETTABLE);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  619|      2|    ADD_INT_MACRO(module, SF_ARCHIVED);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  620|      2|    ADD_INT_MACRO(module, SF_IMMUTABLE);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  621|      2|    ADD_INT_MACRO(module, SF_APPEND);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  622|      2|    ADD_INT_MACRO(module, SF_NOUNLINK);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  623|      2|    ADD_INT_MACRO(module, SF_SNAPSHOT);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  624|      2|    ADD_INT_MACRO(module, SF_FIRMLINK);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  625|      2|    ADD_INT_MACRO(module, SF_DATALESS);
  ------------------
  |  |  567|      2|    do {                                                              \
  |  |  568|      2|        if (PyModule_AddIntConstant(module, #macro, macro) < 0) {     \
  |  |  ------------------
  |  |  |  Branch (568:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  569|      0|            return -1;                                                \
  |  |  570|      0|        }                                                             \
  |  |  571|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (571:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  626|       |
  627|       |#ifdef SF_SUPPORTED
  628|       |    ADD_INT_MACRO(module, SF_SUPPORTED);
  629|       |#endif
  630|       |#ifdef SF_SYNTHETIC
  631|       |    ADD_INT_MACRO(module, SF_SYNTHETIC);
  632|       |#endif
  633|       |
  634|       |
  635|      2|    const char* st_constants[] = {
  636|      2|        "ST_MODE",
  637|      2|        "ST_INO",
  638|      2|        "ST_DEV",
  639|      2|        "ST_NLINK",
  640|      2|        "ST_UID",
  641|      2|        "ST_GID",
  642|      2|        "ST_SIZE",
  643|      2|        "ST_ATIME",
  644|      2|        "ST_MTIME",
  645|      2|        "ST_CTIME"
  646|      2|    };
  647|       |
  648|     22|    for (int i = 0; i < (int)Py_ARRAY_LENGTH(st_constants); i++) {
  ------------------
  |  |  196|     22|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (648:21): [True: 20, False: 2]
  ------------------
  649|     20|        if (PyModule_AddIntConstant(module, st_constants[i], i) < 0) {
  ------------------
  |  Branch (649:13): [True: 0, False: 20]
  ------------------
  650|      0|            return -1;
  651|      0|        }
  652|     20|    }
  653|       |
  654|       |#ifdef MS_WINDOWS
  655|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_ARCHIVE);
  656|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_COMPRESSED);
  657|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_DEVICE);
  658|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_DIRECTORY);
  659|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_ENCRYPTED);
  660|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_HIDDEN);
  661|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_INTEGRITY_STREAM);
  662|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_NORMAL);
  663|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_NOT_CONTENT_INDEXED);
  664|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_NO_SCRUB_DATA);
  665|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_OFFLINE);
  666|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_READONLY);
  667|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_REPARSE_POINT);
  668|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_SPARSE_FILE);
  669|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_SYSTEM);
  670|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_TEMPORARY);
  671|       |    ADD_INT_MACRO(module, FILE_ATTRIBUTE_VIRTUAL);
  672|       |
  673|       |    if (PyModule_Add(module, "IO_REPARSE_TAG_SYMLINK",
  674|       |            PyLong_FromUnsignedLong(IO_REPARSE_TAG_SYMLINK)) < 0) {
  675|       |        return -1;
  676|       |    }
  677|       |    if (PyModule_Add(module, "IO_REPARSE_TAG_MOUNT_POINT",
  678|       |            PyLong_FromUnsignedLong(IO_REPARSE_TAG_MOUNT_POINT)) < 0) {
  679|       |        return -1;
  680|       |    }
  681|       |    if (PyModule_Add(module, "IO_REPARSE_TAG_APPEXECLINK",
  682|       |            PyLong_FromUnsignedLong(IO_REPARSE_TAG_APPEXECLINK)) < 0) {
  683|       |        return -1;
  684|       |    }
  685|       |#endif
  686|       |
  687|      2|    return 0;
  688|      2|}

PyInit__thread:
 2880|      2|{
 2881|      2|    return PyModuleDef_Init(&thread_module);
 2882|      2|}
_threadmodule.c:get_thread_state:
   58|    102|{
   59|    102|    void *state = _PyModule_GetState(module);
   60|    102|    assert(state != NULL);
  ------------------
  |  Branch (60:5): [True: 102, False: 0]
  ------------------
   61|    102|    return (thread_module_state *)state;
   62|    102|}
_threadmodule.c:thread_PyThread_allocate_lock:
 2115|     48|{
 2116|     48|    thread_module_state *state = get_thread_state(module);
 2117|     48|    return lock_new_impl(state->lock_type);
 2118|     48|}
_threadmodule.c:lock_new_impl:
  994|     48|{
  995|     48|    lockobject *self = (lockobject *)type->tp_alloc(type, 0);
  996|     48|    if (self == NULL) {
  ------------------
  |  Branch (996:9): [True: 0, False: 48]
  ------------------
  997|      0|        return NULL;
  998|      0|    }
  999|     48|    self->lock = (PyMutex){0};
 1000|     48|    return (PyObject *)self;
 1001|     48|}
_threadmodule.c:thread_get_ident:
 2135|    120|{
 2136|    120|    PyThread_ident_t ident = PyThread_get_thread_ident_ex();
 2137|    120|    if (ident == PYTHREAD_INVALID_THREAD_ID) {
  ------------------
  |  |   13|    120|#define PYTHREAD_INVALID_THREAD_ID ((unsigned long)-1)
  ------------------
  |  Branch (2137:9): [True: 0, False: 120]
  ------------------
 2138|      0|        PyErr_SetString(ThreadError, "no current thread ident");
  ------------------
  |  |   23|      0|#define ThreadError PyExc_RuntimeError
  ------------------
 2139|      0|        return NULL;
 2140|      0|    }
 2141|    120|    return PyLong_FromUnsignedLongLong(ident);
 2142|    120|}
_threadmodule.c:thread_module_exec:
 2699|      2|{
 2700|      2|    thread_module_state *state = get_thread_state(module);
 2701|      2|    PyObject *d = PyModule_GetDict(module);
 2702|       |
 2703|       |    // Initialize the C thread library
 2704|      2|    PyThread_init_thread();
 2705|       |
 2706|       |    // _ThreadHandle
 2707|      2|    state->thread_handle_type = (PyTypeObject *)PyType_FromSpec(&ThreadHandle_Type_spec);
 2708|      2|    if (state->thread_handle_type == NULL) {
  ------------------
  |  Branch (2708:9): [True: 0, False: 2]
  ------------------
 2709|      0|        return -1;
 2710|      0|    }
 2711|      2|    if (PyDict_SetItemString(d, "_ThreadHandle", (PyObject *)state->thread_handle_type) < 0) {
  ------------------
  |  Branch (2711:9): [True: 0, False: 2]
  ------------------
 2712|      0|        return -1;
 2713|      0|    }
 2714|       |
 2715|       |    // Lock
 2716|      2|    state->lock_type = (PyTypeObject *)PyType_FromModuleAndSpec(module, &lock_type_spec, NULL);
 2717|      2|    if (state->lock_type == NULL) {
  ------------------
  |  Branch (2717:9): [True: 0, False: 2]
  ------------------
 2718|      0|        return -1;
 2719|      0|    }
 2720|      2|    if (PyModule_AddType(module, state->lock_type) < 0) {
  ------------------
  |  Branch (2720:9): [True: 0, False: 2]
  ------------------
 2721|      0|        return -1;
 2722|      0|    }
 2723|       |    // Old alias: lock -> LockType
 2724|      2|    if (PyDict_SetItemString(d, "LockType", (PyObject *)state->lock_type) < 0) {
  ------------------
  |  Branch (2724:9): [True: 0, False: 2]
  ------------------
 2725|      0|        return -1;
 2726|      0|    }
 2727|       |
 2728|       |    // RLock
 2729|      2|    state->rlock_type = (PyTypeObject *)PyType_FromModuleAndSpec(module, &rlock_type_spec, NULL);
 2730|      2|    if (state->rlock_type == NULL) {
  ------------------
  |  Branch (2730:9): [True: 0, False: 2]
  ------------------
 2731|      0|        return -1;
 2732|      0|    }
 2733|      2|    if (PyModule_AddType(module, state->rlock_type) < 0) {
  ------------------
  |  Branch (2733:9): [True: 0, False: 2]
  ------------------
 2734|      0|        return -1;
 2735|      0|    }
 2736|       |
 2737|       |    // Local dummy
 2738|      2|    state->local_dummy_type = (PyTypeObject *)PyType_FromSpec(&local_dummy_type_spec);
 2739|      2|    if (state->local_dummy_type == NULL) {
  ------------------
  |  Branch (2739:9): [True: 0, False: 2]
  ------------------
 2740|      0|        return -1;
 2741|      0|    }
 2742|       |
 2743|       |    // Local
 2744|      2|    state->local_type = (PyTypeObject *)PyType_FromModuleAndSpec(module, &local_type_spec, NULL);
 2745|      2|    if (state->local_type == NULL) {
  ------------------
  |  Branch (2745:9): [True: 0, False: 2]
  ------------------
 2746|      0|        return -1;
 2747|      0|    }
 2748|      2|    if (PyModule_AddType(module, state->local_type) < 0) {
  ------------------
  |  Branch (2748:9): [True: 0, False: 2]
  ------------------
 2749|      0|        return -1;
 2750|      0|    }
 2751|       |
 2752|       |    // Add module attributes
 2753|      2|    if (PyDict_SetItemString(d, "error", ThreadError) < 0) {
  ------------------
  |  |   23|      2|#define ThreadError PyExc_RuntimeError
  ------------------
  |  Branch (2753:9): [True: 0, False: 2]
  ------------------
 2754|      0|        return -1;
 2755|      0|    }
 2756|       |
 2757|       |    // _ExceptHookArgs type
 2758|      2|    state->excepthook_type = PyStructSequence_NewType(&ExceptHookArgs_desc);
 2759|      2|    if (state->excepthook_type == NULL) {
  ------------------
  |  Branch (2759:9): [True: 0, False: 2]
  ------------------
 2760|      0|        return -1;
 2761|      0|    }
 2762|      2|    if (PyModule_AddType(module, state->excepthook_type) < 0) {
  ------------------
  |  Branch (2762:9): [True: 0, False: 2]
  ------------------
 2763|      0|        return -1;
 2764|      0|    }
 2765|       |
 2766|       |    // TIMEOUT_MAX
 2767|      2|    double timeout_max = (double)PY_TIMEOUT_MAX * 1e-6;
 2768|      2|    double time_max = PyTime_AsSecondsDouble(PyTime_MAX);
  ------------------
  |  |   12|      2|#define PyTime_MAX INT64_MAX
  ------------------
 2769|      2|    timeout_max = Py_MIN(timeout_max, time_max);
  ------------------
  |  |  112|      2|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2770|       |    // Round towards minus infinity
 2771|      2|    timeout_max = floor(timeout_max);
 2772|       |
 2773|      2|    if (PyModule_Add(module, "TIMEOUT_MAX",
  ------------------
  |  Branch (2773:9): [True: 0, False: 2]
  ------------------
 2774|      2|                        PyFloat_FromDouble(timeout_max)) < 0) {
 2775|      0|        return -1;
 2776|      0|    }
 2777|       |
 2778|      2|    llist_init(&state->shutdown_handles);
 2779|       |
 2780|      2|#ifdef _PYTHREAD_NAME_MAXLEN
 2781|      2|    if (PyModule_AddIntConstant(module, "_NAME_MAXLEN",
  ------------------
  |  Branch (2781:9): [True: 0, False: 2]
  ------------------
 2782|      2|                                _PYTHREAD_NAME_MAXLEN) < 0) {
  ------------------
  |  | 2049|      2|#define _PYTHREAD_NAME_MAXLEN 15
  ------------------
 2783|      0|        return -1;
 2784|      0|    }
 2785|      2|#endif
 2786|       |
 2787|       |#ifdef MS_WINDOWS
 2788|       |    HMODULE kernelbase = GetModuleHandleW(L"kernelbase.dll");
 2789|       |    if (kernelbase != NULL) {
 2790|       |        if (pGetThreadDescription == NULL) {
 2791|       |            pGetThreadDescription = (PF_GET_THREAD_DESCRIPTION)GetProcAddress(
 2792|       |                                        kernelbase, "GetThreadDescription");
 2793|       |        }
 2794|       |        if (pSetThreadDescription == NULL) {
 2795|       |            pSetThreadDescription = (PF_SET_THREAD_DESCRIPTION)GetProcAddress(
 2796|       |                                        kernelbase, "SetThreadDescription");
 2797|       |        }
 2798|       |    }
 2799|       |
 2800|       |    if (pGetThreadDescription == NULL) {
 2801|       |        if (PyObject_DelAttrString(module, "_get_name") < 0) {
 2802|       |            return -1;
 2803|       |        }
 2804|       |    }
 2805|       |    if (pSetThreadDescription == NULL) {
 2806|       |        if (PyObject_DelAttrString(module, "set_name") < 0) {
 2807|       |            return -1;
 2808|       |        }
 2809|       |    }
 2810|       |#endif
 2811|       |
 2812|      2|    return 0;
 2813|      2|}
_threadmodule.c:lock_dealloc:
  770|     48|{
  771|     48|    PyObject_GC_UnTrack(self);
  772|     48|    PyObject_ClearWeakRefs(self);
  773|     48|    PyTypeObject *tp = Py_TYPE(self);
  ------------------
  |  |  213|     48|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  774|     48|    tp->tp_free(self);
  775|     48|    Py_DECREF(tp);
  ------------------
  |  |  430|     48|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  776|     48|}
_threadmodule.c:lock_acquire_parse_timeout:
  781|    120|{
  782|       |    // XXX Use PyThread_ParseTimeoutArg().
  783|       |
  784|    120|    const PyTime_t unset_timeout = _PyTime_FromSeconds(-1);
  785|    120|    *timeout = unset_timeout;
  786|       |
  787|    120|    if (timeout_obj
  ------------------
  |  Branch (787:9): [True: 0, False: 120]
  ------------------
  788|      0|        && _PyTime_FromSecondsObject(timeout,
  ------------------
  |  Branch (788:12): [True: 0, False: 0]
  ------------------
  789|      0|                                     timeout_obj, _PyTime_ROUND_TIMEOUT) < 0)
  790|      0|        return -1;
  791|       |
  792|    120|    if (!blocking && *timeout != unset_timeout ) {
  ------------------
  |  Branch (792:9): [True: 0, False: 120]
  |  Branch (792:22): [True: 0, False: 0]
  ------------------
  793|      0|        PyErr_SetString(PyExc_ValueError,
  794|      0|                        "can't specify a timeout for a non-blocking call");
  795|      0|        return -1;
  796|      0|    }
  797|    120|    if (*timeout < 0 && *timeout != unset_timeout) {
  ------------------
  |  Branch (797:9): [True: 120, False: 0]
  |  Branch (797:25): [True: 0, False: 120]
  ------------------
  798|      0|        PyErr_SetString(PyExc_ValueError,
  799|      0|                        "timeout value must be a non-negative number");
  800|      0|        return -1;
  801|      0|    }
  802|    120|    if (!blocking)
  ------------------
  |  Branch (802:9): [True: 0, False: 120]
  ------------------
  803|      0|        *timeout = 0;
  804|    120|    else if (*timeout != unset_timeout) {
  ------------------
  |  Branch (804:14): [True: 0, False: 120]
  ------------------
  805|      0|        PyTime_t microseconds;
  806|       |
  807|      0|        microseconds = _PyTime_AsMicroseconds(*timeout, _PyTime_ROUND_TIMEOUT);
  808|      0|        if (microseconds > PY_TIMEOUT_MAX) {
  ------------------
  |  Branch (808:13): [True: 0, False: 0]
  ------------------
  809|      0|            PyErr_SetString(PyExc_OverflowError,
  810|      0|                            "timeout value is too large");
  811|      0|            return -1;
  812|      0|        }
  813|      0|    }
  814|    120|    return 0;
  815|    120|}
_threadmodule.c:get_thread_state_by_cls:
   66|     48|{
   67|       |    // Use PyType_GetModuleByDef() to handle (R)Lock subclasses.
   68|     48|    PyObject *module = PyType_GetModuleByDef(cls, &thread_module);
   69|     48|    if (module == NULL) {
  ------------------
  |  Branch (69:9): [True: 0, False: 48]
  ------------------
   70|      0|        return NULL;
   71|      0|    }
   72|     48|    return get_thread_state(module);
   73|     48|}
_threadmodule.c:rlock_dealloc:
 1062|     48|{
 1063|     48|    PyObject_GC_UnTrack(self);
 1064|     48|    PyObject_ClearWeakRefs(self);
 1065|     48|    PyTypeObject *tp = Py_TYPE(self);
  ------------------
  |  |  213|     48|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1066|     48|    tp->tp_free(self);
 1067|     48|    Py_DECREF(tp);
  ------------------
  |  |  430|     48|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1068|     48|}
_threadmodule.c:_thread_RLock_acquire_impl:
 1095|    120|{
 1096|    120|    PyTime_t timeout;
 1097|       |
 1098|    120|    if (lock_acquire_parse_timeout(timeoutobj, blocking, &timeout) < 0) {
  ------------------
  |  Branch (1098:9): [True: 0, False: 120]
  ------------------
 1099|      0|        return NULL;
 1100|      0|    }
 1101|       |
 1102|    120|    PyLockStatus r = _PyRecursiveMutex_LockTimed(
 1103|    120|        &self->lock, timeout,
 1104|    120|        _PY_LOCK_PYTHONLOCK | _PY_LOCK_HANDLE_SIGNALS | _PY_LOCK_DETACH);
 1105|    120|    if (r == PY_LOCK_INTR) {
  ------------------
  |  Branch (1105:9): [True: 0, False: 120]
  ------------------
 1106|      0|        assert(PyErr_Occurred());
  ------------------
  |  Branch (1106:9): [True: 0, False: 0]
  ------------------
 1107|      0|        return NULL;
 1108|      0|    }
 1109|    120|    if (r == PY_LOCK_FAILURE && PyErr_Occurred()) {
  ------------------
  |  Branch (1109:9): [True: 0, False: 120]
  |  Branch (1109:33): [True: 0, False: 0]
  ------------------
 1110|      0|        return NULL;
 1111|      0|    }
 1112|       |
 1113|    120|    return PyBool_FromLong(r == PY_LOCK_ACQUIRED);
 1114|    120|}
_threadmodule.c:_thread_RLock_release_impl:
 1147|    120|{
 1148|    120|    if (_PyRecursiveMutex_TryUnlock(&self->lock) < 0) {
  ------------------
  |  Branch (1148:9): [True: 0, False: 120]
  ------------------
 1149|      0|        PyErr_SetString(PyExc_RuntimeError,
 1150|      0|                        "cannot release un-acquired lock");
 1151|      0|        return NULL;
 1152|      0|    }
 1153|    120|    Py_RETURN_NONE;
  ------------------
  |  |  628|    120|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|    120|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1154|    120|}
_threadmodule.c:_thread_RLock___enter___impl:
 1125|    120|{
 1126|       |    return _thread_RLock_acquire_impl(self, 1, NULL);
 1127|    120|}
_threadmodule.c:_thread_RLock___exit___impl:
 1171|    120|{
 1172|    120|    return _thread_RLock_release_impl(self);
 1173|    120|}
_threadmodule.c:rlock_new_impl:
 1278|     48|{
 1279|     48|    rlockobject *self = (rlockobject *) type->tp_alloc(type, 0);
 1280|     48|    if (self == NULL) {
  ------------------
  |  Branch (1280:9): [True: 0, False: 48]
  ------------------
 1281|      0|        return NULL;
 1282|      0|    }
 1283|     48|    self->lock = (_PyRecursiveMutex){0};
 1284|     48|    return (PyObject *) self;
 1285|     48|}
_threadmodule.c:thread_module_traverse:
 2818|      4|{
 2819|      4|    thread_module_state *state = get_thread_state(module);
 2820|      4|    Py_VISIT(state->excepthook_type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2821|      4|    Py_VISIT(state->lock_type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2822|      4|    Py_VISIT(state->rlock_type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2823|      4|    Py_VISIT(state->local_type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2824|      4|    Py_VISIT(state->local_dummy_type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2825|      4|    Py_VISIT(state->thread_handle_type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2826|      4|    return 0;
 2827|      4|}

PyInit__weakref:
  186|      2|{
  187|      2|    return PyModuleDef_Init(&weakrefmodule);
  188|      2|}
_weakref.c:_weakref__remove_dead_weakref_impl:
   58|     60|{
   59|     60|    if (_PyDict_DelItemIf(dct, key, is_dead_weakref, NULL) < 0) {
  ------------------
  |  Branch (59:9): [True: 0, False: 60]
  ------------------
   60|      0|        return NULL;
   61|      0|    }
   62|     60|    Py_RETURN_NONE;
  ------------------
  |  |  628|     60|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     60|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
   63|     60|}
_weakref.c:is_dead_weakref:
   35|     60|{
   36|     60|    if (!PyWeakref_Check(value)) {
  ------------------
  |  |   23|     60|        (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
  |  |  ------------------
  |  |  |  |   15|     60|#define PyWeakref_CheckRef(op) PyObject_TypeCheck((op), &_PyWeakref_RefType)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|    120|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 60, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
  |  |  ------------------
  |  |  |  |   19|      0|        (Py_IS_TYPE((op), &_PyWeakref_ProxyType) \
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   20|      0|         || Py_IS_TYPE((op), &_PyWeakref_CallableProxyType))
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   37|      0|        PyErr_SetString(PyExc_TypeError, "not a weakref");
   38|      0|        return -1;
   39|      0|    }
   40|     60|    return _PyWeakref_IS_DEAD(value);
   41|     60|}
_weakref.c:weakref_exec:
  144|      2|{
  145|      2|    if (PyModule_AddObjectRef(module, "ref", (PyObject *) &_PyWeakref_RefType) < 0) {
  ------------------
  |  Branch (145:9): [True: 0, False: 2]
  ------------------
  146|      0|        return -1;
  147|      0|    }
  148|      2|    if (PyModule_AddObjectRef(module, "ReferenceType",
  ------------------
  |  Branch (148:9): [True: 0, False: 2]
  ------------------
  149|      2|                           (PyObject *) &_PyWeakref_RefType) < 0) {
  150|      0|        return -1;
  151|      0|    }
  152|      2|    if (PyModule_AddObjectRef(module, "ProxyType",
  ------------------
  |  Branch (152:9): [True: 0, False: 2]
  ------------------
  153|      2|                           (PyObject *) &_PyWeakref_ProxyType) < 0) {
  154|      0|        return -1;
  155|      0|    }
  156|      2|    if (PyModule_AddObjectRef(module, "CallableProxyType",
  ------------------
  |  Branch (156:9): [True: 0, False: 2]
  ------------------
  157|      2|                           (PyObject *) &_PyWeakref_CallableProxyType) < 0) {
  158|      0|        return -1;
  159|      0|    }
  160|       |
  161|      2|    return 0;
  162|      2|}

LLVMFuzzerInitialize:
  598|      2|int LLVMFuzzerInitialize(int *argc, char ***argv) {
  599|      2|    PyConfig config;
  600|      2|    PyConfig_InitPythonConfig(&config);
  601|      2|    config.install_signal_handlers = 0;
  602|       |    /* Raise the limit above the default allows exercising larger things
  603|       |     * now that we fall back to the _pylong module for large values. */
  604|      2|    config.int_max_str_digits = 8086;
  605|      2|    PyStatus status;
  606|      2|    status = PyConfig_SetBytesString(&config, &config.program_name, *argv[0]);
  607|      2|    if (PyStatus_Exception(status)) {
  ------------------
  |  Branch (607:9): [True: 0, False: 2]
  ------------------
  608|      0|        goto fail;
  609|      0|    }
  610|       |
  611|      2|    status = Py_InitializeFromConfig(&config);
  612|      2|    if (PyStatus_Exception(status)) {
  ------------------
  |  Branch (612:9): [True: 0, False: 2]
  ------------------
  613|      0|        goto fail;
  614|      0|    }
  615|      2|    PyConfig_Clear(&config);
  616|       |
  617|      2|    return 0;
  618|       |
  619|      0|fail:
  620|      0|    PyConfig_Clear(&config);
  621|      0|    Py_ExitStatusException(status);
  622|      2|}
LLVMFuzzerTestOneInput:
  631|  3.60k|int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  632|  3.60k|    assert(Py_IsInitialized());
  633|       |
  634|  3.60k|    int rv = 0;
  635|       |
  636|  3.60k|#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_builtin_float)
  637|  3.60k|    rv |= _run_fuzz(data, size, fuzz_builtin_float);
  638|  3.60k|#endif
  639|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_builtin_int)
  640|       |    rv |= _run_fuzz(data, size, fuzz_builtin_int);
  641|       |#endif
  642|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_builtin_unicode)
  643|       |    rv |= _run_fuzz(data, size, fuzz_builtin_unicode);
  644|       |#endif
  645|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_struct_unpack)
  646|       |    static int STRUCT_UNPACK_INITIALIZED = 0;
  647|       |    if (!STRUCT_UNPACK_INITIALIZED && !init_struct_unpack()) {
  648|       |        PyErr_Print();
  649|       |        abort();
  650|       |    } else {
  651|       |        STRUCT_UNPACK_INITIALIZED = 1;
  652|       |    }
  653|       |    rv |= _run_fuzz(data, size, fuzz_struct_unpack);
  654|       |#endif
  655|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_json_loads)
  656|       |    static int JSON_LOADS_INITIALIZED = 0;
  657|       |    if (!JSON_LOADS_INITIALIZED && !init_json_loads()) {
  658|       |        PyErr_Print();
  659|       |        abort();
  660|       |    } else {
  661|       |        JSON_LOADS_INITIALIZED = 1;
  662|       |    }
  663|       |
  664|       |    rv |= _run_fuzz(data, size, fuzz_json_loads);
  665|       |#endif
  666|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_sre_compile)
  667|       |    static int SRE_COMPILE_INITIALIZED = 0;
  668|       |    if (!SRE_COMPILE_INITIALIZED && !init_sre_compile()) {
  669|       |        PyErr_Print();
  670|       |        abort();
  671|       |    } else {
  672|       |        SRE_COMPILE_INITIALIZED = 1;
  673|       |    }
  674|       |
  675|       |    if (SRE_COMPILE_INITIALIZED) {
  676|       |        rv |= _run_fuzz(data, size, fuzz_sre_compile);
  677|       |    }
  678|       |#endif
  679|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_sre_match)
  680|       |    static int SRE_MATCH_INITIALIZED = 0;
  681|       |    if (!SRE_MATCH_INITIALIZED && !init_sre_match()) {
  682|       |        PyErr_Print();
  683|       |        abort();
  684|       |    } else {
  685|       |        SRE_MATCH_INITIALIZED = 1;
  686|       |    }
  687|       |
  688|       |    rv |= _run_fuzz(data, size, fuzz_sre_match);
  689|       |#endif
  690|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_csv_reader)
  691|       |    static int CSV_READER_INITIALIZED = 0;
  692|       |    if (!CSV_READER_INITIALIZED && !init_csv_reader()) {
  693|       |        PyErr_Print();
  694|       |        abort();
  695|       |    } else {
  696|       |        CSV_READER_INITIALIZED = 1;
  697|       |    }
  698|       |
  699|       |    rv |= _run_fuzz(data, size, fuzz_csv_reader);
  700|       |#endif
  701|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_ast_literal_eval)
  702|       |    static int AST_LITERAL_EVAL_INITIALIZED = 0;
  703|       |    if (!AST_LITERAL_EVAL_INITIALIZED && !init_ast_literal_eval()) {
  704|       |        PyErr_Print();
  705|       |        abort();
  706|       |    } else {
  707|       |        AST_LITERAL_EVAL_INITIALIZED = 1;
  708|       |    }
  709|       |
  710|       |    rv |= _run_fuzz(data, size, fuzz_ast_literal_eval);
  711|       |#endif
  712|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_elementtree_parsewhole)
  713|       |    static int ELEMENTTREE_PARSEWHOLE_INITIALIZED = 0;
  714|       |    if (!ELEMENTTREE_PARSEWHOLE_INITIALIZED && !init_elementtree_parsewhole()) {
  715|       |        PyErr_Print();
  716|       |        abort();
  717|       |    } else {
  718|       |        ELEMENTTREE_PARSEWHOLE_INITIALIZED = 1;
  719|       |    }
  720|       |
  721|       |    rv |= _run_fuzz(data, size, fuzz_elementtree_parsewhole);
  722|       |#endif
  723|       |#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_fuzz_pycompile)
  724|       |    rv |= _run_fuzz(data, size, fuzz_pycompile);
  725|       |#endif
  726|  3.60k|  return rv;
  727|  3.60k|}
fuzzer.c:_run_fuzz:
  582|  3.60k|static int _run_fuzz(const uint8_t *data, size_t size, int(*fuzzer)(const char* , size_t)) {
  583|  3.60k|    int rv = fuzzer((const char*) data, size);
  584|  3.60k|    if (PyErr_Occurred()) {
  ------------------
  |  Branch (584:9): [True: 0, False: 3.60k]
  ------------------
  585|       |        /* Fuzz tests should handle expected errors for themselves.
  586|       |           This is last-ditch check in case they didn't. */
  587|      0|        PyErr_Print();
  588|      0|        abort();
  589|      0|    }
  590|       |    /* Someday the return value might mean something, propagate it. */
  591|  3.60k|    return rv;
  592|  3.60k|}
fuzzer.c:fuzz_builtin_float:
   22|  3.60k|static int fuzz_builtin_float(const char* data, size_t size) {
   23|  3.60k|    PyObject* s = PyBytes_FromStringAndSize(data, size);
   24|  3.60k|    if (s == NULL) return 0;
  ------------------
  |  Branch (24:9): [True: 0, False: 3.60k]
  ------------------
   25|  3.60k|    PyObject* f = PyFloat_FromString(s);
   26|  3.60k|    if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_ValueError)) {
  ------------------
  |  Branch (26:9): [True: 1.93k, False: 1.67k]
  |  Branch (26:29): [True: 1.93k, False: 0]
  ------------------
   27|  1.93k|        PyErr_Clear();
   28|  1.93k|    }
   29|       |
   30|  3.60k|    Py_XDECREF(f);
  ------------------
  |  |  524|  3.60k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   31|  3.60k|    Py_DECREF(s);
  ------------------
  |  |  430|  3.60k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   32|  3.60k|    return 0;
   33|  3.60k|}

_PyAtExit_Init:
   68|      2|{
   69|      2|    struct atexit_state *state = &interp->atexit;
   70|       |    // _PyAtExit_Init() must only be called once
   71|      2|    assert(state->callbacks == NULL);
  ------------------
  |  Branch (71:5): [True: 2, False: 0]
  ------------------
   72|       |
   73|      2|    state->callbacks = PyList_New(0);
   74|      2|    if (state->callbacks == NULL) {
  ------------------
  |  Branch (74:9): [True: 0, False: 2]
  ------------------
   75|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
   76|      0|    }
   77|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
   78|      2|}

_abc.c:_abc__abc_register:
   65|     68|{
   66|     68|    PyObject *return_value = NULL;
   67|     68|    PyObject *self;
   68|     68|    PyObject *subclass;
   69|       |
   70|     68|    if (!_PyArg_CheckPositional("_abc_register", nargs, 2, 2)) {
  ------------------
  |  |   31|     68|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 68, False: 0]
  |  |  |  Branch (31:27): [True: 68, False: 0]
  |  |  ------------------
  |  |   32|     68|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   71|      0|        goto exit;
   72|      0|    }
   73|     68|    self = args[0];
   74|     68|    subclass = args[1];
   75|     68|    return_value = _abc__abc_register_impl(module, self, subclass);
   76|       |
   77|     68|exit:
   78|     68|    return return_value;
   79|     68|}
_abc.c:_abc__abc_subclasscheck:
  127|     68|{
  128|     68|    PyObject *return_value = NULL;
  129|     68|    PyObject *self;
  130|     68|    PyObject *subclass;
  131|       |
  132|     68|    if (!_PyArg_CheckPositional("_abc_subclasscheck", nargs, 2, 2)) {
  ------------------
  |  |   31|     68|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 68, False: 0]
  |  |  |  Branch (31:27): [True: 68, False: 0]
  |  |  ------------------
  |  |   32|     68|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  133|      0|        goto exit;
  134|      0|    }
  135|     68|    self = args[0];
  136|     68|    subclass = args[1];
  137|     68|    return_value = _abc__abc_subclasscheck_impl(module, self, subclass);
  138|       |
  139|     68|exit:
  140|     68|    return return_value;
  141|     68|}

_codecsmodule.c:_codecs_lookup_error:
 2759|     12|{
 2760|     12|    PyObject *return_value = NULL;
 2761|     12|    const char *name;
 2762|       |
 2763|     12|    if (!PyUnicode_Check(arg)) {
  ------------------
  |  |  103|     12|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     12|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2763:9): [True: 0, False: 12]
  ------------------
 2764|      0|        _PyArg_BadArgument("lookup_error", "argument", "str", arg);
 2765|      0|        goto exit;
 2766|      0|    }
 2767|     12|    Py_ssize_t name_length;
 2768|     12|    name = PyUnicode_AsUTF8AndSize(arg, &name_length);
 2769|     12|    if (name == NULL) {
  ------------------
  |  Branch (2769:9): [True: 0, False: 12]
  ------------------
 2770|      0|        goto exit;
 2771|      0|    }
 2772|     12|    if (strlen(name) != (size_t)name_length) {
  ------------------
  |  Branch (2772:9): [True: 0, False: 12]
  ------------------
 2773|      0|        PyErr_SetString(PyExc_ValueError, "embedded null character");
 2774|      0|        goto exit;
 2775|      0|    }
 2776|     12|    return_value = _codecs_lookup_error_impl(module, name);
 2777|       |
 2778|     12|exit:
 2779|     12|    return return_value;
 2780|     12|}
_codecsmodule.c:_codecs__normalize_encoding:
 2798|      2|{
 2799|      2|    PyObject *return_value = NULL;
 2800|      2|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 2801|       |
 2802|      2|    #define NUM_KEYWORDS 1
 2803|      2|    static struct {
 2804|      2|        PyGC_Head _this_is_not_used;
 2805|      2|        PyObject_VAR_HEAD
 2806|      2|        Py_hash_t ob_hash;
 2807|      2|        PyObject *ob_item[NUM_KEYWORDS];
 2808|      2|    } _kwtuple = {
 2809|      2|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      2|    {                                     \
  |  |   98|      2|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      2|    {                               \
  |  |  |  |   91|      2|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      2|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      2|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      2|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      2|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      2|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      2|        (type)                      \
  |  |  |  |   93|      2|    },
  |  |  ------------------
  |  |   99|      2|        (size)                            \
  |  |  100|      2|    },
  ------------------
 2810|      2|        .ob_hash = -1,
 2811|      2|        .ob_item = { &_Py_ID(encoding), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2812|      2|    };
 2813|      2|    #undef NUM_KEYWORDS
 2814|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
 2815|       |
 2816|       |    #else  // !Py_BUILD_CORE
 2817|       |    #  define KWTUPLE NULL
 2818|       |    #endif  // !Py_BUILD_CORE
 2819|       |
 2820|      2|    static const char * const _keywords[] = {"encoding", NULL};
 2821|      2|    static _PyArg_Parser _parser = {
 2822|      2|        .keywords = _keywords,
 2823|      2|        .fname = "_normalize_encoding",
 2824|      2|        .kwtuple = KWTUPLE,
  ------------------
  |  | 2814|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
 2825|      2|    };
 2826|      2|    #undef KWTUPLE
 2827|      2|    PyObject *argsbuf[1];
 2828|      2|    PyObject *encoding;
 2829|       |
 2830|      2|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      2|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 2, False: 0]
  |  |  ------------------
  |  |   89|      2|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 2, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 2]
  |  |  |  Branch (89:43): [True: 2, False: 0]
  |  |  |  Branch (89:67): [True: 2, False: 0]
  |  |  ------------------
  |  |   90|      2|      (args) : \
  |  |   91|      2|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
 2831|      2|            /*minpos*/ 1, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
 2832|      2|    if (!args) {
  ------------------
  |  Branch (2832:9): [True: 0, False: 2]
  ------------------
 2833|      0|        goto exit;
 2834|      0|    }
 2835|      2|    if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2835:9): [True: 0, False: 2]
  ------------------
 2836|      0|        _PyArg_BadArgument("_normalize_encoding", "argument 'encoding'", "str", args[0]);
 2837|      0|        goto exit;
 2838|      0|    }
 2839|      2|    encoding = args[0];
 2840|      2|    return_value = _codecs__normalize_encoding_impl(module, encoding);
 2841|       |
 2842|      2|exit:
 2843|      2|    return return_value;
 2844|      2|}

_threadmodule.c:_thread_RLock___enter__:
  438|    120|{
  439|    120|    return _thread_RLock___enter___impl((rlockobject *)self);
  440|    120|}
_threadmodule.c:_thread_RLock___exit__:
  484|    120|{
  485|    120|    PyObject *return_value = NULL;
  486|    120|    PyObject *exc_type;
  487|    120|    PyObject *exc_value;
  488|    120|    PyObject *exc_tb;
  489|       |
  490|    120|    if (!_PyArg_CheckPositional("__exit__", nargs, 3, 3)) {
  ------------------
  |  |   31|    120|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 120, False: 0]
  |  |  |  Branch (31:27): [True: 120, False: 0]
  |  |  ------------------
  |  |   32|    120|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  491|      0|        goto exit;
  492|      0|    }
  493|    120|    exc_type = args[0];
  494|    120|    exc_value = args[1];
  495|    120|    exc_tb = args[2];
  496|    120|    return_value = _thread_RLock___exit___impl((rlockobject *)self, exc_type, exc_value, exc_tb);
  497|       |
  498|    120|exit:
  499|    120|    return return_value;
  500|    120|}
_threadmodule.c:rlock_new:
  601|     48|{
  602|     48|    PyObject *return_value = NULL;
  603|     48|    PyTypeObject *base_tp = clinic_state()->rlock_type;
  ------------------
  |  |   91|     48|#define clinic_state() get_thread_state_by_cls(type)
  ------------------
  604|       |
  605|     48|    if ((type == base_tp || type->tp_init == base_tp->tp_init) &&
  ------------------
  |  Branch (605:10): [True: 48, False: 0]
  |  Branch (605:29): [True: 0, False: 0]
  ------------------
  606|     48|        !_PyArg_NoPositional("RLock", args)) {
  ------------------
  |  |   20|     48|    ((args) == NULL || _PyArg_NoPositional((funcname), (args)))
  |  |  ------------------
  |  |  |  Branch (20:6): [True: 0, False: 48]
  |  |  |  Branch (20:24): [True: 48, False: 0]
  |  |  ------------------
  ------------------
  607|      0|        goto exit;
  608|      0|    }
  609|     48|    if ((type == base_tp || type->tp_init == base_tp->tp_init) &&
  ------------------
  |  Branch (609:10): [True: 48, False: 0]
  |  Branch (609:29): [True: 0, False: 0]
  ------------------
  610|     48|        !_PyArg_NoKeywords("RLock", kwargs)) {
  ------------------
  |  |   25|     48|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 48, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  611|      0|        goto exit;
  612|      0|    }
  613|     48|    return_value = rlock_new_impl(type);
  614|       |
  615|     48|exit:
  616|     48|    return return_value;
  617|     48|}

_weakref.c:_weakref__remove_dead_weakref:
   50|     60|{
   51|     60|    PyObject *return_value = NULL;
   52|     60|    PyObject *dct;
   53|     60|    PyObject *key;
   54|       |
   55|     60|    if (!_PyArg_CheckPositional("_remove_dead_weakref", nargs, 2, 2)) {
  ------------------
  |  |   31|     60|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 60, False: 0]
  |  |  |  Branch (31:27): [True: 60, False: 0]
  |  |  ------------------
  |  |   32|     60|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   56|      0|        goto exit;
   57|      0|    }
   58|     60|    if (!PyDict_Check(args[0])) {
  ------------------
  |  |   18|     60|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     60|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (58:9): [True: 0, False: 60]
  ------------------
   59|      0|        _PyArg_BadArgument("_remove_dead_weakref", "argument 1", "dict", args[0]);
   60|      0|        goto exit;
   61|      0|    }
   62|     60|    dct = args[0];
   63|     60|    key = args[1];
   64|     60|    return_value = _weakref__remove_dead_weakref_impl(module, dct, key);
   65|       |
   66|     60|exit:
   67|     60|    return return_value;
   68|     60|}

posixmodule.c:os_stat:
   46|     38|{
   47|     38|    PyObject *return_value = NULL;
   48|     38|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
   49|       |
   50|     38|    #define NUM_KEYWORDS 3
   51|     38|    static struct {
   52|     38|        PyGC_Head _this_is_not_used;
   53|     38|        PyObject_VAR_HEAD
   54|     38|        Py_hash_t ob_hash;
   55|     38|        PyObject *ob_item[NUM_KEYWORDS];
   56|     38|    } _kwtuple = {
   57|     38|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     38|    {                                     \
  |  |   98|     38|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     38|    {                               \
  |  |  |  |   91|     38|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     38|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     38|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     38|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     38|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     38|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     38|        (type)                      \
  |  |  |  |   93|     38|    },
  |  |  ------------------
  |  |   99|     38|        (size)                            \
  |  |  100|     38|    },
  ------------------
   58|     38|        .ob_hash = -1,
   59|     38|        .ob_item = { &_Py_ID(path), &_Py_ID(dir_fd), &_Py_ID(follow_symlinks), },
  ------------------
  |  |  917|     38|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     38|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     38|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(path), &_Py_ID(dir_fd), &_Py_ID(follow_symlinks), },
  ------------------
  |  |  917|     38|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     38|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     38|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(path), &_Py_ID(dir_fd), &_Py_ID(follow_symlinks), },
  ------------------
  |  |  917|     38|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     38|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     38|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   60|     38|    };
   61|     38|    #undef NUM_KEYWORDS
   62|     38|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
   63|       |
   64|       |    #else  // !Py_BUILD_CORE
   65|       |    #  define KWTUPLE NULL
   66|       |    #endif  // !Py_BUILD_CORE
   67|       |
   68|     38|    static const char * const _keywords[] = {"path", "dir_fd", "follow_symlinks", NULL};
   69|     38|    static _PyArg_Parser _parser = {
   70|     38|        .keywords = _keywords,
   71|     38|        .fname = "stat",
   72|     38|        .kwtuple = KWTUPLE,
  ------------------
  |  |   62|     38|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
   73|     38|    };
   74|     38|    #undef KWTUPLE
   75|     38|    PyObject *argsbuf[3];
   76|     38|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (76:36): [True: 0, False: 38]
  ------------------
   77|     38|    path_t path = PATH_T_INITIALIZE_P("stat", "path", 0, 0, 0, 1);
  ------------------
  |  | 1365|     38|    PATH_T_INITIALIZE(function_name, argument_name, nullable, nonstrict, 0, \
  |  |  ------------------
  |  |  |  | 1355|     38|    {function_name, argument_name, nullable, nonstrict, make_wide, \
  |  |  |  | 1356|     38|     suppress_value_error, allow_fd, NULL, NULL, -1, false, 0, 0, NULL, NULL}
  |  |  ------------------
  |  | 1366|     38|                      suppress_value_error, allow_fd)
  ------------------
   78|     38|    int dir_fd = DEFAULT_DIR_FD;
  ------------------
  |  | 1138|     38|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
   79|     38|    int follow_symlinks = 1;
   80|       |
   81|     38|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|     38|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 38, False: 0]
  |  |  ------------------
  |  |   89|     38|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 38, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 38]
  |  |  |  Branch (89:43): [True: 38, False: 0]
  |  |  |  Branch (89:67): [True: 38, False: 0]
  |  |  ------------------
  |  |   90|     38|      (args) : \
  |  |   91|     38|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
   82|     38|            /*minpos*/ 1, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
   83|     38|    if (!args) {
  ------------------
  |  Branch (83:9): [True: 0, False: 38]
  ------------------
   84|      0|        goto exit;
   85|      0|    }
   86|     38|    if (!path_converter(args[0], &path)) {
  ------------------
  |  Branch (86:9): [True: 0, False: 38]
  ------------------
   87|      0|        goto exit;
   88|      0|    }
   89|     38|    if (!noptargs) {
  ------------------
  |  Branch (89:9): [True: 38, False: 0]
  ------------------
   90|     38|        goto skip_optional_kwonly;
   91|     38|    }
   92|      0|    if (args[1]) {
  ------------------
  |  Branch (92:9): [True: 0, False: 0]
  ------------------
   93|      0|        if (!FSTATAT_DIR_FD_CONVERTER(args[1], &dir_fd)) {
  ------------------
  |  | 3009|      0|    #define FSTATAT_DIR_FD_CONVERTER dir_fd_converter
  ------------------
  |  Branch (93:13): [True: 0, False: 0]
  ------------------
   94|      0|            goto exit;
   95|      0|        }
   96|      0|        if (!--noptargs) {
  ------------------
  |  Branch (96:13): [True: 0, False: 0]
  ------------------
   97|      0|            goto skip_optional_kwonly;
   98|      0|        }
   99|      0|    }
  100|      0|    follow_symlinks = PyObject_IsTrue(args[2]);
  101|      0|    if (follow_symlinks < 0) {
  ------------------
  |  Branch (101:9): [True: 0, False: 0]
  ------------------
  102|      0|        goto exit;
  103|      0|    }
  104|     38|skip_optional_kwonly:
  105|     38|    return_value = os_stat_impl(module, &path, dir_fd, follow_symlinks);
  106|       |
  107|     38|exit:
  108|       |    /* Cleanup for path */
  109|     38|    path_cleanup(&path);
  110|       |
  111|     38|    return return_value;
  112|     38|}
posixmodule.c:os_listdir:
 1772|      8|{
 1773|      8|    PyObject *return_value = NULL;
 1774|      8|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 1775|       |
 1776|      8|    #define NUM_KEYWORDS 1
 1777|      8|    static struct {
 1778|      8|        PyGC_Head _this_is_not_used;
 1779|      8|        PyObject_VAR_HEAD
 1780|      8|        Py_hash_t ob_hash;
 1781|      8|        PyObject *ob_item[NUM_KEYWORDS];
 1782|      8|    } _kwtuple = {
 1783|      8|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      8|    {                                     \
  |  |   98|      8|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      8|    {                               \
  |  |  |  |   91|      8|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      8|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      8|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      8|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      8|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      8|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      8|        (type)                      \
  |  |  |  |   93|      8|    },
  |  |  ------------------
  |  |   99|      8|        (size)                            \
  |  |  100|      8|    },
  ------------------
 1784|      8|        .ob_hash = -1,
 1785|      8|        .ob_item = { &_Py_ID(path), },
  ------------------
  |  |  917|      8|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      8|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      8|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1786|      8|    };
 1787|      8|    #undef NUM_KEYWORDS
 1788|      8|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
 1789|       |
 1790|       |    #else  // !Py_BUILD_CORE
 1791|       |    #  define KWTUPLE NULL
 1792|       |    #endif  // !Py_BUILD_CORE
 1793|       |
 1794|      8|    static const char * const _keywords[] = {"path", NULL};
 1795|      8|    static _PyArg_Parser _parser = {
 1796|      8|        .keywords = _keywords,
 1797|      8|        .fname = "listdir",
 1798|      8|        .kwtuple = KWTUPLE,
  ------------------
  |  | 1788|      8|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
 1799|      8|    };
 1800|      8|    #undef KWTUPLE
 1801|      8|    PyObject *argsbuf[1];
 1802|      8|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1802:36): [True: 0, False: 8]
  ------------------
 1803|      8|    path_t path = PATH_T_INITIALIZE_P("listdir", "path", 1, 0, 0, PATH_HAVE_FDOPENDIR);
  ------------------
  |  | 1365|      8|    PATH_T_INITIALIZE(function_name, argument_name, nullable, nonstrict, 0, \
  |  |  ------------------
  |  |  |  | 1355|      8|    {function_name, argument_name, nullable, nonstrict, make_wide, \
  |  |  |  | 1356|      8|     suppress_value_error, allow_fd, NULL, NULL, -1, false, 0, 0, NULL, NULL}
  |  |  ------------------
  |  | 1366|      8|                      suppress_value_error, allow_fd)
  ------------------
 1804|       |
 1805|      8|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      8|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 8, False: 0]
  |  |  ------------------
  |  |   89|      8|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 8, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 8]
  |  |  |  Branch (89:43): [True: 8, False: 0]
  |  |  |  Branch (89:67): [True: 8, False: 0]
  |  |  ------------------
  |  |   90|      8|      (args) : \
  |  |   91|      8|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
 1806|      8|            /*minpos*/ 0, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
 1807|      8|    if (!args) {
  ------------------
  |  Branch (1807:9): [True: 0, False: 8]
  ------------------
 1808|      0|        goto exit;
 1809|      0|    }
 1810|      8|    if (!noptargs) {
  ------------------
  |  Branch (1810:9): [True: 0, False: 8]
  ------------------
 1811|      0|        goto skip_optional_pos;
 1812|      0|    }
 1813|      8|    if (!path_converter(args[0], &path)) {
  ------------------
  |  Branch (1813:9): [True: 0, False: 8]
  ------------------
 1814|      0|        goto exit;
 1815|      0|    }
 1816|      8|skip_optional_pos:
 1817|      8|    return_value = os_listdir_impl(module, &path);
 1818|       |
 1819|      8|exit:
 1820|       |    /* Cleanup for path */
 1821|      8|    path_cleanup(&path);
 1822|       |
 1823|      8|    return return_value;
 1824|      8|}
posixmodule.c:os_getegid:
 5205|      2|{
 5206|      2|    return os_getegid_impl(module);
 5207|      2|}
posixmodule.c:os_geteuid:
 5227|      2|{
 5228|      2|    return os_geteuid_impl(module);
 5229|      2|}
posixmodule.c:os_getgid:
 5249|      2|{
 5250|      2|    return os_getgid_impl(module);
 5251|      2|}
posixmodule.c:os_getuid:
 5669|      2|{
 5670|      2|    return os_getuid_impl(module);
 5671|      2|}
posixmodule.c:os__path_normpath:
 2657|     10|{
 2658|     10|    PyObject *return_value = NULL;
 2659|     10|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 2660|       |
 2661|     10|    #define NUM_KEYWORDS 1
 2662|     10|    static struct {
 2663|     10|        PyGC_Head _this_is_not_used;
 2664|     10|        PyObject_VAR_HEAD
 2665|     10|        Py_hash_t ob_hash;
 2666|     10|        PyObject *ob_item[NUM_KEYWORDS];
 2667|     10|    } _kwtuple = {
 2668|     10|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     10|    {                                     \
  |  |   98|     10|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     10|    {                               \
  |  |  |  |   91|     10|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     10|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     10|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     10|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     10|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     10|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     10|        (type)                      \
  |  |  |  |   93|     10|    },
  |  |  ------------------
  |  |   99|     10|        (size)                            \
  |  |  100|     10|    },
  ------------------
 2669|     10|        .ob_hash = -1,
 2670|     10|        .ob_item = { &_Py_ID(path), },
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2671|     10|    };
 2672|     10|    #undef NUM_KEYWORDS
 2673|     10|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
 2674|       |
 2675|       |    #else  // !Py_BUILD_CORE
 2676|       |    #  define KWTUPLE NULL
 2677|       |    #endif  // !Py_BUILD_CORE
 2678|       |
 2679|     10|    static const char * const _keywords[] = {"path", NULL};
 2680|     10|    static _PyArg_Parser _parser = {
 2681|     10|        .keywords = _keywords,
 2682|     10|        .fname = "_path_normpath",
 2683|     10|        .kwtuple = KWTUPLE,
  ------------------
  |  | 2673|     10|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
 2684|     10|    };
 2685|     10|    #undef KWTUPLE
 2686|     10|    PyObject *argsbuf[1];
 2687|     10|    path_t path = PATH_T_INITIALIZE("_path_normpath", "path", 0, 1, 1, 0, 0);
  ------------------
  |  | 1355|     10|    {function_name, argument_name, nullable, nonstrict, make_wide, \
  |  | 1356|     10|     suppress_value_error, allow_fd, NULL, NULL, -1, false, 0, 0, NULL, NULL}
  ------------------
 2688|       |
 2689|     10|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|     10|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 10, False: 0]
  |  |  ------------------
  |  |   89|     10|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 10, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 10]
  |  |  |  Branch (89:43): [True: 10, False: 0]
  |  |  |  Branch (89:67): [True: 10, False: 0]
  |  |  ------------------
  |  |   90|     10|      (args) : \
  |  |   91|     10|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
 2690|     10|            /*minpos*/ 1, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
 2691|     10|    if (!args) {
  ------------------
  |  Branch (2691:9): [True: 0, False: 10]
  ------------------
 2692|      0|        goto exit;
 2693|      0|    }
 2694|     10|    if (!path_converter(args[0], &path)) {
  ------------------
  |  Branch (2694:9): [True: 0, False: 10]
  ------------------
 2695|      0|        goto exit;
 2696|      0|    }
 2697|     10|    return_value = os__path_normpath_impl(module, &path);
 2698|       |
 2699|     10|exit:
 2700|       |    /* Cleanup for path */
 2701|     10|    path_cleanup(&path);
 2702|       |
 2703|     10|    return return_value;
 2704|     10|}
posixmodule.c:os_fspath:
12505|     80|{
12506|     80|    PyObject *return_value = NULL;
12507|     80|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
12508|       |
12509|     80|    #define NUM_KEYWORDS 1
12510|     80|    static struct {
12511|     80|        PyGC_Head _this_is_not_used;
12512|     80|        PyObject_VAR_HEAD
12513|     80|        Py_hash_t ob_hash;
12514|     80|        PyObject *ob_item[NUM_KEYWORDS];
12515|     80|    } _kwtuple = {
12516|     80|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     80|    {                                     \
  |  |   98|     80|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     80|    {                               \
  |  |  |  |   91|     80|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     80|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     80|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     80|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     80|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     80|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     80|        (type)                      \
  |  |  |  |   93|     80|    },
  |  |  ------------------
  |  |   99|     80|        (size)                            \
  |  |  100|     80|    },
  ------------------
12517|     80|        .ob_hash = -1,
12518|     80|        .ob_item = { &_Py_ID(path), },
  ------------------
  |  |  917|     80|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     80|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     80|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12519|     80|    };
12520|     80|    #undef NUM_KEYWORDS
12521|     80|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
12522|       |
12523|       |    #else  // !Py_BUILD_CORE
12524|       |    #  define KWTUPLE NULL
12525|       |    #endif  // !Py_BUILD_CORE
12526|       |
12527|     80|    static const char * const _keywords[] = {"path", NULL};
12528|     80|    static _PyArg_Parser _parser = {
12529|     80|        .keywords = _keywords,
12530|     80|        .fname = "fspath",
12531|     80|        .kwtuple = KWTUPLE,
  ------------------
  |  |12521|     80|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
12532|     80|    };
12533|     80|    #undef KWTUPLE
12534|     80|    PyObject *argsbuf[1];
12535|     80|    PyObject *path;
12536|       |
12537|     80|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|     80|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 80, False: 0]
  |  |  ------------------
  |  |   89|     80|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 80, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 80]
  |  |  |  Branch (89:43): [True: 80, False: 0]
  |  |  |  Branch (89:67): [True: 80, False: 0]
  |  |  ------------------
  |  |   90|     80|      (args) : \
  |  |   91|     80|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
12538|     80|            /*minpos*/ 1, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
12539|     80|    if (!args) {
  ------------------
  |  Branch (12539:9): [True: 0, False: 80]
  ------------------
12540|      0|        goto exit;
12541|      0|    }
12542|     80|    path = args[0];
12543|     80|    return_value = os_fspath_impl(module, path);
12544|       |
12545|     80|exit:
12546|     80|    return return_value;
12547|     80|}

PyInit_errno:
  986|      2|{
  987|      2|    return PyModuleDef_Init(&errnomodule);
  988|      2|}
errnomodule.c:errno_exec:
   90|      2|{
   91|      2|    PyObject *module_dict = PyModule_GetDict(module);  // Borrowed ref.
   92|      2|    if (module_dict == NULL) {
  ------------------
  |  Branch (92:9): [True: 0, False: 2]
  ------------------
   93|      0|        return -1;
   94|      0|    }
   95|      2|    PyObject *error_dict = PyDict_New();
   96|      2|    if (error_dict == NULL) {
  ------------------
  |  Branch (96:9): [True: 0, False: 2]
  ------------------
   97|      0|        return -1;
   98|      0|    }
   99|      2|    if (PyDict_SetItemString(module_dict, "errorcode", error_dict) < 0) {
  ------------------
  |  Branch (99:9): [True: 0, False: 2]
  ------------------
  100|      0|        Py_DECREF(error_dict);
  ------------------
  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  101|      0|        return -1;
  102|      0|    }
  103|       |
  104|       |/* Macro so I don't have to edit each and every line below... */
  105|      2|#define add_errcode(name, code, comment)                               \
  106|      2|    do {                                                               \
  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  108|      2|            Py_DECREF(error_dict);                                     \
  109|      2|            return -1;                                                 \
  110|      2|        }                                                              \
  111|      2|    } while (0);
  112|       |
  113|       |    /*
  114|       |     * The names and comments are borrowed from linux/include/errno.h,
  115|       |     * which should be pretty all-inclusive.  However, the Solaris specific
  116|       |     * names and comments are borrowed from sys/errno.h in Solaris.
  117|       |     * MacOSX specific names and comments are borrowed from sys/errno.h in
  118|       |     * MacOSX.
  119|       |     */
  120|       |
  121|      2|#ifdef ENODEV
  122|      2|    add_errcode("ENODEV", ENODEV, "No such device");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  123|      2|#endif
  124|      2|#ifdef ENOCSI
  125|      2|    add_errcode("ENOCSI", ENOCSI, "No CSI structure available");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  126|      2|#endif
  127|      2|#ifdef EHOSTUNREACH
  128|      2|    add_errcode("EHOSTUNREACH", EHOSTUNREACH, "No route to host");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  129|       |#else
  130|       |#ifdef WSAEHOSTUNREACH
  131|       |    add_errcode("EHOSTUNREACH", WSAEHOSTUNREACH, "No route to host");
  132|       |#endif
  133|       |#endif
  134|      2|#ifdef ENOMSG
  135|      2|    add_errcode("ENOMSG", ENOMSG, "No message of desired type");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  136|      2|#endif
  137|      2|#ifdef EUCLEAN
  138|      2|    add_errcode("EUCLEAN", EUCLEAN, "Structure needs cleaning");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  139|      2|#endif
  140|      2|#ifdef EL2NSYNC
  141|      2|    add_errcode("EL2NSYNC", EL2NSYNC, "Level 2 not synchronized");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  142|      2|#endif
  143|      2|#ifdef EL2HLT
  144|      2|    add_errcode("EL2HLT", EL2HLT, "Level 2 halted");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  145|      2|#endif
  146|      2|#ifdef ENODATA
  147|      2|    add_errcode("ENODATA", ENODATA, "No data available");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  148|      2|#endif
  149|      2|#ifdef ENOTBLK
  150|      2|    add_errcode("ENOTBLK", ENOTBLK, "Block device required");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  151|      2|#endif
  152|      2|#ifdef ENOSYS
  153|      2|    add_errcode("ENOSYS", ENOSYS, "Function not implemented");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  154|      2|#endif
  155|      2|#ifdef EPIPE
  156|      2|    add_errcode("EPIPE", EPIPE, "Broken pipe");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  157|      2|#endif
  158|      2|#ifdef EINVAL
  159|      2|    add_errcode("EINVAL", EINVAL, "Invalid argument");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  160|       |#else
  161|       |#ifdef WSAEINVAL
  162|       |    add_errcode("EINVAL", WSAEINVAL, "Invalid argument");
  163|       |#endif
  164|       |#endif
  165|      2|#ifdef EOVERFLOW
  166|      2|    add_errcode("EOVERFLOW", EOVERFLOW, "Value too large for defined data type");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  167|      2|#endif
  168|      2|#ifdef EADV
  169|      2|    add_errcode("EADV", EADV, "Advertise error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  170|      2|#endif
  171|      2|#ifdef EINTR
  172|      2|    add_errcode("EINTR", EINTR, "Interrupted system call");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  173|       |#else
  174|       |#ifdef WSAEINTR
  175|       |    add_errcode("EINTR", WSAEINTR, "Interrupted system call");
  176|       |#endif
  177|       |#endif
  178|      2|#ifdef EUSERS
  179|      2|    add_errcode("EUSERS", EUSERS, "Too many users");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  180|       |#else
  181|       |#ifdef WSAEUSERS
  182|       |    add_errcode("EUSERS", WSAEUSERS, "Too many users");
  183|       |#endif
  184|       |#endif
  185|      2|#ifdef ENOTEMPTY
  186|      2|    add_errcode("ENOTEMPTY", ENOTEMPTY, "Directory not empty");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  187|       |#else
  188|       |#ifdef WSAENOTEMPTY
  189|       |    add_errcode("ENOTEMPTY", WSAENOTEMPTY, "Directory not empty");
  190|       |#endif
  191|       |#endif
  192|      2|#ifdef ENOBUFS
  193|      2|    add_errcode("ENOBUFS", ENOBUFS, "No buffer space available");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  194|       |#else
  195|       |#ifdef WSAENOBUFS
  196|       |    add_errcode("ENOBUFS", WSAENOBUFS, "No buffer space available");
  197|       |#endif
  198|       |#endif
  199|      2|#ifdef EPROTO
  200|      2|    add_errcode("EPROTO", EPROTO, "Protocol error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  201|      2|#endif
  202|      2|#ifdef EREMOTE
  203|      2|    add_errcode("EREMOTE", EREMOTE, "Object is remote");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  204|       |#else
  205|       |#ifdef WSAEREMOTE
  206|       |    add_errcode("EREMOTE", WSAEREMOTE, "Object is remote");
  207|       |#endif
  208|       |#endif
  209|      2|#ifdef ENAVAIL
  210|      2|    add_errcode("ENAVAIL", ENAVAIL, "No XENIX semaphores available");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  211|      2|#endif
  212|      2|#ifdef ECHILD
  213|      2|    add_errcode("ECHILD", ECHILD, "No child processes");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  214|      2|#endif
  215|      2|#ifdef ELOOP
  216|      2|    add_errcode("ELOOP", ELOOP, "Too many symbolic links encountered");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  217|       |#else
  218|       |#ifdef WSAELOOP
  219|       |    add_errcode("ELOOP", WSAELOOP, "Too many symbolic links encountered");
  220|       |#endif
  221|       |#endif
  222|      2|#ifdef EXDEV
  223|      2|    add_errcode("EXDEV", EXDEV, "Cross-device link");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  224|      2|#endif
  225|      2|#ifdef E2BIG
  226|      2|    add_errcode("E2BIG", E2BIG, "Arg list too long");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  227|      2|#endif
  228|      2|#ifdef ESRCH
  229|      2|    add_errcode("ESRCH", ESRCH, "No such process");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  230|      2|#endif
  231|      2|#ifdef EMSGSIZE
  232|      2|    add_errcode("EMSGSIZE", EMSGSIZE, "Message too long");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  233|       |#else
  234|       |#ifdef WSAEMSGSIZE
  235|       |    add_errcode("EMSGSIZE", WSAEMSGSIZE, "Message too long");
  236|       |#endif
  237|       |#endif
  238|      2|#ifdef EAFNOSUPPORT
  239|      2|    add_errcode("EAFNOSUPPORT", EAFNOSUPPORT, "Address family not supported by protocol");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  240|       |#else
  241|       |#ifdef WSAEAFNOSUPPORT
  242|       |    add_errcode("EAFNOSUPPORT", WSAEAFNOSUPPORT, "Address family not supported by protocol");
  243|       |#endif
  244|       |#endif
  245|      2|#ifdef EBADR
  246|      2|    add_errcode("EBADR", EBADR, "Invalid request descriptor");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  247|      2|#endif
  248|      2|#ifdef EHOSTDOWN
  249|      2|    add_errcode("EHOSTDOWN", EHOSTDOWN, "Host is down");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  250|       |#else
  251|       |#ifdef WSAEHOSTDOWN
  252|       |    add_errcode("EHOSTDOWN", WSAEHOSTDOWN, "Host is down");
  253|       |#endif
  254|       |#endif
  255|      2|#ifdef EPFNOSUPPORT
  256|      2|    add_errcode("EPFNOSUPPORT", EPFNOSUPPORT, "Protocol family not supported");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  257|       |#else
  258|       |#ifdef WSAEPFNOSUPPORT
  259|       |    add_errcode("EPFNOSUPPORT", WSAEPFNOSUPPORT, "Protocol family not supported");
  260|       |#endif
  261|       |#endif
  262|      2|#ifdef ENOPROTOOPT
  263|      2|    add_errcode("ENOPROTOOPT", ENOPROTOOPT, "Protocol not available");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  264|       |#else
  265|       |#ifdef WSAENOPROTOOPT
  266|       |    add_errcode("ENOPROTOOPT", WSAENOPROTOOPT, "Protocol not available");
  267|       |#endif
  268|       |#endif
  269|      2|#ifdef EBUSY
  270|      2|    add_errcode("EBUSY", EBUSY, "Device or resource busy");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  271|      2|#endif
  272|      2|#ifdef EWOULDBLOCK
  273|      2|    add_errcode("EWOULDBLOCK", EWOULDBLOCK, "Operation would block");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  274|       |#else
  275|       |#ifdef WSAEWOULDBLOCK
  276|       |    add_errcode("EWOULDBLOCK", WSAEWOULDBLOCK, "Operation would block");
  277|       |#endif
  278|       |#endif
  279|      2|#ifdef EBADFD
  280|      2|    add_errcode("EBADFD", EBADFD, "File descriptor in bad state");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  281|      2|#endif
  282|      2|#ifdef EDOTDOT
  283|      2|    add_errcode("EDOTDOT", EDOTDOT, "RFS specific error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  284|      2|#endif
  285|      2|#ifdef EISCONN
  286|      2|    add_errcode("EISCONN", EISCONN, "Transport endpoint is already connected");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  287|       |#else
  288|       |#ifdef WSAEISCONN
  289|       |    add_errcode("EISCONN", WSAEISCONN, "Transport endpoint is already connected");
  290|       |#endif
  291|       |#endif
  292|      2|#ifdef ENOANO
  293|      2|    add_errcode("ENOANO", ENOANO, "No anode");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  294|      2|#endif
  295|       |#if defined(__wasi__) && !defined(ESHUTDOWN)
  296|       |    // WASI SDK 16 does not have ESHUTDOWN, shutdown results in EPIPE.
  297|       |    #define ESHUTDOWN EPIPE
  298|       |#endif
  299|      2|#ifdef ESHUTDOWN
  300|      2|    add_errcode("ESHUTDOWN", ESHUTDOWN, "Cannot send after transport endpoint shutdown");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  301|       |#else
  302|       |#ifdef WSAESHUTDOWN
  303|       |    add_errcode("ESHUTDOWN", WSAESHUTDOWN, "Cannot send after transport endpoint shutdown");
  304|       |#endif
  305|       |#endif
  306|      2|#ifdef ECHRNG
  307|      2|    add_errcode("ECHRNG", ECHRNG, "Channel number out of range");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  308|      2|#endif
  309|      2|#ifdef ELIBBAD
  310|      2|    add_errcode("ELIBBAD", ELIBBAD, "Accessing a corrupted shared library");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  311|      2|#endif
  312|      2|#ifdef ENONET
  313|      2|    add_errcode("ENONET", ENONET, "Machine is not on the network");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  314|      2|#endif
  315|      2|#ifdef EBADE
  316|      2|    add_errcode("EBADE", EBADE, "Invalid exchange");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  317|      2|#endif
  318|      2|#ifdef EBADF
  319|      2|    add_errcode("EBADF", EBADF, "Bad file number");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  320|       |#else
  321|       |#ifdef WSAEBADF
  322|       |    add_errcode("EBADF", WSAEBADF, "Bad file number");
  323|       |#endif
  324|       |#endif
  325|      2|#ifdef EMULTIHOP
  326|      2|    add_errcode("EMULTIHOP", EMULTIHOP, "Multihop attempted");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  327|      2|#endif
  328|      2|#ifdef EIO
  329|      2|    add_errcode("EIO", EIO, "I/O error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  330|      2|#endif
  331|      2|#ifdef EUNATCH
  332|      2|    add_errcode("EUNATCH", EUNATCH, "Protocol driver not attached");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  333|      2|#endif
  334|      2|#ifdef EPROTOTYPE
  335|      2|    add_errcode("EPROTOTYPE", EPROTOTYPE, "Protocol wrong type for socket");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  336|       |#else
  337|       |#ifdef WSAEPROTOTYPE
  338|       |    add_errcode("EPROTOTYPE", WSAEPROTOTYPE, "Protocol wrong type for socket");
  339|       |#endif
  340|       |#endif
  341|      2|#ifdef ENOSPC
  342|      2|    add_errcode("ENOSPC", ENOSPC, "No space left on device");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  343|      2|#endif
  344|      2|#ifdef ENOEXEC
  345|      2|    add_errcode("ENOEXEC", ENOEXEC, "Exec format error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  346|      2|#endif
  347|      2|#ifdef EALREADY
  348|      2|    add_errcode("EALREADY", EALREADY, "Operation already in progress");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  349|       |#else
  350|       |#ifdef WSAEALREADY
  351|       |    add_errcode("EALREADY", WSAEALREADY, "Operation already in progress");
  352|       |#endif
  353|       |#endif
  354|      2|#ifdef ENETDOWN
  355|      2|    add_errcode("ENETDOWN", ENETDOWN, "Network is down");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  356|       |#else
  357|       |#ifdef WSAENETDOWN
  358|       |    add_errcode("ENETDOWN", WSAENETDOWN, "Network is down");
  359|       |#endif
  360|       |#endif
  361|      2|#ifdef ENOTNAM
  362|      2|    add_errcode("ENOTNAM", ENOTNAM, "Not a XENIX named type file");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  363|      2|#endif
  364|      2|#ifdef EACCES
  365|      2|    add_errcode("EACCES", EACCES, "Permission denied");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  366|       |#else
  367|       |#ifdef WSAEACCES
  368|       |    add_errcode("EACCES", WSAEACCES, "Permission denied");
  369|       |#endif
  370|       |#endif
  371|      2|#ifdef ELNRNG
  372|      2|    add_errcode("ELNRNG", ELNRNG, "Link number out of range");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  373|      2|#endif
  374|      2|#ifdef EILSEQ
  375|      2|    add_errcode("EILSEQ", EILSEQ, "Illegal byte sequence");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  376|      2|#endif
  377|      2|#ifdef ENOTDIR
  378|      2|    add_errcode("ENOTDIR", ENOTDIR, "Not a directory");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  379|      2|#endif
  380|      2|#ifdef ENOTUNIQ
  381|      2|    add_errcode("ENOTUNIQ", ENOTUNIQ, "Name not unique on network");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  382|      2|#endif
  383|      2|#ifdef EPERM
  384|      2|    add_errcode("EPERM", EPERM, "Operation not permitted");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  385|      2|#endif
  386|      2|#ifdef EDOM
  387|      2|    add_errcode("EDOM", EDOM, "Math argument out of domain of func");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  388|      2|#endif
  389|      2|#ifdef EXFULL
  390|      2|    add_errcode("EXFULL", EXFULL, "Exchange full");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  391|      2|#endif
  392|      2|#ifdef ECONNREFUSED
  393|      2|    add_errcode("ECONNREFUSED", ECONNREFUSED, "Connection refused");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  394|       |#else
  395|       |#ifdef WSAECONNREFUSED
  396|       |    add_errcode("ECONNREFUSED", WSAECONNREFUSED, "Connection refused");
  397|       |#endif
  398|       |#endif
  399|      2|#ifdef EISDIR
  400|      2|    add_errcode("EISDIR", EISDIR, "Is a directory");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  401|      2|#endif
  402|      2|#ifdef EPROTONOSUPPORT
  403|      2|    add_errcode("EPROTONOSUPPORT", EPROTONOSUPPORT, "Protocol not supported");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  404|       |#else
  405|       |#ifdef WSAEPROTONOSUPPORT
  406|       |    add_errcode("EPROTONOSUPPORT", WSAEPROTONOSUPPORT, "Protocol not supported");
  407|       |#endif
  408|       |#endif
  409|      2|#ifdef EROFS
  410|      2|    add_errcode("EROFS", EROFS, "Read-only file system");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  411|      2|#endif
  412|      2|#ifdef EADDRNOTAVAIL
  413|      2|    add_errcode("EADDRNOTAVAIL", EADDRNOTAVAIL, "Cannot assign requested address");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  414|       |#else
  415|       |#ifdef WSAEADDRNOTAVAIL
  416|       |    add_errcode("EADDRNOTAVAIL", WSAEADDRNOTAVAIL, "Cannot assign requested address");
  417|       |#endif
  418|       |#endif
  419|      2|#ifdef EIDRM
  420|      2|    add_errcode("EIDRM", EIDRM, "Identifier removed");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  421|      2|#endif
  422|      2|#ifdef ECOMM
  423|      2|    add_errcode("ECOMM", ECOMM, "Communication error on send");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  424|      2|#endif
  425|      2|#ifdef ESRMNT
  426|      2|    add_errcode("ESRMNT", ESRMNT, "Srmount error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  427|      2|#endif
  428|      2|#ifdef EREMOTEIO
  429|      2|    add_errcode("EREMOTEIO", EREMOTEIO, "Remote I/O error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  430|      2|#endif
  431|      2|#ifdef EL3RST
  432|      2|    add_errcode("EL3RST", EL3RST, "Level 3 reset");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  433|      2|#endif
  434|      2|#ifdef EBADMSG
  435|      2|    add_errcode("EBADMSG", EBADMSG, "Not a data message");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  436|      2|#endif
  437|      2|#ifdef ENFILE
  438|      2|    add_errcode("ENFILE", ENFILE, "File table overflow");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  439|      2|#endif
  440|      2|#ifdef ELIBMAX
  441|      2|    add_errcode("ELIBMAX", ELIBMAX, "Attempting to link in too many shared libraries");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  442|      2|#endif
  443|      2|#ifdef ESPIPE
  444|      2|    add_errcode("ESPIPE", ESPIPE, "Illegal seek");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  445|      2|#endif
  446|      2|#ifdef ENOLINK
  447|      2|    add_errcode("ENOLINK", ENOLINK, "Link has been severed");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  448|      2|#endif
  449|      2|#ifdef ENETRESET
  450|      2|    add_errcode("ENETRESET", ENETRESET, "Network dropped connection because of reset");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  451|       |#else
  452|       |#ifdef WSAENETRESET
  453|       |    add_errcode("ENETRESET", WSAENETRESET, "Network dropped connection because of reset");
  454|       |#endif
  455|       |#endif
  456|      2|#ifdef ETIMEDOUT
  457|      2|    add_errcode("ETIMEDOUT", ETIMEDOUT, "Connection timed out");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  458|       |#else
  459|       |#ifdef WSAETIMEDOUT
  460|       |    add_errcode("ETIMEDOUT", WSAETIMEDOUT, "Connection timed out");
  461|       |#endif
  462|       |#endif
  463|      2|#ifdef ENOENT
  464|      2|    add_errcode("ENOENT", ENOENT, "No such file or directory");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  465|      2|#endif
  466|      2|#ifdef EEXIST
  467|      2|    add_errcode("EEXIST", EEXIST, "File exists");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  468|      2|#endif
  469|      2|#ifdef EDQUOT
  470|      2|    add_errcode("EDQUOT", EDQUOT, "Quota exceeded");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  471|       |#else
  472|       |#ifdef WSAEDQUOT
  473|       |    add_errcode("EDQUOT", WSAEDQUOT, "Quota exceeded");
  474|       |#endif
  475|       |#endif
  476|      2|#ifdef ENOSTR
  477|      2|    add_errcode("ENOSTR", ENOSTR, "Device not a stream");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  478|      2|#endif
  479|      2|#ifdef EBADSLT
  480|      2|    add_errcode("EBADSLT", EBADSLT, "Invalid slot");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  481|      2|#endif
  482|      2|#ifdef EBADRQC
  483|      2|    add_errcode("EBADRQC", EBADRQC, "Invalid request code");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  484|      2|#endif
  485|      2|#ifdef ELIBACC
  486|      2|    add_errcode("ELIBACC", ELIBACC, "Can not access a needed shared library");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  487|      2|#endif
  488|      2|#ifdef EFAULT
  489|      2|    add_errcode("EFAULT", EFAULT, "Bad address");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  490|       |#else
  491|       |#ifdef WSAEFAULT
  492|       |    add_errcode("EFAULT", WSAEFAULT, "Bad address");
  493|       |#endif
  494|       |#endif
  495|      2|#ifdef EFBIG
  496|      2|    add_errcode("EFBIG", EFBIG, "File too large");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  497|      2|#endif
  498|      2|#ifdef EDEADLK
  499|      2|    add_errcode("EDEADLK", EDEADLK, "Resource deadlock would occur");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  500|      2|#endif
  501|      2|#ifdef ENOTCONN
  502|      2|    add_errcode("ENOTCONN", ENOTCONN, "Transport endpoint is not connected");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  503|       |#else
  504|       |#ifdef WSAENOTCONN
  505|       |    add_errcode("ENOTCONN", WSAENOTCONN, "Transport endpoint is not connected");
  506|       |#endif
  507|       |#endif
  508|      2|#ifdef EDESTADDRREQ
  509|      2|    add_errcode("EDESTADDRREQ", EDESTADDRREQ, "Destination address required");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  510|       |#else
  511|       |#ifdef WSAEDESTADDRREQ
  512|       |    add_errcode("EDESTADDRREQ", WSAEDESTADDRREQ, "Destination address required");
  513|       |#endif
  514|       |#endif
  515|      2|#ifdef ELIBSCN
  516|      2|    add_errcode("ELIBSCN", ELIBSCN, ".lib section in a.out corrupted");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  517|      2|#endif
  518|      2|#ifdef ENOLCK
  519|      2|    add_errcode("ENOLCK", ENOLCK, "No record locks available");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  520|      2|#endif
  521|      2|#ifdef EISNAM
  522|      2|    add_errcode("EISNAM", EISNAM, "Is a named type file");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  523|      2|#endif
  524|      2|#ifdef ECONNABORTED
  525|      2|    add_errcode("ECONNABORTED", ECONNABORTED, "Software caused connection abort");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  526|       |#else
  527|       |#ifdef WSAECONNABORTED
  528|       |    add_errcode("ECONNABORTED", WSAECONNABORTED, "Software caused connection abort");
  529|       |#endif
  530|       |#endif
  531|      2|#ifdef ENETUNREACH
  532|      2|    add_errcode("ENETUNREACH", ENETUNREACH, "Network is unreachable");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  533|       |#else
  534|       |#ifdef WSAENETUNREACH
  535|       |    add_errcode("ENETUNREACH", WSAENETUNREACH, "Network is unreachable");
  536|       |#endif
  537|       |#endif
  538|      2|#ifdef ESTALE
  539|      2|    add_errcode("ESTALE", ESTALE, "Stale NFS file handle");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  540|       |#else
  541|       |#ifdef WSAESTALE
  542|       |    add_errcode("ESTALE", WSAESTALE, "Stale NFS file handle");
  543|       |#endif
  544|       |#endif
  545|      2|#ifdef ENOSR
  546|      2|    add_errcode("ENOSR", ENOSR, "Out of streams resources");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  547|      2|#endif
  548|      2|#ifdef ENOMEM
  549|      2|    add_errcode("ENOMEM", ENOMEM, "Out of memory");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  550|      2|#endif
  551|      2|#ifdef ENOTSOCK
  552|      2|    add_errcode("ENOTSOCK", ENOTSOCK, "Socket operation on non-socket");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  553|       |#else
  554|       |#ifdef WSAENOTSOCK
  555|       |    add_errcode("ENOTSOCK", WSAENOTSOCK, "Socket operation on non-socket");
  556|       |#endif
  557|       |#endif
  558|      2|#ifdef ESTRPIPE
  559|      2|    add_errcode("ESTRPIPE", ESTRPIPE, "Streams pipe error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  560|      2|#endif
  561|      2|#ifdef EMLINK
  562|      2|    add_errcode("EMLINK", EMLINK, "Too many links");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  563|      2|#endif
  564|      2|#ifdef ERANGE
  565|      2|    add_errcode("ERANGE", ERANGE, "Math result not representable");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  566|      2|#endif
  567|      2|#ifdef ELIBEXEC
  568|      2|    add_errcode("ELIBEXEC", ELIBEXEC, "Cannot exec a shared library directly");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  569|      2|#endif
  570|      2|#ifdef EL3HLT
  571|      2|    add_errcode("EL3HLT", EL3HLT, "Level 3 halted");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  572|      2|#endif
  573|      2|#ifdef ECONNRESET
  574|      2|    add_errcode("ECONNRESET", ECONNRESET, "Connection reset by peer");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  575|       |#else
  576|       |#ifdef WSAECONNRESET
  577|       |    add_errcode("ECONNRESET", WSAECONNRESET, "Connection reset by peer");
  578|       |#endif
  579|       |#endif
  580|      2|#ifdef EADDRINUSE
  581|      2|    add_errcode("EADDRINUSE", EADDRINUSE, "Address already in use");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  582|       |#else
  583|       |#ifdef WSAEADDRINUSE
  584|       |    add_errcode("EADDRINUSE", WSAEADDRINUSE, "Address already in use");
  585|       |#endif
  586|       |#endif
  587|      2|#ifdef EOPNOTSUPP
  588|      2|    add_errcode("EOPNOTSUPP", EOPNOTSUPP, "Operation not supported on transport endpoint");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  589|       |#else
  590|       |#ifdef WSAEOPNOTSUPP
  591|       |    add_errcode("EOPNOTSUPP", WSAEOPNOTSUPP, "Operation not supported on transport endpoint");
  592|       |#endif
  593|       |#endif
  594|      2|#ifdef EREMCHG
  595|      2|    add_errcode("EREMCHG", EREMCHG, "Remote address changed");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  596|      2|#endif
  597|      2|#ifdef EAGAIN
  598|      2|    add_errcode("EAGAIN", EAGAIN, "Try again");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  599|      2|#endif
  600|      2|#ifdef ENAMETOOLONG
  601|      2|    add_errcode("ENAMETOOLONG", ENAMETOOLONG, "File name too long");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  602|       |#else
  603|       |#ifdef WSAENAMETOOLONG
  604|       |    add_errcode("ENAMETOOLONG", WSAENAMETOOLONG, "File name too long");
  605|       |#endif
  606|       |#endif
  607|      2|#ifdef ENOTTY
  608|      2|    add_errcode("ENOTTY", ENOTTY, "Not a typewriter");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  609|      2|#endif
  610|      2|#ifdef ERESTART
  611|      2|    add_errcode("ERESTART", ERESTART, "Interrupted system call should be restarted");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  612|      2|#endif
  613|      2|#ifdef ESOCKTNOSUPPORT
  614|      2|    add_errcode("ESOCKTNOSUPPORT", ESOCKTNOSUPPORT, "Socket type not supported");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  615|       |#else
  616|       |#ifdef WSAESOCKTNOSUPPORT
  617|       |    add_errcode("ESOCKTNOSUPPORT", WSAESOCKTNOSUPPORT, "Socket type not supported");
  618|       |#endif
  619|       |#endif
  620|      2|#ifdef ETIME
  621|      2|    add_errcode("ETIME", ETIME, "Timer expired");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  622|      2|#endif
  623|      2|#ifdef EBFONT
  624|      2|    add_errcode("EBFONT", EBFONT, "Bad font file format");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  625|      2|#endif
  626|      2|#ifdef EDEADLOCK
  627|      2|    add_errcode("EDEADLOCK", EDEADLOCK, "Error EDEADLOCK");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  628|      2|#endif
  629|      2|#ifdef ETOOMANYREFS
  630|      2|    add_errcode("ETOOMANYREFS", ETOOMANYREFS, "Too many references: cannot splice");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  631|       |#else
  632|       |#ifdef WSAETOOMANYREFS
  633|       |    add_errcode("ETOOMANYREFS", WSAETOOMANYREFS, "Too many references: cannot splice");
  634|       |#endif
  635|       |#endif
  636|      2|#ifdef EMFILE
  637|      2|    add_errcode("EMFILE", EMFILE, "Too many open files");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  638|       |#else
  639|       |#ifdef WSAEMFILE
  640|       |    add_errcode("EMFILE", WSAEMFILE, "Too many open files");
  641|       |#endif
  642|       |#endif
  643|      2|#ifdef ETXTBSY
  644|      2|    add_errcode("ETXTBSY", ETXTBSY, "Text file busy");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  645|      2|#endif
  646|      2|#ifdef EINPROGRESS
  647|      2|    add_errcode("EINPROGRESS", EINPROGRESS, "Operation now in progress");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  648|       |#else
  649|       |#ifdef WSAEINPROGRESS
  650|       |    add_errcode("EINPROGRESS", WSAEINPROGRESS, "Operation now in progress");
  651|       |#endif
  652|       |#endif
  653|      2|#ifdef ENXIO
  654|      2|    add_errcode("ENXIO", ENXIO, "No such device or address");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  655|      2|#endif
  656|      2|#ifdef ENOPKG
  657|      2|    add_errcode("ENOPKG", ENOPKG, "Package not installed");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  658|      2|#endif
  659|       |#ifdef WSASY
  660|       |    add_errcode("WSASY", WSASY, "Error WSASY");
  661|       |#endif
  662|       |#ifdef WSAEHOSTDOWN
  663|       |    add_errcode("WSAEHOSTDOWN", WSAEHOSTDOWN, "Host is down");
  664|       |#endif
  665|       |#ifdef WSAENETDOWN
  666|       |    add_errcode("WSAENETDOWN", WSAENETDOWN, "Network is down");
  667|       |#endif
  668|       |#ifdef WSAENOTSOCK
  669|       |    add_errcode("WSAENOTSOCK", WSAENOTSOCK, "Socket operation on non-socket");
  670|       |#endif
  671|       |#ifdef WSAEHOSTUNREACH
  672|       |    add_errcode("WSAEHOSTUNREACH", WSAEHOSTUNREACH, "No route to host");
  673|       |#endif
  674|       |#ifdef WSAELOOP
  675|       |    add_errcode("WSAELOOP", WSAELOOP, "Too many symbolic links encountered");
  676|       |#endif
  677|       |#ifdef WSAEMFILE
  678|       |    add_errcode("WSAEMFILE", WSAEMFILE, "Too many open files");
  679|       |#endif
  680|       |#ifdef WSAESTALE
  681|       |    add_errcode("WSAESTALE", WSAESTALE, "Stale NFS file handle");
  682|       |#endif
  683|       |#ifdef WSAVERNOTSUPPORTED
  684|       |    add_errcode("WSAVERNOTSUPPORTED", WSAVERNOTSUPPORTED, "Error WSAVERNOTSUPPORTED");
  685|       |#endif
  686|       |#ifdef WSAENETUNREACH
  687|       |    add_errcode("WSAENETUNREACH", WSAENETUNREACH, "Network is unreachable");
  688|       |#endif
  689|       |#ifdef WSAEPROCLIM
  690|       |    add_errcode("WSAEPROCLIM", WSAEPROCLIM, "Error WSAEPROCLIM");
  691|       |#endif
  692|       |#ifdef WSAEFAULT
  693|       |    add_errcode("WSAEFAULT", WSAEFAULT, "Bad address");
  694|       |#endif
  695|       |#ifdef WSANOTINITIALISED
  696|       |    add_errcode("WSANOTINITIALISED", WSANOTINITIALISED, "Error WSANOTINITIALISED");
  697|       |#endif
  698|       |#ifdef WSAEUSERS
  699|       |    add_errcode("WSAEUSERS", WSAEUSERS, "Too many users");
  700|       |#endif
  701|       |#ifdef WSAMAKEASYNCREPL
  702|       |    add_errcode("WSAMAKEASYNCREPL", WSAMAKEASYNCREPL, "Error WSAMAKEASYNCREPL");
  703|       |#endif
  704|       |#ifdef WSAENOPROTOOPT
  705|       |    add_errcode("WSAENOPROTOOPT", WSAENOPROTOOPT, "Protocol not available");
  706|       |#endif
  707|       |#ifdef WSAECONNABORTED
  708|       |    add_errcode("WSAECONNABORTED", WSAECONNABORTED, "Software caused connection abort");
  709|       |#endif
  710|       |#ifdef WSAENAMETOOLONG
  711|       |    add_errcode("WSAENAMETOOLONG", WSAENAMETOOLONG, "File name too long");
  712|       |#endif
  713|       |#ifdef WSAENOTEMPTY
  714|       |    add_errcode("WSAENOTEMPTY", WSAENOTEMPTY, "Directory not empty");
  715|       |#endif
  716|       |#ifdef WSAESHUTDOWN
  717|       |    add_errcode("WSAESHUTDOWN", WSAESHUTDOWN, "Cannot send after transport endpoint shutdown");
  718|       |#endif
  719|       |#ifdef WSAEAFNOSUPPORT
  720|       |    add_errcode("WSAEAFNOSUPPORT", WSAEAFNOSUPPORT, "Address family not supported by protocol");
  721|       |#endif
  722|       |#ifdef WSAETOOMANYREFS
  723|       |    add_errcode("WSAETOOMANYREFS", WSAETOOMANYREFS, "Too many references: cannot splice");
  724|       |#endif
  725|       |#ifdef WSAEACCES
  726|       |    add_errcode("WSAEACCES", WSAEACCES, "Permission denied");
  727|       |#endif
  728|       |#ifdef WSATR
  729|       |    add_errcode("WSATR", WSATR, "Error WSATR");
  730|       |#endif
  731|       |#ifdef WSABASEERR
  732|       |    add_errcode("WSABASEERR", WSABASEERR, "Error WSABASEERR");
  733|       |#endif
  734|       |#ifdef WSADESCRIPTIO
  735|       |    add_errcode("WSADESCRIPTIO", WSADESCRIPTIO, "Error WSADESCRIPTIO");
  736|       |#endif
  737|       |#ifdef WSAEMSGSIZE
  738|       |    add_errcode("WSAEMSGSIZE", WSAEMSGSIZE, "Message too long");
  739|       |#endif
  740|       |#ifdef WSAEBADF
  741|       |    add_errcode("WSAEBADF", WSAEBADF, "Bad file number");
  742|       |#endif
  743|       |#ifdef WSAECONNRESET
  744|       |    add_errcode("WSAECONNRESET", WSAECONNRESET, "Connection reset by peer");
  745|       |#endif
  746|       |#ifdef WSAGETSELECTERRO
  747|       |    add_errcode("WSAGETSELECTERRO", WSAGETSELECTERRO, "Error WSAGETSELECTERRO");
  748|       |#endif
  749|       |#ifdef WSAETIMEDOUT
  750|       |    add_errcode("WSAETIMEDOUT", WSAETIMEDOUT, "Connection timed out");
  751|       |#endif
  752|       |#ifdef WSAENOBUFS
  753|       |    add_errcode("WSAENOBUFS", WSAENOBUFS, "No buffer space available");
  754|       |#endif
  755|       |#ifdef WSAEDISCON
  756|       |    add_errcode("WSAEDISCON", WSAEDISCON, "Error WSAEDISCON");
  757|       |#endif
  758|       |#ifdef WSAEINTR
  759|       |    add_errcode("WSAEINTR", WSAEINTR, "Interrupted system call");
  760|       |#endif
  761|       |#ifdef WSAEPROTOTYPE
  762|       |    add_errcode("WSAEPROTOTYPE", WSAEPROTOTYPE, "Protocol wrong type for socket");
  763|       |#endif
  764|       |#ifdef WSAHOS
  765|       |    add_errcode("WSAHOS", WSAHOS, "Error WSAHOS");
  766|       |#endif
  767|       |#ifdef WSAEADDRINUSE
  768|       |    add_errcode("WSAEADDRINUSE", WSAEADDRINUSE, "Address already in use");
  769|       |#endif
  770|       |#ifdef WSAEADDRNOTAVAIL
  771|       |    add_errcode("WSAEADDRNOTAVAIL", WSAEADDRNOTAVAIL, "Cannot assign requested address");
  772|       |#endif
  773|       |#ifdef WSAEALREADY
  774|       |    add_errcode("WSAEALREADY", WSAEALREADY, "Operation already in progress");
  775|       |#endif
  776|       |#ifdef WSAEPROTONOSUPPORT
  777|       |    add_errcode("WSAEPROTONOSUPPORT", WSAEPROTONOSUPPORT, "Protocol not supported");
  778|       |#endif
  779|       |#ifdef WSASYSNOTREADY
  780|       |    add_errcode("WSASYSNOTREADY", WSASYSNOTREADY, "Error WSASYSNOTREADY");
  781|       |#endif
  782|       |#ifdef WSAEWOULDBLOCK
  783|       |    add_errcode("WSAEWOULDBLOCK", WSAEWOULDBLOCK, "Operation would block");
  784|       |#endif
  785|       |#ifdef WSAEPFNOSUPPORT
  786|       |    add_errcode("WSAEPFNOSUPPORT", WSAEPFNOSUPPORT, "Protocol family not supported");
  787|       |#endif
  788|       |#ifdef WSAEOPNOTSUPP
  789|       |    add_errcode("WSAEOPNOTSUPP", WSAEOPNOTSUPP, "Operation not supported on transport endpoint");
  790|       |#endif
  791|       |#ifdef WSAEISCONN
  792|       |    add_errcode("WSAEISCONN", WSAEISCONN, "Transport endpoint is already connected");
  793|       |#endif
  794|       |#ifdef WSAEDQUOT
  795|       |    add_errcode("WSAEDQUOT", WSAEDQUOT, "Quota exceeded");
  796|       |#endif
  797|       |#ifdef WSAENOTCONN
  798|       |    add_errcode("WSAENOTCONN", WSAENOTCONN, "Transport endpoint is not connected");
  799|       |#endif
  800|       |#ifdef WSAEREMOTE
  801|       |    add_errcode("WSAEREMOTE", WSAEREMOTE, "Object is remote");
  802|       |#endif
  803|       |#ifdef WSAEINVAL
  804|       |    add_errcode("WSAEINVAL", WSAEINVAL, "Invalid argument");
  805|       |#endif
  806|       |#ifdef WSAEINPROGRESS
  807|       |    add_errcode("WSAEINPROGRESS", WSAEINPROGRESS, "Operation now in progress");
  808|       |#endif
  809|       |#ifdef WSAGETSELECTEVEN
  810|       |    add_errcode("WSAGETSELECTEVEN", WSAGETSELECTEVEN, "Error WSAGETSELECTEVEN");
  811|       |#endif
  812|       |#ifdef WSAESOCKTNOSUPPORT
  813|       |    add_errcode("WSAESOCKTNOSUPPORT", WSAESOCKTNOSUPPORT, "Socket type not supported");
  814|       |#endif
  815|       |#ifdef WSAGETASYNCERRO
  816|       |    add_errcode("WSAGETASYNCERRO", WSAGETASYNCERRO, "Error WSAGETASYNCERRO");
  817|       |#endif
  818|       |#ifdef WSAMAKESELECTREPL
  819|       |    add_errcode("WSAMAKESELECTREPL", WSAMAKESELECTREPL, "Error WSAMAKESELECTREPL");
  820|       |#endif
  821|       |#ifdef WSAGETASYNCBUFLE
  822|       |    add_errcode("WSAGETASYNCBUFLE", WSAGETASYNCBUFLE, "Error WSAGETASYNCBUFLE");
  823|       |#endif
  824|       |#ifdef WSAEDESTADDRREQ
  825|       |    add_errcode("WSAEDESTADDRREQ", WSAEDESTADDRREQ, "Destination address required");
  826|       |#endif
  827|       |#ifdef WSAECONNREFUSED
  828|       |    add_errcode("WSAECONNREFUSED", WSAECONNREFUSED, "Connection refused");
  829|       |#endif
  830|       |#ifdef WSAENETRESET
  831|       |    add_errcode("WSAENETRESET", WSAENETRESET, "Network dropped connection because of reset");
  832|       |#endif
  833|       |#ifdef WSAN
  834|       |    add_errcode("WSAN", WSAN, "Error WSAN");
  835|       |#endif
  836|      2|#ifdef ENOMEDIUM
  837|      2|    add_errcode("ENOMEDIUM", ENOMEDIUM, "No medium found");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  838|      2|#endif
  839|      2|#ifdef EMEDIUMTYPE
  840|      2|    add_errcode("EMEDIUMTYPE", EMEDIUMTYPE, "Wrong medium type");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  841|      2|#endif
  842|      2|#ifdef ECANCELED
  843|      2|    add_errcode("ECANCELED", ECANCELED, "Operation Canceled");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  844|      2|#endif
  845|      2|#ifdef ENOKEY
  846|      2|    add_errcode("ENOKEY", ENOKEY, "Required key not available");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  847|      2|#endif
  848|      2|#ifdef EHWPOISON
  849|      2|    add_errcode("EHWPOISON", EHWPOISON, "Memory page has hardware error");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  850|      2|#endif
  851|      2|#ifdef EKEYEXPIRED
  852|      2|    add_errcode("EKEYEXPIRED", EKEYEXPIRED, "Key has expired");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  853|      2|#endif
  854|      2|#ifdef EKEYREVOKED
  855|      2|    add_errcode("EKEYREVOKED", EKEYREVOKED, "Key has been revoked");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  856|      2|#endif
  857|      2|#ifdef EKEYREJECTED
  858|      2|    add_errcode("EKEYREJECTED", EKEYREJECTED, "Key was rejected by service");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  859|      2|#endif
  860|      2|#ifdef EOWNERDEAD
  861|      2|    add_errcode("EOWNERDEAD", EOWNERDEAD, "Owner died");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  862|      2|#endif
  863|      2|#ifdef ENOTRECOVERABLE
  864|      2|    add_errcode("ENOTRECOVERABLE", ENOTRECOVERABLE, "State not recoverable");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  865|      2|#endif
  866|      2|#ifdef ERFKILL
  867|      2|    add_errcode("ERFKILL", ERFKILL, "Operation not possible due to RF-kill");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  868|      2|#endif
  869|       |
  870|       |    /* Solaris-specific errnos */
  871|      2|#ifdef ECANCELED
  872|      2|    add_errcode("ECANCELED", ECANCELED, "Operation canceled");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  873|      2|#endif
  874|      2|#ifdef ENOTSUP
  875|      2|    add_errcode("ENOTSUP", ENOTSUP, "Operation not supported");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  876|      2|#endif
  877|      2|#ifdef EOWNERDEAD
  878|      2|    add_errcode("EOWNERDEAD", EOWNERDEAD, "Process died with the lock");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  879|      2|#endif
  880|      2|#ifdef ENOTRECOVERABLE
  881|      2|    add_errcode("ENOTRECOVERABLE", ENOTRECOVERABLE, "Lock is not recoverable");
  ------------------
  |  |  106|      2|    do {                                                               \
  |  |  107|      2|        if (_add_errcode(module_dict, error_dict, name, code) < 0) {   \
  |  |  ------------------
  |  |  |  Branch (107:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  108|      0|            Py_DECREF(error_dict);                                     \
  |  |  ------------------
  |  |  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  109|      0|            return -1;                                                 \
  |  |  110|      0|        }                                                              \
  |  |  111|      2|    } while (0);
  |  |  ------------------
  |  |  |  Branch (111:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  882|      2|#endif
  883|       |#ifdef ELOCKUNMAPPED
  884|       |    add_errcode("ELOCKUNMAPPED", ELOCKUNMAPPED, "Locked lock was unmapped");
  885|       |#endif
  886|       |#ifdef ENOTACTIVE
  887|       |    add_errcode("ENOTACTIVE", ENOTACTIVE, "Facility is not active");
  888|       |#endif
  889|       |
  890|       |    /* MacOSX specific errnos */
  891|       |#ifdef EAUTH
  892|       |    add_errcode("EAUTH", EAUTH, "Authentication error");
  893|       |#endif
  894|       |#ifdef EBADARCH
  895|       |    add_errcode("EBADARCH", EBADARCH, "Bad CPU type in executable");
  896|       |#endif
  897|       |#ifdef EBADEXEC
  898|       |    add_errcode("EBADEXEC", EBADEXEC, "Bad executable (or shared library)");
  899|       |#endif
  900|       |#ifdef EBADMACHO
  901|       |    add_errcode("EBADMACHO", EBADMACHO, "Malformed Mach-o file");
  902|       |#endif
  903|       |#ifdef EBADRPC
  904|       |    add_errcode("EBADRPC", EBADRPC, "RPC struct is bad");
  905|       |#endif
  906|       |#ifdef EDEVERR
  907|       |    add_errcode("EDEVERR", EDEVERR, "Device error");
  908|       |#endif
  909|       |#ifdef EFTYPE
  910|       |    add_errcode("EFTYPE", EFTYPE, "Inappropriate file type or format");
  911|       |#endif
  912|       |#ifdef ENEEDAUTH
  913|       |    add_errcode("ENEEDAUTH", ENEEDAUTH, "Need authenticator");
  914|       |#endif
  915|       |#ifdef ENOATTR
  916|       |    add_errcode("ENOATTR", ENOATTR, "Attribute not found");
  917|       |#endif
  918|       |#ifdef ENOPOLICY
  919|       |    add_errcode("ENOPOLICY", ENOPOLICY, "Policy not found");
  920|       |#endif
  921|       |#ifdef EPROCLIM
  922|       |    add_errcode("EPROCLIM", EPROCLIM, "Too many processes");
  923|       |#endif
  924|       |#ifdef EPROCUNAVAIL
  925|       |    add_errcode("EPROCUNAVAIL", EPROCUNAVAIL, "Bad procedure for program");
  926|       |#endif
  927|       |#ifdef EPROGMISMATCH
  928|       |    add_errcode("EPROGMISMATCH", EPROGMISMATCH, "Program version wrong");
  929|       |#endif
  930|       |#ifdef EPROGUNAVAIL
  931|       |    add_errcode("EPROGUNAVAIL", EPROGUNAVAIL, "RPC prog. not avail");
  932|       |#endif
  933|       |#ifdef EPWROFF
  934|       |    add_errcode("EPWROFF", EPWROFF, "Device power is off");
  935|       |#endif
  936|       |#ifdef ERPCMISMATCH
  937|       |    add_errcode("ERPCMISMATCH", ERPCMISMATCH, "RPC version wrong");
  938|       |#endif
  939|       |#ifdef ESHLIBVERS
  940|       |    add_errcode("ESHLIBVERS", ESHLIBVERS, "Shared library version mismatch");
  941|       |#endif
  942|       |#ifdef EQFULL
  943|       |    add_errcode("EQFULL", EQFULL, "Interface output queue is full");
  944|       |#endif
  945|       |#ifdef ENOTCAPABLE
  946|       |    // WASI extension
  947|       |    add_errcode("ENOTCAPABLE", ENOTCAPABLE, "Capabilities insufficient");
  948|       |#endif
  949|       |
  950|      2|    Py_DECREF(error_dict);
  ------------------
  |  |  340|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  951|      2|    return 0;
  952|      2|}
errnomodule.c:_add_errcode:
   60|    274|{
   61|    274|    PyObject *name = PyUnicode_FromString(name_str);
   62|    274|    if (!name) {
  ------------------
  |  Branch (62:9): [True: 0, False: 274]
  ------------------
   63|      0|        return -1;
   64|      0|    }
   65|       |
   66|    274|    PyObject *code = PyLong_FromLong(code_int);
   67|    274|    if (!code) {
  ------------------
  |  Branch (67:9): [True: 0, False: 274]
  ------------------
   68|      0|        Py_DECREF(name);
  ------------------
  |  |  340|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   69|      0|        return -1;
   70|      0|    }
   71|       |
   72|    274|    int ret = -1;
   73|       |    /* insert in modules dict */
   74|    274|    if (PyDict_SetItem(module_dict, name, code) < 0) {
  ------------------
  |  Branch (74:9): [True: 0, False: 274]
  ------------------
   75|      0|        goto end;
   76|      0|    }
   77|       |    /* insert in errorcode dict */
   78|    274|    if (PyDict_SetItem(error_dict, code, name) < 0) {
  ------------------
  |  Branch (78:9): [True: 0, False: 274]
  ------------------
   79|      0|        goto end;
   80|      0|    }
   81|    274|    ret = 0;
   82|    274|end:
   83|    274|    Py_DECREF(name);
  ------------------
  |  |  340|    274|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    274|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    274|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   84|    274|    Py_DECREF(code);
  ------------------
  |  |  340|    274|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    274|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    274|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   85|    274|    return ret;
   86|    274|}

_PyFaulthandler_Init:
 1476|      2|{
 1477|      2|#ifdef FAULTHANDLER_USE_ALT_STACK
 1478|      2|    memset(&stack, 0, sizeof(stack));
  ------------------
  |  |   86|      2|#  define stack _PyRuntime.faulthandler.stack
  ------------------
                  memset(&stack, 0, sizeof(stack));
  ------------------
  |  |   86|      2|#  define stack _PyRuntime.faulthandler.stack
  ------------------
 1479|      2|    stack.ss_flags = 0;
  ------------------
  |  |   86|      2|#  define stack _PyRuntime.faulthandler.stack
  ------------------
 1480|       |    /* bpo-21131: allocate dedicated stack of SIGSTKSZ*2 bytes, instead of just
 1481|       |       SIGSTKSZ bytes. Calling the previous signal handler in faulthandler
 1482|       |       signal handler uses more than SIGSTKSZ bytes of stack memory on some
 1483|       |       platforms. */
 1484|      2|    stack.ss_size = SIGSTKSZ * 2;
  ------------------
  |  |   86|      2|#  define stack _PyRuntime.faulthandler.stack
  ------------------
 1485|      2|#ifdef AT_MINSIGSTKSZ
 1486|       |    /* bpo-46968: Query Linux for minimal stack size to ensure signal delivery
 1487|       |       for the hardware running CPython. This OS feature is available in
 1488|       |       Linux kernel version >= 5.14 */
 1489|      2|    unsigned long at_minstack_size = getauxval(AT_MINSIGSTKSZ);
 1490|      2|    if (at_minstack_size != 0) {
  ------------------
  |  Branch (1490:9): [True: 0, False: 2]
  ------------------
 1491|      0|        stack.ss_size = SIGSTKSZ + at_minstack_size;
  ------------------
  |  |   86|      0|#  define stack _PyRuntime.faulthandler.stack
  ------------------
 1492|      0|    }
 1493|      2|#endif
 1494|      2|#endif
 1495|       |
 1496|      2|    memset(&thread, 0, sizeof(thread));
  ------------------
  |  |   60|      2|#define thread _PyRuntime.faulthandler.thread
  ------------------
                  memset(&thread, 0, sizeof(thread));
  ------------------
  |  |   60|      2|#define thread _PyRuntime.faulthandler.thread
  ------------------
 1497|       |
 1498|      2|    if (enable) {
  ------------------
  |  Branch (1498:9): [True: 0, False: 2]
  ------------------
 1499|      0|        if (faulthandler_init_enable() < 0) {
  ------------------
  |  Branch (1499:13): [True: 0, False: 0]
  ------------------
 1500|      0|            return _PyStatus_ERR("failed to enable faulthandler");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1501|      0|        }
 1502|      0|    }
 1503|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1504|      2|}

Py_GetBuildInfo:
   46|      2|{
   47|      2|    if (initialized) {
  ------------------
  |  Branch (47:9): [True: 0, False: 2]
  ------------------
   48|      0|        return buildinfo;
   49|      0|    }
   50|      2|    initialized = 1;
   51|      2|    const char *revision = _Py_gitversion();
   52|      2|    const char *sep = *revision ? ":" : "";
  ------------------
  |  Branch (52:23): [True: 2, False: 0]
  ------------------
   53|      2|    const char *gitid = _Py_gitidentifier();
   54|      2|    if (!(*gitid)) {
  ------------------
  |  Branch (54:9): [True: 0, False: 2]
  ------------------
   55|      0|        gitid = "main";
   56|      0|    }
   57|      2|    PyOS_snprintf(buildinfo, sizeof(buildinfo),
   58|      2|                  "%s%s%s, %.20s, %.9s", gitid, sep, revision,
   59|      2|                  DATE, TIME);
  ------------------
  |  |   14|       |#define DATE __DATE__
  ------------------
                                DATE, TIME);
  ------------------
  |  |   22|       |#define TIME __TIME__
  ------------------
   60|      2|    return buildinfo;
   61|      2|}
_Py_gitversion:
   65|      4|{
   66|      4|    return GITVERSION;
   67|      4|}
_Py_gitidentifier:
   71|      4|{
   72|      4|    const char *gittag, *gitid;
   73|      4|    gittag = GITTAG;
   74|      4|    if ((*gittag) && strcmp(gittag, "undefined") != 0)
  ------------------
  |  Branch (74:9): [True: 4, False: 0]
  |  Branch (74:22): [True: 4, False: 0]
  ------------------
   75|      4|        gitid = gittag;
   76|      0|    else
   77|      0|        gitid = GITBRANCH;
   78|      4|    return gitid;
   79|      4|}

_Py_Get_Getpath_CodeObject:
  834|      2|{
  835|      2|    return PyMarshal_ReadObjectFromString(
  836|      2|        (const char*)_Py_M__getpath, sizeof(_Py_M__getpath));
  837|      2|}
_PyConfig_InitPathConfig:
  857|      4|{
  858|      4|    PyStatus status = _PyPathConfig_ReadGlobal(config);
  859|       |
  860|      4|    if (_PyStatus_EXCEPTION(status) || !compute_path_config) {
  ------------------
  |  |   43|      8|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 4]
  |  |  ------------------
  ------------------
  |  Branch (860:40): [True: 2, False: 2]
  ------------------
  861|      2|        return status;
  862|      2|    }
  863|       |
  864|      2|    if (!_PyThreadState_GET()) {
  ------------------
  |  Branch (864:9): [True: 0, False: 2]
  ------------------
  865|      0|        return PyStatus_Error("cannot calculate path configuration without GIL");
  866|      0|    }
  867|       |
  868|      2|    PyObject *configDict = _PyConfig_AsDict(config);
  869|      2|    if (!configDict) {
  ------------------
  |  Branch (869:9): [True: 0, False: 2]
  ------------------
  870|      0|        PyErr_Clear();
  871|      0|        return PyStatus_NoMemory();
  872|      0|    }
  873|       |
  874|      2|    PyObject *dict = PyDict_New();
  875|      2|    if (!dict) {
  ------------------
  |  Branch (875:9): [True: 0, False: 2]
  ------------------
  876|      0|        PyErr_Clear();
  877|      0|        Py_DECREF(configDict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  878|      0|        return PyStatus_NoMemory();
  879|      0|    }
  880|       |
  881|      2|    if (PyDict_SetItemString(dict, "config", configDict) < 0) {
  ------------------
  |  Branch (881:9): [True: 0, False: 2]
  ------------------
  882|      0|        PyErr_Clear();
  883|      0|        Py_DECREF(configDict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  884|      0|        Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  885|      0|        return PyStatus_NoMemory();
  886|      0|    }
  887|       |    /* reference now held by dict */
  888|      2|    Py_DECREF(configDict);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  889|       |
  890|      2|    PyObject *co = _Py_Get_Getpath_CodeObject();
  891|      2|    if (!co || !PyCode_Check(co)) {
  ------------------
  |  |  164|      2|#define PyCode_Check(op) Py_IS_TYPE((op), &PyCode_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (891:9): [True: 0, False: 2]
  |  Branch (891:16): [True: 0, False: 2]
  ------------------
  892|      0|        PyErr_Clear();
  893|      0|        Py_XDECREF(co);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  894|      0|        Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  895|      0|        return PyStatus_Error("error reading frozen getpath.py");
  896|      0|    }
  897|       |
  898|       |#ifdef MS_WINDOWS
  899|       |    PyObject *winreg = PyImport_ImportModule("winreg");
  900|       |    if (!winreg || PyDict_SetItemString(dict, "winreg", winreg) < 0) {
  901|       |        PyErr_Clear();
  902|       |        Py_XDECREF(winreg);
  903|       |        if (PyDict_SetItemString(dict, "winreg", Py_None) < 0) {
  904|       |            PyErr_Clear();
  905|       |            Py_DECREF(co);
  906|       |            Py_DECREF(dict);
  907|       |            return PyStatus_Error("error importing winreg module");
  908|       |        }
  909|       |    } else {
  910|       |        Py_DECREF(winreg);
  911|       |    }
  912|       |#endif
  913|       |
  914|      2|    if (
  915|       |#ifdef MS_WINDOWS
  916|       |        !decode_to_dict(dict, "os_name", "nt") ||
  917|       |#elif defined(__APPLE__)
  918|       |        !decode_to_dict(dict, "os_name", "darwin") ||
  919|       |#else
  920|      2|        !decode_to_dict(dict, "os_name", "posix") ||
  ------------------
  |  Branch (920:9): [True: 0, False: 2]
  ------------------
  921|      2|#endif
  922|       |#ifdef WITH_NEXT_FRAMEWORK
  923|       |        !int_to_dict(dict, "WITH_NEXT_FRAMEWORK", 1) ||
  924|       |#else
  925|      2|        !int_to_dict(dict, "WITH_NEXT_FRAMEWORK", 0) ||
  ------------------
  |  Branch (925:9): [True: 0, False: 2]
  ------------------
  926|      2|#endif
  927|      2|        !decode_to_dict(dict, "PREFIX", PREFIX) ||
  ------------------
  |  Branch (927:9): [True: 0, False: 2]
  ------------------
  928|      2|        !decode_to_dict(dict, "EXEC_PREFIX", EXEC_PREFIX) ||
  ------------------
  |  Branch (928:9): [True: 0, False: 2]
  ------------------
  929|      2|        !decode_to_dict(dict, "PYTHONPATH", PYTHONPATH) ||
  ------------------
  |  Branch (929:9): [True: 0, False: 2]
  ------------------
  930|      2|        !decode_to_dict(dict, "VPATH", VPATH) ||
  ------------------
  |  Branch (930:9): [True: 0, False: 2]
  ------------------
  931|      2|        !decode_to_dict(dict, "PLATLIBDIR", PLATLIBDIR) ||
  ------------------
  |  Branch (931:9): [True: 0, False: 2]
  ------------------
  932|      2|        !decode_to_dict(dict, "PYDEBUGEXT", PYDEBUGEXT) ||
  ------------------
  |  |   41|      2|#define PYDEBUGEXT NULL
  ------------------
  |  Branch (932:9): [True: 0, False: 2]
  ------------------
  933|      2|        !int_to_dict(dict, "VERSION_MAJOR", PY_MAJOR_VERSION) ||
  ------------------
  |  |   23|      2|#define PY_MAJOR_VERSION        3
  ------------------
  |  Branch (933:9): [True: 0, False: 2]
  ------------------
  934|      2|        !int_to_dict(dict, "VERSION_MINOR", PY_MINOR_VERSION) ||
  ------------------
  |  |   24|      2|#define PY_MINOR_VERSION        16
  ------------------
  |  Branch (934:9): [True: 0, False: 2]
  ------------------
  935|      2|        !decode_to_dict(dict, "PYWINVER", PYWINVER) ||
  ------------------
  |  |   48|      2|#define PYWINVER NULL
  ------------------
  |  Branch (935:9): [True: 0, False: 2]
  ------------------
  936|      2|        !wchar_to_dict(dict, "EXE_SUFFIX", EXE_SUFFIX) ||
  ------------------
  |  |   56|      2|#define EXE_SUFFIX NULL
  ------------------
  |  Branch (936:9): [True: 0, False: 2]
  ------------------
  937|      2|        !env_to_dict(dict, "ENV_PATH", 0) ||
  ------------------
  |  Branch (937:9): [True: 0, False: 2]
  ------------------
  938|      2|        !env_to_dict(dict, "ENV_PYTHONHOME", 0) ||
  ------------------
  |  Branch (938:9): [True: 0, False: 2]
  ------------------
  939|      2|        !env_to_dict(dict, "ENV_PYTHONEXECUTABLE", 0) ||
  ------------------
  |  Branch (939:9): [True: 0, False: 2]
  ------------------
  940|      2|        !env_to_dict(dict, "ENV___PYVENV_LAUNCHER__", 1) ||
  ------------------
  |  Branch (940:9): [True: 0, False: 2]
  ------------------
  941|      2|        !progname_to_dict(dict, "real_executable") ||
  ------------------
  |  Branch (941:9): [True: 0, False: 2]
  ------------------
  942|      2|        !library_to_dict(dict, "library") ||
  ------------------
  |  Branch (942:9): [True: 0, False: 2]
  ------------------
  943|      2|        !wchar_to_dict(dict, "executable_dir", NULL) ||
  ------------------
  |  Branch (943:9): [True: 0, False: 2]
  ------------------
  944|      2|        !wchar_to_dict(dict, "py_setpath", _PyPathConfig_GetGlobalModuleSearchPath()) ||
  ------------------
  |  Branch (944:9): [True: 0, False: 2]
  ------------------
  945|      2|        !funcs_to_dict(dict, config->pathconfig_warnings) ||
  ------------------
  |  Branch (945:9): [True: 0, False: 2]
  ------------------
  946|       |#ifdef Py_GIL_DISABLED
  947|       |        !decode_to_dict(dict, "ABI_THREAD", "t") ||
  948|       |#else
  949|      2|        !decode_to_dict(dict, "ABI_THREAD", "") ||
  ------------------
  |  Branch (949:9): [True: 0, False: 2]
  ------------------
  950|      2|#endif
  951|      2|#ifndef MS_WINDOWS
  952|      2|        PyDict_SetItemString(dict, "winreg", Py_None) < 0 ||
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (952:9): [True: 0, False: 2]
  ------------------
  953|      2|#endif
  954|      2|        PyDict_SetItemString(dict, "__builtins__", PyEval_GetBuiltins()) < 0
  ------------------
  |  Branch (954:9): [True: 0, False: 2]
  ------------------
  955|      2|    ) {
  956|      0|        Py_DECREF(co);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  957|      0|        Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  958|      0|        PyErr_FormatUnraisable("Exception ignored while preparing getpath");
  959|      0|        return PyStatus_Error("error evaluating initial values");
  960|      0|    }
  961|       |
  962|      2|    PyObject *r = PyEval_EvalCode(co, dict, dict);
  963|      2|    Py_DECREF(co);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  964|       |
  965|      2|    if (!r) {
  ------------------
  |  Branch (965:9): [True: 0, False: 2]
  ------------------
  966|      0|        Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  967|      0|        PyErr_FormatUnraisable("Exception ignored while running getpath");
  968|      0|        return PyStatus_Error("error evaluating path");
  969|      0|    }
  970|      2|    Py_DECREF(r);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  971|       |
  972|      2|    if (_PyConfig_FromDict(config, configDict) < 0) {
  ------------------
  |  Branch (972:9): [True: 0, False: 2]
  ------------------
  973|      0|        PyErr_FormatUnraisable("Exception ignored while reading getpath results");
  974|      0|        Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  975|      0|        return PyStatus_Error("error getting getpath results");
  976|      0|    }
  977|       |
  978|      2|    Py_DECREF(dict);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  979|       |
  980|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  981|      2|}
getpath.c:decode_to_dict:
  659|     18|{
  660|     18|    PyObject *u = NULL;
  661|     18|    int r;
  662|     18|    if (s && s[0]) {
  ------------------
  |  Branch (662:9): [True: 14, False: 4]
  |  Branch (662:14): [True: 8, False: 6]
  ------------------
  663|      8|        size_t len;
  664|      8|        const wchar_t *w = Py_DecodeLocale(s, &len);
  665|      8|        if (w) {
  ------------------
  |  Branch (665:13): [True: 8, False: 0]
  ------------------
  666|      8|            u = PyUnicode_FromWideChar(w, len);
  667|      8|            PyMem_RawFree((void *)w);
  668|      8|        }
  669|      8|        if (!u) {
  ------------------
  |  Branch (669:13): [True: 0, False: 8]
  ------------------
  670|      0|            return 0;
  671|      0|        }
  672|     10|    } else {
  673|     10|        u = Py_NewRef(Py_None);
  ------------------
  |  |  550|     10|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  674|     10|    }
  675|     18|    r = PyDict_SetItemString(dict, key, u) == 0;
  676|     18|    Py_DECREF(u);
  ------------------
  |  |  430|     18|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  677|     18|    return r;
  678|     18|}
getpath.c:int_to_dict:
  738|      6|{
  739|      6|    PyObject *o;
  740|      6|    int r;
  741|      6|    o = PyLong_FromLong(v);
  742|      6|    if (!o) {
  ------------------
  |  Branch (742:9): [True: 0, False: 6]
  ------------------
  743|      0|        return 0;
  744|      0|    }
  745|      6|    r = PyDict_SetItemString(dict, key, o) == 0;
  746|      6|    Py_DECREF(o);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  747|      6|    return r;
  748|      6|}
getpath.c:wchar_to_dict:
  639|      6|{
  640|      6|    PyObject *u;
  641|      6|    int r;
  642|      6|    if (s && s[0]) {
  ------------------
  |  Branch (642:9): [True: 0, False: 6]
  |  Branch (642:14): [True: 0, False: 0]
  ------------------
  643|      0|        u = PyUnicode_FromWideChar(s, -1);
  644|      0|        if (!u) {
  ------------------
  |  Branch (644:13): [True: 0, False: 0]
  ------------------
  645|      0|            return 0;
  646|      0|        }
  647|      6|    } else {
  648|      6|        u = Py_NewRef(Py_None);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  649|      6|    }
  650|      6|    r = PyDict_SetItemString(dict, key, u) == 0;
  651|      6|    Py_DECREF(u);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  652|      6|    return r;
  653|      6|}
getpath.c:env_to_dict:
  683|      8|{
  684|      8|    PyObject *u = NULL;
  685|      8|    int r = 0;
  686|      8|    assert(strncmp(key, "ENV_", 4) == 0);
  ------------------
  |  Branch (686:5): [True: 8, False: 0]
  ------------------
  687|      8|    assert(strlen(key) < 64);
  ------------------
  |  Branch (687:5): [True: 8, False: 0]
  ------------------
  688|       |#ifdef MS_WINDOWS
  689|       |    wchar_t wkey[64];
  690|       |    // Quick convert to wchar_t, since we know key is ASCII
  691|       |    wchar_t *wp = wkey;
  692|       |    for (const char *p = &key[4]; *p; ++p) {
  693|       |        assert(!(*p & 0x80));
  694|       |        *wp++ = *p;
  695|       |    }
  696|       |    *wp = L'\0';
  697|       |    const wchar_t *v = _wgetenv(wkey);
  698|       |    if (v) {
  699|       |        u = PyUnicode_FromWideChar(v, -1);
  700|       |        if (!u) {
  701|       |            PyErr_Clear();
  702|       |        }
  703|       |    }
  704|       |#else
  705|      8|    const char *v = getenv(&key[4]);
  706|      8|    if (v) {
  ------------------
  |  Branch (706:9): [True: 2, False: 6]
  ------------------
  707|      2|        size_t len;
  708|      2|        const wchar_t *w = Py_DecodeLocale(v, &len);
  709|      2|        if (w) {
  ------------------
  |  Branch (709:13): [True: 2, False: 0]
  ------------------
  710|      2|            u = PyUnicode_FromWideChar(w, len);
  711|      2|            if (!u) {
  ------------------
  |  Branch (711:17): [True: 0, False: 2]
  ------------------
  712|      0|                PyErr_Clear();
  713|      0|            }
  714|      2|            PyMem_RawFree((void *)w);
  715|      2|        }
  716|      2|    }
  717|      8|#endif
  718|      8|    if (u) {
  ------------------
  |  Branch (718:9): [True: 2, False: 6]
  ------------------
  719|      2|        r = PyDict_SetItemString(dict, key, u) == 0;
  720|      2|        Py_DECREF(u);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  721|      6|    } else {
  722|      6|        r = PyDict_SetItemString(dict, key, Py_None) == 0;
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  723|      6|    }
  724|      8|    if (r && and_clear) {
  ------------------
  |  Branch (724:9): [True: 8, False: 0]
  |  Branch (724:14): [True: 2, False: 6]
  ------------------
  725|       |#ifdef MS_WINDOWS
  726|       |        _wputenv_s(wkey, L"");
  727|       |#else
  728|      2|        unsetenv(&key[4]);
  729|      2|#endif
  730|      2|    }
  731|      8|    return r;
  732|      8|}
getpath.c:progname_to_dict:
  775|      2|{
  776|       |#ifdef MS_WINDOWS
  777|       |    return winmodule_to_dict(dict, key, NULL);
  778|       |#elif defined(__APPLE__)
  779|       |    char *path;
  780|       |    uint32_t pathLen = 256;
  781|       |    while (pathLen) {
  782|       |        path = PyMem_RawMalloc((pathLen + 1) * sizeof(char));
  783|       |        if (!path) {
  784|       |            return 0;
  785|       |        }
  786|       |        if (_NSGetExecutablePath(path, &pathLen) != 0) {
  787|       |            PyMem_RawFree(path);
  788|       |            continue;
  789|       |        }
  790|       |        // Only keep if the path is absolute
  791|       |        if (path[0] == SEP) {
  792|       |            int r = decode_to_dict(dict, key, path);
  793|       |            PyMem_RawFree(path);
  794|       |            return r;
  795|       |        }
  796|       |        // Fall back and store None
  797|       |        PyMem_RawFree(path);
  798|       |        break;
  799|       |    }
  800|       |#endif
  801|      2|    return PyDict_SetItemString(dict, key, Py_None) == 0;
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  802|      2|}
getpath.c:library_to_dict:
  808|      2|{
  809|       |/* macOS framework builds do not link against a libpython dynamic library, but
  810|       |   instead link against a macOS Framework. */
  811|       |#if defined(Py_ENABLE_SHARED) || defined(WITH_NEXT_FRAMEWORK)
  812|       |
  813|       |#ifdef MS_WINDOWS
  814|       |    extern HMODULE PyWin_DLLhModule;
  815|       |    if (PyWin_DLLhModule) {
  816|       |        return winmodule_to_dict(dict, key, PyWin_DLLhModule);
  817|       |    }
  818|       |#endif
  819|       |
  820|       |#if HAVE_DLADDR
  821|       |    Dl_info libpython_info;
  822|       |    if (dladdr(&Py_Initialize, &libpython_info) && libpython_info.dli_fname) {
  823|       |        return decode_to_dict(dict, key, libpython_info.dli_fname);
  824|       |    }
  825|       |#endif
  826|       |#endif
  827|       |
  828|      2|    return PyDict_SetItemString(dict, key, Py_None) == 0;
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  829|      2|}
getpath.c:funcs_to_dict:
  610|      2|{
  611|     24|    for (PyMethodDef *m = getpath_methods; m->ml_name; ++m) {
  ------------------
  |  Branch (611:44): [True: 22, False: 2]
  ------------------
  612|     22|        PyObject *f = PyCFunction_NewEx(m, NULL, NULL);
  ------------------
  |  |   87|     22|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
  613|     22|        if (!f) {
  ------------------
  |  Branch (613:13): [True: 0, False: 22]
  ------------------
  614|      0|            return 0;
  615|      0|        }
  616|     22|        if (PyDict_SetItemString(dict, m->ml_name, f) < 0) {
  ------------------
  |  Branch (616:13): [True: 0, False: 22]
  ------------------
  617|      0|            Py_DECREF(f);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  618|      0|            return 0;
  619|      0|        }
  620|     22|        Py_DECREF(f);
  ------------------
  |  |  430|     22|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  621|     22|    }
  622|      2|    PyMethodDef *m2 = warnings ? &getpath_warn_method : &getpath_nowarn_method;
  ------------------
  |  Branch (622:23): [True: 2, False: 0]
  ------------------
  623|      2|    PyObject *f = PyCFunction_NewEx(m2, NULL, NULL);
  ------------------
  |  |   87|      2|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
  624|      2|    if (!f) {
  ------------------
  |  Branch (624:9): [True: 0, False: 2]
  ------------------
  625|      0|        return 0;
  626|      0|    }
  627|      2|    if (PyDict_SetItemString(dict, m2->ml_name, f) < 0) {
  ------------------
  |  Branch (627:9): [True: 0, False: 2]
  ------------------
  628|      0|        Py_DECREF(f);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  629|      0|        return 0;
  630|      0|    }
  631|      2|    Py_DECREF(f);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  632|      2|    return 1;
  633|      2|}
getpath.c:getpath_abspath:
   65|      2|{
   66|      2|    PyObject *r = NULL;
   67|      2|    PyObject *pathobj;
   68|      2|    wchar_t *path;
   69|      2|    if (!PyArg_ParseTuple(args, "U", &pathobj)) {
  ------------------
  |  Branch (69:9): [True: 0, False: 2]
  ------------------
   70|      0|        return NULL;
   71|      0|    }
   72|      2|    Py_ssize_t len;
   73|      2|    path = PyUnicode_AsWideCharString(pathobj, &len);
   74|      2|    if (path) {
  ------------------
  |  Branch (74:9): [True: 2, False: 0]
  ------------------
   75|      2|        wchar_t *abs;
   76|      2|        if (_Py_abspath((const wchar_t *)_Py_normpath(path, -1), &abs) == 0 && abs) {
  ------------------
  |  Branch (76:13): [True: 2, False: 0]
  |  Branch (76:80): [True: 2, False: 0]
  ------------------
   77|      2|            r = PyUnicode_FromWideChar(abs, -1);
   78|      2|            PyMem_RawFree((void *)abs);
   79|      2|        } else {
   80|      0|            PyErr_SetString(PyExc_OSError, "failed to make path absolute");
   81|      0|        }
   82|      2|        PyMem_Free((void *)path);
   83|      2|    }
   84|      2|    return r;
   85|      2|}
getpath.c:getpath_dirname:
  106|     12|{
  107|     12|    PyObject *path;
  108|     12|    if (!PyArg_ParseTuple(args, "U", &path)) {
  ------------------
  |  Branch (108:9): [True: 0, False: 12]
  ------------------
  109|      0|        return NULL;
  110|      0|    }
  111|     12|    Py_ssize_t end = PyUnicode_GET_LENGTH(path);
  ------------------
  |  |  299|     12|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  112|     12|    Py_ssize_t pos = PyUnicode_FindChar(path, SEP, 0, end, -1);
  ------------------
  |  |   29|     12|#  define SEP L'/'
  ------------------
  113|     12|    if (pos < 0) {
  ------------------
  |  Branch (113:9): [True: 0, False: 12]
  ------------------
  114|      0|        return Py_GetConstant(Py_CONSTANT_EMPTY_STR);
  ------------------
  |  |  597|      0|#define Py_CONSTANT_EMPTY_STR 7
  ------------------
  115|      0|    }
  116|     12|    return PyUnicode_Substring(path, 0, pos);
  117|     12|}
getpath.c:getpath_isdir:
  175|      8|{
  176|      8|    PyObject *r = NULL;
  177|      8|    PyObject *pathobj;
  178|      8|    const wchar_t *path;
  179|      8|    if (!PyArg_ParseTuple(args, "U", &pathobj)) {
  ------------------
  |  Branch (179:9): [True: 0, False: 8]
  ------------------
  180|      0|        return NULL;
  181|      0|    }
  182|      8|    path = PyUnicode_AsWideCharString(pathobj, NULL);
  183|      8|    if (path) {
  ------------------
  |  Branch (183:9): [True: 8, False: 0]
  ------------------
  184|       |#ifdef MS_WINDOWS
  185|       |        DWORD attr = GetFileAttributesW(path);
  186|       |        r = (attr != INVALID_FILE_ATTRIBUTES) &&
  187|       |            (attr & FILE_ATTRIBUTE_DIRECTORY) ? Py_True : Py_False;
  188|       |#else
  189|      8|        struct stat st;
  190|      8|        r = (_Py_wstat(path, &st) == 0) && S_ISDIR(st.st_mode) ? Py_True : Py_False;
  ------------------
  |  |   26|      8|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      r = (_Py_wstat(path, &st) == 0) && S_ISDIR(st.st_mode) ? Py_True : Py_False;
  ------------------
  |  |   25|      8|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (190:13): [True: 8, False: 0]
  |  Branch (190:44): [True: 8, False: 0]
  ------------------
  191|      8|#endif
  192|      8|        PyMem_Free((void *)path);
  193|      8|    }
  194|      8|    return Py_XNewRef(r);
  ------------------
  |  |  551|      8|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  195|      8|}
getpath.c:getpath_isfile:
  200|     12|{
  201|     12|    PyObject *r = NULL;
  202|     12|    PyObject *pathobj;
  203|     12|    const wchar_t *path;
  204|     12|    if (!PyArg_ParseTuple(args, "U", &pathobj)) {
  ------------------
  |  Branch (204:9): [True: 0, False: 12]
  ------------------
  205|      0|        return NULL;
  206|      0|    }
  207|     12|    path = PyUnicode_AsWideCharString(pathobj, NULL);
  208|     12|    if (path) {
  ------------------
  |  Branch (208:9): [True: 12, False: 0]
  ------------------
  209|       |#ifdef MS_WINDOWS
  210|       |        DWORD attr = GetFileAttributesW(path);
  211|       |        r = (attr != INVALID_FILE_ATTRIBUTES) &&
  212|       |            !(attr & FILE_ATTRIBUTE_DIRECTORY) ? Py_True : Py_False;
  213|       |#else
  214|     12|        struct stat st;
  215|     12|        r = (_Py_wstat(path, &st) == 0) && S_ISREG(st.st_mode) ? Py_True : Py_False;
  ------------------
  |  |   26|     12|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      r = (_Py_wstat(path, &st) == 0) && S_ISREG(st.st_mode) ? Py_True : Py_False;
  ------------------
  |  |   25|     12|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (215:13): [True: 2, False: 10]
  |  Branch (215:44): [True: 2, False: 0]
  ------------------
  216|     12|#endif
  217|     12|        PyMem_Free((void *)path);
  218|     12|    }
  219|     12|    return Py_XNewRef(r);
  ------------------
  |  |  551|     12|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  220|     12|}
getpath.c:getpath_joinpath:
  257|     26|{
  258|     26|    if (!PyTuple_Check(args)) {
  ------------------
  |  |   27|     26|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     26|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (258:9): [True: 0, False: 26]
  ------------------
  259|      0|        PyErr_SetString(PyExc_TypeError, "requires tuple of arguments");
  260|      0|        return NULL;
  261|      0|    }
  262|     26|    Py_ssize_t n = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|     26|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  263|     26|    if (n == 0) {
  ------------------
  |  Branch (263:9): [True: 0, False: 26]
  ------------------
  264|      0|        return Py_GetConstant(Py_CONSTANT_EMPTY_STR);
  ------------------
  |  |  597|      0|#define Py_CONSTANT_EMPTY_STR 7
  ------------------
  265|      0|    }
  266|       |    /* Convert all parts to wchar and accumulate max final length */
  267|     26|    wchar_t **parts = (wchar_t **)PyMem_Malloc(n * sizeof(wchar_t *));
  268|     26|    if (parts == NULL) {
  ------------------
  |  Branch (268:9): [True: 0, False: 26]
  ------------------
  269|      0|        PyErr_NoMemory();
  270|      0|        return NULL;
  271|      0|    }
  272|     26|    memset(parts, 0, n * sizeof(wchar_t *));
  273|     26|    Py_ssize_t cchFinal = 0;
  274|     26|    Py_ssize_t first = 0;
  275|       |
  276|     78|    for (Py_ssize_t i = 0; i < n; ++i) {
  ------------------
  |  Branch (276:28): [True: 52, False: 26]
  ------------------
  277|     52|        PyObject *s = PyTuple_GET_ITEM(args, i);
  ------------------
  |  |   29|     52|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     52|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (277:23): [True: 52, False: 0]
  ------------------
  278|      0|        Py_ssize_t cch;
  279|     52|        if (s == Py_None) {
  ------------------
  |  |  616|     52|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (279:13): [True: 0, False: 52]
  ------------------
  280|      0|            cch = 0;
  281|     52|        } else if (PyUnicode_Check(s)) {
  ------------------
  |  |  103|     52|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     52|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 52, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  282|     52|            parts[i] = PyUnicode_AsWideCharString(s, &cch);
  283|     52|            if (!parts[i]) {
  ------------------
  |  Branch (283:17): [True: 0, False: 52]
  ------------------
  284|      0|                cchFinal = -1;
  285|      0|                break;
  286|      0|            }
  287|     52|            if (_Py_isabs(parts[i])) {
  ------------------
  |  Branch (287:17): [True: 26, False: 26]
  ------------------
  288|     26|                first = i;
  289|     26|            }
  290|     52|        } else {
  291|      0|            PyErr_SetString(PyExc_TypeError, "all arguments to joinpath() must be str or None");
  292|      0|            cchFinal = -1;
  293|      0|            break;
  294|      0|        }
  295|     52|        cchFinal += cch + 1;
  296|     52|    }
  297|       |
  298|     26|    wchar_t *final = cchFinal > 0 ? (wchar_t *)PyMem_Malloc(cchFinal * sizeof(wchar_t)) : NULL;
  ------------------
  |  Branch (298:22): [True: 26, False: 0]
  ------------------
  299|     26|    if (!final) {
  ------------------
  |  Branch (299:9): [True: 0, False: 26]
  ------------------
  300|      0|        for (Py_ssize_t i = 0; i < n; ++i) {
  ------------------
  |  Branch (300:32): [True: 0, False: 0]
  ------------------
  301|      0|            PyMem_Free(parts[i]);
  302|      0|        }
  303|      0|        PyMem_Free(parts);
  304|      0|        if (cchFinal) {
  ------------------
  |  Branch (304:13): [True: 0, False: 0]
  ------------------
  305|      0|            PyErr_NoMemory();
  306|      0|            return NULL;
  307|      0|        }
  308|      0|        return Py_GetConstant(Py_CONSTANT_EMPTY_STR);
  ------------------
  |  |  597|      0|#define Py_CONSTANT_EMPTY_STR 7
  ------------------
  309|      0|    }
  310|       |
  311|     26|    final[0] = '\0';
  312|       |    /* Now join all the paths. The final result should be shorter than the buffer */
  313|     78|    for (Py_ssize_t i = 0; i < n; ++i) {
  ------------------
  |  Branch (313:28): [True: 52, False: 26]
  ------------------
  314|     52|        if (!parts[i]) {
  ------------------
  |  Branch (314:13): [True: 0, False: 52]
  ------------------
  315|      0|            continue;
  316|      0|        }
  317|     52|        if (i >= first && final) {
  ------------------
  |  Branch (317:13): [True: 52, False: 0]
  |  Branch (317:27): [True: 52, False: 0]
  ------------------
  318|     52|            if (!final[0]) {
  ------------------
  |  Branch (318:17): [True: 26, False: 26]
  ------------------
  319|       |                /* final is definitely long enough to fit any individual part */
  320|     26|                wcscpy(final, parts[i]);
  321|     26|            } else if (_Py_add_relfile(final, parts[i], cchFinal) < 0) {
  ------------------
  |  Branch (321:24): [True: 0, False: 26]
  ------------------
  322|       |                /* if we fail, keep iterating to free memory, but stop adding parts */
  323|      0|                PyMem_Free(final);
  324|      0|                final = NULL;
  325|      0|            }
  326|     52|        }
  327|     52|        PyMem_Free(parts[i]);
  328|     52|    }
  329|     26|    PyMem_Free(parts);
  330|     26|    if (!final) {
  ------------------
  |  Branch (330:9): [True: 0, False: 26]
  ------------------
  331|      0|        PyErr_SetString(PyExc_SystemError, "failed to join paths");
  332|      0|        return NULL;
  333|      0|    }
  334|     26|    PyObject *r = PyUnicode_FromWideChar(_Py_normpath(final, -1), -1);
  335|     26|    PyMem_Free(final);
  336|     26|    return r;
  337|     26|}
getpath.c:getpath_readlines:
  342|     10|{
  343|     10|    PyObject *r = NULL;
  344|     10|    PyObject *pathobj;
  345|     10|    const wchar_t *path;
  346|     10|    if (!PyArg_ParseTuple(args, "U", &pathobj)) {
  ------------------
  |  Branch (346:9): [True: 0, False: 10]
  ------------------
  347|      0|        return NULL;
  348|      0|    }
  349|     10|    path = PyUnicode_AsWideCharString(pathobj, NULL);
  350|     10|    if (!path) {
  ------------------
  |  Branch (350:9): [True: 0, False: 10]
  ------------------
  351|      0|        return NULL;
  352|      0|    }
  353|     10|    FILE *fp = _Py_wfopen(path, L"rb");
  354|     10|    if (!fp) {
  ------------------
  |  Branch (354:9): [True: 10, False: 0]
  ------------------
  355|     10|        PyErr_SetFromErrno(PyExc_OSError);
  356|     10|        PyMem_Free((void *)path);
  357|     10|        return NULL;
  358|     10|    }
  359|      0|    PyMem_Free((void *)path);
  360|       |
  361|      0|    r = PyList_New(0);
  362|      0|    if (!r) {
  ------------------
  |  Branch (362:9): [True: 0, False: 0]
  ------------------
  363|      0|        fclose(fp);
  364|      0|        return NULL;
  365|      0|    }
  366|      0|    const size_t MAX_FILE = 32 * 1024;
  367|      0|    char *buffer = (char *)PyMem_Malloc(MAX_FILE);
  368|      0|    if (!buffer) {
  ------------------
  |  Branch (368:9): [True: 0, False: 0]
  ------------------
  369|      0|        Py_DECREF(r);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  370|      0|        fclose(fp);
  371|      0|        return NULL;
  372|      0|    }
  373|       |
  374|      0|    size_t cb = fread(buffer, 1, MAX_FILE, fp);
  375|      0|    fclose(fp);
  376|      0|    if (!cb) {
  ------------------
  |  Branch (376:9): [True: 0, False: 0]
  ------------------
  377|      0|        return r;
  378|      0|    }
  379|      0|    if (cb >= MAX_FILE) {
  ------------------
  |  Branch (379:9): [True: 0, False: 0]
  ------------------
  380|      0|        Py_DECREF(r);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  381|      0|        PyErr_SetString(PyExc_MemoryError,
  382|      0|            "cannot read file larger than 32KB during initialization");
  383|      0|        return NULL;
  384|      0|    }
  385|      0|    buffer[cb] = '\0';
  386|       |
  387|      0|    size_t len;
  388|      0|    wchar_t *wbuffer = _Py_DecodeUTF8_surrogateescape(buffer, cb, &len);
  389|      0|    PyMem_Free((void *)buffer);
  390|      0|    if (!wbuffer) {
  ------------------
  |  Branch (390:9): [True: 0, False: 0]
  ------------------
  391|      0|        Py_DECREF(r);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  392|      0|        PyErr_NoMemory();
  393|      0|        return NULL;
  394|      0|    }
  395|       |
  396|      0|    wchar_t *p1 = wbuffer;
  397|      0|    wchar_t *p2 = p1;
  398|      0|    while ((p2 = wcschr(p1, L'\n')) != NULL) {
  ------------------
  |  Branch (398:12): [True: 0, False: 0]
  ------------------
  399|      0|        Py_ssize_t cb = p2 - p1;
  400|      0|        while (cb >= 0 && (p1[cb] == L'\n' || p1[cb] == L'\r')) {
  ------------------
  |  Branch (400:16): [True: 0, False: 0]
  |  Branch (400:28): [True: 0, False: 0]
  |  Branch (400:47): [True: 0, False: 0]
  ------------------
  401|      0|            --cb;
  402|      0|        }
  403|      0|        PyObject *u = PyUnicode_FromWideChar(p1, cb >= 0 ? cb + 1 : 0);
  ------------------
  |  Branch (403:50): [True: 0, False: 0]
  ------------------
  404|      0|        if (!u || PyList_Append(r, u) < 0) {
  ------------------
  |  Branch (404:13): [True: 0, False: 0]
  |  Branch (404:19): [True: 0, False: 0]
  ------------------
  405|      0|            Py_XDECREF(u);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  406|      0|            Py_CLEAR(r);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  407|      0|            break;
  408|      0|        }
  409|      0|        Py_DECREF(u);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  410|      0|        p1 = p2 + 1;
  411|      0|    }
  412|      0|    if (r && p1 && *p1) {
  ------------------
  |  Branch (412:9): [True: 0, False: 0]
  |  Branch (412:14): [True: 0, False: 0]
  |  Branch (412:20): [True: 0, False: 0]
  ------------------
  413|      0|        PyObject *u = PyUnicode_FromWideChar(p1, -1);
  414|      0|        if (!u || PyList_Append(r, u) < 0) {
  ------------------
  |  Branch (414:13): [True: 0, False: 0]
  |  Branch (414:19): [True: 0, False: 0]
  ------------------
  415|      0|            Py_CLEAR(r);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  416|      0|        }
  417|      0|        Py_XDECREF(u);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  418|      0|    }
  419|      0|    PyMem_RawFree(wbuffer);
  420|      0|    return r;
  421|      0|}
getpath.c:getpath_realpath:
  426|      2|{
  427|      2|    PyObject *pathobj;
  428|      2|    if (!PyArg_ParseTuple(args, "U", &pathobj)) {
  ------------------
  |  Branch (428:9): [True: 0, False: 2]
  ------------------
  429|      0|        return NULL;
  430|      0|    }
  431|      2|#if defined(HAVE_READLINK)
  432|       |    /* This readlink calculation only resolves a symlinked file, and
  433|       |       does not resolve any path segments. This is consistent with
  434|       |       prior releases, however, the realpath implementation below is
  435|       |       potentially correct in more cases. */
  436|      2|    PyObject *r = NULL;
  437|      2|    int nlink = 0;
  438|      2|    wchar_t *path = PyUnicode_AsWideCharString(pathobj, NULL);
  439|      2|    if (!path) {
  ------------------
  |  Branch (439:9): [True: 0, False: 2]
  ------------------
  440|      0|        goto done;
  441|      0|    }
  442|      2|    wchar_t *path2 = _PyMem_RawWcsdup(path);
  443|      2|    PyMem_Free((void *)path);
  444|      2|    path = path2;
  445|      2|    while (path) {
  ------------------
  |  Branch (445:12): [True: 2, False: 0]
  ------------------
  446|      2|        wchar_t resolved[MAXPATHLEN + 1];
  447|      2|        int linklen = _Py_wreadlink(path, resolved, Py_ARRAY_LENGTH(resolved));
  ------------------
  |  |  196|      2|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  448|      2|        if (linklen == -1) {
  ------------------
  |  Branch (448:13): [True: 2, False: 0]
  ------------------
  449|      2|            r = PyUnicode_FromWideChar(path, -1);
  450|      2|            break;
  451|      2|        }
  452|      0|        if (_Py_isabs(resolved)) {
  ------------------
  |  Branch (452:13): [True: 0, False: 0]
  ------------------
  453|      0|            PyMem_RawFree((void *)path);
  454|      0|            path = _PyMem_RawWcsdup(resolved);
  455|      0|        } else {
  456|      0|            wchar_t *s = wcsrchr(path, SEP);
  ------------------
  |  |   29|      0|#  define SEP L'/'
  ------------------
  457|      0|            if (s) {
  ------------------
  |  Branch (457:17): [True: 0, False: 0]
  ------------------
  458|      0|                *s = L'\0';
  459|      0|            }
  460|      0|            path2 = _Py_join_relfile(path, resolved);
  461|      0|            if (path2) {
  ------------------
  |  Branch (461:17): [True: 0, False: 0]
  ------------------
  462|      0|                path2 = _Py_normpath(path2, -1);
  463|      0|            }
  464|      0|            PyMem_RawFree((void *)path);
  465|      0|            path = path2;
  466|      0|        }
  467|      0|        nlink++;
  468|       |        /* 40 is the Linux kernel 4.2 limit */
  469|      0|        if (nlink >= 40) {
  ------------------
  |  Branch (469:13): [True: 0, False: 0]
  ------------------
  470|      0|            PyErr_SetString(PyExc_OSError, "maximum number of symbolic links reached");
  471|      0|            break;
  472|      0|        }
  473|      0|    }
  474|      2|    if (!path) {
  ------------------
  |  Branch (474:9): [True: 0, False: 2]
  ------------------
  475|      0|        PyErr_NoMemory();
  476|      0|    }
  477|      2|done:
  478|      2|    PyMem_RawFree((void *)path);
  479|      2|    return r;
  480|       |
  481|       |#elif defined(HAVE_REALPATH)
  482|       |    PyObject *r = NULL;
  483|       |    struct stat st;
  484|       |    const char *narrow = NULL;
  485|       |    wchar_t *path = PyUnicode_AsWideCharString(pathobj, NULL);
  486|       |    if (!path) {
  487|       |        goto done;
  488|       |    }
  489|       |    narrow = Py_EncodeLocale(path, NULL);
  490|       |    if (!narrow) {
  491|       |        PyErr_NoMemory();
  492|       |        goto done;
  493|       |    }
  494|       |    if (lstat(narrow, &st)) {
  495|       |        PyErr_SetFromErrno(PyExc_OSError);
  496|       |        goto done;
  497|       |    }
  498|       |    if (!S_ISLNK(st.st_mode)) {
  499|       |        r = Py_NewRef(pathobj);
  500|       |        goto done;
  501|       |    }
  502|       |    wchar_t resolved[MAXPATHLEN+1];
  503|       |    if (_Py_wrealpath(path, resolved, MAXPATHLEN) == NULL) {
  504|       |        PyErr_SetFromErrno(PyExc_OSError);
  505|       |    } else {
  506|       |        r = PyUnicode_FromWideChar(resolved, -1);
  507|       |    }
  508|       |done:
  509|       |    PyMem_Free((void *)path);
  510|       |    PyMem_Free((void *)narrow);
  511|       |    return r;
  512|       |#elif defined(MS_WINDOWS)
  513|       |    HANDLE hFile;
  514|       |    wchar_t resolved[MAXPATHLEN+1];
  515|       |    int len = 0, err;
  516|       |    Py_ssize_t pathlen;
  517|       |    PyObject *result;
  518|       |
  519|       |    wchar_t *path = PyUnicode_AsWideCharString(pathobj, &pathlen);
  520|       |    if (!path) {
  521|       |        return NULL;
  522|       |    }
  523|       |    if (wcslen(path) != pathlen) {
  524|       |        PyErr_SetString(PyExc_ValueError, "path contains embedded nulls");
  525|       |        return NULL;
  526|       |    }
  527|       |
  528|       |    Py_BEGIN_ALLOW_THREADS
  529|       |    hFile = CreateFileW(path, 0, 0, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
  530|       |    if (hFile != INVALID_HANDLE_VALUE) {
  531|       |        len = GetFinalPathNameByHandleW(hFile, resolved, MAXPATHLEN, VOLUME_NAME_DOS);
  532|       |        err = len ? 0 : GetLastError();
  533|       |        CloseHandle(hFile);
  534|       |    } else {
  535|       |        err = GetLastError();
  536|       |    }
  537|       |    Py_END_ALLOW_THREADS
  538|       |
  539|       |    if (err) {
  540|       |        PyErr_SetFromWindowsErr(err);
  541|       |        result = NULL;
  542|       |    } else if (len <= MAXPATHLEN) {
  543|       |        const wchar_t *p = resolved;
  544|       |        if (0 == wcsncmp(p, L"\\\\?\\", 4)) {
  545|       |            if (GetFileAttributesW(&p[4]) != INVALID_FILE_ATTRIBUTES) {
  546|       |                p += 4;
  547|       |                len -= 4;
  548|       |            }
  549|       |        }
  550|       |        if (CompareStringOrdinal(path, (int)pathlen, p, len, TRUE) == CSTR_EQUAL) {
  551|       |            result = Py_NewRef(pathobj);
  552|       |        } else {
  553|       |            result = PyUnicode_FromWideChar(p, len);
  554|       |        }
  555|       |    } else {
  556|       |        result = Py_NewRef(pathobj);
  557|       |    }
  558|       |    PyMem_Free(path);
  559|       |    return result;
  560|       |#endif
  561|       |
  562|      0|    return Py_NewRef(pathobj);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  563|      2|}

_PyLong_FromUid:
  843|     32|{
  844|     32|    if (uid == (uid_t)-1)
  ------------------
  |  Branch (844:9): [True: 0, False: 32]
  ------------------
  845|      0|        return PyLong_FromLong(-1);
  846|     32|    return PyLong_FromUnsignedLong(uid);
  847|     32|}
_PyLong_FromGid:
  851|     32|{
  852|     32|    if (gid == (gid_t)-1)
  ------------------
  |  Branch (852:9): [True: 0, False: 32]
  ------------------
  853|      0|        return PyLong_FromLong(-1);
  854|     32|    return PyLong_FromUnsignedLong(gid);
  855|     32|}
PyOS_FSPath:
17135|     80|{
17136|       |    /* For error message reasons, this function is manually inlined in
17137|       |       path_converter(). */
17138|     80|    PyObject *func = NULL;
17139|     80|    PyObject *path_repr = NULL;
17140|       |
17141|     80|    if (PyUnicode_Check(path) || PyBytes_Check(path)) {
  ------------------
  |  |  103|     80|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    160|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 80, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyUnicode_Check(path) || PyBytes_Check(path)) {
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17142|     80|        return Py_NewRef(path);
  ------------------
  |  |  550|     80|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17143|     80|    }
17144|       |
17145|      0|    func = _PyObject_LookupSpecial(path, &_Py_ID(__fspath__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17146|      0|    if ((NULL == func) || (func == Py_None)) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (17146:9): [True: 0, False: 0]
  |  Branch (17146:27): [True: 0, False: 0]
  ------------------
17147|      0|        return PyErr_Format(PyExc_TypeError,
17148|      0|                            "expected str, bytes or os.PathLike object, "
17149|      0|                            "not %.200s",
17150|      0|                            _PyType_Name(Py_TYPE(path)));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17151|      0|    }
17152|       |
17153|      0|    path_repr = _PyObject_CallNoArgs(func);
17154|      0|    Py_DECREF(func);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17155|      0|    if (NULL == path_repr) {
  ------------------
  |  Branch (17155:9): [True: 0, False: 0]
  ------------------
17156|      0|        return NULL;
17157|      0|    }
17158|       |
17159|      0|    if (!(PyUnicode_Check(path_repr) || PyBytes_Check(path_repr))) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (!(PyUnicode_Check(path_repr) || PyBytes_Check(path_repr))) {
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17160|      0|        PyErr_Format(PyExc_TypeError,
17161|      0|                     "expected %.200s.__fspath__() to return str or bytes, "
17162|      0|                     "not %.200s", _PyType_Name(Py_TYPE(path)),
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17163|      0|                     _PyType_Name(Py_TYPE(path_repr)));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17164|      0|        Py_DECREF(path_repr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
17165|      0|        return NULL;
17166|      0|    }
17167|       |
17168|      0|    return path_repr;
17169|      0|}
PyInit_posix:
18877|      2|{
18878|      2|    return PyModuleDef_Init(&posixmodule);
18879|      2|}
posixmodule.c:path_converter:
 1381|     56|{
 1382|     56|    path_t *path = (path_t *)p;
 1383|     56|    PyObject *bytes = NULL;
 1384|     56|    Py_ssize_t length = 0;
 1385|     56|    int is_index, is_bytes, is_unicode;
 1386|     56|    const char *narrow;
 1387|     56|    PyObject *wo = NULL;
 1388|     56|    wchar_t *wide = NULL;
 1389|       |
 1390|     56|#define FORMAT_EXCEPTION(exc, fmt) \
 1391|     56|    PyErr_Format(exc, "%s%s" fmt, \
 1392|     56|        path->function_name ? path->function_name : "", \
 1393|     56|        path->function_name ? ": "                : "", \
 1394|     56|        path->argument_name ? path->argument_name : "path")
 1395|       |
 1396|       |    /* Py_CLEANUP_SUPPORTED support */
 1397|     56|    if (o == NULL) {
  ------------------
  |  Branch (1397:9): [True: 0, False: 56]
  ------------------
 1398|      0|        path_cleanup(path);
 1399|      0|        return 1;
 1400|      0|    }
 1401|       |
 1402|       |    /* Ensure it's always safe to call path_cleanup(). */
 1403|     56|    path->object = path->cleanup = NULL;
 1404|       |    /* path->object owns a reference to the original object */
 1405|     56|    Py_INCREF(o);
  ------------------
  |  |  310|     56|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1406|       |
 1407|     56|    if ((o == Py_None) && path->nullable) {
  ------------------
  |  |  616|     56|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1407:9): [True: 0, False: 56]
  |  Branch (1407:27): [True: 0, False: 0]
  ------------------
 1408|      0|        path->wide = NULL;
 1409|      0|        path->narrow = NULL;
 1410|      0|        path->fd = -1;
 1411|      0|        goto success_exit;
 1412|      0|    }
 1413|       |
 1414|       |    /* Only call this here so that we don't treat the return value of
 1415|       |       os.fspath() as an fd or buffer. */
 1416|     56|    is_index = path->allow_fd && PyIndex_Check(o);
  ------------------
  |  Branch (1416:16): [True: 46, False: 10]
  |  Branch (1416:34): [True: 0, False: 46]
  ------------------
 1417|     56|    is_bytes = PyBytes_Check(o);
  ------------------
  |  |   28|     56|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     56|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
 1418|     56|    is_unicode = PyUnicode_Check(o);
  ------------------
  |  |  103|     56|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     56|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
 1419|       |
 1420|     56|    if (!is_index && !is_unicode && !is_bytes) {
  ------------------
  |  Branch (1420:9): [True: 56, False: 0]
  |  Branch (1420:22): [True: 0, False: 56]
  |  Branch (1420:37): [True: 0, False: 0]
  ------------------
 1421|       |        /* Inline PyOS_FSPath() for better error messages. */
 1422|      0|        PyObject *func, *res;
 1423|       |
 1424|      0|        func = _PyObject_LookupSpecial(o, &_Py_ID(__fspath__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1425|      0|        if ((NULL == func) || (func == Py_None)) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1425:13): [True: 0, False: 0]
  |  Branch (1425:31): [True: 0, False: 0]
  ------------------
 1426|      0|            goto error_format;
 1427|      0|        }
 1428|      0|        res = _PyObject_CallNoArgs(func);
 1429|      0|        Py_DECREF(func);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1430|      0|        if (NULL == res) {
  ------------------
  |  Branch (1430:13): [True: 0, False: 0]
  ------------------
 1431|      0|            goto error_exit;
 1432|      0|        }
 1433|      0|        else if (PyUnicode_Check(res)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1434|      0|            is_unicode = 1;
 1435|      0|        }
 1436|      0|        else if (PyBytes_Check(res)) {
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1437|      0|            is_bytes = 1;
 1438|      0|        }
 1439|      0|        else {
 1440|      0|            PyErr_Format(PyExc_TypeError,
 1441|      0|                 "expected %.200s.__fspath__() to return str or bytes, "
 1442|      0|                 "not %.200s", _PyType_Name(Py_TYPE(o)),
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1443|      0|                 _PyType_Name(Py_TYPE(res)));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1444|      0|            Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1445|      0|            goto error_exit;
 1446|      0|        }
 1447|       |
 1448|       |        /* still owns a reference to the original object */
 1449|      0|        Py_SETREF(o, res);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1450|      0|    }
 1451|       |
 1452|     56|    if (is_unicode) {
  ------------------
  |  Branch (1452:9): [True: 56, False: 0]
  ------------------
 1453|     56|        if (path->make_wide) {
  ------------------
  |  Branch (1453:13): [True: 10, False: 46]
  ------------------
 1454|     10|            wide = PyUnicode_AsWideCharString(o, &length);
 1455|     10|            if (!wide) {
  ------------------
  |  Branch (1455:17): [True: 0, False: 10]
  ------------------
 1456|      0|                goto error_exit;
 1457|      0|            }
 1458|       |#ifdef MS_WINDOWS
 1459|       |            if (!path->nonstrict && length > 32767) {
 1460|       |                FORMAT_EXCEPTION(PyExc_ValueError, "%s too long for Windows");
 1461|       |                goto error_exit;
 1462|       |            }
 1463|       |#endif
 1464|     10|            if (!path->nonstrict && wcslen(wide) != (size_t)length) {
  ------------------
  |  Branch (1464:17): [True: 0, False: 10]
  |  Branch (1464:37): [True: 0, False: 0]
  ------------------
 1465|      0|                FORMAT_EXCEPTION(PyExc_ValueError,
  ------------------
  |  | 1391|      0|    PyErr_Format(exc, "%s%s" fmt, \
  |  | 1392|      0|        path->function_name ? path->function_name : "", \
  |  |  ------------------
  |  |  |  Branch (1392:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1393|      0|        path->function_name ? ": "                : "", \
  |  |  ------------------
  |  |  |  Branch (1393:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1394|      0|        path->argument_name ? path->argument_name : "path")
  |  |  ------------------
  |  |  |  Branch (1394:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1466|      0|                                 "embedded null character in %s");
 1467|      0|                goto error_exit;
 1468|      0|            }
 1469|       |
 1470|     10|            path->wide = wide;
 1471|     10|            path->narrow = NULL;
 1472|     10|            path->fd = -1;
 1473|     10|            wide = NULL;
 1474|     10|            goto success_exit;
 1475|     10|        }
 1476|     46|        bytes = PyUnicode_EncodeFSDefault(o);
 1477|     46|        if (!bytes) {
  ------------------
  |  Branch (1477:13): [True: 0, False: 46]
  ------------------
 1478|      0|            goto error_exit;
 1479|      0|        }
 1480|     46|    }
 1481|      0|    else if (is_bytes) {
  ------------------
  |  Branch (1481:14): [True: 0, False: 0]
  ------------------
 1482|      0|        bytes = Py_NewRef(o);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1483|      0|    }
 1484|      0|    else if (is_index) {
  ------------------
  |  Branch (1484:14): [True: 0, False: 0]
  ------------------
 1485|      0|        if (!_fd_converter(o, &path->fd)) {
  ------------------
  |  Branch (1485:13): [True: 0, False: 0]
  ------------------
 1486|      0|            goto error_exit;
 1487|      0|        }
 1488|      0|        path->wide = NULL;
 1489|      0|        path->narrow = NULL;
 1490|      0|        path->is_fd = true;
 1491|      0|        goto success_exit;
 1492|      0|    }
 1493|      0|    else {
 1494|      0| error_format:
 1495|      0|        PyErr_Format(PyExc_TypeError, "%s%s%s should be %s, not %.200s",
 1496|      0|            path->function_name ? path->function_name : "",
  ------------------
  |  Branch (1496:13): [True: 0, False: 0]
  ------------------
 1497|      0|            path->function_name ? ": "                : "",
  ------------------
  |  Branch (1497:13): [True: 0, False: 0]
  ------------------
 1498|      0|            path->argument_name ? path->argument_name : "path",
  ------------------
  |  Branch (1498:13): [True: 0, False: 0]
  ------------------
 1499|      0|            path->allow_fd && path->nullable ? "string, bytes, os.PathLike, "
  ------------------
  |  Branch (1499:13): [True: 0, False: 0]
  |  Branch (1499:31): [True: 0, False: 0]
  ------------------
 1500|      0|                                               "integer or None" :
 1501|      0|            path->allow_fd ? "string, bytes, os.PathLike or integer" :
  ------------------
  |  Branch (1501:13): [True: 0, False: 0]
  ------------------
 1502|      0|            path->nullable ? "string, bytes, os.PathLike or None" :
  ------------------
  |  Branch (1502:13): [True: 0, False: 0]
  ------------------
 1503|      0|                             "string, bytes or os.PathLike",
 1504|      0|            _PyType_Name(Py_TYPE(o)));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1505|      0|        goto error_exit;
 1506|      0|    }
 1507|       |
 1508|     46|    length = PyBytes_GET_SIZE(bytes);
  ------------------
  |  |   33|     46|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1509|     46|    narrow = PyBytes_AS_STRING(bytes);
  ------------------
  |  |   27|     46|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1510|     46|    if (!path->nonstrict && strlen(narrow) != (size_t)length) {
  ------------------
  |  Branch (1510:9): [True: 46, False: 0]
  |  Branch (1510:29): [True: 0, False: 46]
  ------------------
 1511|      0|        FORMAT_EXCEPTION(PyExc_ValueError, "embedded null character in %s");
  ------------------
  |  | 1391|      0|    PyErr_Format(exc, "%s%s" fmt, \
  |  | 1392|      0|        path->function_name ? path->function_name : "", \
  |  |  ------------------
  |  |  |  Branch (1392:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1393|      0|        path->function_name ? ": "                : "", \
  |  |  ------------------
  |  |  |  Branch (1393:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1394|      0|        path->argument_name ? path->argument_name : "path")
  |  |  ------------------
  |  |  |  Branch (1394:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1512|      0|        goto error_exit;
 1513|      0|    }
 1514|       |
 1515|     46|    if (path->make_wide) {
  ------------------
  |  Branch (1515:9): [True: 0, False: 46]
  ------------------
 1516|      0|        wo = PyUnicode_DecodeFSDefaultAndSize(narrow, length);
 1517|      0|        if (!wo) {
  ------------------
  |  Branch (1517:13): [True: 0, False: 0]
  ------------------
 1518|      0|            goto error_exit;
 1519|      0|        }
 1520|       |
 1521|      0|        wide = PyUnicode_AsWideCharString(wo, &length);
 1522|      0|        Py_DECREF(wo);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1523|      0|        if (!wide) {
  ------------------
  |  Branch (1523:13): [True: 0, False: 0]
  ------------------
 1524|      0|            goto error_exit;
 1525|      0|        }
 1526|       |#ifdef MS_WINDOWS
 1527|       |        if (!path->nonstrict && length > 32767) {
 1528|       |            FORMAT_EXCEPTION(PyExc_ValueError, "%s too long for Windows");
 1529|       |            goto error_exit;
 1530|       |        }
 1531|       |#endif
 1532|      0|        if (!path->nonstrict && wcslen(wide) != (size_t)length) {
  ------------------
  |  Branch (1532:13): [True: 0, False: 0]
  |  Branch (1532:33): [True: 0, False: 0]
  ------------------
 1533|      0|            FORMAT_EXCEPTION(PyExc_ValueError,
  ------------------
  |  | 1391|      0|    PyErr_Format(exc, "%s%s" fmt, \
  |  | 1392|      0|        path->function_name ? path->function_name : "", \
  |  |  ------------------
  |  |  |  Branch (1392:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1393|      0|        path->function_name ? ": "                : "", \
  |  |  ------------------
  |  |  |  Branch (1393:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1394|      0|        path->argument_name ? path->argument_name : "path")
  |  |  ------------------
  |  |  |  Branch (1394:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1534|      0|                             "embedded null character in %s");
 1535|      0|            goto error_exit;
 1536|      0|        }
 1537|      0|        path->wide = wide;
 1538|      0|        path->narrow = NULL;
 1539|      0|        Py_DECREF(bytes);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1540|      0|        wide = NULL;
 1541|      0|    }
 1542|     46|    else {
 1543|     46|        path->wide = NULL;
 1544|     46|        path->narrow = narrow;
 1545|     46|        if (bytes == o) {
  ------------------
  |  Branch (1545:13): [True: 0, False: 46]
  ------------------
 1546|       |            /* Still a reference owned by path->object, don't have to
 1547|       |            worry about path->narrow is used after free. */
 1548|      0|            Py_DECREF(bytes);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1549|      0|        }
 1550|     46|        else {
 1551|     46|            path->cleanup = bytes;
 1552|     46|        }
 1553|     46|    }
 1554|     46|    path->fd = -1;
 1555|       |
 1556|     56| success_exit:
 1557|     56|    path->value_error = 0;
 1558|     56|    path->length = length;
 1559|     56|    path->object = o;
 1560|     56|    return Py_CLEANUP_SUPPORTED;
  ------------------
  |  |   57|     56|#define Py_CLEANUP_SUPPORTED 0x20000
  ------------------
 1561|       |
 1562|      0| error_exit:
 1563|      0|    Py_XDECREF(o);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1564|      0|    Py_XDECREF(bytes);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1565|      0|    PyMem_Free(wide);
 1566|      0|    if (!path->suppress_value_error ||
  ------------------
  |  Branch (1566:9): [True: 0, False: 0]
  ------------------
 1567|      0|        !PyErr_ExceptionMatches(PyExc_ValueError))
  ------------------
  |  Branch (1567:9): [True: 0, False: 0]
  ------------------
 1568|      0|    {
 1569|      0|        return 0;
 1570|      0|    }
 1571|      0|    PyErr_Clear();
 1572|      0|    path->wide = NULL;
 1573|      0|    path->narrow = NULL;
 1574|      0|    path->fd = -1;
 1575|      0|    path->value_error = 1;
 1576|      0|    path->length = 0;
 1577|      0|    path->object = NULL;
 1578|      0|    return Py_CLEANUP_SUPPORTED;
  ------------------
  |  |   57|      0|#define Py_CLEANUP_SUPPORTED 0x20000
  ------------------
 1579|      0|}
posixmodule.c:dir_fd_converter:
 1182|      4|{
 1183|      4|    if (o == Py_None) {
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1183:9): [True: 4, False: 0]
  ------------------
 1184|      4|        *(int *)p = DEFAULT_DIR_FD;
  ------------------
  |  | 1138|      4|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
 1185|      4|        return 1;
 1186|      4|    }
 1187|      0|    else if (PyIndex_Check(o)) {
  ------------------
  |  Branch (1187:14): [True: 0, False: 0]
  ------------------
 1188|      0|        return _fd_converter(o, (int *)p);
 1189|      0|    }
 1190|      0|    else {
 1191|      0|        PyErr_Format(PyExc_TypeError,
 1192|      0|                     "argument should be integer or None, not %.200s",
 1193|      0|                     _PyType_Name(Py_TYPE(o)));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1194|      0|        return 0;
 1195|      0|    }
 1196|      4|}
posixmodule.c:os_stat_impl:
 3305|     38|{
 3306|     38|    return posix_do_stat(module, "stat", path, dir_fd, follow_symlinks);
 3307|     38|}
posixmodule.c:posix_do_stat:
 2877|     38|{
 2878|     38|    STRUCT_STAT st;
  ------------------
  |  |  411|     38|#  define STRUCT_STAT struct stat
  ------------------
 2879|     38|    int result;
 2880|       |
 2881|     38|#ifdef HAVE_FSTATAT
 2882|     38|    int fstatat_unavailable = 0;
 2883|     38|#endif
 2884|       |
 2885|       |#if !defined(MS_WINDOWS) && !defined(HAVE_FSTATAT) && !defined(HAVE_LSTAT)
 2886|       |    if (follow_symlinks_specified(function_name, follow_symlinks))
 2887|       |        return NULL;
 2888|       |#endif
 2889|       |
 2890|     38|    if (path_and_dir_fd_invalid("stat", path, dir_fd) ||
  ------------------
  |  Branch (2890:9): [True: 0, False: 38]
  ------------------
 2891|     38|        dir_fd_and_fd_invalid("stat", dir_fd, path->fd) ||
  ------------------
  |  Branch (2891:9): [True: 0, False: 38]
  ------------------
 2892|     38|        fd_and_follow_symlinks_invalid("stat", path->is_fd, follow_symlinks))
  ------------------
  |  Branch (2892:9): [True: 0, False: 38]
  ------------------
 2893|      0|        return NULL;
 2894|       |
 2895|     38|    Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|     38|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|     38|                        PyThreadState *_save; \
  |  |  121|     38|                        _save = PyEval_SaveThread();
  ------------------
 2896|     38|    if (path->is_fd) {
  ------------------
  |  Branch (2896:9): [True: 0, False: 38]
  ------------------
 2897|      0|        result = FSTAT(path->fd, &st);
  ------------------
  |  |  410|      0|#  define FSTAT fstat
  ------------------
 2898|      0|    }
 2899|       |#ifdef MS_WINDOWS
 2900|       |    else if (follow_symlinks)
 2901|       |        result = win32_stat(path->wide, &st);
 2902|       |    else
 2903|       |        result = win32_lstat(path->wide, &st);
 2904|       |#else
 2905|     38|    else
 2906|     38|#if defined(HAVE_LSTAT)
 2907|     38|    if ((!follow_symlinks) && (dir_fd == DEFAULT_DIR_FD))
  ------------------
  |  | 1138|      0|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
  |  Branch (2907:9): [True: 0, False: 38]
  |  Branch (2907:31): [True: 0, False: 0]
  ------------------
 2908|      0|        result = LSTAT(path->narrow, &st);
  ------------------
  |  |  409|      0|#  define LSTAT lstat
  ------------------
 2909|     38|    else
 2910|     38|#endif /* HAVE_LSTAT */
 2911|     38|#ifdef HAVE_FSTATAT
 2912|     38|    if ((dir_fd != DEFAULT_DIR_FD) || !follow_symlinks) {
  ------------------
  |  | 1138|     38|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
  |  Branch (2912:9): [True: 0, False: 38]
  |  Branch (2912:39): [True: 0, False: 38]
  ------------------
 2913|      0|        if (HAVE_FSTATAT_RUNTIME) {
  ------------------
  |  |  600|      0|#  define HAVE_FSTATAT_RUNTIME 1
  |  |  ------------------
  |  |  |  Branch (600:32): [True: 0, Folded]
  |  |  ------------------
  ------------------
 2914|      0|            result = fstatat(dir_fd, path->narrow, &st,
 2915|      0|                         follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW);
  ------------------
  |  Branch (2915:26): [True: 0, False: 0]
  ------------------
 2916|       |
 2917|      0|        } else {
 2918|      0|            fstatat_unavailable = 1;
 2919|      0|        }
 2920|      0|    } else
 2921|     38|#endif /* HAVE_FSTATAT */
 2922|     38|        result = STAT(path->narrow, &st);
  ------------------
  |  |  408|     38|#  define STAT stat
  ------------------
 2923|     38|#endif /* MS_WINDOWS */
 2924|     38|    Py_END_ALLOW_THREADS
  ------------------
  |  |  124|     38|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|     38|                 }
  ------------------
 2925|       |
 2926|     38|#ifdef HAVE_FSTATAT
 2927|     38|    if (fstatat_unavailable) {
  ------------------
  |  Branch (2927:9): [True: 0, False: 38]
  ------------------
 2928|      0|        argument_unavailable_error("stat", "dir_fd");
 2929|      0|        return NULL;
 2930|      0|    }
 2931|     38|#endif
 2932|       |
 2933|     38|    if (result != 0) {
  ------------------
  |  Branch (2933:9): [True: 10, False: 28]
  ------------------
 2934|     10|        return path_error(path);
 2935|     10|    }
 2936|       |
 2937|     28|    return _pystat_fromstructstat(module, &st);
 2938|     38|}
posixmodule.c:path_and_dir_fd_invalid:
 1627|     38|{
 1628|     38|    if (!path->wide && (dir_fd != DEFAULT_DIR_FD) && !path->narrow) {
  ------------------
  |  | 1138|     38|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
  |  Branch (1628:9): [True: 38, False: 0]
  |  Branch (1628:24): [True: 0, False: 38]
  |  Branch (1628:54): [True: 0, False: 0]
  ------------------
 1629|      0|        PyErr_Format(PyExc_ValueError,
 1630|      0|                     "%s: can't specify dir_fd without matching path",
 1631|      0|                     function_name);
 1632|      0|        return 1;
 1633|      0|    }
 1634|     38|    return 0;
 1635|     38|}
posixmodule.c:dir_fd_and_fd_invalid:
 1639|     38|{
 1640|     38|    if ((dir_fd != DEFAULT_DIR_FD) && (fd != -1)) {
  ------------------
  |  | 1138|     38|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
  |  Branch (1640:9): [True: 0, False: 38]
  |  Branch (1640:39): [True: 0, False: 0]
  ------------------
 1641|      0|        PyErr_Format(PyExc_ValueError,
 1642|      0|                     "%s: can't specify both dir_fd and fd",
 1643|      0|                     function_name);
 1644|      0|        return 1;
 1645|      0|    }
 1646|     38|    return 0;
 1647|     38|}
posixmodule.c:fd_and_follow_symlinks_invalid:
 1652|     38|{
 1653|     38|    if (is_fd && (!follow_symlinks)) {
  ------------------
  |  Branch (1653:9): [True: 0, False: 38]
  |  Branch (1653:18): [True: 0, False: 0]
  ------------------
 1654|      0|        PyErr_Format(PyExc_ValueError,
 1655|      0|                     "%s: cannot use fd and follow_symlinks together",
 1656|      0|                     function_name);
 1657|      0|        return 1;
 1658|      0|    }
 1659|     38|    return 0;
 1660|     38|}
posixmodule.c:path_error:
 1935|     10|{
 1936|     10|    return path_object_error(path->object);
 1937|     10|}
posixmodule.c:path_object_error:
 1913|     10|{
 1914|       |#ifdef MS_WINDOWS
 1915|       |    return PyErr_SetExcFromWindowsErrWithFilenameObject(
 1916|       |                PyExc_OSError, 0, path);
 1917|       |#else
 1918|     10|    return posix_path_object_error(path);
 1919|     10|#endif
 1920|     10|}
posixmodule.c:posix_path_object_error:
 1907|     10|{
 1908|     10|    return PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, path);
 1909|     10|}
posixmodule.c:_pystat_fromstructstat:
 2750|     28|{
 2751|     28|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (2751:5): [True: 28, False: 0]
  ------------------
 2752|       |
 2753|     28|    _posixstate *state = get_posix_state(module);
 2754|     28|    PyObject *StatResultType = state->StatResultType;
 2755|     28|    PyObject *v = PyStructSequence_New((PyTypeObject *)StatResultType);
 2756|     28|    if (v == NULL) {
  ------------------
  |  Branch (2756:9): [True: 0, False: 28]
  ------------------
 2757|      0|        return NULL;
 2758|      0|    }
 2759|       |
 2760|     28|#define SET_ITEM(pos, expr) \
 2761|     28|    do { \
 2762|     28|        PyObject *obj = (expr); \
 2763|     28|        if (obj == NULL) { \
 2764|     28|            goto error; \
 2765|     28|        } \
 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
 2767|     28|    } while (0)
 2768|       |
 2769|     28|    SET_ITEM(0, PyLong_FromLong((long)st->st_mode));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2770|       |#ifdef MS_WINDOWS
 2771|       |    SET_ITEM(1, _pystat_l128_from_l64_l64(st->st_ino, st->st_ino_high));
 2772|       |    SET_ITEM(2, PyLong_FromUnsignedLongLong(st->st_dev));
 2773|       |#else
 2774|     28|    static_assert(sizeof(unsigned long long) >= sizeof(st->st_ino),
 2775|     28|                  "stat.st_ino is larger than unsigned long long");
 2776|     28|    SET_ITEM(1, PyLong_FromUnsignedLongLong(st->st_ino));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2777|     28|    SET_ITEM(2, _PyLong_FromDev(st->st_dev));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2778|     28|#endif
 2779|     28|    SET_ITEM(3, PyLong_FromLong((long)st->st_nlink));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2780|       |#if defined(MS_WINDOWS)
 2781|       |    SET_ITEM(4, PyLong_FromLong(0));
 2782|       |    SET_ITEM(5, PyLong_FromLong(0));
 2783|       |#else
 2784|     28|    SET_ITEM(4, _PyLong_FromUid(st->st_uid));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2785|     28|    SET_ITEM(5, _PyLong_FromGid(st->st_gid));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2786|     28|#endif
 2787|     28|    static_assert(sizeof(long long) >= sizeof(st->st_size),
 2788|     28|                  "stat.st_size is larger than long long");
 2789|     28|    SET_ITEM(6, PyLong_FromLongLong(st->st_size));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2790|       |
 2791|       |    // Set st_atime, st_mtime and st_ctime
 2792|     28|    unsigned long ansec, mnsec, cnsec;
 2793|     28|#if defined(HAVE_STAT_TV_NSEC)
 2794|     28|    ansec = st->st_atim.tv_nsec;
 2795|     28|    mnsec = st->st_mtim.tv_nsec;
 2796|     28|    cnsec = st->st_ctim.tv_nsec;
 2797|       |#elif defined(HAVE_STAT_TV_NSEC2)
 2798|       |    ansec = st->st_atimespec.tv_nsec;
 2799|       |    mnsec = st->st_mtimespec.tv_nsec;
 2800|       |    cnsec = st->st_ctimespec.tv_nsec;
 2801|       |#elif defined(HAVE_STAT_NSEC)
 2802|       |    ansec = st->st_atime_nsec;
 2803|       |    mnsec = st->st_mtime_nsec;
 2804|       |    cnsec = st->st_ctime_nsec;
 2805|       |#else
 2806|       |    ansec = mnsec = cnsec = 0;
 2807|       |#endif
 2808|     28|    if (fill_time(state, v, 7, 10, 13, st->st_atime, ansec) < 0) {
  ------------------
  |  Branch (2808:9): [True: 0, False: 28]
  ------------------
 2809|      0|        goto error;
 2810|      0|    }
 2811|     28|    if (fill_time(state, v, 8, 11, 14, st->st_mtime, mnsec) < 0) {
  ------------------
  |  Branch (2811:9): [True: 0, False: 28]
  ------------------
 2812|      0|        goto error;
 2813|      0|    }
 2814|     28|    if (fill_time(state, v, 9, 12, 15, st->st_ctime, cnsec) < 0) {
  ------------------
  |  Branch (2814:9): [True: 0, False: 28]
  ------------------
 2815|      0|        goto error;
 2816|      0|    }
 2817|       |
 2818|     28|#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
 2819|     28|    SET_ITEM(ST_BLKSIZE_IDX, PyLong_FromLong((long)st->st_blksize));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2820|     28|#endif
 2821|     28|#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
 2822|     28|    SET_ITEM(ST_BLOCKS_IDX, PyLong_FromLong((long)st->st_blocks));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2823|     28|#endif
 2824|     28|#ifdef HAVE_STRUCT_STAT_ST_RDEV
 2825|     28|    SET_ITEM(ST_RDEV_IDX, _PyLong_FromDev(st->st_rdev));
  ------------------
  |  | 2761|     28|    do { \
  |  | 2762|     28|        PyObject *obj = (expr); \
  |  | 2763|     28|        if (obj == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2763:13): [True: 0, False: 28]
  |  |  ------------------
  |  | 2764|      0|            goto error; \
  |  | 2765|      0|        } \
  |  | 2766|     28|        PyStructSequence_SET_ITEM(v, (pos), obj); \
  |  |  ------------------
  |  |  |  |   11|     28|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 2767|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2767:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2826|     28|#endif
 2827|       |#ifdef HAVE_STRUCT_STAT_ST_GEN
 2828|       |    SET_ITEM(ST_GEN_IDX, PyLong_FromLong((long)st->st_gen));
 2829|       |#endif
 2830|       |#if defined(HAVE_STRUCT_STAT_ST_BIRTHTIME)
 2831|       |    {
 2832|       |      unsigned long bsec, bnsec;
 2833|       |      bsec = (long)st->st_birthtime;
 2834|       |#ifdef HAVE_STAT_TV_NSEC2
 2835|       |      bnsec = st->st_birthtimespec.tv_nsec;
 2836|       |#else
 2837|       |      bnsec = 0;
 2838|       |#endif
 2839|       |      SET_ITEM(ST_BIRTHTIME_IDX, PyFloat_FromDouble(bsec + bnsec * 1e-9));
 2840|       |    }
 2841|       |#elif defined(MS_WINDOWS)
 2842|       |    if (fill_time(state, v, -1, ST_BIRTHTIME_IDX, ST_BIRTHTIME_NS_IDX,
 2843|       |                  st->st_birthtime, st->st_birthtime_nsec) < 0) {
 2844|       |        goto error;
 2845|       |    }
 2846|       |#endif
 2847|       |#ifdef HAVE_STRUCT_STAT_ST_FLAGS
 2848|       |    SET_ITEM(ST_FLAGS_IDX, PyLong_FromLong((long)st->st_flags));
 2849|       |#endif
 2850|       |#ifdef HAVE_STRUCT_STAT_ST_FILE_ATTRIBUTES
 2851|       |    SET_ITEM(ST_FILE_ATTRIBUTES_IDX,
 2852|       |             PyLong_FromUnsignedLong(st->st_file_attributes));
 2853|       |#endif
 2854|       |#ifdef HAVE_STRUCT_STAT_ST_FSTYPE
 2855|       |   SET_ITEM(ST_FSTYPE_IDX, PyUnicode_FromString(st->st_fstype));
 2856|       |#endif
 2857|       |#ifdef HAVE_STRUCT_STAT_ST_REPARSE_TAG
 2858|       |    SET_ITEM(ST_REPARSE_TAG_IDX, PyLong_FromUnsignedLong(st->st_reparse_tag));
 2859|       |#endif
 2860|       |
 2861|     28|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (2861:5): [True: 28, False: 0]
  ------------------
 2862|     28|    return v;
 2863|       |
 2864|      0|error:
 2865|      0|    Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2866|      0|    return NULL;
 2867|       |
 2868|     28|#undef SET_ITEM
 2869|     28|}
posixmodule.c:get_posix_state:
 1230|     34|{
 1231|     34|    void *state = _PyModule_GetState(module);
 1232|     34|    assert(state != NULL);
  ------------------
  |  Branch (1232:5): [True: 34, False: 0]
  ------------------
 1233|     34|    return (_posixstate *)state;
 1234|     34|}
posixmodule.c:_PyLong_FromDev:
 1074|     58|{
 1075|     58|#ifdef NODEV
 1076|     58|    if (dev == NODEV) {
  ------------------
  |  Branch (1076:9): [True: 2, False: 56]
  ------------------
 1077|      2|        return PyLong_FromLongLong((long long)dev);
 1078|      2|    }
 1079|     56|#endif
 1080|     56|    return PyLong_FromUnsignedLongLong((unsigned long long)dev);
 1081|     58|}
posixmodule.c:fill_time:
 2686|     84|{
 2687|     84|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (2687:5): [True: 84, False: 0]
  ------------------
 2688|     84|    assert(nsec < SEC_TO_NS);
  ------------------
  |  Branch (2688:5): [True: 84, False: 0]
  ------------------
 2689|       |
 2690|     84|    if (s_index >= 0) {
  ------------------
  |  Branch (2690:9): [True: 84, False: 0]
  ------------------
 2691|     84|        PyObject *s = _PyLong_FromTime_t(sec);
 2692|     84|        if (s == NULL) {
  ------------------
  |  Branch (2692:13): [True: 0, False: 84]
  ------------------
 2693|      0|            return -1;
 2694|      0|        }
 2695|     84|        PyStructSequence_SET_ITEM(v, s_index, s);
  ------------------
  |  |   11|     84|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
 2696|     84|    }
 2697|       |
 2698|     84|    if (f_index >= 0) {
  ------------------
  |  Branch (2698:9): [True: 84, False: 0]
  ------------------
 2699|     84|        PyObject *float_s = PyFloat_FromDouble((double)sec + 1e-9 * nsec);
 2700|     84|        if (float_s == NULL) {
  ------------------
  |  Branch (2700:13): [True: 0, False: 84]
  ------------------
 2701|      0|            return -1;
 2702|      0|        }
 2703|     84|        PyStructSequence_SET_ITEM(v, f_index, float_s);
  ------------------
  |  |   11|     84|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
 2704|     84|    }
 2705|       |
 2706|     84|    if (ns_index >= 0) {
  ------------------
  |  Branch (2706:9): [True: 84, False: 0]
  ------------------
 2707|     84|        PyObject *ns_total = stat_nanosecond_timestamp(state, sec, nsec);
 2708|     84|        if (ns_total == NULL) {
  ------------------
  |  Branch (2708:13): [True: 0, False: 84]
  ------------------
 2709|      0|            return -1;
 2710|      0|        }
 2711|     84|        PyStructSequence_SET_ITEM(v, ns_index, ns_total);
  ------------------
  |  |   11|     84|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
 2712|     84|    }
 2713|       |
 2714|     84|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (2714:5): [True: 84, False: 0]
  ------------------
 2715|     84|    return 0;
 2716|     84|}
posixmodule.c:stat_nanosecond_timestamp:
 2649|     84|{
 2650|       |#if SIZEOF_TIME_T == 4
 2651|       |    return PyLong_FromLongLong(sec * SEC_TO_NS + nsec);
 2652|       |#else
 2653|       |    /* 1677-09-21 00:12:44 to 2262-04-11 23:47:15 UTC inclusive */
 2654|     84|    if ((LLONG_MIN/SEC_TO_NS) <= sec && sec <= (LLONG_MAX/SEC_TO_NS - 1)) {
  ------------------
  |  | 2646|     84|#define SEC_TO_NS (1000000000LL)
  ------------------
                  if ((LLONG_MIN/SEC_TO_NS) <= sec && sec <= (LLONG_MAX/SEC_TO_NS - 1)) {
  ------------------
  |  | 2646|     84|#define SEC_TO_NS (1000000000LL)
  ------------------
  |  Branch (2654:9): [True: 84, False: 0]
  |  Branch (2654:41): [True: 84, False: 0]
  ------------------
 2655|     84|        return PyLong_FromLongLong(sec * SEC_TO_NS + nsec);
  ------------------
  |  | 2646|     84|#define SEC_TO_NS (1000000000LL)
  ------------------
 2656|     84|    }
 2657|      0|    else
 2658|      0|    {
 2659|      0|        PyObject *ns_total = NULL;
 2660|      0|        PyObject *s_in_ns = NULL;
 2661|      0|        PyObject *s = _PyLong_FromTime_t(sec);
 2662|      0|        PyObject *ns_fractional = PyLong_FromUnsignedLong(nsec);
 2663|      0|        if (s == NULL || ns_fractional == NULL) {
  ------------------
  |  Branch (2663:13): [True: 0, False: 0]
  |  Branch (2663:26): [True: 0, False: 0]
  ------------------
 2664|      0|            goto exit;
 2665|      0|        }
 2666|       |
 2667|      0|        s_in_ns = PyNumber_Multiply(s, state->billion);
 2668|      0|        if (s_in_ns == NULL) {
  ------------------
  |  Branch (2668:13): [True: 0, False: 0]
  ------------------
 2669|      0|            goto exit;
 2670|      0|        }
 2671|       |
 2672|      0|        ns_total = PyNumber_Add(s_in_ns, ns_fractional);
 2673|       |
 2674|      0|    exit:
 2675|      0|        Py_XDECREF(s);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2676|      0|        Py_XDECREF(ns_fractional);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2677|      0|        Py_XDECREF(s_in_ns);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2678|      0|        return ns_total;
 2679|      0|    }
 2680|     84|#endif
 2681|     84|}
posixmodule.c:path_cleanup:
 1371|     56|{
 1372|     56|    wchar_t *wide = (wchar_t *)path->wide;
 1373|     56|    path->wide = NULL;
 1374|     56|    PyMem_Free(wide);
 1375|     56|    Py_CLEAR(path->object);
  ------------------
  |  |  484|     56|    do { \
  |  |  485|     56|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     56|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     56|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     56|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     56|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 56, False: 0]
  |  |  ------------------
  |  |  488|     56|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     56|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     56|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     56|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     56|        } \
  |  |  491|     56|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 56]
  |  |  ------------------
  ------------------
 1376|       |    Py_CLEAR(path->cleanup);
  ------------------
  |  |  484|     56|    do { \
  |  |  485|     56|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     56|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     56|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     56|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     56|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 46, False: 10]
  |  |  ------------------
  |  |  488|     46|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     46|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     46|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     46|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     46|        } \
  |  |  491|     56|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 56]
  |  |  ------------------
  ------------------
 1377|     56|}
posixmodule.c:follow_symlinks_specified:
 1617|      2|{
 1618|      2|    if (follow_symlinks)
  ------------------
  |  Branch (1618:9): [True: 2, False: 0]
  ------------------
 1619|      2|        return 0;
 1620|       |
 1621|      0|    argument_unavailable_error(function_name, "follow_symlinks");
 1622|      0|    return 1;
 1623|      2|}
posixmodule.c:dir_fd_and_follow_symlinks_invalid:
 1665|      2|{
 1666|      2|    if ((dir_fd != DEFAULT_DIR_FD) && (!follow_symlinks)) {
  ------------------
  |  | 1138|      2|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
  |  Branch (1666:9): [True: 0, False: 2]
  |  Branch (1666:39): [True: 0, False: 0]
  ------------------
 1667|      0|        PyErr_Format(PyExc_ValueError,
 1668|      0|                     "%s: cannot use dir_fd and follow_symlinks together",
 1669|      0|                     function_name);
 1670|      0|        return 1;
 1671|      0|    }
 1672|      2|    return 0;
 1673|      2|}
posixmodule.c:os_listdir_impl:
 5142|      8|{
 5143|      8|    if (PySys_Audit("os.listdir", "O",
  ------------------
  |  Branch (5143:9): [True: 0, False: 8]
  ------------------
 5144|      8|                    path->object ? path->object : Py_None) < 0) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (5144:21): [True: 8, False: 0]
  ------------------
 5145|      0|        return NULL;
 5146|      0|    }
 5147|       |#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
 5148|       |    return _listdir_windows_no_opendir(path, NULL);
 5149|       |#else
 5150|      8|    return _posix_listdir(path, NULL);
 5151|      8|#endif
 5152|      8|}
posixmodule.c:_posix_listdir:
 5004|      8|{
 5005|      8|    PyObject *v;
 5006|      8|    DIR *dirp = NULL;
 5007|      8|    struct dirent *ep;
 5008|      8|    int return_str; /* if false, return bytes */
 5009|      8|#ifdef HAVE_FDOPENDIR
 5010|      8|    int fd = -1;
 5011|      8|#endif
 5012|       |
 5013|      8|    errno = 0;
 5014|      8|#ifdef HAVE_FDOPENDIR
 5015|      8|    if (path->is_fd) {
  ------------------
  |  Branch (5015:9): [True: 0, False: 8]
  ------------------
 5016|      0|      if (HAVE_FDOPENDIR_RUNTIME) {
  ------------------
  |  |  609|      0|#  define HAVE_FDOPENDIR_RUNTIME 1
  |  |  ------------------
  |  |  |  Branch (609:34): [True: 0, Folded]
  |  |  ------------------
  ------------------
 5017|       |        /* closedir() closes the FD, so we duplicate it */
 5018|      0|        fd = _Py_dup(path->fd);
 5019|      0|        if (fd == -1)
  ------------------
  |  Branch (5019:13): [True: 0, False: 0]
  ------------------
 5020|      0|            return NULL;
 5021|       |
 5022|      0|        return_str = 1;
 5023|       |
 5024|      0|        Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      0|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      0|                        PyThreadState *_save; \
  |  |  121|      0|                        _save = PyEval_SaveThread();
  ------------------
 5025|      0|        dirp = fdopendir(fd);
 5026|      0|        Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      0|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      0|                 }
  ------------------
 5027|      0|      } else {
 5028|      0|        PyErr_SetString(PyExc_TypeError,
 5029|      0|            "listdir: path should be string, bytes, os.PathLike or None, not int");
 5030|      0|        return NULL;
 5031|      0|      }
 5032|      0|    }
 5033|      8|    else
 5034|      8|#endif
 5035|      8|    {
 5036|      8|        const char *name;
 5037|      8|        if (path->narrow) {
  ------------------
  |  Branch (5037:13): [True: 8, False: 0]
  ------------------
 5038|      8|            name = path->narrow;
 5039|       |            /* only return bytes if they specified a bytes object */
 5040|      8|            return_str = !PyBytes_Check(path->object);
  ------------------
  |  |   28|      8|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
 5041|      8|        }
 5042|      0|        else {
 5043|      0|            name = ".";
 5044|      0|            return_str = 1;
 5045|      0|        }
 5046|       |
 5047|      8|        Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      8|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      8|                        PyThreadState *_save; \
  |  |  121|      8|                        _save = PyEval_SaveThread();
  ------------------
 5048|      8|        dirp = opendir(name);
 5049|      8|        Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      8|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      8|                 }
  ------------------
 5050|      8|    }
 5051|       |
 5052|      8|    if (dirp == NULL) {
  ------------------
  |  Branch (5052:9): [True: 0, False: 8]
  ------------------
 5053|      0|        path_error(path);
 5054|      0|        list = NULL;
 5055|      0|#ifdef HAVE_FDOPENDIR
 5056|      0|        if (fd != -1) {
  ------------------
  |  Branch (5056:13): [True: 0, False: 0]
  ------------------
 5057|      0|            Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      0|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      0|                        PyThreadState *_save; \
  |  |  121|      0|                        _save = PyEval_SaveThread();
  ------------------
 5058|      0|            close(fd);
 5059|      0|            Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      0|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      0|                 }
  ------------------
 5060|      0|        }
 5061|      0|#endif
 5062|      0|        goto exit;
 5063|      0|    }
 5064|      8|    if ((list = PyList_New(0)) == NULL) {
  ------------------
  |  Branch (5064:9): [True: 0, False: 8]
  ------------------
 5065|      0|        goto exit;
 5066|      0|    }
 5067|    576|    for (;;) {
 5068|    576|        errno = 0;
 5069|    576|        Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|    576|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|    576|                        PyThreadState *_save; \
  |  |  121|    576|                        _save = PyEval_SaveThread();
  ------------------
 5070|    576|        ep = readdir(dirp);
 5071|    576|        Py_END_ALLOW_THREADS
  ------------------
  |  |  124|    576|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|    576|                 }
  ------------------
 5072|    576|        if (ep == NULL) {
  ------------------
  |  Branch (5072:13): [True: 8, False: 568]
  ------------------
 5073|      8|            if (errno == 0) {
  ------------------
  |  Branch (5073:17): [True: 8, False: 0]
  ------------------
 5074|      8|                break;
 5075|      8|            } else {
 5076|      0|                path_error(path);
 5077|      0|                Py_CLEAR(list);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 5078|      0|                goto exit;
 5079|      0|            }
 5080|      8|        }
 5081|    568|        if (ep->d_name[0] == '.' &&
  ------------------
  |  Branch (5081:13): [True: 16, False: 552]
  ------------------
 5082|     16|            (NAMLEN(ep) == 1 ||
  ------------------
  |  |  327|     16|#  define NAMLEN(dirent) strlen((dirent)->d_name)
  ------------------
  |  Branch (5082:14): [True: 8, False: 8]
  ------------------
 5083|      8|             (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
  ------------------
  |  |  327|      8|#  define NAMLEN(dirent) strlen((dirent)->d_name)
  ------------------
  |  Branch (5083:15): [True: 8, False: 0]
  |  Branch (5083:39): [True: 8, False: 0]
  ------------------
 5084|     16|            continue;
 5085|    552|        if (return_str)
  ------------------
  |  Branch (5085:13): [True: 552, False: 0]
  ------------------
 5086|    552|            v = PyUnicode_DecodeFSDefaultAndSize(ep->d_name, NAMLEN(ep));
  ------------------
  |  |  327|    552|#  define NAMLEN(dirent) strlen((dirent)->d_name)
  ------------------
 5087|      0|        else
 5088|      0|            v = PyBytes_FromStringAndSize(ep->d_name, NAMLEN(ep));
  ------------------
  |  |  327|      0|#  define NAMLEN(dirent) strlen((dirent)->d_name)
  ------------------
 5089|    552|        if (v == NULL) {
  ------------------
  |  Branch (5089:13): [True: 0, False: 552]
  ------------------
 5090|      0|            Py_CLEAR(list);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 5091|      0|            break;
 5092|      0|        }
 5093|    552|        if (PyList_Append(list, v) != 0) {
  ------------------
  |  Branch (5093:13): [True: 0, False: 552]
  ------------------
 5094|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5095|      0|            Py_CLEAR(list);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 5096|      0|            break;
 5097|      0|        }
 5098|    552|        Py_DECREF(v);
  ------------------
  |  |  430|    552|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    552|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    552|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5099|    552|    }
 5100|       |
 5101|      8|exit:
 5102|      8|    if (dirp != NULL) {
  ------------------
  |  Branch (5102:9): [True: 8, False: 0]
  ------------------
 5103|      8|        Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      8|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      8|                        PyThreadState *_save; \
  |  |  121|      8|                        _save = PyEval_SaveThread();
  ------------------
 5104|      8|#ifdef HAVE_FDOPENDIR
 5105|      8|        if (fd > -1)
  ------------------
  |  Branch (5105:13): [True: 0, False: 8]
  ------------------
 5106|      0|            rewinddir(dirp);
 5107|      8|#endif
 5108|      8|        closedir(dirp);
 5109|      8|        Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      8|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      8|                 }
  ------------------
 5110|      8|    }
 5111|       |
 5112|      8|    return list;
 5113|      8|}  /* end of _posix_listdir */
posixmodule.c:os_getegid_impl:
 9556|      2|{
 9557|      2|    return _PyLong_FromGid(getegid());
 9558|      2|}
posixmodule.c:os_geteuid_impl:
 9572|      2|{
 9573|      2|    return _PyLong_FromUid(geteuid());
 9574|      2|}
posixmodule.c:os_getgid_impl:
 9588|      2|{
 9589|      2|    return _PyLong_FromGid(getgid());
 9590|      2|}
posixmodule.c:os_getuid_impl:
10118|      2|{
10119|      2|    return _PyLong_FromUid(getuid());
10120|      2|}
posixmodule.c:os__path_normpath_impl:
 6134|     10|{
 6135|     10|    PyObject *result;
 6136|     10|    Py_ssize_t norm_len;
 6137|     10|    wchar_t *norm_path = _Py_normpath_and_size((wchar_t *)path->wide,
 6138|     10|                                               path->length, &norm_len);
 6139|     10|    if (!norm_len) {
  ------------------
  |  Branch (6139:9): [True: 0, False: 10]
  ------------------
 6140|      0|        result = PyUnicode_FromOrdinal('.');
 6141|      0|    }
 6142|     10|    else {
 6143|     10|        result = PyUnicode_FromWideChar(norm_path, norm_len);
 6144|     10|    }
 6145|     10|    if (PyBytes_Check(path->object)) {
  ------------------
  |  |   28|     10|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     10|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 10]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6146|      0|        Py_SETREF(result, PyUnicode_EncodeFSDefault(result));
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 6147|      0|    }
 6148|     10|    return result;
 6149|     10|}
posixmodule.c:os_fspath_impl:
17187|     80|{
17188|     80|    return PyOS_FSPath(path);
17189|     80|}
posixmodule.c:convertenviron:
 1792|      2|{
 1793|      2|    PyObject *d;
 1794|       |#ifdef MS_WINDOWS
 1795|       |    wchar_t **e;
 1796|       |#else
 1797|      2|    char **e;
 1798|      2|#endif
 1799|       |
 1800|      2|    d = PyDict_New();
 1801|      2|    if (d == NULL)
  ------------------
  |  Branch (1801:9): [True: 0, False: 2]
  ------------------
 1802|      0|        return NULL;
 1803|       |#ifdef MS_WINDOWS
 1804|       |    /* _wenviron must be initialized in this way if the program is started
 1805|       |       through main() instead of wmain(). */
 1806|       |    (void)_wgetenv(L"");
 1807|       |    e = _wenviron;
 1808|       |#elif defined(USE_DARWIN_NS_GET_ENVIRON)
 1809|       |    /* environ is not accessible as an extern in a shared object on OSX; use
 1810|       |       _NSGetEnviron to resolve it. The value changes if you add environment
 1811|       |       variables between calls to Py_Initialize, so don't cache the value. */
 1812|       |    e = *_NSGetEnviron();
 1813|       |#else
 1814|      2|    e = environ;
 1815|      2|#endif
 1816|      2|    if (e == NULL)
  ------------------
  |  Branch (1816:9): [True: 0, False: 2]
  ------------------
 1817|      0|        return d;
 1818|     70|    for (; *e != NULL; e++) {
  ------------------
  |  Branch (1818:12): [True: 68, False: 2]
  ------------------
 1819|     68|        PyObject *k;
 1820|     68|        PyObject *v;
 1821|       |#ifdef MS_WINDOWS
 1822|       |        const wchar_t *p = wcschr(*e, L'=');
 1823|       |#else
 1824|     68|        const char *p = strchr(*e, '=');
 1825|     68|#endif
 1826|     68|        if (p == NULL)
  ------------------
  |  Branch (1826:13): [True: 0, False: 68]
  ------------------
 1827|      0|            continue;
 1828|       |#ifdef MS_WINDOWS
 1829|       |        k = PyUnicode_FromWideChar(*e, (Py_ssize_t)(p-*e));
 1830|       |#else
 1831|     68|        k = PyBytes_FromStringAndSize(*e, (Py_ssize_t)(p-*e));
 1832|     68|#endif
 1833|     68|        if (k == NULL) {
  ------------------
  |  Branch (1833:13): [True: 0, False: 68]
  ------------------
 1834|      0|            Py_DECREF(d);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1835|      0|            return NULL;
 1836|      0|        }
 1837|       |#ifdef MS_WINDOWS
 1838|       |        v = PyUnicode_FromWideChar(p+1, -1);
 1839|       |#else
 1840|     68|        v = PyBytes_FromStringAndSize(p+1, strlen(p+1));
 1841|     68|#endif
 1842|     68|        if (v == NULL) {
  ------------------
  |  Branch (1842:13): [True: 0, False: 68]
  ------------------
 1843|      0|            Py_DECREF(k);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1844|      0|            Py_DECREF(d);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1845|      0|            return NULL;
 1846|      0|        }
 1847|     68|        if (PyDict_SetDefaultRef(d, k, v, NULL) < 0) {
  ------------------
  |  Branch (1847:13): [True: 0, False: 68]
  ------------------
 1848|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1849|      0|            Py_DECREF(k);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1850|      0|            Py_DECREF(d);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1851|      0|            return NULL;
 1852|      0|        }
 1853|     68|        Py_DECREF(k);
  ------------------
  |  |  430|     68|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1854|     68|        Py_DECREF(v);
  ------------------
  |  |  430|     68|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1855|     68|    }
 1856|      2|    return d;
 1857|      2|}
posixmodule.c:posixmodule_exec:
18685|      2|{
18686|      2|    _posixstate *state = get_posix_state(m);
18687|       |
18688|      2|#if defined(HAVE_PWRITEV)
18689|      2|    if (HAVE_PWRITEV_RUNTIME) {} else {
  ------------------
  |  |  618|      2|#  define HAVE_PWRITEV_RUNTIME 1
  |  |  ------------------
  |  |  |  Branch (618:32): [True: 2, Folded]
  |  |  ------------------
  ------------------
18690|      0|        PyObject* dct = PyModule_GetDict(m);
18691|       |
18692|      0|        if (dct == NULL) {
  ------------------
  |  Branch (18692:13): [True: 0, False: 0]
  ------------------
18693|      0|            return -1;
18694|      0|        }
18695|       |
18696|      0|        if (PyDict_PopString(dct, "pwritev", NULL) < 0) {
  ------------------
  |  Branch (18696:13): [True: 0, False: 0]
  ------------------
18697|      0|            return -1;
18698|      0|        }
18699|      0|        if (PyDict_PopString(dct, "preadv", NULL) < 0) {
  ------------------
  |  Branch (18699:13): [True: 0, False: 0]
  ------------------
18700|      0|            return -1;
18701|      0|        }
18702|      0|    }
18703|      2|#endif
18704|       |
18705|      2|#ifdef HAVE_STATX
18706|      2|    if (statx == NULL) {
  ------------------
  |  Branch (18706:9): [True: 0, False: 2]
  ------------------
18707|      0|        PyObject* dct = PyModule_GetDict(m);
18708|      0|        if (dct == NULL) {
  ------------------
  |  Branch (18708:13): [True: 0, False: 0]
  ------------------
18709|      0|            return -1;
18710|      0|        }
18711|      0|        if (PyDict_PopString(dct, "statx", NULL) < 0) {
  ------------------
  |  Branch (18711:13): [True: 0, False: 0]
  ------------------
18712|      0|            return -1;
18713|      0|        }
18714|      0|    }
18715|      2|    else {
18716|      2|        state->StatxResultType = PyType_FromModuleAndSpec(m, &pystatx_result_spec, NULL);
18717|      2|        if (PyModule_AddObjectRef(m, "statx_result", state->StatxResultType) < 0) {
  ------------------
  |  Branch (18717:13): [True: 0, False: 2]
  ------------------
18718|      0|            return -1;
18719|      0|        }
18720|      2|    }
18721|      2|#endif
18722|       |
18723|       |    /* Initialize environ dictionary */
18724|      2|    if (PyModule_Add(m, "environ", convertenviron()) != 0) {
  ------------------
  |  Branch (18724:9): [True: 0, False: 2]
  ------------------
18725|      0|        return -1;
18726|      0|    }
18727|       |
18728|      2|    if (all_ins(m))
  ------------------
  |  Branch (18728:9): [True: 0, False: 2]
  ------------------
18729|      0|        return -1;
18730|       |
18731|      2|    if (setup_confname_tables(m))
  ------------------
  |  Branch (18731:9): [True: 0, False: 2]
  ------------------
18732|      0|        return -1;
18733|       |
18734|      2|    if (PyModule_AddObjectRef(m, "error", PyExc_OSError) < 0) {
  ------------------
  |  Branch (18734:9): [True: 0, False: 2]
  ------------------
18735|      0|        return -1;
18736|      0|    }
18737|       |
18738|      2|#if defined(HAVE_WAITID)
18739|      2|    state->WaitidResultType = (PyObject *)PyStructSequence_NewType(&waitid_result_desc);
18740|      2|    if (PyModule_AddObjectRef(m, "waitid_result", state->WaitidResultType) < 0) {
  ------------------
  |  Branch (18740:9): [True: 0, False: 2]
  ------------------
18741|      0|        return -1;
18742|      0|    }
18743|      2|#endif
18744|       |
18745|      2|    stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
18746|      2|    stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
18747|      2|    stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
18748|      2|    state->StatResultType = (PyObject *)PyStructSequence_NewType(&stat_result_desc);
18749|      2|    if (PyModule_AddObjectRef(m, "stat_result", state->StatResultType) < 0) {
  ------------------
  |  Branch (18749:9): [True: 0, False: 2]
  ------------------
18750|      0|        return -1;
18751|      0|    }
18752|      2|    state->statresult_new_orig = ((PyTypeObject *)state->StatResultType)->tp_new;
18753|      2|    ((PyTypeObject *)state->StatResultType)->tp_new = statresult_new;
18754|       |
18755|      2|    state->StatVFSResultType = (PyObject *)PyStructSequence_NewType(&statvfs_result_desc);
18756|      2|    if (PyModule_AddObjectRef(m, "statvfs_result", state->StatVFSResultType) < 0) {
  ------------------
  |  Branch (18756:9): [True: 0, False: 2]
  ------------------
18757|      0|        return -1;
18758|      0|    }
18759|       |
18760|      2|#if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDPARAM)
18761|      2|    state->SchedParamType = (PyObject *)PyStructSequence_NewType(&sched_param_desc);
18762|      2|    if (PyModule_AddObjectRef(m, "sched_param", state->SchedParamType) < 0) {
  ------------------
  |  Branch (18762:9): [True: 0, False: 2]
  ------------------
18763|      0|        return -1;
18764|      0|    }
18765|      2|    ((PyTypeObject *)state->SchedParamType)->tp_new = os_sched_param;
18766|      2|    if (_PyType_AddMethod((PyTypeObject *)state->SchedParamType,
  ------------------
  |  Branch (18766:9): [True: 0, False: 2]
  ------------------
18767|      2|                          &os_sched_param_reduce_method) < 0)
18768|      0|    {
18769|      0|        return -1;
18770|      0|    }
18771|      2|    PyType_Modified((PyTypeObject *)state->SchedParamType);
18772|      2|#endif
18773|       |
18774|       |    /* initialize TerminalSize_info */
18775|      2|    state->TerminalSizeType = (PyObject *)PyStructSequence_NewType(&TerminalSize_desc);
18776|      2|    if (PyModule_AddObjectRef(m, "terminal_size", state->TerminalSizeType) < 0) {
  ------------------
  |  Branch (18776:9): [True: 0, False: 2]
  ------------------
18777|      0|        return -1;
18778|      0|    }
18779|       |
18780|       |    /* initialize scandir types */
18781|      2|    PyObject *ScandirIteratorType = PyType_FromModuleAndSpec(m, &ScandirIteratorType_spec, NULL);
18782|      2|    if (ScandirIteratorType == NULL) {
  ------------------
  |  Branch (18782:9): [True: 0, False: 2]
  ------------------
18783|      0|        return -1;
18784|      0|    }
18785|      2|    state->ScandirIteratorType = ScandirIteratorType;
18786|       |
18787|      2|    state->DirEntryType = PyType_FromModuleAndSpec(m, &DirEntryType_spec, NULL);
18788|      2|    if (PyModule_AddObjectRef(m, "DirEntry", state->DirEntryType) < 0) {
  ------------------
  |  Branch (18788:9): [True: 0, False: 2]
  ------------------
18789|      0|        return -1;
18790|      0|    }
18791|       |
18792|      2|    state->TimesResultType = (PyObject *)PyStructSequence_NewType(&times_result_desc);
18793|      2|    if (PyModule_AddObjectRef(m, "times_result", state->TimesResultType) < 0) {
  ------------------
  |  Branch (18793:9): [True: 0, False: 2]
  ------------------
18794|      0|        return -1;
18795|      0|    }
18796|       |
18797|      2|    state->UnameResultType = (PyObject *)PyStructSequence_NewType(&uname_result_desc);
18798|      2|    if (PyModule_AddObjectRef(m, "uname_result", state->UnameResultType) < 0) {
  ------------------
  |  Branch (18798:9): [True: 0, False: 2]
  ------------------
18799|      0|        return -1;
18800|      0|    }
18801|       |
18802|      2|    if ((state->billion = PyLong_FromLong(1000000000)) == NULL)
  ------------------
  |  Branch (18802:9): [True: 0, False: 2]
  ------------------
18803|      0|        return -1;
18804|      2|#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
18805|      2|    state->struct_rusage = PyUnicode_InternFromString("struct_rusage");
18806|      2|    if (state->struct_rusage == NULL)
  ------------------
  |  Branch (18806:9): [True: 0, False: 2]
  ------------------
18807|      0|        return -1;
18808|      2|#endif
18809|      2|    state->st_mode = PyUnicode_InternFromString("st_mode");
18810|      2|    if (state->st_mode == NULL)
  ------------------
  |  Branch (18810:9): [True: 0, False: 2]
  ------------------
18811|      0|        return -1;
18812|       |
18813|       |    /* suppress "function not used" warnings */
18814|      2|    {
18815|      2|    int ignored;
18816|      2|    fd_specified("", -1);
18817|      2|    follow_symlinks_specified("", 1);
18818|      2|    dir_fd_and_follow_symlinks_invalid("chmod", DEFAULT_DIR_FD, 1);
  ------------------
  |  | 1138|      2|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
18819|      2|    dir_fd_converter(Py_None, &ignored);
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
18820|      2|    dir_fd_unavailable(Py_None, &ignored);
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
18821|      2|    }
18822|       |
18823|       |    /*
18824|       |     * provide list of locally available functions
18825|       |     * so os.py can populate support_* lists
18826|       |     */
18827|      2|    PyObject *list = PyList_New(0);
18828|      2|    if (!list) {
  ------------------
  |  Branch (18828:9): [True: 0, False: 2]
  ------------------
18829|      0|        return -1;
18830|      0|    }
18831|     66|    for (const struct have_function *trace = have_functions; trace->label; trace++) {
  ------------------
  |  Branch (18831:62): [True: 64, False: 2]
  ------------------
18832|     64|        PyObject *unicode;
18833|     64|        if (trace->probe && !trace->probe()) continue;
  ------------------
  |  Branch (18833:13): [True: 34, False: 30]
  |  Branch (18833:29): [True: 0, False: 34]
  ------------------
18834|     64|        unicode = PyUnicode_DecodeASCII(trace->label, strlen(trace->label), NULL);
18835|     64|        if (!unicode)
  ------------------
  |  Branch (18835:13): [True: 0, False: 64]
  ------------------
18836|      0|            return -1;
18837|     64|        if (PyList_Append(list, unicode))
  ------------------
  |  Branch (18837:13): [True: 0, False: 64]
  ------------------
18838|      0|            return -1;
18839|     64|        Py_DECREF(unicode);
  ------------------
  |  |  430|     64|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
18840|     64|    }
18841|       |
18842|      2|#ifndef MS_WINDOWS
18843|      2|    if (_Py_GetTicksPerSecond(&state->ticks_per_second) < 0) {
  ------------------
  |  Branch (18843:9): [True: 0, False: 2]
  ------------------
18844|      0|        PyErr_SetString(PyExc_RuntimeError,
18845|      0|                        "cannot read ticks_per_second");
18846|      0|        return -1;
18847|      0|    }
18848|      2|    assert(state->ticks_per_second >= 1);
  ------------------
  |  Branch (18848:5): [True: 2, False: 0]
  ------------------
18849|      2|#endif
18850|       |
18851|      2|    return PyModule_Add(m, "_have_functions", list);
18852|      2|}
posixmodule.c:all_ins:
17763|      2|{
17764|      2|#ifdef F_OK
17765|      2|    if (PyModule_AddIntMacro(m, F_OK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17766|      2|#endif
17767|      2|#ifdef R_OK
17768|      2|    if (PyModule_AddIntMacro(m, R_OK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17769|      2|#endif
17770|      2|#ifdef W_OK
17771|      2|    if (PyModule_AddIntMacro(m, W_OK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17772|      2|#endif
17773|      2|#ifdef X_OK
17774|      2|    if (PyModule_AddIntMacro(m, X_OK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17775|      2|#endif
17776|      2|#ifdef NGROUPS_MAX
17777|      2|    if (PyModule_AddIntMacro(m, NGROUPS_MAX)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17778|      2|#endif
17779|      2|#ifdef TMP_MAX
17780|      2|    if (PyModule_AddIntMacro(m, TMP_MAX)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17781|      2|#endif
17782|      2|#ifdef WCONTINUED
17783|      2|    if (PyModule_AddIntMacro(m, WCONTINUED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17784|      2|#endif
17785|      2|#ifdef WNOHANG
17786|      2|    if (PyModule_AddIntMacro(m, WNOHANG)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17787|      2|#endif
17788|      2|#ifdef WUNTRACED
17789|      2|    if (PyModule_AddIntMacro(m, WUNTRACED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17790|      2|#endif
17791|      2|#ifdef O_RDONLY
17792|      2|    if (PyModule_AddIntMacro(m, O_RDONLY)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17793|      2|#endif
17794|      2|#ifdef O_WRONLY
17795|      2|    if (PyModule_AddIntMacro(m, O_WRONLY)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17796|      2|#endif
17797|      2|#ifdef O_RDWR
17798|      2|    if (PyModule_AddIntMacro(m, O_RDWR)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17799|      2|#endif
17800|      2|#ifdef O_NDELAY
17801|      2|    if (PyModule_AddIntMacro(m, O_NDELAY)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17802|      2|#endif
17803|      2|#ifdef O_NONBLOCK
17804|      2|    if (PyModule_AddIntMacro(m, O_NONBLOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17805|      2|#endif
17806|      2|#ifdef O_APPEND
17807|      2|    if (PyModule_AddIntMacro(m, O_APPEND)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17808|      2|#endif
17809|      2|#ifdef O_DSYNC
17810|      2|    if (PyModule_AddIntMacro(m, O_DSYNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17811|      2|#endif
17812|      2|#ifdef O_RSYNC
17813|      2|    if (PyModule_AddIntMacro(m, O_RSYNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17814|      2|#endif
17815|      2|#ifdef O_SYNC
17816|      2|    if (PyModule_AddIntMacro(m, O_SYNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17817|      2|#endif
17818|      2|#ifdef O_NOCTTY
17819|      2|    if (PyModule_AddIntMacro(m, O_NOCTTY)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17820|      2|#endif
17821|      2|#ifdef O_CREAT
17822|      2|    if (PyModule_AddIntMacro(m, O_CREAT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17823|      2|#endif
17824|      2|#ifdef O_EXCL
17825|      2|    if (PyModule_AddIntMacro(m, O_EXCL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17826|      2|#endif
17827|      2|#ifdef O_TRUNC
17828|      2|    if (PyModule_AddIntMacro(m, O_TRUNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17829|      2|#endif
17830|       |#ifdef O_BINARY
17831|       |    if (PyModule_AddIntMacro(m, O_BINARY)) return -1;
17832|       |#endif
17833|       |#ifdef O_TEXT
17834|       |    if (PyModule_AddIntMacro(m, O_TEXT)) return -1;
17835|       |#endif
17836|       |#ifdef O_XATTR
17837|       |    if (PyModule_AddIntMacro(m, O_XATTR)) return -1;
17838|       |#endif
17839|      2|#ifdef O_LARGEFILE
17840|      2|    if (PyModule_AddIntMacro(m, O_LARGEFILE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17841|      2|#endif
17842|      2|#ifndef __GNU__
17843|       |#ifdef O_SHLOCK
17844|       |    if (PyModule_AddIntMacro(m, O_SHLOCK)) return -1;
17845|       |#endif
17846|       |#ifdef O_EXLOCK
17847|       |    if (PyModule_AddIntMacro(m, O_EXLOCK)) return -1;
17848|       |#endif
17849|      2|#endif
17850|       |#ifdef O_EXEC
17851|       |    if (PyModule_AddIntMacro(m, O_EXEC)) return -1;
17852|       |#endif
17853|       |#ifdef O_SEARCH
17854|       |    if (PyModule_AddIntMacro(m, O_SEARCH)) return -1;
17855|       |#endif
17856|      2|#ifdef O_PATH
17857|      2|    if (PyModule_AddIntMacro(m, O_PATH)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17858|      2|#endif
17859|       |#ifdef O_TTY_INIT
17860|       |    if (PyModule_AddIntMacro(m, O_TTY_INIT)) return -1;
17861|       |#endif
17862|      2|#ifdef O_TMPFILE
17863|      2|    if (PyModule_AddIntMacro(m, O_TMPFILE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17864|      2|#endif
17865|      2|#ifdef PRIO_PROCESS
17866|      2|    if (PyModule_AddIntMacro(m, PRIO_PROCESS)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17867|      2|#endif
17868|      2|#ifdef PRIO_PGRP
17869|      2|    if (PyModule_AddIntMacro(m, PRIO_PGRP)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17870|      2|#endif
17871|      2|#ifdef PRIO_USER
17872|      2|    if (PyModule_AddIntMacro(m, PRIO_USER)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17873|      2|#endif
17874|       |#ifdef PRIO_DARWIN_THREAD
17875|       |    if (PyModule_AddIntMacro(m, PRIO_DARWIN_THREAD)) return -1;
17876|       |#endif
17877|       |#ifdef PRIO_DARWIN_PROCESS
17878|       |    if (PyModule_AddIntMacro(m, PRIO_DARWIN_PROCESS)) return -1;
17879|       |#endif
17880|       |#ifdef PRIO_DARWIN_BG
17881|       |    if (PyModule_AddIntMacro(m, PRIO_DARWIN_BG)) return -1;
17882|       |#endif
17883|       |#ifdef PRIO_DARWIN_NONUI
17884|       |    if (PyModule_AddIntMacro(m, PRIO_DARWIN_NONUI)) return -1;
17885|       |#endif
17886|      2|#ifdef O_CLOEXEC
17887|      2|    if (PyModule_AddIntMacro(m, O_CLOEXEC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17888|      2|#endif
17889|      2|#ifdef O_ACCMODE
17890|      2|    if (PyModule_AddIntMacro(m, O_ACCMODE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17891|      2|#endif
17892|       |#ifdef O_EVTONLY
17893|       |    if (PyModule_AddIntMacro(m, O_EVTONLY)) return -1;
17894|       |#endif
17895|      2|#ifdef O_FSYNC
17896|      2|    if (PyModule_AddIntMacro(m, O_FSYNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17897|      2|#endif
17898|       |#ifdef O_SYMLINK
17899|       |    if (PyModule_AddIntMacro(m, O_SYMLINK)) return -1;
17900|       |#endif
17901|       |
17902|      2|#ifdef SEEK_HOLE
17903|      2|    if (PyModule_AddIntMacro(m, SEEK_HOLE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17904|      2|#endif
17905|      2|#ifdef SEEK_DATA
17906|      2|    if (PyModule_AddIntMacro(m, SEEK_DATA)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17907|      2|#endif
17908|       |
17909|       |/* MS Windows */
17910|       |#ifdef O_NOINHERIT
17911|       |    /* Don't inherit in child processes. */
17912|       |    if (PyModule_AddIntMacro(m, O_NOINHERIT)) return -1;
17913|       |#endif
17914|       |#ifdef _O_SHORT_LIVED
17915|       |    /* Optimize for short life (keep in memory). */
17916|       |    /* MS forgot to define this one with a non-underscore form too. */
17917|       |    if (PyModule_AddIntConstant(m, "O_SHORT_LIVED", _O_SHORT_LIVED)) return -1;
17918|       |#endif
17919|       |#ifdef O_TEMPORARY
17920|       |    /* Automatically delete when last handle is closed. */
17921|       |    if (PyModule_AddIntMacro(m, O_TEMPORARY)) return -1;
17922|       |#endif
17923|       |#ifdef O_RANDOM
17924|       |    /* Optimize for random access. */
17925|       |    if (PyModule_AddIntMacro(m, O_RANDOM)) return -1;
17926|       |#endif
17927|       |#ifdef O_SEQUENTIAL
17928|       |    /* Optimize for sequential access. */
17929|       |    if (PyModule_AddIntMacro(m, O_SEQUENTIAL)) return -1;
17930|       |#endif
17931|       |
17932|       |/* GNU extensions. */
17933|      2|#ifdef O_ASYNC
17934|       |    /* Send a SIGIO signal whenever input or output
17935|       |       becomes available on file descriptor */
17936|      2|    if (PyModule_AddIntMacro(m, O_ASYNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17937|      2|#endif
17938|      2|#ifdef O_DIRECT
17939|       |    /* Direct disk access. */
17940|      2|    if (PyModule_AddIntMacro(m, O_DIRECT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17941|      2|#endif
17942|      2|#ifdef O_DIRECTORY
17943|       |    /* Must be a directory.      */
17944|      2|    if (PyModule_AddIntMacro(m, O_DIRECTORY)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17945|      2|#endif
17946|      2|#ifdef O_NOFOLLOW
17947|       |    /* Do not follow links.      */
17948|      2|    if (PyModule_AddIntMacro(m, O_NOFOLLOW)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17949|      2|#endif
17950|       |#ifdef O_NOFOLLOW_ANY
17951|       |    if (PyModule_AddIntMacro(m, O_NOFOLLOW_ANY)) return -1;
17952|       |#endif
17953|       |#ifdef O_NOLINKS
17954|       |    /* Fails if link count of the named file is greater than 1 */
17955|       |    if (PyModule_AddIntMacro(m, O_NOLINKS)) return -1;
17956|       |#endif
17957|      2|#ifdef O_NOATIME
17958|       |    /* Do not update the access time. */
17959|      2|    if (PyModule_AddIntMacro(m, O_NOATIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17960|      2|#endif
17961|       |
17962|       |    /* These come from sysexits.h */
17963|      2|#ifdef EX_OK
17964|      2|    if (PyModule_AddIntMacro(m, EX_OK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17965|      2|#endif /* EX_OK */
17966|      2|#ifdef EX_USAGE
17967|      2|    if (PyModule_AddIntMacro(m, EX_USAGE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17968|      2|#endif /* EX_USAGE */
17969|      2|#ifdef EX_DATAERR
17970|      2|    if (PyModule_AddIntMacro(m, EX_DATAERR)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17971|      2|#endif /* EX_DATAERR */
17972|      2|#ifdef EX_NOINPUT
17973|      2|    if (PyModule_AddIntMacro(m, EX_NOINPUT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17974|      2|#endif /* EX_NOINPUT */
17975|      2|#ifdef EX_NOUSER
17976|      2|    if (PyModule_AddIntMacro(m, EX_NOUSER)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17977|      2|#endif /* EX_NOUSER */
17978|      2|#ifdef EX_NOHOST
17979|      2|    if (PyModule_AddIntMacro(m, EX_NOHOST)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17980|      2|#endif /* EX_NOHOST */
17981|      2|#ifdef EX_UNAVAILABLE
17982|      2|    if (PyModule_AddIntMacro(m, EX_UNAVAILABLE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17983|      2|#endif /* EX_UNAVAILABLE */
17984|      2|#ifdef EX_SOFTWARE
17985|      2|    if (PyModule_AddIntMacro(m, EX_SOFTWARE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17986|      2|#endif /* EX_SOFTWARE */
17987|      2|#ifdef EX_OSERR
17988|      2|    if (PyModule_AddIntMacro(m, EX_OSERR)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17989|      2|#endif /* EX_OSERR */
17990|      2|#ifdef EX_OSFILE
17991|      2|    if (PyModule_AddIntMacro(m, EX_OSFILE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17992|      2|#endif /* EX_OSFILE */
17993|      2|#ifdef EX_CANTCREAT
17994|      2|    if (PyModule_AddIntMacro(m, EX_CANTCREAT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17995|      2|#endif /* EX_CANTCREAT */
17996|      2|#ifdef EX_IOERR
17997|      2|    if (PyModule_AddIntMacro(m, EX_IOERR)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
17998|      2|#endif /* EX_IOERR */
17999|      2|#ifdef EX_TEMPFAIL
18000|      2|    if (PyModule_AddIntMacro(m, EX_TEMPFAIL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18001|      2|#endif /* EX_TEMPFAIL */
18002|      2|#ifdef EX_PROTOCOL
18003|      2|    if (PyModule_AddIntMacro(m, EX_PROTOCOL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18004|      2|#endif /* EX_PROTOCOL */
18005|      2|#ifdef EX_NOPERM
18006|      2|    if (PyModule_AddIntMacro(m, EX_NOPERM)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18007|      2|#endif /* EX_NOPERM */
18008|      2|#ifdef EX_CONFIG
18009|      2|    if (PyModule_AddIntMacro(m, EX_CONFIG)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18010|      2|#endif /* EX_CONFIG */
18011|       |#ifdef EX_NOTFOUND
18012|       |    if (PyModule_AddIntMacro(m, EX_NOTFOUND)) return -1;
18013|       |#endif /* EX_NOTFOUND */
18014|       |
18015|       |    /* statvfs */
18016|      2|#ifdef ST_RDONLY
18017|      2|    if (PyModule_AddIntMacro(m, ST_RDONLY)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18018|      2|#endif /* ST_RDONLY */
18019|      2|#ifdef ST_NOSUID
18020|      2|    if (PyModule_AddIntMacro(m, ST_NOSUID)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18021|      2|#endif /* ST_NOSUID */
18022|       |
18023|       |       /* GNU extensions */
18024|      2|#ifdef ST_NODEV
18025|      2|    if (PyModule_AddIntMacro(m, ST_NODEV)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18026|      2|#endif /* ST_NODEV */
18027|      2|#ifdef ST_NOEXEC
18028|      2|    if (PyModule_AddIntMacro(m, ST_NOEXEC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18029|      2|#endif /* ST_NOEXEC */
18030|      2|#ifdef ST_SYNCHRONOUS
18031|      2|    if (PyModule_AddIntMacro(m, ST_SYNCHRONOUS)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18032|      2|#endif /* ST_SYNCHRONOUS */
18033|      2|#ifdef ST_MANDLOCK
18034|      2|    if (PyModule_AddIntMacro(m, ST_MANDLOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18035|      2|#endif /* ST_MANDLOCK */
18036|      2|#ifdef ST_WRITE
18037|      2|    if (PyModule_AddIntMacro(m, ST_WRITE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18038|      2|#endif /* ST_WRITE */
18039|      2|#ifdef ST_APPEND
18040|      2|    if (PyModule_AddIntMacro(m, ST_APPEND)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18041|      2|#endif /* ST_APPEND */
18042|      2|#ifdef ST_NOATIME
18043|      2|    if (PyModule_AddIntMacro(m, ST_NOATIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18044|      2|#endif /* ST_NOATIME */
18045|      2|#ifdef ST_NODIRATIME
18046|      2|    if (PyModule_AddIntMacro(m, ST_NODIRATIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18047|      2|#endif /* ST_NODIRATIME */
18048|      2|#ifdef ST_RELATIME
18049|      2|    if (PyModule_AddIntMacro(m, ST_RELATIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18050|      2|#endif /* ST_RELATIME */
18051|       |
18052|       |    /* FreeBSD sendfile() constants */
18053|       |#ifdef SF_NODISKIO
18054|       |    if (PyModule_AddIntMacro(m, SF_NODISKIO)) return -1;
18055|       |#endif
18056|       |    /* is obsolete since the 11.x release */
18057|       |#ifdef SF_MNOWAIT
18058|       |    if (PyModule_AddIntMacro(m, SF_MNOWAIT)) return -1;
18059|       |#endif
18060|       |#ifdef SF_SYNC
18061|       |    if (PyModule_AddIntMacro(m, SF_SYNC)) return -1;
18062|       |#endif
18063|       |#ifdef SF_NOCACHE
18064|       |    if (PyModule_AddIntMacro(m, SF_NOCACHE)) return -1;
18065|       |#endif
18066|       |
18067|      2|#ifdef TFD_NONBLOCK
18068|      2|    if (PyModule_AddIntMacro(m, TFD_NONBLOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18069|      2|#endif
18070|      2|#ifdef TFD_CLOEXEC
18071|      2|    if (PyModule_AddIntMacro(m, TFD_CLOEXEC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18072|      2|#endif
18073|      2|#ifdef TFD_TIMER_ABSTIME
18074|      2|    if (PyModule_AddIntMacro(m, TFD_TIMER_ABSTIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18075|      2|#endif
18076|      2|#ifdef TFD_TIMER_CANCEL_ON_SET
18077|      2|    if (PyModule_AddIntMacro(m, TFD_TIMER_CANCEL_ON_SET)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18078|      2|#endif
18079|       |
18080|       |    /* constants for posix_fadvise */
18081|      2|#ifdef POSIX_FADV_NORMAL
18082|      2|    if (PyModule_AddIntMacro(m, POSIX_FADV_NORMAL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18083|      2|#endif
18084|      2|#ifdef POSIX_FADV_SEQUENTIAL
18085|      2|    if (PyModule_AddIntMacro(m, POSIX_FADV_SEQUENTIAL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18086|      2|#endif
18087|      2|#ifdef POSIX_FADV_RANDOM
18088|      2|    if (PyModule_AddIntMacro(m, POSIX_FADV_RANDOM)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18089|      2|#endif
18090|      2|#ifdef POSIX_FADV_NOREUSE
18091|      2|    if (PyModule_AddIntMacro(m, POSIX_FADV_NOREUSE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18092|      2|#endif
18093|      2|#ifdef POSIX_FADV_WILLNEED
18094|      2|    if (PyModule_AddIntMacro(m, POSIX_FADV_WILLNEED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18095|      2|#endif
18096|      2|#ifdef POSIX_FADV_DONTNEED
18097|      2|    if (PyModule_AddIntMacro(m, POSIX_FADV_DONTNEED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18098|      2|#endif
18099|       |
18100|       |    /* constants for waitid */
18101|      2|#if defined(HAVE_SYS_WAIT_H) && defined(HAVE_WAITID)
18102|      2|    if (PyModule_AddIntMacro(m, P_PID)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18103|      2|    if (PyModule_AddIntMacro(m, P_PGID)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18104|      2|    if (PyModule_AddIntMacro(m, P_ALL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18105|      2|#ifdef P_PIDFD
18106|      2|    if (PyModule_AddIntMacro(m, P_PIDFD)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18107|      2|#endif
18108|       |#ifdef PIDFD_NONBLOCK
18109|       |    if (PyModule_AddIntMacro(m, PIDFD_NONBLOCK)) return -1;
18110|       |#endif
18111|      2|#endif
18112|      2|#ifdef WEXITED
18113|      2|    if (PyModule_AddIntMacro(m, WEXITED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18114|      2|#endif
18115|      2|#ifdef WNOWAIT
18116|      2|    if (PyModule_AddIntMacro(m, WNOWAIT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18117|      2|#endif
18118|      2|#ifdef WSTOPPED
18119|      2|    if (PyModule_AddIntMacro(m, WSTOPPED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18120|      2|#endif
18121|      2|#ifdef CLD_EXITED
18122|      2|    if (PyModule_AddIntMacro(m, CLD_EXITED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18123|      2|#endif
18124|      2|#ifdef CLD_KILLED
18125|      2|    if (PyModule_AddIntMacro(m, CLD_KILLED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18126|      2|#endif
18127|      2|#ifdef CLD_DUMPED
18128|      2|    if (PyModule_AddIntMacro(m, CLD_DUMPED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18129|      2|#endif
18130|      2|#ifdef CLD_TRAPPED
18131|      2|    if (PyModule_AddIntMacro(m, CLD_TRAPPED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18132|      2|#endif
18133|      2|#ifdef CLD_STOPPED
18134|      2|    if (PyModule_AddIntMacro(m, CLD_STOPPED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18135|      2|#endif
18136|      2|#ifdef CLD_CONTINUED
18137|      2|    if (PyModule_AddIntMacro(m, CLD_CONTINUED)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18138|      2|#endif
18139|       |
18140|       |    /* constants for lockf */
18141|      2|#ifdef F_LOCK
18142|      2|    if (PyModule_AddIntMacro(m, F_LOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18143|      2|#endif
18144|      2|#ifdef F_TLOCK
18145|      2|    if (PyModule_AddIntMacro(m, F_TLOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18146|      2|#endif
18147|      2|#ifdef F_ULOCK
18148|      2|    if (PyModule_AddIntMacro(m, F_ULOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18149|      2|#endif
18150|      2|#ifdef F_TEST
18151|      2|    if (PyModule_AddIntMacro(m, F_TEST)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18152|      2|#endif
18153|       |
18154|      2|#ifdef RWF_DSYNC
18155|      2|    if (PyModule_AddIntConstant(m, "RWF_DSYNC", RWF_DSYNC)) return -1;
  ------------------
  |  Branch (18155:9): [True: 0, False: 2]
  ------------------
18156|      2|#endif
18157|      2|#ifdef RWF_HIPRI
18158|      2|    if (PyModule_AddIntConstant(m, "RWF_HIPRI", RWF_HIPRI)) return -1;
  ------------------
  |  Branch (18158:9): [True: 0, False: 2]
  ------------------
18159|      2|#endif
18160|      2|#ifdef RWF_SYNC
18161|      2|    if (PyModule_AddIntConstant(m, "RWF_SYNC", RWF_SYNC)) return -1;
  ------------------
  |  Branch (18161:9): [True: 0, False: 2]
  ------------------
18162|      2|#endif
18163|      2|#ifdef RWF_NOWAIT
18164|      2|    if (PyModule_AddIntConstant(m, "RWF_NOWAIT", RWF_NOWAIT)) return -1;
  ------------------
  |  Branch (18164:9): [True: 0, False: 2]
  ------------------
18165|      2|#endif
18166|       |#ifdef RWF_DONTCACHE
18167|       |    if (PyModule_AddIntConstant(m, "RWF_DONTCACHE", RWF_DONTCACHE)) return -1;
18168|       |#endif
18169|       |#ifdef RWF_ATOMIC
18170|       |    if (PyModule_AddIntConstant(m, "RWF_ATOMIC", RWF_ATOMIC)) return -1;
18171|       |#endif
18172|      2|#ifdef RWF_APPEND
18173|      2|    if (PyModule_AddIntConstant(m, "RWF_APPEND", RWF_APPEND)) return -1;
  ------------------
  |  Branch (18173:9): [True: 0, False: 2]
  ------------------
18174|      2|#endif
18175|       |
18176|       |/* constants for splice */
18177|      2|#if defined(HAVE_SPLICE) && defined(__linux__)
18178|      2|    if (PyModule_AddIntConstant(m, "SPLICE_F_MOVE", SPLICE_F_MOVE)) return -1;
  ------------------
  |  Branch (18178:9): [True: 0, False: 2]
  ------------------
18179|      2|    if (PyModule_AddIntConstant(m, "SPLICE_F_NONBLOCK", SPLICE_F_NONBLOCK)) return -1;
  ------------------
  |  Branch (18179:9): [True: 0, False: 2]
  ------------------
18180|      2|    if (PyModule_AddIntConstant(m, "SPLICE_F_MORE", SPLICE_F_MORE)) return -1;
  ------------------
  |  Branch (18180:9): [True: 0, False: 2]
  ------------------
18181|      2|#endif
18182|       |
18183|       |/* constants for posix_spawn */
18184|      2|#ifdef HAVE_POSIX_SPAWN
18185|      2|    if (PyModule_AddIntConstant(m, "POSIX_SPAWN_OPEN", POSIX_SPAWN_OPEN)) return -1;
  ------------------
  |  Branch (18185:9): [True: 0, False: 2]
  ------------------
18186|      2|    if (PyModule_AddIntConstant(m, "POSIX_SPAWN_CLOSE", POSIX_SPAWN_CLOSE)) return -1;
  ------------------
  |  Branch (18186:9): [True: 0, False: 2]
  ------------------
18187|      2|    if (PyModule_AddIntConstant(m, "POSIX_SPAWN_DUP2", POSIX_SPAWN_DUP2)) return -1;
  ------------------
  |  Branch (18187:9): [True: 0, False: 2]
  ------------------
18188|       |#ifdef HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSEFROM_NP
18189|       |    if (PyModule_AddIntMacro(m, POSIX_SPAWN_CLOSEFROM)) return -1;
18190|       |#endif
18191|      2|#endif
18192|       |
18193|       |#if defined(HAVE_SPAWNV) || defined (HAVE_RTPSPAWN)
18194|       |    if (PyModule_AddIntConstant(m, "P_WAIT", _P_WAIT)) return -1;
18195|       |    if (PyModule_AddIntConstant(m, "P_NOWAIT", _P_NOWAIT)) return -1;
18196|       |    if (PyModule_AddIntConstant(m, "P_NOWAITO", _P_NOWAITO)) return -1;
18197|       |#endif
18198|       |#ifdef HAVE_SPAWNV
18199|       |    if (PyModule_AddIntConstant(m, "P_OVERLAY", _OLD_P_OVERLAY)) return -1;
18200|       |    if (PyModule_AddIntConstant(m, "P_DETACH", _P_DETACH)) return -1;
18201|       |#endif
18202|       |
18203|      2|#ifdef HAVE_SCHED_H
18204|      2|#ifdef SCHED_OTHER
18205|      2|    if (PyModule_AddIntMacro(m, SCHED_OTHER)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18206|      2|#endif
18207|      2|#ifdef SCHED_DEADLINE
18208|      2|    if (PyModule_AddIntMacro(m, SCHED_DEADLINE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18209|      2|#endif
18210|      2|#ifdef SCHED_FIFO
18211|      2|    if (PyModule_AddIntMacro(m, SCHED_FIFO)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18212|      2|#endif
18213|      2|#ifdef SCHED_NORMAL
18214|      2|    if (PyModule_AddIntMacro(m, SCHED_NORMAL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18215|      2|#endif
18216|      2|#ifdef SCHED_RR
18217|      2|    if (PyModule_AddIntMacro(m, SCHED_RR)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18218|      2|#endif
18219|       |#ifdef SCHED_SPORADIC
18220|       |    if (PyModule_AddIntMacro(m, SCHED_SPORADIC)) return -1;
18221|       |#endif
18222|      2|#ifdef SCHED_BATCH
18223|      2|    if (PyModule_AddIntMacro(m, SCHED_BATCH)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18224|      2|#endif
18225|      2|#ifdef SCHED_IDLE
18226|      2|    if (PyModule_AddIntMacro(m, SCHED_IDLE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18227|      2|#endif
18228|      2|#ifdef SCHED_RESET_ON_FORK
18229|      2|    if (PyModule_AddIntMacro(m, SCHED_RESET_ON_FORK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18230|      2|#endif
18231|       |#ifdef SCHED_SYS
18232|       |    if (PyModule_AddIntMacro(m, SCHED_SYS)) return -1;
18233|       |#endif
18234|       |#ifdef SCHED_IA
18235|       |    if (PyModule_AddIntMacro(m, SCHED_IA)) return -1;
18236|       |#endif
18237|       |#ifdef SCHED_FSS
18238|       |    if (PyModule_AddIntMacro(m, SCHED_FSS)) return -1;
18239|       |#endif
18240|       |#ifdef SCHED_FX
18241|       |    if (PyModule_AddIntConstant(m, "SCHED_FX", SCHED_FSS)) return -1;
18242|       |#endif
18243|       |
18244|       |/* constants for namespaces */
18245|      2|#if defined(HAVE_SETNS) || defined(HAVE_UNSHARE)
18246|      2|#ifdef CLONE_FS
18247|      2|    if (PyModule_AddIntMacro(m, CLONE_FS)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18248|      2|#endif
18249|      2|#ifdef CLONE_FILES
18250|      2|    if (PyModule_AddIntMacro(m, CLONE_FILES)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18251|      2|#endif
18252|      2|#ifdef CLONE_NEWNS
18253|      2|    if (PyModule_AddIntMacro(m, CLONE_NEWNS)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18254|      2|#endif
18255|      2|#ifdef CLONE_NEWCGROUP
18256|      2|    if (PyModule_AddIntMacro(m, CLONE_NEWCGROUP)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18257|      2|#endif
18258|      2|#ifdef CLONE_NEWUTS
18259|      2|    if (PyModule_AddIntMacro(m, CLONE_NEWUTS)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18260|      2|#endif
18261|      2|#ifdef CLONE_NEWIPC
18262|      2|    if (PyModule_AddIntMacro(m, CLONE_NEWIPC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18263|      2|#endif
18264|      2|#ifdef CLONE_NEWUSER
18265|      2|    if (PyModule_AddIntMacro(m, CLONE_NEWUSER)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18266|      2|#endif
18267|      2|#ifdef CLONE_NEWPID
18268|      2|    if (PyModule_AddIntMacro(m, CLONE_NEWPID)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18269|      2|#endif
18270|      2|#ifdef CLONE_NEWNET
18271|      2|    if (PyModule_AddIntMacro(m, CLONE_NEWNET)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18272|      2|#endif
18273|       |#ifdef CLONE_NEWTIME
18274|       |    if (PyModule_AddIntMacro(m, CLONE_NEWTIME)) return -1;
18275|       |#endif
18276|      2|#ifdef CLONE_SYSVSEM
18277|      2|    if (PyModule_AddIntMacro(m, CLONE_SYSVSEM)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18278|      2|#endif
18279|      2|#ifdef CLONE_THREAD
18280|      2|    if (PyModule_AddIntMacro(m, CLONE_THREAD)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18281|      2|#endif
18282|      2|#ifdef CLONE_SIGHAND
18283|      2|    if (PyModule_AddIntMacro(m, CLONE_SIGHAND)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18284|      2|#endif
18285|      2|#ifdef CLONE_VM
18286|      2|    if (PyModule_AddIntMacro(m, CLONE_VM)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18287|      2|#endif
18288|      2|#endif
18289|       |
18290|      2|#endif
18291|       |
18292|      2|#ifdef USE_XATTRS
18293|      2|    if (PyModule_AddIntMacro(m, XATTR_CREATE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18294|      2|    if (PyModule_AddIntMacro(m, XATTR_REPLACE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18295|      2|    if (PyModule_AddIntMacro(m, XATTR_SIZE_MAX)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18296|      2|#endif
18297|       |
18298|      2|#if HAVE_DECL_RTLD_LAZY
18299|      2|    if (PyModule_AddIntMacro(m, RTLD_LAZY)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18300|      2|#endif
18301|      2|#if HAVE_DECL_RTLD_NOW
18302|      2|    if (PyModule_AddIntMacro(m, RTLD_NOW)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18303|      2|#endif
18304|      2|#if HAVE_DECL_RTLD_GLOBAL
18305|      2|    if (PyModule_AddIntMacro(m, RTLD_GLOBAL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18306|      2|#endif
18307|      2|#if HAVE_DECL_RTLD_LOCAL
18308|      2|    if (PyModule_AddIntMacro(m, RTLD_LOCAL)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18309|      2|#endif
18310|      2|#if HAVE_DECL_RTLD_NODELETE
18311|      2|    if (PyModule_AddIntMacro(m, RTLD_NODELETE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18312|      2|#endif
18313|      2|#if HAVE_DECL_RTLD_NOLOAD
18314|      2|    if (PyModule_AddIntMacro(m, RTLD_NOLOAD)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18315|      2|#endif
18316|      2|#if HAVE_DECL_RTLD_DEEPBIND
18317|      2|    if (PyModule_AddIntMacro(m, RTLD_DEEPBIND)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18318|      2|#endif
18319|       |#if HAVE_DECL_RTLD_MEMBER
18320|       |    if (PyModule_AddIntMacro(m, RTLD_MEMBER)) return -1;
18321|       |#endif
18322|       |
18323|      2|#ifdef HAVE_GETRANDOM_SYSCALL
18324|      2|    if (PyModule_AddIntMacro(m, GRND_RANDOM)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18325|      2|    if (PyModule_AddIntMacro(m, GRND_NONBLOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18326|      2|#endif
18327|      2|#ifdef HAVE_MEMFD_CREATE
18328|      2|    if (PyModule_AddIntMacro(m, MFD_CLOEXEC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18329|      2|    if (PyModule_AddIntMacro(m, MFD_ALLOW_SEALING)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18330|      2|#ifdef MFD_HUGETLB
18331|      2|    if (PyModule_AddIntMacro(m, MFD_HUGETLB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18332|      2|#endif
18333|      2|#ifdef MFD_HUGE_SHIFT
18334|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_SHIFT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18335|      2|#endif
18336|      2|#ifdef MFD_HUGE_MASK
18337|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_MASK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18338|      2|#endif
18339|      2|#ifdef MFD_HUGE_64KB
18340|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_64KB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18341|      2|#endif
18342|      2|#ifdef MFD_HUGE_512KB
18343|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_512KB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18344|      2|#endif
18345|      2|#ifdef MFD_HUGE_1MB
18346|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_1MB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18347|      2|#endif
18348|      2|#ifdef MFD_HUGE_2MB
18349|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_2MB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18350|      2|#endif
18351|      2|#ifdef MFD_HUGE_8MB
18352|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_8MB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18353|      2|#endif
18354|      2|#ifdef MFD_HUGE_16MB
18355|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_16MB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18356|      2|#endif
18357|      2|#ifdef MFD_HUGE_32MB
18358|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_32MB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18359|      2|#endif
18360|      2|#ifdef MFD_HUGE_256MB
18361|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_256MB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18362|      2|#endif
18363|      2|#ifdef MFD_HUGE_512MB
18364|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_512MB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18365|      2|#endif
18366|      2|#ifdef MFD_HUGE_1GB
18367|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_1GB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18368|      2|#endif
18369|      2|#ifdef MFD_HUGE_2GB
18370|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_2GB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18371|      2|#endif
18372|      2|#ifdef MFD_HUGE_16GB
18373|      2|    if (PyModule_AddIntMacro(m, MFD_HUGE_16GB)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18374|      2|#endif
18375|      2|#endif /* HAVE_MEMFD_CREATE */
18376|       |
18377|      2|#if defined(HAVE_EVENTFD) && defined(EFD_CLOEXEC)
18378|      2|    if (PyModule_AddIntMacro(m, EFD_CLOEXEC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18379|      2|#ifdef EFD_NONBLOCK
18380|      2|    if (PyModule_AddIntMacro(m, EFD_NONBLOCK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18381|      2|#endif
18382|      2|#ifdef EFD_SEMAPHORE
18383|      2|    if (PyModule_AddIntMacro(m, EFD_SEMAPHORE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18384|      2|#endif
18385|      2|#endif  /* HAVE_EVENTFD && EFD_CLOEXEC */
18386|       |
18387|      2|#ifdef NODEV
18388|      2|    if (PyModule_Add(m, "NODEV", _PyLong_FromDev(NODEV))) return -1;
  ------------------
  |  Branch (18388:9): [True: 0, False: 2]
  ------------------
18389|      2|#endif
18390|       |
18391|      2|#ifdef AT_NO_AUTOMOUNT
18392|      2|    if (PyModule_AddIntMacro(m, AT_NO_AUTOMOUNT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18393|      2|#endif
18394|       |
18395|      2|#ifdef HAVE_STATX
18396|      2|    if (PyModule_AddIntMacro(m, STATX_TYPE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18397|      2|    if (PyModule_AddIntMacro(m, STATX_MODE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18398|      2|    if (PyModule_AddIntMacro(m, STATX_NLINK)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18399|      2|    if (PyModule_AddIntMacro(m, STATX_UID)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18400|      2|    if (PyModule_AddIntMacro(m, STATX_GID)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18401|      2|    if (PyModule_AddIntMacro(m, STATX_ATIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18402|      2|    if (PyModule_AddIntMacro(m, STATX_MTIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18403|      2|    if (PyModule_AddIntMacro(m, STATX_CTIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18404|      2|    if (PyModule_AddIntMacro(m, STATX_INO)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18405|      2|    if (PyModule_AddIntMacro(m, STATX_SIZE)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18406|      2|    if (PyModule_AddIntMacro(m, STATX_BLOCKS)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18407|      2|    if (PyModule_AddIntMacro(m, STATX_BASIC_STATS)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18408|      2|    if (PyModule_AddIntMacro(m, STATX_BTIME)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18409|       |#ifdef STATX_MNT_ID
18410|       |    if (PyModule_AddIntMacro(m, STATX_MNT_ID)) return -1;
18411|       |#endif
18412|       |#ifdef STATX_DIOALIGN
18413|       |    if (PyModule_AddIntMacro(m, STATX_DIOALIGN)) return -1;
18414|       |#endif
18415|       |#ifdef STATX_MNT_ID_UNIQUE
18416|       |    if (PyModule_AddIntMacro(m, STATX_MNT_ID_UNIQUE)) return -1;
18417|       |#endif
18418|       |#ifdef STATX_SUBVOL
18419|       |    if (PyModule_AddIntMacro(m, STATX_SUBVOL)) return -1;
18420|       |#endif
18421|       |#ifdef STATX_WRITE_ATOMIC
18422|       |    if (PyModule_AddIntMacro(m, STATX_WRITE_ATOMIC)) return -1;
18423|       |#endif
18424|       |#ifdef STATX_DIO_READ_ALIGN
18425|       |    if (PyModule_AddIntMacro(m, STATX_DIO_READ_ALIGN)) return -1;
18426|       |#endif
18427|       |    /* STATX_ALL intentionally omitted because it is deprecated */
18428|      2|    if (PyModule_AddIntMacro(m, AT_STATX_SYNC_AS_STAT)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18429|      2|    if (PyModule_AddIntMacro(m, AT_STATX_FORCE_SYNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18430|      2|    if (PyModule_AddIntMacro(m, AT_STATX_DONT_SYNC)) return -1;
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  |  |  ------------------
  |  |  |  Branch (47:36): [True: 0, False: 2]
  |  |  ------------------
  ------------------
18431|       |    /* STATX_ATTR_* constants are in the stat module */
18432|      2|#endif /* HAVE_STATX */
18433|       |
18434|       |#if defined(__APPLE__)
18435|       |    if (PyModule_AddIntConstant(m, "_COPYFILE_DATA", COPYFILE_DATA)) return -1;
18436|       |    if (PyModule_AddIntConstant(m, "_COPYFILE_STAT", COPYFILE_STAT)) return -1;
18437|       |    if (PyModule_AddIntConstant(m, "_COPYFILE_ACL", COPYFILE_ACL)) return -1;
18438|       |    if (PyModule_AddIntConstant(m, "_COPYFILE_XATTR", COPYFILE_XATTR)) return -1;
18439|       |#endif
18440|       |
18441|       |#ifdef MS_WINDOWS
18442|       |    if (PyModule_AddIntConstant(m, "_LOAD_LIBRARY_SEARCH_DEFAULT_DIRS", LOAD_LIBRARY_SEARCH_DEFAULT_DIRS)) return -1;
18443|       |    if (PyModule_AddIntConstant(m, "_LOAD_LIBRARY_SEARCH_APPLICATION_DIR", LOAD_LIBRARY_SEARCH_APPLICATION_DIR)) return -1;
18444|       |    if (PyModule_AddIntConstant(m, "_LOAD_LIBRARY_SEARCH_SYSTEM32", LOAD_LIBRARY_SEARCH_SYSTEM32)) return -1;
18445|       |    if (PyModule_AddIntConstant(m, "_LOAD_LIBRARY_SEARCH_USER_DIRS", LOAD_LIBRARY_SEARCH_USER_DIRS)) return -1;
18446|       |    if (PyModule_AddIntConstant(m, "_LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR", LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR)) return -1;
18447|       |#endif
18448|       |
18449|      2|    return 0;
18450|      2|}
posixmodule.c:setup_confname_tables:
15142|      2|{
15143|      2|#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
15144|      2|    if (setup_confname_table(posix_constants_pathconf,
  ------------------
  |  Branch (15144:9): [True: 0, False: 2]
  ------------------
15145|      2|                             sizeof(posix_constants_pathconf)
15146|      2|                               / sizeof(struct constdef),
15147|      2|                             "pathconf_names", module))
15148|      0|        return -1;
15149|      2|#endif
15150|      2|#ifdef HAVE_CONFSTR
15151|      2|    if (setup_confname_table(posix_constants_confstr,
  ------------------
  |  Branch (15151:9): [True: 0, False: 2]
  ------------------
15152|      2|                             sizeof(posix_constants_confstr)
15153|      2|                               / sizeof(struct constdef),
15154|      2|                             "confstr_names", module))
15155|      0|        return -1;
15156|      2|#endif
15157|      2|#ifdef HAVE_SYSCONF
15158|      2|    if (setup_confname_table(posix_constants_sysconf,
  ------------------
  |  Branch (15158:9): [True: 0, False: 2]
  ------------------
15159|      2|                             sizeof(posix_constants_sysconf)
15160|      2|                               / sizeof(struct constdef),
15161|      2|                             "sysconf_names", module))
15162|      0|        return -1;
15163|      2|#endif
15164|      2|    return 0;
15165|      2|}
posixmodule.c:setup_confname_table:
15122|      6|{
15123|      6|    PyObject *d = PyDict_New();
15124|      6|    if (d == NULL)
  ------------------
  |  Branch (15124:9): [True: 0, False: 6]
  ------------------
15125|      0|        return -1;
15126|       |
15127|    368|    for (size_t i=0; i < tablesize; ++i) {
  ------------------
  |  Branch (15127:22): [True: 362, False: 6]
  ------------------
15128|    362|        PyObject *o = PyLong_FromLong(table[i].value);
15129|    362|        if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
  ------------------
  |  Branch (15129:13): [True: 0, False: 362]
  |  Branch (15129:26): [True: 0, False: 362]
  ------------------
15130|      0|            Py_XDECREF(o);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
15131|      0|            Py_DECREF(d);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
15132|      0|            return -1;
15133|      0|        }
15134|    362|        Py_DECREF(o);
  ------------------
  |  |  430|    362|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    362|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    362|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
15135|    362|    }
15136|      6|    return PyModule_Add(module, tablename, d);
15137|      6|}
posixmodule.c:fd_specified:
 1607|      2|{
 1608|      2|    if (fd == -1)
  ------------------
  |  Branch (1608:9): [True: 2, False: 0]
  ------------------
 1609|      2|        return 0;
 1610|       |
 1611|      0|    argument_unavailable_error(function_name, "fd");
 1612|      0|    return 1;
 1613|      2|}
posixmodule.c:dir_fd_unavailable:
 1593|      2|{
 1594|      2|    int dir_fd;
 1595|      2|    if (!dir_fd_converter(o, &dir_fd))
  ------------------
  |  Branch (1595:9): [True: 0, False: 2]
  ------------------
 1596|      0|        return 0;
 1597|      2|    if (dir_fd != DEFAULT_DIR_FD) {
  ------------------
  |  | 1138|      2|#define DEFAULT_DIR_FD (int)AT_FDCWD
  ------------------
  |  Branch (1597:9): [True: 0, False: 2]
  ------------------
 1598|      0|        argument_unavailable_error(NULL, "dir_fd");
 1599|      0|        return 0;
 1600|      0|    }
 1601|      2|    *(int *)p = dir_fd;
 1602|      2|    return 1;
 1603|      2|}
posixmodule.c:probe_faccessat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_fchmodat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_fchownat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_fdopendir:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_fstatat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_futimens:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_linkat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_mkdirat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_mkfifoat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_mknodat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_openat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_readlinkat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_renameat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_symlinkat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_unlinkat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_utimensat:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:probe_ptsname_r:
18456|      2|   {                      \
18457|      2|      if (test) {        \
  ------------------
  |  Branch (18457:11): [True: 2, Folded]
  ------------------
18458|      2|          return 1;       \
18459|      2|      } else {            \
18460|      0|          return 0;       \
18461|      0|      }                   \
18462|      2|   }
posixmodule.c:_posix_traverse:
 2613|      4|{
 2614|      4|    _posixstate *state = get_posix_state(module);
 2615|      4|    Py_VISIT(state->billion);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2616|      4|    Py_VISIT(state->DirEntryType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2617|      4|    Py_VISIT(state->ScandirIteratorType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2618|      4|#if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDPARAM)
 2619|      4|    Py_VISIT(state->SchedParamType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2620|      4|#endif
 2621|      4|    Py_VISIT(state->StatResultType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2622|      4|#ifdef HAVE_STATX
 2623|      4|    Py_VISIT(state->StatxResultType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2624|      4|#endif
 2625|      4|    Py_VISIT(state->StatVFSResultType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2626|      4|    Py_VISIT(state->TerminalSizeType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2627|      4|    Py_VISIT(state->TimesResultType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2628|      4|    Py_VISIT(state->UnameResultType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2629|      4|#if defined(HAVE_WAITID)
 2630|      4|    Py_VISIT(state->WaitidResultType);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2631|      4|#endif
 2632|      4|#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
 2633|      4|    Py_VISIT(state->struct_rusage);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2634|      4|#endif
 2635|      4|    Py_VISIT(state->st_mode);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2636|      4|    return 0;
 2637|      4|}

PyErr_CheckSignals:
 1766|  1.99k|{
 1767|  1.99k|    PyThreadState *tstate = _PyThreadState_GET();
 1768|       |
 1769|       |    /* Opportunistically check if the GC is scheduled to run and run it
 1770|       |       if we have a request. This is done here because native code needs
 1771|       |       to call this API if is going to run for some time without executing
 1772|       |       Python code to ensure signals are handled. Checking for the GC here
 1773|       |       allows long running native code to clean cycles created using the C-API
 1774|       |       even if it doesn't run the evaluation loop */
 1775|  1.99k|    uintptr_t breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker);
 1776|  1.99k|    if (breaker & _PY_GC_SCHEDULED_BIT) {
  ------------------
  |  |  350|  1.99k|#define _PY_GC_SCHEDULED_BIT (1U << 4)
  ------------------
  |  Branch (1776:9): [True: 0, False: 1.99k]
  ------------------
 1777|      0|        _Py_unset_eval_breaker_bit(tstate, _PY_GC_SCHEDULED_BIT);
  ------------------
  |  |  350|      0|#define _PY_GC_SCHEDULED_BIT (1U << 4)
  ------------------
 1778|      0|        _Py_RunGC(tstate);
 1779|      0|    }
 1780|  1.99k|    if (breaker & _PY_ASYNC_EXCEPTION_BIT) {
  ------------------
  |  |  349|  1.99k|#define _PY_ASYNC_EXCEPTION_BIT (1U << 3)
  ------------------
  |  Branch (1780:9): [True: 0, False: 1.99k]
  ------------------
 1781|      0|        if (_PyEval_RaiseAsyncExc(tstate) < 0) {
  ------------------
  |  Branch (1781:13): [True: 0, False: 0]
  ------------------
 1782|      0|            return -1;
 1783|      0|        }
 1784|      0|    }
 1785|       |
 1786|  1.99k|#if defined(Py_REMOTE_DEBUG) && defined(Py_SUPPORTS_REMOTE_DEBUG)
 1787|  1.99k|    _PyRunRemoteDebugger(tstate);
 1788|  1.99k|#endif
 1789|       |
 1790|  1.99k|    if (_Py_ThreadCanHandleSignals(tstate->interp)) {
  ------------------
  |  Branch (1790:9): [True: 1.99k, False: 0]
  ------------------
 1791|  1.99k|        if (_PyErr_CheckSignalsTstate(tstate) < 0) {
  ------------------
  |  Branch (1791:13): [True: 0, False: 1.99k]
  ------------------
 1792|      0|            return -1;
 1793|      0|        }
 1794|  1.99k|    }
 1795|       |
 1796|  1.99k|    return 0;
 1797|  1.99k|}
_PyErr_CheckSignalsTstate:
 1803|  1.99k|{
 1804|  1.99k|    _Py_CHECK_EMSCRIPTEN_SIGNALS();
 1805|  1.99k|    if (!_Py_atomic_load_int(&is_tripped)) {
  ------------------
  |  |  108|  1.99k|#define is_tripped _PyRuntime.signals.is_tripped
  ------------------
  |  Branch (1805:9): [True: 1.99k, False: 0]
  ------------------
 1806|  1.99k|        return 0;
 1807|  1.99k|    }
 1808|       |
 1809|       |    /*
 1810|       |     * The is_tripped variable is meant to speed up the calls to
 1811|       |     * PyErr_CheckSignals (both directly or via pending calls) when no
 1812|       |     * signal has arrived. This variable is set to 1 when a signal arrives
 1813|       |     * and it is set to 0 here, when we know some signals arrived. This way
 1814|       |     * we can run the registered handlers with no signals blocked.
 1815|       |     *
 1816|       |     * NOTE: with this approach we can have a situation where is_tripped is
 1817|       |     *       1 but we have no more signals to handle (Handlers[i].tripped
 1818|       |     *       is 0 for every signal i). This won't do us any harm (except
 1819|       |     *       we're gonna spent some cycles for nothing). This happens when
 1820|       |     *       we receive a signal i after we zero is_tripped and before we
 1821|       |     *       check Handlers[i].tripped.
 1822|       |     */
 1823|      0|    _Py_atomic_store_int(&is_tripped, 0);
  ------------------
  |  |  108|      0|#define is_tripped _PyRuntime.signals.is_tripped
  ------------------
 1824|       |
 1825|      0|    _PyInterpreterFrame *frame = _PyThreadState_GetFrame(tstate);
 1826|      0|    signal_state_t *state = &signal_global_state;
  ------------------
  |  |  112|      0|#define signal_global_state _PyRuntime.signals
  ------------------
 1827|      0|    for (int i = 1; i < Py_NSIG; i++) {
  ------------------
  |  |   26|      0|#  define Py_NSIG NSIG
  ------------------
  |  Branch (1827:21): [True: 0, False: 0]
  ------------------
 1828|      0|        if (!_Py_atomic_load_int_relaxed(&Handlers[i].tripped)) {
  ------------------
  |  |  106|      0|#define Handlers _PyRuntime.signals.handlers
  ------------------
  |  Branch (1828:13): [True: 0, False: 0]
  ------------------
 1829|      0|            continue;
 1830|      0|        }
 1831|      0|        _Py_atomic_store_int_relaxed(&Handlers[i].tripped, 0);
  ------------------
  |  |  106|      0|#define Handlers _PyRuntime.signals.handlers
  ------------------
 1832|       |
 1833|       |        /* Signal handlers can be modified while a signal is received,
 1834|       |         * and therefore the fact that trip_signal() or PyErr_SetInterrupt()
 1835|       |         * was called doesn't guarantee that there is still a Python
 1836|       |         * signal handler for it by the time PyErr_CheckSignals() is called
 1837|       |         * (see bpo-43406).
 1838|       |         */
 1839|      0|        PyObject *func = get_handler(i);
 1840|      0|        if (func == NULL || func == Py_None ||
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1840:13): [True: 0, False: 0]
  |  Branch (1840:29): [True: 0, False: 0]
  ------------------
 1841|      0|            compare_handler(func, state->ignore_handler) ||
  ------------------
  |  Branch (1841:13): [True: 0, False: 0]
  ------------------
 1842|      0|            compare_handler(func, state->default_handler)) {
  ------------------
  |  Branch (1842:13): [True: 0, False: 0]
  ------------------
 1843|       |            /* No Python signal handler due to aforementioned race condition.
 1844|       |             * We can't call raise() as it would break the assumption
 1845|       |             * that PyErr_SetInterrupt() only *simulates* an incoming
 1846|       |             * signal (i.e. it will never kill the process).
 1847|       |             * We also don't want to interrupt user code with a cryptic
 1848|       |             * asynchronous exception, so instead just write out an
 1849|       |             * unraisable error.
 1850|       |             */
 1851|      0|            PyErr_Format(PyExc_OSError,
 1852|      0|                         "Signal %i ignored due to race condition",
 1853|      0|                         i);
 1854|      0|            PyErr_FormatUnraisable("Exception ignored while "
 1855|      0|                                   "calling signal handler");
 1856|      0|            continue;
 1857|      0|        }
 1858|      0|        PyObject *arglist = NULL;
 1859|      0|        if (frame == NULL) {
  ------------------
  |  Branch (1859:13): [True: 0, False: 0]
  ------------------
 1860|      0|            arglist = Py_BuildValue("(iO)", i, Py_None);
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
 1861|      0|        }
 1862|      0|        else {
 1863|      0|            PyFrameObject *f = _PyFrame_GetFrameObject(frame);
 1864|      0|            if (f != NULL) {
  ------------------
  |  Branch (1864:17): [True: 0, False: 0]
  ------------------
 1865|      0|                arglist = Py_BuildValue("(iO)", i, f);
 1866|      0|            }
 1867|      0|        }
 1868|      0|        PyObject *result;
 1869|      0|        if (arglist) {
  ------------------
  |  Branch (1869:13): [True: 0, False: 0]
  ------------------
 1870|      0|            result = _PyObject_Call(tstate, func, arglist, NULL);
 1871|      0|            Py_DECREF(arglist);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1872|      0|        }
 1873|      0|        else {
 1874|      0|            result = NULL;
 1875|      0|        }
 1876|      0|        if (!result) {
  ------------------
  |  Branch (1876:13): [True: 0, False: 0]
  ------------------
 1877|       |            /* On error, re-schedule a call to _PyErr_CheckSignalsTstate() */
 1878|      0|            _Py_atomic_store_int(&is_tripped, 1);
  ------------------
  |  |  108|      0|#define is_tripped _PyRuntime.signals.is_tripped
  ------------------
 1879|      0|            return -1;
 1880|      0|        }
 1881|       |
 1882|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1883|      0|    }
 1884|       |
 1885|      0|    return 0;
 1886|      0|}
_PySignal_Init:
 1973|      2|{
 1974|      2|    signal_state_t *state = &signal_global_state;
  ------------------
  |  |  112|      2|#define signal_global_state _PyRuntime.signals
  ------------------
 1975|       |
 1976|      2|    state->default_handler = PyLong_FromVoidPtr((void *)SIG_DFL);
 1977|      2|    if (state->default_handler == NULL) {
  ------------------
  |  Branch (1977:9): [True: 0, False: 2]
  ------------------
 1978|      0|        return -1;
 1979|      0|    }
 1980|       |
 1981|      2|    state->ignore_handler = PyLong_FromVoidPtr((void *)SIG_IGN);
 1982|      2|    if (state->ignore_handler == NULL) {
  ------------------
  |  Branch (1982:9): [True: 0, False: 2]
  ------------------
 1983|      0|        return -1;
 1984|      0|    }
 1985|       |
 1986|       |#ifdef MS_WINDOWS
 1987|       |    /* Create manual-reset event, initially unset */
 1988|       |    state->sigint_event = (void *)CreateEvent(NULL, TRUE, FALSE, FALSE);
 1989|       |    if (state->sigint_event == NULL) {
 1990|       |        PyErr_SetFromWindowsErr(0);
 1991|       |        return -1;
 1992|       |    }
 1993|       |#endif
 1994|       |
 1995|    130|    for (int signum = 1; signum < Py_NSIG; signum++) {
  ------------------
  |  |   26|    130|#  define Py_NSIG NSIG
  ------------------
  |  Branch (1995:26): [True: 128, False: 2]
  ------------------
 1996|    128|        _Py_atomic_store_int_relaxed(&Handlers[signum].tripped, 0);
  ------------------
  |  |  106|    128|#define Handlers _PyRuntime.signals.handlers
  ------------------
 1997|    128|    }
 1998|       |
 1999|      2|    if (install_signal_handlers) {
  ------------------
  |  Branch (1999:9): [True: 0, False: 2]
  ------------------
 2000|      0|        if (signal_install_handlers() < 0) {
  ------------------
  |  Branch (2000:13): [True: 0, False: 0]
  ------------------
 2001|      0|            return -1;
 2002|      0|        }
 2003|      0|    }
 2004|       |
 2005|      2|    return 0;
 2006|      2|}

PyInit_time:
 2209|      2|{
 2210|      2|    return PyModuleDef_Init(&timemodule);
 2211|      2|}
timemodule.c:get_time_state:
   92|      6|{
   93|      6|    void *state = _PyModule_GetState(module);
   94|      6|    assert(state != NULL);
  ------------------
  |  Branch (94:5): [True: 6, False: 0]
  ------------------
   95|      6|    return (time_module_state *)state;
   96|      6|}
timemodule.c:init_timezone:
 1783|      2|{
 1784|      2|#define ADD_INT(NAME, VALUE) do {                       \
 1785|      2|    if (PyModule_AddIntConstant(m, NAME, VALUE) < 0) {  \
 1786|      2|        return -1;                                      \
 1787|      2|    }                                                   \
 1788|      2|} while (0)
 1789|       |
 1790|      2|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (1790:5): [True: 2, False: 0]
  ------------------
 1791|       |
 1792|       |    /* This code moved from PyInit_time wholesale to allow calling it from
 1793|       |    time_tzset. In the future, some parts of it can be moved back
 1794|       |    (for platforms that don't HAVE_WORKING_TZSET, when we know what they
 1795|       |    are), and the extraneous calls to tzset(3) should be removed.
 1796|       |    I haven't done this yet, as I don't want to change this code as
 1797|       |    little as possible when introducing the time.tzset and time.tzsetwall
 1798|       |    methods. This should simply be a method of doing the following once,
 1799|       |    at the top of this function and removing the call to tzset() from
 1800|       |    time_tzset():
 1801|       |
 1802|       |        #ifdef HAVE_TZSET
 1803|       |        tzset()
 1804|       |        #endif
 1805|       |
 1806|       |    And I'm lazy and hate C so nyer.
 1807|       |     */
 1808|       |#ifdef HAVE_DECL_TZNAME
 1809|       |    PyObject *otz0, *otz1;
 1810|       |#if !defined(MS_WINDOWS) || defined(MS_WINDOWS_DESKTOP) || defined(MS_WINDOWS_SYSTEM)
 1811|       |    tzset();
 1812|       |#endif
 1813|       |    ADD_INT("timezone", _Py_timezone);
 1814|       |#ifdef HAVE_ALTZONE
 1815|       |    ADD_INT("altzone", altzone);
 1816|       |#else
 1817|       |    ADD_INT("altzone", _Py_timezone-3600);
 1818|       |#endif
 1819|       |    ADD_INT("daylight", _Py_daylight);
 1820|       |#ifdef MS_WINDOWS
 1821|       |    TIME_ZONE_INFORMATION tzinfo = {0};
 1822|       |    GetTimeZoneInformation(&tzinfo);
 1823|       |    otz0 = PyUnicode_FromWideChar(tzinfo.StandardName, -1);
 1824|       |    if (otz0 == NULL) {
 1825|       |        return -1;
 1826|       |    }
 1827|       |    otz1 = PyUnicode_FromWideChar(tzinfo.DaylightName, -1);
 1828|       |    if (otz1 == NULL) {
 1829|       |        Py_DECREF(otz0);
 1830|       |        return -1;
 1831|       |    }
 1832|       |#else
 1833|       |    otz0 = PyUnicode_DecodeLocale(_Py_tzname[0], "surrogateescape");
 1834|       |    if (otz0 == NULL) {
 1835|       |        return -1;
 1836|       |    }
 1837|       |    otz1 = PyUnicode_DecodeLocale(_Py_tzname[1], "surrogateescape");
 1838|       |    if (otz1 == NULL) {
 1839|       |        Py_DECREF(otz0);
 1840|       |        return -1;
 1841|       |    }
 1842|       |#endif // MS_WINDOWS
 1843|       |    if (PyModule_Add(m, "tzname", Py_BuildValue("(NN)", otz0, otz1)) < 0) {
 1844|       |        return -1;
 1845|       |    }
 1846|       |#else // !HAVE_DECL_TZNAME
 1847|      2|    static const time_t YEAR = (365 * 24 + 6) * 3600;
 1848|      2|    time_t t;
 1849|      2|    struct tm p;
 1850|      2|    time_t janzone_t, julyzone_t;
 1851|      2|    char janname[10], julyname[10];
 1852|      2|    t = (time((time_t *)0) / YEAR) * YEAR;
 1853|      2|    _PyTime_localtime(t, &p);
 1854|      2|    get_zone(janname, 9, &p);
 1855|      2|    janzone_t = -get_gmtoff(t, &p);
 1856|      2|    janname[9] = '\0';
 1857|      2|    t += YEAR/2;
 1858|      2|    _PyTime_localtime(t, &p);
 1859|      2|    get_zone(julyname, 9, &p);
 1860|      2|    julyzone_t = -get_gmtoff(t, &p);
 1861|      2|    julyname[9] = '\0';
 1862|       |
 1863|       |    /* Sanity check, don't check for the validity of timezones.
 1864|       |       In practice, it should be more in range -12 hours .. +14 hours. */
 1865|      2|#define MAX_TIMEZONE (48 * 3600)
 1866|      2|    if (janzone_t < -MAX_TIMEZONE || janzone_t > MAX_TIMEZONE
  ------------------
  |  | 1865|      4|#define MAX_TIMEZONE (48 * 3600)
  ------------------
                  if (janzone_t < -MAX_TIMEZONE || janzone_t > MAX_TIMEZONE
  ------------------
  |  | 1865|      4|#define MAX_TIMEZONE (48 * 3600)
  ------------------
  |  Branch (1866:9): [True: 0, False: 2]
  |  Branch (1866:38): [True: 0, False: 2]
  ------------------
 1867|      2|        || julyzone_t < -MAX_TIMEZONE || julyzone_t > MAX_TIMEZONE)
  ------------------
  |  | 1865|      4|#define MAX_TIMEZONE (48 * 3600)
  ------------------
                      || julyzone_t < -MAX_TIMEZONE || julyzone_t > MAX_TIMEZONE)
  ------------------
  |  | 1865|      2|#define MAX_TIMEZONE (48 * 3600)
  ------------------
  |  Branch (1867:12): [True: 0, False: 2]
  |  Branch (1867:42): [True: 0, False: 2]
  ------------------
 1868|      0|    {
 1869|      0|        PyErr_SetString(PyExc_RuntimeError, "invalid GMT offset");
 1870|      0|        return -1;
 1871|      0|    }
 1872|      2|    int janzone = (int)janzone_t;
 1873|      2|    int julyzone = (int)julyzone_t;
 1874|       |
 1875|      2|    PyObject *tzname_obj;
 1876|      2|    if (janzone < julyzone) {
  ------------------
  |  Branch (1876:9): [True: 0, False: 2]
  ------------------
 1877|       |        /* DST is reversed in the southern hemisphere */
 1878|      0|        ADD_INT("timezone", julyzone);
  ------------------
  |  | 1784|      0|#define ADD_INT(NAME, VALUE) do {                       \
  |  | 1785|      0|    if (PyModule_AddIntConstant(m, NAME, VALUE) < 0) {  \
  |  |  ------------------
  |  |  |  Branch (1785:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1786|      0|        return -1;                                      \
  |  | 1787|      0|    }                                                   \
  |  | 1788|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1788:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1879|      0|        ADD_INT("altzone", janzone);
  ------------------
  |  | 1784|      0|#define ADD_INT(NAME, VALUE) do {                       \
  |  | 1785|      0|    if (PyModule_AddIntConstant(m, NAME, VALUE) < 0) {  \
  |  |  ------------------
  |  |  |  Branch (1785:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1786|      0|        return -1;                                      \
  |  | 1787|      0|    }                                                   \
  |  | 1788|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1788:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1880|      0|        ADD_INT("daylight", janzone != julyzone);
  ------------------
  |  | 1784|      0|#define ADD_INT(NAME, VALUE) do {                       \
  |  | 1785|      0|    if (PyModule_AddIntConstant(m, NAME, VALUE) < 0) {  \
  |  |  ------------------
  |  |  |  Branch (1785:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1786|      0|        return -1;                                      \
  |  | 1787|      0|    }                                                   \
  |  | 1788|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1788:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1881|      0|        tzname_obj = Py_BuildValue("(zz)", julyname, janname);
 1882|      2|    } else {
 1883|      2|        ADD_INT("timezone", janzone);
  ------------------
  |  | 1784|      2|#define ADD_INT(NAME, VALUE) do {                       \
  |  | 1785|      2|    if (PyModule_AddIntConstant(m, NAME, VALUE) < 0) {  \
  |  |  ------------------
  |  |  |  Branch (1785:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 1786|      0|        return -1;                                      \
  |  | 1787|      0|    }                                                   \
  |  | 1788|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (1788:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1884|      2|        ADD_INT("altzone", julyzone);
  ------------------
  |  | 1784|      2|#define ADD_INT(NAME, VALUE) do {                       \
  |  | 1785|      2|    if (PyModule_AddIntConstant(m, NAME, VALUE) < 0) {  \
  |  |  ------------------
  |  |  |  Branch (1785:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 1786|      0|        return -1;                                      \
  |  | 1787|      0|    }                                                   \
  |  | 1788|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (1788:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1885|      2|        ADD_INT("daylight", janzone != julyzone);
  ------------------
  |  | 1784|      2|#define ADD_INT(NAME, VALUE) do {                       \
  |  | 1785|      2|    if (PyModule_AddIntConstant(m, NAME, VALUE) < 0) {  \
  |  |  ------------------
  |  |  |  Branch (1785:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 1786|      0|        return -1;                                      \
  |  | 1787|      0|    }                                                   \
  |  | 1788|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (1788:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1886|      2|        tzname_obj = Py_BuildValue("(zz)", janname, julyname);
 1887|      2|    }
 1888|      2|    if (PyModule_Add(m, "tzname", tzname_obj) < 0) {
  ------------------
  |  Branch (1888:9): [True: 0, False: 2]
  ------------------
 1889|      0|        return -1;
 1890|      0|    }
 1891|      2|#endif // !HAVE_DECL_TZNAME
 1892|      2|#undef ADD_INT
 1893|       |
 1894|      2|    if (PyErr_Occurred()) {
  ------------------
  |  Branch (1894:9): [True: 0, False: 2]
  ------------------
 1895|      0|        return -1;
 1896|      0|    }
 1897|      2|    return 0;
 1898|      2|}
timemodule.c:get_zone:
 1761|      4|{
 1762|      4|#ifdef HAVE_STRUCT_TM_TM_ZONE
 1763|      4|    strncpy(zone, p->tm_zone ? p->tm_zone : "   ", n);
  ------------------
  |  Branch (1763:19): [True: 4, False: 0]
  ------------------
 1764|       |#else
 1765|       |    tzset();
 1766|       |    strftime(zone, n, "%Z", p);
 1767|       |#endif
 1768|      4|}
timemodule.c:get_gmtoff:
 1772|      4|{
 1773|      4|#ifdef HAVE_STRUCT_TM_TM_ZONE
 1774|      4|    return p->tm_gmtoff;
 1775|       |#else
 1776|       |    return timegm(p) - t;
 1777|       |#endif
 1778|      4|}
timemodule.c:time_exec:
 1979|      2|{
 1980|      2|    time_module_state *state = get_time_state(module);
 1981|       |#if defined(__APPLE__) && defined(HAVE_CLOCK_GETTIME)
 1982|       |    if (HAVE_CLOCK_GETTIME_RUNTIME) {
 1983|       |        /* pass: ^^^ cannot use '!' here */
 1984|       |    } else {
 1985|       |        PyObject* dct = PyModule_GetDict(module);
 1986|       |        if (dct == NULL) {
 1987|       |            return -1;
 1988|       |        }
 1989|       |
 1990|       |        if (PyDict_PopString(dct, "clock_gettime", NULL) < 0) {
 1991|       |            return -1;
 1992|       |        }
 1993|       |        if (PyDict_PopString(dct, "clock_gettime_ns", NULL) < 0) {
 1994|       |            return -1;
 1995|       |        }
 1996|       |        if (PyDict_PopString(dct, "clock_settime", NULL) < 0) {
 1997|       |            return -1;
 1998|       |        }
 1999|       |        if (PyDict_PopString(dct, "clock_settime_ns", NULL) < 0) {
 2000|       |            return -1;
 2001|       |        }
 2002|       |        if (PyDict_PopString(dct, "clock_getres", NULL) < 0) {
 2003|       |            return -1;
 2004|       |        }
 2005|       |    }
 2006|       |#endif
 2007|       |#if defined(__APPLE__) && defined(HAVE_THREAD_TIME)
 2008|       |    if (HAVE_CLOCK_GETTIME_RUNTIME) {
 2009|       |        /* pass: ^^^ cannot use '!' here */
 2010|       |    } else {
 2011|       |        PyObject* dct = PyModule_GetDict(module);
 2012|       |
 2013|       |        if (PyDict_PopString(dct, "thread_time", NULL) < 0) {
 2014|       |            return -1;
 2015|       |        }
 2016|       |        if (PyDict_PopString(dct, "thread_time_ns", NULL) < 0) {
 2017|       |            return -1;
 2018|       |        }
 2019|       |    }
 2020|       |#endif
 2021|       |    /* Set, or reset, module variables like time.timezone */
 2022|      2|    if (init_timezone(module) < 0) {
  ------------------
  |  Branch (2022:9): [True: 0, False: 2]
  ------------------
 2023|      0|        return -1;
 2024|      0|    }
 2025|       |
 2026|      2|#if defined(HAVE_CLOCK_GETTIME) || defined(HAVE_CLOCK_SETTIME) || defined(HAVE_CLOCK_GETRES)
 2027|      2|    if (HAVE_CLOCK_GETTIME_RUNTIME) {
  ------------------
  |  |   60|      2|#  define HAVE_CLOCK_GETTIME_RUNTIME 1
  |  |  ------------------
  |  |  |  Branch (60:38): [True: 2, Folded]
  |  |  ------------------
  ------------------
 2028|       |
 2029|      2|#ifdef CLOCK_REALTIME
 2030|      2|        if (PyModule_AddIntMacro(module, CLOCK_REALTIME) < 0) {
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (2030:13): [True: 0, False: 2]
  ------------------
 2031|      0|            return -1;
 2032|      0|        }
 2033|      2|#endif
 2034|      2|#ifdef CLOCK_MONOTONIC
 2035|      2|        if (PyModule_AddIntMacro(module, CLOCK_MONOTONIC) < 0) {
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (2035:13): [True: 0, False: 2]
  ------------------
 2036|      0|            return -1;
 2037|      0|        }
 2038|      2|#endif
 2039|      2|#ifdef CLOCK_MONOTONIC_RAW
 2040|      2|        if (PyModule_AddIntMacro(module, CLOCK_MONOTONIC_RAW) < 0) {
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (2040:13): [True: 0, False: 2]
  ------------------
 2041|      0|            return -1;
 2042|      0|        }
 2043|      2|#endif
 2044|       |#ifdef CLOCK_HIGHRES
 2045|       |        if (PyModule_AddIntMacro(module, CLOCK_HIGHRES) < 0) {
 2046|       |            return -1;
 2047|       |        }
 2048|       |#endif
 2049|      2|#ifdef CLOCK_PROCESS_CPUTIME_ID
 2050|      2|        if (PyModule_AddIntMacro(module, CLOCK_PROCESS_CPUTIME_ID) < 0) {
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (2050:13): [True: 0, False: 2]
  ------------------
 2051|      0|            return -1;
 2052|      0|        }
 2053|      2|#endif
 2054|      2|#ifdef CLOCK_THREAD_CPUTIME_ID
 2055|      2|        if (PyModule_AddIntMacro(module, CLOCK_THREAD_CPUTIME_ID) < 0) {
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (2055:13): [True: 0, False: 2]
  ------------------
 2056|      0|            return -1;
 2057|      0|        }
 2058|      2|#endif
 2059|       |#ifdef CLOCK_PROF
 2060|       |        if (PyModule_AddIntMacro(module, CLOCK_PROF) < 0) {
 2061|       |            return -1;
 2062|       |        }
 2063|       |#endif
 2064|      2|#ifdef CLOCK_BOOTTIME
 2065|      2|        if (PyModule_AddIntMacro(module, CLOCK_BOOTTIME) < 0) {
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (2065:13): [True: 0, False: 2]
  ------------------
 2066|      0|            return -1;
 2067|      0|        }
 2068|      2|#endif
 2069|      2|#ifdef CLOCK_TAI
 2070|      2|        if (PyModule_AddIntMacro(module, CLOCK_TAI) < 0) {
  ------------------
  |  |   47|      2|#define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant((m), #c, (c))
  ------------------
  |  Branch (2070:13): [True: 0, False: 2]
  ------------------
 2071|      0|            return -1;
 2072|      0|        }
 2073|      2|#endif
 2074|       |#ifdef CLOCK_UPTIME
 2075|       |        if (PyModule_AddIntMacro(module, CLOCK_UPTIME) < 0) {
 2076|       |            return -1;
 2077|       |        }
 2078|       |#endif
 2079|       |#ifdef CLOCK_UPTIME_RAW
 2080|       |        if (PyModule_AddIntMacro(module, CLOCK_UPTIME_RAW) < 0) {
 2081|       |            return -1;
 2082|       |        }
 2083|       |#endif
 2084|       |#ifdef CLOCK_MONOTONIC_RAW_APPROX
 2085|       |        if (PyModule_AddIntMacro(module, CLOCK_MONOTONIC_RAW_APPROX) < 0) {
 2086|       |            return -1;
 2087|       |        }
 2088|       |#endif
 2089|       |#ifdef CLOCK_UPTIME_RAW_APPROX
 2090|       |        if (PyModule_AddIntMacro(module, CLOCK_UPTIME_RAW_APPROX) < 0) {
 2091|       |            return -1;
 2092|       |        }
 2093|       |#endif
 2094|      2|    }
 2095|       |
 2096|      2|#endif  /* defined(HAVE_CLOCK_GETTIME) || defined(HAVE_CLOCK_SETTIME) || defined(HAVE_CLOCK_GETRES) */
 2097|       |
 2098|      2|    if (PyModule_AddIntConstant(module, "_STRUCT_TM_ITEMS", 11)) {
  ------------------
  |  Branch (2098:9): [True: 0, False: 2]
  ------------------
 2099|      0|        return -1;
 2100|      0|    }
 2101|       |
 2102|       |    // struct_time type
 2103|      2|    state->struct_time_type = PyStructSequence_NewType(&struct_time_type_desc);
 2104|      2|    if (state->struct_time_type == NULL) {
  ------------------
  |  Branch (2104:9): [True: 0, False: 2]
  ------------------
 2105|      0|        return -1;
 2106|      0|    }
 2107|      2|    if (PyModule_AddType(module, state->struct_time_type)) {
  ------------------
  |  Branch (2107:9): [True: 0, False: 2]
  ------------------
 2108|      0|        return -1;
 2109|      0|    }
 2110|       |
 2111|       |#if defined(__linux__) && !defined(__GLIBC__)
 2112|       |    struct tm tm;
 2113|       |    const time_t zero = 0;
 2114|       |    if (gmtime_r(&zero, &tm) != NULL)
 2115|       |        utc_string = tm.tm_zone;
 2116|       |#endif
 2117|       |
 2118|       |#if defined(MS_WINDOWS)
 2119|       |    if (timer_flags == (DWORD)-1) {
 2120|       |        DWORD test_flags = CREATE_WAITABLE_TIMER_HIGH_RESOLUTION;
 2121|       |        HANDLE timer = CreateWaitableTimerExW(NULL, NULL, test_flags,
 2122|       |                                              TIMER_ALL_ACCESS);
 2123|       |        if (timer == NULL) {
 2124|       |            // CREATE_WAITABLE_TIMER_HIGH_RESOLUTION is not supported.
 2125|       |            timer_flags = 0;
 2126|       |        }
 2127|       |        else {
 2128|       |            // CREATE_WAITABLE_TIMER_HIGH_RESOLUTION is supported.
 2129|       |            timer_flags = CREATE_WAITABLE_TIMER_HIGH_RESOLUTION;
 2130|       |            CloseHandle(timer);
 2131|       |        }
 2132|       |    }
 2133|       |#endif
 2134|       |
 2135|       |// gh-115714: Don't use times() on WASI.
 2136|      2|#if defined(HAVE_TIMES) && !defined(__wasi__)
 2137|      2|    long ticks_per_second;
 2138|      2|    if (_Py_GetTicksPerSecond(&ticks_per_second) < 0) {
  ------------------
  |  Branch (2138:9): [True: 0, False: 2]
  ------------------
 2139|      0|        PyErr_SetString(PyExc_RuntimeError,
 2140|      0|                        "cannot read ticks_per_second");
 2141|      0|        return -1;
 2142|      0|    }
 2143|      2|    if (_PyTimeFraction_Set(&state->times_base, SEC_TO_NS,
  ------------------
  |  |   64|      2|#define SEC_TO_NS (1000 * 1000 * 1000)
  ------------------
  |  Branch (2143:9): [True: 0, False: 2]
  ------------------
 2144|      2|                            ticks_per_second) < 0) {
 2145|      0|        PyErr_Format(PyExc_OverflowError, "ticks_per_second is too large");
 2146|      0|        return -1;
 2147|      0|    }
 2148|      2|#endif
 2149|       |
 2150|      2|#ifdef HAVE_CLOCK
 2151|      2|    if (_PyTimeFraction_Set(&state->clock_base, SEC_TO_NS,
  ------------------
  |  |   64|      2|#define SEC_TO_NS (1000 * 1000 * 1000)
  ------------------
  |  Branch (2151:9): [True: 0, False: 2]
  ------------------
 2152|      2|                            CLOCKS_PER_SEC) < 0) {
 2153|      0|        PyErr_Format(PyExc_OverflowError, "CLOCKS_PER_SEC is too large");
 2154|      0|        return -1;
 2155|      0|    }
 2156|      2|#endif
 2157|       |
 2158|      2|    return 0;
 2159|      2|}
timemodule.c:time_module_traverse:
 2164|      4|{
 2165|      4|    time_module_state *state = get_time_state(module);
 2166|      4|    Py_VISIT(state->struct_time_type);
  ------------------
  |  |  194|      4|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 2167|      4|    return 0;
 2168|      4|}

PyObject_Type:
   45|      4|{
   46|      4|    PyObject *v;
   47|       |
   48|      4|    if (o == NULL) {
  ------------------
  |  Branch (48:9): [True: 0, False: 4]
  ------------------
   49|      0|        return null_error();
   50|      0|    }
   51|       |
   52|      4|    v = (PyObject *)Py_TYPE(o);
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   53|      4|    return Py_NewRef(v);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   54|      4|}
PyObject_Size:
   58|    180|{
   59|    180|    if (o == NULL) {
  ------------------
  |  Branch (59:9): [True: 0, False: 180]
  ------------------
   60|      0|        null_error();
   61|      0|        return -1;
   62|      0|    }
   63|       |
   64|    180|    PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence;
  ------------------
  |  |  213|    180|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   65|    180|    if (m && m->sq_length) {
  ------------------
  |  Branch (65:9): [True: 180, False: 0]
  |  Branch (65:14): [True: 178, False: 2]
  ------------------
   66|    178|        Py_ssize_t len = m->sq_length(o);
   67|    178|        assert(_Py_CheckSlotResult(o, "__len__", len >= 0));
  ------------------
  |  Branch (67:9): [True: 178, False: 0]
  ------------------
   68|    178|        return len;
   69|    178|    }
   70|       |
   71|      2|    return PyMapping_Size(o);
   72|    180|}
_PyObject_HasLen:
   83|     80|_PyObject_HasLen(PyObject *o) {
   84|     80|    return (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_length) ||
  ------------------
  |  |  213|     80|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  return (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_length) ||
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (84:13): [True: 0, False: 80]
  |  Branch (84:43): [True: 0, False: 0]
  ------------------
   85|     80|        (Py_TYPE(o)->tp_as_mapping && Py_TYPE(o)->tp_as_mapping->mp_length);
  ------------------
  |  |  213|     80|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      (Py_TYPE(o)->tp_as_mapping && Py_TYPE(o)->tp_as_mapping->mp_length);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (85:10): [True: 0, False: 80]
  |  Branch (85:39): [True: 0, False: 0]
  ------------------
   86|     80|}
PyObject_LengthHint:
   96|     80|{
   97|     80|    PyObject *hint, *result;
   98|     80|    Py_ssize_t res;
   99|     80|    if (_PyObject_HasLen(o)) {
  ------------------
  |  Branch (99:9): [True: 0, False: 80]
  ------------------
  100|      0|        res = PyObject_Length(o);
  ------------------
  |  |   80|      0|#define PyObject_Length PyObject_Size
  ------------------
  101|      0|        if (res < 0) {
  ------------------
  |  Branch (101:13): [True: 0, False: 0]
  ------------------
  102|      0|            PyThreadState *tstate = _PyThreadState_GET();
  103|      0|            assert(_PyErr_Occurred(tstate));
  ------------------
  |  Branch (103:13): [True: 0, False: 0]
  ------------------
  104|      0|            if (!_PyErr_ExceptionMatches(tstate, PyExc_TypeError)) {
  ------------------
  |  Branch (104:17): [True: 0, False: 0]
  ------------------
  105|      0|                return -1;
  106|      0|            }
  107|      0|            _PyErr_Clear(tstate);
  108|      0|        }
  109|      0|        else {
  110|      0|            return res;
  111|      0|        }
  112|      0|    }
  113|     80|    hint = _PyObject_LookupSpecial(o, &_Py_ID(__length_hint__));
  ------------------
  |  |  917|     80|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     80|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     80|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  114|     80|    if (hint == NULL) {
  ------------------
  |  Branch (114:9): [True: 22, False: 58]
  ------------------
  115|     22|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (115:13): [True: 0, False: 22]
  ------------------
  116|      0|            return -1;
  117|      0|        }
  118|     22|        return defaultvalue;
  119|     22|    }
  120|     58|    result = _PyObject_CallNoArgs(hint);
  121|     58|    Py_DECREF(hint);
  ------------------
  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  122|     58|    if (result == NULL) {
  ------------------
  |  Branch (122:9): [True: 0, False: 58]
  ------------------
  123|      0|        PyThreadState *tstate = _PyThreadState_GET();
  124|      0|        if (_PyErr_ExceptionMatches(tstate, PyExc_TypeError)) {
  ------------------
  |  Branch (124:13): [True: 0, False: 0]
  ------------------
  125|      0|            _PyErr_Clear(tstate);
  126|      0|            return defaultvalue;
  127|      0|        }
  128|      0|        return -1;
  129|      0|    }
  130|     58|    else if (result == Py_NotImplemented) {
  ------------------
  |  |  640|     58|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (130:14): [True: 0, False: 58]
  ------------------
  131|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  132|      0|        return defaultvalue;
  133|      0|    }
  134|     58|    if (!PyLong_Check(result)) {
  ------------------
  |  |   13|     58|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     58|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (134:9): [True: 0, False: 58]
  ------------------
  135|      0|        PyErr_Format(PyExc_TypeError,
  136|      0|                     "%T.__length_hint__() must return an int, not %T",
  137|      0|                     o, result);
  138|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  139|      0|        return -1;
  140|      0|    }
  141|     58|    res = PyLong_AsSsize_t(result);
  142|     58|    Py_DECREF(result);
  ------------------
  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  143|     58|    if (res < 0 && PyErr_Occurred()) {
  ------------------
  |  Branch (143:9): [True: 0, False: 58]
  |  Branch (143:20): [True: 0, False: 0]
  ------------------
  144|      0|        return -1;
  145|      0|    }
  146|     58|    if (res < 0) {
  ------------------
  |  Branch (146:9): [True: 0, False: 58]
  ------------------
  147|      0|        PyErr_Format(PyExc_ValueError,
  148|      0|                     "%T.__length_hint__() must return a non-negative int", o);
  149|      0|        return -1;
  150|      0|    }
  151|     58|    return res;
  152|     58|}
PyObject_GetItem:
  156|    222|{
  157|    222|    if (o == NULL || key == NULL) {
  ------------------
  |  Branch (157:9): [True: 0, False: 222]
  |  Branch (157:22): [True: 0, False: 222]
  ------------------
  158|      0|        return null_error();
  159|      0|    }
  160|       |
  161|    222|    PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping;
  ------------------
  |  |  213|    222|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    222|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    222|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  162|    222|    if (m && m->mp_subscript) {
  ------------------
  |  Branch (162:9): [True: 218, False: 4]
  |  Branch (162:14): [True: 218, False: 0]
  ------------------
  163|    218|        PyObject *item = m->mp_subscript(o, key);
  164|    218|        assert(_Py_CheckSlotResult(o, "__getitem__", item != NULL));
  ------------------
  |  Branch (164:9): [True: 218, False: 0]
  ------------------
  165|    218|        return item;
  166|    218|    }
  167|       |
  168|      4|    PySequenceMethods *ms = Py_TYPE(o)->tp_as_sequence;
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  169|      4|    if (ms && ms->sq_item) {
  ------------------
  |  Branch (169:9): [True: 0, False: 4]
  |  Branch (169:15): [True: 0, False: 0]
  ------------------
  170|      0|        if (_PyIndex_Check(key)) {
  ------------------
  |  Branch (170:13): [True: 0, False: 0]
  ------------------
  171|      0|            Py_ssize_t key_value;
  172|      0|            key_value = PyNumber_AsSsize_t(key, PyExc_IndexError);
  173|      0|            if (key_value == -1 && PyErr_Occurred())
  ------------------
  |  Branch (173:17): [True: 0, False: 0]
  |  Branch (173:36): [True: 0, False: 0]
  ------------------
  174|      0|                return NULL;
  175|      0|            return PySequence_GetItem(o, key_value);
  176|      0|        }
  177|      0|        else {
  178|      0|            return type_error("sequence index must "
  179|      0|                              "be integer, not '%.200s'", key);
  180|      0|        }
  181|      0|    }
  182|       |
  183|      4|    if (PyType_Check(o)) {
  ------------------
  |  |  766|      4|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 4, False: 0]
  |  |  ------------------
  ------------------
  184|      4|        PyObject *meth, *result;
  185|       |
  186|       |        // Special case type[int], but disallow other types so str[int] fails
  187|      4|        if ((PyTypeObject*)o == &PyType_Type) {
  ------------------
  |  Branch (187:13): [True: 0, False: 4]
  ------------------
  188|      0|            return Py_GenericAlias(o, key);
  189|      0|        }
  190|       |
  191|      4|        if (PyObject_GetOptionalAttr(o, &_Py_ID(__class_getitem__), &meth) < 0) {
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (191:13): [True: 0, False: 4]
  ------------------
  192|      0|            return NULL;
  193|      0|        }
  194|      4|        if (meth && meth != Py_None) {
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (194:13): [True: 4, False: 0]
  |  Branch (194:21): [True: 4, False: 0]
  ------------------
  195|      4|            result = PyObject_CallOneArg(meth, key);
  196|      4|            Py_DECREF(meth);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  197|      4|            return result;
  198|      4|        }
  199|      0|        Py_XDECREF(meth);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  200|      0|        PyErr_Format(PyExc_TypeError, "type '%.200s' is not subscriptable",
  201|      0|                     ((PyTypeObject *)o)->tp_name);
  202|      0|        return NULL;
  203|      4|    }
  204|       |
  205|      0|    return type_error("'%.200s' object is not subscriptable", o);
  206|      4|}
PyMapping_GetOptionalItem:
  210|  2.68k|{
  211|  2.68k|    if (PyDict_CheckExact(obj)) {
  ------------------
  |  |   19|  2.68k|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|  2.68k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.68k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.68k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2.68k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  212|  2.68k|        return PyDict_GetItemRef(obj, key, result);
  213|  2.68k|    }
  214|       |
  215|      0|    *result = PyObject_GetItem(obj, key);
  216|      0|    if (*result) {
  ------------------
  |  Branch (216:9): [True: 0, False: 0]
  ------------------
  217|      0|        return 1;
  218|      0|    }
  219|      0|    assert(PyErr_Occurred());
  ------------------
  |  Branch (219:5): [True: 0, False: 0]
  ------------------
  220|      0|    if (!PyErr_ExceptionMatches(PyExc_KeyError)) {
  ------------------
  |  Branch (220:9): [True: 0, False: 0]
  ------------------
  221|      0|        return -1;
  222|      0|    }
  223|      0|    PyErr_Clear();
  224|      0|    return 0;
  225|      0|}
_PyMapping_GetOptionalItem2:
  229|    168|{
  230|    168|    PyObject* result;
  231|    168|    *err = PyMapping_GetOptionalItem(obj, key, &result);
  232|    168|    return result;
  233|    168|}
PyObject_SetItem:
  237|     52|{
  238|     52|    if (o == NULL || key == NULL || value == NULL) {
  ------------------
  |  Branch (238:9): [True: 0, False: 52]
  |  Branch (238:22): [True: 0, False: 52]
  |  Branch (238:37): [True: 0, False: 52]
  ------------------
  239|      0|        null_error();
  240|      0|        return -1;
  241|      0|    }
  242|       |
  243|     52|    PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping;
  ------------------
  |  |  213|     52|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  244|     52|    if (m && m->mp_ass_subscript) {
  ------------------
  |  Branch (244:9): [True: 52, False: 0]
  |  Branch (244:14): [True: 52, False: 0]
  ------------------
  245|     52|        int res = m->mp_ass_subscript(o, key, value);
  246|     52|        assert(_Py_CheckSlotResult(o, "__setitem__", res >= 0));
  ------------------
  |  Branch (246:9): [True: 52, False: 0]
  ------------------
  247|     52|        return res;
  248|     52|    }
  249|       |
  250|      0|    if (Py_TYPE(o)->tp_as_sequence) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (250:9): [True: 0, False: 0]
  ------------------
  251|      0|        if (_PyIndex_Check(key)) {
  ------------------
  |  Branch (251:13): [True: 0, False: 0]
  ------------------
  252|      0|            Py_ssize_t key_value;
  253|      0|            key_value = PyNumber_AsSsize_t(key, PyExc_IndexError);
  254|      0|            if (key_value == -1 && PyErr_Occurred())
  ------------------
  |  Branch (254:17): [True: 0, False: 0]
  |  Branch (254:36): [True: 0, False: 0]
  ------------------
  255|      0|                return -1;
  256|      0|            return PySequence_SetItem(o, key_value, value);
  257|      0|        }
  258|      0|        else if (Py_TYPE(o)->tp_as_sequence->sq_ass_item) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (258:18): [True: 0, False: 0]
  ------------------
  259|      0|            type_error("sequence index must be "
  260|      0|                       "integer, not '%.200s'", key);
  261|      0|            return -1;
  262|      0|        }
  263|      0|    }
  264|       |
  265|      0|    type_error("'%.200s' object does not support item assignment", o);
  266|      0|    return -1;
  267|      0|}
PyObject_DelItem:
  271|     74|{
  272|     74|    if (o == NULL || key == NULL) {
  ------------------
  |  Branch (272:9): [True: 0, False: 74]
  |  Branch (272:22): [True: 0, False: 74]
  ------------------
  273|      0|        null_error();
  274|      0|        return -1;
  275|      0|    }
  276|       |
  277|     74|    PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping;
  ------------------
  |  |  213|     74|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     74|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  278|     74|    if (m && m->mp_ass_subscript) {
  ------------------
  |  Branch (278:9): [True: 74, False: 0]
  |  Branch (278:14): [True: 74, False: 0]
  ------------------
  279|     74|        int res = m->mp_ass_subscript(o, key, (PyObject*)NULL);
  280|     74|        assert(_Py_CheckSlotResult(o, "__delitem__", res >= 0));
  ------------------
  |  Branch (280:9): [True: 74, False: 0]
  ------------------
  281|     74|        return res;
  282|     74|    }
  283|       |
  284|      0|    if (Py_TYPE(o)->tp_as_sequence) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (284:9): [True: 0, False: 0]
  ------------------
  285|      0|        if (_PyIndex_Check(key)) {
  ------------------
  |  Branch (285:13): [True: 0, False: 0]
  ------------------
  286|      0|            Py_ssize_t key_value;
  287|      0|            key_value = PyNumber_AsSsize_t(key, PyExc_IndexError);
  288|      0|            if (key_value == -1 && PyErr_Occurred())
  ------------------
  |  Branch (288:17): [True: 0, False: 0]
  |  Branch (288:36): [True: 0, False: 0]
  ------------------
  289|      0|                return -1;
  290|      0|            return PySequence_DelItem(o, key_value);
  291|      0|        }
  292|      0|        else if (Py_TYPE(o)->tp_as_sequence->sq_ass_item) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (292:18): [True: 0, False: 0]
  ------------------
  293|      0|            type_error("sequence index must be "
  294|      0|                       "integer, not '%.200s'", key);
  295|      0|            return -1;
  296|      0|        }
  297|      0|    }
  298|       |
  299|      0|    type_error("'%.200s' object does not support item deletion", o);
  300|      0|    return -1;
  301|      0|}
PyObject_CheckBuffer:
  325|     28|{
  326|     28|    PyBufferProcs *tp_as_buffer = Py_TYPE(obj)->tp_as_buffer;
  ------------------
  |  |  213|     28|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  327|     28|    return (tp_as_buffer != NULL && tp_as_buffer->bf_getbuffer != NULL);
  ------------------
  |  Branch (327:13): [True: 0, False: 28]
  |  Branch (327:37): [True: 0, False: 0]
  ------------------
  328|     28|}
PyBuffer_Release:
  818|  3.60k|{
  819|  3.60k|    PyObject *obj = view->obj;
  820|  3.60k|    PyBufferProcs *pb;
  821|  3.60k|    if (obj == NULL)
  ------------------
  |  Branch (821:9): [True: 3.60k, False: 0]
  ------------------
  822|  3.60k|        return;
  823|      0|    pb = Py_TYPE(obj)->tp_as_buffer;
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  824|      0|    if (pb && pb->bf_releasebuffer) {
  ------------------
  |  Branch (824:9): [True: 0, False: 0]
  |  Branch (824:15): [True: 0, False: 0]
  ------------------
  825|      0|        pb->bf_releasebuffer(obj, view);
  826|      0|    }
  827|      0|    view->obj = NULL;
  828|      0|    Py_DECREF(obj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  829|      0|}
PyObject_Format:
  854|     22|{
  855|     22|    PyObject *meth;
  856|     22|    PyObject *empty = NULL;
  857|     22|    PyObject *result = NULL;
  858|       |
  859|     22|    if (format_spec != NULL && !PyUnicode_Check(format_spec)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (859:9): [True: 0, False: 22]
  |  Branch (859:32): [True: 0, False: 0]
  ------------------
  860|      0|        PyErr_Format(PyExc_SystemError,
  861|      0|                     "Format specifier must be a string, not %.200s",
  862|      0|                     Py_TYPE(format_spec)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  863|      0|        return NULL;
  864|      0|    }
  865|       |
  866|       |    /* Fast path for common types. */
  867|     22|    if (format_spec == NULL || PyUnicode_GET_LENGTH(format_spec) == 0) {
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (867:9): [True: 22, False: 0]
  |  Branch (867:32): [True: 0, False: 0]
  ------------------
  868|     22|        if (PyUnicode_CheckExact(obj)) {
  ------------------
  |  |  104|     22|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     22|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  869|      0|            return Py_NewRef(obj);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  870|      0|        }
  871|     22|        if (PyLong_CheckExact(obj)) {
  ------------------
  |  |   14|     22|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|     22|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 22, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  872|     22|            return PyObject_Str(obj);
  873|     22|        }
  874|     22|    }
  875|       |
  876|       |    /* If no format_spec is provided, use an empty string */
  877|      0|    if (format_spec == NULL) {
  ------------------
  |  Branch (877:9): [True: 0, False: 0]
  ------------------
  878|      0|        empty = Py_GetConstant(Py_CONSTANT_EMPTY_STR);
  ------------------
  |  |  597|      0|#define Py_CONSTANT_EMPTY_STR 7
  ------------------
  879|      0|        format_spec = empty;
  880|      0|    }
  881|       |
  882|       |    /* Find the (unbound!) __format__ method */
  883|      0|    meth = _PyObject_LookupSpecial(obj, &_Py_ID(__format__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  884|      0|    if (meth == NULL) {
  ------------------
  |  Branch (884:9): [True: 0, False: 0]
  ------------------
  885|      0|        PyThreadState *tstate = _PyThreadState_GET();
  886|      0|        if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (886:13): [True: 0, False: 0]
  ------------------
  887|      0|            _PyErr_Format(tstate, PyExc_TypeError,
  888|      0|                          "Type %.100s doesn't define __format__",
  889|      0|                          Py_TYPE(obj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  890|      0|        }
  891|      0|        goto done;
  892|      0|    }
  893|       |
  894|       |    /* And call it. */
  895|      0|    result = PyObject_CallOneArg(meth, format_spec);
  896|      0|    Py_DECREF(meth);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  897|       |
  898|      0|    if (result && !PyUnicode_Check(result)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (898:9): [True: 0, False: 0]
  |  Branch (898:19): [True: 0, False: 0]
  ------------------
  899|      0|        PyErr_Format(PyExc_TypeError,
  900|      0|                     "%T.__format__() must return a str, not %T",
  901|      0|                     obj, result);
  902|      0|        Py_SETREF(result, NULL);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  903|      0|        goto done;
  904|      0|    }
  905|       |
  906|      0|done:
  907|      0|    Py_XDECREF(empty);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  908|      0|    return result;
  909|      0|}
PyNumber_Check:
  914|      6|{
  915|      6|    if (o == NULL)
  ------------------
  |  Branch (915:9): [True: 0, False: 6]
  ------------------
  916|      0|        return 0;
  917|      6|    PyNumberMethods *nb = Py_TYPE(o)->tp_as_number;
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  918|      6|    return nb && (nb->nb_index || nb->nb_int || nb->nb_float || PyComplex_Check(o));
  ------------------
  |  |   13|      0|#define PyComplex_Check(op) PyObject_TypeCheck((op), &PyComplex_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (918:12): [True: 6, False: 0]
  |  Branch (918:19): [True: 6, False: 0]
  |  Branch (918:35): [True: 0, False: 0]
  |  Branch (918:49): [True: 0, False: 0]
  ------------------
  919|      6|}
PyNumber_Add:
 1139|     26|{
 1140|     26|    PyObject *result = BINARY_OP1(v, w, NB_SLOT(nb_add), "+");
  ------------------
  |  |  995|     26|#  define BINARY_OP1(v, w, op_slot, op_name) binary_op1(v, w, op_slot, op_name)
  ------------------
 1141|     26|    if (result != Py_NotImplemented) {
  ------------------
  |  |  640|     26|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1141:9): [True: 8, False: 18]
  ------------------
 1142|      8|        return result;
 1143|      8|    }
 1144|     18|    Py_DECREF(result);
  ------------------
  |  |  430|     18|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1145|       |
 1146|     18|    PySequenceMethods *m = Py_TYPE(v)->tp_as_sequence;
  ------------------
  |  |  213|     18|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1147|     18|    if (m && m->sq_concat) {
  ------------------
  |  Branch (1147:9): [True: 18, False: 0]
  |  Branch (1147:14): [True: 18, False: 0]
  ------------------
 1148|     18|        result = (*m->sq_concat)(v, w);
 1149|     18|        assert(_Py_CheckSlotResult(v, "+", result != NULL));
  ------------------
  |  Branch (1149:9): [True: 18, False: 0]
  ------------------
 1150|     18|        return result;
 1151|     18|    }
 1152|       |
 1153|      0|    return binop_type_error(v, w, "+");
 1154|     18|}
PyNumber_Multiply:
 1177|      2|{
 1178|      2|    PyObject *result = BINARY_OP1(v, w, NB_SLOT(nb_multiply), "*");
  ------------------
  |  |  995|      2|#  define BINARY_OP1(v, w, op_slot, op_name) binary_op1(v, w, op_slot, op_name)
  ------------------
 1179|      2|    if (result == Py_NotImplemented) {
  ------------------
  |  |  640|      2|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1179:9): [True: 2, False: 0]
  ------------------
 1180|      2|        PySequenceMethods *mv = Py_TYPE(v)->tp_as_sequence;
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1181|      2|        PySequenceMethods *mw = Py_TYPE(w)->tp_as_sequence;
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1182|      2|        Py_DECREF(result);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1183|      2|        if  (mv && mv->sq_repeat) {
  ------------------
  |  Branch (1183:14): [True: 2, False: 0]
  |  Branch (1183:20): [True: 2, False: 0]
  ------------------
 1184|      2|            return sequence_repeat(mv->sq_repeat, v, w);
 1185|      2|        }
 1186|      0|        else if (mw && mw->sq_repeat) {
  ------------------
  |  Branch (1186:18): [True: 0, False: 0]
  |  Branch (1186:24): [True: 0, False: 0]
  ------------------
 1187|      0|            return sequence_repeat(mw->sq_repeat, w, v);
 1188|      0|        }
 1189|      0|        result = binop_type_error(v, w, "*");
 1190|      0|    }
 1191|      0|    return result;
 1192|      2|}
PyNumber_InPlaceAdd:
 1308|      4|{
 1309|      4|    PyObject *result = BINARY_IOP1(v, w, NB_SLOT(nb_inplace_add),
  ------------------
  |  | 1256|      4|#  define BINARY_IOP1(v, w, iop_slot, op_slot, op_name) binary_iop1(v, w, iop_slot, op_slot, op_name)
  ------------------
 1310|      4|                                   NB_SLOT(nb_add), "+=");
 1311|      4|    if (result == Py_NotImplemented) {
  ------------------
  |  |  640|      4|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1311:9): [True: 4, False: 0]
  ------------------
 1312|      4|        PySequenceMethods *m = Py_TYPE(v)->tp_as_sequence;
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1313|      4|        Py_DECREF(result);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1314|      4|        if (m != NULL) {
  ------------------
  |  Branch (1314:13): [True: 4, False: 0]
  ------------------
 1315|      4|            binaryfunc func = m->sq_inplace_concat;
 1316|      4|            if (func == NULL)
  ------------------
  |  Branch (1316:17): [True: 4, False: 0]
  ------------------
 1317|      4|                func = m->sq_concat;
 1318|      4|            if (func != NULL) {
  ------------------
  |  Branch (1318:17): [True: 4, False: 0]
  ------------------
 1319|      4|                result = func(v, w);
 1320|      4|                assert(_Py_CheckSlotResult(v, "+=", result != NULL));
  ------------------
  |  Branch (1320:17): [True: 4, False: 0]
  ------------------
 1321|      4|                return result;
 1322|      4|            }
 1323|      4|        }
 1324|      0|        result = binop_type_error(v, w, "+=");
 1325|      0|    }
 1326|      0|    return result;
 1327|      4|}
PyIndex_Check:
 1399|     46|{
 1400|     46|    return _PyIndex_Check(obj);
 1401|     46|}
_PyNumber_Index:
 1411|     50|{
 1412|     50|    if (item == NULL) {
  ------------------
  |  Branch (1412:9): [True: 0, False: 50]
  ------------------
 1413|      0|        return null_error();
 1414|      0|    }
 1415|       |
 1416|     50|    if (PyLong_Check(item)) {
  ------------------
  |  |   13|     50|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     50|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 50, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1417|     50|        return Py_NewRef(item);
  ------------------
  |  |  550|     50|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     50|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     50|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1418|     50|    }
 1419|      0|    if (!_PyIndex_Check(item)) {
  ------------------
  |  Branch (1419:9): [True: 0, False: 0]
  ------------------
 1420|      0|        PyErr_Format(PyExc_TypeError,
 1421|      0|                     "'%.200s' object cannot be interpreted "
 1422|      0|                     "as an integer", Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1423|      0|        return NULL;
 1424|      0|    }
 1425|       |
 1426|      0|    PyObject *result = Py_TYPE(item)->tp_as_number->nb_index(item);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1427|      0|    assert(_Py_CheckSlotResult(item, "__index__", result != NULL));
  ------------------
  |  Branch (1427:5): [True: 0, False: 0]
  ------------------
 1428|      0|    if (!result || PyLong_CheckExact(result)) {
  ------------------
  |  |   14|      0|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1428:9): [True: 0, False: 0]
  ------------------
 1429|      0|        return result;
 1430|      0|    }
 1431|       |
 1432|      0|    if (!PyLong_Check(result)) {
  ------------------
  |  |   13|      0|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1432:9): [True: 0, False: 0]
  ------------------
 1433|      0|        PyErr_Format(PyExc_TypeError,
 1434|      0|                     "%T.__index__() must return an int, not %T",
 1435|      0|                     item, result);
 1436|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1437|      0|        return NULL;
 1438|      0|    }
 1439|       |    /* Issue #17576: warn if 'result' not of exact type int. */
 1440|      0|    if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1,
  ------------------
  |  Branch (1440:9): [True: 0, False: 0]
  ------------------
 1441|      0|            "%T.__index__() must return an int, not %T.  "
 1442|      0|            "The ability to return an instance of a strict subclass of int "
 1443|      0|            "is deprecated, and may be removed in a future version of Python.",
 1444|      0|            item, result)) {
 1445|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1446|      0|        return NULL;
 1447|      0|    }
 1448|      0|    return result;
 1449|      0|}
PyNumber_Index:
 1457|      8|{
 1458|      8|    PyObject *result = _PyNumber_Index(item);
 1459|      8|    if (result != NULL && !PyLong_CheckExact(result)) {
  ------------------
  |  |   14|      8|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1459:9): [True: 8, False: 0]
  |  Branch (1459:27): [True: 0, False: 8]
  ------------------
 1460|      0|        Py_SETREF(result, _PyLong_Copy((PyLongObject *)result));
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1461|      0|    }
 1462|      8|    return result;
 1463|      8|}
PyNumber_AsSsize_t:
 1469|     22|{
 1470|     22|    Py_ssize_t result;
 1471|     22|    PyObject *runerr;
 1472|     22|    PyObject *value = _PyNumber_Index(item);
 1473|     22|    if (value == NULL)
  ------------------
  |  Branch (1473:9): [True: 0, False: 22]
  ------------------
 1474|      0|        return -1;
 1475|       |
 1476|       |    /* We're done if PyLong_AsSsize_t() returns without error. */
 1477|     22|    result = PyLong_AsSsize_t(value);
 1478|     22|    if (result != -1)
  ------------------
  |  Branch (1478:9): [True: 22, False: 0]
  ------------------
 1479|     22|        goto finish;
 1480|       |
 1481|      0|    PyThreadState *tstate = _PyThreadState_GET();
 1482|      0|    runerr = _PyErr_Occurred(tstate);
 1483|      0|    if (!runerr) {
  ------------------
  |  Branch (1483:9): [True: 0, False: 0]
  ------------------
 1484|      0|        goto finish;
 1485|      0|    }
 1486|       |
 1487|       |    /* Error handling code -- only manage OverflowError differently */
 1488|      0|    if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) {
  ------------------
  |  Branch (1488:9): [True: 0, False: 0]
  ------------------
 1489|      0|        goto finish;
 1490|      0|    }
 1491|      0|    _PyErr_Clear(tstate);
 1492|       |
 1493|       |    /* If no error-handling desired then the default clipping
 1494|       |       is sufficient. */
 1495|      0|    if (!err) {
  ------------------
  |  Branch (1495:9): [True: 0, False: 0]
  ------------------
 1496|      0|        assert(PyLong_Check(value));
  ------------------
  |  Branch (1496:9): [True: 0, False: 0]
  ------------------
 1497|       |        /* Whether or not it is less than or equal to
 1498|       |           zero is determined by the sign of ob_size
 1499|       |        */
 1500|      0|        if (_PyLong_IsNegative((PyLongObject *)value))
  ------------------
  |  Branch (1500:13): [True: 0, False: 0]
  ------------------
 1501|      0|            result = PY_SSIZE_T_MIN;
  ------------------
  |  |  146|      0|#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
  |  |  ------------------
  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  ------------------
 1502|      0|        else
 1503|      0|            result = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
 1504|      0|    }
 1505|      0|    else {
 1506|       |        /* Otherwise replace the error with caller's error object. */
 1507|      0|        _PyErr_Format(tstate, err,
 1508|      0|                      "cannot fit '%.200s' into an index-sized integer",
 1509|      0|                      Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1510|      0|    }
 1511|       |
 1512|     22| finish:
 1513|     22|    Py_DECREF(value);
  ------------------
  |  |  430|     22|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1514|     22|    return result;
 1515|      0|}
PySequence_GetItem:
 1842|  1.03k|{
 1843|  1.03k|    if (s == NULL) {
  ------------------
  |  Branch (1843:9): [True: 0, False: 1.03k]
  ------------------
 1844|      0|        return null_error();
 1845|      0|    }
 1846|       |
 1847|  1.03k|    PySequenceMethods *m = Py_TYPE(s)->tp_as_sequence;
  ------------------
  |  |  213|  1.03k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.03k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1848|  1.03k|    if (m && m->sq_item) {
  ------------------
  |  Branch (1848:9): [True: 1.03k, False: 0]
  |  Branch (1848:14): [True: 1.03k, False: 0]
  ------------------
 1849|  1.03k|        if (i < 0) {
  ------------------
  |  Branch (1849:13): [True: 0, False: 1.03k]
  ------------------
 1850|      0|            if (m->sq_length) {
  ------------------
  |  Branch (1850:17): [True: 0, False: 0]
  ------------------
 1851|      0|                Py_ssize_t l = (*m->sq_length)(s);
 1852|      0|                assert(_Py_CheckSlotResult(s, "__len__", l >= 0));
  ------------------
  |  Branch (1852:17): [True: 0, False: 0]
  ------------------
 1853|      0|                if (l < 0) {
  ------------------
  |  Branch (1853:21): [True: 0, False: 0]
  ------------------
 1854|      0|                    return NULL;
 1855|      0|                }
 1856|      0|                i += l;
 1857|      0|            }
 1858|      0|        }
 1859|  1.03k|        PyObject *res = m->sq_item(s, i);
 1860|  1.03k|        assert(_Py_CheckSlotResult(s, "__getitem__", res != NULL));
  ------------------
  |  Branch (1860:9): [True: 1.03k, False: 0]
  ------------------
 1861|  1.03k|        return res;
 1862|  1.03k|    }
 1863|       |
 1864|      0|    if (Py_TYPE(s)->tp_as_mapping && Py_TYPE(s)->tp_as_mapping->mp_subscript) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_TYPE(s)->tp_as_mapping && Py_TYPE(s)->tp_as_mapping->mp_subscript) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1864:9): [True: 0, False: 0]
  |  Branch (1864:38): [True: 0, False: 0]
  ------------------
 1865|      0|        return type_error("%.200s is not a sequence", s);
 1866|      0|    }
 1867|      0|    return type_error("'%.200s' object does not support indexing", s);
 1868|      0|}
PySequence_Tuple:
 2006|    744|{
 2007|    744|    PyObject *it;  /* iter(v) */
 2008|       |
 2009|    744|    if (v == NULL) {
  ------------------
  |  Branch (2009:9): [True: 0, False: 744]
  ------------------
 2010|      0|        return null_error();
 2011|      0|    }
 2012|       |
 2013|       |    /* Special-case the common tuple and list cases, for efficiency. */
 2014|    744|    if (PyTuple_CheckExact(v)) {
  ------------------
  |  |   28|    744|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|    744|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    744|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    744|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 660, False: 84]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2015|       |        /* Note that we can't know whether it's safe to return
 2016|       |           a tuple *subclass* instance as-is, hence the restriction
 2017|       |           to exact tuples here.  In contrast, lists always make
 2018|       |           a copy, so there's no need for exactness below. */
 2019|    660|        return Py_NewRef(v);
  ------------------
  |  |  550|    660|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    660|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    660|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2020|    660|    }
 2021|     84|    if (PyList_CheckExact(v))
  ------------------
  |  |   26|     84|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|     84|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     84|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     84|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 76, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2022|     76|        return PyList_AsTuple(v);
 2023|       |
 2024|       |    /* Get iterator. */
 2025|      8|    it = PyObject_GetIter(v);
 2026|      8|    if (it == NULL)
  ------------------
  |  Branch (2026:9): [True: 0, False: 8]
  ------------------
 2027|      0|        return NULL;
 2028|       |
 2029|      8|    Py_ssize_t n;
 2030|      8|    PyObject *buffer[8];
 2031|     34|    for (n = 0; n < 8; n++) {
  ------------------
  |  Branch (2031:17): [True: 34, False: 0]
  ------------------
 2032|     34|        PyObject *item = PyIter_Next(it);
 2033|     34|        if (item == NULL) {
  ------------------
  |  Branch (2033:13): [True: 8, False: 26]
  ------------------
 2034|      8|            if (PyErr_Occurred()) {
  ------------------
  |  Branch (2034:17): [True: 0, False: 8]
  ------------------
 2035|      0|                goto fail;
 2036|      0|            }
 2037|      8|            Py_DECREF(it);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2038|      8|            return _PyTuple_FromArraySteal(buffer, n);
 2039|      8|        }
 2040|     26|        buffer[n] = item;
 2041|     26|    }
 2042|      0|    PyListObject *list = (PyListObject *)PyList_New(16);
 2043|      0|    if (list == NULL) {
  ------------------
  |  Branch (2043:9): [True: 0, False: 0]
  ------------------
 2044|      0|        goto fail;
 2045|      0|    }
 2046|      0|    assert(n == 8);
  ------------------
  |  Branch (2046:5): [True: 0, False: 0]
  ------------------
 2047|      0|    Py_SET_SIZE(list, n);
  ------------------
  |  |  216|      0|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      0|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2048|      0|    for (Py_ssize_t j = 0; j < n; j++) {
  ------------------
  |  Branch (2048:28): [True: 0, False: 0]
  ------------------
 2049|      0|        PyList_SET_ITEM(list, j, buffer[j]);
  ------------------
  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2050|      0|    }
 2051|      0|    for (;;) {
 2052|      0|        PyObject *item = PyIter_Next(it);
 2053|      0|        if (item == NULL) {
  ------------------
  |  Branch (2053:13): [True: 0, False: 0]
  ------------------
 2054|      0|            if (PyErr_Occurred()) {
  ------------------
  |  Branch (2054:17): [True: 0, False: 0]
  ------------------
 2055|      0|                Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2056|      0|                Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2057|      0|                return NULL;
 2058|      0|            }
 2059|      0|            break;
 2060|      0|        }
 2061|      0|        if (_PyList_AppendTakeRef(list, item) < 0) {
  ------------------
  |  Branch (2061:13): [True: 0, False: 0]
  ------------------
 2062|      0|            Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2063|      0|            Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2064|      0|            return NULL;
 2065|      0|        }
 2066|      0|    }
 2067|      0|    Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2068|      0|    PyObject *res = _PyList_AsTupleAndClear(list);
 2069|      0|    Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2070|      0|    return res;
 2071|      0|fail:
 2072|      0|    Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2073|      0|    while (n > 0) {
  ------------------
  |  Branch (2073:12): [True: 0, False: 0]
  ------------------
 2074|      0|        n--;
 2075|      0|        Py_DECREF(buffer[n]);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2076|      0|    }
 2077|       |    return NULL;
 2078|      0|}
PySequence_List:
 2082|    112|{
 2083|    112|    PyObject *result;  /* result list */
 2084|    112|    PyObject *rv;          /* return value from PyList_Extend */
 2085|       |
 2086|    112|    if (v == NULL) {
  ------------------
  |  Branch (2086:9): [True: 0, False: 112]
  ------------------
 2087|      0|        return null_error();
 2088|      0|    }
 2089|       |
 2090|    112|    result = PyList_New(0);
 2091|    112|    if (result == NULL)
  ------------------
  |  Branch (2091:9): [True: 0, False: 112]
  ------------------
 2092|      0|        return NULL;
 2093|       |
 2094|    112|    rv = _PyList_Extend((PyListObject *)result, v);
 2095|    112|    if (rv == NULL) {
  ------------------
  |  Branch (2095:9): [True: 0, False: 112]
  ------------------
 2096|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2097|      0|        return NULL;
 2098|      0|    }
 2099|    112|    Py_DECREF(rv);
  ------------------
  |  |  430|    112|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2100|    112|    return result;
 2101|    112|}
PySequence_Fast:
 2105|    790|{
 2106|    790|    PyObject *it;
 2107|       |
 2108|    790|    if (v == NULL) {
  ------------------
  |  Branch (2108:9): [True: 0, False: 790]
  ------------------
 2109|      0|        return null_error();
 2110|      0|    }
 2111|       |
 2112|    790|    if (PyList_CheckExact(v) || PyTuple_CheckExact(v)) {
  ------------------
  |  |   26|    790|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|  1.58k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    790|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    790|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 158, False: 632]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyList_CheckExact(v) || PyTuple_CheckExact(v)) {
  ------------------
  |  |   28|    632|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|    632|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    632|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    632|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 632, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2113|    790|        return Py_NewRef(v);
  ------------------
  |  |  550|    790|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    790|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    790|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2114|    790|    }
 2115|       |
 2116|      0|    it = PyObject_GetIter(v);
 2117|      0|    if (it == NULL) {
  ------------------
  |  Branch (2117:9): [True: 0, False: 0]
  ------------------
 2118|      0|        PyThreadState *tstate = _PyThreadState_GET();
 2119|      0|        if (_PyErr_ExceptionMatches(tstate, PyExc_TypeError)) {
  ------------------
  |  Branch (2119:13): [True: 0, False: 0]
  ------------------
 2120|      0|            _PyErr_SetString(tstate, PyExc_TypeError, m);
 2121|      0|        }
 2122|      0|        return NULL;
 2123|      0|    }
 2124|       |
 2125|      0|    v = PySequence_List(it);
 2126|      0|    Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2127|       |
 2128|      0|    return v;
 2129|      0|}
PySequence_Contains:
 2241|    306|{
 2242|    306|    PySequenceMethods *sqm = Py_TYPE(seq)->tp_as_sequence;
  ------------------
  |  |  213|    306|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    306|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    306|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2243|    306|    if (sqm != NULL && sqm->sq_contains != NULL) {
  ------------------
  |  Branch (2243:9): [True: 306, False: 0]
  |  Branch (2243:24): [True: 306, False: 0]
  ------------------
 2244|    306|        int res = (*sqm->sq_contains)(seq, ob);
 2245|    306|        assert(_Py_CheckSlotResult(seq, "__contains__", res >= 0));
  ------------------
  |  Branch (2245:9): [True: 306, False: 0]
  ------------------
 2246|    306|        return res;
 2247|    306|    }
 2248|      0|    Py_ssize_t result = _PySequence_IterSearch(seq, ob, PY_ITERSEARCH_CONTAINS);
  ------------------
  |  |   29|      0|#define PY_ITERSEARCH_CONTAINS 3
  ------------------
 2249|      0|    return Py_SAFE_DOWNCAST(result, Py_ssize_t, int);
  ------------------
  |  |  247|      0|#  define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) _Py_STATIC_CAST(NARROW, (VALUE))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 2250|    306|}
PyMapping_Check:
 2270|    416|{
 2271|    416|    return o && Py_TYPE(o)->tp_as_mapping &&
  ------------------
  |  |  213|    416|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    416|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    416|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2271:12): [True: 416, False: 0]
  |  Branch (2271:17): [True: 416, False: 0]
  ------------------
 2272|    416|        Py_TYPE(o)->tp_as_mapping->mp_subscript;
  ------------------
  |  |  213|    416|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    416|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    416|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2272:9): [True: 416, False: 0]
  ------------------
 2273|    416|}
PyMapping_Size:
 2277|      2|{
 2278|      2|    if (o == NULL) {
  ------------------
  |  Branch (2278:9): [True: 0, False: 2]
  ------------------
 2279|      0|        null_error();
 2280|      0|        return -1;
 2281|      0|    }
 2282|       |
 2283|      2|    PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping;
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2284|      2|    if (m && m->mp_length) {
  ------------------
  |  Branch (2284:9): [True: 2, False: 0]
  |  Branch (2284:14): [True: 2, False: 0]
  ------------------
 2285|      2|        Py_ssize_t len = m->mp_length(o);
 2286|      2|        assert(_Py_CheckSlotResult(o, "__len__", len >= 0));
  ------------------
  |  Branch (2286:9): [True: 2, False: 0]
  ------------------
 2287|      2|        return len;
 2288|      2|    }
 2289|       |
 2290|      0|    if (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_length) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_length) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2290:9): [True: 0, False: 0]
  |  Branch (2290:39): [True: 0, False: 0]
  ------------------
 2291|      0|        type_error("%.200s is not a mapping", o);
 2292|      0|        return -1;
 2293|      0|    }
 2294|       |    /* PyMapping_Size() can be called from PyObject_Size(). */
 2295|      0|    type_error("object of type '%.200s' has no len()", o);
 2296|      0|    return -1;
 2297|      0|}
PyMapping_GetItemString:
 2309|      8|{
 2310|      8|    PyObject *okey, *r;
 2311|       |
 2312|      8|    if (key == NULL) {
  ------------------
  |  Branch (2312:9): [True: 0, False: 8]
  ------------------
 2313|      0|        return null_error();
 2314|      0|    }
 2315|       |
 2316|      8|    okey = PyUnicode_FromString(key);
 2317|      8|    if (okey == NULL)
  ------------------
  |  Branch (2317:9): [True: 0, False: 8]
  ------------------
 2318|      0|        return NULL;
 2319|      8|    r = PyObject_GetItem(o, okey);
 2320|      8|    Py_DECREF(okey);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2321|      8|    return r;
 2322|      8|}
PyMapping_SetItemString:
 2344|      2|{
 2345|      2|    PyObject *okey;
 2346|      2|    int r;
 2347|       |
 2348|      2|    if (key == NULL) {
  ------------------
  |  Branch (2348:9): [True: 0, False: 2]
  ------------------
 2349|      0|        null_error();
 2350|      0|        return -1;
 2351|      0|    }
 2352|       |
 2353|      2|    okey = PyUnicode_FromString(key);
 2354|      2|    if (okey == NULL)
  ------------------
  |  Branch (2354:9): [True: 0, False: 2]
  ------------------
 2355|      0|        return -1;
 2356|      2|    r = PyObject_SetItem(o, okey, value);
 2357|      2|    Py_DECREF(okey);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2358|      2|    return r;
 2359|      2|}
PyMapping_Keys:
 2461|      6|{
 2462|      6|    if (o == NULL) {
  ------------------
  |  Branch (2462:9): [True: 0, False: 6]
  ------------------
 2463|      0|        return null_error();
 2464|      0|    }
 2465|      6|    if (PyDict_CheckExact(o)) {
  ------------------
  |  |   19|      6|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      6|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2466|      6|        return PyDict_Keys(o);
 2467|      6|    }
 2468|      0|    return method_output_as_list(o, &_Py_ID(keys));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2469|      6|}
PyMapping_Items:
 2473|     58|{
 2474|     58|    if (o == NULL) {
  ------------------
  |  Branch (2474:9): [True: 0, False: 58]
  ------------------
 2475|      0|        return null_error();
 2476|      0|    }
 2477|     58|    if (PyDict_CheckExact(o)) {
  ------------------
  |  |   19|     58|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|     58|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 58]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2478|      0|        return PyDict_Items(o);
 2479|      0|    }
 2480|     58|    return method_output_as_list(o, &_Py_ID(items));
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2481|     58|}
PyObject_IsInstance:
 2705|     94|{
 2706|     94|    PyThreadState *tstate = _PyThreadState_GET();
 2707|     94|    return object_recursive_isinstance(tstate, inst, cls);
 2708|     94|}
PyObject_IsSubclass:
 2793|    292|{
 2794|    292|    PyThreadState *tstate = _PyThreadState_GET();
 2795|    292|    return object_issubclass(tstate, derived, cls);
 2796|    292|}
_PyObject_RealIsSubclass:
 2807|     98|{
 2808|     98|    return recursive_issubclass(derived, cls);
 2809|     98|}
PyObject_GetIter:
 2814|    268|{
 2815|    268|    PyTypeObject *t = Py_TYPE(o);
  ------------------
  |  |  213|    268|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    268|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    268|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2816|    268|    getiterfunc f;
 2817|       |
 2818|    268|    f = t->tp_iter;
 2819|    268|    if (f == NULL) {
  ------------------
  |  Branch (2819:9): [True: 0, False: 268]
  ------------------
 2820|      0|        if (PySequence_Check(o))
  ------------------
  |  Branch (2820:13): [True: 0, False: 0]
  ------------------
 2821|      0|            return PySeqIter_New(o);
 2822|      0|        return type_error("'%.200s' object is not iterable", o);
 2823|      0|    }
 2824|    268|    else {
 2825|    268|        PyObject *res = (*f)(o);
 2826|    268|        if (res != NULL && !PyIter_Check(res)) {
  ------------------
  |  Branch (2826:13): [True: 268, False: 0]
  |  Branch (2826:28): [True: 0, False: 268]
  ------------------
 2827|      0|            PyErr_Format(PyExc_TypeError,
 2828|      0|                         "%T.__iter__() must return an iterator, not %T",
 2829|      0|                         o, res);
 2830|      0|            Py_SETREF(res, NULL);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2831|      0|        }
 2832|    268|        return res;
 2833|    268|    }
 2834|    268|}
PyIter_Check:
 2857|    270|{
 2858|    270|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|    270|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    270|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    270|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2859|    270|    return (tp->tp_iternext != NULL &&
  ------------------
  |  Branch (2859:13): [True: 270, False: 0]
  ------------------
 2860|    270|            tp->tp_iternext != &_PyObject_NextNotImplemented);
  ------------------
  |  Branch (2860:13): [True: 270, False: 0]
  ------------------
 2861|    270|}
PyIter_Next:
 2924|  1.39k|{
 2925|  1.39k|    PyObject *item;
 2926|  1.39k|    (void)iternext(iter, &item);
 2927|  1.39k|    return item;
 2928|  1.39k|}
abstract.c:binary_op:
 1012|     18|{
 1013|     18|    PyObject *result = BINARY_OP1(v, w, op_slot, op_name);
  ------------------
  |  |  995|     18|#  define BINARY_OP1(v, w, op_slot, op_name) binary_op1(v, w, op_slot, op_name)
  ------------------
 1014|     18|    if (result == Py_NotImplemented) {
  ------------------
  |  |  640|     18|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1014:9): [True: 0, False: 18]
  ------------------
 1015|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1016|      0|        return binop_type_error(v, w, op_name);
 1017|      0|    }
 1018|     18|    return result;
 1019|     18|}
abstract.c:binary_op1:
  945|     50|{
  946|     50|    binaryfunc slotv;
  947|     50|    if (Py_TYPE(v)->tp_as_number != NULL) {
  ------------------
  |  |  213|     50|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     50|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     50|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (947:9): [True: 46, False: 4]
  ------------------
  948|     46|        slotv = NB_BINOP(Py_TYPE(v)->tp_as_number, op_slot);
  ------------------
  |  |  925|     46|        (*(binaryfunc*)(& ((char*)nb_methods)[slot]))
  ------------------
  949|     46|    }
  950|      4|    else {
  951|      4|        slotv = NULL;
  952|      4|    }
  953|       |
  954|     50|    binaryfunc slotw;
  955|     50|    if (!Py_IS_TYPE(w, Py_TYPE(v)) && Py_TYPE(w)->tp_as_number != NULL) {
  ------------------
  |  |  215|    100|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     50|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     50|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (!Py_IS_TYPE(w, Py_TYPE(v)) && Py_TYPE(w)->tp_as_number != NULL) {
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (955:9): [True: 2, False: 48]
  |  Branch (955:39): [True: 2, False: 0]
  ------------------
  956|      2|        slotw = NB_BINOP(Py_TYPE(w)->tp_as_number, op_slot);
  ------------------
  |  |  925|      2|        (*(binaryfunc*)(& ((char*)nb_methods)[slot]))
  ------------------
  957|      2|        if (slotw == slotv) {
  ------------------
  |  Branch (957:13): [True: 0, False: 2]
  ------------------
  958|      0|            slotw = NULL;
  959|      0|        }
  960|      2|    }
  961|     48|    else {
  962|     48|        slotw = NULL;
  963|     48|    }
  964|       |
  965|     50|    if (slotv) {
  ------------------
  |  Branch (965:9): [True: 26, False: 24]
  ------------------
  966|     26|        PyObject *x;
  967|     26|        if (slotw && PyType_IsSubtype(Py_TYPE(w), Py_TYPE(v))) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (slotw && PyType_IsSubtype(Py_TYPE(w), Py_TYPE(v))) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (967:13): [True: 0, False: 26]
  |  Branch (967:22): [True: 0, False: 0]
  ------------------
  968|      0|            x = slotw(v, w);
  969|      0|            if (x != Py_NotImplemented)
  ------------------
  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (969:17): [True: 0, False: 0]
  ------------------
  970|      0|                return x;
  971|      0|            Py_DECREF(x); /* can't do it */
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  972|      0|            slotw = NULL;
  973|      0|        }
  974|     26|        x = slotv(v, w);
  975|     26|        assert(_Py_CheckSlotResult(v, op_name, x != NULL));
  ------------------
  |  Branch (975:9): [True: 26, False: 0]
  ------------------
  976|     26|        if (x != Py_NotImplemented) {
  ------------------
  |  |  640|     26|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (976:13): [True: 26, False: 0]
  ------------------
  977|     26|            return x;
  978|     26|        }
  979|      0|        Py_DECREF(x); /* can't do it */
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  980|      0|    }
  981|     24|    if (slotw) {
  ------------------
  |  Branch (981:9): [True: 2, False: 22]
  ------------------
  982|      2|        PyObject *x = slotw(v, w);
  983|      2|        assert(_Py_CheckSlotResult(w, op_name, x != NULL));
  ------------------
  |  Branch (983:9): [True: 2, False: 0]
  ------------------
  984|      2|        if (x != Py_NotImplemented) {
  ------------------
  |  |  640|      2|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (984:13): [True: 0, False: 2]
  ------------------
  985|      0|            return x;
  986|      0|        }
  987|      2|        Py_DECREF(x); /* can't do it */
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  988|      2|    }
  989|     24|    Py_RETURN_NOTIMPLEMENTED;
  ------------------
  |  |  648|     24|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  ------------------
  |  |  |  |  640|     24|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  ------------------
  ------------------
  990|     24|}
abstract.c:sequence_repeat:
 1158|      2|{
 1159|      2|    Py_ssize_t count;
 1160|      2|    if (_PyIndex_Check(n)) {
  ------------------
  |  Branch (1160:9): [True: 2, False: 0]
  ------------------
 1161|      2|        count = PyNumber_AsSsize_t(n, PyExc_OverflowError);
 1162|      2|        if (count == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1162:13): [True: 0, False: 2]
  |  Branch (1162:28): [True: 0, False: 0]
  ------------------
 1163|      0|            return NULL;
 1164|      0|        }
 1165|      2|    }
 1166|      0|    else {
 1167|      0|        return type_error("can't multiply sequence by "
 1168|      0|                          "non-int of type '%.200s'", n);
 1169|      0|    }
 1170|      2|    PyObject *res = (*repeatfunc)(seq, count);
 1171|      2|    assert(_Py_CheckSlotResult(seq, "*", res != NULL));
  ------------------
  |  Branch (1171:5): [True: 2, False: 0]
  ------------------
 1172|      2|    return res;
 1173|      2|}
abstract.c:binary_iop1:
 1233|      4|{
 1234|      4|    PyNumberMethods *mv = Py_TYPE(v)->tp_as_number;
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1235|      4|    if (mv != NULL) {
  ------------------
  |  Branch (1235:9): [True: 4, False: 0]
  ------------------
 1236|      4|        binaryfunc slot = NB_BINOP(mv, iop_slot);
  ------------------
  |  |  925|      4|        (*(binaryfunc*)(& ((char*)nb_methods)[slot]))
  ------------------
 1237|      4|        if (slot) {
  ------------------
  |  Branch (1237:13): [True: 0, False: 4]
  ------------------
 1238|      0|            PyObject *x = (slot)(v, w);
 1239|      0|            assert(_Py_CheckSlotResult(v, op_name, x != NULL));
  ------------------
  |  Branch (1239:13): [True: 0, False: 0]
  ------------------
 1240|      0|            if (x != Py_NotImplemented) {
  ------------------
  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1240:17): [True: 0, False: 0]
  ------------------
 1241|      0|                return x;
 1242|      0|            }
 1243|      0|            Py_DECREF(x);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1244|      0|        }
 1245|      4|    }
 1246|       |#ifdef NDEBUG
 1247|       |    return binary_op1(v, w, op_slot);
 1248|       |#else
 1249|      4|    return binary_op1(v, w, op_slot, op_name);
 1250|      4|#endif
 1251|      4|}
abstract.c:method_output_as_list:
 2434|     58|{
 2435|     58|    PyObject *it, *result, *meth_output;
 2436|       |
 2437|     58|    assert(o != NULL);
  ------------------
  |  Branch (2437:5): [True: 58, False: 0]
  ------------------
 2438|     58|    meth_output = PyObject_CallMethodNoArgs(o, meth);
 2439|     58|    if (meth_output == NULL || PyList_CheckExact(meth_output)) {
  ------------------
  |  |   26|     58|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|     58|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 58]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2439:9): [True: 0, False: 58]
  ------------------
 2440|      0|        return meth_output;
 2441|      0|    }
 2442|     58|    it = PyObject_GetIter(meth_output);
 2443|     58|    if (it == NULL) {
  ------------------
  |  Branch (2443:9): [True: 0, False: 58]
  ------------------
 2444|      0|        PyThreadState *tstate = _PyThreadState_GET();
 2445|      0|        if (_PyErr_ExceptionMatches(tstate, PyExc_TypeError)) {
  ------------------
  |  Branch (2445:13): [True: 0, False: 0]
  ------------------
 2446|      0|            _PyErr_Format(tstate, PyExc_TypeError,
 2447|      0|                          "%T.%U() must return an iterable, not %T",
 2448|      0|                          o, meth, meth_output);
 2449|      0|        }
 2450|      0|        Py_DECREF(meth_output);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2451|      0|        return NULL;
 2452|      0|    }
 2453|     58|    Py_DECREF(meth_output);
  ------------------
  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2454|     58|    result = PySequence_List(it);
 2455|     58|    Py_DECREF(it);
  ------------------
  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2456|     58|    return result;
 2457|     58|}
abstract.c:object_recursive_isinstance:
 2640|     94|{
 2641|       |    /* Quick test for an exact match */
 2642|     94|    if (Py_IS_TYPE(inst, (PyTypeObject *)cls)) {
  ------------------
  |  |  215|     94|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 42, False: 52]
  |  |  ------------------
  ------------------
 2643|     42|        return 1;
 2644|     42|    }
 2645|       |
 2646|       |    /* We know what type's __instancecheck__ does. */
 2647|     52|    if (PyType_CheckExact(cls)) {
  ------------------
  |  |  776|     52|#  define PyType_CheckExact(op) PyType_CheckExact(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (776:33): [True: 52, False: 0]
  |  |  ------------------
  ------------------
 2648|     52|        return object_isinstance(inst, cls);
 2649|     52|    }
 2650|       |
 2651|      0|    if (_PyUnion_Check(cls)) {
  ------------------
  |  |   15|      0|#define _PyUnion_Check(op) Py_IS_TYPE((op), &_PyUnion_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2652|      0|        cls = _Py_union_args(cls);
 2653|      0|    }
 2654|       |
 2655|      0|    if (PyTuple_Check(cls)) {
  ------------------
  |  |   27|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2656|       |        /* Not a general sequence -- that opens up the road to
 2657|       |           recursion and stack overflow. */
 2658|      0|        if (_Py_EnterRecursiveCallTstate(tstate, " in __instancecheck__")) {
  ------------------
  |  Branch (2658:13): [True: 0, False: 0]
  ------------------
 2659|      0|            return -1;
 2660|      0|        }
 2661|      0|        Py_ssize_t n = PyTuple_GET_SIZE(cls);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2662|      0|        int r = 0;
 2663|      0|        for (Py_ssize_t i = 0; i < n; ++i) {
  ------------------
  |  Branch (2663:32): [True: 0, False: 0]
  ------------------
 2664|      0|            PyObject *item = PyTuple_GET_ITEM(cls, i);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2664:30): [True: 0, False: 0]
  ------------------
 2665|      0|            r = object_recursive_isinstance(tstate, inst, item);
 2666|      0|            if (r != 0) {
  ------------------
  |  Branch (2666:17): [True: 0, False: 0]
  ------------------
 2667|       |                /* either found it, or got an error */
 2668|      0|                break;
 2669|      0|            }
 2670|      0|        }
 2671|      0|        _Py_LeaveRecursiveCallTstate(tstate);
 2672|      0|        return r;
 2673|      0|    }
 2674|       |
 2675|      0|    PyObject *checker = _PyObject_LookupSpecial(cls, &_Py_ID(__instancecheck__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2676|      0|    if (checker != NULL) {
  ------------------
  |  Branch (2676:9): [True: 0, False: 0]
  ------------------
 2677|      0|        if (_Py_EnterRecursiveCallTstate(tstate, " in __instancecheck__")) {
  ------------------
  |  Branch (2677:13): [True: 0, False: 0]
  ------------------
 2678|      0|            Py_DECREF(checker);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2679|      0|            return -1;
 2680|      0|        }
 2681|       |
 2682|      0|        PyObject *res = PyObject_CallOneArg(checker, inst);
 2683|      0|        _Py_LeaveRecursiveCallTstate(tstate);
 2684|      0|        Py_DECREF(checker);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2685|       |
 2686|      0|        if (res == NULL) {
  ------------------
  |  Branch (2686:13): [True: 0, False: 0]
  ------------------
 2687|      0|            return -1;
 2688|      0|        }
 2689|      0|        int ok = PyObject_IsTrue(res);
 2690|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2691|       |
 2692|      0|        return ok;
 2693|      0|    }
 2694|      0|    else if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2694:14): [True: 0, False: 0]
  ------------------
 2695|      0|        return -1;
 2696|      0|    }
 2697|       |
 2698|       |    /* cls has no __instancecheck__() method */
 2699|      0|    return object_isinstance(inst, cls);
 2700|      0|}
abstract.c:object_issubclass:
 2733|    292|{
 2734|    292|    PyObject *checker;
 2735|       |
 2736|       |    /* We know what type's __subclasscheck__ does. */
 2737|    292|    if (PyType_CheckExact(cls)) {
  ------------------
  |  |  776|    292|#  define PyType_CheckExact(op) PyType_CheckExact(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    292|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    292|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (776:33): [True: 224, False: 68]
  |  |  ------------------
  ------------------
 2738|       |        /* Quick test for an exact match */
 2739|    224|        if (derived == cls)
  ------------------
  |  Branch (2739:13): [True: 158, False: 66]
  ------------------
 2740|    158|            return 1;
 2741|     66|        return recursive_issubclass(derived, cls);
 2742|    224|    }
 2743|       |
 2744|     68|    if (_PyUnion_Check(cls)) {
  ------------------
  |  |   15|     68|#define _PyUnion_Check(op) Py_IS_TYPE((op), &_PyUnion_Type)
  |  |  ------------------
  |  |  |  |  215|     68|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 68]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2745|      0|        cls = _Py_union_args(cls);
 2746|      0|    }
 2747|       |
 2748|     68|    if (PyTuple_Check(cls)) {
  ------------------
  |  |   27|     68|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     68|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 68]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2749|       |
 2750|      0|        if (_Py_EnterRecursiveCallTstate(tstate, " in __subclasscheck__")) {
  ------------------
  |  Branch (2750:13): [True: 0, False: 0]
  ------------------
 2751|      0|            return -1;
 2752|      0|        }
 2753|      0|        Py_ssize_t n = PyTuple_GET_SIZE(cls);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2754|      0|        int r = 0;
 2755|      0|        for (Py_ssize_t i = 0; i < n; ++i) {
  ------------------
  |  Branch (2755:32): [True: 0, False: 0]
  ------------------
 2756|      0|            PyObject *item = PyTuple_GET_ITEM(cls, i);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2756:30): [True: 0, False: 0]
  ------------------
 2757|      0|            r = object_issubclass(tstate, derived, item);
 2758|      0|            if (r != 0)
  ------------------
  |  Branch (2758:17): [True: 0, False: 0]
  ------------------
 2759|       |                /* either found it, or got an error */
 2760|      0|                break;
 2761|      0|        }
 2762|      0|        _Py_LeaveRecursiveCallTstate(tstate);
 2763|      0|        return r;
 2764|      0|    }
 2765|       |
 2766|     68|    checker = _PyObject_LookupSpecial(cls, &_Py_ID(__subclasscheck__));
  ------------------
  |  |  917|     68|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     68|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     68|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2767|     68|    if (checker != NULL) {
  ------------------
  |  Branch (2767:9): [True: 68, False: 0]
  ------------------
 2768|     68|        int ok = -1;
 2769|     68|        if (_Py_EnterRecursiveCallTstate(tstate, " in __subclasscheck__")) {
  ------------------
  |  Branch (2769:13): [True: 0, False: 68]
  ------------------
 2770|      0|            Py_DECREF(checker);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2771|      0|            return ok;
 2772|      0|        }
 2773|     68|        PyObject *res = PyObject_CallOneArg(checker, derived);
 2774|     68|        _Py_LeaveRecursiveCallTstate(tstate);
 2775|     68|        Py_DECREF(checker);
  ------------------
  |  |  430|     68|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2776|     68|        if (res != NULL) {
  ------------------
  |  Branch (2776:13): [True: 68, False: 0]
  ------------------
 2777|     68|            ok = PyObject_IsTrue(res);
 2778|     68|            Py_DECREF(res);
  ------------------
  |  |  430|     68|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2779|     68|        }
 2780|     68|        return ok;
 2781|     68|    }
 2782|      0|    else if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2782:14): [True: 0, False: 0]
  ------------------
 2783|      0|        return -1;
 2784|      0|    }
 2785|       |
 2786|       |    /* Can be reached when infinite recursion happens. */
 2787|      0|    return recursive_issubclass(derived, cls);
 2788|     68|}
abstract.c:object_isinstance:
 2604|     52|{
 2605|     52|    PyObject *icls;
 2606|     52|    int retval;
 2607|     52|    if (PyType_Check(cls)) {
  ------------------
  |  |  766|     52|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 52, False: 0]
  |  |  ------------------
  ------------------
 2608|     52|        retval = PyObject_TypeCheck(inst, (PyTypeObject *)cls);
  ------------------
  |  |  378|     52|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2609|     52|        if (retval == 0) {
  ------------------
  |  Branch (2609:13): [True: 52, False: 0]
  ------------------
 2610|     52|            retval = PyObject_GetOptionalAttr(inst, &_Py_ID(__class__), &icls);
  ------------------
  |  |  917|     52|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     52|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     52|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2611|     52|            if (icls != NULL) {
  ------------------
  |  Branch (2611:17): [True: 52, False: 0]
  ------------------
 2612|     52|                if (icls != (PyObject *)(Py_TYPE(inst)) && PyType_Check(icls)) {
  ------------------
  |  |  213|     52|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                              if (icls != (PyObject *)(Py_TYPE(inst)) && PyType_Check(icls)) {
  ------------------
  |  |  766|      0|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2612:21): [True: 0, False: 52]
  ------------------
 2613|      0|                    retval = PyType_IsSubtype(
 2614|      0|                        (PyTypeObject *)icls,
 2615|      0|                        (PyTypeObject *)cls);
 2616|      0|                }
 2617|     52|                else {
 2618|     52|                    retval = 0;
 2619|     52|                }
 2620|     52|                Py_DECREF(icls);
  ------------------
  |  |  430|     52|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2621|     52|            }
 2622|     52|        }
 2623|     52|    }
 2624|      0|    else {
 2625|      0|        if (!check_class(cls,
  ------------------
  |  Branch (2625:13): [True: 0, False: 0]
  ------------------
 2626|      0|            "isinstance() arg 2 must be a type, a tuple of types, or a union"))
 2627|      0|            return -1;
 2628|      0|        retval = PyObject_GetOptionalAttr(inst, &_Py_ID(__class__), &icls);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2629|      0|        if (icls != NULL) {
  ------------------
  |  Branch (2629:13): [True: 0, False: 0]
  ------------------
 2630|      0|            retval = abstract_issubclass(icls, cls);
 2631|      0|            Py_DECREF(icls);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2632|      0|        }
 2633|      0|    }
 2634|       |
 2635|     52|    return retval;
 2636|     52|}
abstract.c:recursive_issubclass:
 2713|    164|{
 2714|    164|    if (PyType_Check(cls) && PyType_Check(derived)) {
  ------------------
  |  |  766|    328|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    164|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 164, False: 0]
  |  |  ------------------
  ------------------
                  if (PyType_Check(cls) && PyType_Check(derived)) {
  ------------------
  |  |  766|    164|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    164|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 164, False: 0]
  |  |  ------------------
  ------------------
 2715|       |        /* Fast path (non-recursive) */
 2716|    164|        return PyType_IsSubtype((PyTypeObject *)derived, (PyTypeObject *)cls);
 2717|    164|    }
 2718|      0|    if (!check_class(derived,
  ------------------
  |  Branch (2718:9): [True: 0, False: 0]
  ------------------
 2719|      0|                     "issubclass() arg 1 must be a class"))
 2720|      0|        return -1;
 2721|       |
 2722|      0|    if (!_PyUnion_Check(cls) && !check_class(cls,
  ------------------
  |  |   15|      0|#define _PyUnion_Check(op) Py_IS_TYPE((op), &_PyUnion_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2722:9): [True: 0, False: 0]
  |  Branch (2722:33): [True: 0, False: 0]
  ------------------
 2723|      0|                            "issubclass() arg 2 must be a class,"
 2724|      0|                            " a tuple of classes, or a union")) {
 2725|      0|        return -1;
 2726|      0|    }
 2727|       |
 2728|      0|    return abstract_issubclass(derived, cls);
 2729|      0|}
abstract.c:iternext:
 2874|  1.39k|{
 2875|  1.39k|    iternextfunc tp_iternext = Py_TYPE(iter)->tp_iternext;
  ------------------
  |  |  213|  1.39k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.39k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.39k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2876|  1.39k|    if ((*item = tp_iternext(iter))) {
  ------------------
  |  Branch (2876:9): [True: 1.30k, False: 92]
  ------------------
 2877|  1.30k|        return 1;
 2878|  1.30k|    }
 2879|       |
 2880|     92|    PyThreadState *tstate = _PyThreadState_GET();
 2881|       |    /* When the iterator is exhausted it must return NULL;
 2882|       |     * a StopIteration exception may or may not be set. */
 2883|     92|    if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2883:9): [True: 92, False: 0]
  ------------------
 2884|     92|        return 0;
 2885|     92|    }
 2886|      0|    if (_PyErr_ExceptionMatches(tstate, PyExc_StopIteration)) {
  ------------------
  |  Branch (2886:9): [True: 0, False: 0]
  ------------------
 2887|      0|        _PyErr_Clear(tstate);
 2888|      0|        return 0;
 2889|      0|    }
 2890|       |
 2891|       |    /* Error case: an exception (different than StopIteration) is set. */
 2892|      0|    return -1;
 2893|      0|}

PyBool_FromLong:
   22|  3.18k|{
   23|  3.18k|    return ok ? Py_True : Py_False;
  ------------------
  |  |   26|  3.18k|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|    358|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    358|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  return ok ? Py_True : Py_False;
  ------------------
  |  |   25|  3.18k|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|  2.82k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.82k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (23:12): [True: 358, False: 2.82k]
  ------------------
   24|  3.18k|}
boolobject.c:bool_vectorcall:
   47|      2|{
   48|      2|    long ok = 0;
   49|      2|    if (!_PyArg_NoKwnames("bool", kwnames)) {
  ------------------
  |  |   15|      2|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 2, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   50|      0|        return NULL;
   51|      0|    }
   52|       |
   53|      2|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      2|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
   54|      2|    if (!_PyArg_CheckPositional("bool", nargs, 0, 1)) {
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   55|      0|        return NULL;
   56|      0|    }
   57|       |
   58|      2|    assert(PyType_Check(type));
  ------------------
  |  Branch (58:5): [True: 2, False: 0]
  ------------------
   59|      2|    if (nargs) {
  ------------------
  |  Branch (59:9): [True: 2, False: 0]
  ------------------
   60|      2|        ok = PyObject_IsTrue(args[0]);
   61|      2|        if (ok < 0) {
  ------------------
  |  Branch (61:13): [True: 0, False: 2]
  ------------------
   62|      0|            return NULL;
   63|      0|        }
   64|      2|    }
   65|      2|    return PyBool_FromLong(ok);
   66|      2|}

PyByteArray_FromStringAndSize:
  155|    162|{
  156|    162|    PyByteArrayObject *new;
  157|       |
  158|    162|    if (size < 0) {
  ------------------
  |  Branch (158:9): [True: 0, False: 162]
  ------------------
  159|      0|        PyErr_SetString(PyExc_SystemError,
  160|      0|            "Negative size passed to PyByteArray_FromStringAndSize");
  161|      0|        return NULL;
  162|      0|    }
  163|       |
  164|    162|    new = PyObject_New(PyByteArrayObject, &PyByteArray_Type);
  ------------------
  |  |  130|    162|#define PyObject_New(type, typeobj) ((type *)_PyObject_New(typeobj))
  ------------------
  165|    162|    if (new == NULL) {
  ------------------
  |  Branch (165:9): [True: 0, False: 162]
  ------------------
  166|      0|        return NULL;
  167|      0|    }
  168|       |
  169|       |    /* Fill values used in bytearray_dealloc.
  170|       |
  171|       |       In an optimized build the memory isn't zeroed and ob_exports would be
  172|       |       uninitialized when when PyBytes_FromStringAndSize errored leading to
  173|       |       intermittent test failures. */
  174|    162|    new->ob_exports = 0;
  175|       |
  176|       |    /* Optimization: size=0 bytearray should not allocate space
  177|       |
  178|       |       PyBytes_FromStringAndSize returns the empty bytes global when size=0 so
  179|       |       no allocation occurs. */
  180|    162|    new->ob_bytes_object = PyBytes_FromStringAndSize(NULL, size);
  181|    162|    if (new->ob_bytes_object == NULL) {
  ------------------
  |  Branch (181:9): [True: 0, False: 162]
  ------------------
  182|      0|        Py_DECREF(new);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  183|      0|        return NULL;
  184|      0|    }
  185|    162|    bytearray_reinit_from_bytes(new, size, size);
  186|    162|    if (bytes != NULL && size > 0) {
  ------------------
  |  Branch (186:9): [True: 0, False: 162]
  |  Branch (186:26): [True: 0, False: 0]
  ------------------
  187|      0|        memcpy(new->ob_bytes, bytes, size);
  188|      0|    }
  189|       |
  190|    162|    return (PyObject *)new;
  191|    162|}
bytearrayobject.c:bytearray_reinit_from_bytes:
   48|    164|                            Py_ssize_t alloc) {
   49|    164|    self->ob_bytes = self->ob_start = PyBytes_AS_STRING(self->ob_bytes_object);
  ------------------
  |  |   27|    164|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    164|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   50|    164|    Py_SET_SIZE(self, size);
  ------------------
  |  |  216|    164|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    164|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   51|    164|    FT_ATOMIC_STORE_SSIZE_RELAXED(self->ob_alloc, alloc);
  ------------------
  |  |  194|    164|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
   52|    164|}
bytearrayobject.c:bytearray_dealloc:
 1208|    164|{
 1209|    164|    PyByteArrayObject *self = _PyByteArray_CAST(op);
  ------------------
  |  |   22|    164|    (assert(PyByteArray_Check(op)), _Py_CAST(PyByteArrayObject*, op))
  |  |  ------------------
  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1209:31): [True: 164, False: 0]
  ------------------
 1210|    164|    if (self->ob_exports > 0) {
  ------------------
  |  Branch (1210:9): [True: 0, False: 164]
  ------------------
 1211|      0|        PyErr_SetString(PyExc_SystemError,
 1212|      0|                        "deallocated bytearray object has exported buffers");
 1213|      0|        PyErr_Print();
 1214|      0|    }
 1215|    164|    Py_XDECREF(self->ob_bytes_object);
  ------------------
  |  |  524|    164|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    164|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1216|    164|    Py_TYPE(self)->tp_free((PyObject *)self);
  ------------------
  |  |  213|    164|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    164|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1217|    164|}
bytearrayobject.c:bytearray___init___impl:
  918|      2|{
  919|      2|    Py_ssize_t count;
  920|      2|    PyObject *it;
  921|      2|    PyObject *(*iternext)(PyObject *);
  922|       |
  923|       |    /* First __init__; set ob_bytes_object so ob_bytes is always non-null. */
  924|      2|    if (self->ob_bytes_object == NULL) {
  ------------------
  |  Branch (924:9): [True: 2, False: 0]
  ------------------
  925|      2|        self->ob_bytes_object = Py_GetConstant(Py_CONSTANT_EMPTY_BYTES);
  ------------------
  |  |  598|      2|#define Py_CONSTANT_EMPTY_BYTES 8
  ------------------
  926|      2|        bytearray_reinit_from_bytes(self, 0, 0);
  927|      2|        self->ob_exports = 0;
  928|      2|    }
  929|       |
  930|      2|    if (Py_SIZE(self) != 0) {
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (930:9): [True: 0, False: 2]
  ------------------
  931|       |        /* Empty previous contents (yes, do this first of all!) */
  932|      0|        if (PyByteArray_Resize((PyObject *)self, 0) < 0)
  ------------------
  |  Branch (932:13): [True: 0, False: 0]
  ------------------
  933|      0|            return -1;
  934|      0|    }
  935|       |
  936|       |    /* Should be caused by first init or the resize to 0. */
  937|      2|    assert(self->ob_bytes_object == Py_GetConstantBorrowed(Py_CONSTANT_EMPTY_BYTES));
  ------------------
  |  Branch (937:5): [True: 2, False: 0]
  ------------------
  938|      2|    assert(self->ob_exports == 0);
  ------------------
  |  Branch (938:5): [True: 2, False: 0]
  ------------------
  939|       |
  940|       |    /* Make a quick exit if no first argument */
  941|      2|    if (arg == NULL) {
  ------------------
  |  Branch (941:9): [True: 2, False: 0]
  ------------------
  942|      2|        if (encoding != NULL || errors != NULL) {
  ------------------
  |  Branch (942:13): [True: 0, False: 2]
  |  Branch (942:33): [True: 0, False: 2]
  ------------------
  943|      0|            PyErr_SetString(PyExc_TypeError,
  944|      0|                            encoding != NULL ?
  ------------------
  |  Branch (944:29): [True: 0, False: 0]
  ------------------
  945|      0|                            "encoding without a string argument" :
  946|      0|                            "errors without a string argument");
  947|      0|            return -1;
  948|      0|        }
  949|      2|        return 0;
  950|      2|    }
  951|       |
  952|      0|    if (PyUnicode_Check(arg)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  953|       |        /* Encode via the codec registry */
  954|      0|        PyObject *encoded, *new;
  955|      0|        if (encoding == NULL) {
  ------------------
  |  Branch (955:13): [True: 0, False: 0]
  ------------------
  956|      0|            PyErr_SetString(PyExc_TypeError,
  957|      0|                            "string argument without an encoding");
  958|      0|            return -1;
  959|      0|        }
  960|      0|        encoded = PyUnicode_AsEncodedString(arg, encoding, errors);
  961|      0|        if (encoded == NULL) {
  ------------------
  |  Branch (961:13): [True: 0, False: 0]
  ------------------
  962|      0|            return -1;
  963|      0|        }
  964|      0|        assert(PyBytes_Check(encoded));
  ------------------
  |  Branch (964:9): [True: 0, False: 0]
  ------------------
  965|       |
  966|       |        /* Most encodes return a new unique bytes, just use it as buffer. */
  967|      0|        if (_PyObject_IsUniquelyReferenced(encoded)
  ------------------
  |  Branch (967:13): [True: 0, False: 0]
  ------------------
  968|      0|            && PyBytes_CheckExact(encoded))
  ------------------
  |  |   29|      0|#define PyBytes_CheckExact(op) Py_IS_TYPE((op), &PyBytes_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  969|      0|        {
  970|      0|            Py_ssize_t size = Py_SIZE(encoded);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  971|      0|            self->ob_bytes_object = encoded;
  972|      0|            bytearray_reinit_from_bytes(self, size, size);
  973|      0|            return 0;
  974|      0|        }
  975|      0|        new = bytearray_iconcat((PyObject*)self, encoded);
  976|      0|        Py_DECREF(encoded);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  977|      0|        if (new == NULL)
  ------------------
  |  Branch (977:13): [True: 0, False: 0]
  ------------------
  978|      0|            return -1;
  979|      0|        Py_DECREF(new);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  980|      0|        return 0;
  981|      0|    }
  982|       |
  983|       |    /* If it's not unicode, there can't be encoding or errors */
  984|      0|    if (encoding != NULL || errors != NULL) {
  ------------------
  |  Branch (984:9): [True: 0, False: 0]
  |  Branch (984:29): [True: 0, False: 0]
  ------------------
  985|      0|        PyErr_SetString(PyExc_TypeError,
  986|      0|                        encoding != NULL ?
  ------------------
  |  Branch (986:25): [True: 0, False: 0]
  ------------------
  987|      0|                        "encoding without a string argument" :
  988|      0|                        "errors without a string argument");
  989|      0|        return -1;
  990|      0|    }
  991|       |
  992|       |    /* Is it an int? */
  993|      0|    if (_PyIndex_Check(arg)) {
  ------------------
  |  Branch (993:9): [True: 0, False: 0]
  ------------------
  994|      0|        count = PyNumber_AsSsize_t(arg, PyExc_OverflowError);
  995|      0|        if (count == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (995:13): [True: 0, False: 0]
  |  Branch (995:28): [True: 0, False: 0]
  ------------------
  996|      0|            if (!PyErr_ExceptionMatches(PyExc_TypeError))
  ------------------
  |  Branch (996:17): [True: 0, False: 0]
  ------------------
  997|      0|                return -1;
  998|      0|            PyErr_Clear();  /* fall through */
  999|      0|        }
 1000|      0|        else {
 1001|      0|            if (count < 0) {
  ------------------
  |  Branch (1001:17): [True: 0, False: 0]
  ------------------
 1002|      0|                PyErr_SetString(PyExc_ValueError, "negative count");
 1003|      0|                return -1;
 1004|      0|            }
 1005|      0|            if (count > 0) {
  ------------------
  |  Branch (1005:17): [True: 0, False: 0]
  ------------------
 1006|      0|                if (PyByteArray_Resize((PyObject *)self, count))
  ------------------
  |  Branch (1006:21): [True: 0, False: 0]
  ------------------
 1007|      0|                    return -1;
 1008|      0|                memset(PyByteArray_AS_STRING(self), 0, count);
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1009|      0|            }
 1010|      0|            return 0;
 1011|      0|        }
 1012|      0|    }
 1013|       |
 1014|       |    /* Use the buffer API */
 1015|      0|    if (PyObject_CheckBuffer(arg)) {
  ------------------
  |  Branch (1015:9): [True: 0, False: 0]
  ------------------
 1016|      0|        Py_ssize_t size;
 1017|      0|        Py_buffer view;
 1018|      0|        if (PyObject_GetBuffer(arg, &view, PyBUF_FULL_RO) < 0)
  ------------------
  |  |  134|      0|#define PyBUF_FULL_RO (PyBUF_INDIRECT | PyBUF_FORMAT)
  |  |  ------------------
  |  |  |  |  122|      0|#define PyBUF_INDIRECT (0x0100 | PyBUF_STRIDES)
  |  |  |  |  ------------------
  |  |  |  |  |  |  118|      0|#define PyBUF_STRIDES (0x0010 | PyBUF_ND)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  117|      0|#define PyBUF_ND 0x0008
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define PyBUF_FULL_RO (PyBUF_INDIRECT | PyBUF_FORMAT)
  |  |  ------------------
  |  |  |  |  116|      0|#define PyBUF_FORMAT 0x0004
  |  |  ------------------
  ------------------
  |  Branch (1018:13): [True: 0, False: 0]
  ------------------
 1019|      0|            return -1;
 1020|      0|        size = view.len;
 1021|      0|        if (PyByteArray_Resize((PyObject *)self, size) < 0) goto fail;
  ------------------
  |  Branch (1021:13): [True: 0, False: 0]
  ------------------
 1022|      0|        if (PyBuffer_ToContiguous(PyByteArray_AS_STRING(self),
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1022:13): [True: 0, False: 0]
  ------------------
 1023|      0|            &view, size, 'C') < 0)
 1024|      0|            goto fail;
 1025|      0|        PyBuffer_Release(&view);
 1026|      0|        return 0;
 1027|      0|    fail:
 1028|      0|        PyBuffer_Release(&view);
 1029|      0|        return -1;
 1030|      0|    }
 1031|       |
 1032|      0|    if (PyList_CheckExact(arg) || PyTuple_CheckExact(arg)) {
  ------------------
  |  |   26|      0|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyList_CheckExact(arg) || PyTuple_CheckExact(arg)) {
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1033|      0|        Py_ssize_t size = PySequence_Fast_GET_SIZE(arg);
  ------------------
  |  |   92|      0|    (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   25|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1034|      0|        if (PyByteArray_Resize((PyObject *)self, size) < 0) {
  ------------------
  |  Branch (1034:13): [True: 0, False: 0]
  ------------------
 1035|      0|            return -1;
 1036|      0|        }
 1037|      0|        PyObject **items = PySequence_Fast_ITEMS(arg);
  ------------------
  |  |  102|      0|    (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
  |  |  ------------------
  |  |  |  |   25|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|      0|                      : ((PyTupleObject *)(sf))->ob_item)
  ------------------
 1038|      0|        char *s = PyByteArray_AS_STRING(self);
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1039|      0|        for (Py_ssize_t i = 0; i < size; i++) {
  ------------------
  |  Branch (1039:32): [True: 0, False: 0]
  ------------------
 1040|      0|            int value;
 1041|      0|            if (!PyLong_CheckExact(items[i])) {
  ------------------
  |  |   14|      0|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1041:17): [True: 0, False: 0]
  ------------------
 1042|       |                /* Resize to 0 and go through slowpath */
 1043|      0|                if (Py_SIZE(self) != 0) {
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1043:21): [True: 0, False: 0]
  ------------------
 1044|      0|                   if (PyByteArray_Resize((PyObject *)self, 0) < 0) {
  ------------------
  |  Branch (1044:24): [True: 0, False: 0]
  ------------------
 1045|      0|                       return -1;
 1046|      0|                   }
 1047|      0|                }
 1048|      0|                goto slowpath;
 1049|      0|            }
 1050|      0|            int rc = _getbytevalue(items[i], &value);
 1051|      0|            if (!rc) {
  ------------------
  |  Branch (1051:17): [True: 0, False: 0]
  ------------------
 1052|      0|                return -1;
 1053|      0|            }
 1054|      0|            s[i] = value;
 1055|      0|        }
 1056|      0|        return 0;
 1057|      0|    }
 1058|      0|slowpath:
 1059|       |    /* Get the iterator */
 1060|      0|    it = PyObject_GetIter(arg);
 1061|      0|    if (it == NULL) {
  ------------------
  |  Branch (1061:9): [True: 0, False: 0]
  ------------------
 1062|      0|        if (PyErr_ExceptionMatches(PyExc_TypeError)) {
  ------------------
  |  Branch (1062:13): [True: 0, False: 0]
  ------------------
 1063|      0|            PyErr_Format(PyExc_TypeError,
 1064|      0|                         "cannot convert '%.200s' object to bytearray",
 1065|      0|                         Py_TYPE(arg)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1066|      0|        }
 1067|      0|        return -1;
 1068|      0|    }
 1069|      0|    iternext = *Py_TYPE(it)->tp_iternext;
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1070|       |
 1071|       |    /* Run the iterator to exhaustion */
 1072|      0|    for (;;) {
 1073|      0|        PyObject *item;
 1074|      0|        int rc, value;
 1075|       |
 1076|       |        /* Get the next item */
 1077|      0|        item = iternext(it);
 1078|      0|        if (item == NULL) {
  ------------------
  |  Branch (1078:13): [True: 0, False: 0]
  ------------------
 1079|      0|            if (PyErr_Occurred()) {
  ------------------
  |  Branch (1079:17): [True: 0, False: 0]
  ------------------
 1080|      0|                if (!PyErr_ExceptionMatches(PyExc_StopIteration))
  ------------------
  |  Branch (1080:21): [True: 0, False: 0]
  ------------------
 1081|      0|                    goto error;
 1082|      0|                PyErr_Clear();
 1083|      0|            }
 1084|      0|            break;
 1085|      0|        }
 1086|       |
 1087|       |        /* Interpret it as an int (__index__) */
 1088|      0|        rc = _getbytevalue(item, &value);
 1089|      0|        Py_DECREF(item);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1090|      0|        if (!rc)
  ------------------
  |  Branch (1090:13): [True: 0, False: 0]
  ------------------
 1091|      0|            goto error;
 1092|       |
 1093|       |        /* Append the byte */
 1094|      0|        if (Py_SIZE(self) + 1 < self->ob_alloc) {
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1094:13): [True: 0, False: 0]
  ------------------
 1095|      0|            Py_SET_SIZE(self, Py_SIZE(self) + 1);
  ------------------
  |  |  216|      0|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      0|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1096|      0|            PyByteArray_AS_STRING(self)[Py_SIZE(self)] = '\0';
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          PyByteArray_AS_STRING(self)[Py_SIZE(self)] = '\0';
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1097|      0|        }
 1098|      0|        else if (PyByteArray_Resize((PyObject *)self, Py_SIZE(self)+1) < 0)
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1098:18): [True: 0, False: 0]
  ------------------
 1099|      0|            goto error;
 1100|      0|        PyByteArray_AS_STRING(self)[Py_SIZE(self)-1] = value;
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      PyByteArray_AS_STRING(self)[Py_SIZE(self)-1] = value;
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1101|      0|    }
 1102|       |
 1103|       |    /* Clean up and return success */
 1104|      0|    Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1105|      0|    return 0;
 1106|       |
 1107|      0| error:
 1108|       |    /* Error handling when it != NULL */
 1109|      0|    Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1110|      0|    return -1;
 1111|      0|}
bytearrayobject.c:bytearrayiter_dealloc:
 2955|      2|{
 2956|      2|    bytesiterobject *it = _bytesiterobject_CAST(self);
  ------------------
  |  | 2951|      2|#define _bytesiterobject_CAST(op)   ((bytesiterobject *)(op))
  ------------------
 2957|      2|    _PyObject_GC_UNTRACK(it);
  ------------------
  |  |  515|      2|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2958|      2|    Py_XDECREF(it->it_seq);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2959|      2|    PyObject_GC_Del(it);
 2960|      2|}
bytearrayobject.c:bytearray_iter:
 3109|      2|{
 3110|      2|    bytesiterobject *it;
 3111|       |
 3112|      2|    if (!PyByteArray_Check(seq)) {
  ------------------
  |  |   24|      2|#define PyByteArray_Check(self) PyObject_TypeCheck((self), &PyByteArray_Type)
  |  |  ------------------
  |  |  |  |  378|      2|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3112:9): [True: 0, False: 2]
  ------------------
 3113|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3114|      0|        return NULL;
 3115|      0|    }
 3116|      2|    it = PyObject_GC_New(bytesiterobject, &PyByteArrayIter_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 3117|      2|    if (it == NULL)
  ------------------
  |  Branch (3117:9): [True: 0, False: 2]
  ------------------
 3118|      0|        return NULL;
 3119|      2|    it->it_index = 0;  // -1 indicates exhausted
 3120|      2|    it->it_seq = (PyByteArrayObject *)Py_NewRef(seq);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3121|      2|    _PyObject_GC_TRACK(it);
  ------------------
  |  |  513|      2|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3122|      2|    return (PyObject *)it;
 3123|      2|}

_Py_bytes_lower:
  252|      4|{
  253|      4|    Py_ssize_t i;
  254|       |
  255|     28|    for (i = 0; i < len; i++) {
  ------------------
  |  Branch (255:17): [True: 24, False: 4]
  ------------------
  256|     24|        result[i] = Py_TOLOWER((unsigned char) cptr[i]);
  ------------------
  |  |   32|     24|#define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)])
  |  |  ------------------
  |  |  |  |  138|     24|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  ------------------
  257|     24|    }
  258|      4|}

PyBytes_FromStringAndSize:
  135|  8.60k|{
  136|  8.60k|    PyBytesObject *op;
  137|  8.60k|    if (size < 0) {
  ------------------
  |  Branch (137:9): [True: 0, False: 8.60k]
  ------------------
  138|      0|        PyErr_SetString(PyExc_SystemError,
  139|      0|            "Negative size passed to PyBytes_FromStringAndSize");
  140|      0|        return NULL;
  141|      0|    }
  142|  8.60k|    if (size == 1 && str != NULL) {
  ------------------
  |  Branch (142:9): [True: 540, False: 8.06k]
  |  Branch (142:22): [True: 90, False: 450]
  ------------------
  143|     90|        op = CHARACTER(*str & 255);
  ------------------
  |  |   39|     90|     ((PyBytesObject *)&(CHARACTERS[ch]));
  |  |  ------------------
  |  |  |  |   37|     90|#define CHARACTERS _Py_SINGLETON(bytes_characters)
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|     90|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|     90|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  144|     90|        assert(_Py_IsImmortal(op));
  ------------------
  |  Branch (144:9): [True: 90, False: 0]
  ------------------
  145|     90|        return (PyObject *)op;
  146|     90|    }
  147|  8.51k|    if (size == 0) {
  ------------------
  |  Branch (147:9): [True: 38, False: 8.48k]
  ------------------
  148|     38|        return bytes_get_empty();
  149|     38|    }
  150|       |
  151|  8.48k|    op = (PyBytesObject *)_PyBytes_FromSize(size, 0);
  152|  8.48k|    if (op == NULL)
  ------------------
  |  Branch (152:9): [True: 0, False: 8.48k]
  ------------------
  153|      0|        return NULL;
  154|  8.48k|    if (str == NULL)
  ------------------
  |  Branch (154:9): [True: 4.75k, False: 3.72k]
  ------------------
  155|  4.75k|        return (PyObject *) op;
  156|       |
  157|  3.72k|    memcpy(op->ob_sval, str, size);
  158|  3.72k|    return (PyObject *) op;
  159|  8.48k|}
PyBytes_Repr:
 1436|  1.93k|{
 1437|  1.93k|    return _Py_bytes_repr(PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
  ------------------
  |  |   27|  1.93k|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.93k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  return _Py_bytes_repr(PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
  ------------------
  |  |   33|  1.93k|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|  1.93k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1438|  1.93k|                          smartquotes, "bytes");
 1439|  1.93k|}
_Py_bytes_repr:
 1444|  1.93k|{
 1445|  1.93k|    Py_ssize_t i;
 1446|  1.93k|    Py_ssize_t newsize, squotes, dquotes;
 1447|  1.93k|    PyObject *v;
 1448|  1.93k|    unsigned char quote;
 1449|  1.93k|    Py_UCS1 *p;
 1450|       |
 1451|       |    /* Compute size of output string */
 1452|  1.93k|    squotes = dquotes = 0;
 1453|  1.93k|    newsize = 3; /* b'' */
 1454|  54.4M|    for (i = 0; i < length; i++) {
  ------------------
  |  Branch (1454:17): [True: 54.4M, False: 1.93k]
  ------------------
 1455|  54.4M|        unsigned char c = data[i];
 1456|  54.4M|        Py_ssize_t incr = 1;
 1457|  54.4M|        switch(c) {
 1458|  71.6k|        case '\'': squotes++; break;
  ------------------
  |  Branch (1458:9): [True: 71.6k, False: 54.3M]
  ------------------
 1459|   122k|        case '"':  dquotes++; break;
  ------------------
  |  Branch (1459:9): [True: 122k, False: 54.3M]
  ------------------
 1460|  74.1k|        case '\\': case '\t': case '\n': case '\r':
  ------------------
  |  Branch (1460:9): [True: 930, False: 54.4M]
  |  Branch (1460:20): [True: 1.09k, False: 54.4M]
  |  Branch (1460:31): [True: 70.9k, False: 54.3M]
  |  Branch (1460:42): [True: 1.12k, False: 54.4M]
  ------------------
 1461|  74.1k|            incr = 2; break; /* \C */
 1462|  54.1M|        default:
  ------------------
  |  Branch (1462:9): [True: 54.1M, False: 268k]
  ------------------
 1463|  54.1M|            if (c < ' ' || c >= 0x7f)
  ------------------
  |  Branch (1463:17): [True: 36.2M, False: 17.9M]
  |  Branch (1463:28): [True: 7.22M, False: 10.6M]
  ------------------
 1464|  43.4M|                incr = 4; /* \xHH */
 1465|  54.4M|        }
 1466|  54.4M|        if (newsize > PY_SSIZE_T_MAX - incr)
  ------------------
  |  |  137|  54.4M|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1466:13): [True: 0, False: 54.4M]
  ------------------
 1467|      0|            goto overflow;
 1468|  54.4M|        newsize += incr;
 1469|  54.4M|    }
 1470|  1.93k|    quote = '\'';
 1471|  1.93k|    if (smartquotes && squotes && !dquotes)
  ------------------
  |  Branch (1471:9): [True: 1.93k, False: 0]
  |  Branch (1471:24): [True: 107, False: 1.82k]
  |  Branch (1471:35): [True: 52, False: 55]
  ------------------
 1472|     52|        quote = '"';
 1473|  1.93k|    if (squotes && quote == '\'') {
  ------------------
  |  Branch (1473:9): [True: 107, False: 1.82k]
  |  Branch (1473:20): [True: 55, False: 52]
  ------------------
 1474|     55|        if (newsize > PY_SSIZE_T_MAX - squotes)
  ------------------
  |  |  137|     55|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1474:13): [True: 0, False: 55]
  ------------------
 1475|      0|            goto overflow;
 1476|     55|        newsize += squotes;
 1477|     55|    }
 1478|       |
 1479|  1.93k|    v = PyUnicode_New(newsize, 127);
 1480|  1.93k|    if (v == NULL) {
  ------------------
  |  Branch (1480:9): [True: 0, False: 1.93k]
  ------------------
 1481|      0|        return NULL;
 1482|      0|    }
 1483|  1.93k|    p = PyUnicode_1BYTE_DATA(v);
  ------------------
  |  |  291|  1.93k|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|  1.93k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1484|       |
 1485|  1.93k|    *p++ = 'b', *p++ = quote;
 1486|  54.4M|    for (i = 0; i < length; i++) {
  ------------------
  |  Branch (1486:17): [True: 54.4M, False: 1.93k]
  ------------------
 1487|  54.4M|        unsigned char c = data[i];
 1488|  54.4M|        if (c == quote || c == '\\')
  ------------------
  |  Branch (1488:13): [True: 71.2k, False: 54.3M]
  |  Branch (1488:27): [True: 930, False: 54.3M]
  ------------------
 1489|  72.1k|            *p++ = '\\', *p++ = c;
 1490|  54.3M|        else if (c == '\t')
  ------------------
  |  Branch (1490:18): [True: 1.09k, False: 54.3M]
  ------------------
 1491|  1.09k|            *p++ = '\\', *p++ = 't';
 1492|  54.3M|        else if (c == '\n')
  ------------------
  |  Branch (1492:18): [True: 70.9k, False: 54.3M]
  ------------------
 1493|  70.9k|            *p++ = '\\', *p++ = 'n';
 1494|  54.3M|        else if (c == '\r')
  ------------------
  |  Branch (1494:18): [True: 1.12k, False: 54.3M]
  ------------------
 1495|  1.12k|            *p++ = '\\', *p++ = 'r';
 1496|  54.3M|        else if (c < ' ' || c >= 0x7f) {
  ------------------
  |  Branch (1496:18): [True: 36.2M, False: 18.0M]
  |  Branch (1496:29): [True: 7.22M, False: 10.8M]
  ------------------
 1497|  43.4M|            *p++ = '\\';
 1498|  43.4M|            *p++ = 'x';
 1499|  43.4M|            *p++ = Py_hexdigits[(c & 0xf0) >> 4];
 1500|  43.4M|            *p++ = Py_hexdigits[c & 0xf];
 1501|  43.4M|        }
 1502|  10.8M|        else
 1503|  10.8M|            *p++ = c;
 1504|  54.4M|    }
 1505|  1.93k|    *p++ = quote;
 1506|  1.93k|    assert(_PyUnicode_CheckConsistency(v, 1));
  ------------------
  |  Branch (1506:5): [True: 1.93k, False: 0]
  ------------------
 1507|  1.93k|    return v;
 1508|       |
 1509|      0|  overflow:
 1510|      0|    PyErr_Format(PyExc_OverflowError,
 1511|      0|                 "%s object is too large to make repr", classname);
 1512|       |    return NULL;
 1513|  1.93k|}
PyBytesWriter_Create:
 3718|      2|{
 3719|      2|    return byteswriter_create(size, 0);
 3720|      2|}
PyBytesWriter_Discard:
 3731|      2|{
 3732|      2|    if (writer == NULL) {
  ------------------
  |  Branch (3732:9): [True: 0, False: 2]
  ------------------
 3733|      0|        return;
 3734|      0|    }
 3735|       |
 3736|      2|    Py_XDECREF(writer->obj);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3737|      2|    _Py_FREELIST_FREE(bytes_writers, writer, PyMem_Free);
  ------------------
  |  |   35|      2|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|      2|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   30|      2|#  define Py_bytes_writers_MAXFREELIST 1
  |  |  ------------------
  ------------------
 3738|      2|}
PyBytesWriter_FinishWithSize:
 3743|      2|{
 3744|      2|    PyObject *result;
 3745|      2|    if (size == 0) {
  ------------------
  |  Branch (3745:9): [True: 0, False: 2]
  ------------------
 3746|      0|        result = bytes_get_empty();
 3747|      0|    }
 3748|      2|    else if (writer->obj != NULL) {
  ------------------
  |  Branch (3748:14): [True: 0, False: 2]
  ------------------
 3749|      0|        if (writer->use_bytearray) {
  ------------------
  |  Branch (3749:13): [True: 0, False: 0]
  ------------------
 3750|      0|            if (size != PyByteArray_GET_SIZE(writer->obj)) {
  ------------------
  |  |   38|      0|#define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3750:17): [True: 0, False: 0]
  ------------------
 3751|      0|                if (PyByteArray_Resize(writer->obj, size)) {
  ------------------
  |  Branch (3751:21): [True: 0, False: 0]
  ------------------
 3752|      0|                    goto error;
 3753|      0|                }
 3754|      0|            }
 3755|      0|        }
 3756|      0|        else {
 3757|      0|            if (size != PyBytes_GET_SIZE(writer->obj)) {
  ------------------
  |  |   33|      0|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3757:17): [True: 0, False: 0]
  ------------------
 3758|      0|                if (_PyBytes_Resize(&writer->obj, size)) {
  ------------------
  |  Branch (3758:21): [True: 0, False: 0]
  ------------------
 3759|      0|                    goto error;
 3760|      0|                }
 3761|      0|            }
 3762|      0|        }
 3763|      0|        result = writer->obj;
 3764|      0|        writer->obj = NULL;
 3765|      0|    }
 3766|      2|    else if (writer->use_bytearray) {
  ------------------
  |  Branch (3766:14): [True: 0, False: 2]
  ------------------
 3767|      0|        result = PyByteArray_FromStringAndSize(writer->small_buffer, size);
 3768|      0|    }
 3769|      2|    else {
 3770|      2|        result = PyBytes_FromStringAndSize(writer->small_buffer, size);
 3771|      2|    }
 3772|      2|    PyBytesWriter_Discard(writer);
 3773|      2|    return result;
 3774|       |
 3775|      0|error:
 3776|      0|    PyBytesWriter_Discard(writer);
 3777|       |    return NULL;
 3778|      2|}
PyBytesWriter_Finish:
 3782|      2|{
 3783|      2|    return PyBytesWriter_FinishWithSize(writer, writer->size);
 3784|      2|}
PyBytesWriter_GetData:
 3803|      2|{
 3804|      2|    return byteswriter_data(writer);
 3805|      2|}
bytesobject.c:bytes_get_empty:
   45|     38|{
   46|     38|    PyObject *empty = &EMPTY->ob_base.ob_base;
  ------------------
  |  |   40|     38|#define EMPTY (&_Py_SINGLETON(bytes_empty))
  |  |  ------------------
  |  |  |  |   18|     38|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     38|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   47|     38|    assert(_Py_IsImmortal(empty));
  ------------------
  |  Branch (47:5): [True: 38, False: 0]
  ------------------
   48|     38|    return empty;
   49|     38|}
bytesobject.c:_PyBytes_FromSize:
  103|  8.48k|{
  104|  8.48k|    PyBytesObject *op;
  105|  8.48k|    assert(size >= 0);
  ------------------
  |  Branch (105:5): [True: 8.48k, False: 0]
  ------------------
  106|       |
  107|  8.48k|    if (size == 0) {
  ------------------
  |  Branch (107:9): [True: 0, False: 8.48k]
  ------------------
  108|      0|        return bytes_get_empty();
  109|      0|    }
  110|       |
  111|  8.48k|    if ((size_t)size > (size_t)PY_SSIZE_T_MAX - PyBytesObject_SIZE) {
  ------------------
  |  |  137|  8.48k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
                  if ((size_t)size > (size_t)PY_SSIZE_T_MAX - PyBytesObject_SIZE) {
  ------------------
  |  |   29|  8.48k|#define PyBytesObject_SIZE _PyBytesObject_SIZE
  |  |  ------------------
  |  |  |  |   76|  8.48k|#define _PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1)
  |  |  ------------------
  ------------------
  |  Branch (111:9): [True: 0, False: 8.48k]
  ------------------
  112|      0|        PyErr_SetString(PyExc_OverflowError,
  113|      0|                        "byte string is too large");
  114|      0|        return NULL;
  115|      0|    }
  116|       |
  117|       |    /* Inline PyObject_NewVar */
  118|  8.48k|    if (use_calloc)
  ------------------
  |  Branch (118:9): [True: 0, False: 8.48k]
  ------------------
  119|      0|        op = (PyBytesObject *)PyObject_Calloc(1, PyBytesObject_SIZE + size);
  ------------------
  |  |   29|      0|#define PyBytesObject_SIZE _PyBytesObject_SIZE
  |  |  ------------------
  |  |  |  |   76|      0|#define _PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1)
  |  |  ------------------
  ------------------
  120|  8.48k|    else
  121|  8.48k|        op = (PyBytesObject *)PyObject_Malloc(PyBytesObject_SIZE + size);
  ------------------
  |  |   29|  8.48k|#define PyBytesObject_SIZE _PyBytesObject_SIZE
  |  |  ------------------
  |  |  |  |   76|  8.48k|#define _PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1)
  |  |  ------------------
  ------------------
  122|  8.48k|    if (op == NULL) {
  ------------------
  |  Branch (122:9): [True: 0, False: 8.48k]
  ------------------
  123|      0|        return PyErr_NoMemory();
  124|      0|    }
  125|  8.48k|    _PyObject_InitVar((PyVarObject*)op, &PyBytes_Type, size);
  126|  8.48k|    set_ob_shash(op, -1);
  127|  8.48k|    if (!use_calloc) {
  ------------------
  |  Branch (127:9): [True: 8.48k, False: 0]
  ------------------
  128|  8.48k|        op->ob_sval[size] = '\0';
  129|  8.48k|    }
  130|  8.48k|    return (PyObject *) op;
  131|  8.48k|}
bytesobject.c:set_ob_shash:
   54|  8.55k|{
   55|  8.55k|_Py_COMP_DIAG_PUSH
   56|  8.55k|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
   57|       |#ifdef Py_GIL_DISABLED
   58|       |    _Py_atomic_store_ssize_relaxed(&a->ob_shash, hash);
   59|       |#else
   60|  8.55k|    a->ob_shash = hash;
   61|  8.55k|#endif
   62|  8.55k|_Py_COMP_DIAG_POP
   63|  8.55k|}
bytesobject.c:bytes_repr:
 1517|  1.93k|{
 1518|  1.93k|    return PyBytes_Repr(op, 1);
 1519|  1.93k|}
bytesobject.c:bytes_hash:
 1721|     74|{
 1722|     74|    PyBytesObject *a = _PyBytes_CAST(self);
  ------------------
  |  |   21|     74|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1722:24): [True: 74, False: 0]
  ------------------
 1723|      0|    Py_hash_t hash = get_ob_shash(a);
 1724|     74|    if (hash == -1) {
  ------------------
  |  Branch (1724:9): [True: 74, False: 0]
  ------------------
 1725|       |        /* Can't fail */
 1726|     74|        hash = Py_HashBuffer(a->ob_sval, Py_SIZE(a));
  ------------------
  |  |  214|     74|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     74|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1727|     74|        set_ob_shash(a, hash);
 1728|     74|    }
 1729|     74|    return hash;
 1730|     74|}
bytesobject.c:get_ob_shash:
   67|     74|{
   68|     74|_Py_COMP_DIAG_PUSH
   69|     74|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
   70|       |#ifdef Py_GIL_DISABLED
   71|       |    return _Py_atomic_load_ssize_relaxed(&a->ob_shash);
   72|       |#else
   73|     74|    return a->ob_shash;
   74|     74|#endif
   75|     74|_Py_COMP_DIAG_POP
   76|     74|}
bytesobject.c:bytes_richcompare:
 1658|      4|{
 1659|       |    /* Make sure both arguments are strings. */
 1660|      4|    if (!(PyBytes_Check(aa) && PyBytes_Check(bb))) {
  ------------------
  |  |   28|      4|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (!(PyBytes_Check(aa) && PyBytes_Check(bb))) {
  ------------------
  |  |   28|      4|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1661|      0|        if (_Py_GetConfig()->bytes_warning && (op == Py_EQ || op == Py_NE)) {
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
                      if (_Py_GetConfig()->bytes_warning && (op == Py_EQ || op == Py_NE)) {
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (1661:13): [True: 0, False: 0]
  |  Branch (1661:48): [True: 0, False: 0]
  |  Branch (1661:63): [True: 0, False: 0]
  ------------------
 1662|      0|            if (PyUnicode_Check(aa) || PyUnicode_Check(bb)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          if (PyUnicode_Check(aa) || PyUnicode_Check(bb)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1663|      0|                if (PyErr_WarnEx(PyExc_BytesWarning,
  ------------------
  |  Branch (1663:21): [True: 0, False: 0]
  ------------------
 1664|      0|                                 "Comparison between bytes and string", 1))
 1665|      0|                    return NULL;
 1666|      0|            }
 1667|      0|            if (PyLong_Check(aa) || PyLong_Check(bb)) {
  ------------------
  |  |   13|      0|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          if (PyLong_Check(aa) || PyLong_Check(bb)) {
  ------------------
  |  |   13|      0|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1668|      0|                if (PyErr_WarnEx(PyExc_BytesWarning,
  ------------------
  |  Branch (1668:21): [True: 0, False: 0]
  ------------------
 1669|      0|                                 "Comparison between bytes and int", 1))
 1670|      0|                    return NULL;
 1671|      0|            }
 1672|      0|        }
 1673|      0|        Py_RETURN_NOTIMPLEMENTED;
  ------------------
  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  ------------------
  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  ------------------
  ------------------
 1674|      0|    }
 1675|       |
 1676|      4|    PyBytesObject *a = _PyBytes_CAST(aa);
  ------------------
  |  |   21|      4|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1676:24): [True: 4, False: 0]
  ------------------
 1677|      4|    PyBytesObject *b = _PyBytes_CAST(bb);
  ------------------
  |  |   21|      4|    (assert(PyBytes_Check(op)), _Py_CAST(PyBytesObject*, op))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1677:24): [True: 4, False: 0]
  ------------------
 1678|      4|    if (a == b) {
  ------------------
  |  Branch (1678:9): [True: 0, False: 4]
  ------------------
 1679|      0|        switch (op) {
 1680|      0|        case Py_EQ:
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  |  Branch (1680:9): [True: 0, False: 0]
  ------------------
 1681|      0|        case Py_LE:
  ------------------
  |  |  653|      0|#define Py_LE 1
  ------------------
  |  Branch (1681:9): [True: 0, False: 0]
  ------------------
 1682|      0|        case Py_GE:
  ------------------
  |  |  657|      0|#define Py_GE 5
  ------------------
  |  Branch (1682:9): [True: 0, False: 0]
  ------------------
 1683|       |            /* a byte string is equal to itself */
 1684|      0|            Py_RETURN_TRUE;
  ------------------
  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1685|      0|        case Py_NE:
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (1685:9): [True: 0, False: 0]
  ------------------
 1686|      0|        case Py_LT:
  ------------------
  |  |  652|      0|#define Py_LT 0
  ------------------
  |  Branch (1686:9): [True: 0, False: 0]
  ------------------
 1687|      0|        case Py_GT:
  ------------------
  |  |  656|      0|#define Py_GT 4
  ------------------
  |  Branch (1687:9): [True: 0, False: 0]
  ------------------
 1688|      0|            Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1689|      0|        default:
  ------------------
  |  Branch (1689:9): [True: 0, False: 0]
  ------------------
 1690|      0|            PyErr_BadArgument();
 1691|      0|            return NULL;
 1692|      0|        }
 1693|      0|    }
 1694|      4|    else if (op == Py_EQ || op == Py_NE) {
  ------------------
  |  |  654|      8|#define Py_EQ 2
  ------------------
                  else if (op == Py_EQ || op == Py_NE) {
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (1694:14): [True: 4, False: 0]
  |  Branch (1694:29): [True: 0, False: 0]
  ------------------
 1695|      4|        int eq = bytes_compare_eq(a, b);
 1696|      4|        eq ^= (op == Py_NE);
  ------------------
  |  |  655|      4|#define Py_NE 3
  ------------------
 1697|      4|        return PyBool_FromLong(eq);
 1698|      4|    }
 1699|      0|    else {
 1700|      0|        Py_ssize_t len_a = Py_SIZE(a);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1701|      0|        Py_ssize_t len_b = Py_SIZE(b);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1702|      0|        Py_ssize_t min_len = Py_MIN(len_a, len_b);
  ------------------
  |  |  112|      0|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1703|      0|        int c;
 1704|      0|        if (min_len > 0) {
  ------------------
  |  Branch (1704:13): [True: 0, False: 0]
  ------------------
 1705|      0|            c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval);
  ------------------
  |  |  138|      0|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  ------------------
                          c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval);
  ------------------
  |  |  138|      0|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  ------------------
 1706|      0|            if (c == 0)
  ------------------
  |  Branch (1706:17): [True: 0, False: 0]
  ------------------
 1707|      0|                c = memcmp(a->ob_sval, b->ob_sval, min_len);
 1708|      0|        }
 1709|      0|        else {
 1710|      0|            c = 0;
 1711|      0|        }
 1712|      0|        if (c != 0) {
  ------------------
  |  Branch (1712:13): [True: 0, False: 0]
  ------------------
 1713|      0|            Py_RETURN_RICHCOMPARE(c, 0, op);
  ------------------
  |  |  674|      0|    do {                                                                    \
  |  |  675|      0|        switch (op) {                                                       \
  |  |  676|      0|        case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  654|      0|#define Py_EQ 2
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (676:9): [True: 0, False: 0]
  |  |  |  Branch (676:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  677|      0|        case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  655|      0|#define Py_NE 3
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (677:9): [True: 0, False: 0]
  |  |  |  Branch (677:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  678|      0|        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  652|      0|#define Py_LT 0
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (678:9): [True: 0, False: 0]
  |  |  |  Branch (678:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  679|      0|        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  656|      0|#define Py_GT 4
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (679:9): [True: 0, False: 0]
  |  |  |  Branch (679:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  680|      0|        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  653|      0|#define Py_LE 1
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (680:9): [True: 0, False: 0]
  |  |  |  Branch (680:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  681|      0|        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  657|      0|#define Py_GE 5
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (681:9): [True: 0, False: 0]
  |  |  |  Branch (681:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  682|      0|        default:                                                            \
  |  |  ------------------
  |  |  |  Branch (682:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  683|      0|            Py_UNREACHABLE();                                               \
  |  |  ------------------
  |  |  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  |  |  ------------------
  |  |  684|      0|        }                                                                   \
  |  |  685|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (685:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1714|      0|        }
 1715|      0|        Py_RETURN_RICHCOMPARE(len_a, len_b, op);
  ------------------
  |  |  674|      0|    do {                                                                    \
  |  |  675|      0|        switch (op) {                                                       \
  |  |  676|      0|        case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  654|      0|#define Py_EQ 2
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (676:9): [True: 0, False: 0]
  |  |  |  Branch (676:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  677|      0|        case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  655|      0|#define Py_NE 3
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (677:9): [True: 0, False: 0]
  |  |  |  Branch (677:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  678|      0|        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  652|      0|#define Py_LT 0
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (678:9): [True: 0, False: 0]
  |  |  |  Branch (678:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  679|      0|        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  656|      0|#define Py_GT 4
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (679:9): [True: 0, False: 0]
  |  |  |  Branch (679:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  680|      0|        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  653|      0|#define Py_LE 1
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (680:9): [True: 0, False: 0]
  |  |  |  Branch (680:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  681|      0|        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  657|      0|#define Py_GE 5
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (681:9): [True: 0, False: 0]
  |  |  |  Branch (681:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  682|      0|        default:                                                            \
  |  |  ------------------
  |  |  |  Branch (682:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  683|      0|            Py_UNREACHABLE();                                               \
  |  |  ------------------
  |  |  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  |  |  ------------------
  |  |  684|      0|        }                                                                   \
  |  |  685|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (685:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1716|      0|    }
 1717|      4|}
bytesobject.c:bytes_compare_eq:
 1641|      4|{
 1642|      4|    int cmp;
 1643|      4|    Py_ssize_t len;
 1644|       |
 1645|      4|    len = Py_SIZE(a);
  ------------------
  |  |  214|      4|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1646|      4|    if (Py_SIZE(b) != len)
  ------------------
  |  |  214|      4|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1646:9): [True: 0, False: 4]
  ------------------
 1647|      0|        return 0;
 1648|       |
 1649|      4|    if (a->ob_sval[0] != b->ob_sval[0])
  ------------------
  |  Branch (1649:9): [True: 0, False: 4]
  ------------------
 1650|      0|        return 0;
 1651|       |
 1652|      4|    cmp = memcmp(a->ob_sval, b->ob_sval, len);
 1653|      4|    return (cmp == 0);
 1654|      4|}
bytesobject.c:bytes_decode_impl:
 2578|      4|{
 2579|      4|    return PyUnicode_FromEncodedObject((PyObject*)self, encoding, errors);
 2580|      4|}
bytesobject.c:striter_dealloc:
 3414|      2|{
 3415|      2|    striterobject *it = _striterobject_CAST(op);
  ------------------
  |  | 3410|      2|#define _striterobject_CAST(op)  ((striterobject *)(op))
  ------------------
 3416|      2|    _PyObject_GC_UNTRACK(it);
  ------------------
  |  |  515|      2|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3417|      2|    Py_XDECREF(it->it_seq);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3418|      2|    PyObject_GC_Del(it);
 3419|      2|}
bytesobject.c:bytes_iter:
 3543|      2|{
 3544|      2|    striterobject *it;
 3545|       |
 3546|      2|    if (!PyBytes_Check(seq)) {
  ------------------
  |  |   28|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3546:9): [True: 0, False: 2]
  ------------------
 3547|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3548|      0|        return NULL;
 3549|      0|    }
 3550|      2|    it = PyObject_GC_New(striterobject, &PyBytesIter_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 3551|      2|    if (it == NULL)
  ------------------
  |  Branch (3551:9): [True: 0, False: 2]
  ------------------
 3552|      0|        return NULL;
 3553|      2|    it->it_index = 0;
 3554|      2|    it->it_seq = (PyBytesObject *)Py_NewRef(seq);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3555|      2|    _PyObject_GC_TRACK(it);
  ------------------
  |  |  513|      2|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3556|      2|    return (PyObject *)it;
 3557|      2|}
bytesobject.c:byteswriter_create:
 3684|      2|{
 3685|      2|    if (size < 0) {
  ------------------
  |  Branch (3685:9): [True: 0, False: 2]
  ------------------
 3686|      0|        PyErr_SetString(PyExc_ValueError, "size must be >= 0");
 3687|      0|        return NULL;
 3688|      0|    }
 3689|       |
 3690|      2|    PyBytesWriter *writer = _Py_FREELIST_POP_MEM(bytes_writers);
  ------------------
  |  |   48|      2|    _PyFreeList_PopMem(&_Py_freelists_GET()->NAME)
  ------------------
 3691|      2|    if (writer == NULL) {
  ------------------
  |  Branch (3691:9): [True: 2, False: 0]
  ------------------
 3692|      2|        writer = (PyBytesWriter *)PyMem_Malloc(sizeof(PyBytesWriter));
 3693|      2|        if (writer == NULL) {
  ------------------
  |  Branch (3693:13): [True: 0, False: 2]
  ------------------
 3694|      0|            PyErr_NoMemory();
 3695|      0|            return NULL;
 3696|      0|        }
 3697|      2|    }
 3698|      2|    writer->obj = NULL;
 3699|      2|    writer->size = 0;
 3700|      2|    writer->use_bytearray = use_bytearray;
 3701|      2|    writer->overallocate = !use_bytearray;
 3702|       |
 3703|      2|    if (size >= 1) {
  ------------------
  |  Branch (3703:9): [True: 2, False: 0]
  ------------------
 3704|      2|        if (byteswriter_resize(writer, size, 0) < 0) {
  ------------------
  |  Branch (3704:13): [True: 0, False: 2]
  ------------------
 3705|      0|            PyBytesWriter_Discard(writer);
 3706|      0|            return NULL;
 3707|      0|        }
 3708|      2|        writer->size = size;
 3709|      2|    }
 3710|       |#ifdef Py_DEBUG
 3711|       |    memset(byteswriter_data(writer), 0xff, byteswriter_allocated(writer));
 3712|       |#endif
 3713|      2|    return writer;
 3714|      2|}
bytesobject.c:byteswriter_data:
 3588|      2|{
 3589|      2|    return _PyBytesWriter_GetData(writer);
 3590|      2|}
bytesobject.c:byteswriter_allocated:
 3595|      2|{
 3596|      2|    if (writer->obj == NULL) {
  ------------------
  |  Branch (3596:9): [True: 2, False: 0]
  ------------------
 3597|      2|        return sizeof(writer->small_buffer);
 3598|      2|    }
 3599|      0|    else if (writer->use_bytearray) {
  ------------------
  |  Branch (3599:14): [True: 0, False: 0]
  ------------------
 3600|      0|        return PyByteArray_GET_SIZE(writer->obj);
  ------------------
  |  |   38|      0|#define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3601|      0|    }
 3602|      0|    else {
 3603|      0|        return PyBytes_GET_SIZE(writer->obj);
  ------------------
  |  |   33|      0|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3604|      0|    }
 3605|      2|}
bytesobject.c:byteswriter_resize:
 3618|      2|{
 3619|      2|    assert(size >= 0);
  ------------------
  |  Branch (3619:5): [True: 2, False: 0]
  ------------------
 3620|       |
 3621|      2|    Py_ssize_t old_allocated = byteswriter_allocated(writer);
 3622|      2|    if (size <= old_allocated) {
  ------------------
  |  Branch (3622:9): [True: 2, False: 0]
  ------------------
 3623|      2|        return 0;
 3624|      2|    }
 3625|       |
 3626|      0|    if (resize & writer->overallocate) {
  ------------------
  |  Branch (3626:9): [True: 0, False: 0]
  ------------------
 3627|      0|        if (size <= (PY_SSIZE_T_MAX - size / OVERALLOCATE_FACTOR)) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
                      if (size <= (PY_SSIZE_T_MAX - size / OVERALLOCATE_FACTOR)) {
  ------------------
  |  | 3613|      0|#  define OVERALLOCATE_FACTOR 4
  ------------------
  |  Branch (3627:13): [True: 0, False: 0]
  ------------------
 3628|      0|            size += size / OVERALLOCATE_FACTOR;
  ------------------
  |  | 3613|      0|#  define OVERALLOCATE_FACTOR 4
  ------------------
 3629|      0|        }
 3630|      0|    }
 3631|       |
 3632|      0|    if (writer->obj != NULL) {
  ------------------
  |  Branch (3632:9): [True: 0, False: 0]
  ------------------
 3633|      0|        if (writer->use_bytearray) {
  ------------------
  |  Branch (3633:13): [True: 0, False: 0]
  ------------------
 3634|      0|            if (PyByteArray_Resize(writer->obj, size)) {
  ------------------
  |  Branch (3634:17): [True: 0, False: 0]
  ------------------
 3635|      0|                return -1;
 3636|      0|            }
 3637|      0|        }
 3638|      0|        else {
 3639|      0|            if (_PyBytes_Resize(&writer->obj, size)) {
  ------------------
  |  Branch (3639:17): [True: 0, False: 0]
  ------------------
 3640|      0|                return -1;
 3641|      0|            }
 3642|      0|        }
 3643|      0|        assert(writer->obj != NULL);
  ------------------
  |  Branch (3643:9): [True: 0, False: 0]
  ------------------
 3644|      0|    }
 3645|      0|    else if (writer->use_bytearray) {
  ------------------
  |  Branch (3645:14): [True: 0, False: 0]
  ------------------
 3646|      0|        writer->obj = PyByteArray_FromStringAndSize(NULL, size);
 3647|      0|        if (writer->obj == NULL) {
  ------------------
  |  Branch (3647:13): [True: 0, False: 0]
  ------------------
 3648|      0|            return -1;
 3649|      0|        }
 3650|      0|        if (resize) {
  ------------------
  |  Branch (3650:13): [True: 0, False: 0]
  ------------------
 3651|      0|            assert((size_t)size > sizeof(writer->small_buffer));
  ------------------
  |  Branch (3651:13): [True: 0, False: 0]
  ------------------
 3652|      0|            memcpy(PyByteArray_AS_STRING(writer->obj),
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3653|      0|                   writer->small_buffer,
 3654|      0|                   sizeof(writer->small_buffer));
 3655|      0|        }
 3656|      0|    }
 3657|      0|    else {
 3658|      0|        writer->obj = PyBytes_FromStringAndSize(NULL, size);
 3659|      0|        if (writer->obj == NULL) {
  ------------------
  |  Branch (3659:13): [True: 0, False: 0]
  ------------------
 3660|      0|            return -1;
 3661|      0|        }
 3662|      0|        if (resize) {
  ------------------
  |  Branch (3662:13): [True: 0, False: 0]
  ------------------
 3663|      0|            assert((size_t)size > sizeof(writer->small_buffer));
  ------------------
  |  Branch (3663:13): [True: 0, False: 0]
  ------------------
 3664|      0|            memcpy(PyBytes_AS_STRING(writer->obj),
  ------------------
  |  |   27|      0|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3665|      0|                   writer->small_buffer,
 3666|      0|                   sizeof(writer->small_buffer));
 3667|      0|        }
 3668|      0|    }
 3669|       |
 3670|       |#ifdef Py_DEBUG
 3671|       |    Py_ssize_t allocated = byteswriter_allocated(writer);
 3672|       |    if (resize && allocated > old_allocated) {
 3673|       |        memset(byteswriter_data(writer) + old_allocated, 0xff,
 3674|       |               allocated - old_allocated);
 3675|       |    }
 3676|       |#endif
 3677|       |
 3678|      0|    return 0;
 3679|      0|}

_Py_CheckFunctionResult:
   27|  9.10k|{
   28|  9.10k|    assert((callable != NULL) ^ (where != NULL));
  ------------------
  |  Branch (28:5): [True: 9.10k, False: 0]
  ------------------
   29|       |
   30|  9.10k|    if (result == NULL) {
  ------------------
  |  Branch (30:9): [True: 52, False: 9.05k]
  ------------------
   31|     52|        if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (31:13): [True: 0, False: 52]
  ------------------
   32|      0|            if (callable)
  ------------------
  |  Branch (32:17): [True: 0, False: 0]
  ------------------
   33|      0|                _PyErr_Format(tstate, PyExc_SystemError,
   34|      0|                              "%R returned NULL without setting an exception",
   35|      0|                              callable);
   36|      0|            else
   37|      0|                _PyErr_Format(tstate, PyExc_SystemError,
   38|      0|                              "%s returned NULL without setting an exception",
   39|      0|                              where);
   40|       |#ifdef Py_DEBUG
   41|       |            /* Ensure that the bug is caught in debug mode.
   42|       |               Py_FatalError() logs the SystemError exception raised above. */
   43|       |            Py_FatalError("a function returned NULL without setting an exception");
   44|       |#endif
   45|      0|            return NULL;
   46|      0|        }
   47|     52|    }
   48|  9.05k|    else {
   49|  9.05k|        if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (49:13): [True: 0, False: 9.05k]
  ------------------
   50|      0|            Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   51|       |
   52|      0|            if (callable) {
  ------------------
  |  Branch (52:17): [True: 0, False: 0]
  ------------------
   53|      0|                _PyErr_FormatFromCauseTstate(
   54|      0|                    tstate, PyExc_SystemError,
   55|      0|                    "%R returned a result with an exception set", callable);
   56|      0|            }
   57|      0|            else {
   58|      0|                _PyErr_FormatFromCauseTstate(
   59|      0|                    tstate, PyExc_SystemError,
   60|      0|                    "%s returned a result with an exception set", where);
   61|      0|            }
   62|       |#ifdef Py_DEBUG
   63|       |            /* Ensure that the bug is caught in debug mode.
   64|       |               Py_FatalError() logs the SystemError exception raised above. */
   65|       |            Py_FatalError("a function returned a result with an exception set");
   66|       |#endif
   67|      0|            return NULL;
   68|      0|        }
   69|  9.05k|    }
   70|  9.10k|    return result;
   71|  9.10k|}
_Py_CheckSlotResult:
   76|  1.91k|{
   77|  1.91k|    PyThreadState *tstate = _PyThreadState_GET();
   78|  1.91k|    if (!success) {
  ------------------
  |  Branch (78:9): [True: 18, False: 1.90k]
  ------------------
   79|     18|        if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (79:13): [True: 0, False: 18]
  ------------------
   80|      0|            _Py_FatalErrorFormat(__func__,
   81|      0|                                 "Slot %s of type %s failed "
   82|      0|                                 "without setting an exception",
   83|      0|                                 slot_name, Py_TYPE(obj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   84|      0|        }
   85|     18|    }
   86|  1.90k|    else {
   87|  1.90k|        if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (87:13): [True: 0, False: 1.90k]
  ------------------
   88|      0|            _Py_FatalErrorFormat(__func__,
   89|      0|                                 "Slot %s of type %s succeeded "
   90|      0|                                 "with an exception set",
   91|      0|                                 slot_name, Py_TYPE(obj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   92|      0|        }
   93|  1.90k|    }
   94|  1.91k|    return 1;
   95|  1.91k|}
_PyObject_VectorcallDictTstate:
  114|    798|{
  115|    798|    assert(callable != NULL);
  ------------------
  |  Branch (115:5): [True: 798, False: 0]
  ------------------
  116|       |
  117|       |    /* PyObject_VectorcallDict() must not be called with an exception set,
  118|       |       because it can clear it (directly or indirectly) and so the
  119|       |       caller loses its exception */
  120|    798|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (120:5): [True: 798, False: 0]
  ------------------
  121|       |
  122|    798|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    798|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  123|    798|    assert(nargs >= 0);
  ------------------
  |  Branch (123:5): [True: 798, False: 0]
  ------------------
  124|    798|    assert(nargs == 0 || args != NULL);
  ------------------
  |  Branch (124:5): [True: 174, False: 624]
  |  Branch (124:5): [True: 624, False: 0]
  ------------------
  125|    798|    assert(kwargs == NULL || PyDict_Check(kwargs));
  ------------------
  |  Branch (125:5): [True: 678, False: 120]
  |  Branch (125:5): [True: 120, False: 0]
  ------------------
  126|       |
  127|    798|    vectorcallfunc func = PyVectorcall_Function(callable);
  128|    798|    if (func == NULL) {
  ------------------
  |  Branch (128:9): [True: 58, False: 740]
  ------------------
  129|       |        /* Use tp_call instead */
  130|     58|        return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwargs);
  131|     58|    }
  132|       |
  133|    740|    PyObject *res;
  134|    740|    if (kwargs == NULL || PyDict_GET_SIZE(kwargs) == 0) {
  ------------------
  |  |   63|    100|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    100|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    100|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (134:9): [True: 640, False: 100]
  |  Branch (134:27): [True: 40, False: 60]
  ------------------
  135|    680|        res = func(callable, args, nargsf, NULL);
  136|    680|    }
  137|     60|    else {
  138|     60|        PyObject *kwnames;
  139|     60|        PyObject *const *newargs;
  140|     60|        newargs = _PyStack_UnpackDict(tstate,
  141|     60|                                      args, nargs,
  142|     60|                                      kwargs, &kwnames);
  143|     60|        if (newargs == NULL) {
  ------------------
  |  Branch (143:13): [True: 0, False: 60]
  ------------------
  144|      0|            return NULL;
  145|      0|        }
  146|     60|        res = func(callable, newargs,
  147|     60|                   nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames);
  ------------------
  |  |  287|     60|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     60|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  148|     60|        _PyStack_UnpackDict_Free(newargs, nargs, kwnames);
  149|     60|    }
  150|    740|    return _Py_CheckFunctionResult(tstate, callable, res, NULL);
  151|    740|}
PyObject_VectorcallDict:
  157|    510|{
  158|    510|    PyThreadState *tstate = _PyThreadState_GET();
  159|    510|    return _PyObject_VectorcallDictTstate(tstate, callable, args, nargsf, kwargs);
  160|    510|}
_PyObject_MakeTpCall:
  203|  1.00k|{
  204|  1.00k|    assert(nargs >= 0);
  ------------------
  |  Branch (204:5): [True: 1.00k, False: 0]
  ------------------
  205|  1.00k|    assert(nargs == 0 || args != NULL);
  ------------------
  |  Branch (205:5): [True: 242, False: 762]
  |  Branch (205:5): [True: 762, False: 0]
  ------------------
  206|  1.00k|    assert(keywords == NULL || PyTuple_Check(keywords) || PyDict_Check(keywords));
  ------------------
  |  Branch (206:5): [True: 880, False: 124]
  |  Branch (206:5): [True: 104, False: 20]
  |  Branch (206:5): [True: 20, False: 0]
  ------------------
  207|       |
  208|       |    /* Slow path: build a temporary tuple for positional arguments and a
  209|       |     * temporary dictionary for keyword arguments (if any) */
  210|  1.00k|    ternaryfunc call = Py_TYPE(callable)->tp_call;
  ------------------
  |  |  213|  1.00k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  211|  1.00k|    if (call == NULL) {
  ------------------
  |  Branch (211:9): [True: 0, False: 1.00k]
  ------------------
  212|      0|        object_is_not_callable(tstate, callable);
  213|      0|        return NULL;
  214|      0|    }
  215|       |
  216|  1.00k|    PyObject *argstuple = PyTuple_FromArray(args, nargs);
  217|  1.00k|    if (argstuple == NULL) {
  ------------------
  |  Branch (217:9): [True: 0, False: 1.00k]
  ------------------
  218|      0|        return NULL;
  219|      0|    }
  220|       |
  221|  1.00k|    PyObject *kwdict;
  222|  1.00k|    if (keywords == NULL || PyDict_Check(keywords)) {
  ------------------
  |  |   18|    124|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    124|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 20, False: 104]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (222:9): [True: 880, False: 124]
  ------------------
  223|    900|        kwdict = keywords;
  224|    900|    }
  225|    104|    else {
  226|    104|        if (PyTuple_GET_SIZE(keywords)) {
  ------------------
  |  |   27|    104|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    104|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    104|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (27:30): [True: 104, False: 0]
  |  |  ------------------
  ------------------
  227|    104|            assert(args != NULL);
  ------------------
  |  Branch (227:13): [True: 104, False: 0]
  ------------------
  228|    104|            kwdict = _PyStack_AsDict(args + nargs, keywords);
  229|    104|            if (kwdict == NULL) {
  ------------------
  |  Branch (229:17): [True: 0, False: 104]
  ------------------
  230|      0|                Py_DECREF(argstuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  231|      0|                return NULL;
  232|      0|            }
  233|    104|        }
  234|      0|        else {
  235|      0|            keywords = kwdict = NULL;
  236|      0|        }
  237|    104|    }
  238|       |
  239|  1.00k|    PyObject *result = NULL;
  240|  1.00k|    if (_Py_EnterRecursiveCallTstate(tstate, " while calling a Python object") == 0)
  ------------------
  |  Branch (240:9): [True: 1.00k, False: 0]
  ------------------
  241|  1.00k|    {
  242|  1.00k|        result = _PyCFunctionWithKeywords_TrampolineCall(
  ------------------
  |  |  999|  1.00k|    (meth)((self), (args), (kw))
  ------------------
  243|  1.00k|            (PyCFunctionWithKeywords)call, callable, argstuple, kwdict);
  244|  1.00k|        _Py_LeaveRecursiveCallTstate(tstate);
  245|  1.00k|    }
  246|       |
  247|  1.00k|    Py_DECREF(argstuple);
  ------------------
  |  |  430|  1.00k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  248|  1.00k|    if (kwdict != keywords) {
  ------------------
  |  Branch (248:9): [True: 104, False: 900]
  ------------------
  249|    104|        Py_DECREF(kwdict);
  ------------------
  |  |  430|    104|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    104|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    104|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|    104|    }
  251|       |
  252|       |    return _Py_CheckFunctionResult(tstate, callable, result, NULL);
  253|  1.00k|}
PyVectorcall_Function:
  258|    996|{
  259|    996|    return _PyVectorcall_FunctionInline(callable);
  260|    996|}
PyObject_Vectorcall:
  325|  2.47k|{
  326|  2.47k|    PyThreadState *tstate = _PyThreadState_GET();
  327|  2.47k|    return _PyObject_VectorcallTstate(tstate, callable,
  328|  2.47k|                                      args, nargsf, kwnames);
  329|  2.47k|}
_PyObject_Call:
  335|    194|{
  336|    194|    ternaryfunc call;
  337|    194|    PyObject *result;
  338|       |
  339|       |    /* PyObject_Call() must not be called with an exception set,
  340|       |       because it can clear it (directly or indirectly) and so the
  341|       |       caller loses its exception */
  342|    194|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (342:5): [True: 194, False: 0]
  ------------------
  343|    194|    assert(PyTuple_Check(args));
  ------------------
  |  Branch (343:5): [True: 194, False: 0]
  ------------------
  344|    194|    assert(kwargs == NULL || PyDict_Check(kwargs));
  ------------------
  |  Branch (344:5): [True: 28, False: 166]
  |  Branch (344:5): [True: 166, False: 0]
  ------------------
  345|    194|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_API, callable);
  ------------------
  |  |   80|    194|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
  346|    194|    vectorcallfunc vector_func = PyVectorcall_Function(callable);
  347|    194|    if (vector_func != NULL) {
  ------------------
  |  Branch (347:9): [True: 168, False: 26]
  ------------------
  348|    168|        return _PyVectorcall_Call(tstate, vector_func, callable, args, kwargs);
  349|    168|    }
  350|     26|    else {
  351|     26|        call = Py_TYPE(callable)->tp_call;
  ------------------
  |  |  213|     26|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  352|     26|        if (call == NULL) {
  ------------------
  |  Branch (352:13): [True: 0, False: 26]
  ------------------
  353|      0|            object_is_not_callable(tstate, callable);
  354|      0|            return NULL;
  355|      0|        }
  356|       |
  357|     26|        if (_Py_EnterRecursiveCallTstate(tstate, " while calling a Python object")) {
  ------------------
  |  Branch (357:13): [True: 0, False: 26]
  ------------------
  358|      0|            return NULL;
  359|      0|        }
  360|       |
  361|     26|        result = (*call)(callable, args, kwargs);
  362|       |
  363|     26|        _Py_LeaveRecursiveCallTstate(tstate);
  364|       |
  365|       |        return _Py_CheckFunctionResult(tstate, callable, result, NULL);
  366|     26|    }
  367|    194|}
PyObject_Call:
  371|    194|{
  372|    194|    PyThreadState *tstate = _PyThreadState_GET();
  373|    194|    return _PyObject_Call(tstate, callable, args, kwargs);
  374|    194|}
PyObject_CallOneArg:
  387|  4.10k|{
  388|  4.10k|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_API, func);
  ------------------
  |  |   80|  4.10k|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
  389|  4.10k|    assert(arg != NULL);
  ------------------
  |  Branch (389:5): [True: 4.10k, False: 0]
  ------------------
  390|  4.10k|    PyObject *_args[2];
  391|  4.10k|    PyObject **args = _args + 1;  // For PY_VECTORCALL_ARGUMENTS_OFFSET
  392|  4.10k|    args[0] = arg;
  393|  4.10k|    PyThreadState *tstate = _PyThreadState_GET();
  394|  4.10k|    size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|  4.10k|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|  4.10k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  395|       |    return _PyObject_VectorcallTstate(tstate, func, args, nargsf, NULL);
  396|  4.10k|}
_PyFunction_Vectorcall:
  404|    638|{
  405|    638|    assert(PyFunction_Check(func));
  ------------------
  |  Branch (405:5): [True: 638, False: 0]
  ------------------
  406|    638|    PyFunctionObject *f = (PyFunctionObject *)func;
  407|    638|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    638|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  408|    638|    assert(nargs >= 0);
  ------------------
  |  Branch (408:5): [True: 638, False: 0]
  ------------------
  409|    638|    PyThreadState *tstate = _PyThreadState_GET();
  410|    638|    assert(nargs == 0 || stack != NULL);
  ------------------
  |  Branch (410:5): [True: 2, False: 636]
  |  Branch (410:5): [True: 636, False: 0]
  ------------------
  411|    638|    EVAL_CALL_STAT_INC(EVAL_CALL_FUNCTION_VECTORCALL);
  ------------------
  |  |   79|    638|#define EVAL_CALL_STAT_INC(name) ((void)0)
  ------------------
  412|    638|    if (((PyCodeObject *)f->func_code)->co_flags & CO_OPTIMIZED) {
  ------------------
  |  |  118|    638|#define CO_OPTIMIZED    0x0001
  ------------------
  |  Branch (412:9): [True: 638, False: 0]
  ------------------
  413|    638|        return _PyEval_Vector(tstate, f, NULL, stack, nargs, kwnames);
  414|    638|    }
  415|      0|    else {
  416|      0|        return _PyEval_Vector(tstate, f, f->func_globals, stack, nargs, kwnames);
  417|      0|    }
  418|    638|}
_PyObject_Call_Prepend:
  480|    288|{
  481|    288|    assert(PyTuple_Check(args));
  ------------------
  |  Branch (481:5): [True: 288, False: 0]
  ------------------
  482|       |
  483|    288|    PyObject *small_stack[_PY_FASTCALL_SMALL_STACK];
  484|    288|    PyObject **stack;
  485|       |
  486|    288|    Py_ssize_t argcount = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|    288|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    288|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    288|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  487|    288|    if (argcount + 1 <= (Py_ssize_t)Py_ARRAY_LENGTH(small_stack)) {
  ------------------
  |  |  196|    288|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (487:9): [True: 284, False: 4]
  ------------------
  488|    284|        stack = small_stack;
  489|    284|    }
  490|      4|    else {
  491|      4|        stack = PyMem_Malloc((argcount + 1) * sizeof(PyObject *));
  492|      4|        if (stack == NULL) {
  ------------------
  |  Branch (492:13): [True: 0, False: 4]
  ------------------
  493|      0|            PyErr_NoMemory();
  494|      0|            return NULL;
  495|      0|        }
  496|      4|    }
  497|       |
  498|       |    /* use borrowed references */
  499|    288|    stack[0] = obj;
  500|    288|    memcpy(&stack[1],
  501|    288|           _PyTuple_ITEMS(args),
  ------------------
  |  |   26|    288|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|    576|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 288, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  502|      0|           argcount * sizeof(PyObject *));
  503|       |
  504|      0|    PyObject *result = _PyObject_VectorcallDictTstate(tstate, callable,
  505|    288|                                                      stack, argcount + 1,
  506|    288|                                                      kwargs);
  507|    288|    if (stack != small_stack) {
  ------------------
  |  Branch (507:9): [True: 4, False: 284]
  ------------------
  508|      4|        PyMem_Free(stack);
  509|      4|    }
  510|    288|    return result;
  511|    288|}
PyObject_CallFunction:
  568|     40|{
  569|     40|    va_list va;
  570|     40|    PyObject *result;
  571|     40|    PyThreadState *tstate = _PyThreadState_GET();
  572|       |
  573|     40|    va_start(va, format);
  574|     40|    result = _PyObject_CallFunctionVa(tstate, callable, format, va);
  575|     40|    va_end(va);
  576|       |
  577|     40|    return result;
  578|     40|}
PyObject_CallMethod:
  631|     40|{
  632|     40|    PyThreadState *tstate = _PyThreadState_GET();
  633|       |
  634|     40|    if (obj == NULL || name == NULL) {
  ------------------
  |  Branch (634:9): [True: 0, False: 40]
  |  Branch (634:24): [True: 0, False: 40]
  ------------------
  635|      0|        return null_error(tstate);
  636|      0|    }
  637|       |
  638|     40|    PyObject *callable = PyObject_GetAttrString(obj, name);
  639|     40|    if (callable == NULL) {
  ------------------
  |  Branch (639:9): [True: 0, False: 40]
  ------------------
  640|      0|        return NULL;
  641|      0|    }
  642|       |
  643|     40|    va_list va;
  644|     40|    va_start(va, format);
  645|     40|    PyObject *retval = callmethod(tstate, callable, format, va);
  646|     40|    va_end(va);
  647|       |
  648|     40|    Py_DECREF(callable);
  ------------------
  |  |  430|     40|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  649|     40|    return retval;
  650|     40|}
_PyObject_CallMethod:
  681|     12|{
  682|     12|    PyThreadState *tstate = _PyThreadState_GET();
  683|     12|    if (obj == NULL || name == NULL) {
  ------------------
  |  Branch (683:9): [True: 0, False: 12]
  |  Branch (683:24): [True: 0, False: 12]
  ------------------
  684|      0|        return null_error(tstate);
  685|      0|    }
  686|       |
  687|     12|    PyObject *callable = PyObject_GetAttr(obj, name);
  688|     12|    if (callable == NULL) {
  ------------------
  |  Branch (688:9): [True: 0, False: 12]
  ------------------
  689|      0|        return NULL;
  690|      0|    }
  691|       |
  692|     12|    va_list va;
  693|     12|    va_start(va, format);
  694|     12|    PyObject *retval = callmethod(tstate, callable, format, va);
  695|     12|    va_end(va);
  696|       |
  697|     12|    Py_DECREF(callable);
  ------------------
  |  |  430|     12|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  698|     12|    return retval;
  699|     12|}
_PyObject_VectorcallPrepend:
  835|    138|{
  836|    138|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    138|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  837|    138|    assert(nargs == 0 || args[nargs-1]);
  ------------------
  |  Branch (837:5): [True: 0, False: 138]
  |  Branch (837:5): [True: 138, False: 0]
  ------------------
  838|       |
  839|    138|    PyObject *result;
  840|    138|    if (nargsf & PY_VECTORCALL_ARGUMENTS_OFFSET) {
  ------------------
  |  |  287|    138|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|    138|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (840:9): [True: 136, False: 2]
  ------------------
  841|       |        /* PY_VECTORCALL_ARGUMENTS_OFFSET is set, so we are allowed to mutate the vector */
  842|    136|        PyObject **newargs = (PyObject**)args - 1;
  843|    136|        nargs += 1;
  844|    136|        PyObject *tmp = newargs[0];
  845|    136|        newargs[0] = arg;
  846|    136|        assert(newargs[nargs-1]);
  ------------------
  |  Branch (846:9): [True: 136, False: 0]
  ------------------
  847|    136|        result = _PyObject_VectorcallTstate(tstate, callable, newargs,
  848|    136|                                            nargs, kwnames);
  849|    136|        newargs[0] = tmp;
  850|    136|    }
  851|      2|    else {
  852|      2|        Py_ssize_t nkwargs = (kwnames == NULL) ? 0 : PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (852:30): [True: 2, False: 0]
  ------------------
  853|      2|        Py_ssize_t totalargs = nargs + nkwargs;
  854|      2|        if (totalargs == 0) {
  ------------------
  |  Branch (854:13): [True: 0, False: 2]
  ------------------
  855|      0|            return _PyObject_VectorcallTstate(tstate, callable, &arg, 1, NULL);
  856|      0|        }
  857|       |
  858|      2|        PyObject *newargs_stack[_PY_FASTCALL_SMALL_STACK];
  859|      2|        PyObject **newargs;
  860|      2|        if (totalargs <= (Py_ssize_t)Py_ARRAY_LENGTH(newargs_stack) - 1) {
  ------------------
  |  |  196|      2|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (860:13): [True: 2, False: 0]
  ------------------
  861|      2|            newargs = newargs_stack;
  862|      2|        }
  863|      0|        else {
  864|      0|            newargs = PyMem_Malloc((totalargs+1) * sizeof(PyObject *));
  865|      0|            if (newargs == NULL) {
  ------------------
  |  Branch (865:17): [True: 0, False: 0]
  ------------------
  866|      0|                _PyErr_NoMemory(tstate);
  867|      0|                return NULL;
  868|      0|            }
  869|      0|        }
  870|       |        /* use borrowed references */
  871|      2|        newargs[0] = arg;
  872|       |        /* bpo-37138: since totalargs > 0, it's impossible that args is NULL.
  873|       |         * We need this, since calling memcpy() with a NULL pointer is
  874|       |         * undefined behaviour. */
  875|      2|        assert(args != NULL);
  ------------------
  |  Branch (875:9): [True: 2, False: 0]
  ------------------
  876|      2|        memcpy(newargs + 1, args, totalargs * sizeof(PyObject *));
  877|      2|        result = _PyObject_VectorcallTstate(tstate, callable,
  878|      2|                                            newargs, nargs+1, kwnames);
  879|      2|        if (newargs != newargs_stack) {
  ------------------
  |  Branch (879:13): [True: 0, False: 2]
  ------------------
  880|      0|            PyMem_Free(newargs);
  881|      0|        }
  882|      2|    }
  883|    138|    return result;
  884|    138|}
PyObject_VectorcallMethod:
  889|    258|{
  890|    258|    assert(name != NULL);
  ------------------
  |  Branch (890:5): [True: 258, False: 0]
  ------------------
  891|    258|    assert(args != NULL);
  ------------------
  |  Branch (891:5): [True: 258, False: 0]
  ------------------
  892|    258|    assert(PyVectorcall_NARGS(nargsf) >= 1);
  ------------------
  |  Branch (892:5): [True: 258, False: 0]
  ------------------
  893|       |
  894|    258|    PyThreadState *tstate = _PyThreadState_GET();
  895|    258|    _PyCStackRef self, method;
  896|    258|    _PyThreadState_PushCStackRef(tstate, &self);
  897|    258|    _PyThreadState_PushCStackRef(tstate, &method);
  898|       |    /* Use args[0] as "self" argument */
  899|    258|    self.ref = PyStackRef_FromPyObjectBorrow(args[0]);
  900|    258|    int unbound = _PyObject_GetMethodStackRef(tstate, &self.ref, name, &method.ref);
  901|    258|    if (unbound < 0) {
  ------------------
  |  Branch (901:9): [True: 0, False: 258]
  ------------------
  902|      0|        _PyThreadState_PopCStackRef(tstate, &method);
  903|      0|        _PyThreadState_PopCStackRef(tstate, &self);
  904|      0|        return NULL;
  905|      0|    }
  906|       |
  907|    258|    PyObject *callable = PyStackRef_AsPyObjectBorrow(method.ref);
  908|    258|    PyObject *self_obj = PyStackRef_AsPyObjectBorrow(self.ref);
  909|    258|    PyObject *result;
  910|       |
  911|    258|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_METHOD, callable);
  ------------------
  |  |   80|    258|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
  912|    258|    if (self_obj == NULL) {
  ------------------
  |  Branch (912:9): [True: 78, False: 180]
  ------------------
  913|       |        /* Skip "self". We can keep PY_VECTORCALL_ARGUMENTS_OFFSET since
  914|       |         * args[-1] in the onward call is args[0] here. */
  915|     78|        result = _PyObject_VectorcallTstate(tstate, callable,
  916|     78|                                            args + 1, nargsf - 1, kwnames);
  917|     78|    }
  918|    180|    else if (self_obj == args[0]) {
  ------------------
  |  Branch (918:14): [True: 180, False: 0]
  ------------------
  919|       |        /* We must remove PY_VECTORCALL_ARGUMENTS_OFFSET since
  920|       |         * that would be interpreted as allowing to change args[-1] */
  921|    180|        result = _PyObject_VectorcallTstate(tstate, callable, args,
  922|    180|                                            nargsf & ~PY_VECTORCALL_ARGUMENTS_OFFSET,
  ------------------
  |  |  287|    180|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|    180|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  923|    180|                                            kwnames);
  924|    180|    }
  925|      0|    else {
  926|       |        /* classmethod: self_obj is the type, not args[0]. Replace
  927|       |         * args[0] with self_obj and call the underlying callable. */
  928|      0|        result = _PyObject_VectorcallPrepend(tstate, callable, self_obj,
  929|      0|                                             args + 1, nargsf - 1, kwnames);
  930|      0|    }
  931|    258|    _PyThreadState_PopCStackRef(tstate, &method);
  932|    258|    _PyThreadState_PopCStackRef(tstate, &self);
  933|    258|    return result;
  934|    258|}
PyObject_CallMethodObjArgs:
  939|     50|{
  940|     50|    PyThreadState *tstate = _PyThreadState_GET();
  941|     50|    if (obj == NULL || name == NULL) {
  ------------------
  |  Branch (941:9): [True: 0, False: 50]
  |  Branch (941:24): [True: 0, False: 50]
  ------------------
  942|      0|        return null_error(tstate);
  943|      0|    }
  944|       |
  945|     50|    _PyCStackRef self, method;
  946|     50|    _PyThreadState_PushCStackRef(tstate, &self);
  947|     50|    _PyThreadState_PushCStackRef(tstate, &method);
  948|     50|    self.ref = PyStackRef_FromPyObjectBorrow(obj);
  949|     50|    int res = _PyObject_GetMethodStackRef(tstate, &self.ref, name, &method.ref);
  950|     50|    if (res < 0) {
  ------------------
  |  Branch (950:9): [True: 0, False: 50]
  ------------------
  951|      0|        _PyThreadState_PopCStackRef(tstate, &method);
  952|      0|        _PyThreadState_PopCStackRef(tstate, &self);
  953|      0|        return NULL;
  954|      0|    }
  955|     50|    PyObject *callable = PyStackRef_AsPyObjectBorrow(method.ref);
  956|     50|    PyObject *self_obj = PyStackRef_AsPyObjectBorrow(self.ref);
  957|       |
  958|     50|    va_list vargs;
  959|     50|    va_start(vargs, name);
  960|     50|    PyObject *result = object_vacall(tstate, self_obj, callable, vargs);
  961|     50|    va_end(vargs);
  962|       |
  963|     50|    _PyThreadState_PopCStackRef(tstate, &method);
  964|     50|    _PyThreadState_PopCStackRef(tstate, &self);
  965|     50|    return result;
  966|     50|}
PyObject_CallFunctionObjArgs:
  971|     10|{
  972|     10|    PyThreadState *tstate = _PyThreadState_GET();
  973|     10|    va_list vargs;
  974|     10|    PyObject *result;
  975|       |
  976|     10|    va_start(vargs, callable);
  977|     10|    result = object_vacall(tstate, NULL, callable, vargs);
  978|     10|    va_end(vargs);
  979|       |
  980|     10|    return result;
  981|     10|}
_PyStack_AsDict:
  988|    124|{
  989|    124|    Py_ssize_t nkwargs;
  990|       |
  991|    124|    assert(kwnames != NULL);
  ------------------
  |  Branch (991:5): [True: 124, False: 0]
  ------------------
  992|    124|    nkwargs = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|    124|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  993|    124|    return _PyDict_FromItems(&PyTuple_GET_ITEM(kwnames, 0), 1,
  ------------------
  |  |   29|    124|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    124|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (993:31): [True: 124, False: 0]
  ------------------
  994|    124|                             values, 1, nkwargs);
  995|    124|}
_PyStack_UnpackDict:
 1018|     60|{
 1019|     60|    assert(nargs >= 0);
  ------------------
  |  Branch (1019:5): [True: 60, False: 0]
  ------------------
 1020|     60|    assert(kwargs != NULL);
  ------------------
  |  Branch (1020:5): [True: 60, False: 0]
  ------------------
 1021|     60|    assert(PyDict_Check(kwargs));
  ------------------
  |  Branch (1021:5): [True: 60, False: 0]
  ------------------
 1022|       |
 1023|     60|    Py_ssize_t nkwargs = PyDict_GET_SIZE(kwargs);
  ------------------
  |  |   63|     60|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1024|       |    /* Check for overflow in the PyMem_Malloc() call below. The subtraction
 1025|       |     * in this check cannot overflow: both maxnargs and nkwargs are
 1026|       |     * non-negative signed integers, so their difference fits in the type. */
 1027|     60|    Py_ssize_t maxnargs = PY_SSIZE_T_MAX / sizeof(args[0]) - 1;
  ------------------
  |  |  137|     60|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
 1028|     60|    if (nargs > maxnargs - nkwargs) {
  ------------------
  |  Branch (1028:9): [True: 0, False: 60]
  ------------------
 1029|      0|        _PyErr_NoMemory(tstate);
 1030|      0|        return NULL;
 1031|      0|    }
 1032|       |
 1033|       |    /* Add 1 to support PY_VECTORCALL_ARGUMENTS_OFFSET */
 1034|     60|    PyObject **stack = PyMem_Malloc((1 + nargs + nkwargs) * sizeof(args[0]));
 1035|     60|    if (stack == NULL) {
  ------------------
  |  Branch (1035:9): [True: 0, False: 60]
  ------------------
 1036|      0|        _PyErr_NoMemory(tstate);
 1037|      0|        return NULL;
 1038|      0|    }
 1039|       |
 1040|     60|    PyObject *kwnames = PyTuple_New(nkwargs);
 1041|     60|    if (kwnames == NULL) {
  ------------------
  |  Branch (1041:9): [True: 0, False: 60]
  ------------------
 1042|      0|        PyMem_Free(stack);
 1043|      0|        return NULL;
 1044|      0|    }
 1045|       |
 1046|     60|    stack++;  /* For PY_VECTORCALL_ARGUMENTS_OFFSET */
 1047|       |
 1048|       |    /* Copy positional arguments (borrowed references) */
 1049|    236|    for (Py_ssize_t i = 0; i < nargs; i++) {
  ------------------
  |  Branch (1049:28): [True: 176, False: 60]
  ------------------
 1050|    176|        stack[i] = args[i];
 1051|    176|    }
 1052|       |
 1053|     60|    PyObject **kwstack = stack + nargs;
 1054|       |    /* This loop doesn't support lookup function mutating the dictionary
 1055|       |       to change its size. It's a deliberate choice for speed, this function is
 1056|       |       called in the performance critical hot code. */
 1057|     60|    Py_ssize_t pos = 0, i = 0;
 1058|     60|    PyObject *key, *value;
 1059|     60|    unsigned long keys_are_strings = Py_TPFLAGS_UNICODE_SUBCLASS;
  ------------------
  |  |  555|     60|#define Py_TPFLAGS_UNICODE_SUBCLASS     (1UL << 28)
  ------------------
 1060|    182|    while (PyDict_Next(kwargs, &pos, &key, &value)) {
  ------------------
  |  Branch (1060:12): [True: 122, False: 60]
  ------------------
 1061|    122|        keys_are_strings &= Py_TYPE(key)->tp_flags;
  ------------------
  |  |  213|    122|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1062|    122|        PyTuple_SET_ITEM(kwnames, i, Py_NewRef(key));
  ------------------
  |  |   40|    122|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1063|    122|        kwstack[i] = Py_NewRef(value);
  ------------------
  |  |  550|    122|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1064|    122|        i++;
 1065|    122|    }
 1066|       |
 1067|       |    /* keys_are_strings has the value Py_TPFLAGS_UNICODE_SUBCLASS if that
 1068|       |     * flag is set for all keys. Otherwise, keys_are_strings equals 0.
 1069|       |     * We do this check once at the end instead of inside the loop above
 1070|       |     * because it simplifies the deallocation in the failing case.
 1071|       |     * It happens to also make the loop above slightly more efficient. */
 1072|     60|    if (!keys_are_strings) {
  ------------------
  |  Branch (1072:9): [True: 0, False: 60]
  ------------------
 1073|      0|        _PyErr_SetString(tstate, PyExc_TypeError,
 1074|      0|                         "keywords must be strings");
 1075|      0|        _PyStack_UnpackDict_Free(stack, nargs, kwnames);
 1076|      0|        return NULL;
 1077|      0|    }
 1078|       |
 1079|     60|    *p_kwnames = kwnames;
 1080|     60|    return stack;
 1081|     60|}
_PyStack_UnpackDict_Free:
 1086|     60|{
 1087|       |    /* Only decref kwargs values, positional args are borrowed */
 1088|     60|    Py_ssize_t nkwargs = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|     60|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1089|    182|    for (Py_ssize_t i = 0; i < nkwargs; i++) {
  ------------------
  |  Branch (1089:28): [True: 122, False: 60]
  ------------------
 1090|    122|        Py_DECREF(stack[nargs + i]);
  ------------------
  |  |  430|    122|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1091|    122|    }
 1092|     60|    _PyStack_UnpackDict_FreeNoDecRef(stack, kwnames);
 1093|     60|}
_PyStack_UnpackDict_FreeNoDecRef:
 1097|     60|{
 1098|     60|    PyMem_Free((PyObject **)stack - 1);
 1099|     60|    Py_DECREF(kwnames);
  ------------------
  |  |  430|     60|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1100|     60|}
call.c:_PyVectorcall_Call:
  266|    168|{
  267|    168|    assert(func != NULL);
  ------------------
  |  Branch (267:5): [True: 168, False: 0]
  ------------------
  268|       |
  269|    168|    Py_ssize_t nargs = PyTuple_GET_SIZE(tuple);
  ------------------
  |  |   27|    168|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  270|       |
  271|       |    /* Fast path for no keywords */
  272|    168|    if (kwargs == NULL || PyDict_GET_SIZE(kwargs) == 0) {
  ------------------
  |  |   63|    166|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (272:9): [True: 2, False: 166]
  |  Branch (272:27): [True: 166, False: 0]
  ------------------
  273|    168|        return func(callable, _PyTuple_ITEMS(tuple), nargs, NULL);
  ------------------
  |  |   26|    168|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|    336|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 168, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  274|    168|    }
  275|       |
  276|       |    /* Convert arguments & call */
  277|      0|    PyObject *const *args;
  278|      0|    PyObject *kwnames;
  279|      0|    args = _PyStack_UnpackDict(tstate,
  280|      0|                               _PyTuple_ITEMS(tuple), nargs,
  ------------------
  |  |   26|      0|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  281|      0|                               kwargs, &kwnames);
  282|      0|    if (args == NULL) {
  ------------------
  |  Branch (282:9): [True: 0, False: 0]
  ------------------
  283|      0|        return NULL;
  284|      0|    }
  285|      0|    PyObject *result = func(callable, args,
  286|      0|                            nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames);
  ------------------
  |  |  287|      0|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  287|      0|    _PyStack_UnpackDict_Free(args, nargs, kwnames);
  288|       |
  289|       |    return _Py_CheckFunctionResult(tstate, callable, result, NULL);
  290|      0|}
call.c:_PyObject_CallFunctionVa:
  519|     92|{
  520|     92|    PyObject* small_stack[_PY_FASTCALL_SMALL_STACK];
  521|     92|    const Py_ssize_t small_stack_len = Py_ARRAY_LENGTH(small_stack);
  ------------------
  |  |  196|     92|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  522|     92|    PyObject **stack;
  523|     92|    Py_ssize_t nargs, i;
  524|     92|    PyObject *result;
  525|       |
  526|     92|    if (callable == NULL) {
  ------------------
  |  Branch (526:9): [True: 0, False: 92]
  ------------------
  527|      0|        return null_error(tstate);
  528|      0|    }
  529|       |
  530|     92|    if (!format || !*format) {
  ------------------
  |  Branch (530:9): [True: 36, False: 56]
  |  Branch (530:20): [True: 2, False: 54]
  ------------------
  531|     38|        return _PyObject_CallNoArgsTstate(tstate, callable);
  532|     38|    }
  533|       |
  534|     54|    stack = _Py_VaBuildStack(small_stack, small_stack_len,
  535|     54|                             format, va, &nargs);
  536|     54|    if (stack == NULL) {
  ------------------
  |  Branch (536:9): [True: 0, False: 54]
  ------------------
  537|      0|        return NULL;
  538|      0|    }
  539|     54|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_API, callable);
  ------------------
  |  |   80|     54|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
  540|     54|    if (nargs == 1 && PyTuple_Check(stack[0])) {
  ------------------
  |  |   27|      8|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (540:9): [True: 8, False: 46]
  ------------------
  541|       |        /* Special cases for backward compatibility:
  542|       |           - PyObject_CallFunction(func, "O", tuple) calls func(*tuple)
  543|       |           - PyObject_CallFunction(func, "(OOO)", arg1, arg2, arg3) calls
  544|       |             func(*(arg1, arg2, arg3)): func(arg1, arg2, arg3) */
  545|      2|        PyObject *args = stack[0];
  546|      2|        result = _PyObject_VectorcallTstate(tstate, callable,
  547|      2|                                            _PyTuple_ITEMS(args),
  ------------------
  |  |   26|      2|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|      4|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  548|      2|                                            PyTuple_GET_SIZE(args),
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  549|      2|                                            NULL);
  550|      2|    }
  551|     52|    else {
  552|     52|        result = _PyObject_VectorcallTstate(tstate, callable,
  553|     52|                                            stack, nargs, NULL);
  554|     52|    }
  555|       |
  556|    268|    for (i = 0; i < nargs; ++i) {
  ------------------
  |  Branch (556:17): [True: 214, False: 54]
  ------------------
  557|    214|        Py_DECREF(stack[i]);
  ------------------
  |  |  430|    214|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    214|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    214|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  558|    214|    }
  559|     54|    if (stack != small_stack) {
  ------------------
  |  Branch (559:9): [True: 12, False: 42]
  ------------------
  560|     12|        PyMem_Free(stack);
  561|     12|    }
  562|     54|    return result;
  563|     54|}
call.c:callmethod:
  617|     52|{
  618|     52|    assert(callable != NULL);
  ------------------
  |  Branch (618:5): [True: 52, False: 0]
  ------------------
  619|     52|    if (!PyCallable_Check(callable)) {
  ------------------
  |  Branch (619:9): [True: 0, False: 52]
  ------------------
  620|      0|        _PyErr_Format(tstate, PyExc_TypeError,
  621|      0|                      "attribute of type '%.200s' is not callable",
  622|      0|                      Py_TYPE(callable)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  623|      0|        return NULL;
  624|      0|    }
  625|       |
  626|     52|    return _PyObject_CallFunctionVa(tstate, callable, format, va);
  627|     52|}
call.c:object_vacall:
  772|     60|{
  773|     60|    PyObject *small_stack[_PY_FASTCALL_SMALL_STACK];
  774|     60|    PyObject **stack;
  775|     60|    Py_ssize_t nargs;
  776|     60|    PyObject *result;
  777|     60|    Py_ssize_t i;
  778|     60|    va_list countva;
  779|       |
  780|     60|    if (callable == NULL) {
  ------------------
  |  Branch (780:9): [True: 0, False: 60]
  ------------------
  781|      0|        return null_error(tstate);
  782|      0|    }
  783|       |
  784|       |    /* Count the number of arguments */
  785|     60|    va_copy(countva, vargs);
  786|     60|    nargs = base ? 1 : 0;
  ------------------
  |  Branch (786:13): [True: 0, False: 60]
  ------------------
  787|    190|    while (1) {
  ------------------
  |  Branch (787:12): [True: 190, Folded]
  ------------------
  788|    190|        PyObject *arg = va_arg(countva, PyObject *);
  789|    190|        if (arg == NULL) {
  ------------------
  |  Branch (789:13): [True: 60, False: 130]
  ------------------
  790|     60|            break;
  791|     60|        }
  792|    130|        nargs++;
  793|    130|    }
  794|     60|    va_end(countva);
  795|       |
  796|       |    /* Copy arguments */
  797|     60|    if (nargs <= (Py_ssize_t)Py_ARRAY_LENGTH(small_stack)) {
  ------------------
  |  |  196|     60|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (797:9): [True: 60, False: 0]
  ------------------
  798|     60|        stack = small_stack;
  799|     60|    }
  800|      0|    else {
  801|      0|        stack = PyMem_Malloc(nargs * sizeof(stack[0]));
  802|      0|        if (stack == NULL) {
  ------------------
  |  Branch (802:13): [True: 0, False: 0]
  ------------------
  803|      0|            PyErr_NoMemory();
  804|      0|            return NULL;
  805|      0|        }
  806|      0|    }
  807|       |
  808|     60|    i = 0;
  809|     60|    if (base) {
  ------------------
  |  Branch (809:9): [True: 0, False: 60]
  ------------------
  810|      0|        stack[i++] = base;
  811|      0|    }
  812|       |
  813|    190|    for (; i < nargs; ++i) {
  ------------------
  |  Branch (813:12): [True: 130, False: 60]
  ------------------
  814|    130|        stack[i] = va_arg(vargs, PyObject *);
  815|    130|    }
  816|       |
  817|       |#ifdef Py_STATS
  818|       |    if (PyFunction_Check(callable)) {
  819|       |        EVAL_CALL_STAT_INC(EVAL_CALL_API);
  820|       |    }
  821|       |#endif
  822|       |    /* Call the function */
  823|     60|    result = _PyObject_VectorcallTstate(tstate, callable, stack, nargs, NULL);
  824|       |
  825|     60|    if (stack != small_stack) {
  ------------------
  |  Branch (825:9): [True: 0, False: 60]
  ------------------
  826|      0|        PyMem_Free(stack);
  827|      0|    }
  828|     60|    return result;
  829|     60|}

PyCell_New:
   12|    210|{
   13|    210|    PyCellObject *op;
   14|       |
   15|    210|    op = (PyCellObject *)PyObject_GC_New(PyCellObject, &PyCell_Type);
  ------------------
  |  |  181|    210|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   16|    210|    if (op == NULL)
  ------------------
  |  Branch (16:9): [True: 0, False: 210]
  ------------------
   17|      0|        return NULL;
   18|    210|    op->ob_ref = Py_XNewRef(obj);
  ------------------
  |  |  551|    210|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    210|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   19|       |
   20|    210|    _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|    210|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    210|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   21|    210|    return (PyObject *)op;
   22|    210|}
PyCell_Set:
   67|    160|{
   68|    160|    if (!PyCell_Check(op)) {
  ------------------
  |  |   18|    160|#define PyCell_Check(op) Py_IS_TYPE((op), &PyCell_Type)
  |  |  ------------------
  |  |  |  |  215|    160|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    160|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    160|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (68:9): [True: 0, False: 160]
  ------------------
   69|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
   70|      0|        return -1;
   71|      0|    }
   72|    160|    PyCell_SetTakeRef((PyCellObject *)op, Py_XNewRef(value));
  ------------------
  |  |  551|    160|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    160|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    160|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   73|    160|    return 0;
   74|    160|}
cellobject.c:cell_dealloc:
   78|    166|{
   79|    166|    PyCellObject *op = _PyCell_CAST(self);
  ------------------
  |  |    8|    166|#define _PyCell_CAST(op) _Py_CAST(PyCellObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   80|    166|    _PyObject_GC_UNTRACK(op);
  ------------------
  |  |  515|    166|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   81|    166|    Py_XDECREF(op->ob_ref);
  ------------------
  |  |  524|    166|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|    166|    PyObject_GC_Del(op);
   83|    166|}
cellobject.c:cell_traverse:
  132|     52|{
  133|     52|    PyCellObject *op = _PyCell_CAST(self);
  ------------------
  |  |    8|     52|#define _PyCell_CAST(op) _Py_CAST(PyCellObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  134|     52|    Py_VISIT(op->ob_ref);
  ------------------
  |  |  194|     52|    do {                                                                \
  |  |  195|     52|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 52, False: 0]
  |  |  ------------------
  |  |  196|     52|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     52|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 52]
  |  |  ------------------
  |  |  198|     52|                return vret;                                            \
  |  |  199|     52|        }                                                               \
  |  |  200|     52|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 52]
  |  |  ------------------
  ------------------
  135|     52|    return 0;
  136|     52|}

PyMethod_New:
   66|    392|{
   67|    392|    if (self == NULL) {
  ------------------
  |  Branch (67:9): [True: 0, False: 392]
  ------------------
   68|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
   69|      0|        return NULL;
   70|      0|    }
   71|    392|    PyMethodObject *im = _Py_FREELIST_POP(PyMethodObject, pymethodobjects);
  ------------------
  |  |   43|    392|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   72|    392|    if (im == NULL) {
  ------------------
  |  Branch (72:9): [True: 4, False: 388]
  ------------------
   73|      4|        im = PyObject_GC_New(PyMethodObject, &PyMethod_Type);
  ------------------
  |  |  181|      4|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   74|      4|        if (im == NULL) {
  ------------------
  |  Branch (74:13): [True: 0, False: 4]
  ------------------
   75|      0|            return NULL;
   76|      0|        }
   77|      4|    }
   78|    392|    im->im_weakreflist = NULL;
   79|    392|    im->im_func = Py_NewRef(func);
  ------------------
  |  |  550|    392|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   80|    392|    im->im_self = Py_NewRef(self);
  ------------------
  |  |  550|    392|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   81|    392|    im->vectorcall = method_vectorcall;
   82|    392|    _PyObject_GC_TRACK(im);
  ------------------
  |  |  513|    392|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   83|    392|    return (PyObject *)im;
   84|    392|}
classobject.c:method_vectorcall:
   49|    138|{
   50|    138|    assert(Py_IS_TYPE(method, &PyMethod_Type));
  ------------------
  |  Branch (50:5): [True: 138, False: 0]
  ------------------
   51|       |
   52|    138|    PyThreadState *tstate = _PyThreadState_GET();
   53|    138|    PyObject *self = PyMethod_GET_SELF(method);
  ------------------
  |  |   42|    138|#define PyMethod_GET_SELF(meth) PyMethod_GET_SELF(_PyObject_CAST(meth))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   54|    138|    PyObject *func = PyMethod_GET_FUNCTION(method);
  ------------------
  |  |   37|    138|#define PyMethod_GET_FUNCTION(meth) PyMethod_GET_FUNCTION(_PyObject_CAST(meth))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   55|    138|    return _PyObject_VectorcallPrepend(tstate, func, self, args, nargsf, kwnames);
   56|    138|}
classobject.c:method_dealloc:
  214|    392|{
  215|    392|    PyMethodObject *im = _PyMethodObject_CAST(self);
  ------------------
  |  |   16|    392|#define _PyMethodObject_CAST(op) _Py_CAST(PyMethodObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  216|    392|    _PyObject_GC_UNTRACK(im);
  ------------------
  |  |  515|    392|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  217|    392|    FT_CLEAR_WEAKREFS(self, im->im_weakreflist);
  ------------------
  |  |   47|    392|    do {                                            \
  |  |   48|    392|        assert(Py_REFCNT(obj) == 0);                \
  |  |   49|    392|        if (weakref_list != NULL) {                 \
  |  |  ------------------
  |  |  |  Branch (49:13): [True: 0, False: 392]
  |  |  ------------------
  |  |   50|      0|            PyObject_ClearWeakRefs(obj);            \
  |  |   51|      0|        }                                           \
  |  |   52|    392|    } while (0)
  |  |  ------------------
  |  |  |  Branch (52:14): [Folded, False: 392]
  |  |  ------------------
  ------------------
  |  Branch (217:5): [True: 392, False: 0]
  ------------------
  218|    392|    Py_DECREF(im->im_func);
  ------------------
  |  |  430|    392|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  219|    392|    Py_XDECREF(im->im_self);
  ------------------
  |  |  524|    392|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  220|    392|    assert(Py_IS_TYPE(self, &PyMethod_Type));
  ------------------
  |  Branch (220:5): [True: 392, False: 0]
  ------------------
  221|    392|    _Py_FREELIST_FREE(pymethodobjects, (PyObject *)im, PyObject_GC_Del);
  ------------------
  |  |   35|    392|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|    392|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    392|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|    392|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   33|    392|#  define Py_pymethodobjects_MAXFREELIST 20
  |  |  ------------------
  ------------------
  222|    392|}

bytearrayobject.c:bytearray___init__:
   19|      2|{
   20|      2|    int return_value = -1;
   21|      2|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
   22|       |
   23|      2|    #define NUM_KEYWORDS 3
   24|      2|    static struct {
   25|      2|        PyGC_Head _this_is_not_used;
   26|      2|        PyObject_VAR_HEAD
   27|      2|        Py_hash_t ob_hash;
   28|      2|        PyObject *ob_item[NUM_KEYWORDS];
   29|      2|    } _kwtuple = {
   30|      2|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      2|    {                                     \
  |  |   98|      2|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      2|    {                               \
  |  |  |  |   91|      2|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      2|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      2|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      2|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      2|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      2|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      2|        (type)                      \
  |  |  |  |   93|      2|    },
  |  |  ------------------
  |  |   99|      2|        (size)                            \
  |  |  100|      2|    },
  ------------------
   31|      2|        .ob_hash = -1,
   32|      2|        .ob_item = { &_Py_ID(source), &_Py_ID(encoding), &_Py_ID(errors), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(source), &_Py_ID(encoding), &_Py_ID(errors), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(source), &_Py_ID(encoding), &_Py_ID(errors), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   33|      2|    };
   34|      2|    #undef NUM_KEYWORDS
   35|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
   36|       |
   37|       |    #else  // !Py_BUILD_CORE
   38|       |    #  define KWTUPLE NULL
   39|       |    #endif  // !Py_BUILD_CORE
   40|       |
   41|      2|    static const char * const _keywords[] = {"source", "encoding", "errors", NULL};
   42|      2|    static _PyArg_Parser _parser = {
   43|      2|        .keywords = _keywords,
   44|      2|        .fname = "bytearray",
   45|      2|        .kwtuple = KWTUPLE,
  ------------------
  |  |   35|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
   46|      2|    };
   47|      2|    #undef KWTUPLE
   48|      2|    PyObject *argsbuf[3];
   49|      2|    PyObject * const *fastargs;
   50|      2|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   51|      2|    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (51:36): [True: 0, False: 2]
  ------------------
   52|      2|    PyObject *arg = NULL;
   53|      2|    const char *encoding = NULL;
   54|      2|    const char *errors = NULL;
   55|       |
   56|      2|    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
  ------------------
  |  |   88|      2|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 2, Folded]
  |  |  |  Branch (88:23): [True: 2, False: 0]
  |  |  |  Branch (88:43): [True: 0, Folded]
  |  |  ------------------
  |  |   89|      4|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 2, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 2]
  |  |  |  Branch (89:43): [True: 2, False: 0]
  |  |  |  Branch (89:67): [True: 2, False: 0]
  |  |  |  Branch (89:68): [True: 2, False: 0]
  |  |  ------------------
  |  |   90|      4|      (args) : \
  |  |  ------------------
  |  |  |  Branch (90:8): [True: 2, False: 0]
  |  |  ------------------
  |  |   91|      2|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |  ------------------
  |  |  |  Branch (91:29): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
   57|      2|            /*minpos*/ 0, /*maxpos*/ 3, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
   58|      2|    if (!fastargs) {
  ------------------
  |  Branch (58:9): [True: 0, False: 2]
  ------------------
   59|      0|        goto exit;
   60|      0|    }
   61|      2|    if (!noptargs) {
  ------------------
  |  Branch (61:9): [True: 2, False: 0]
  ------------------
   62|      2|        goto skip_optional_pos;
   63|      2|    }
   64|      0|    if (fastargs[0]) {
  ------------------
  |  Branch (64:9): [True: 0, False: 0]
  ------------------
   65|      0|        arg = fastargs[0];
   66|      0|        if (!--noptargs) {
  ------------------
  |  Branch (66:13): [True: 0, False: 0]
  ------------------
   67|      0|            goto skip_optional_pos;
   68|      0|        }
   69|      0|    }
   70|      0|    if (fastargs[1]) {
  ------------------
  |  Branch (70:9): [True: 0, False: 0]
  ------------------
   71|      0|        if (!PyUnicode_Check(fastargs[1])) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (71:13): [True: 0, False: 0]
  ------------------
   72|      0|            _PyArg_BadArgument("bytearray", "argument 'encoding'", "str", fastargs[1]);
   73|      0|            goto exit;
   74|      0|        }
   75|      0|        Py_ssize_t encoding_length;
   76|      0|        encoding = PyUnicode_AsUTF8AndSize(fastargs[1], &encoding_length);
   77|      0|        if (encoding == NULL) {
  ------------------
  |  Branch (77:13): [True: 0, False: 0]
  ------------------
   78|      0|            goto exit;
   79|      0|        }
   80|      0|        if (strlen(encoding) != (size_t)encoding_length) {
  ------------------
  |  Branch (80:13): [True: 0, False: 0]
  ------------------
   81|      0|            PyErr_SetString(PyExc_ValueError, "embedded null character");
   82|      0|            goto exit;
   83|      0|        }
   84|      0|        if (!--noptargs) {
  ------------------
  |  Branch (84:13): [True: 0, False: 0]
  ------------------
   85|      0|            goto skip_optional_pos;
   86|      0|        }
   87|      0|    }
   88|      0|    if (!PyUnicode_Check(fastargs[2])) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (88:9): [True: 0, False: 0]
  ------------------
   89|      0|        _PyArg_BadArgument("bytearray", "argument 'errors'", "str", fastargs[2]);
   90|      0|        goto exit;
   91|      0|    }
   92|      0|    Py_ssize_t errors_length;
   93|      0|    errors = PyUnicode_AsUTF8AndSize(fastargs[2], &errors_length);
   94|      0|    if (errors == NULL) {
  ------------------
  |  Branch (94:9): [True: 0, False: 0]
  ------------------
   95|      0|        goto exit;
   96|      0|    }
   97|      0|    if (strlen(errors) != (size_t)errors_length) {
  ------------------
  |  Branch (97:9): [True: 0, False: 0]
  ------------------
   98|      0|        PyErr_SetString(PyExc_ValueError, "embedded null character");
   99|      0|        goto exit;
  100|      0|    }
  101|      2|skip_optional_pos:
  102|      2|    return_value = bytearray___init___impl((PyByteArrayObject *)self, arg, encoding, errors);
  103|       |
  104|      2|exit:
  105|      2|    return return_value;
  106|      2|}

bytesobject.c:bytes_decode:
 1087|      4|{
 1088|      4|    PyObject *return_value = NULL;
 1089|      4|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 1090|       |
 1091|      4|    #define NUM_KEYWORDS 2
 1092|      4|    static struct {
 1093|      4|        PyGC_Head _this_is_not_used;
 1094|      4|        PyObject_VAR_HEAD
 1095|      4|        Py_hash_t ob_hash;
 1096|      4|        PyObject *ob_item[NUM_KEYWORDS];
 1097|      4|    } _kwtuple = {
 1098|      4|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      4|    {                                     \
  |  |   98|      4|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      4|    {                               \
  |  |  |  |   91|      4|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      4|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      4|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      4|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      4|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      4|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      4|        (type)                      \
  |  |  |  |   93|      4|    },
  |  |  ------------------
  |  |   99|      4|        (size)                            \
  |  |  100|      4|    },
  ------------------
 1099|      4|        .ob_hash = -1,
 1100|      4|        .ob_item = { &_Py_ID(encoding), &_Py_ID(errors), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(encoding), &_Py_ID(errors), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1101|      4|    };
 1102|      4|    #undef NUM_KEYWORDS
 1103|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
 1104|       |
 1105|       |    #else  // !Py_BUILD_CORE
 1106|       |    #  define KWTUPLE NULL
 1107|       |    #endif  // !Py_BUILD_CORE
 1108|       |
 1109|      4|    static const char * const _keywords[] = {"encoding", "errors", NULL};
 1110|      4|    static _PyArg_Parser _parser = {
 1111|      4|        .keywords = _keywords,
 1112|      4|        .fname = "decode",
 1113|      4|        .kwtuple = KWTUPLE,
  ------------------
  |  | 1103|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
 1114|      4|    };
 1115|      4|    #undef KWTUPLE
 1116|      4|    PyObject *argsbuf[2];
 1117|      4|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1117:36): [True: 0, False: 4]
  ------------------
 1118|      4|    const char *encoding = NULL;
 1119|      4|    const char *errors = NULL;
 1120|       |
 1121|      4|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      4|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 4, False: 0]
  |  |  ------------------
  |  |   89|      4|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 4, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 4]
  |  |  |  Branch (89:43): [True: 4, False: 0]
  |  |  |  Branch (89:67): [True: 4, False: 0]
  |  |  ------------------
  |  |   90|      4|      (args) : \
  |  |   91|      4|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
 1122|      4|            /*minpos*/ 0, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
 1123|      4|    if (!args) {
  ------------------
  |  Branch (1123:9): [True: 0, False: 4]
  ------------------
 1124|      0|        goto exit;
 1125|      0|    }
 1126|      4|    if (!noptargs) {
  ------------------
  |  Branch (1126:9): [True: 0, False: 4]
  ------------------
 1127|      0|        goto skip_optional_pos;
 1128|      0|    }
 1129|      4|    if (args[0]) {
  ------------------
  |  Branch (1129:9): [True: 4, False: 0]
  ------------------
 1130|      4|        if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|      4|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1130:13): [True: 0, False: 4]
  ------------------
 1131|      0|            _PyArg_BadArgument("decode", "argument 'encoding'", "str", args[0]);
 1132|      0|            goto exit;
 1133|      0|        }
 1134|      4|        Py_ssize_t encoding_length;
 1135|      4|        encoding = PyUnicode_AsUTF8AndSize(args[0], &encoding_length);
 1136|      4|        if (encoding == NULL) {
  ------------------
  |  Branch (1136:13): [True: 0, False: 4]
  ------------------
 1137|      0|            goto exit;
 1138|      0|        }
 1139|      4|        if (strlen(encoding) != (size_t)encoding_length) {
  ------------------
  |  Branch (1139:13): [True: 0, False: 4]
  ------------------
 1140|      0|            PyErr_SetString(PyExc_ValueError, "embedded null character");
 1141|      0|            goto exit;
 1142|      0|        }
 1143|      4|        if (!--noptargs) {
  ------------------
  |  Branch (1143:13): [True: 0, False: 4]
  ------------------
 1144|      0|            goto skip_optional_pos;
 1145|      0|        }
 1146|      4|    }
 1147|      4|    if (!PyUnicode_Check(args[1])) {
  ------------------
  |  |  103|      4|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1147:9): [True: 0, False: 4]
  ------------------
 1148|      0|        _PyArg_BadArgument("decode", "argument 'errors'", "str", args[1]);
 1149|      0|        goto exit;
 1150|      0|    }
 1151|      4|    Py_ssize_t errors_length;
 1152|      4|    errors = PyUnicode_AsUTF8AndSize(args[1], &errors_length);
 1153|      4|    if (errors == NULL) {
  ------------------
  |  Branch (1153:9): [True: 0, False: 4]
  ------------------
 1154|      0|        goto exit;
 1155|      0|    }
 1156|      4|    if (strlen(errors) != (size_t)errors_length) {
  ------------------
  |  Branch (1156:9): [True: 0, False: 4]
  ------------------
 1157|      0|        PyErr_SetString(PyExc_ValueError, "embedded null character");
 1158|      0|        goto exit;
 1159|      0|    }
 1160|      4|skip_optional_pos:
 1161|      4|    return_value = bytes_decode_impl((PyBytesObject *)self, encoding, errors);
 1162|       |
 1163|      4|exit:
 1164|      4|    return return_value;
 1165|      4|}

descrobject.c:property_init:
  111|     10|{
  112|     10|    int return_value = -1;
  113|     10|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  114|       |
  115|     10|    #define NUM_KEYWORDS 4
  116|     10|    static struct {
  117|     10|        PyGC_Head _this_is_not_used;
  118|     10|        PyObject_VAR_HEAD
  119|     10|        Py_hash_t ob_hash;
  120|     10|        PyObject *ob_item[NUM_KEYWORDS];
  121|     10|    } _kwtuple = {
  122|     10|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     10|    {                                     \
  |  |   98|     10|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     10|    {                               \
  |  |  |  |   91|     10|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     10|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     10|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     10|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     10|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     10|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     10|        (type)                      \
  |  |  |  |   93|     10|    },
  |  |  ------------------
  |  |   99|     10|        (size)                            \
  |  |  100|     10|    },
  ------------------
  123|     10|        .ob_hash = -1,
  124|     10|        .ob_item = { &_Py_ID(fget), &_Py_ID(fset), &_Py_ID(fdel), &_Py_ID(doc), },
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(fget), &_Py_ID(fset), &_Py_ID(fdel), &_Py_ID(doc), },
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(fget), &_Py_ID(fset), &_Py_ID(fdel), &_Py_ID(doc), },
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(fget), &_Py_ID(fset), &_Py_ID(fdel), &_Py_ID(doc), },
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  125|     10|    };
  126|     10|    #undef NUM_KEYWORDS
  127|     10|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  128|       |
  129|       |    #else  // !Py_BUILD_CORE
  130|       |    #  define KWTUPLE NULL
  131|       |    #endif  // !Py_BUILD_CORE
  132|       |
  133|     10|    static const char * const _keywords[] = {"fget", "fset", "fdel", "doc", NULL};
  134|     10|    static _PyArg_Parser _parser = {
  135|     10|        .keywords = _keywords,
  136|     10|        .fname = "property",
  137|     10|        .kwtuple = KWTUPLE,
  ------------------
  |  |  127|     10|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  138|     10|    };
  139|     10|    #undef KWTUPLE
  140|     10|    PyObject *argsbuf[4];
  141|     10|    PyObject * const *fastargs;
  142|     10|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|     10|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  143|     10|    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (143:36): [True: 0, False: 10]
  ------------------
  144|     10|    PyObject *fget = NULL;
  145|     10|    PyObject *fset = NULL;
  146|     10|    PyObject *fdel = NULL;
  147|     10|    PyObject *doc = NULL;
  148|       |
  149|     10|    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
  ------------------
  |  |   88|     10|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 10, Folded]
  |  |  |  Branch (88:23): [True: 10, False: 0]
  |  |  |  Branch (88:43): [True: 0, Folded]
  |  |  ------------------
  |  |   89|     20|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 10, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 10]
  |  |  |  Branch (89:43): [True: 10, False: 0]
  |  |  |  Branch (89:67): [True: 10, False: 0]
  |  |  |  Branch (89:68): [True: 10, False: 0]
  |  |  ------------------
  |  |   90|     20|      (args) : \
  |  |  ------------------
  |  |  |  Branch (90:8): [True: 10, False: 0]
  |  |  ------------------
  |  |   91|     10|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |  ------------------
  |  |  |  Branch (91:29): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  150|     10|            /*minpos*/ 0, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  151|     10|    if (!fastargs) {
  ------------------
  |  Branch (151:9): [True: 0, False: 10]
  ------------------
  152|      0|        goto exit;
  153|      0|    }
  154|     10|    if (!noptargs) {
  ------------------
  |  Branch (154:9): [True: 0, False: 10]
  ------------------
  155|      0|        goto skip_optional_pos;
  156|      0|    }
  157|     10|    if (fastargs[0]) {
  ------------------
  |  Branch (157:9): [True: 10, False: 0]
  ------------------
  158|     10|        fget = fastargs[0];
  159|     10|        if (!--noptargs) {
  ------------------
  |  Branch (159:13): [True: 6, False: 4]
  ------------------
  160|      6|            goto skip_optional_pos;
  161|      6|        }
  162|     10|    }
  163|      4|    if (fastargs[1]) {
  ------------------
  |  Branch (163:9): [True: 4, False: 0]
  ------------------
  164|      4|        fset = fastargs[1];
  165|      4|        if (!--noptargs) {
  ------------------
  |  Branch (165:13): [True: 0, False: 4]
  ------------------
  166|      0|            goto skip_optional_pos;
  167|      0|        }
  168|      4|    }
  169|      4|    if (fastargs[2]) {
  ------------------
  |  Branch (169:9): [True: 4, False: 0]
  ------------------
  170|      4|        fdel = fastargs[2];
  171|      4|        if (!--noptargs) {
  ------------------
  |  Branch (171:13): [True: 0, False: 4]
  ------------------
  172|      0|            goto skip_optional_pos;
  173|      0|        }
  174|      4|    }
  175|      4|    doc = fastargs[3];
  176|     10|skip_optional_pos:
  177|     10|    return_value = property_init_impl((propertyobject *)self, fget, fset, fdel, doc);
  178|       |
  179|     10|exit:
  180|     10|    return return_value;
  181|     10|}

dictobject.c:dict_get:
   96|    192|{
   97|    192|    PyObject *return_value = NULL;
   98|    192|    PyObject *key;
   99|    192|    PyObject *default_value = Py_None;
  ------------------
  |  |  616|    192|#  define Py_None (&_Py_NoneStruct)
  ------------------
  100|       |
  101|    192|    if (!_PyArg_CheckPositional("get", nargs, 1, 2)) {
  ------------------
  |  |   31|    192|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 192, False: 0]
  |  |  |  Branch (31:27): [True: 192, False: 0]
  |  |  ------------------
  |  |   32|    192|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  102|      0|        goto exit;
  103|      0|    }
  104|    192|    key = args[0];
  105|    192|    if (nargs < 2) {
  ------------------
  |  Branch (105:9): [True: 92, False: 100]
  ------------------
  106|     92|        goto skip_optional;
  107|     92|    }
  108|    100|    default_value = args[1];
  109|    192|skip_optional:
  110|    192|    return_value = dict_get_impl((PyDictObject *)self, key, default_value);
  111|       |
  112|    192|exit:
  113|    192|    return return_value;
  114|    192|}
dictobject.c:dict_pop:
  190|     54|{
  191|     54|    PyObject *return_value = NULL;
  192|     54|    PyObject *key;
  193|     54|    PyObject *default_value = NULL;
  194|       |
  195|     54|    if (!_PyArg_CheckPositional("pop", nargs, 1, 2)) {
  ------------------
  |  |   31|     54|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 54, False: 0]
  |  |  |  Branch (31:27): [True: 54, False: 0]
  |  |  ------------------
  |  |   32|     54|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  196|      0|        goto exit;
  197|      0|    }
  198|     54|    key = args[0];
  199|     54|    if (nargs < 2) {
  ------------------
  |  Branch (199:9): [True: 52, False: 2]
  ------------------
  200|     52|        goto skip_optional;
  201|     52|    }
  202|      2|    default_value = args[1];
  203|     54|skip_optional:
  204|     54|    return_value = dict_pop_impl((PyDictObject *)self, key, default_value);
  205|       |
  206|     54|exit:
  207|     54|    return return_value;
  208|     54|}
dictobject.c:dict_keys:
  287|      4|{
  288|      4|    return dict_keys_impl((PyDictObject *)self);
  289|      4|}
dictobject.c:dict_items:
  305|     70|{
  306|     70|    return dict_items_impl((PyDictObject *)self);
  307|     70|}
dictobject.c:dict_values:
  323|      4|{
  324|      4|    return dict_values_impl((PyDictObject *)self);
  325|      4|}

frameobject.c:frame_locals_get:
   29|      2|{
   30|      2|    PyObject *return_value = NULL;
   31|       |
   32|      2|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      2|    {
  ------------------
   33|      2|    return_value = frame_locals_get_impl((PyFrameObject *)self);
   34|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
   35|       |
   36|      2|    return return_value;
   37|      2|}

listobject.c:list_extend:
  142|    176|{
  143|    176|    PyObject *return_value = NULL;
  144|       |
  145|    176|    return_value = list_extend_impl((PyListObject *)self, iterable);
  146|       |
  147|    176|    return return_value;
  148|    176|}
listobject.c:list___reversed__:
  468|      6|{
  469|      6|    return list___reversed___impl((PyListObject *)self);
  470|      6|}
listobject.c:py_list_clear:
   70|      4|{
   71|      4|    PyObject *return_value = NULL;
   72|       |
   73|      4|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      4|    {
  ------------------
   74|      4|    return_value = py_list_clear_impl((PyListObject *)self);
   75|      4|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      4|    }
  ------------------
   76|       |
   77|      4|    return return_value;
   78|      4|}
listobject.c:list_append:
  118|    100|{
  119|    100|    PyObject *return_value = NULL;
  120|       |
  121|    100|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|    100|    {
  ------------------
  122|    100|    return_value = list_append_impl((PyListObject *)self, object);
  123|    100|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    100|    }
  ------------------
  124|       |
  125|    100|    return return_value;
  126|    100|}
listobject.c:list_insert:
   27|      2|{
   28|      2|    PyObject *return_value = NULL;
   29|      2|    Py_ssize_t index;
   30|      2|    PyObject *object;
   31|       |
   32|      2|    if (!_PyArg_CheckPositional("insert", nargs, 2, 2)) {
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   33|      0|        goto exit;
   34|      0|    }
   35|      2|    {
   36|      2|        Py_ssize_t ival = -1;
   37|      2|        PyObject *iobj = _PyNumber_Index(args[0]);
   38|      2|        if (iobj != NULL) {
  ------------------
  |  Branch (38:13): [True: 2, False: 0]
  ------------------
   39|      2|            ival = PyLong_AsSsize_t(iobj);
   40|      2|            Py_DECREF(iobj);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   41|      2|        }
   42|      2|        if (ival == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (42:13): [True: 0, False: 2]
  |  Branch (42:27): [True: 0, False: 0]
  ------------------
   43|      0|            goto exit;
   44|      0|        }
   45|      2|        index = ival;
   46|      2|    }
   47|      0|    object = args[1];
   48|      2|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      2|    {
  ------------------
   49|      2|    return_value = list_insert_impl((PyListObject *)self, index, object);
   50|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
   51|       |
   52|      2|exit:
   53|      2|    return return_value;
   54|      2|}
listobject.c:list_pop:
  166|     64|{
  167|     64|    PyObject *return_value = NULL;
  168|     64|    Py_ssize_t index = -1;
  169|       |
  170|     64|    if (!_PyArg_CheckPositional("pop", nargs, 0, 1)) {
  ------------------
  |  |   31|     64|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 64, False: 0]
  |  |  |  Branch (31:27): [True: 64, False: 0]
  |  |  ------------------
  |  |   32|     64|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  171|      0|        goto exit;
  172|      0|    }
  173|     64|    if (nargs < 1) {
  ------------------
  |  Branch (173:9): [True: 64, False: 0]
  ------------------
  174|     64|        goto skip_optional;
  175|     64|    }
  176|      0|    {
  177|      0|        Py_ssize_t ival = -1;
  178|      0|        PyObject *iobj = _PyNumber_Index(args[0]);
  179|      0|        if (iobj != NULL) {
  ------------------
  |  Branch (179:13): [True: 0, False: 0]
  ------------------
  180|      0|            ival = PyLong_AsSsize_t(iobj);
  181|      0|            Py_DECREF(iobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  182|      0|        }
  183|      0|        if (ival == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (183:13): [True: 0, False: 0]
  |  Branch (183:27): [True: 0, False: 0]
  ------------------
  184|      0|            goto exit;
  185|      0|        }
  186|      0|        index = ival;
  187|      0|    }
  188|     64|skip_optional:
  189|     64|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|     64|    {
  ------------------
  190|     64|    return_value = list_pop_impl((PyListObject *)self, index);
  191|     64|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     64|    }
  ------------------
  192|       |
  193|     64|exit:
  194|     64|    return return_value;
  195|     64|}
listobject.c:list_remove:
  388|     60|{
  389|     60|    PyObject *return_value = NULL;
  390|       |
  391|     60|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|     60|    {
  ------------------
  392|     60|    return_value = list_remove_impl((PyListObject *)self, value);
  393|     60|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     60|    }
  ------------------
  394|       |
  395|     60|    return return_value;
  396|     60|}
listobject.c:list_sort:
  219|      4|{
  220|      4|    PyObject *return_value = NULL;
  221|      4|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  222|       |
  223|      4|    #define NUM_KEYWORDS 2
  224|      4|    static struct {
  225|      4|        PyGC_Head _this_is_not_used;
  226|      4|        PyObject_VAR_HEAD
  227|      4|        Py_hash_t ob_hash;
  228|      4|        PyObject *ob_item[NUM_KEYWORDS];
  229|      4|    } _kwtuple = {
  230|      4|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      4|    {                                     \
  |  |   98|      4|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      4|    {                               \
  |  |  |  |   91|      4|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      4|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      4|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      4|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      4|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      4|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      4|        (type)                      \
  |  |  |  |   93|      4|    },
  |  |  ------------------
  |  |   99|      4|        (size)                            \
  |  |  100|      4|    },
  ------------------
  231|      4|        .ob_hash = -1,
  232|      4|        .ob_item = { &_Py_ID(key), &_Py_ID(reverse), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(key), &_Py_ID(reverse), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  233|      4|    };
  234|      4|    #undef NUM_KEYWORDS
  235|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  236|       |
  237|       |    #else  // !Py_BUILD_CORE
  238|       |    #  define KWTUPLE NULL
  239|       |    #endif  // !Py_BUILD_CORE
  240|       |
  241|      4|    static const char * const _keywords[] = {"key", "reverse", NULL};
  242|      4|    static _PyArg_Parser _parser = {
  243|      4|        .keywords = _keywords,
  244|      4|        .fname = "sort",
  245|      4|        .kwtuple = KWTUPLE,
  ------------------
  |  |  235|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  246|      4|    };
  247|      4|    #undef KWTUPLE
  248|      4|    PyObject *argsbuf[2];
  249|      4|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (249:36): [True: 0, False: 4]
  ------------------
  250|      4|    PyObject *keyfunc = Py_None;
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  251|      4|    int reverse = 0;
  252|       |
  253|      4|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      4|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 4, False: 0]
  |  |  ------------------
  |  |   89|      4|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 4, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 4]
  |  |  |  Branch (89:43): [True: 4, False: 0]
  |  |  |  Branch (89:67): [True: 4, False: 0]
  |  |  ------------------
  |  |   90|      4|      (args) : \
  |  |   91|      4|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  254|      4|            /*minpos*/ 0, /*maxpos*/ 0, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  255|      4|    if (!args) {
  ------------------
  |  Branch (255:9): [True: 0, False: 4]
  ------------------
  256|      0|        goto exit;
  257|      0|    }
  258|      4|    if (!noptargs) {
  ------------------
  |  Branch (258:9): [True: 4, False: 0]
  ------------------
  259|      4|        goto skip_optional_kwonly;
  260|      4|    }
  261|      0|    if (args[0]) {
  ------------------
  |  Branch (261:9): [True: 0, False: 0]
  ------------------
  262|      0|        keyfunc = args[0];
  263|      0|        if (!--noptargs) {
  ------------------
  |  Branch (263:13): [True: 0, False: 0]
  ------------------
  264|      0|            goto skip_optional_kwonly;
  265|      0|        }
  266|      0|    }
  267|      0|    reverse = PyObject_IsTrue(args[1]);
  268|      0|    if (reverse < 0) {
  ------------------
  |  Branch (268:9): [True: 0, False: 0]
  ------------------
  269|      0|        goto exit;
  270|      0|    }
  271|      4|skip_optional_kwonly:
  272|      4|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      4|    {
  ------------------
  273|      4|    return_value = list_sort_impl((PyListObject *)self, keyfunc, reverse);
  274|      4|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      4|    }
  ------------------
  275|       |
  276|      4|exit:
  277|      4|    return return_value;
  278|      4|}
listobject.c:list___init__:
  412|     60|{
  413|     60|    int return_value = -1;
  414|     60|    PyTypeObject *base_tp = &PyList_Type;
  415|     60|    PyObject *iterable = NULL;
  416|       |
  417|     60|    if ((Py_IS_TYPE(self, base_tp) ||
  ------------------
  |  |  215|    120|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 60]
  |  |  ------------------
  ------------------
  418|     60|         Py_TYPE(self)->tp_new == base_tp->tp_new) &&
  ------------------
  |  |  213|     60|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (418:10): [True: 60, False: 0]
  ------------------
  419|     60|        !_PyArg_NoKeywords("list", kwargs)) {
  ------------------
  |  |   25|     60|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 60, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  420|      0|        goto exit;
  421|      0|    }
  422|     60|    if (!_PyArg_CheckPositional("list", PyTuple_GET_SIZE(args), 0, 1)) {
  ------------------
  |  |   31|     60|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 60, False: 0]
  |  |  |  Branch (31:27): [True: 60, False: 0]
  |  |  ------------------
  |  |   32|     60|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  423|      0|        goto exit;
  424|      0|    }
  425|     60|    if (PyTuple_GET_SIZE(args) < 1) {
  ------------------
  |  |   27|     60|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (425:9): [True: 60, False: 0]
  ------------------
  426|     60|        goto skip_optional;
  427|     60|    }
  428|      0|    iterable = PyTuple_GET_ITEM(args, 0);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (428:16): [True: 0, False: 0]
  ------------------
  429|     60|skip_optional:
  430|     60|    return_value = list___init___impl((PyListObject *)self, iterable);
  431|       |
  432|     60|exit:
  433|     60|    return return_value;
  434|     60|}

longobject.c:int_to_bytes:
  288|      2|{
  289|      2|    PyObject *return_value = NULL;
  290|      2|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  291|       |
  292|      2|    #define NUM_KEYWORDS 3
  293|      2|    static struct {
  294|      2|        PyGC_Head _this_is_not_used;
  295|      2|        PyObject_VAR_HEAD
  296|      2|        Py_hash_t ob_hash;
  297|      2|        PyObject *ob_item[NUM_KEYWORDS];
  298|      2|    } _kwtuple = {
  299|      2|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      2|    {                                     \
  |  |   98|      2|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      2|    {                               \
  |  |  |  |   91|      2|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      2|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      2|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      2|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      2|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      2|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      2|        (type)                      \
  |  |  |  |   93|      2|    },
  |  |  ------------------
  |  |   99|      2|        (size)                            \
  |  |  100|      2|    },
  ------------------
  300|      2|        .ob_hash = -1,
  301|      2|        .ob_item = { &_Py_ID(length), &_Py_ID(byteorder), &_Py_ID(signed), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(length), &_Py_ID(byteorder), &_Py_ID(signed), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(length), &_Py_ID(byteorder), &_Py_ID(signed), },
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  302|      2|    };
  303|      2|    #undef NUM_KEYWORDS
  304|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  305|       |
  306|       |    #else  // !Py_BUILD_CORE
  307|       |    #  define KWTUPLE NULL
  308|       |    #endif  // !Py_BUILD_CORE
  309|       |
  310|      2|    static const char * const _keywords[] = {"length", "byteorder", "signed", NULL};
  311|      2|    static _PyArg_Parser _parser = {
  312|      2|        .keywords = _keywords,
  313|      2|        .fname = "to_bytes",
  314|      2|        .kwtuple = KWTUPLE,
  ------------------
  |  |  304|      2|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  315|      2|    };
  316|      2|    #undef KWTUPLE
  317|      2|    PyObject *argsbuf[3];
  318|      2|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (318:36): [True: 0, False: 2]
  ------------------
  319|      2|    Py_ssize_t length = 1;
  320|      2|    PyObject *byteorder = NULL;
  321|      2|    int is_signed = 0;
  322|       |
  323|      2|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      2|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 2, False: 0]
  |  |  ------------------
  |  |   89|      2|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 2, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 2]
  |  |  |  Branch (89:43): [True: 2, False: 0]
  |  |  |  Branch (89:67): [True: 2, False: 0]
  |  |  ------------------
  |  |   90|      2|      (args) : \
  |  |   91|      2|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  324|      2|            /*minpos*/ 0, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  325|      2|    if (!args) {
  ------------------
  |  Branch (325:9): [True: 0, False: 2]
  ------------------
  326|      0|        goto exit;
  327|      0|    }
  328|      2|    if (!noptargs) {
  ------------------
  |  Branch (328:9): [True: 0, False: 2]
  ------------------
  329|      0|        goto skip_optional_pos;
  330|      0|    }
  331|      2|    if (args[0]) {
  ------------------
  |  Branch (331:9): [True: 2, False: 0]
  ------------------
  332|      2|        {
  333|      2|            Py_ssize_t ival = -1;
  334|      2|            PyObject *iobj = _PyNumber_Index(args[0]);
  335|      2|            if (iobj != NULL) {
  ------------------
  |  Branch (335:17): [True: 2, False: 0]
  ------------------
  336|      2|                ival = PyLong_AsSsize_t(iobj);
  337|      2|                Py_DECREF(iobj);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  338|      2|            }
  339|      2|            if (ival == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (339:17): [True: 0, False: 2]
  |  Branch (339:31): [True: 0, False: 0]
  ------------------
  340|      0|                goto exit;
  341|      0|            }
  342|      2|            length = ival;
  343|      2|            if (length < 0) {
  ------------------
  |  Branch (343:17): [True: 0, False: 2]
  ------------------
  344|      0|                PyErr_SetString(PyExc_ValueError,
  345|      0|                                "length cannot be negative");
  346|      0|                goto exit;
  347|      0|            }
  348|      2|        }
  349|      2|        if (!--noptargs) {
  ------------------
  |  Branch (349:13): [True: 0, False: 2]
  ------------------
  350|      0|            goto skip_optional_pos;
  351|      0|        }
  352|      2|    }
  353|      2|    if (args[1]) {
  ------------------
  |  Branch (353:9): [True: 2, False: 0]
  ------------------
  354|      2|        if (!PyUnicode_Check(args[1])) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (354:13): [True: 0, False: 2]
  ------------------
  355|      0|            _PyArg_BadArgument("to_bytes", "argument 'byteorder'", "str", args[1]);
  356|      0|            goto exit;
  357|      0|        }
  358|      2|        byteorder = args[1];
  359|      2|        if (!--noptargs) {
  ------------------
  |  Branch (359:13): [True: 2, False: 0]
  ------------------
  360|      2|            goto skip_optional_pos;
  361|      2|        }
  362|      2|    }
  363|      2|skip_optional_pos:
  364|      2|    if (!noptargs) {
  ------------------
  |  Branch (364:9): [True: 2, False: 0]
  ------------------
  365|      2|        goto skip_optional_kwonly;
  366|      2|    }
  367|      0|    is_signed = PyObject_IsTrue(args[2]);
  368|      0|    if (is_signed < 0) {
  ------------------
  |  Branch (368:9): [True: 0, False: 0]
  ------------------
  369|      0|        goto exit;
  370|      0|    }
  371|      2|skip_optional_kwonly:
  372|      2|    return_value = int_to_bytes_impl(self, length, byteorder, is_signed);
  373|       |
  374|      2|exit:
  375|      2|    return return_value;
  376|      2|}

moduleobject.c:module___init__:
   24|     28|{
   25|     28|    int return_value = -1;
   26|     28|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
   27|       |
   28|     28|    #define NUM_KEYWORDS 2
   29|     28|    static struct {
   30|     28|        PyGC_Head _this_is_not_used;
   31|     28|        PyObject_VAR_HEAD
   32|     28|        Py_hash_t ob_hash;
   33|     28|        PyObject *ob_item[NUM_KEYWORDS];
   34|     28|    } _kwtuple = {
   35|     28|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     28|    {                                     \
  |  |   98|     28|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     28|    {                               \
  |  |  |  |   91|     28|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     28|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     28|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     28|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     28|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     28|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     28|        (type)                      \
  |  |  |  |   93|     28|    },
  |  |  ------------------
  |  |   99|     28|        (size)                            \
  |  |  100|     28|    },
  ------------------
   36|     28|        .ob_hash = -1,
   37|     28|        .ob_item = { &_Py_ID(name), &_Py_ID(doc), },
  ------------------
  |  |  917|     28|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     28|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     28|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(name), &_Py_ID(doc), },
  ------------------
  |  |  917|     28|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     28|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     28|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   38|     28|    };
   39|     28|    #undef NUM_KEYWORDS
   40|     28|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
   41|       |
   42|       |    #else  // !Py_BUILD_CORE
   43|       |    #  define KWTUPLE NULL
   44|       |    #endif  // !Py_BUILD_CORE
   45|       |
   46|     28|    static const char * const _keywords[] = {"name", "doc", NULL};
   47|     28|    static _PyArg_Parser _parser = {
   48|     28|        .keywords = _keywords,
   49|     28|        .fname = "module",
   50|     28|        .kwtuple = KWTUPLE,
  ------------------
  |  |   40|     28|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
   51|     28|    };
   52|     28|    #undef KWTUPLE
   53|     28|    PyObject *argsbuf[2];
   54|     28|    PyObject * const *fastargs;
   55|     28|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|     28|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   56|     28|    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1;
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (56:36): [True: 0, False: 28]
  ------------------
   57|     28|    PyObject *name;
   58|     28|    PyObject *doc = Py_None;
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
   59|       |
   60|     28|    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
  ------------------
  |  |   88|     28|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 28, Folded]
  |  |  |  Branch (88:23): [True: 28, False: 0]
  |  |  |  Branch (88:43): [True: 0, Folded]
  |  |  ------------------
  |  |   89|     56|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 28, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 28]
  |  |  |  Branch (89:43): [True: 28, False: 0]
  |  |  |  Branch (89:67): [True: 28, False: 0]
  |  |  |  Branch (89:68): [True: 28, False: 0]
  |  |  ------------------
  |  |   90|     56|      (args) : \
  |  |  ------------------
  |  |  |  Branch (90:8): [True: 28, False: 0]
  |  |  ------------------
  |  |   91|     28|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |  ------------------
  |  |  |  Branch (91:29): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
   61|     28|            /*minpos*/ 1, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
   62|     28|    if (!fastargs) {
  ------------------
  |  Branch (62:9): [True: 0, False: 28]
  ------------------
   63|      0|        goto exit;
   64|      0|    }
   65|     28|    if (!PyUnicode_Check(fastargs[0])) {
  ------------------
  |  |  103|     28|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     28|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (65:9): [True: 0, False: 28]
  ------------------
   66|      0|        _PyArg_BadArgument("module", "argument 'name'", "str", fastargs[0]);
   67|      0|        goto exit;
   68|      0|    }
   69|     28|    name = fastargs[0];
   70|     28|    if (!noptargs) {
  ------------------
  |  Branch (70:9): [True: 28, False: 0]
  ------------------
   71|     28|        goto skip_optional_pos;
   72|     28|    }
   73|      0|    doc = fastargs[1];
   74|     28|skip_optional_pos:
   75|     28|    return_value = module___init___impl((PyModuleObject *)self, name, doc);
   76|       |
   77|     28|exit:
   78|     28|    return return_value;
   79|     28|}

setobject.c:set_issubset:
  351|      4|{
  352|      4|    PyObject *return_value = NULL;
  353|       |
  354|      4|    Py_BEGIN_CRITICAL_SECTION2(so, other);
  ------------------
  |  |   57|      4|    {
  ------------------
  355|      4|    return_value = set_issubset_impl((PySetObject *)so, other);
  356|      4|    Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|      4|    }
  ------------------
  357|       |
  358|      4|    return return_value;
  359|      4|}
setobject.c:set_add:
  401|     94|{
  402|     94|    PyObject *return_value = NULL;
  403|       |
  404|     94|    Py_BEGIN_CRITICAL_SECTION(so);
  ------------------
  |  |   51|     94|    {
  ------------------
  405|     94|    return_value = set_add_impl((PySetObject *)so, key);
  406|     94|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     94|    }
  ------------------
  407|       |
  408|     94|    return return_value;
  409|     94|}
setobject.c:set_clear:
  122|     16|{
  123|     16|    PyObject *return_value = NULL;
  124|       |
  125|     16|    Py_BEGIN_CRITICAL_SECTION(so);
  ------------------
  |  |   51|     16|    {
  ------------------
  126|     16|    return_value = set_clear_impl((PySetObject *)so);
  127|     16|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     16|    }
  ------------------
  128|       |
  129|     16|    return return_value;
  130|     16|}

tupleobject.c:tuple_new:
   91|      2|{
   92|      2|    PyObject *return_value = NULL;
   93|      2|    PyTypeObject *base_tp = &PyTuple_Type;
   94|      2|    PyObject *iterable = NULL;
   95|       |
   96|      2|    if ((type == base_tp || type->tp_init == base_tp->tp_init) &&
  ------------------
  |  Branch (96:10): [True: 0, False: 2]
  |  Branch (96:29): [True: 2, False: 0]
  ------------------
   97|      2|        !_PyArg_NoKeywords("tuple", kwargs)) {
  ------------------
  |  |   25|      2|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 2, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   98|      0|        goto exit;
   99|      0|    }
  100|      2|    if (!_PyArg_CheckPositional("tuple", PyTuple_GET_SIZE(args), 0, 1)) {
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  101|      0|        goto exit;
  102|      0|    }
  103|      2|    if (PyTuple_GET_SIZE(args) < 1) {
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (103:9): [True: 0, False: 2]
  ------------------
  104|      0|        goto skip_optional;
  105|      0|    }
  106|      2|    iterable = PyTuple_GET_ITEM(args, 0);
  ------------------
  |  |   29|      2|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (106:16): [True: 2, False: 0]
  ------------------
  107|      2|skip_optional:
  108|      2|    return_value = tuple_new_impl(type, iterable);
  109|       |
  110|      2|exit:
  111|      2|    return return_value;
  112|      2|}

typeobject.c:type_mro:
   77|     58|{
   78|     58|    return type_mro_impl((PyTypeObject *)self);
   79|     58|}
typeobject.c:type___subclasses__:
   95|     36|{
   96|     36|    return type___subclasses___impl((PyTypeObject *)self);
   97|     36|}

unicodeobject.c:unicode_encode:
  217|      6|{
  218|      6|    PyObject *return_value = NULL;
  219|      6|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  220|       |
  221|      6|    #define NUM_KEYWORDS 2
  222|      6|    static struct {
  223|      6|        PyGC_Head _this_is_not_used;
  224|      6|        PyObject_VAR_HEAD
  225|      6|        Py_hash_t ob_hash;
  226|      6|        PyObject *ob_item[NUM_KEYWORDS];
  227|      6|    } _kwtuple = {
  228|      6|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      6|    {                                     \
  |  |   98|      6|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      6|    {                               \
  |  |  |  |   91|      6|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      6|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      6|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      6|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      6|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      6|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      6|        (type)                      \
  |  |  |  |   93|      6|    },
  |  |  ------------------
  |  |   99|      6|        (size)                            \
  |  |  100|      6|    },
  ------------------
  229|      6|        .ob_hash = -1,
  230|      6|        .ob_item = { &_Py_ID(encoding), &_Py_ID(errors), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(encoding), &_Py_ID(errors), },
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  231|      6|    };
  232|      6|    #undef NUM_KEYWORDS
  233|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  234|       |
  235|       |    #else  // !Py_BUILD_CORE
  236|       |    #  define KWTUPLE NULL
  237|       |    #endif  // !Py_BUILD_CORE
  238|       |
  239|      6|    static const char * const _keywords[] = {"encoding", "errors", NULL};
  240|      6|    static _PyArg_Parser _parser = {
  241|      6|        .keywords = _keywords,
  242|      6|        .fname = "encode",
  243|      6|        .kwtuple = KWTUPLE,
  ------------------
  |  |  233|      6|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  244|      6|    };
  245|      6|    #undef KWTUPLE
  246|      6|    PyObject *argsbuf[2];
  247|      6|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (247:36): [True: 0, False: 6]
  ------------------
  248|      6|    const char *encoding = NULL;
  249|      6|    const char *errors = NULL;
  250|       |
  251|      6|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      6|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 6, False: 0]
  |  |  ------------------
  |  |   89|      6|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 6, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 6]
  |  |  |  Branch (89:43): [True: 6, False: 0]
  |  |  |  Branch (89:67): [True: 6, False: 0]
  |  |  ------------------
  |  |   90|      6|      (args) : \
  |  |   91|      6|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  252|      6|            /*minpos*/ 0, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  253|      6|    if (!args) {
  ------------------
  |  Branch (253:9): [True: 0, False: 6]
  ------------------
  254|      0|        goto exit;
  255|      0|    }
  256|      6|    if (!noptargs) {
  ------------------
  |  Branch (256:9): [True: 0, False: 6]
  ------------------
  257|      0|        goto skip_optional_pos;
  258|      0|    }
  259|      6|    if (args[0]) {
  ------------------
  |  Branch (259:9): [True: 6, False: 0]
  ------------------
  260|      6|        if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (260:13): [True: 0, False: 6]
  ------------------
  261|      0|            _PyArg_BadArgument("encode", "argument 'encoding'", "str", args[0]);
  262|      0|            goto exit;
  263|      0|        }
  264|      6|        Py_ssize_t encoding_length;
  265|      6|        encoding = PyUnicode_AsUTF8AndSize(args[0], &encoding_length);
  266|      6|        if (encoding == NULL) {
  ------------------
  |  Branch (266:13): [True: 0, False: 6]
  ------------------
  267|      0|            goto exit;
  268|      0|        }
  269|      6|        if (strlen(encoding) != (size_t)encoding_length) {
  ------------------
  |  Branch (269:13): [True: 0, False: 6]
  ------------------
  270|      0|            PyErr_SetString(PyExc_ValueError, "embedded null character");
  271|      0|            goto exit;
  272|      0|        }
  273|      6|        if (!--noptargs) {
  ------------------
  |  Branch (273:13): [True: 0, False: 6]
  ------------------
  274|      0|            goto skip_optional_pos;
  275|      0|        }
  276|      6|    }
  277|      6|    if (!PyUnicode_Check(args[1])) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (277:9): [True: 0, False: 6]
  ------------------
  278|      0|        _PyArg_BadArgument("encode", "argument 'errors'", "str", args[1]);
  279|      0|        goto exit;
  280|      0|    }
  281|      6|    Py_ssize_t errors_length;
  282|      6|    errors = PyUnicode_AsUTF8AndSize(args[1], &errors_length);
  283|      6|    if (errors == NULL) {
  ------------------
  |  Branch (283:9): [True: 0, False: 6]
  ------------------
  284|      0|        goto exit;
  285|      0|    }
  286|      6|    if (strlen(errors) != (size_t)errors_length) {
  ------------------
  |  Branch (286:9): [True: 0, False: 6]
  ------------------
  287|      0|        PyErr_SetString(PyExc_ValueError, "embedded null character");
  288|      0|        goto exit;
  289|      0|    }
  290|      6|skip_optional_pos:
  291|      6|    return_value = unicode_encode_impl(self, encoding, errors);
  292|       |
  293|      6|exit:
  294|      6|    return return_value;
  295|      6|}
unicodeobject.c:unicode_replace:
  933|     30|{
  934|     30|    PyObject *return_value = NULL;
  935|     30|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  936|       |
  937|     30|    #define NUM_KEYWORDS 1
  938|     30|    static struct {
  939|     30|        PyGC_Head _this_is_not_used;
  940|     30|        PyObject_VAR_HEAD
  941|     30|        Py_hash_t ob_hash;
  942|     30|        PyObject *ob_item[NUM_KEYWORDS];
  943|     30|    } _kwtuple = {
  944|     30|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     30|    {                                     \
  |  |   98|     30|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     30|    {                               \
  |  |  |  |   91|     30|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     30|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     30|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     30|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     30|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     30|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     30|        (type)                      \
  |  |  |  |   93|     30|    },
  |  |  ------------------
  |  |   99|     30|        (size)                            \
  |  |  100|     30|    },
  ------------------
  945|     30|        .ob_hash = -1,
  946|     30|        .ob_item = { &_Py_ID(count), },
  ------------------
  |  |  917|     30|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     30|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     30|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  947|     30|    };
  948|     30|    #undef NUM_KEYWORDS
  949|     30|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  950|       |
  951|       |    #else  // !Py_BUILD_CORE
  952|       |    #  define KWTUPLE NULL
  953|       |    #endif  // !Py_BUILD_CORE
  954|       |
  955|     30|    static const char * const _keywords[] = {"", "", "count", NULL};
  956|     30|    static _PyArg_Parser _parser = {
  957|     30|        .keywords = _keywords,
  958|     30|        .fname = "replace",
  959|     30|        .kwtuple = KWTUPLE,
  ------------------
  |  |  949|     30|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  960|     30|    };
  961|     30|    #undef KWTUPLE
  962|     30|    PyObject *argsbuf[3];
  963|     30|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 2;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (963:36): [True: 0, False: 30]
  ------------------
  964|     30|    PyObject *old;
  965|     30|    PyObject *new;
  966|     30|    Py_ssize_t count = -1;
  967|       |
  968|     30|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|     30|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 30, False: 0]
  |  |  ------------------
  |  |   89|     30|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 30, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 30]
  |  |  |  Branch (89:43): [True: 30, False: 0]
  |  |  |  Branch (89:67): [True: 30, False: 0]
  |  |  ------------------
  |  |   90|     30|      (args) : \
  |  |   91|     30|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  969|     30|            /*minpos*/ 2, /*maxpos*/ 3, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  970|     30|    if (!args) {
  ------------------
  |  Branch (970:9): [True: 0, False: 30]
  ------------------
  971|      0|        goto exit;
  972|      0|    }
  973|     30|    if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|     30|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     30|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (973:9): [True: 0, False: 30]
  ------------------
  974|      0|        _PyArg_BadArgument("replace", "argument 1", "str", args[0]);
  975|      0|        goto exit;
  976|      0|    }
  977|     30|    old = args[0];
  978|     30|    if (!PyUnicode_Check(args[1])) {
  ------------------
  |  |  103|     30|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     30|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (978:9): [True: 0, False: 30]
  ------------------
  979|      0|        _PyArg_BadArgument("replace", "argument 2", "str", args[1]);
  980|      0|        goto exit;
  981|      0|    }
  982|     30|    new = args[1];
  983|     30|    if (!noptargs) {
  ------------------
  |  Branch (983:9): [True: 30, False: 0]
  ------------------
  984|     30|        goto skip_optional_pos;
  985|     30|    }
  986|      0|    {
  987|      0|        Py_ssize_t ival = -1;
  988|      0|        PyObject *iobj = _PyNumber_Index(args[2]);
  989|      0|        if (iobj != NULL) {
  ------------------
  |  Branch (989:13): [True: 0, False: 0]
  ------------------
  990|      0|            ival = PyLong_AsSsize_t(iobj);
  991|      0|            Py_DECREF(iobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  992|      0|        }
  993|      0|        if (ival == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (993:13): [True: 0, False: 0]
  |  Branch (993:27): [True: 0, False: 0]
  ------------------
  994|      0|            goto exit;
  995|      0|        }
  996|      0|        count = ival;
  997|      0|    }
  998|     30|skip_optional_pos:
  999|     30|    return_value = unicode_replace_impl(self, old, new, count);
 1000|       |
 1001|     30|exit:
 1002|     30|    return return_value;
 1003|     30|}
unicodeobject.c:unicode_split:
 1261|      4|{
 1262|      4|    PyObject *return_value = NULL;
 1263|      4|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 1264|       |
 1265|      4|    #define NUM_KEYWORDS 2
 1266|      4|    static struct {
 1267|      4|        PyGC_Head _this_is_not_used;
 1268|      4|        PyObject_VAR_HEAD
 1269|      4|        Py_hash_t ob_hash;
 1270|      4|        PyObject *ob_item[NUM_KEYWORDS];
 1271|      4|    } _kwtuple = {
 1272|      4|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|      4|    {                                     \
  |  |   98|      4|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|      4|    {                               \
  |  |  |  |   91|      4|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      4|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      4|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|      4|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|      4|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|      4|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|      4|        (type)                      \
  |  |  |  |   93|      4|    },
  |  |  ------------------
  |  |   99|      4|        (size)                            \
  |  |  100|      4|    },
  ------------------
 1273|      4|        .ob_hash = -1,
 1274|      4|        .ob_item = { &_Py_ID(sep), &_Py_ID(maxsplit), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(sep), &_Py_ID(maxsplit), },
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1275|      4|    };
 1276|      4|    #undef NUM_KEYWORDS
 1277|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
 1278|       |
 1279|       |    #else  // !Py_BUILD_CORE
 1280|       |    #  define KWTUPLE NULL
 1281|       |    #endif  // !Py_BUILD_CORE
 1282|       |
 1283|      4|    static const char * const _keywords[] = {"sep", "maxsplit", NULL};
 1284|      4|    static _PyArg_Parser _parser = {
 1285|      4|        .keywords = _keywords,
 1286|      4|        .fname = "split",
 1287|      4|        .kwtuple = KWTUPLE,
  ------------------
  |  | 1277|      4|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
 1288|      4|    };
 1289|      4|    #undef KWTUPLE
 1290|      4|    PyObject *argsbuf[2];
 1291|      4|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1291:36): [True: 0, False: 4]
  ------------------
 1292|      4|    PyObject *sep = Py_None;
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
 1293|      4|    Py_ssize_t maxsplit = -1;
 1294|       |
 1295|      4|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|      4|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 4, False: 0]
  |  |  ------------------
  |  |   89|      4|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 4, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 4]
  |  |  |  Branch (89:43): [True: 4, False: 0]
  |  |  |  Branch (89:67): [True: 4, False: 0]
  |  |  ------------------
  |  |   90|      4|      (args) : \
  |  |   91|      4|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
 1296|      4|            /*minpos*/ 0, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
 1297|      4|    if (!args) {
  ------------------
  |  Branch (1297:9): [True: 0, False: 4]
  ------------------
 1298|      0|        goto exit;
 1299|      0|    }
 1300|      4|    if (!noptargs) {
  ------------------
  |  Branch (1300:9): [True: 0, False: 4]
  ------------------
 1301|      0|        goto skip_optional_pos;
 1302|      0|    }
 1303|      4|    if (args[0]) {
  ------------------
  |  Branch (1303:9): [True: 4, False: 0]
  ------------------
 1304|      4|        sep = args[0];
 1305|      4|        if (!--noptargs) {
  ------------------
  |  Branch (1305:13): [True: 4, False: 0]
  ------------------
 1306|      4|            goto skip_optional_pos;
 1307|      4|        }
 1308|      4|    }
 1309|      0|    {
 1310|      0|        Py_ssize_t ival = -1;
 1311|      0|        PyObject *iobj = _PyNumber_Index(args[1]);
 1312|      0|        if (iobj != NULL) {
  ------------------
  |  Branch (1312:13): [True: 0, False: 0]
  ------------------
 1313|      0|            ival = PyLong_AsSsize_t(iobj);
 1314|      0|            Py_DECREF(iobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1315|      0|        }
 1316|      0|        if (ival == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1316:13): [True: 0, False: 0]
  |  Branch (1316:27): [True: 0, False: 0]
  ------------------
 1317|      0|            goto exit;
 1318|      0|        }
 1319|      0|        maxsplit = ival;
 1320|      0|    }
 1321|      4|skip_optional_pos:
 1322|      4|    return_value = unicode_split_impl(self, sep, maxsplit);
 1323|       |
 1324|      4|exit:
 1325|      4|    return return_value;
 1326|      4|}
unicodeobject.c:unicode_find:
  383|      2|{
  384|      2|    PyObject *return_value = NULL;
  385|      2|    PyObject *substr;
  386|      2|    Py_ssize_t start = 0;
  387|      2|    Py_ssize_t end = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|      2|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  388|      2|    Py_ssize_t _return_value;
  389|       |
  390|      2|    if (!_PyArg_CheckPositional("find", nargs, 1, 3)) {
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  391|      0|        goto exit;
  392|      0|    }
  393|      2|    if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (393:9): [True: 0, False: 2]
  ------------------
  394|      0|        _PyArg_BadArgument("find", "argument 1", "str", args[0]);
  395|      0|        goto exit;
  396|      0|    }
  397|      2|    substr = args[0];
  398|      2|    if (nargs < 2) {
  ------------------
  |  Branch (398:9): [True: 0, False: 2]
  ------------------
  399|      0|        goto skip_optional;
  400|      0|    }
  401|      2|    if (!_PyEval_SliceIndex(args[1], &start)) {
  ------------------
  |  Branch (401:9): [True: 0, False: 2]
  ------------------
  402|      0|        goto exit;
  403|      0|    }
  404|      2|    if (nargs < 3) {
  ------------------
  |  Branch (404:9): [True: 2, False: 0]
  ------------------
  405|      2|        goto skip_optional;
  406|      2|    }
  407|      0|    if (!_PyEval_SliceIndex(args[2], &end)) {
  ------------------
  |  Branch (407:9): [True: 0, False: 0]
  ------------------
  408|      0|        goto exit;
  409|      0|    }
  410|      2|skip_optional:
  411|      2|    _return_value = unicode_find_impl(str, substr, start, end);
  412|      2|    if ((_return_value == -1) && PyErr_Occurred()) {
  ------------------
  |  Branch (412:9): [True: 0, False: 2]
  |  Branch (412:34): [True: 0, False: 0]
  ------------------
  413|      0|        goto exit;
  414|      0|    }
  415|      2|    return_value = PyLong_FromSsize_t(_return_value);
  416|       |
  417|      2|exit:
  418|      2|    return return_value;
  419|      2|}
unicodeobject.c:unicode_lower:
  805|      4|{
  806|      4|    return unicode_lower_impl(self);
  807|      4|}
unicodeobject.c:unicode_rfind:
 1088|      6|{
 1089|      6|    PyObject *return_value = NULL;
 1090|      6|    PyObject *substr;
 1091|      6|    Py_ssize_t start = 0;
 1092|      6|    Py_ssize_t end = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|      6|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
 1093|      6|    Py_ssize_t _return_value;
 1094|       |
 1095|      6|    if (!_PyArg_CheckPositional("rfind", nargs, 1, 3)) {
  ------------------
  |  |   31|      6|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 6, False: 0]
  |  |  |  Branch (31:27): [True: 6, False: 0]
  |  |  ------------------
  |  |   32|      6|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1096|      0|        goto exit;
 1097|      0|    }
 1098|      6|    if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1098:9): [True: 0, False: 6]
  ------------------
 1099|      0|        _PyArg_BadArgument("rfind", "argument 1", "str", args[0]);
 1100|      0|        goto exit;
 1101|      0|    }
 1102|      6|    substr = args[0];
 1103|      6|    if (nargs < 2) {
  ------------------
  |  Branch (1103:9): [True: 6, False: 0]
  ------------------
 1104|      6|        goto skip_optional;
 1105|      6|    }
 1106|      0|    if (!_PyEval_SliceIndex(args[1], &start)) {
  ------------------
  |  Branch (1106:9): [True: 0, False: 0]
  ------------------
 1107|      0|        goto exit;
 1108|      0|    }
 1109|      0|    if (nargs < 3) {
  ------------------
  |  Branch (1109:9): [True: 0, False: 0]
  ------------------
 1110|      0|        goto skip_optional;
 1111|      0|    }
 1112|      0|    if (!_PyEval_SliceIndex(args[2], &end)) {
  ------------------
  |  Branch (1112:9): [True: 0, False: 0]
  ------------------
 1113|      0|        goto exit;
 1114|      0|    }
 1115|      6|skip_optional:
 1116|      6|    _return_value = unicode_rfind_impl(str, substr, start, end);
 1117|      6|    if ((_return_value == -1) && PyErr_Occurred()) {
  ------------------
  |  Branch (1117:9): [True: 0, False: 6]
  |  Branch (1117:34): [True: 0, False: 0]
  ------------------
 1118|      0|        goto exit;
 1119|      0|    }
 1120|      6|    return_value = PyLong_FromSsize_t(_return_value);
 1121|       |
 1122|      6|exit:
 1123|      6|    return return_value;
 1124|      6|}
unicodeobject.c:unicode_rstrip:
  893|    150|{
  894|    150|    PyObject *return_value = NULL;
  895|    150|    PyObject *chars = Py_None;
  ------------------
  |  |  616|    150|#  define Py_None (&_Py_NoneStruct)
  ------------------
  896|       |
  897|    150|    if (!_PyArg_CheckPositional("rstrip", nargs, 0, 1)) {
  ------------------
  |  |   31|    150|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 150, False: 0]
  |  |  |  Branch (31:27): [True: 150, False: 0]
  |  |  ------------------
  |  |   32|    150|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  898|      0|        goto exit;
  899|      0|    }
  900|    150|    if (nargs < 1) {
  ------------------
  |  Branch (900:9): [True: 0, False: 150]
  ------------------
  901|      0|        goto skip_optional;
  902|      0|    }
  903|    150|    chars = args[0];
  904|    150|skip_optional:
  905|    150|    return_value = unicode_rstrip_impl(self, chars);
  906|       |
  907|    150|exit:
  908|    150|    return return_value;
  909|    150|}
unicodeobject.c:unicode_startswith:
 1690|     60|{
 1691|     60|    PyObject *return_value = NULL;
 1692|     60|    PyObject *subobj;
 1693|     60|    Py_ssize_t start = 0;
 1694|     60|    Py_ssize_t end = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|     60|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
 1695|       |
 1696|     60|    if (!_PyArg_CheckPositional("startswith", nargs, 1, 3)) {
  ------------------
  |  |   31|     60|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 60, False: 0]
  |  |  |  Branch (31:27): [True: 60, False: 0]
  |  |  ------------------
  |  |   32|     60|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1697|      0|        goto exit;
 1698|      0|    }
 1699|     60|    subobj = args[0];
 1700|     60|    if (nargs < 2) {
  ------------------
  |  Branch (1700:9): [True: 60, False: 0]
  ------------------
 1701|     60|        goto skip_optional;
 1702|     60|    }
 1703|      0|    if (!_PyEval_SliceIndex(args[1], &start)) {
  ------------------
  |  Branch (1703:9): [True: 0, False: 0]
  ------------------
 1704|      0|        goto exit;
 1705|      0|    }
 1706|      0|    if (nargs < 3) {
  ------------------
  |  Branch (1706:9): [True: 0, False: 0]
  ------------------
 1707|      0|        goto skip_optional;
 1708|      0|    }
 1709|      0|    if (!_PyEval_SliceIndex(args[2], &end)) {
  ------------------
  |  Branch (1709:9): [True: 0, False: 0]
  ------------------
 1710|      0|        goto exit;
 1711|      0|    }
 1712|     60|skip_optional:
 1713|     60|    return_value = unicode_startswith_impl(self, subobj, start, end);
 1714|       |
 1715|     60|exit:
 1716|     60|    return return_value;
 1717|     60|}
unicodeobject.c:unicode_endswith:
 1741|     38|{
 1742|     38|    PyObject *return_value = NULL;
 1743|     38|    PyObject *subobj;
 1744|     38|    Py_ssize_t start = 0;
 1745|     38|    Py_ssize_t end = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|     38|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
 1746|       |
 1747|     38|    if (!_PyArg_CheckPositional("endswith", nargs, 1, 3)) {
  ------------------
  |  |   31|     38|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 38, False: 0]
  |  |  |  Branch (31:27): [True: 38, False: 0]
  |  |  ------------------
  |  |   32|     38|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1748|      0|        goto exit;
 1749|      0|    }
 1750|     38|    subobj = args[0];
 1751|     38|    if (nargs < 2) {
  ------------------
  |  Branch (1751:9): [True: 38, False: 0]
  ------------------
 1752|     38|        goto skip_optional;
 1753|     38|    }
 1754|      0|    if (!_PyEval_SliceIndex(args[1], &start)) {
  ------------------
  |  Branch (1754:9): [True: 0, False: 0]
  ------------------
 1755|      0|        goto exit;
 1756|      0|    }
 1757|      0|    if (nargs < 3) {
  ------------------
  |  Branch (1757:9): [True: 0, False: 0]
  ------------------
 1758|      0|        goto skip_optional;
 1759|      0|    }
 1760|      0|    if (!_PyEval_SliceIndex(args[2], &end)) {
  ------------------
  |  Branch (1760:9): [True: 0, False: 0]
  ------------------
 1761|      0|        goto exit;
 1762|      0|    }
 1763|     38|skip_optional:
 1764|     38|    return_value = unicode_endswith_impl(self, subobj, start, end);
 1765|       |
 1766|     38|exit:
 1767|     38|    return return_value;
 1768|     38|}
unicodeobject.c:unicode_isascii:
  494|      2|{
  495|      2|    return unicode_isascii_impl(self);
  496|      2|}

_PyCode_Validate:
  447|  1.48k|{
  448|       |    /* Check argument types */
  449|  1.48k|    if (con->argcount < con->posonlyargcount || con->posonlyargcount < 0 ||
  ------------------
  |  Branch (449:9): [True: 0, False: 1.48k]
  |  Branch (449:49): [True: 0, False: 1.48k]
  ------------------
  450|  1.48k|        con->kwonlyargcount < 0 ||
  ------------------
  |  Branch (450:9): [True: 0, False: 1.48k]
  ------------------
  451|  1.48k|        con->stacksize < 0 || con->flags < 0 ||
  ------------------
  |  Branch (451:9): [True: 0, False: 1.48k]
  |  Branch (451:31): [True: 0, False: 1.48k]
  ------------------
  452|  1.48k|        con->code == NULL || !PyBytes_Check(con->code) ||
  ------------------
  |  |   28|  1.48k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (452:9): [True: 0, False: 1.48k]
  |  Branch (452:30): [True: 0, False: 1.48k]
  ------------------
  453|  1.48k|        con->consts == NULL || !PyTuple_Check(con->consts) ||
  ------------------
  |  |   27|  1.48k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (453:9): [True: 0, False: 1.48k]
  |  Branch (453:32): [True: 0, False: 1.48k]
  ------------------
  454|  1.48k|        con->names == NULL || !PyTuple_Check(con->names) ||
  ------------------
  |  |   27|  1.48k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (454:9): [True: 0, False: 1.48k]
  |  Branch (454:31): [True: 0, False: 1.48k]
  ------------------
  455|  1.48k|        con->localsplusnames == NULL || !PyTuple_Check(con->localsplusnames) ||
  ------------------
  |  |   27|  1.48k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (455:9): [True: 0, False: 1.48k]
  |  Branch (455:41): [True: 0, False: 1.48k]
  ------------------
  456|  1.48k|        con->localspluskinds == NULL || !PyBytes_Check(con->localspluskinds) ||
  ------------------
  |  |   28|  1.48k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (456:9): [True: 0, False: 1.48k]
  |  Branch (456:41): [True: 0, False: 1.48k]
  ------------------
  457|  1.48k|        PyTuple_GET_SIZE(con->localsplusnames)
  ------------------
  |  |   27|  1.48k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (457:9): [True: 0, False: 1.48k]
  ------------------
  458|  1.48k|            != PyBytes_GET_SIZE(con->localspluskinds) ||
  ------------------
  |  |   33|  2.97k|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  459|  1.48k|        con->name == NULL || !PyUnicode_Check(con->name) ||
  ------------------
  |  |  103|  1.48k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (459:9): [True: 0, False: 1.48k]
  |  Branch (459:30): [True: 0, False: 1.48k]
  ------------------
  460|  1.48k|        con->qualname == NULL || !PyUnicode_Check(con->qualname) ||
  ------------------
  |  |  103|  1.48k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (460:9): [True: 0, False: 1.48k]
  |  Branch (460:34): [True: 0, False: 1.48k]
  ------------------
  461|  1.48k|        con->filename == NULL || !PyUnicode_Check(con->filename) ||
  ------------------
  |  |  103|  1.48k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (461:9): [True: 0, False: 1.48k]
  |  Branch (461:34): [True: 0, False: 1.48k]
  ------------------
  462|  1.48k|        con->linetable == NULL || !PyBytes_Check(con->linetable) ||
  ------------------
  |  |   28|  1.48k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.97k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (462:9): [True: 0, False: 1.48k]
  |  Branch (462:35): [True: 0, False: 1.48k]
  ------------------
  463|  1.48k|        con->exceptiontable == NULL || !PyBytes_Check(con->exceptiontable)
  ------------------
  |  |   28|  1.48k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  1.48k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (463:9): [True: 0, False: 1.48k]
  |  Branch (463:40): [True: 0, False: 1.48k]
  ------------------
  464|  1.48k|        ) {
  465|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  466|      0|        return -1;
  467|      0|    }
  468|       |
  469|       |    /* Make sure that code is indexable with an int, this is
  470|       |       a long running assumption in ceval.c and many parts of
  471|       |       the interpreter. */
  472|  1.48k|    if (PyBytes_GET_SIZE(con->code) > INT_MAX) {
  ------------------
  |  |   33|  1.48k|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (472:9): [True: 0, False: 1.48k]
  ------------------
  473|      0|        PyErr_SetString(PyExc_OverflowError,
  474|      0|                        "code: co_code larger than INT_MAX");
  475|      0|        return -1;
  476|      0|    }
  477|  1.48k|    if (PyBytes_GET_SIZE(con->code) % sizeof(_Py_CODEUNIT) != 0 ||
  ------------------
  |  |   33|  1.48k|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (477:9): [True: 0, False: 1.48k]
  ------------------
  478|  1.48k|        !_Py_IS_ALIGNED(PyBytes_AS_STRING(con->code), sizeof(_Py_CODEUNIT))
  ------------------
  |  |  221|  1.48k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  ------------------
  |  Branch (478:9): [True: 0, False: 1.48k]
  ------------------
  479|  1.48k|        ) {
  480|      0|        PyErr_SetString(PyExc_ValueError, "code: co_code is malformed");
  481|      0|        return -1;
  482|      0|    }
  483|       |
  484|       |    /* Ensure that the co_varnames has enough names to cover the arg counts.
  485|       |     * Note that totalargs = nlocals - nplainlocals.  We check nplainlocals
  486|       |     * here to avoid the possibility of overflow (however remote). */
  487|  1.48k|    int nlocals;
  488|  1.48k|    get_localsplus_counts(con->localsplusnames, con->localspluskinds,
  489|  1.48k|                          &nlocals, NULL, NULL);
  490|  1.48k|    int nplainlocals = nlocals -
  491|  1.48k|                       con->argcount -
  492|  1.48k|                       con->kwonlyargcount -
  493|  1.48k|                       ((con->flags & CO_VARARGS) != 0) -
  ------------------
  |  |  120|  1.48k|#define CO_VARARGS      0x0004
  ------------------
  494|  1.48k|                       ((con->flags & CO_VARKEYWORDS) != 0);
  ------------------
  |  |  121|  1.48k|#define CO_VARKEYWORDS  0x0008
  ------------------
  495|  1.48k|    if (nplainlocals < 0) {
  ------------------
  |  Branch (495:9): [True: 0, False: 1.48k]
  ------------------
  496|      0|        PyErr_SetString(PyExc_ValueError, "code: co_varnames is too small");
  497|      0|        return -1;
  498|      0|    }
  499|       |
  500|  1.48k|    return 0;
  501|  1.48k|}
_PyCode_New:
  717|  1.48k|{
  718|  1.48k|    if (intern_code_constants(con) < 0) {
  ------------------
  |  Branch (718:9): [True: 0, False: 1.48k]
  ------------------
  719|      0|        return NULL;
  720|      0|    }
  721|       |
  722|  1.48k|    PyObject *replacement_locations = NULL;
  723|       |    // Compact the linetable if we are opted out of debug
  724|       |    // ranges.
  725|  1.48k|    if (!_Py_GetConfig()->code_debug_ranges) {
  ------------------
  |  Branch (725:9): [True: 0, False: 1.48k]
  ------------------
  726|      0|        replacement_locations = remove_column_info(con->linetable);
  727|      0|        if (replacement_locations == NULL) {
  ------------------
  |  Branch (727:13): [True: 0, False: 0]
  ------------------
  728|      0|            return NULL;
  729|      0|        }
  730|      0|        con->linetable = replacement_locations;
  731|      0|    }
  732|       |
  733|  1.48k|    Py_ssize_t size = PyBytes_GET_SIZE(con->code) / sizeof(_Py_CODEUNIT);
  ------------------
  |  |   33|  1.48k|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  734|  1.48k|    PyCodeObject *co;
  735|       |#ifdef Py_GIL_DISABLED
  736|       |    co = PyObject_GC_NewVar(PyCodeObject, &PyCode_Type, size);
  737|       |#else
  738|  1.48k|    co = PyObject_NewVar(PyCodeObject, &PyCode_Type, size);
  ------------------
  |  |  137|  1.48k|                ( (type *) _PyObject_NewVar((typeobj), (n)) )
  ------------------
  739|  1.48k|#endif
  740|  1.48k|    if (co == NULL) {
  ------------------
  |  Branch (740:9): [True: 0, False: 1.48k]
  ------------------
  741|      0|        Py_XDECREF(replacement_locations);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  742|      0|        PyErr_NoMemory();
  743|      0|        return NULL;
  744|      0|    }
  745|       |
  746|  1.48k|    if (init_code(co, con) < 0) {
  ------------------
  |  Branch (746:9): [True: 0, False: 1.48k]
  ------------------
  747|      0|        Py_DECREF(co);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  748|      0|        return NULL;
  749|      0|    }
  750|       |
  751|       |#ifdef Py_GIL_DISABLED
  752|       |    co->_co_unique_id = _PyObject_AssignUniqueId((PyObject *)co);
  753|       |    _PyObject_GC_TRACK(co);
  754|       |#endif
  755|  1.48k|    Py_XDECREF(replacement_locations);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  756|  1.48k|    return co;
  757|  1.48k|}
_PyCode_Init:
 3249|      2|{
 3250|       |#ifdef Py_GIL_DISABLED
 3251|       |    struct _py_code_state *state = &interp->code_state;
 3252|       |    state->constants = _Py_hashtable_new_full(&hash_const, &compare_constants,
 3253|       |                                              &destroy_key, NULL, NULL);
 3254|       |    if (state->constants == NULL) {
 3255|       |        return _PyStatus_NO_MEMORY();
 3256|       |    }
 3257|       |#endif
 3258|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3259|      2|}
codeobject.c:get_localsplus_counts:
  392|  2.97k|{
  393|  2.97k|    int nlocals = 0;
  394|  2.97k|    int ncellvars = 0;
  395|  2.97k|    int nfreevars = 0;
  396|  2.97k|    Py_ssize_t nlocalsplus = PyTuple_GET_SIZE(names);
  ------------------
  |  |   27|  2.97k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.97k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.97k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  397|  11.6k|    for (int i = 0; i < nlocalsplus; i++) {
  ------------------
  |  Branch (397:21): [True: 8.72k, False: 2.97k]
  ------------------
  398|  8.72k|        _PyLocals_Kind kind = _PyLocals_GetKind(kinds, i);
  399|  8.72k|        if (kind & CO_FAST_LOCAL) {
  ------------------
  |  |  197|  8.72k|#define CO_FAST_LOCAL   (0x20)
  ------------------
  |  Branch (399:13): [True: 8.15k, False: 568]
  ------------------
  400|  8.15k|            nlocals += 1;
  401|  8.15k|            if (kind & CO_FAST_CELL) {
  ------------------
  |  |  198|  8.15k|#define CO_FAST_CELL    (0x40)
  ------------------
  |  Branch (401:17): [True: 56, False: 8.09k]
  ------------------
  402|     56|                ncellvars += 1;
  403|     56|            }
  404|  8.15k|        }
  405|    568|        else if (kind & CO_FAST_CELL) {
  ------------------
  |  |  198|    568|#define CO_FAST_CELL    (0x40)
  ------------------
  |  Branch (405:18): [True: 384, False: 184]
  ------------------
  406|    384|            ncellvars += 1;
  407|    384|        }
  408|    184|        else if (kind & CO_FAST_FREE) {
  ------------------
  |  |  199|    184|#define CO_FAST_FREE    (0x80)
  ------------------
  |  Branch (408:18): [True: 184, False: 0]
  ------------------
  409|    184|            nfreevars += 1;
  410|    184|        }
  411|  8.72k|    }
  412|  2.97k|    if (pnlocals != NULL) {
  ------------------
  |  Branch (412:9): [True: 2.97k, False: 0]
  ------------------
  413|  2.97k|        *pnlocals = nlocals;
  414|  2.97k|    }
  415|  2.97k|    if (pncellvars != NULL) {
  ------------------
  |  Branch (415:9): [True: 1.48k, False: 1.48k]
  ------------------
  416|  1.48k|        *pncellvars = ncellvars;
  417|  1.48k|    }
  418|  2.97k|    if (pnfreevars != NULL) {
  ------------------
  |  Branch (418:9): [True: 1.48k, False: 1.48k]
  ------------------
  419|  1.48k|        *pnfreevars = nfreevars;
  420|  1.48k|    }
  421|  2.97k|}
codeobject.c:intern_code_constants:
  690|  1.48k|{
  691|       |#ifdef Py_GIL_DISABLED
  692|       |    PyInterpreterState *interp = _PyInterpreterState_GET();
  693|       |    struct _py_code_state *state = &interp->code_state;
  694|       |    FT_MUTEX_LOCK(&state->mutex);
  695|       |#endif
  696|  1.48k|    if (intern_strings(con->names) < 0) {
  ------------------
  |  Branch (696:9): [True: 0, False: 1.48k]
  ------------------
  697|      0|        goto error;
  698|      0|    }
  699|  1.48k|    if (intern_constants(con->consts, NULL) < 0) {
  ------------------
  |  Branch (699:9): [True: 0, False: 1.48k]
  ------------------
  700|      0|        goto error;
  701|      0|    }
  702|  1.48k|    if (intern_strings(con->localsplusnames) < 0) {
  ------------------
  |  Branch (702:9): [True: 0, False: 1.48k]
  ------------------
  703|      0|        goto error;
  704|      0|    }
  705|  1.48k|    FT_MUTEX_UNLOCK(&state->mutex);
  ------------------
  |  |  206|  1.48k|#define FT_MUTEX_UNLOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (206:44): [Folded, False: 1.48k]
  |  |  ------------------
  ------------------
  706|  1.48k|    return 0;
  707|       |
  708|      0|error:
  709|      0|    FT_MUTEX_UNLOCK(&state->mutex);
  ------------------
  |  |  206|      0|#define FT_MUTEX_UNLOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (206:44): [Folded, False: 0]
  |  |  ------------------
  ------------------
  710|      0|    return -1;
  711|  1.48k|}
codeobject.c:intern_strings:
  183|  2.97k|{
  184|  2.97k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  185|  2.97k|    Py_ssize_t i;
  186|       |
  187|  16.9k|    for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
  ------------------
  |  |   27|  2.97k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.97k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.97k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (187:39): [True: 13.9k, False: 2.97k]
  ------------------
  188|  13.9k|        PyObject *v = PyTuple_GET_ITEM(tuple, i);
  ------------------
  |  |   29|  13.9k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  13.9k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  13.9k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (188:23): [True: 13.9k, False: 0]
  ------------------
  189|  13.9k|        if (v == NULL || !PyUnicode_CheckExact(v)) {
  ------------------
  |  |  104|  13.9k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  13.9k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  13.9k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  13.9k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (189:13): [True: 0, False: 13.9k]
  |  Branch (189:26): [True: 0, False: 13.9k]
  ------------------
  190|      0|            PyErr_SetString(PyExc_SystemError,
  191|      0|                            "non-string found in code slot");
  192|      0|            return -1;
  193|      0|        }
  194|  13.9k|        _PyUnicode_InternImmortal(interp, &_PyTuple_ITEMS(tuple)[i]);
  ------------------
  |  |   26|  13.9k|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|  27.8k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 13.9k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  195|  13.9k|    }
  196|  2.97k|    return 0;
  197|  2.97k|}
codeobject.c:intern_constants:
  204|  2.11k|{
  205|  2.11k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  206|  9.90k|    for (Py_ssize_t i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
  ------------------
  |  |   27|  2.11k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (206:50): [True: 7.78k, False: 2.11k]
  ------------------
  207|  7.78k|        PyObject *v = PyTuple_GET_ITEM(tuple, i);
  ------------------
  |  |   29|  7.78k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  7.78k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.78k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (207:23): [True: 7.78k, False: 0]
  ------------------
  208|  7.78k|        if (PyUnicode_CheckExact(v)) {
  ------------------
  |  |  104|  7.78k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  7.78k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  7.78k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  7.78k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 4.61k, False: 3.17k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  209|  4.61k|            if (should_intern_string(v)) {
  ------------------
  |  Branch (209:17): [True: 2.90k, False: 1.70k]
  ------------------
  210|  2.90k|                PyObject *w = v;
  211|  2.90k|                _PyUnicode_InternMortal(interp, &v);
  212|  2.90k|                if (w != v) {
  ------------------
  |  Branch (212:21): [True: 0, False: 2.90k]
  ------------------
  213|      0|                    PyTuple_SET_ITEM(tuple, i, v);
  ------------------
  |  |   40|      0|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  214|      0|                    if (modified) {
  ------------------
  |  Branch (214:25): [True: 0, False: 0]
  ------------------
  215|      0|                        *modified = 1;
  216|      0|                    }
  217|      0|                }
  218|  2.90k|            }
  219|  4.61k|        }
  220|  3.17k|        else if (PyTuple_CheckExact(v)) {
  ------------------
  |  |   28|  3.17k|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|  3.17k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  3.17k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  3.17k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 624, False: 2.55k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  221|    624|            if (intern_constants(v, NULL) < 0) {
  ------------------
  |  Branch (221:17): [True: 0, False: 624]
  ------------------
  222|      0|                return -1;
  223|      0|            }
  224|    624|        }
  225|  2.55k|        else if (PyFrozenSet_CheckExact(v)) {
  ------------------
  |  |   23|  2.55k|#define PyFrozenSet_CheckExact(ob) Py_IS_TYPE((ob), &PyFrozenSet_Type)
  |  |  ------------------
  |  |  |  |  215|  2.55k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.55k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.55k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 8, False: 2.54k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  226|      8|            PyObject *w = v;
  227|      8|            PyObject *tmp = PySequence_Tuple(v);
  228|      8|            if (tmp == NULL) {
  ------------------
  |  Branch (228:17): [True: 0, False: 8]
  ------------------
  229|      0|                return -1;
  230|      0|            }
  231|      8|            int tmp_modified = 0;
  232|      8|            if (intern_constants(tmp, &tmp_modified) < 0) {
  ------------------
  |  Branch (232:17): [True: 0, False: 8]
  ------------------
  233|      0|                Py_DECREF(tmp);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  234|      0|                return -1;
  235|      0|            }
  236|      8|            if (tmp_modified) {
  ------------------
  |  Branch (236:17): [True: 0, False: 8]
  ------------------
  237|      0|                v = PyFrozenSet_New(tmp);
  238|      0|                if (v == NULL) {
  ------------------
  |  Branch (238:21): [True: 0, False: 0]
  ------------------
  239|      0|                    Py_DECREF(tmp);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  240|      0|                    return -1;
  241|      0|                }
  242|       |
  243|      0|                PyTuple_SET_ITEM(tuple, i, v);
  ------------------
  |  |   40|      0|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  244|      0|                Py_DECREF(w);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  245|      0|                if (modified) {
  ------------------
  |  Branch (245:21): [True: 0, False: 0]
  ------------------
  246|      0|                    *modified = 1;
  247|      0|                }
  248|      0|            }
  249|      8|            Py_DECREF(tmp);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      8|        }
  251|       |#ifdef Py_GIL_DISABLED
  252|       |        else if (PySlice_Check(v)) {
  253|       |            PySliceObject *slice = (PySliceObject *)v;
  254|       |            PyObject *tmp = PyTuple_New(3);
  255|       |            if (tmp == NULL) {
  256|       |                return -1;
  257|       |            }
  258|       |            PyTuple_SET_ITEM(tmp, 0, Py_NewRef(slice->start));
  259|       |            PyTuple_SET_ITEM(tmp, 1, Py_NewRef(slice->stop));
  260|       |            PyTuple_SET_ITEM(tmp, 2, Py_NewRef(slice->step));
  261|       |            int tmp_modified = 0;
  262|       |            if (intern_constants(tmp, &tmp_modified) < 0) {
  263|       |                Py_DECREF(tmp);
  264|       |                return -1;
  265|       |            }
  266|       |            if (tmp_modified) {
  267|       |                v = PySlice_New(PyTuple_GET_ITEM(tmp, 0),
  268|       |                                PyTuple_GET_ITEM(tmp, 1),
  269|       |                                PyTuple_GET_ITEM(tmp, 2));
  270|       |                if (v == NULL) {
  271|       |                    Py_DECREF(tmp);
  272|       |                    return -1;
  273|       |                }
  274|       |                PyTuple_SET_ITEM(tuple, i, v);
  275|       |                Py_DECREF(slice);
  276|       |                if (modified) {
  277|       |                    *modified = 1;
  278|       |                }
  279|       |            }
  280|       |            Py_DECREF(tmp);
  281|       |        }
  282|       |
  283|       |        // Intern non-string constants in the free-threaded build
  284|       |        _PyThreadStateImpl *tstate = (_PyThreadStateImpl *)_PyThreadState_GET();
  285|       |        if (!_Py_IsImmortal(v) && !PyUnicode_CheckExact(v) &&
  286|       |            should_immortalize_constant(v) &&
  287|       |            !tstate->suppress_co_const_immortalization)
  288|       |        {
  289|       |            PyObject *interned = intern_one_constant(v);
  290|       |            if (interned == NULL) {
  291|       |                return -1;
  292|       |            }
  293|       |            else if (interned != v) {
  294|       |                PyTuple_SET_ITEM(tuple, i, interned);
  295|       |                Py_SETREF(v, interned);
  296|       |                if (modified) {
  297|       |                    *modified = 1;
  298|       |                }
  299|       |            }
  300|       |        }
  301|       |#endif
  302|  7.78k|    }
  303|  2.11k|    return 0;
  304|  2.11k|}
codeobject.c:should_intern_string:
  118|  4.61k|{
  119|       |#ifdef Py_GIL_DISABLED
  120|       |    // The free-threaded build interns (and immortalizes) all string constants
  121|       |    return 1;
  122|       |#else
  123|       |    // compute if s matches [a-zA-Z0-9_]
  124|  4.61k|    const unsigned char *s, *e;
  125|       |
  126|  4.61k|    if (!PyUnicode_IS_ASCII(o))
  ------------------
  |  |  227|  4.61k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.61k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (126:9): [True: 2, False: 4.61k]
  ------------------
  127|      2|        return 0;
  128|       |
  129|  4.61k|    s = PyUnicode_1BYTE_DATA(o);
  ------------------
  |  |  291|  4.61k|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|  4.61k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  130|  4.61k|    e = s + PyUnicode_GET_LENGTH(o);
  ------------------
  |  |  299|  4.61k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.61k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  131|  37.0k|    for (; s != e; s++) {
  ------------------
  |  Branch (131:12): [True: 34.1k, False: 2.90k]
  ------------------
  132|  34.1k|        if (!Py_ISALNUM(*s) && *s != '_')
  ------------------
  |  |   26|  68.2k|#define Py_ISALNUM(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM)
  |  |  ------------------
  |  |  |  |  138|  34.1k|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISALNUM(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM)
  |  |  ------------------
  |  |  |  |   12|  34.1k|#define PY_CTF_ALNUM  (PY_CTF_ALPHA|PY_CTF_DIGIT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   10|  34.1k|#define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |    8|  34.1k|#define PY_CTF_LOWER  0x01
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |    9|  34.1k|#define PY_CTF_UPPER  0x02
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define PY_CTF_ALNUM  (PY_CTF_ALPHA|PY_CTF_DIGIT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|  34.1k|#define PY_CTF_DIGIT  0x04
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (132:13): [True: 3.68k, False: 30.4k]
  |  Branch (132:32): [True: 1.70k, False: 1.98k]
  ------------------
  133|  1.70k|            return 0;
  134|  34.1k|    }
  135|  2.90k|    return 1;
  136|  4.61k|#endif
  137|  4.61k|}
codeobject.c:init_code:
  512|  1.48k|{
  513|  1.48k|    int nlocalsplus = (int)PyTuple_GET_SIZE(con->localsplusnames);
  ------------------
  |  |   27|  1.48k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  514|  1.48k|    int nlocals, ncellvars, nfreevars;
  515|  1.48k|    get_localsplus_counts(con->localsplusnames, con->localspluskinds,
  516|  1.48k|                          &nlocals, &ncellvars, &nfreevars);
  517|  1.48k|    if (con->stacksize == 0) {
  ------------------
  |  Branch (517:9): [True: 0, False: 1.48k]
  ------------------
  518|      0|        con->stacksize = 1;
  519|      0|    }
  520|       |
  521|  1.48k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  522|  1.48k|    co->co_filename = Py_NewRef(con->filename);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  523|  1.48k|    co->co_name = Py_NewRef(con->name);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  524|  1.48k|    co->co_qualname = Py_NewRef(con->qualname);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  525|  1.48k|    _PyUnicode_InternMortal(interp, &co->co_filename);
  526|  1.48k|    _PyUnicode_InternMortal(interp, &co->co_name);
  527|  1.48k|    _PyUnicode_InternMortal(interp, &co->co_qualname);
  528|  1.48k|    co->co_flags = con->flags;
  529|       |
  530|  1.48k|    co->co_firstlineno = con->firstlineno;
  531|  1.48k|    co->co_linetable = Py_NewRef(con->linetable);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  532|       |
  533|  1.48k|    co->co_consts = Py_NewRef(con->consts);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  534|  1.48k|    co->co_names = Py_NewRef(con->names);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  535|       |
  536|  1.48k|    co->co_localsplusnames = Py_NewRef(con->localsplusnames);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|  1.48k|    co->co_localspluskinds = Py_NewRef(con->localspluskinds);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  538|       |
  539|  1.48k|    co->co_argcount = con->argcount;
  540|  1.48k|    co->co_posonlyargcount = con->posonlyargcount;
  541|  1.48k|    co->co_kwonlyargcount = con->kwonlyargcount;
  542|       |
  543|  1.48k|    co->co_stacksize = con->stacksize;
  544|       |
  545|  1.48k|    co->co_exceptiontable = Py_NewRef(con->exceptiontable);
  ------------------
  |  |  550|  1.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  546|       |
  547|       |    /* derived values */
  548|  1.48k|    co->co_nlocalsplus = nlocalsplus;
  549|  1.48k|    co->co_nlocals = nlocals;
  550|  1.48k|    co->co_framesize = nlocalsplus + con->stacksize + FRAME_SPECIALS_SIZE;
  ------------------
  |  |  122|  1.48k|#define FRAME_SPECIALS_SIZE ((int)((sizeof(_PyInterpreterFrame)-1)/sizeof(PyObject *)))
  ------------------
  551|  1.48k|    co->co_ncellvars = ncellvars;
  552|  1.48k|    co->co_nfreevars = nfreevars;
  553|  1.48k|    FT_MUTEX_LOCK(&interp->func_state.mutex);
  ------------------
  |  |  204|  1.48k|#define FT_MUTEX_LOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (204:42): [Folded, False: 1.48k]
  |  |  ------------------
  ------------------
  554|  1.48k|    co->co_version = interp->func_state.next_version;
  555|  1.48k|    if (interp->func_state.next_version != 0) {
  ------------------
  |  Branch (555:9): [True: 1.48k, False: 0]
  ------------------
  556|  1.48k|        interp->func_state.next_version++;
  557|  1.48k|    }
  558|  1.48k|    FT_MUTEX_UNLOCK(&interp->func_state.mutex);
  ------------------
  |  |  206|  1.48k|#define FT_MUTEX_UNLOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (206:44): [Folded, False: 1.48k]
  |  |  ------------------
  ------------------
  559|  1.48k|    co->_co_monitoring = NULL;
  560|  1.48k|    co->_co_instrumentation_version = 0;
  561|       |    /* not set */
  562|  1.48k|    co->co_weakreflist = NULL;
  563|  1.48k|    co->co_extra = NULL;
  564|  1.48k|    co->_co_cached = NULL;
  565|  1.48k|    co->co_executors = NULL;
  566|       |
  567|  1.48k|    memcpy(_PyCode_CODE(co), PyBytes_AS_STRING(con->code),
  ------------------
  |  |   16|  1.48k|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|  1.48k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
                  memcpy(_PyCode_CODE(co), PyBytes_AS_STRING(con->code),
  ------------------
  |  |   27|  1.48k|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  568|  1.48k|           PyBytes_GET_SIZE(con->code));
  ------------------
  |  |   33|  1.48k|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  569|       |#ifdef Py_GIL_DISABLED
  570|       |    co->co_tlbc = _PyCodeArray_New(INITIAL_SPECIALIZED_CODE_SIZE);
  571|       |    if (co->co_tlbc == NULL) {
  572|       |        return -1;
  573|       |    }
  574|       |    co->co_tlbc->entries[0] = co->co_code_adaptive;
  575|       |#endif
  576|  1.48k|    int entry_point = 0;
  577|  2.16k|    while (entry_point < Py_SIZE(co)) {
  ------------------
  |  |  214|  2.16k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.16k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.16k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (577:12): [True: 2.16k, False: 0]
  ------------------
  578|  2.16k|        if (_PyCode_CODE(co)[entry_point].op.code == RESUME &&
  ------------------
  |  |   16|  2.16k|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|  2.16k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
                      if (_PyCode_CODE(co)[entry_point].op.code == RESUME &&
  ------------------
  |  |  133|  4.32k|#define RESUME                                 128
  ------------------
  |  Branch (578:13): [True: 1.52k, False: 634]
  ------------------
  579|  1.52k|           (_PyCode_CODE(co)[entry_point].op.arg & RESUME_OPARG_LOCATION_MASK) != RESUME_AT_GEN_EXPR_START
  ------------------
  |  |   16|  1.52k|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|  1.52k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
                         (_PyCode_CODE(co)[entry_point].op.arg & RESUME_OPARG_LOCATION_MASK) != RESUME_AT_GEN_EXPR_START
  ------------------
  |  |   92|  1.52k|#define RESUME_OPARG_LOCATION_MASK 0x7
  ------------------
                         (_PyCode_CODE(co)[entry_point].op.arg & RESUME_OPARG_LOCATION_MASK) != RESUME_AT_GEN_EXPR_START
  ------------------
  |  |   90|  1.52k|#define RESUME_AT_GEN_EXPR_START 4
  ------------------
  |  Branch (579:12): [True: 1.48k, False: 40]
  ------------------
  580|  2.16k|        ) {
  581|  1.48k|            break;
  582|  1.48k|        }
  583|    674|        entry_point++;
  584|    674|    }
  585|  1.48k|    co->_co_firsttraceable = entry_point;
  586|       |
  587|       |#ifdef Py_GIL_DISABLED
  588|       |    int enable_counters = interp->config.tlbc_enabled && interp->opt_config.specialization_enabled;
  589|       |    _PyCode_Quicken(_PyCode_CODE(co), Py_SIZE(co), enable_counters, co->co_flags);
  590|       |#else
  591|  1.48k|    _PyCode_Quicken(_PyCode_CODE(co), Py_SIZE(co), interp->opt_config.specialization_enabled, co->co_flags);
  ------------------
  |  |   16|  1.48k|#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
  |  |  ------------------
  |  |  |  |  277|  1.48k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
                  _PyCode_Quicken(_PyCode_CODE(co), Py_SIZE(co), interp->opt_config.specialization_enabled, co->co_flags);
  ------------------
  |  |  214|  1.48k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  592|  1.48k|#endif
  593|  1.48k|    notify_code_watchers(PY_CODE_EVENT_CREATE, co);
  594|  1.48k|    return 0;
  595|  1.48k|}
codeobject.c:notify_code_watchers:
   42|  1.76k|{
   43|  1.76k|    assert(Py_REFCNT(co) > 0);
  ------------------
  |  Branch (43:5): [True: 1.76k, False: 0]
  ------------------
   44|  1.76k|    PyInterpreterState *interp = _PyInterpreterState_GET();
   45|  1.76k|    assert(interp->_initialized);
  ------------------
  |  Branch (45:5): [True: 1.76k, False: 0]
  ------------------
   46|  1.76k|    uint8_t bits = interp->active_code_watchers;
   47|  1.76k|    int i = 0;
   48|  1.76k|    while (bits) {
  ------------------
  |  Branch (48:12): [True: 0, False: 1.76k]
  ------------------
   49|      0|        assert(i < CODE_MAX_WATCHERS);
  ------------------
  |  Branch (49:9): [True: 0, False: 0]
  ------------------
   50|      0|        if (bits & 1) {
  ------------------
  |  Branch (50:13): [True: 0, False: 0]
  ------------------
   51|      0|            PyCode_WatchCallback cb = interp->code_watchers[i];
   52|       |            // callback must be non-null if the watcher bit is set
   53|      0|            assert(cb != NULL);
  ------------------
  |  Branch (53:13): [True: 0, False: 0]
  ------------------
   54|      0|            if (cb(event, co) < 0) {
  ------------------
  |  Branch (54:17): [True: 0, False: 0]
  ------------------
   55|      0|                PyErr_FormatUnraisable(
   56|      0|                    "Exception ignored in %s watcher callback for %R",
   57|      0|                    code_event_name(event), co);
   58|      0|            }
   59|      0|        }
   60|      0|        i++;
   61|      0|        bits >>= 1;
   62|      0|    }
   63|  1.76k|}
codeobject.c:code_dealloc:
 2395|    276|{
 2396|    276|    PyThreadState *tstate = PyThreadState_GET();
  ------------------
  |  |   63|    276|#define PyThreadState_GET() PyThreadState_Get()
  ------------------
 2397|    276|    _Py_atomic_add_uint64(&tstate->interp->_code_object_generation, 1);
 2398|    276|    PyCodeObject *co = _PyCodeObject_CAST(self);
  ------------------
  |  |  114|    276|#define _PyCodeObject_CAST(op)  (assert(PyCode_Check(op)), (PyCodeObject *)(op))
  ------------------
  |  Branch (2398:24): [True: 276, False: 0]
  ------------------
 2399|      0|    _PyObject_ResurrectStart(self);
 2400|    276|    notify_code_watchers(PY_CODE_EVENT_DESTROY, co);
 2401|    276|    if (_PyObject_ResurrectEnd(self)) {
  ------------------
  |  Branch (2401:9): [True: 0, False: 276]
  ------------------
 2402|      0|        return;
 2403|      0|    }
 2404|       |
 2405|       |#ifdef Py_GIL_DISABLED
 2406|       |    PyObject_GC_UnTrack(co);
 2407|       |#endif
 2408|       |
 2409|    276|    _PyFunction_ClearCodeByVersion(co->co_version);
 2410|    276|    if (co->co_extra != NULL) {
  ------------------
  |  Branch (2410:9): [True: 0, False: 276]
  ------------------
 2411|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
 2412|      0|        _PyCodeObjectExtra *co_extra = co->co_extra;
 2413|       |
 2414|      0|        for (Py_ssize_t i = 0; i < co_extra->ce_size; i++) {
  ------------------
  |  Branch (2414:32): [True: 0, False: 0]
  ------------------
 2415|      0|            freefunc free_extra = interp->co_extra_freefuncs[i];
 2416|       |
 2417|      0|            if (free_extra != NULL) {
  ------------------
  |  Branch (2417:17): [True: 0, False: 0]
  ------------------
 2418|      0|                free_extra(co_extra->ce_extras[i]);
 2419|      0|            }
 2420|      0|        }
 2421|       |
 2422|      0|        PyMem_Free(co_extra);
 2423|      0|    }
 2424|       |#ifdef _Py_TIER2
 2425|       |    if (co->co_executors != NULL) {
 2426|       |        clear_executors(co);
 2427|       |    }
 2428|       |#endif
 2429|       |
 2430|    276|    Py_XDECREF(co->co_consts);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2431|    276|    Py_XDECREF(co->co_names);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2432|    276|    Py_XDECREF(co->co_localsplusnames);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2433|    276|    Py_XDECREF(co->co_localspluskinds);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2434|    276|    Py_XDECREF(co->co_filename);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2435|    276|    Py_XDECREF(co->co_name);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2436|    276|    Py_XDECREF(co->co_qualname);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2437|    276|    Py_XDECREF(co->co_linetable);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2438|    276|    Py_XDECREF(co->co_exceptiontable);
  ------------------
  |  |  524|    276|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2439|       |#ifdef Py_GIL_DISABLED
 2440|       |    assert(co->_co_unique_id == _Py_INVALID_UNIQUE_ID);
 2441|       |#endif
 2442|    276|    if (co->_co_cached != NULL) {
  ------------------
  |  Branch (2442:9): [True: 0, False: 276]
  ------------------
 2443|      0|        Py_XDECREF(co->_co_cached->_co_code);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2444|      0|        Py_XDECREF(co->_co_cached->_co_cellvars);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2445|      0|        Py_XDECREF(co->_co_cached->_co_freevars);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2446|      0|        Py_XDECREF(co->_co_cached->_co_varnames);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2447|      0|        PyMem_Free(co->_co_cached);
 2448|      0|    }
 2449|    276|    FT_CLEAR_WEAKREFS(self, co->co_weakreflist);
  ------------------
  |  |   47|    276|    do {                                            \
  |  |   48|    276|        assert(Py_REFCNT(obj) == 0);                \
  |  |   49|    276|        if (weakref_list != NULL) {                 \
  |  |  ------------------
  |  |  |  Branch (49:13): [True: 0, False: 276]
  |  |  ------------------
  |  |   50|      0|            PyObject_ClearWeakRefs(obj);            \
  |  |   51|      0|        }                                           \
  |  |   52|    276|    } while (0)
  |  |  ------------------
  |  |  |  Branch (52:14): [Folded, False: 276]
  |  |  ------------------
  ------------------
  |  Branch (2449:5): [True: 276, False: 0]
  ------------------
 2450|    276|    free_monitoring_data(co->_co_monitoring);
 2451|       |#ifdef Py_GIL_DISABLED
 2452|       |    // The first element always points to the mutable bytecode at the end of
 2453|       |    // the code object, which will be freed when the code object is freed.
 2454|       |    for (Py_ssize_t i = 1; i < co->co_tlbc->size; i++) {
 2455|       |        char *entry = co->co_tlbc->entries[i];
 2456|       |        if (entry != NULL) {
 2457|       |            PyMem_Free(entry);
 2458|       |        }
 2459|       |    }
 2460|       |    PyMem_Free(co->co_tlbc);
 2461|       |#endif
 2462|    276|    PyObject_Free(co);
 2463|    276|}
codeobject.c:free_monitoring_data:
 2371|    276|{
 2372|    276|    if (data == NULL) {
  ------------------
  |  Branch (2372:9): [True: 276, False: 0]
  ------------------
 2373|    276|        return;
 2374|    276|    }
 2375|      0|    if (data->tools) {
  ------------------
  |  Branch (2375:9): [True: 0, False: 0]
  ------------------
 2376|      0|        PyMem_Free(data->tools);
 2377|      0|    }
 2378|      0|    if (data->lines) {
  ------------------
  |  Branch (2378:9): [True: 0, False: 0]
  ------------------
 2379|      0|        PyMem_Free(data->lines);
 2380|      0|    }
 2381|      0|    if (data->line_tools) {
  ------------------
  |  Branch (2381:9): [True: 0, False: 0]
  ------------------
 2382|      0|        PyMem_Free(data->line_tools);
 2383|      0|    }
 2384|      0|    if (data->per_instruction_opcodes) {
  ------------------
  |  Branch (2384:9): [True: 0, False: 0]
  ------------------
 2385|      0|        PyMem_Free(data->per_instruction_opcodes);
 2386|      0|    }
 2387|      0|    if (data->per_instruction_tools) {
  ------------------
  |  Branch (2387:9): [True: 0, False: 0]
  ------------------
 2388|      0|        PyMem_Free(data->per_instruction_tools);
 2389|      0|    }
 2390|      0|    PyMem_Free(data);
 2391|      0|}

PyDescr_NewMethod:
  928|  1.55k|{
  929|       |    /* Figure out correct vectorcall function to use */
  930|  1.55k|    vectorcallfunc vectorcall;
  931|  1.55k|    switch (method->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS |
  ------------------
  |  |   95|  1.55k|#define METH_VARARGS  0x0001
  ------------------
                  switch (method->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS |
  ------------------
  |  |  115|  1.55k|#  define METH_FASTCALL  0x0080
  ------------------
                  switch (method->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS |
  ------------------
  |  |   98|  1.55k|#define METH_NOARGS   0x0004
  ------------------
  932|  1.55k|                                METH_O | METH_KEYWORDS | METH_METHOD))
  ------------------
  |  |   99|  1.55k|#define METH_O        0x0008
  ------------------
                                              METH_O | METH_KEYWORDS | METH_METHOD))
  ------------------
  |  |   96|  1.55k|#define METH_KEYWORDS 0x0002
  ------------------
                                              METH_O | METH_KEYWORDS | METH_METHOD))
  ------------------
  |  |  133|  1.55k|#define METH_METHOD 0x0200
  ------------------
  933|  1.55k|    {
  934|     36|        case METH_VARARGS:
  ------------------
  |  |   95|     36|#define METH_VARARGS  0x0001
  ------------------
  |  Branch (934:9): [True: 36, False: 1.51k]
  ------------------
  935|     36|            vectorcall = method_vectorcall_VARARGS;
  936|     36|            break;
  937|     42|        case METH_VARARGS | METH_KEYWORDS:
  ------------------
  |  |   95|     42|#define METH_VARARGS  0x0001
  ------------------
                      case METH_VARARGS | METH_KEYWORDS:
  ------------------
  |  |   96|     42|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (937:9): [True: 42, False: 1.50k]
  ------------------
  938|     42|            vectorcall = method_vectorcall_VARARGS_KEYWORDS;
  939|     42|            break;
  940|    218|        case METH_FASTCALL:
  ------------------
  |  |  115|    218|#  define METH_FASTCALL  0x0080
  ------------------
  |  Branch (940:9): [True: 218, False: 1.33k]
  ------------------
  941|    218|            vectorcall = method_vectorcall_FASTCALL;
  942|    218|            break;
  943|    108|        case METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |  115|    108|#  define METH_FASTCALL  0x0080
  ------------------
                      case METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |   96|    108|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (943:9): [True: 108, False: 1.44k]
  ------------------
  944|    108|            vectorcall = method_vectorcall_FASTCALL_KEYWORDS;
  945|    108|            break;
  946|    808|        case METH_NOARGS:
  ------------------
  |  |   98|    808|#define METH_NOARGS   0x0004
  ------------------
  |  Branch (946:9): [True: 808, False: 742]
  ------------------
  947|    808|            vectorcall = method_vectorcall_NOARGS;
  948|    808|            break;
  949|    288|        case METH_O:
  ------------------
  |  |   99|    288|#define METH_O        0x0008
  ------------------
  |  Branch (949:9): [True: 288, False: 1.26k]
  ------------------
  950|    288|            vectorcall = method_vectorcall_O;
  951|    288|            break;
  952|     50|        case METH_METHOD | METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |  133|     50|#define METH_METHOD 0x0200
  ------------------
                      case METH_METHOD | METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |  115|     50|#  define METH_FASTCALL  0x0080
  ------------------
                      case METH_METHOD | METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |   96|     50|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (952:9): [True: 50, False: 1.50k]
  ------------------
  953|     50|            vectorcall = method_vectorcall_FASTCALL_KEYWORDS_METHOD;
  954|     50|            break;
  955|      0|        default:
  ------------------
  |  Branch (955:9): [True: 0, False: 1.55k]
  ------------------
  956|      0|            PyErr_Format(PyExc_SystemError,
  957|      0|                         "%s() method: bad call flags", method->ml_name);
  958|      0|            return NULL;
  959|  1.55k|    }
  960|       |
  961|  1.55k|    PyMethodDescrObject *descr;
  962|       |
  963|  1.55k|    descr = (PyMethodDescrObject *)descr_new(&PyMethodDescr_Type,
  964|  1.55k|                                             type, method->ml_name);
  965|  1.55k|    if (descr != NULL) {
  ------------------
  |  Branch (965:9): [True: 1.55k, False: 0]
  ------------------
  966|  1.55k|        descr->d_method = method;
  967|  1.55k|        descr->vectorcall = vectorcall;
  968|  1.55k|    }
  969|  1.55k|    return (PyObject *)descr;
  970|  1.55k|}
PyDescr_NewClassMethod:
  974|    108|{
  975|    108|    PyMethodDescrObject *descr;
  976|       |
  977|    108|    descr = (PyMethodDescrObject *)descr_new(&PyClassMethodDescr_Type,
  978|    108|                                             type, method->ml_name);
  979|    108|    if (descr != NULL)
  ------------------
  |  Branch (979:9): [True: 108, False: 0]
  ------------------
  980|    108|        descr->d_method = method;
  981|    108|    return (PyObject *)descr;
  982|    108|}
PyDescr_NewMember:
  986|    638|{
  987|    638|    PyMemberDescrObject *descr;
  988|       |
  989|    638|    if (member->flags & Py_RELATIVE_OFFSET) {
  ------------------
  |  |   86|    638|#define Py_RELATIVE_OFFSET     (1 << 3)
  ------------------
  |  Branch (989:9): [True: 0, False: 638]
  ------------------
  990|      0|        PyErr_SetString(
  991|      0|            PyExc_SystemError,
  992|      0|            "PyDescr_NewMember used with Py_RELATIVE_OFFSET");
  993|      0|        return NULL;
  994|      0|    }
  995|    638|    descr = (PyMemberDescrObject *)descr_new(&PyMemberDescr_Type,
  996|    638|                                             type, member->name);
  997|    638|    if (descr != NULL)
  ------------------
  |  Branch (997:9): [True: 638, False: 0]
  ------------------
  998|    638|        descr->d_member = member;
  999|    638|    return (PyObject *)descr;
 1000|    638|}
PyDescr_NewGetSet:
 1004|    438|{
 1005|    438|    PyGetSetDescrObject *descr;
 1006|       |
 1007|    438|    descr = (PyGetSetDescrObject *)descr_new(&PyGetSetDescr_Type,
 1008|    438|                                             type, getset->name);
 1009|    438|    if (descr != NULL)
  ------------------
  |  Branch (1009:9): [True: 438, False: 0]
  ------------------
 1010|    438|        descr->d_getset = getset;
 1011|    438|    return (PyObject *)descr;
 1012|    438|}
PyDescr_NewWrapper:
 1016|  2.03k|{
 1017|  2.03k|    PyWrapperDescrObject *descr;
 1018|       |
 1019|  2.03k|    descr = (PyWrapperDescrObject *)descr_new(&PyWrapperDescr_Type,
 1020|  2.03k|                                             type, base->name);
 1021|  2.03k|    if (descr != NULL) {
  ------------------
  |  Branch (1021:9): [True: 2.03k, False: 0]
  ------------------
 1022|  2.03k|        descr->d_base = base;
 1023|  2.03k|        descr->d_wrapped = wrapped;
 1024|  2.03k|    }
 1025|  2.03k|    return (PyObject *)descr;
 1026|  2.03k|}
PyDescr_IsData:
 1030|  1.68k|{
 1031|  1.68k|    return Py_TYPE(ob)->tp_descr_set != NULL;
  ------------------
  |  |  213|  1.68k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.68k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.68k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1032|  1.68k|}
PyDictProxy_New:
 1284|    220|{
 1285|    220|    mappingproxyobject *pp;
 1286|       |
 1287|    220|    if (mappingproxy_check_mapping(mapping) == -1)
  ------------------
  |  Branch (1287:9): [True: 0, False: 220]
  ------------------
 1288|      0|        return NULL;
 1289|       |
 1290|    220|    pp = PyObject_GC_New(mappingproxyobject, &PyDictProxy_Type);
  ------------------
  |  |  181|    220|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|    220|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1291|    220|    if (pp != NULL) {
  ------------------
  |  Branch (1291:9): [True: 220, False: 0]
  ------------------
 1292|    220|        pp->mapping = Py_NewRef(mapping);
  ------------------
  |  |  550|    220|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    220|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    220|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1293|    220|        _PyObject_GC_TRACK(pp);
  ------------------
  |  |  513|    220|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    220|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    220|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1294|    220|    }
 1295|    220|    return (PyObject *)pp;
 1296|    220|}
PyWrapper_New:
 1492|      2|{
 1493|      2|    wrapperobject *wp;
 1494|      2|    PyWrapperDescrObject *descr;
 1495|       |
 1496|      2|    assert(PyObject_TypeCheck(d, &PyWrapperDescr_Type));
  ------------------
  |  Branch (1496:5): [True: 2, False: 0]
  ------------------
 1497|      2|    descr = (PyWrapperDescrObject *)d;
 1498|      2|    assert(_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self),
  ------------------
  |  Branch (1498:5): [True: 2, False: 0]
  ------------------
 1499|      2|                                    (PyObject *)PyDescr_TYPE(descr)));
 1500|       |
 1501|      2|    wp = PyObject_GC_New(wrapperobject, &_PyMethodWrapper_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1502|      2|    if (wp != NULL) {
  ------------------
  |  Branch (1502:9): [True: 2, False: 0]
  ------------------
 1503|      2|        wp->descr = (PyWrapperDescrObject*)Py_NewRef(descr);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1504|      2|        wp->self = Py_NewRef(self);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1505|      2|        _PyObject_GC_TRACK(wp);
  ------------------
  |  |  513|      2|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1506|      2|    }
 1507|      2|    return (PyObject *)wp;
 1508|      2|}
descrobject.c:descr_dealloc:
   24|     60|{
   25|     60|    PyDescrObject *descr = (PyDescrObject *)self;
   26|     60|    _PyObject_GC_UNTRACK(descr);
  ------------------
  |  |  515|     60|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   27|     60|    Py_XDECREF(descr->d_type);
  ------------------
  |  |  524|     60|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   28|     60|    Py_XDECREF(descr->d_name);
  ------------------
  |  |  524|     60|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   29|     60|    Py_XDECREF(descr->d_qualname);
  ------------------
  |  |  524|     60|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   30|     60|    PyObject_GC_Del(descr);
   31|     60|}
descrobject.c:descr_traverse:
  711|  9.40k|{
  712|  9.40k|    PyDescrObject *descr = (PyDescrObject *)self;
  713|  9.40k|    Py_VISIT(descr->d_type);
  ------------------
  |  |  194|  9.40k|    do {                                                                \
  |  |  195|  9.40k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 9.40k, False: 0]
  |  |  ------------------
  |  |  196|  9.40k|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|  9.40k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.40k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|  9.40k|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 9.40k]
  |  |  ------------------
  |  |  198|  9.40k|                return vret;                                            \
  |  |  199|  9.40k|        }                                                               \
  |  |  200|  9.40k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 9.40k]
  |  |  ------------------
  ------------------
  714|  9.40k|    return 0;
  715|  9.40k|}
descrobject.c:method_get:
  139|    122|{
  140|    122|    PyMethodDescrObject *descr = (PyMethodDescrObject *)self;
  141|    122|    if (obj == NULL) {
  ------------------
  |  Branch (141:9): [True: 0, False: 122]
  ------------------
  142|      0|        return Py_NewRef(descr);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  143|      0|    }
  144|    122|    if (descr_check((PyDescrObject *)descr, obj) < 0) {
  ------------------
  |  Branch (144:9): [True: 0, False: 122]
  ------------------
  145|      0|        return NULL;
  146|      0|    }
  147|    122|    if (descr->d_method->ml_flags & METH_METHOD) {
  ------------------
  |  |  133|    122|#define METH_METHOD 0x0200
  ------------------
  |  Branch (147:9): [True: 4, False: 118]
  ------------------
  148|      4|        if (type == NULL || PyType_Check(type)) {
  ------------------
  |  |  766|      4|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 4, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (148:13): [True: 0, False: 4]
  ------------------
  149|      4|            return PyCMethod_New(descr->d_method, obj, NULL, descr->d_common.d_type);
  150|      4|        } else {
  151|      0|            PyErr_Format(PyExc_TypeError,
  152|      0|                        "descriptor '%V' needs a type, not '%s', as arg 2",
  153|      0|                        descr_name((PyDescrObject *)descr), "?",
  154|      0|                        Py_TYPE(type)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  155|      0|            return NULL;
  156|      0|        }
  157|    118|    } else {
  158|       |        return PyCFunction_NewEx(descr->d_method, obj, NULL);
  ------------------
  |  |   87|    118|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
  159|    118|    }
  160|    122|}
descrobject.c:descr_check:
   81|  1.98k|{
   82|  1.98k|    if (!PyObject_TypeCheck(obj, descr->d_type)) {
  ------------------
  |  |  378|  1.98k|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  1.98k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.98k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (82:9): [True: 0, False: 1.98k]
  ------------------
   83|      0|        PyErr_Format(PyExc_TypeError,
   84|      0|                     "descriptor '%V' for '%.100s' objects "
   85|      0|                     "doesn't apply to a '%.100s' object",
   86|      0|                     descr_name((PyDescrObject *)descr), "?",
   87|      0|                     descr->d_type->tp_name,
   88|      0|                     Py_TYPE(obj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   89|      0|        return -1;
   90|      0|    }
   91|  1.98k|    return 0;
   92|  1.98k|}
descrobject.c:classmethod_get:
   96|    346|{
   97|    346|    PyMethodDescrObject *descr = (PyMethodDescrObject *)self;
   98|       |    /* Ensure a valid type.  Class methods ignore obj. */
   99|    346|    if (type == NULL) {
  ------------------
  |  Branch (99:9): [True: 0, False: 346]
  ------------------
  100|      0|        if (obj != NULL)
  ------------------
  |  Branch (100:13): [True: 0, False: 0]
  ------------------
  101|      0|            type = (PyObject *)Py_TYPE(obj);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  102|      0|        else {
  103|       |            /* Wot - no type?! */
  104|      0|            PyErr_Format(PyExc_TypeError,
  105|      0|                         "descriptor '%V' for type '%.100s' "
  106|      0|                         "needs either an object or a type",
  107|      0|                         descr_name((PyDescrObject *)descr), "?",
  108|      0|                         PyDescr_TYPE(descr)->tp_name);
  ------------------
  |  |   35|      0|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  109|      0|            return NULL;
  110|      0|        }
  111|      0|    }
  112|    346|    if (!PyType_Check(type)) {
  ------------------
  |  |  766|    346|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    346|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    346|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (112:9): [True: 0, False: 346]
  ------------------
  113|      0|        PyErr_Format(PyExc_TypeError,
  114|      0|                     "descriptor '%V' for type '%.100s' "
  115|      0|                     "needs a type, not a '%.100s' as arg 2",
  116|      0|                     descr_name((PyDescrObject *)descr), "?",
  117|      0|                     PyDescr_TYPE(descr)->tp_name,
  ------------------
  |  |   35|      0|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  118|      0|                     Py_TYPE(type)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  119|      0|        return NULL;
  120|      0|    }
  121|    346|    if (!PyType_IsSubtype((PyTypeObject *)type, PyDescr_TYPE(descr))) {
  ------------------
  |  |   35|    346|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  |  Branch (121:9): [True: 0, False: 346]
  ------------------
  122|      0|        PyErr_Format(PyExc_TypeError,
  123|      0|                     "descriptor '%V' requires a subtype of '%.100s' "
  124|      0|                     "but received '%.100s'",
  125|      0|                     descr_name((PyDescrObject *)descr), "?",
  126|      0|                     PyDescr_TYPE(descr)->tp_name,
  ------------------
  |  |   35|      0|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  127|      0|                     ((PyTypeObject *)type)->tp_name);
  128|      0|        return NULL;
  129|      0|    }
  130|    346|    PyTypeObject *cls = NULL;
  131|    346|    if (descr->d_method->ml_flags & METH_METHOD) {
  ------------------
  |  |  133|    346|#define METH_METHOD 0x0200
  ------------------
  |  Branch (131:9): [True: 0, False: 346]
  ------------------
  132|      0|        cls = descr->d_common.d_type;
  133|      0|    }
  134|       |    return PyCMethod_New(descr->d_method, type, NULL, cls);
  135|    346|}
descrobject.c:member_get:
  164|    370|{
  165|    370|    PyMemberDescrObject *descr = (PyMemberDescrObject *)self;
  166|    370|    if (obj == NULL) {
  ------------------
  |  Branch (166:9): [True: 0, False: 370]
  ------------------
  167|      0|        return Py_NewRef(descr);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  168|      0|    }
  169|    370|    if (descr_check((PyDescrObject *)descr, obj) < 0) {
  ------------------
  |  Branch (169:9): [True: 0, False: 370]
  ------------------
  170|      0|        return NULL;
  171|      0|    }
  172|       |
  173|    370|    if (descr->d_member->flags & Py_AUDIT_READ) {
  ------------------
  |  |   84|    370|#define Py_AUDIT_READ          (1 << 1) // Added in 3.10, harmless no-op before that
  ------------------
  |  Branch (173:9): [True: 0, False: 370]
  ------------------
  174|      0|        if (PySys_Audit("object.__getattr__", "Os",
  ------------------
  |  Branch (174:13): [True: 0, False: 0]
  ------------------
  175|      0|            obj ? obj : Py_None, descr->d_member->name) < 0) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (175:13): [True: 0, False: 0]
  ------------------
  176|      0|            return NULL;
  177|      0|        }
  178|      0|    }
  179|       |
  180|    370|    return PyMember_GetOne((char *)obj, descr->d_member);
  181|    370|}
descrobject.c:member_set:
  234|    130|{
  235|    130|    PyMemberDescrObject *descr = (PyMemberDescrObject *)self;
  236|    130|    if (descr_setcheck((PyDescrObject *)descr, obj, value) < 0) {
  ------------------
  |  Branch (236:9): [True: 0, False: 130]
  ------------------
  237|      0|        return -1;
  238|      0|    }
  239|    130|    return PyMember_SetOne((char *)obj, descr->d_member, value);
  240|    130|}
descrobject.c:descr_setcheck:
  218|    226|{
  219|    226|    assert(obj != NULL);
  ------------------
  |  Branch (219:5): [True: 226, False: 0]
  ------------------
  220|    226|    if (!PyObject_TypeCheck(obj, descr->d_type)) {
  ------------------
  |  |  378|    226|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    226|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    226|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (220:9): [True: 0, False: 226]
  ------------------
  221|      0|        PyErr_Format(PyExc_TypeError,
  222|      0|                     "descriptor '%V' for '%.100s' objects "
  223|      0|                     "doesn't apply to a '%.100s' object",
  224|      0|                     descr_name(descr), "?",
  225|      0|                     descr->d_type->tp_name,
  226|      0|                     Py_TYPE(obj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  227|      0|        return -1;
  228|      0|    }
  229|    226|    return 0;
  230|    226|}
descrobject.c:getset_get:
  185|    884|{
  186|    884|    PyGetSetDescrObject *descr = (PyGetSetDescrObject *)self;
  187|    884|    if (obj == NULL) {
  ------------------
  |  Branch (187:9): [True: 0, False: 884]
  ------------------
  188|      0|        return Py_NewRef(descr);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  189|      0|    }
  190|    884|    if (descr_check((PyDescrObject *)descr, obj) < 0) {
  ------------------
  |  Branch (190:9): [True: 0, False: 884]
  ------------------
  191|      0|        return NULL;
  192|      0|    }
  193|    884|    if (descr->d_getset->get != NULL)
  ------------------
  |  Branch (193:9): [True: 884, False: 0]
  ------------------
  194|    884|        return descr_get_trampoline_call(
  ------------------
  |  |   63|    884|    (get)((obj), (closure))
  ------------------
  195|    884|            descr->d_getset->get, obj, descr->d_getset->closure);
  196|      0|    PyErr_Format(PyExc_AttributeError,
  197|      0|                 "attribute '%V' of '%.100s' objects is not readable",
  198|      0|                 descr_name((PyDescrObject *)descr), "?",
  199|      0|                 PyDescr_TYPE(descr)->tp_name);
  ------------------
  |  |   35|      0|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  200|       |    return NULL;
  201|    884|}
descrobject.c:getset_set:
  244|     96|{
  245|     96|    PyGetSetDescrObject *descr = (PyGetSetDescrObject *)self;
  246|     96|    if (descr_setcheck((PyDescrObject *)descr, obj, value) < 0) {
  ------------------
  |  Branch (246:9): [True: 0, False: 96]
  ------------------
  247|      0|        return -1;
  248|      0|    }
  249|     96|    if (descr->d_getset->set != NULL) {
  ------------------
  |  Branch (249:9): [True: 96, False: 0]
  ------------------
  250|     96|        return descr_set_trampoline_call(
  ------------------
  |  |   60|     96|    (set)((obj), (value), (closure))
  ------------------
  251|     96|            descr->d_getset->set, obj, value,
  252|     96|            descr->d_getset->closure);
  253|     96|    }
  254|      0|    PyErr_Format(PyExc_AttributeError,
  255|      0|                 "attribute '%V' of '%.100s' objects is not writable",
  256|      0|                 descr_name((PyDescrObject *)descr), "?",
  257|      0|                 PyDescr_TYPE(descr)->tp_name);
  ------------------
  |  |   35|      0|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  258|      0|    return -1;
  259|     96|}
descrobject.c:wrapperdescr_call:
  537|     58|{
  538|     58|    PyWrapperDescrObject *descr = (PyWrapperDescrObject *)_descr;
  539|     58|    Py_ssize_t argc;
  540|     58|    PyObject *self, *result;
  541|       |
  542|       |    /* Make sure that the first argument is acceptable as 'self' */
  543|     58|    assert(PyTuple_Check(args));
  ------------------
  |  Branch (543:5): [True: 58, False: 0]
  ------------------
  544|     58|    argc = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|     58|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  545|     58|    if (argc < 1) {
  ------------------
  |  Branch (545:9): [True: 0, False: 58]
  ------------------
  546|      0|        PyErr_Format(PyExc_TypeError,
  547|      0|                     "descriptor '%V' of '%.100s' "
  548|      0|                     "object needs an argument",
  549|      0|                     descr_name((PyDescrObject *)descr), "?",
  550|      0|                     PyDescr_TYPE(descr)->tp_name);
  ------------------
  |  |   35|      0|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  551|      0|        return NULL;
  552|      0|    }
  553|     58|    self = PyTuple_GET_ITEM(args, 0);
  ------------------
  |  |   29|     58|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     58|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (553:12): [True: 58, False: 0]
  ------------------
  554|     58|    if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self),
  ------------------
  |  |  213|     58|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (554:9): [True: 0, False: 58]
  ------------------
  555|     58|                                  (PyObject *)PyDescr_TYPE(descr))) {
  ------------------
  |  |   35|     58|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  556|      0|        PyErr_Format(PyExc_TypeError,
  557|      0|                     "descriptor '%V' "
  558|      0|                     "requires a '%.100s' object "
  559|      0|                     "but received a '%.100s'",
  560|      0|                     descr_name((PyDescrObject *)descr), "?",
  561|      0|                     PyDescr_TYPE(descr)->tp_name,
  ------------------
  |  |   35|      0|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  562|      0|                     Py_TYPE(self)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  563|      0|        return NULL;
  564|      0|    }
  565|       |
  566|     58|    args = PyTuple_GetSlice(args, 1, argc);
  567|     58|    if (args == NULL) {
  ------------------
  |  Branch (567:9): [True: 0, False: 58]
  ------------------
  568|      0|        return NULL;
  569|      0|    }
  570|     58|    result = wrapperdescr_raw_call(descr, self, args, kwds);
  571|     58|    Py_DECREF(args);
  ------------------
  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  572|     58|    return result;
  573|     58|}
descrobject.c:wrapperdescr_raw_call:
  518|     60|{
  519|     60|    wrapperfunc wrapper = descr->d_base->wrapper;
  520|       |
  521|     60|    if (descr->d_base->flags & PyWrapperFlag_KEYWORDS) {
  ------------------
  |  |   22|     60|#define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
  ------------------
  |  Branch (521:9): [True: 60, False: 0]
  ------------------
  522|     60|        wrapperfunc_kwds wk = _Py_FUNC_CAST(wrapperfunc_kwds, wrapper);
  ------------------
  |  |   47|     60|#define _Py_FUNC_CAST(T, func) _Py_CAST(T, _Py_CAST(void(*)(void), (func)))
  |  |  ------------------
  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  523|     60|        return (*wk)(self, args, descr->d_wrapped, kwds);
  524|     60|    }
  525|       |
  526|      0|    if (kwds != NULL && (!PyDict_Check(kwds) || PyDict_GET_SIZE(kwds) != 0)) {
  ------------------
  |  |   18|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
                  if (kwds != NULL && (!PyDict_Check(kwds) || PyDict_GET_SIZE(kwds) != 0)) {
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (526:9): [True: 0, False: 0]
  |  Branch (526:26): [True: 0, False: 0]
  |  Branch (526:49): [True: 0, False: 0]
  ------------------
  527|      0|        PyErr_Format(PyExc_TypeError,
  528|      0|                     "wrapper %s() takes no keyword arguments",
  529|      0|                     descr->d_base->name);
  530|      0|        return NULL;
  531|      0|    }
  532|      0|    return (*wrapper)(self, args, descr->d_wrapped);
  533|      0|}
descrobject.c:wrapperdescr_get:
  205|      2|{
  206|      2|    PyWrapperDescrObject *descr = (PyWrapperDescrObject *)self;
  207|      2|    if (obj == NULL) {
  ------------------
  |  Branch (207:9): [True: 0, False: 2]
  ------------------
  208|      0|        return Py_NewRef(descr);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  209|      0|    }
  210|      2|    if (descr_check((PyDescrObject *)descr, obj) < 0) {
  ------------------
  |  Branch (210:9): [True: 0, False: 2]
  ------------------
  211|      0|        return NULL;
  212|      0|    }
  213|      2|    return PyWrapper_New((PyObject *)descr, obj);
  214|      2|}
descrobject.c:method_check_args:
  268|    610|{
  269|    610|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (269:5): [True: 610, False: 0]
  ------------------
  270|    610|    if (nargs < 1) {
  ------------------
  |  Branch (270:9): [True: 0, False: 610]
  ------------------
  271|      0|        PyObject *funcstr = _PyObject_FunctionStr(func);
  272|      0|        if (funcstr != NULL) {
  ------------------
  |  Branch (272:13): [True: 0, False: 0]
  ------------------
  273|      0|            PyErr_Format(PyExc_TypeError,
  274|      0|                         "unbound method %U needs an argument", funcstr);
  275|      0|            Py_DECREF(funcstr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  276|      0|        }
  277|      0|        return -1;
  278|      0|    }
  279|    610|    PyObject *self = args[0];
  280|    610|    if (descr_check((PyDescrObject *)func, self) < 0) {
  ------------------
  |  Branch (280:9): [True: 0, False: 610]
  ------------------
  281|      0|        return -1;
  282|      0|    }
  283|    610|    if (kwnames && PyTuple_GET_SIZE(kwnames)) {
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (27:30): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (283:9): [True: 0, False: 610]
  ------------------
  284|      0|        PyObject *funcstr = _PyObject_FunctionStr(func);
  285|      0|        if (funcstr != NULL) {
  ------------------
  |  Branch (285:13): [True: 0, False: 0]
  ------------------
  286|      0|            PyErr_Format(PyExc_TypeError,
  287|      0|                         "%U takes no keyword arguments", funcstr);
  288|      0|            Py_DECREF(funcstr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  289|      0|        }
  290|      0|        return -1;
  291|      0|    }
  292|    610|    return 0;
  293|    610|}
descrobject.c:method_enter_call:
  299|    610|{
  300|    610|    if (_Py_EnterRecursiveCallTstate(tstate, " while calling a Python object")) {
  ------------------
  |  Branch (300:9): [True: 0, False: 610]
  ------------------
  301|      0|        return NULL;
  302|      0|    }
  303|    610|    return (funcptr)((PyMethodDescrObject *)func)->d_method->ml_meth;
  304|    610|}
descrobject.c:method_vectorcall_VARARGS_KEYWORDS:
  335|     18|{
  336|     18|    PyThreadState *tstate = _PyThreadState_GET();
  337|     18|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|     18|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  338|     18|    if (method_check_args(func, args, nargs, NULL)) {
  ------------------
  |  Branch (338:9): [True: 0, False: 18]
  ------------------
  339|      0|        return NULL;
  340|      0|    }
  341|     18|    PyObject *argstuple = PyTuple_FromArray(args+1, nargs-1);
  342|     18|    if (argstuple == NULL) {
  ------------------
  |  Branch (342:9): [True: 0, False: 18]
  ------------------
  343|      0|        return NULL;
  344|      0|    }
  345|     18|    PyObject *result = NULL;
  346|       |    /* Create a temporary dict for keyword arguments */
  347|     18|    PyObject *kwdict = NULL;
  348|     18|    if (kwnames != NULL && PyTuple_GET_SIZE(kwnames) > 0) {
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (348:9): [True: 0, False: 18]
  |  Branch (348:28): [True: 0, False: 0]
  ------------------
  349|      0|        kwdict = _PyStack_AsDict(args + nargs, kwnames);
  350|      0|        if (kwdict == NULL) {
  ------------------
  |  Branch (350:13): [True: 0, False: 0]
  ------------------
  351|      0|            goto exit;
  352|      0|        }
  353|      0|    }
  354|     18|    PyCFunctionWithKeywords meth = (PyCFunctionWithKeywords)
  355|     18|                                   method_enter_call(tstate, func);
  356|     18|    if (meth == NULL) {
  ------------------
  |  Branch (356:9): [True: 0, False: 18]
  ------------------
  357|      0|        goto exit;
  358|      0|    }
  359|     18|    result = _PyCFunctionWithKeywords_TrampolineCall(
  ------------------
  |  |  999|     18|    (meth)((self), (args), (kw))
  ------------------
  360|     18|        meth, args[0], argstuple, kwdict);
  361|     18|    _Py_LeaveRecursiveCallTstate(tstate);
  362|     18|exit:
  363|     18|    Py_DECREF(argstuple);
  ------------------
  |  |  430|     18|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  364|     18|    Py_XDECREF(kwdict);
  ------------------
  |  |  524|     18|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  365|     18|    return result;
  366|     18|}
descrobject.c:method_vectorcall_FASTCALL:
  391|     94|{
  392|     94|    PyThreadState *tstate = _PyThreadState_GET();
  393|     94|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|     94|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  394|     94|    if (method_check_args(func, args, nargs, kwnames)) {
  ------------------
  |  Branch (394:9): [True: 0, False: 94]
  ------------------
  395|      0|        return NULL;
  396|      0|    }
  397|     94|    PyCFunctionFast meth = (PyCFunctionFast)
  398|     94|                            method_enter_call(tstate, func);
  399|     94|    if (meth == NULL) {
  ------------------
  |  Branch (399:9): [True: 0, False: 94]
  ------------------
  400|      0|        return NULL;
  401|      0|    }
  402|     94|    PyObject *result = meth(args[0], args+1, nargs-1);
  403|     94|    _Py_LeaveRecursiveCallTstate(tstate);
  404|     94|    return result;
  405|     94|}
descrobject.c:method_vectorcall_FASTCALL_KEYWORDS:
  410|     12|{
  411|     12|    PyThreadState *tstate = _PyThreadState_GET();
  412|     12|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|     12|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  413|     12|    if (method_check_args(func, args, nargs, NULL)) {
  ------------------
  |  Branch (413:9): [True: 0, False: 12]
  ------------------
  414|      0|        return NULL;
  415|      0|    }
  416|     12|    PyCFunctionFastWithKeywords meth = (PyCFunctionFastWithKeywords)
  417|     12|                                        method_enter_call(tstate, func);
  418|     12|    if (meth == NULL) {
  ------------------
  |  Branch (418:9): [True: 0, False: 12]
  ------------------
  419|      0|        return NULL;
  420|      0|    }
  421|     12|    PyObject *result = meth(args[0], args+1, nargs-1, kwnames);
  422|     12|    _Py_LeaveRecursiveCallTstate(tstate);
  423|     12|    return result;
  424|     12|}
descrobject.c:method_vectorcall_NOARGS:
  429|    270|{
  430|    270|    PyThreadState *tstate = _PyThreadState_GET();
  431|    270|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    270|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  432|    270|    if (method_check_args(func, args, nargs, kwnames)) {
  ------------------
  |  Branch (432:9): [True: 0, False: 270]
  ------------------
  433|      0|        return NULL;
  434|      0|    }
  435|    270|    if (nargs != 1) {
  ------------------
  |  Branch (435:9): [True: 0, False: 270]
  ------------------
  436|      0|        PyObject *funcstr = _PyObject_FunctionStr(func);
  437|      0|        if (funcstr != NULL) {
  ------------------
  |  Branch (437:13): [True: 0, False: 0]
  ------------------
  438|      0|            PyErr_Format(PyExc_TypeError,
  439|      0|                "%U takes no arguments (%zd given)", funcstr, nargs-1);
  440|      0|            Py_DECREF(funcstr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  441|      0|        }
  442|      0|        return NULL;
  443|      0|    }
  444|    270|    PyCFunction meth = (PyCFunction)method_enter_call(tstate, func);
  445|    270|    if (meth == NULL) {
  ------------------
  |  Branch (445:9): [True: 0, False: 270]
  ------------------
  446|      0|        return NULL;
  447|      0|    }
  448|    270|    PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], NULL);
  ------------------
  |  |  997|    270|    (meth)((self), (args))
  ------------------
  449|    270|    _Py_LeaveRecursiveCallTstate(tstate);
  450|    270|    return result;
  451|    270|}
descrobject.c:method_vectorcall_O:
  456|    216|{
  457|    216|    PyThreadState *tstate = _PyThreadState_GET();
  458|    216|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    216|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  459|    216|    if (method_check_args(func, args, nargs, kwnames)) {
  ------------------
  |  Branch (459:9): [True: 0, False: 216]
  ------------------
  460|      0|        return NULL;
  461|      0|    }
  462|    216|    if (nargs != 2) {
  ------------------
  |  Branch (462:9): [True: 0, False: 216]
  ------------------
  463|      0|        PyObject *funcstr = _PyObject_FunctionStr(func);
  464|      0|        if (funcstr != NULL) {
  ------------------
  |  Branch (464:13): [True: 0, False: 0]
  ------------------
  465|      0|            PyErr_Format(PyExc_TypeError,
  466|      0|                "%U takes exactly one argument (%zd given)",
  467|      0|                funcstr, nargs-1);
  468|      0|            Py_DECREF(funcstr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  469|      0|        }
  470|      0|        return NULL;
  471|      0|    }
  472|    216|    PyCFunction meth = (PyCFunction)method_enter_call(tstate, func);
  473|    216|    if (meth == NULL) {
  ------------------
  |  Branch (473:9): [True: 0, False: 216]
  ------------------
  474|      0|        return NULL;
  475|      0|    }
  476|    216|    PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], args[1]);
  ------------------
  |  |  997|    216|    (meth)((self), (args))
  ------------------
  477|    216|    _Py_LeaveRecursiveCallTstate(tstate);
  478|    216|    return result;
  479|    216|}
descrobject.c:descr_new:
  908|  4.77k|{
  909|  4.77k|    PyDescrObject *descr;
  910|       |
  911|  4.77k|    descr = (PyDescrObject *)PyType_GenericAlloc(descrtype, 0);
  912|  4.77k|    if (descr != NULL) {
  ------------------
  |  Branch (912:9): [True: 4.77k, False: 0]
  ------------------
  913|  4.77k|        _PyObject_SetDeferredRefcount((PyObject *)descr);
  914|  4.77k|        descr->d_type = (PyTypeObject*)Py_XNewRef(type);
  ------------------
  |  |  551|  4.77k|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  4.77k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.77k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  915|  4.77k|        descr->d_name = PyUnicode_InternFromString(name);
  916|  4.77k|        if (descr->d_name == NULL) {
  ------------------
  |  Branch (916:13): [True: 0, False: 4.77k]
  ------------------
  917|      0|            Py_SETREF(descr, NULL);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  918|      0|        }
  919|  4.77k|        else {
  920|       |            descr->d_qualname = NULL;
  921|  4.77k|        }
  922|  4.77k|    }
  923|  4.77k|    return descr;
  924|  4.77k|}
descrobject.c:mappingproxy_check_mapping:
 1244|    220|{
 1245|    220|    if (!PyMapping_Check(mapping)
  ------------------
  |  Branch (1245:9): [True: 0, False: 220]
  ------------------
 1246|    220|        || PyList_Check(mapping)
  ------------------
  |  |   25|    220|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    440|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 220]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1247|    220|        || PyTuple_Check(mapping)) {
  ------------------
  |  |   27|    220|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    220|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 220]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1248|      0|        PyErr_Format(PyExc_TypeError,
 1249|      0|                    "mappingproxy() argument must be a mapping, not %s",
 1250|      0|                    Py_TYPE(mapping)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1251|      0|        return -1;
 1252|      0|    }
 1253|    220|    return 0;
 1254|    220|}
descrobject.c:wrapper_dealloc:
 1314|      2|{
 1315|      2|    wrapperobject *wp = (wrapperobject *)self;
 1316|      2|    PyObject_GC_UnTrack(wp);
 1317|      2|    Py_XDECREF(wp->descr);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1318|      2|    Py_XDECREF(wp->self);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1319|      2|    PyObject_GC_Del(wp);
 1320|      2|}
descrobject.c:wrapper_call:
 1438|      2|{
 1439|      2|    wrapperobject *wp = (wrapperobject *)self;
 1440|      2|    return wrapperdescr_raw_call(wp->descr, wp->self, args, kwds);
 1441|      2|}
descrobject.c:mappingproxy_dealloc:
 1189|    220|{
 1190|    220|    mappingproxyobject *pp = (mappingproxyobject *)self;
 1191|    220|    _PyObject_GC_UNTRACK(pp);
  ------------------
  |  |  515|    220|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    220|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    220|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1192|    220|    Py_DECREF(pp->mapping);
  ------------------
  |  |  430|    220|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    220|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    220|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1193|    220|    PyObject_GC_Del(pp);
 1194|    220|}
descrobject.c:mappingproxy_contains:
 1090|     80|{
 1091|     80|    mappingproxyobject *pp = (mappingproxyobject *)self;
 1092|     80|    if (PyDict_CheckExact(pp->mapping))
  ------------------
  |  |   19|     80|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|     80|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 80, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1093|     80|        return PyDict_Contains(pp->mapping, key);
 1094|      0|    else
 1095|      0|        return PySequence_Contains(pp->mapping, key);
 1096|     80|}
descrobject.c:mappingproxy_getitem:
 1053|     80|{
 1054|     80|    mappingproxyobject *pp = (mappingproxyobject *)self;
 1055|     80|    return PyObject_GetItem(pp->mapping, key);
 1056|     80|}
descrobject.c:mappingproxy_items:
 1146|     58|{
 1147|     58|    mappingproxyobject *pp = (mappingproxyobject *)self;
 1148|     58|    return PyObject_CallMethodNoArgs(pp->mapping, &_Py_ID(items));
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1149|     58|}
descrobject.c:property_dealloc:
 1637|      4|{
 1638|      4|    propertyobject *gs = (propertyobject *)self;
 1639|       |
 1640|      4|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|      4|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1641|      4|    Py_XDECREF(gs->prop_get);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1642|      4|    Py_XDECREF(gs->prop_set);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1643|      4|    Py_XDECREF(gs->prop_del);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1644|      4|    Py_XDECREF(gs->prop_doc);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1645|      4|    Py_XDECREF(gs->prop_name);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1646|      4|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1647|      4|}
descrobject.c:property_traverse:
 1980|     12|{
 1981|     12|    propertyobject *pp = (propertyobject *)self;
 1982|     12|    Py_VISIT(pp->prop_get);
  ------------------
  |  |  194|     12|    do {                                                                \
  |  |  195|     12|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 12, False: 0]
  |  |  ------------------
  |  |  196|     12|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     12|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 12]
  |  |  ------------------
  |  |  198|     12|                return vret;                                            \
  |  |  199|     12|        }                                                               \
  |  |  200|     12|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 12]
  |  |  ------------------
  ------------------
 1983|     12|    Py_VISIT(pp->prop_set);
  ------------------
  |  |  194|     12|    do {                                                                \
  |  |  195|     12|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 8, False: 4]
  |  |  ------------------
  |  |  196|      8|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      8|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 8]
  |  |  ------------------
  |  |  198|      8|                return vret;                                            \
  |  |  199|      8|        }                                                               \
  |  |  200|     12|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 12]
  |  |  ------------------
  ------------------
 1984|     12|    Py_VISIT(pp->prop_del);
  ------------------
  |  |  194|     12|    do {                                                                \
  |  |  195|     12|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 12]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|     12|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 12]
  |  |  ------------------
  ------------------
 1985|     12|    Py_VISIT(pp->prop_doc);
  ------------------
  |  |  194|     12|    do {                                                                \
  |  |  195|     12|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 8]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|     12|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 12]
  |  |  ------------------
  ------------------
 1986|     12|    Py_VISIT(pp->prop_name);
  ------------------
  |  |  194|     12|    do {                                                                \
  |  |  195|     12|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 12, False: 0]
  |  |  ------------------
  |  |  196|     12|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     12|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 12]
  |  |  ------------------
  |  |  198|     12|                return vret;                                            \
  |  |  199|     12|        }                                                               \
  |  |  200|     12|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 12]
  |  |  ------------------
  ------------------
 1987|     12|    return 0;
 1988|     12|}
descrobject.c:property_copy:
 1766|      4|{
 1767|      4|    propertyobject *pold = (propertyobject *)old;
 1768|      4|    PyObject *new, *type, *doc;
 1769|       |
 1770|      4|    type = PyObject_Type(old);
 1771|      4|    if (type == NULL)
  ------------------
  |  Branch (1771:9): [True: 0, False: 4]
  ------------------
 1772|      0|        return NULL;
 1773|       |
 1774|      4|    if (get == NULL || get == Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1774:9): [True: 4, False: 0]
  |  Branch (1774:24): [True: 0, False: 0]
  ------------------
 1775|      4|        get = pold->prop_get ? pold->prop_get : Py_None;
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1775:15): [True: 4, False: 0]
  ------------------
 1776|      4|    }
 1777|      4|    if (set == NULL || set == Py_None) {
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1777:9): [True: 0, False: 4]
  |  Branch (1777:24): [True: 0, False: 4]
  ------------------
 1778|      0|        set = pold->prop_set ? pold->prop_set : Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1778:15): [True: 0, False: 0]
  ------------------
 1779|      0|    }
 1780|      4|    if (del == NULL || del == Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1780:9): [True: 4, False: 0]
  |  Branch (1780:24): [True: 0, False: 0]
  ------------------
 1781|      4|        del = pold->prop_del ? pold->prop_del : Py_None;
  ------------------
  |  |  616|      8|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1781:15): [True: 0, False: 4]
  ------------------
 1782|      4|    }
 1783|      4|    if (pold->getter_doc && get != Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1783:9): [True: 0, False: 4]
  |  Branch (1783:29): [True: 0, False: 0]
  ------------------
 1784|       |        /* make _init use __doc__ from getter */
 1785|      0|        doc = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
 1786|      0|    }
 1787|      4|    else {
 1788|      4|        doc = pold->prop_doc ? pold->prop_doc : Py_None;
  ------------------
  |  |  616|      8|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1788:15): [True: 0, False: 4]
  ------------------
 1789|      4|    }
 1790|       |
 1791|      4|    new =  PyObject_CallFunctionObjArgs(type, get, set, del, doc, NULL);
 1792|      4|    Py_DECREF(type);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1793|      4|    if (new == NULL)
  ------------------
  |  Branch (1793:9): [True: 0, False: 4]
  ------------------
 1794|      0|        return NULL;
 1795|       |
 1796|      4|    if (PyObject_TypeCheck((new), &PyProperty_Type)) {
  ------------------
  |  |  378|      4|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (378:40): [True: 4, False: 0]
  |  |  ------------------
  ------------------
 1797|      4|        Py_XSETREF(((propertyobject *) new)->prop_name, Py_XNewRef(pold->prop_name));
  ------------------
  |  |  374|      4|    do { \
  |  |  375|      4|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      4|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      4|        *_tmp_dst_ptr = (src); \
  |  |  378|      4|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1798|      4|    }
 1799|      4|    return new;
 1800|      4|}
descrobject.c:property_setter:
 1587|      4|{
 1588|      4|    return property_copy(self, NULL, setter, NULL);
 1589|      4|}
descrobject.c:property_set_name:
 1609|      6|property_set_name(PyObject *self, PyObject *args) {
 1610|      6|    if (PyTuple_GET_SIZE(args) != 2) {
  ------------------
  |  |   27|      6|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1610:9): [True: 0, False: 6]
  ------------------
 1611|      0|        PyErr_Format(
 1612|      0|                PyExc_TypeError,
 1613|      0|                "__set_name__() takes 2 positional arguments but %zd were given",
 1614|      0|                PyTuple_GET_SIZE(args));
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1615|      0|        return NULL;
 1616|      0|    }
 1617|       |
 1618|      6|    propertyobject *prop = (propertyobject *)self;
 1619|      6|    PyObject *name = PyTuple_GET_ITEM(args, 1);
  ------------------
  |  |   29|      6|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      6|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1619:22): [True: 6, False: 0]
  ------------------
 1620|       |
 1621|      6|    Py_XSETREF(prop->prop_name, Py_XNewRef(name));
  ------------------
  |  |  374|      6|    do { \
  |  |  375|      6|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      6|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      6|        *_tmp_dst_ptr = (src); \
  |  |  378|      6|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      6|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1622|       |
 1623|      6|    Py_RETURN_NONE;
  ------------------
  |  |  628|      6|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1624|      6|}
descrobject.c:property_descr_get:
 1665|     12|{
 1666|     12|    if (obj == NULL || obj == Py_None) {
  ------------------
  |  |  616|     12|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1666:9): [True: 0, False: 12]
  |  Branch (1666:24): [True: 0, False: 12]
  ------------------
 1667|      0|        return Py_NewRef(self);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1668|      0|    }
 1669|       |
 1670|     12|    propertyobject *gs = (propertyobject *)self;
 1671|     12|    if (gs->prop_get == NULL) {
  ------------------
  |  Branch (1671:9): [True: 0, False: 12]
  ------------------
 1672|      0|        PyObject *propname;
 1673|      0|        if (property_name(gs, &propname) < 0) {
  ------------------
  |  Branch (1673:13): [True: 0, False: 0]
  ------------------
 1674|      0|            return NULL;
 1675|      0|        }
 1676|      0|        PyObject *qualname = PyType_GetQualName(Py_TYPE(obj));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1677|      0|        if (propname != NULL && qualname != NULL) {
  ------------------
  |  Branch (1677:13): [True: 0, False: 0]
  |  Branch (1677:33): [True: 0, False: 0]
  ------------------
 1678|      0|            PyErr_Format(PyExc_AttributeError,
 1679|      0|                         "property %R of %R object has no getter",
 1680|      0|                         propname,
 1681|      0|                         qualname);
 1682|      0|        }
 1683|      0|        else if (qualname != NULL) {
  ------------------
  |  Branch (1683:18): [True: 0, False: 0]
  ------------------
 1684|      0|            PyErr_Format(PyExc_AttributeError,
 1685|      0|                         "property of %R object has no getter",
 1686|      0|                         qualname);
 1687|      0|        } else {
 1688|      0|            PyErr_SetString(PyExc_AttributeError,
 1689|      0|                            "property has no getter");
 1690|      0|        }
 1691|      0|        Py_XDECREF(propname);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1692|      0|        Py_XDECREF(qualname);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1693|      0|        return NULL;
 1694|      0|    }
 1695|       |
 1696|     12|    return PyObject_CallOneArg(gs->prop_get, obj);
 1697|     12|}
descrobject.c:property_descr_set:
 1701|      8|{
 1702|      8|    propertyobject *gs = (propertyobject *)self;
 1703|      8|    PyObject *func, *res;
 1704|       |
 1705|      8|    if (value == NULL) {
  ------------------
  |  Branch (1705:9): [True: 0, False: 8]
  ------------------
 1706|      0|        func = gs->prop_del;
 1707|      0|    }
 1708|      8|    else {
 1709|      8|        func = gs->prop_set;
 1710|      8|    }
 1711|       |
 1712|      8|    if (func == NULL) {
  ------------------
  |  Branch (1712:9): [True: 0, False: 8]
  ------------------
 1713|      0|        PyObject *propname;
 1714|      0|        if (property_name(gs, &propname) < 0) {
  ------------------
  |  Branch (1714:13): [True: 0, False: 0]
  ------------------
 1715|      0|            return -1;
 1716|      0|        }
 1717|      0|        PyObject *qualname = NULL;
 1718|      0|        if (obj != NULL) {
  ------------------
  |  Branch (1718:13): [True: 0, False: 0]
  ------------------
 1719|      0|            qualname = PyType_GetQualName(Py_TYPE(obj));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1720|      0|        }
 1721|      0|        if (propname != NULL && qualname != NULL) {
  ------------------
  |  Branch (1721:13): [True: 0, False: 0]
  |  Branch (1721:33): [True: 0, False: 0]
  ------------------
 1722|      0|            PyErr_Format(PyExc_AttributeError,
 1723|      0|                        value == NULL ?
  ------------------
  |  Branch (1723:25): [True: 0, False: 0]
  ------------------
 1724|      0|                        "property %R of %R object has no deleter" :
 1725|      0|                        "property %R of %R object has no setter",
 1726|      0|                        propname,
 1727|      0|                        qualname);
 1728|      0|        }
 1729|      0|        else if (qualname != NULL) {
  ------------------
  |  Branch (1729:18): [True: 0, False: 0]
  ------------------
 1730|      0|            PyErr_Format(PyExc_AttributeError,
 1731|      0|                            value == NULL ?
  ------------------
  |  Branch (1731:29): [True: 0, False: 0]
  ------------------
 1732|      0|                            "property of %R object has no deleter" :
 1733|      0|                            "property of %R object has no setter",
 1734|      0|                            qualname);
 1735|      0|        }
 1736|      0|        else {
 1737|      0|            PyErr_SetString(PyExc_AttributeError,
 1738|      0|                         value == NULL ?
  ------------------
  |  Branch (1738:26): [True: 0, False: 0]
  ------------------
 1739|      0|                         "property has no deleter" :
 1740|      0|                         "property has no setter");
 1741|      0|        }
 1742|      0|        Py_XDECREF(propname);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1743|      0|        Py_XDECREF(qualname);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1744|      0|        return -1;
 1745|      0|    }
 1746|       |
 1747|      8|    if (value == NULL) {
  ------------------
  |  Branch (1747:9): [True: 0, False: 8]
  ------------------
 1748|      0|        res = PyObject_CallOneArg(func, obj);
 1749|      0|    }
 1750|      8|    else {
 1751|      8|        EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_API, func);
  ------------------
  |  |   80|      8|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
 1752|      8|        PyObject *args[] = { obj, value };
 1753|      8|        res = PyObject_Vectorcall(func, args, 2, NULL);
 1754|      8|    }
 1755|       |
 1756|      8|    if (res == NULL) {
  ------------------
  |  Branch (1756:9): [True: 0, False: 8]
  ------------------
 1757|      0|        return -1;
 1758|      0|    }
 1759|       |
 1760|      8|    Py_DECREF(res);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1761|      8|    return 0;
 1762|      8|}
descrobject.c:property_init_impl:
 1843|     10|{
 1844|     10|    if (fget == Py_None)
  ------------------
  |  |  616|     10|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1844:9): [True: 0, False: 10]
  ------------------
 1845|      0|        fget = NULL;
 1846|     10|    if (fset == Py_None)
  ------------------
  |  |  616|     10|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1846:9): [True: 0, False: 10]
  ------------------
 1847|      0|        fset = NULL;
 1848|     10|    if (fdel == Py_None)
  ------------------
  |  |  616|     10|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1848:9): [True: 4, False: 6]
  ------------------
 1849|      4|        fdel = NULL;
 1850|       |
 1851|     10|    Py_XSETREF(self->prop_get, Py_XNewRef(fget));
  ------------------
  |  |  374|     10|    do { \
  |  |  375|     10|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     10|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     10|        *_tmp_dst_ptr = (src); \
  |  |  378|     10|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     10|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     10|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 10]
  |  |  ------------------
  ------------------
 1852|     10|    Py_XSETREF(self->prop_set, Py_XNewRef(fset));
  ------------------
  |  |  374|     10|    do { \
  |  |  375|     10|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     10|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     10|        *_tmp_dst_ptr = (src); \
  |  |  378|     10|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     10|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     10|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 10]
  |  |  ------------------
  ------------------
 1853|     10|    Py_XSETREF(self->prop_del, Py_XNewRef(fdel));
  ------------------
  |  |  374|     10|    do { \
  |  |  375|     10|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     10|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     10|        *_tmp_dst_ptr = (src); \
  |  |  378|     10|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     10|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     10|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 10]
  |  |  ------------------
  ------------------
 1854|     10|    Py_XSETREF(self->prop_doc, NULL);
  ------------------
  |  |  374|     10|    do { \
  |  |  375|     10|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     10|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     10|        *_tmp_dst_ptr = (src); \
  |  |  378|     10|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     10|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     10|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 10]
  |  |  ------------------
  ------------------
 1855|     10|    Py_XSETREF(self->prop_name, NULL);
  ------------------
  |  |  374|     10|    do { \
  |  |  375|     10|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     10|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     10|        *_tmp_dst_ptr = (src); \
  |  |  378|     10|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     10|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     10|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 10]
  |  |  ------------------
  ------------------
 1856|       |
 1857|     10|    self->getter_doc = 0;
 1858|     10|    PyObject *prop_doc = NULL;
 1859|       |
 1860|     10|    if (doc != NULL && doc != Py_None) {
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1860:9): [True: 4, False: 6]
  |  Branch (1860:24): [True: 0, False: 4]
  ------------------
 1861|      0|        prop_doc = Py_XNewRef(doc);
  ------------------
  |  |  551|      0|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1862|      0|    }
 1863|       |    /* if no docstring given and the getter has one, use that one */
 1864|     10|    else if (fget != NULL) {
  ------------------
  |  Branch (1864:14): [True: 10, False: 0]
  ------------------
 1865|     10|        int rc = PyObject_GetOptionalAttr(fget, &_Py_ID(__doc__), &prop_doc);
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1866|     10|        if (rc < 0) {
  ------------------
  |  Branch (1866:13): [True: 0, False: 10]
  ------------------
 1867|      0|            return rc;
 1868|      0|        }
 1869|     10|        if (prop_doc == Py_None) {
  ------------------
  |  |  616|     10|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1869:13): [True: 8, False: 2]
  ------------------
 1870|      8|            prop_doc = NULL;
 1871|      8|            Py_DECREF(Py_None);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1872|      8|        }
 1873|     10|        if (prop_doc != NULL){
  ------------------
  |  Branch (1873:13): [True: 2, False: 8]
  ------------------
 1874|      2|            self->getter_doc = 1;
 1875|      2|        }
 1876|     10|    }
 1877|       |
 1878|       |    /* At this point `prop_doc` is either NULL or
 1879|       |       a non-None object with incremented ref counter */
 1880|       |
 1881|     10|    if (Py_IS_TYPE(self, &PyProperty_Type)) {
  ------------------
  |  |  215|     10|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 10, False: 0]
  |  |  ------------------
  ------------------
 1882|     10|        Py_XSETREF(self->prop_doc, prop_doc);
  ------------------
  |  |  374|     10|    do { \
  |  |  375|     10|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     10|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     10|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     10|        *_tmp_dst_ptr = (src); \
  |  |  378|     10|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     10|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     10|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 10]
  |  |  ------------------
  ------------------
 1883|     10|    } else {
 1884|       |        /* If this is a property subclass, put __doc__ in the dict
 1885|       |           or designated slot of the subclass instance instead, otherwise
 1886|       |           it gets shadowed by __doc__ in the class's dict. */
 1887|       |
 1888|      0|        if (prop_doc == NULL) {
  ------------------
  |  Branch (1888:13): [True: 0, False: 0]
  ------------------
 1889|      0|            prop_doc = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1890|      0|        }
 1891|      0|        int err = PyObject_SetAttr(
 1892|      0|                    (PyObject *)self, &_Py_ID(__doc__), prop_doc);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1893|      0|        Py_DECREF(prop_doc);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1894|      0|        if (err < 0) {
  ------------------
  |  Branch (1894:13): [True: 0, False: 0]
  ------------------
 1895|      0|            assert(PyErr_Occurred());
  ------------------
  |  Branch (1895:13): [True: 0, False: 0]
  ------------------
 1896|      0|            if (!self->getter_doc &&
  ------------------
  |  Branch (1896:17): [True: 0, False: 0]
  ------------------
 1897|      0|                PyErr_ExceptionMatches(PyExc_AttributeError))
  ------------------
  |  Branch (1897:17): [True: 0, False: 0]
  ------------------
 1898|      0|            {
 1899|      0|                PyErr_Clear();
 1900|       |                // https://github.com/python/cpython/issues/98963#issuecomment-1574413319
 1901|       |                // Python silently dropped this doc assignment through 3.11.
 1902|       |                // We preserve that behavior for backwards compatibility.
 1903|       |                //
 1904|       |                // If we ever want to deprecate this behavior, only raise a
 1905|       |                // warning or error when proc_doc is not None so that
 1906|       |                // property without a specific doc= still works.
 1907|      0|                return 0;
 1908|      0|            } else {
 1909|      0|                return -1;
 1910|      0|            }
 1911|      0|        }
 1912|      0|    }
 1913|       |
 1914|     10|    return 0;
 1915|     10|}

_PyDict_CheckConsistency:
  684|  32.0k|{
  685|  32.0k|    ASSERT_WORLD_STOPPED_OR_DICT_LOCKED(op);
  686|       |
  687|  32.0k|#define CHECK(expr) \
  688|  32.0k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  689|       |
  690|  32.0k|    assert(op != NULL);
  ------------------
  |  Branch (690:5): [True: 32.0k, False: 0]
  ------------------
  691|  32.0k|    CHECK(PyAnyDict_Check(op));
  ------------------
  |  |  688|  32.0k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:16): [True: 32.0k, False: 0]
  |  |  |  Branch (688:16): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 32.0k]
  |  |  ------------------
  ------------------
  692|  32.0k|    PyDictObject *mp = (PyDictObject *)op;
  693|       |
  694|  32.0k|    PyDictKeysObject *keys = mp->ma_keys;
  695|  32.0k|    int splitted = _PyDict_HasSplitTable(mp);
  ------------------
  |  |   56|  32.0k|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  ------------------
  696|  32.0k|    Py_ssize_t usable = USABLE_FRACTION(DK_SIZE(keys));
  ------------------
  |  |  575|  32.0k|#define USABLE_FRACTION(n) (((n) << 1)/3)
  ------------------
  697|       |
  698|       |    // In the free-threaded build, shared keys may be concurrently modified,
  699|       |    // so use atomic loads.
  700|  32.0k|    Py_ssize_t dk_usable = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_usable);
  ------------------
  |  |  148|  32.0k|#define FT_ATOMIC_LOAD_SSIZE_ACQUIRE(value) value
  ------------------
  701|  32.0k|    Py_ssize_t dk_nentries = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_nentries);
  ------------------
  |  |  148|  32.0k|#define FT_ATOMIC_LOAD_SSIZE_ACQUIRE(value) value
  ------------------
  702|       |
  703|  32.0k|    CHECK(0 <= mp->ma_used && mp->ma_used <= usable);
  ------------------
  |  |  688|  64.0k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:16): [True: 32.0k, False: 0]
  |  |  |  Branch (688:16): [True: 32.0k, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 32.0k]
  |  |  ------------------
  ------------------
  704|  32.0k|    CHECK(0 <= dk_usable && dk_usable <= usable);
  ------------------
  |  |  688|  64.0k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:16): [True: 32.0k, False: 0]
  |  |  |  Branch (688:16): [True: 32.0k, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 32.0k]
  |  |  ------------------
  ------------------
  705|  32.0k|    CHECK(0 <= dk_nentries && dk_nentries <= usable);
  ------------------
  |  |  688|  64.0k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:16): [True: 32.0k, False: 0]
  |  |  |  Branch (688:16): [True: 32.0k, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 32.0k]
  |  |  ------------------
  ------------------
  706|  32.0k|    CHECK(dk_usable + dk_nentries <= usable);
  ------------------
  |  |  688|  32.0k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 32.0k]
  |  |  |  Branch (688:89): [Folded, False: 32.0k]
  |  |  ------------------
  ------------------
  707|       |
  708|  32.0k|    if (!splitted) {
  ------------------
  |  Branch (708:9): [True: 31.9k, False: 30]
  ------------------
  709|       |        /* combined table */
  710|  31.9k|        CHECK(keys->dk_kind != DICT_KEYS_SPLIT);
  ------------------
  |  |  688|  31.9k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 31.9k]
  |  |  |  Branch (688:89): [Folded, False: 31.9k]
  |  |  ------------------
  ------------------
  711|  31.9k|        CHECK(keys->dk_refcnt == 1 || keys == Py_EMPTY_KEYS);
  ------------------
  |  |  688|  34.0k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:16): [True: 29.9k, False: 2.03k]
  |  |  |  Branch (688:16): [True: 2.03k, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 31.9k]
  |  |  ------------------
  ------------------
  712|  31.9k|    }
  713|     30|    else {
  714|     30|        CHECK(keys->dk_kind == DICT_KEYS_SPLIT);
  ------------------
  |  |  688|     30|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 30]
  |  |  |  Branch (688:89): [Folded, False: 30]
  |  |  ------------------
  ------------------
  715|     30|        CHECK(mp->ma_used <= SHARED_KEYS_MAX_SIZE);
  ------------------
  |  |  688|     30|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 30]
  |  |  |  Branch (688:89): [Folded, False: 30]
  |  |  ------------------
  ------------------
  716|     30|        if (mp->ma_values->embedded) {
  ------------------
  |  Branch (716:13): [True: 0, False: 30]
  ------------------
  717|      0|            CHECK(mp->ma_values->embedded == 1);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  718|      0|            CHECK(mp->ma_values->valid == 1);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  719|      0|        }
  720|     30|    }
  721|       |
  722|  32.0k|    if (check_content) {
  ------------------
  |  Branch (722:9): [True: 0, False: 32.0k]
  ------------------
  723|      0|        LOCK_KEYS_IF_SPLIT(keys, keys->dk_kind);
  724|      0|        for (Py_ssize_t i=0; i < DK_SIZE(keys); i++) {
  ------------------
  |  |  262|      0|#define DK_SIZE(dk)      (((int64_t)1)<<DK_LOG_SIZE(dk))
  |  |  ------------------
  |  |  |  |  260|      0|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  |  |  ------------------
  |  |  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (724:30): [True: 0, False: 0]
  ------------------
  725|      0|            Py_ssize_t ix = dictkeys_get_index(keys, i);
  726|      0|            CHECK(DKIX_DUMMY <= ix && ix <= usable);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:16): [True: 0, False: 0]
  |  |  |  Branch (688:16): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  727|      0|        }
  728|       |
  729|      0|        if (keys->dk_kind == DICT_KEYS_GENERAL) {
  ------------------
  |  Branch (729:13): [True: 0, False: 0]
  ------------------
  730|      0|            PyDictKeyEntry *entries = DK_ENTRIES(keys);
  731|      0|            for (Py_ssize_t i=0; i < usable; i++) {
  ------------------
  |  Branch (731:34): [True: 0, False: 0]
  ------------------
  732|      0|                PyDictKeyEntry *entry = &entries[i];
  733|      0|                PyObject *key = entry->me_key;
  734|       |
  735|      0|                if (key != NULL) {
  ------------------
  |  Branch (735:21): [True: 0, False: 0]
  ------------------
  736|       |                    /* test_dict fails if PyObject_Hash() is called again */
  737|      0|                    CHECK(entry->me_hash != -1);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  738|      0|                    CHECK(entry->me_value != NULL);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  739|       |
  740|      0|                    if (PyUnicode_CheckExact(key)) {
  ------------------
  |  |  104|      0|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  741|      0|                        Py_hash_t hash = unicode_get_hash(key);
  742|      0|                        CHECK(entry->me_hash == hash);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  743|      0|                    }
  744|      0|                }
  745|      0|            }
  746|      0|        }
  747|      0|        else {
  748|      0|            PyDictUnicodeEntry *entries = DK_UNICODE_ENTRIES(keys);
  749|      0|            for (Py_ssize_t i=0; i < usable; i++) {
  ------------------
  |  Branch (749:34): [True: 0, False: 0]
  ------------------
  750|      0|                PyDictUnicodeEntry *entry = &entries[i];
  751|      0|                PyObject *key = entry->me_key;
  752|       |
  753|      0|                if (key != NULL) {
  ------------------
  |  Branch (753:21): [True: 0, False: 0]
  ------------------
  754|      0|                    CHECK(PyUnicode_CheckExact(key));
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  755|      0|                    Py_hash_t hash = unicode_get_hash(key);
  756|      0|                    CHECK(hash != -1);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  757|      0|                    if (!splitted) {
  ------------------
  |  Branch (757:25): [True: 0, False: 0]
  ------------------
  758|      0|                        CHECK(entry->me_value != NULL);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  759|      0|                    }
  760|      0|                }
  761|       |
  762|      0|                if (splitted) {
  ------------------
  |  Branch (762:21): [True: 0, False: 0]
  ------------------
  763|      0|                    CHECK(entry->me_value == NULL);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  764|      0|                }
  765|      0|            }
  766|      0|        }
  767|       |
  768|      0|        if (splitted) {
  ------------------
  |  Branch (768:13): [True: 0, False: 0]
  ------------------
  769|      0|            CHECK(mp->ma_used <= SHARED_KEYS_MAX_SIZE);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  770|       |            /* splitted table */
  771|      0|            int duplicate_check = 0;
  772|      0|            for (Py_ssize_t i=0; i < mp->ma_used; i++) {
  ------------------
  |  Branch (772:34): [True: 0, False: 0]
  ------------------
  773|      0|                int index = get_index_from_order(mp, i);
  774|      0|                CHECK((duplicate_check & (1<<index)) == 0);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  775|      0|                duplicate_check |= (1<<index);
  776|      0|                CHECK(mp->ma_values->values[index] != NULL);
  ------------------
  |  |  688|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (688:14): [True: 0, False: 0]
  |  |  |  Branch (688:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  777|      0|            }
  778|      0|        }
  779|      0|        UNLOCK_KEYS_IF_SPLIT(keys, keys->dk_kind);
  780|      0|    }
  781|  32.0k|    return 1;
  782|       |
  783|  32.0k|#undef CHECK
  784|  32.0k|}
PyDict_New:
 1028|  1.84k|{
 1029|       |    /* We don't incref Py_EMPTY_KEYS here because it is immortal. */
 1030|  1.84k|    return new_dict(Py_EMPTY_KEYS, NULL, 0, 0);
  ------------------
  |  |  645|  1.84k|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
 1031|  1.84k|}
_PyDictKeys_StringLookup:
 1244|    148|{
 1245|    148|    if (!check_keys_unicode(dk, key)) {
  ------------------
  |  Branch (1245:9): [True: 0, False: 148]
  ------------------
 1246|      0|        return DKIX_ERROR;
  ------------------
  |  |  186|      0|#define DKIX_ERROR (-3)
  ------------------
 1247|      0|    }
 1248|    148|    Py_hash_t hash = hash_unicode_key(key);
 1249|    148|    return unicodekeys_lookup_unicode(dk, key, hash);
 1250|    148|}
_PyDictKeys_StringLookupAndVersion:
 1254|    142|{
 1255|    142|    if (!check_keys_unicode(dk, key)) {
  ------------------
  |  Branch (1255:9): [True: 0, False: 142]
  ------------------
 1256|      0|        return DKIX_ERROR;
  ------------------
  |  |  186|      0|#define DKIX_ERROR (-3)
  ------------------
 1257|      0|    }
 1258|    142|    Py_ssize_t ix;
 1259|    142|    Py_hash_t hash = hash_unicode_key(key);
 1260|    142|    LOCK_KEYS(dk);
 1261|    142|    ix = unicodekeys_lookup_unicode(dk, key, hash);
 1262|    142|    *version = _PyDictKeys_GetVersionForCurrentState(_PyInterpreterState_GET(), dk);
 1263|    142|    UNLOCK_KEYS(dk);
 1264|    142|    return ix;
 1265|    142|}
_PyDictKeys_StringLookupSplit:
 1272|    552|{
 1273|    552|    assert(dk->dk_kind == DICT_KEYS_SPLIT);
  ------------------
  |  Branch (1273:5): [True: 552, False: 0]
  ------------------
 1274|    552|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (1274:5): [True: 552, False: 0]
  ------------------
 1275|    552|    Py_hash_t hash = unicode_get_hash(key);
 1276|    552|    if (hash == -1) {
  ------------------
  |  Branch (1276:9): [True: 0, False: 552]
  ------------------
 1277|      0|        hash = PyUnicode_Type.tp_hash(key);
 1278|      0|        if (hash == -1) {
  ------------------
  |  Branch (1278:13): [True: 0, False: 0]
  ------------------
 1279|      0|            PyErr_Clear();
 1280|      0|            return DKIX_ERROR;
  ------------------
  |  |  186|      0|#define DKIX_ERROR (-3)
  ------------------
 1281|      0|        }
 1282|      0|    }
 1283|    552|    return unicodekeys_lookup_split(dk, key, hash);
 1284|    552|}
_Py_dict_lookup:
 1303|   106k|{
 1304|   106k|    PyDictKeysObject *dk;
 1305|   106k|    DictKeysKind kind;
 1306|   106k|    Py_ssize_t ix;
 1307|       |
 1308|   106k|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(mp);
 1309|   106k|start:
 1310|   106k|    dk = mp->ma_keys;
 1311|   106k|    kind = dk->dk_kind;
 1312|       |
 1313|   106k|    if (kind != DICT_KEYS_GENERAL) {
  ------------------
  |  Branch (1313:9): [True: 105k, False: 1.13k]
  ------------------
 1314|   105k|        if (PyUnicode_CheckExact(key)) {
  ------------------
  |  |  104|   105k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|   105k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|   105k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|   105k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 105k, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1315|       |#ifdef Py_GIL_DISABLED
 1316|       |            if (kind == DICT_KEYS_SPLIT) {
 1317|       |                ix = unicodekeys_lookup_split(dk, key, hash);
 1318|       |            }
 1319|       |            else {
 1320|       |                ix = unicodekeys_lookup_unicode(dk, key, hash);
 1321|       |            }
 1322|       |#else
 1323|   105k|            ix = unicodekeys_lookup_unicode(dk, key, hash);
 1324|   105k|#endif
 1325|   105k|        }
 1326|      2|        else {
 1327|      2|            INCREF_KEYS_FT(dk);
 1328|      2|            LOCK_KEYS_IF_SPLIT(dk, kind);
 1329|       |
 1330|      2|            ix = unicodekeys_lookup_generic(mp, dk, key, hash);
 1331|       |
 1332|      2|            UNLOCK_KEYS_IF_SPLIT(dk, kind);
 1333|      2|            DECREF_KEYS_FT(dk, IS_DICT_SHARED(mp));
 1334|      2|            if (ix == DKIX_KEY_CHANGED) {
  ------------------
  |  |  187|      2|#define DKIX_KEY_CHANGED (-4) /* Used internally */
  ------------------
  |  Branch (1334:17): [True: 0, False: 2]
  ------------------
 1335|      0|                goto start;
 1336|      0|            }
 1337|      2|        }
 1338|       |
 1339|   105k|        if (ix >= 0) {
  ------------------
  |  Branch (1339:13): [True: 20.0k, False: 85.6k]
  ------------------
 1340|  20.0k|            if (kind == DICT_KEYS_SPLIT) {
  ------------------
  |  Branch (1340:17): [True: 20, False: 20.0k]
  ------------------
 1341|     20|                *value_addr = mp->ma_values->values[ix];
 1342|     20|            }
 1343|  20.0k|            else {
 1344|  20.0k|                *value_addr = DK_UNICODE_ENTRIES(dk)[ix].me_value;
 1345|  20.0k|            }
 1346|  20.0k|        }
 1347|  85.6k|        else {
 1348|  85.6k|            *value_addr = NULL;
 1349|  85.6k|        }
 1350|   105k|    }
 1351|  1.13k|    else {
 1352|  1.13k|        ix = dictkeys_generic_lookup(mp, dk, key, hash);
 1353|  1.13k|        if (ix == DKIX_KEY_CHANGED) {
  ------------------
  |  |  187|  1.13k|#define DKIX_KEY_CHANGED (-4) /* Used internally */
  ------------------
  |  Branch (1353:13): [True: 0, False: 1.13k]
  ------------------
 1354|      0|            goto start;
 1355|      0|        }
 1356|  1.13k|        if (ix >= 0) {
  ------------------
  |  Branch (1356:13): [True: 98, False: 1.03k]
  ------------------
 1357|     98|            *value_addr = DK_ENTRIES(dk)[ix].me_value;
 1358|     98|        }
 1359|  1.03k|        else {
 1360|  1.03k|            *value_addr = NULL;
 1361|  1.03k|        }
 1362|  1.13k|    }
 1363|       |
 1364|   106k|    return ix;
 1365|   106k|}
_Py_dict_lookup_threadsafe:
 1701|    552|{
 1702|    552|    Py_ssize_t ix = _Py_dict_lookup(mp, key, hash, value_addr);
 1703|    552|    Py_XNewRef(*value_addr);
  ------------------
  |  |  551|    552|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    552|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    552|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1704|    552|    return ix;
 1705|    552|}
_Py_dict_lookup_threadsafe_stackref:
 1709|  64.0k|{
 1710|  64.0k|    PyObject *val;
 1711|  64.0k|    Py_ssize_t ix = _Py_dict_lookup(mp, key, hash, &val);
 1712|  64.0k|    if (val == NULL) {
  ------------------
  |  Branch (1712:9): [True: 56.5k, False: 7.44k]
  ------------------
 1713|  56.5k|        *value_addr = PyStackRef_NULL;
 1714|  56.5k|    }
 1715|  7.44k|    else {
 1716|  7.44k|        *value_addr = PyStackRef_FromPyObjectNew(val);
  ------------------
  |  |  599|  7.44k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  7.44k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.44k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1717|  7.44k|    }
 1718|  64.0k|    return ix;
 1719|  64.0k|}
_PyDict_GetMethodStackRef:
 1727|     40|{
 1728|     40|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (1728:5): [True: 40, False: 0]
  ------------------
 1729|     40|    Py_hash_t hash = hash_unicode_key(key);
 1730|       |
 1731|       |#ifdef Py_GIL_DISABLED
 1732|       |    // NOTE: We can only do the fast-path lookup if we are on the owning
 1733|       |    // thread or if the dict is already marked as shared so that the load
 1734|       |    // of ma_keys is safe without a lock. We cannot call ensure_shared_on_read()
 1735|       |    // in this code path without incref'ing the dict because the dict is a
 1736|       |    // borrowed reference protected by QSBR, and acquiring the lock could lead
 1737|       |    // to a quiescent state (allowing the dict to be freed).
 1738|       |    if (_Py_IsOwnedByCurrentThread((PyObject *)mp) || IS_DICT_SHARED(mp)) {
 1739|       |        PyDictKeysObject *dk = _Py_atomic_load_ptr_acquire(&mp->ma_keys);
 1740|       |        if (dk->dk_kind == DICT_KEYS_UNICODE) {
 1741|       |            _PyStackRef ref;
 1742|       |            Py_ssize_t ix = lookup_threadsafe_unicode(dk, key, hash, &ref);
 1743|       |            if (ix >= 0) {
 1744|       |                assert(!PyStackRef_IsNull(ref));
 1745|       |                PyStackRef_XSETREF(*method, ref);
 1746|       |                return 1;
 1747|       |            }
 1748|       |            else if (ix == DKIX_EMPTY) {
 1749|       |                return 0;
 1750|       |            }
 1751|       |            assert(ix == DKIX_KEY_CHANGED);
 1752|       |        }
 1753|       |    }
 1754|       |#endif
 1755|       |
 1756|     40|    PyObject *obj;
 1757|     40|    Py_INCREF(mp);
  ------------------
  |  |  310|     40|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1758|     40|    Py_ssize_t ix = _Py_dict_lookup_threadsafe(mp, key, hash, &obj);
 1759|     40|    Py_DECREF(mp);
  ------------------
  |  |  430|     40|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1760|     40|    if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|     40|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (1760:9): [True: 0, False: 40]
  ------------------
 1761|      0|        PyStackRef_CLEAR(*method);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1762|      0|        return -1;
 1763|      0|    }
 1764|     40|    else if (ix >= 0 && obj != NULL) {
  ------------------
  |  Branch (1764:14): [True: 0, False: 40]
  |  Branch (1764:25): [True: 0, False: 0]
  ------------------
 1765|      0|        PyStackRef_XSETREF(*method, PyStackRef_FromPyObjectSteal(obj));
  ------------------
  |  |  834|      0|    do { \
  |  |  835|      0|        _PyStackRef _tmp_dst_ref = (dst); \
  |  |  836|      0|        (dst) = (src); \
  |  |  837|      0|        PyStackRef_XCLOSE(_tmp_dst_ref); \
  |  |  838|      0|    } while(0)
  |  |  ------------------
  |  |  |  Branch (838:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1766|      0|        return 1;
 1767|      0|    }
 1768|     40|    return 0;  // not found
 1769|     40|}
_PyDict_HasOnlyStringKeys:
 1773|    204|{
 1774|    204|    Py_ssize_t pos = 0;
 1775|    204|    PyObject *key, *value;
 1776|    204|    assert(PyDict_Check(dict));
  ------------------
  |  Branch (1776:5): [True: 204, False: 0]
  ------------------
 1777|       |    /* Shortcut */
 1778|    204|    if (((PyDictObject *)dict)->ma_keys->dk_kind != DICT_KEYS_GENERAL)
  ------------------
  |  Branch (1778:9): [True: 204, False: 0]
  ------------------
 1779|    204|        return 1;
 1780|      0|    while (PyDict_Next(dict, &pos, &key, &value))
  ------------------
  |  Branch (1780:12): [True: 0, False: 0]
  ------------------
 1781|      0|        if (!PyUnicode_Check(key))
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1781:13): [True: 0, False: 0]
  ------------------
 1782|      0|            return 0;
 1783|      0|    return 1;
 1784|      0|}
_PyDict_EnablePerThreadRefcounting:
 1788|     64|{
 1789|     64|    assert(PyDict_Check(op));
  ------------------
  |  Branch (1789:5): [True: 64, False: 0]
  ------------------
 1790|       |#ifdef Py_GIL_DISABLED
 1791|       |    Py_ssize_t id = _PyObject_AssignUniqueId(op);
 1792|       |    if (id == _Py_INVALID_UNIQUE_ID) {
 1793|       |        return;
 1794|       |    }
 1795|       |    if ((uint64_t)id >= (uint64_t)DICT_UNIQUE_ID_MAX) {
 1796|       |        _PyObject_ReleaseUniqueId(id);
 1797|       |        return;
 1798|       |    }
 1799|       |
 1800|       |    PyDictObject *mp = (PyDictObject *)op;
 1801|       |    assert((mp->_ma_watcher_tag >> DICT_UNIQUE_ID_SHIFT) == 0);
 1802|       |    mp->_ma_watcher_tag += (uint64_t)id << DICT_UNIQUE_ID_SHIFT;
 1803|       |#endif
 1804|     64|}
_PyDict_InsertSplitValue:
 1918|     14|{
 1919|     14|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (1919:5): [True: 14, False: 0]
  ------------------
 1920|     14|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (1920:5): [True: 14, False: 0]
  ------------------
 1921|       |
 1922|     14|    PyObject *old_value = mp->ma_values->values[ix];
 1923|     14|    if (old_value == NULL) {
  ------------------
  |  Branch (1923:9): [True: 14, False: 0]
  ------------------
 1924|     14|        _PyDict_NotifyEvent(PyDict_EVENT_ADDED, mp, key, value);
 1925|     14|        STORE_SPLIT_VALUE(mp, ix, Py_NewRef(value));
  ------------------
  |  |  317|     14|#define STORE_SPLIT_VALUE(mp, idx, value) FT_ATOMIC_STORE_PTR_RELEASE(mp->ma_values->values[idx], value)
  |  |  ------------------
  |  |  |  |  164|     14|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1926|     14|        _PyDictValues_AddToInsertionOrder(mp->ma_values, ix);
 1927|     14|        STORE_USED(mp, mp->ma_used + 1);
  ------------------
  |  |  321|     14|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|     14|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1928|     14|    }
 1929|      0|    else {
 1930|      0|        _PyDict_NotifyEvent(PyDict_EVENT_MODIFIED, mp, key, value);
 1931|      0|        STORE_SPLIT_VALUE(mp, ix, Py_NewRef(value));
  ------------------
  |  |  317|      0|#define STORE_SPLIT_VALUE(mp, idx, value) FT_ATOMIC_STORE_PTR_RELEASE(mp->ma_values->values[idx], value)
  |  |  ------------------
  |  |  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1932|       |        // old_value should be DECREFed after GC track checking is done, if not, it could raise a segmentation fault,
 1933|       |        // when dict only holds the strong reference to value in ep->me_value.
 1934|      0|        Py_DECREF(old_value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1935|      0|    }
 1936|       |    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|     14|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (1936:5): [True: 14, False: 0]
  ------------------
 1937|     14|}
_PyDict_FromItems:
 2308|    394|{
 2309|    394|    bool unicode = true;
 2310|    394|    PyObject *const *ks = keys;
 2311|       |
 2312|    676|    for (Py_ssize_t i = 0; i < length; i++) {
  ------------------
  |  Branch (2312:28): [True: 282, False: 394]
  ------------------
 2313|    282|        if (!PyUnicode_CheckExact(*ks)) {
  ------------------
  |  |  104|    282|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    282|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    282|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    282|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2313:13): [True: 0, False: 282]
  ------------------
 2314|      0|            unicode = false;
 2315|      0|            break;
 2316|      0|        }
 2317|    282|        ks += keys_offset;
 2318|    282|    }
 2319|       |
 2320|    394|    PyObject *dict = dict_new_presized(length, unicode);
 2321|    394|    if (dict == NULL) {
  ------------------
  |  Branch (2321:9): [True: 0, False: 394]
  ------------------
 2322|      0|        return NULL;
 2323|      0|    }
 2324|       |
 2325|    394|    ks = keys;
 2326|    394|    PyObject *const *vs = values;
 2327|       |
 2328|    676|    for (Py_ssize_t i = 0; i < length; i++) {
  ------------------
  |  Branch (2328:28): [True: 282, False: 394]
  ------------------
 2329|    282|        PyObject *key = *ks;
 2330|    282|        PyObject *value = *vs;
 2331|    282|        if (setitem_lock_held((PyDictObject *)dict, key, value) < 0) {
  ------------------
  |  Branch (2331:13): [True: 0, False: 282]
  ------------------
 2332|      0|            Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2333|      0|            return NULL;
 2334|      0|        }
 2335|    282|        ks += keys_offset;
 2336|    282|        vs += values_offset;
 2337|    282|    }
 2338|       |
 2339|    394|    return dict;
 2340|    394|}
PyDict_GetItem:
 2398|     96|{
 2399|     96|    return dict_getitem(op, key,
 2400|     96|            "Exception ignored in PyDict_GetItem(); consider using "
 2401|     96|            "PyDict_GetItemRef() or PyDict_GetItemWithError()");
 2402|     96|}
_PyDict_LookupIndexAndValue:
 2427|    586|{
 2428|       |    // TODO: Thread safety
 2429|    586|    assert(PyDict_CheckExact((PyObject*)mp));
  ------------------
  |  Branch (2429:5): [True: 586, False: 0]
  ------------------
 2430|    586|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (2430:5): [True: 586, False: 0]
  ------------------
 2431|       |
 2432|    586|    Py_hash_t hash = _PyObject_HashFast(key);
 2433|    586|    if (hash == -1) {
  ------------------
  |  Branch (2433:9): [True: 0, False: 586]
  ------------------
 2434|      0|        dict_unhashable_type((PyObject*)mp, key);
 2435|      0|        return -1;
 2436|      0|    }
 2437|       |
 2438|    586|    return _Py_dict_lookup(mp, key, hash, value);
 2439|    586|}
_PyDict_GetItemRef_KnownHash:
 2503|  9.27k|{
 2504|  9.27k|    PyObject *value;
 2505|       |#ifdef Py_GIL_DISABLED
 2506|       |    Py_ssize_t ix = _Py_dict_lookup_threadsafe(op, key, hash, &value);
 2507|       |#else
 2508|  9.27k|    Py_ssize_t ix = _Py_dict_lookup(op, key, hash, &value);
 2509|  9.27k|#endif
 2510|  9.27k|    assert(ix >= 0 || value == NULL);
  ------------------
  |  Branch (2510:5): [True: 7.41k, False: 1.85k]
  |  Branch (2510:5): [True: 1.85k, False: 0]
  ------------------
 2511|  9.27k|    if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|  9.27k|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (2511:9): [True: 0, False: 9.27k]
  ------------------
 2512|      0|        *result = NULL;
 2513|      0|        return -1;
 2514|      0|    }
 2515|  9.27k|    if (value == NULL) {
  ------------------
  |  Branch (2515:9): [True: 1.86k, False: 7.41k]
  ------------------
 2516|  1.86k|        *result = NULL;
 2517|  1.86k|        return 0;  // missing key
 2518|  1.86k|    }
 2519|       |#ifdef Py_GIL_DISABLED
 2520|       |    *result = value;
 2521|       |#else
 2522|  7.41k|    *result = Py_NewRef(value);
  ------------------
  |  |  550|  7.41k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  7.41k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.41k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2523|  7.41k|#endif
 2524|  7.41k|    return 1;  // key is present
 2525|  9.27k|}
PyDict_GetItemRef:
 2529|  9.27k|{
 2530|  9.27k|    if (!PyAnyDict_Check(op)) {
  ------------------
  |  |   43|  9.27k|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|  9.27k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|  18.5k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 9.27k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2531|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2532|      0|        *result = NULL;
 2533|      0|        return -1;
 2534|      0|    }
 2535|       |
 2536|  9.27k|    Py_hash_t hash = _PyObject_HashFast(key);
 2537|  9.27k|    if (hash == -1) {
  ------------------
  |  Branch (2537:9): [True: 0, False: 9.27k]
  ------------------
 2538|      0|        dict_unhashable_type(op, key);
 2539|      0|        *result = NULL;
 2540|      0|        return -1;
 2541|      0|    }
 2542|       |
 2543|  9.27k|    return _PyDict_GetItemRef_KnownHash((PyDictObject *)op, key, hash, result);
 2544|  9.27k|}
_PyDict_GetItemRef_Unicode_LockHeld:
 2548|     68|{
 2549|     68|    ASSERT_DICT_LOCKED(op);
 2550|     68|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (2550:5): [True: 68, False: 0]
  ------------------
 2551|       |
 2552|     68|    Py_hash_t hash = _PyObject_HashFast(key);
 2553|     68|    if (hash == -1) {
  ------------------
  |  Branch (2553:9): [True: 0, False: 68]
  ------------------
 2554|      0|        dict_unhashable_type((PyObject*)op, key);
 2555|      0|        *result = NULL;
 2556|      0|        return -1;
 2557|      0|    }
 2558|       |
 2559|     68|    PyObject *value;
 2560|     68|    Py_ssize_t ix = _Py_dict_lookup(op, key, hash, &value);
 2561|     68|    assert(ix >= 0 || value == NULL);
  ------------------
  |  Branch (2561:5): [True: 0, False: 68]
  |  Branch (2561:5): [True: 68, False: 0]
  ------------------
 2562|     68|    if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|     68|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (2562:9): [True: 0, False: 68]
  ------------------
 2563|      0|        *result = NULL;
 2564|      0|        return -1;
 2565|      0|    }
 2566|     68|    if (value == NULL) {
  ------------------
  |  Branch (2566:9): [True: 68, False: 0]
  ------------------
 2567|     68|        *result = NULL;
 2568|     68|        return 0;  // missing key
 2569|     68|    }
 2570|      0|    *result = Py_NewRef(value);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2571|      0|    return 1;  // key is present
 2572|     68|}
PyDict_GetItemWithError:
 2580|  1.33k|{
 2581|  1.33k|    Py_ssize_t ix; (void)ix;
 2582|  1.33k|    Py_hash_t hash;
 2583|  1.33k|    PyDictObject*mp = (PyDictObject *)op;
 2584|  1.33k|    PyObject *value;
 2585|       |
 2586|  1.33k|    if (!PyAnyDict_Check(op)) {
  ------------------
  |  |   43|  1.33k|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|  1.33k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|  2.66k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 1.33k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2587|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2588|      0|        return NULL;
 2589|      0|    }
 2590|  1.33k|    hash = _PyObject_HashFast(key);
 2591|  1.33k|    if (hash == -1) {
  ------------------
  |  Branch (2591:9): [True: 0, False: 1.33k]
  ------------------
 2592|      0|        dict_unhashable_type(op, key);
 2593|      0|        return NULL;
 2594|      0|    }
 2595|       |
 2596|       |#ifdef Py_GIL_DISABLED
 2597|       |    ix = _Py_dict_lookup_threadsafe(mp, key, hash, &value);
 2598|       |    Py_XDECREF(value);
 2599|       |#else
 2600|  1.33k|    ix = _Py_dict_lookup(mp, key, hash, &value);
 2601|  1.33k|#endif
 2602|  1.33k|    assert(ix >= 0 || value == NULL);
  ------------------
  |  Branch (2602:5): [True: 450, False: 880]
  |  Branch (2602:5): [True: 880, False: 0]
  ------------------
 2603|  1.33k|    return value;  // borrowed reference
 2604|  1.33k|}
_PyDict_LoadGlobalStackRef:
 2669|  1.89k|{
 2670|  1.89k|    Py_ssize_t ix;
 2671|  1.89k|    Py_hash_t hash;
 2672|       |
 2673|  1.89k|    hash = _PyObject_HashFast(key);
 2674|  1.89k|    if (hash == -1) {
  ------------------
  |  Branch (2674:9): [True: 0, False: 1.89k]
  ------------------
 2675|      0|        *res = PyStackRef_NULL;
 2676|      0|        return;
 2677|      0|    }
 2678|       |
 2679|       |    /* namespace 1: globals */
 2680|  1.89k|    ix = _Py_dict_lookup_threadsafe_stackref(globals, key, hash, res);
 2681|  1.89k|    if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|  1.89k|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (2681:9): [True: 0, False: 1.89k]
  ------------------
 2682|      0|        return;
 2683|      0|    }
 2684|  1.89k|    if (ix != DKIX_EMPTY && !PyStackRef_IsNull(*res)) {
  ------------------
  |  |  184|  3.79k|#define DKIX_EMPTY (-1)
  ------------------
                  if (ix != DKIX_EMPTY && !PyStackRef_IsNull(*res)) {
  ------------------
  |  |  470|    874|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|    874|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    874|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2684:9): [True: 874, False: 1.02k]
  |  Branch (2684:29): [True: 874, False: 0]
  ------------------
 2685|    874|        return;
 2686|    874|    }
 2687|       |
 2688|       |    /* namespace 2: builtins */
 2689|  1.02k|    ix = _Py_dict_lookup_threadsafe_stackref(builtins, key, hash, res);
 2690|       |    assert(ix >= 0 || PyStackRef_IsNull(*res));
  ------------------
  |  Branch (2690:5): [True: 1.02k, False: 0]
  |  Branch (2690:5): [True: 0, False: 0]
  ------------------
 2691|  1.02k|}
_PyDict_LoadBuiltinsFromGlobals:
 2695|  1.50k|{
 2696|  1.50k|    if (!PyAnyDict_Check(globals)) {
  ------------------
  |  |   43|  1.50k|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|  1.50k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|  3.00k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 1.50k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2697|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2698|      0|        return NULL;
 2699|      0|    }
 2700|       |
 2701|  1.50k|    PyDictObject *mp = (PyDictObject *)globals;
 2702|  1.50k|    PyObject *key = &_Py_ID(__builtins__);
  ------------------
  |  |  917|  1.50k|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|  1.50k|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|  1.50k|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2703|  1.50k|    Py_hash_t hash = unicode_get_hash(key);
 2704|       |
 2705|       |    // Use the stackref variant to avoid reference count contention on the
 2706|       |    // builtins module in the free threading build. It's important not to
 2707|       |    // make any escaping calls between the lookup and the `PyStackRef_CLOSE()`
 2708|       |    // because the `ref` is not visible to the GC.
 2709|  1.50k|    _PyStackRef ref;
 2710|  1.50k|    Py_ssize_t ix = _Py_dict_lookup_threadsafe_stackref(mp, key, hash, &ref);
 2711|  1.50k|    if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|  1.50k|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (2711:9): [True: 0, False: 1.50k]
  ------------------
 2712|      0|        return NULL;
 2713|      0|    }
 2714|  1.50k|    if (PyStackRef_IsNull(ref)) {
  ------------------
  |  |  470|  1.50k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|  1.50k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.50k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 0, False: 1.50k]
  |  |  ------------------
  ------------------
 2715|      0|        return Py_NewRef(PyEval_GetBuiltins());
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2716|      0|    }
 2717|  1.50k|    PyObject *builtins = PyStackRef_AsPyObjectBorrow(ref);
 2718|  1.50k|    if (PyModule_Check(builtins)) {
  ------------------
  |  |   12|  1.50k|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|  1.50k|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.50k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.50k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 1.50k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2719|      0|        builtins = _PyModule_GetDict(builtins);
 2720|      0|        assert(builtins != NULL);
  ------------------
  |  Branch (2720:9): [True: 0, False: 0]
  ------------------
 2721|      0|    }
 2722|  1.50k|    _Py_INCREF_BUILTINS(builtins);
  ------------------
  |  |  386|  1.50k|#  define _Py_INCREF_BUILTINS Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  1.50k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.50k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.50k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2723|  1.50k|    PyStackRef_CLOSE(ref);
 2724|  1.50k|    return builtins;
 2725|  1.50k|}
_PyDict_SetItem_Take2:
 2763|  11.7k|{
 2764|  11.7k|    int res;
 2765|  11.7k|    Py_BEGIN_CRITICAL_SECTION(mp);
  ------------------
  |  |   51|  11.7k|    {
  ------------------
 2766|  11.7k|    res = setitem_take2_lock_held(mp, key, value);
 2767|  11.7k|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|  11.7k|    }
  ------------------
 2768|  11.7k|    return res;
 2769|  11.7k|}
PyDict_SetItem:
 2789|  10.8k|{
 2790|  10.8k|    assert(key);
  ------------------
  |  Branch (2790:5): [True: 10.8k, False: 0]
  ------------------
 2791|  10.8k|    assert(value);
  ------------------
  |  Branch (2791:5): [True: 10.8k, False: 0]
  ------------------
 2792|       |
 2793|  10.8k|    if (!PyDict_Check(op)) {
  ------------------
  |  |   18|  10.8k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  10.8k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2793:9): [True: 0, False: 10.8k]
  ------------------
 2794|      0|        if (PyFrozenDict_Check(op)) {
  ------------------
  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2795|      0|            frozendict_does_not_support("assignment");
  ------------------
  |  | 2728|      0|    PyErr_SetString(PyExc_TypeError, "frozendict object does " \
  |  | 2729|      0|                    "not support item " WHAT)
  ------------------
 2796|      0|        }
 2797|      0|        else {
 2798|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2799|      0|        }
 2800|      0|        return -1;
 2801|      0|    }
 2802|       |
 2803|  10.8k|    return _PyDict_SetItem_Take2((PyDictObject *)op,
 2804|  10.8k|                                 Py_NewRef(key), Py_NewRef(value));
  ------------------
  |  |  550|  10.8k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  10.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                                               Py_NewRef(key), Py_NewRef(value));
  ------------------
  |  |  550|  10.8k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  10.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2805|  10.8k|}
PyDict_DelItem:
 2926|    442|{
 2927|    442|    assert(key);
  ------------------
  |  Branch (2927:5): [True: 442, False: 0]
  ------------------
 2928|    442|    Py_hash_t hash = _PyObject_HashFast(key);
 2929|    442|    if (hash == -1) {
  ------------------
  |  Branch (2929:9): [True: 0, False: 442]
  ------------------
 2930|      0|        dict_unhashable_type(op, key);
 2931|      0|        return -1;
 2932|      0|    }
 2933|       |
 2934|    442|    return _PyDict_DelItem_KnownHash(op, key, hash);
 2935|    442|}
_PyDict_DelItem_KnownHash_LockHeld:
 2939|    442|{
 2940|    442|    if (!PyDict_Check(op)) {
  ------------------
  |  |   18|    442|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    442|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2940:9): [True: 0, False: 442]
  ------------------
 2941|      0|        if (PyFrozenDict_Check(op)) {
  ------------------
  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2942|      0|            frozendict_does_not_support("deletion");
  ------------------
  |  | 2728|      0|    PyErr_SetString(PyExc_TypeError, "frozendict object does " \
  |  | 2729|      0|                    "not support item " WHAT)
  ------------------
 2943|      0|        }
 2944|      0|        else {
 2945|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2946|      0|        }
 2947|      0|        return -1;
 2948|      0|    }
 2949|       |
 2950|    442|    Py_ssize_t ix;
 2951|    442|    PyObject *old_value;
 2952|    442|    PyDictObject *mp = (PyDictObject *)op;
 2953|    442|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (2953:5): [True: 442, False: 0]
  ------------------
 2954|       |
 2955|    442|    assert(key);
  ------------------
  |  Branch (2955:5): [True: 442, False: 0]
  ------------------
 2956|    442|    assert(hash != -1);
  ------------------
  |  Branch (2956:5): [True: 442, False: 0]
  ------------------
 2957|    442|    ix = _Py_dict_lookup(mp, key, hash, &old_value);
 2958|    442|    if (ix == DKIX_ERROR)
  ------------------
  |  |  186|    442|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (2958:9): [True: 0, False: 442]
  ------------------
 2959|      0|        return -1;
 2960|    442|    if (ix == DKIX_EMPTY || old_value == NULL) {
  ------------------
  |  |  184|    884|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (2960:9): [True: 0, False: 442]
  |  Branch (2960:29): [True: 0, False: 442]
  ------------------
 2961|      0|        _PyErr_SetKeyError(key);
 2962|      0|        return -1;
 2963|      0|    }
 2964|       |
 2965|    442|    _PyDict_NotifyEvent(PyDict_EVENT_DELETED, mp, key, NULL);
 2966|    442|    delitem_common(mp, hash, ix, old_value);
 2967|    442|    return 0;
 2968|    442|}
_PyDict_DelItem_KnownHash:
 2972|    442|{
 2973|    442|    int res;
 2974|    442|    Py_BEGIN_CRITICAL_SECTION(op);
  ------------------
  |  |   51|    442|    {
  ------------------
 2975|    442|    res = _PyDict_DelItem_KnownHash_LockHeld(op, key, hash);
 2976|    442|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    442|    }
  ------------------
 2977|    442|    return res;
 2978|    442|}
_PyDict_DelItemIf:
 3026|     60|{
 3027|     60|    assert(PyDict_Check(op));
  ------------------
  |  Branch (3027:5): [True: 60, False: 0]
  ------------------
 3028|     60|    int res;
 3029|     60|    Py_BEGIN_CRITICAL_SECTION(op);
  ------------------
  |  |   51|     60|    {
  ------------------
 3030|     60|    res = delitemif_lock_held(op, key, predicate, arg);
 3031|     60|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     60|    }
  ------------------
 3032|     60|    return res;
 3033|     60|}
PyDict_Clear:
 3103|      4|{
 3104|      4|    Py_BEGIN_CRITICAL_SECTION(op);
  ------------------
  |  |   51|      4|    {
  ------------------
 3105|      4|    clear_lock_held(op);
 3106|      4|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      4|    }
  ------------------
 3107|      4|}
_PyDict_Next:
 3117|  4.68k|{
 3118|  4.68k|    Py_ssize_t i;
 3119|  4.68k|    PyDictObject *mp;
 3120|  4.68k|    PyObject *key, *value;
 3121|  4.68k|    Py_hash_t hash;
 3122|       |
 3123|  4.68k|    if (!PyAnyDict_Check(op))
  ------------------
  |  |   43|  4.68k|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|  4.68k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|  9.36k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 4.68k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3124|      0|        return 0;
 3125|       |
 3126|  4.68k|    mp = (PyDictObject *)op;
 3127|  4.68k|    i = *ppos;
 3128|  4.68k|    if (_PyDict_HasSplitTable(mp)) {
  ------------------
  |  |   56|  4.68k|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 4.68k]
  |  |  ------------------
  ------------------
 3129|      0|        assert(mp->ma_used <= SHARED_KEYS_MAX_SIZE);
  ------------------
  |  Branch (3129:9): [True: 0, False: 0]
  ------------------
 3130|      0|        if (i < 0 || i >= mp->ma_used)
  ------------------
  |  Branch (3130:13): [True: 0, False: 0]
  |  Branch (3130:22): [True: 0, False: 0]
  ------------------
 3131|      0|            return 0;
 3132|      0|        int index = get_index_from_order(mp, i);
 3133|      0|        value = mp->ma_values->values[index];
 3134|      0|        key = LOAD_SHARED_KEY(DK_UNICODE_ENTRIES(mp->ma_keys)[index].me_key);
  ------------------
  |  |  249|      0|#define LOAD_SHARED_KEY(key) key
  ------------------
 3135|      0|        hash = unicode_get_hash(key);
 3136|      0|        assert(value != NULL);
  ------------------
  |  Branch (3136:9): [True: 0, False: 0]
  ------------------
 3137|      0|    }
 3138|  4.68k|    else {
 3139|  4.68k|        Py_ssize_t n = mp->ma_keys->dk_nentries;
 3140|  4.68k|        if (i < 0 || i >= n)
  ------------------
  |  Branch (3140:13): [True: 0, False: 4.68k]
  |  Branch (3140:22): [True: 258, False: 4.42k]
  ------------------
 3141|    258|            return 0;
 3142|  4.42k|        if (DK_IS_UNICODE(mp->ma_keys)) {
  ------------------
  |  |  282|  4.42k|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 4.42k, False: 0]
  |  |  ------------------
  ------------------
 3143|  4.42k|            PyDictUnicodeEntry *entry_ptr = &DK_UNICODE_ENTRIES(mp->ma_keys)[i];
 3144|  4.70k|            while (i < n && entry_ptr->me_value == NULL) {
  ------------------
  |  Branch (3144:20): [True: 4.67k, False: 28]
  |  Branch (3144:29): [True: 278, False: 4.39k]
  ------------------
 3145|    278|                entry_ptr++;
 3146|    278|                i++;
 3147|    278|            }
 3148|  4.42k|            if (i >= n)
  ------------------
  |  Branch (3148:17): [True: 28, False: 4.39k]
  ------------------
 3149|     28|                return 0;
 3150|  4.39k|            key = entry_ptr->me_key;
 3151|  4.39k|            hash = unicode_get_hash(entry_ptr->me_key);
 3152|  4.39k|            value = entry_ptr->me_value;
 3153|  4.39k|        }
 3154|      0|        else {
 3155|      0|            PyDictKeyEntry *entry_ptr = &DK_ENTRIES(mp->ma_keys)[i];
 3156|      0|            while (i < n && entry_ptr->me_value == NULL) {
  ------------------
  |  Branch (3156:20): [True: 0, False: 0]
  |  Branch (3156:29): [True: 0, False: 0]
  ------------------
 3157|      0|                entry_ptr++;
 3158|      0|                i++;
 3159|      0|            }
 3160|      0|            if (i >= n)
  ------------------
  |  Branch (3160:17): [True: 0, False: 0]
  ------------------
 3161|      0|                return 0;
 3162|      0|            key = entry_ptr->me_key;
 3163|      0|            hash = entry_ptr->me_hash;
 3164|      0|            value = entry_ptr->me_value;
 3165|      0|        }
 3166|  4.42k|    }
 3167|  4.39k|    *ppos = i+1;
 3168|  4.39k|    if (pkey)
  ------------------
  |  Branch (3168:9): [True: 4.39k, False: 0]
  ------------------
 3169|  4.39k|        *pkey = key;
 3170|  4.39k|    if (pvalue)
  ------------------
  |  Branch (3170:9): [True: 2.64k, False: 1.74k]
  ------------------
 3171|  2.64k|        *pvalue = value;
 3172|  4.39k|    if (phash)
  ------------------
  |  Branch (3172:9): [True: 668, False: 3.72k]
  ------------------
 3173|    668|        *phash = hash;
 3174|  4.39k|    return 1;
 3175|  4.68k|}
PyDict_Next:
 3197|  2.21k|{
 3198|       |    return _PyDict_Next(op, ppos, pkey, pvalue, NULL);
 3199|  2.21k|}
_PyDict_Pop_KnownHash:
 3206|    134|{
 3207|    134|    assert(PyDict_Check(mp));
  ------------------
  |  Branch (3207:5): [True: 134, False: 0]
  ------------------
 3208|    134|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (3208:5): [True: 134, False: 0]
  ------------------
 3209|       |
 3210|    134|    if (mp->ma_used == 0) {
  ------------------
  |  Branch (3210:9): [True: 0, False: 134]
  ------------------
 3211|      0|        if (result) {
  ------------------
  |  Branch (3211:13): [True: 0, False: 0]
  ------------------
 3212|      0|            *result = NULL;
 3213|      0|        }
 3214|      0|        return 0;
 3215|      0|    }
 3216|       |
 3217|    134|    PyObject *old_value;
 3218|    134|    Py_ssize_t ix = _Py_dict_lookup(mp, key, hash, &old_value);
 3219|    134|    if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|    134|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (3219:9): [True: 0, False: 134]
  ------------------
 3220|      0|        if (result) {
  ------------------
  |  Branch (3220:13): [True: 0, False: 0]
  ------------------
 3221|      0|            *result = NULL;
 3222|      0|        }
 3223|      0|        return -1;
 3224|      0|    }
 3225|       |
 3226|    134|    if (ix == DKIX_EMPTY || old_value == NULL) {
  ------------------
  |  |  184|    268|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (3226:9): [True: 56, False: 78]
  |  Branch (3226:29): [True: 0, False: 78]
  ------------------
 3227|     56|        if (result) {
  ------------------
  |  Branch (3227:13): [True: 54, False: 2]
  ------------------
 3228|     54|            *result = NULL;
 3229|     54|        }
 3230|     56|        return 0;
 3231|     56|    }
 3232|       |
 3233|    134|    assert(old_value != NULL);
  ------------------
  |  Branch (3233:5): [True: 78, False: 0]
  ------------------
 3234|     78|    _PyDict_NotifyEvent(PyDict_EVENT_DELETED, mp, key, NULL);
 3235|     78|    delitem_common(mp, hash, ix, Py_NewRef(old_value));
  ------------------
  |  |  550|     78|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3236|       |
 3237|     78|    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|     78|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (3237:5): [True: 78, False: 0]
  ------------------
 3238|     78|    if (result) {
  ------------------
  |  Branch (3238:9): [True: 78, False: 0]
  ------------------
 3239|     78|        *result = old_value;
 3240|     78|    }
 3241|      0|    else {
 3242|      0|        Py_DECREF(old_value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3243|      0|    }
 3244|     78|    return 1;
 3245|     78|}
PyDict_Pop:
 3285|    134|{
 3286|    134|    int err;
 3287|    134|    Py_BEGIN_CRITICAL_SECTION(op);
  ------------------
  |  |   51|    134|    {
  ------------------
 3288|    134|    err = pop_lock_held(op, key, result);
 3289|    134|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    134|    }
  ------------------
 3290|       |
 3291|    134|    return err;
 3292|    134|}
_PyDict_SubscriptKnownHash:
 3679|    320|{
 3680|    320|    PyDictObject *mp = (PyDictObject *)self;
 3681|    320|    Py_ssize_t ix;
 3682|    320|    PyObject *value;
 3683|       |
 3684|    320|    ix = _Py_dict_lookup_threadsafe(mp, key, hash, &value);
 3685|    320|    if (ix == DKIX_ERROR)
  ------------------
  |  |  186|    320|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (3685:9): [True: 0, False: 320]
  ------------------
 3686|      0|        return NULL;
 3687|    320|    if (ix == DKIX_EMPTY || value == NULL) {
  ------------------
  |  |  184|    640|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (3687:9): [True: 118, False: 202]
  |  Branch (3687:29): [True: 0, False: 202]
  ------------------
 3688|    118|        if (!PyAnyDict_CheckExact(mp)) {
  ------------------
  |  |   41|    118|    (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   19|    118|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|    236|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 118, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3689|       |            /* Look up __missing__ method if we're a subclass. */
 3690|      0|            PyObject *missing, *res;
 3691|      0|            missing = _PyObject_LookupSpecial(
 3692|      0|                    (PyObject *)mp, &_Py_ID(__missing__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3693|      0|            if (missing != NULL) {
  ------------------
  |  Branch (3693:17): [True: 0, False: 0]
  ------------------
 3694|      0|                res = PyObject_CallOneArg(missing, key);
 3695|      0|                Py_DECREF(missing);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3696|      0|                return res;
 3697|      0|            }
 3698|      0|            else if (PyErr_Occurred())
  ------------------
  |  Branch (3698:22): [True: 0, False: 0]
  ------------------
 3699|      0|                return NULL;
 3700|      0|        }
 3701|    118|        _PyErr_SetKeyError(key);
 3702|    118|        return NULL;
 3703|    118|    }
 3704|    202|    return value;
 3705|    320|}
_PyDict_Subscript:
 3709|    320|{
 3710|    320|    Py_hash_t hash = _PyObject_HashFast(key);
 3711|    320|    if (hash == -1) {
  ------------------
  |  Branch (3711:9): [True: 0, False: 320]
  ------------------
 3712|      0|        dict_unhashable_type(self, key);
 3713|      0|        return NULL;
 3714|      0|    }
 3715|    320|    return _PyDict_SubscriptKnownHash(self, key, hash);
 3716|    320|}
_PyDict_StoreSubscript:
 3720|    124|{
 3721|    124|    if (w == NULL)
  ------------------
  |  Branch (3721:9): [True: 74, False: 50]
  ------------------
 3722|     74|        return PyDict_DelItem(mp, v);
 3723|     50|    else
 3724|     50|        return PyDict_SetItem(mp, v, w);
 3725|    124|}
PyDict_Keys:
 3773|      8|{
 3774|      8|    PyObject *res;
 3775|      8|    Py_BEGIN_CRITICAL_SECTION(dict);
  ------------------
  |  |   51|      8|    {
  ------------------
 3776|      8|    res = keys_lock_held(dict);
 3777|      8|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      8|    }
  ------------------
 3778|       |
 3779|      8|    return res;
 3780|      8|}
PyDict_Update:
 4298|     76|{
 4299|       |    return dict_merge_api(a, b, 1, NULL);
 4300|     76|}
_PyDict_MergeUniq:
 4311|    168|{
 4312|    168|    return dict_merge_api(a, b, 2, dupkey);
 4313|    168|}
PyDict_Copy:
 4460|    178|{
 4461|    178|    if (o == NULL || !PyDict_Check(o)) {
  ------------------
  |  |   18|    178|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    178|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4461:9): [True: 0, False: 178]
  |  Branch (4461:22): [True: 0, False: 178]
  ------------------
 4462|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 4463|      0|        return NULL;
 4464|      0|    }
 4465|       |
 4466|    178|    PyObject *res;
 4467|    178|    Py_BEGIN_CRITICAL_SECTION(o);
  ------------------
  |  |   51|    178|    {
  ------------------
 4468|    178|    res = copy_lock_held(o, 0);
 4469|    178|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    178|    }
  ------------------
 4470|    178|    return res;
 4471|    178|}
_PyDict_CopyAsDict:
 4496|    174|{
 4497|    174|    assert(PyAnyDict_Check(o));
  ------------------
  |  Branch (4497:5): [True: 174, False: 0]
  |  Branch (4497:5): [True: 0, False: 0]
  ------------------
 4498|       |
 4499|    174|    PyObject *res;
 4500|    174|    if (PyFrozenDict_Check(o)) {
  ------------------
  |  |   37|    174|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|    174|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 174]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4501|      0|        res = copy_lock_held(o, 0);
 4502|      0|    }
 4503|    174|    else {
 4504|    174|        Py_BEGIN_CRITICAL_SECTION(o);
  ------------------
  |  |   51|    174|    {
  ------------------
 4505|    174|        res = copy_lock_held(o, 0);
 4506|    174|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    174|    }
  ------------------
 4507|    174|    }
 4508|    174|    return res;
 4509|    174|}
PyDict_SetDefaultRef:
 4780|  12.1k|{
 4781|  12.1k|    int res;
 4782|  12.1k|    Py_BEGIN_CRITICAL_SECTION(d);
  ------------------
  |  |   51|  12.1k|    {
  ------------------
 4783|  12.1k|    res = dict_setdefault_ref_lock_held(d, key, default_value, result, 1);
 4784|  12.1k|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|  12.1k|    }
  ------------------
 4785|  12.1k|    return res;
 4786|  12.1k|}
_PyDict_KeysSize:
 5032|    386|{
 5033|    386|    size_t es = (keys->dk_kind == DICT_KEYS_GENERAL
  ------------------
  |  Branch (5033:18): [True: 0, False: 386]
  ------------------
 5034|    386|                 ? sizeof(PyDictKeyEntry) : sizeof(PyDictUnicodeEntry));
 5035|    386|    size_t size = sizeof(PyDictKeysObject);
 5036|    386|    size += (size_t)1 << keys->dk_log2_index_bytes;
 5037|    386|    size += USABLE_FRACTION((size_t)DK_SIZE(keys)) * es;
  ------------------
  |  |  575|    386|#define USABLE_FRACTION(n) (((n) << 1)/3)
  ------------------
 5038|    386|    return size;
 5039|    386|}
PyDict_Contains:
 5151|  4.91k|{
 5152|  4.91k|    if (!PyAnyDict_Check(op)) {
  ------------------
  |  |   43|  4.91k|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|  4.91k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|  9.82k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 4.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5153|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 5154|      0|        return -1;
 5155|      0|    }
 5156|       |
 5157|  4.91k|    return dict_contains(op, key);
 5158|  4.91k|}
PyDict_ContainsString:
 5162|      2|{
 5163|      2|    PyObject *key_obj = PyUnicode_FromString(key);
 5164|      2|    if (key_obj == NULL) {
  ------------------
  |  Branch (5164:9): [True: 0, False: 2]
  ------------------
 5165|      0|        return -1;
 5166|      0|    }
 5167|      2|    int res = PyDict_Contains(op, key_obj);
 5168|      2|    Py_DECREF(key_obj);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5169|      2|    return res;
 5170|      2|}
_PyDict_Contains_KnownHash:
 5175|  4.92k|{
 5176|  4.92k|    PyDictObject *mp = _PyAnyDict_CAST(op);
  ------------------
  |  |  311|  4.92k|    (assert(PyAnyDict_Check(op)), _Py_CAST(PyDictObject*, op))
  |  |  ------------------
  |  |  |  |   37|  4.92k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (5176:24): [True: 4.92k, False: 0]
  |  Branch (5176:24): [True: 0, False: 0]
  ------------------
 5177|      0|    PyObject *value;
 5178|  4.92k|    Py_ssize_t ix;
 5179|       |
 5180|       |#ifdef Py_GIL_DISABLED
 5181|       |    ix = _Py_dict_lookup_threadsafe(mp, key, hash, &value);
 5182|       |#else
 5183|  4.92k|    ix = _Py_dict_lookup(mp, key, hash, &value);
 5184|  4.92k|#endif
 5185|  4.92k|    if (ix == DKIX_ERROR)
  ------------------
  |  |  186|  4.92k|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (5185:9): [True: 0, False: 4.92k]
  ------------------
 5186|      0|        return -1;
 5187|  4.92k|    if (ix != DKIX_EMPTY && value != NULL) {
  ------------------
  |  |  184|  9.84k|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (5187:9): [True: 564, False: 4.36k]
  |  Branch (5187:29): [True: 564, False: 0]
  ------------------
 5188|       |#ifdef Py_GIL_DISABLED
 5189|       |        Py_DECREF(value);
 5190|       |#endif
 5191|    564|        return 1;
 5192|    564|    }
 5193|  4.36k|    return 0;
 5194|  4.92k|}
PyDict_GetItemStringRef:
 5407|    190|{
 5408|    190|    PyObject *key_obj = PyUnicode_FromString(key);
 5409|    190|    if (key_obj == NULL) {
  ------------------
  |  Branch (5409:9): [True: 0, False: 190]
  ------------------
 5410|      0|        *result = NULL;
 5411|      0|        return -1;
 5412|      0|    }
 5413|    190|    int res = PyDict_GetItemRef(v, key_obj, result);
 5414|    190|    Py_DECREF(key_obj);
  ------------------
  |  |  430|    190|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    190|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    190|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5415|    190|    return res;
 5416|    190|}
PyDict_SetItemString:
 5420|  1.68k|{
 5421|  1.68k|    PyObject *kv;
 5422|  1.68k|    int err;
 5423|  1.68k|    kv = PyUnicode_FromString(key);
 5424|  1.68k|    if (kv == NULL)
  ------------------
  |  Branch (5424:9): [True: 0, False: 1.68k]
  ------------------
 5425|      0|        return -1;
 5426|  1.68k|    PyInterpreterState *interp = _PyInterpreterState_GET();
 5427|  1.68k|    _PyUnicode_InternImmortal(interp, &kv); /* XXX Should we really? */
 5428|  1.68k|    err = PyDict_SetItem(v, kv, item);
 5429|  1.68k|    Py_DECREF(kv);
  ------------------
  |  |  430|  1.68k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.68k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.68k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5430|  1.68k|    return err;
 5431|  1.68k|}
_PyDictView_New:
 6303|     78|{
 6304|     78|    _PyDictViewObject *dv;
 6305|     78|    if (dict == NULL) {
  ------------------
  |  Branch (6305:9): [True: 0, False: 78]
  ------------------
 6306|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 6307|      0|        return NULL;
 6308|      0|    }
 6309|     78|    if (!PyAnyDict_Check(dict)) {
  ------------------
  |  |   43|     78|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|     78|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    156|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 78, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6310|       |        /* XXX Get rid of this restriction later */
 6311|      0|        PyErr_Format(PyExc_TypeError,
 6312|      0|                     "%s() requires a dict argument, not '%s'",
 6313|      0|                     type->tp_name, Py_TYPE(dict)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6314|      0|        return NULL;
 6315|      0|    }
 6316|     78|    dv = PyObject_GC_New(_PyDictViewObject, type);
  ------------------
  |  |  181|     78|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 6317|     78|    if (dv == NULL)
  ------------------
  |  Branch (6317:9): [True: 0, False: 78]
  ------------------
 6318|      0|        return NULL;
 6319|     78|    dv->dv_dict = (PyDictObject *)Py_NewRef(dict);
  ------------------
  |  |  550|     78|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6320|     78|    _PyObject_GC_TRACK(dv);
  ------------------
  |  |  513|     78|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6321|     78|    return (PyObject *)dv;
 6322|     78|}
_PyDict_NewKeysForClass:
 7099|     96|{
 7100|     96|    PyDictKeysObject *keys = new_keys_object(NEXT_LOG2_SHARED_KEYS_MAX_SIZE, 1);
  ------------------
  |  |  244|     96|#define NEXT_LOG2_SHARED_KEYS_MAX_SIZE 6
  ------------------
 7101|     96|    if (keys == NULL) {
  ------------------
  |  Branch (7101:9): [True: 0, False: 96]
  ------------------
 7102|      0|        PyErr_Clear();
 7103|      0|    }
 7104|     96|    else {
 7105|     96|        assert(keys->dk_nentries == 0);
  ------------------
  |  Branch (7105:9): [True: 96, False: 0]
  ------------------
 7106|       |        /* Set to max size+1 as it will shrink by one before each new object */
 7107|     96|        keys->dk_usable = SHARED_KEYS_MAX_SIZE;
  ------------------
  |  |  243|     96|#define SHARED_KEYS_MAX_SIZE 30
  ------------------
 7108|     96|        keys->dk_kind = DICT_KEYS_SPLIT;
 7109|     96|    }
 7110|     96|    if (cls->ht_type.tp_dict) {
  ------------------
  |  Branch (7110:9): [True: 96, False: 0]
  ------------------
 7111|     96|        PyObject *attrs = PyDict_GetItem(cls->ht_type.tp_dict, &_Py_ID(__static_attributes__));
  ------------------
  |  |  917|     96|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     96|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     96|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7112|     96|        if (attrs != NULL && PyTuple_Check(attrs)) {
  ------------------
  |  |   27|     90|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     90|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 90, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (7112:13): [True: 90, False: 6]
  ------------------
 7113|    270|            for (Py_ssize_t i = 0; i < PyTuple_GET_SIZE(attrs); i++) {
  ------------------
  |  |   27|    270|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    270|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    270|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (7113:36): [True: 180, False: 90]
  ------------------
 7114|    180|                PyObject *key = PyTuple_GET_ITEM(attrs, i);
  ------------------
  |  |   29|    180|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    180|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (7114:33): [True: 180, False: 0]
  ------------------
 7115|      0|                Py_hash_t hash;
 7116|    180|                if (PyUnicode_CheckExact(key) && (hash = unicode_get_hash(key)) != -1) {
  ------------------
  |  |  104|    180|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    360|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 180, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (7116:50): [True: 180, False: 0]
  ------------------
 7117|    180|                    if (insert_split_key(keys, key, hash) == DKIX_EMPTY) {
  ------------------
  |  |  184|    180|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (7117:25): [True: 0, False: 180]
  ------------------
 7118|      0|                        break;
 7119|      0|                    }
 7120|    180|                }
 7121|    180|            }
 7122|     90|        }
 7123|     96|    }
 7124|     96|    return keys;
 7125|     96|}
_PyObject_InitInlineValues:
 7129|    344|{
 7130|    344|    assert(tp->tp_flags & Py_TPFLAGS_HEAPTYPE);
  ------------------
  |  Branch (7130:5): [True: 344, False: 0]
  ------------------
 7131|    344|    assert(tp->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  ------------------
  |  Branch (7131:5): [True: 344, False: 0]
  ------------------
 7132|    344|    assert(tp->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  Branch (7132:5): [True: 344, False: 0]
  ------------------
 7133|    344|    PyDictKeysObject *keys = CACHED_KEYS(tp);
  ------------------
  |  |  870|    344|#define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)
  ------------------
 7134|    344|    assert(keys != NULL);
  ------------------
  |  Branch (7134:5): [True: 344, False: 0]
  ------------------
 7135|    344|    OBJECT_STAT_INC(inline_values);
  ------------------
  |  |   77|    344|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
 7136|       |#ifdef Py_GIL_DISABLED
 7137|       |    Py_ssize_t usable = _Py_atomic_load_ssize_relaxed(&keys->dk_usable);
 7138|       |    if (usable > 1) {
 7139|       |        LOCK_KEYS(keys);
 7140|       |        if (keys->dk_usable > 1) {
 7141|       |            _Py_atomic_store_ssize(&keys->dk_usable, keys->dk_usable - 1);
 7142|       |        }
 7143|       |        UNLOCK_KEYS(keys);
 7144|       |    }
 7145|       |#else
 7146|    344|    if (keys->dk_usable > 1) {
  ------------------
  |  Branch (7146:9): [True: 286, False: 58]
  ------------------
 7147|    286|        keys->dk_usable--;
 7148|    286|    }
 7149|    344|#endif
 7150|    344|    size_t size = shared_keys_usable_size(keys);
 7151|    344|    PyDictValues *values = _PyObject_InlineValues(obj);
 7152|    344|    assert(size < 256);
  ------------------
  |  Branch (7152:5): [True: 344, False: 0]
  ------------------
 7153|    344|    values->capacity = (uint8_t)size;
 7154|    344|    values->size = 0;
 7155|    344|    values->embedded = 1;
 7156|    344|    values->valid = 1;
 7157|  6.08k|    for (size_t i = 0; i < size; i++) {
  ------------------
  |  Branch (7157:24): [True: 5.74k, False: 344]
  ------------------
 7158|  5.74k|        values->values[i] = NULL;
 7159|  5.74k|    }
 7160|       |    _PyObject_ManagedDictPointer(obj)->dict = NULL;
 7161|    344|}
_PyDict_SetItem_LockHeld:
 7228|  1.83k|{
 7229|  1.83k|    if (!PyDict_Check(dict)) {
  ------------------
  |  |   18|  1.83k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  1.83k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (7229:9): [True: 0, False: 1.83k]
  ------------------
 7230|      0|        if (PyFrozenDict_Check(dict)) {
  ------------------
  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7231|      0|            if (value == NULL) {
  ------------------
  |  Branch (7231:17): [True: 0, False: 0]
  ------------------
 7232|      0|                frozendict_does_not_support("deletion");
  ------------------
  |  | 2728|      0|    PyErr_SetString(PyExc_TypeError, "frozendict object does " \
  |  | 2729|      0|                    "not support item " WHAT)
  ------------------
 7233|      0|            }
 7234|      0|            else {
 7235|      0|                frozendict_does_not_support("assignment");
  ------------------
  |  | 2728|      0|    PyErr_SetString(PyExc_TypeError, "frozendict object does " \
  |  | 2729|      0|                    "not support item " WHAT)
  ------------------
 7236|      0|            }
 7237|      0|        }
 7238|      0|        else {
 7239|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 7240|      0|        }
 7241|      0|        return -1;
 7242|      0|    }
 7243|       |
 7244|  1.83k|    if (value == NULL) {
  ------------------
  |  Branch (7244:9): [True: 0, False: 1.83k]
  ------------------
 7245|      0|        Py_hash_t hash = _PyObject_HashFast(name);
 7246|      0|        if (hash == -1) {
  ------------------
  |  Branch (7246:13): [True: 0, False: 0]
  ------------------
 7247|      0|            dict_unhashable_type((PyObject*)dict, name);
 7248|      0|            return -1;
 7249|      0|        }
 7250|      0|        return _PyDict_DelItem_KnownHash_LockHeld((PyObject *)dict, name, hash);
 7251|  1.83k|    } else {
 7252|  1.83k|        return setitem_lock_held(dict, name, value);
 7253|  1.83k|    }
 7254|  1.83k|}
_PyObject_StoreInstanceAttribute:
 7375|    118|{
 7376|    118|    PyDictValues *values = _PyObject_InlineValues(obj);
 7377|    118|    if (!FT_ATOMIC_LOAD_UINT8(values->valid)) {
  ------------------
  |  |  154|    118|#define FT_ATOMIC_LOAD_UINT8(value) value
  ------------------
  |  Branch (7377:9): [True: 0, False: 118]
  ------------------
 7378|      0|        PyDictObject *dict = _PyObject_GetManagedDict(obj);
 7379|      0|        if (dict == NULL) {
  ------------------
  |  Branch (7379:13): [True: 0, False: 0]
  ------------------
 7380|      0|            dict = (PyDictObject *)PyObject_GenericGetDict(obj, NULL);
 7381|      0|            if (dict == NULL) {
  ------------------
  |  Branch (7381:17): [True: 0, False: 0]
  ------------------
 7382|      0|                return -1;
 7383|      0|            }
 7384|      0|            int res = store_instance_attr_dict(obj, dict, name, value);
 7385|      0|            Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7386|      0|            return res;
 7387|      0|        }
 7388|      0|        return store_instance_attr_dict(obj, dict, name, value);
 7389|      0|    }
 7390|       |
 7391|       |#ifdef Py_GIL_DISABLED
 7392|       |    // We have a valid inline values, at least for now...  There are two potential
 7393|       |    // races with having the values become invalid.  One is the dictionary
 7394|       |    // being detached from the object.  The other is if someone is inserting
 7395|       |    // into the dictionary directly and therefore causing it to resize.
 7396|       |    //
 7397|       |    // If we haven't materialized the dictionary yet we lock on the object, which
 7398|       |    // will also be used to prevent the dictionary from being materialized while
 7399|       |    // we're doing the insertion.  If we race and the dictionary gets created
 7400|       |    // then we'll need to release the object lock and lock the dictionary to
 7401|       |    // prevent resizing.
 7402|       |    PyDictObject *dict = _PyObject_GetManagedDict(obj);
 7403|       |    if (dict == NULL) {
 7404|       |        int res;
 7405|       |        Py_BEGIN_CRITICAL_SECTION(obj);
 7406|       |        dict = _PyObject_GetManagedDict(obj);
 7407|       |
 7408|       |        if (dict == NULL) {
 7409|       |            res = store_instance_attr_lock_held(obj, values, name, value);
 7410|       |        }
 7411|       |        Py_END_CRITICAL_SECTION();
 7412|       |
 7413|       |        if (dict == NULL) {
 7414|       |            return res;
 7415|       |        }
 7416|       |    }
 7417|       |    return store_instance_attr_dict(obj, dict, name, value);
 7418|       |#else
 7419|    118|    return store_instance_attr_lock_held(obj, values, name, value);
 7420|    118|#endif
 7421|    118|}
_PyObject_TryGetInstanceAttribute:
 7458|    328|{
 7459|    328|    assert(PyUnicode_CheckExact(name));
  ------------------
  |  Branch (7459:5): [True: 328, False: 0]
  ------------------
 7460|    328|    PyDictValues *values = _PyObject_InlineValues(obj);
 7461|    328|    if (!FT_ATOMIC_LOAD_UINT8(values->valid)) {
  ------------------
  |  |  154|    328|#define FT_ATOMIC_LOAD_UINT8(value) value
  ------------------
  |  Branch (7461:9): [True: 0, False: 328]
  ------------------
 7462|      0|        return false;
 7463|      0|    }
 7464|       |
 7465|    328|    PyDictKeysObject *keys = CACHED_KEYS(Py_TYPE(obj));
  ------------------
  |  |  870|    328|#define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)
  ------------------
 7466|    328|    assert(keys != NULL);
  ------------------
  |  Branch (7466:5): [True: 328, False: 0]
  ------------------
 7467|    328|    Py_ssize_t ix = _PyDictKeys_StringLookupSplit(keys, name);
 7468|    328|    if (ix == DKIX_EMPTY) {
  ------------------
  |  |  184|    328|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (7468:9): [True: 24, False: 304]
  ------------------
 7469|     24|        *attr = NULL;
 7470|     24|        return true;
 7471|     24|    }
 7472|       |
 7473|       |#ifdef Py_GIL_DISABLED
 7474|       |    PyObject *value = _Py_atomic_load_ptr_acquire(&values->values[ix]);
 7475|       |    if (value == NULL) {
 7476|       |        if (FT_ATOMIC_LOAD_UINT8(values->valid)) {
 7477|       |            *attr = NULL;
 7478|       |            return true;
 7479|       |        }
 7480|       |    }
 7481|       |    else if (_Py_TryIncrefCompare(&values->values[ix], value)) {
 7482|       |        *attr = value;
 7483|       |        return true;
 7484|       |    }
 7485|       |
 7486|       |    PyDictObject *dict = _PyObject_GetManagedDict(obj);
 7487|       |    if (dict == NULL) {
 7488|       |        // No dict, lock the object to prevent one from being
 7489|       |        // materialized...
 7490|       |        bool success = false;
 7491|       |        Py_BEGIN_CRITICAL_SECTION(obj);
 7492|       |
 7493|       |        dict = _PyObject_GetManagedDict(obj);
 7494|       |        if (dict == NULL) {
 7495|       |            // Still no dict, we can read from the values
 7496|       |            assert(values->valid);
 7497|       |            value = values->values[ix];
 7498|       |            *attr = _Py_XNewRefWithLock(value);
 7499|       |            success = true;
 7500|       |        }
 7501|       |
 7502|       |        Py_END_CRITICAL_SECTION();
 7503|       |
 7504|       |        if (success) {
 7505|       |            return true;
 7506|       |        }
 7507|       |    }
 7508|       |
 7509|       |    // We have a dictionary, we'll need to lock it to prevent
 7510|       |    // the values from being resized.
 7511|       |    assert(dict != NULL);
 7512|       |
 7513|       |    bool success;
 7514|       |    Py_BEGIN_CRITICAL_SECTION(dict);
 7515|       |
 7516|       |    if (dict->ma_values == values && FT_ATOMIC_LOAD_UINT8(values->valid)) {
 7517|       |        value = _Py_atomic_load_ptr_consume(&values->values[ix]);
 7518|       |        *attr = _Py_XNewRefWithLock(value);
 7519|       |        success = true;
 7520|       |    } else {
 7521|       |        // Caller needs to lookup from the dictionary
 7522|       |        success = false;
 7523|       |    }
 7524|       |
 7525|       |    Py_END_CRITICAL_SECTION();
 7526|       |
 7527|       |    return success;
 7528|       |#else
 7529|    304|    PyObject *value = values->values[ix];
 7530|    304|    *attr = Py_XNewRef(value);
  ------------------
  |  |  551|    304|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    304|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    304|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7531|       |    return true;
 7532|    328|#endif
 7533|    328|}
PyObject_VisitManagedDict:
 7571|     80|{
 7572|     80|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|     80|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7573|     80|    if((tp->tp_flags & Py_TPFLAGS_MANAGED_DICT) == 0) {
  ------------------
  |  |  482|     80|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (7573:8): [True: 0, False: 80]
  ------------------
 7574|      0|        return 0;
 7575|      0|    }
 7576|     80|    PyDictObject *dict = _PyObject_ManagedDictPointer(obj)->dict;
 7577|     80|    if (dict != NULL) {
  ------------------
  |  Branch (7577:9): [True: 0, False: 80]
  ------------------
 7578|       |        // GH-130327: If there's a managed dictionary available, we should
 7579|       |        // *always* traverse it. The dict is responsible for traversing the
 7580|       |        // inline values if it points to them.
 7581|      0|        Py_VISIT(dict);
  ------------------
  |  |  194|      0|    do {                                                                \
  |  |  195|      0|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 7582|      0|    }
 7583|     80|    else if (tp->tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  472|     80|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (7583:14): [True: 80, False: 0]
  ------------------
 7584|     80|        PyDictValues *values = _PyObject_InlineValues(obj);
 7585|     80|        if (values->valid) {
  ------------------
  |  Branch (7585:13): [True: 80, False: 0]
  ------------------
 7586|  1.87k|            for (Py_ssize_t i = 0; i < values->capacity; i++) {
  ------------------
  |  Branch (7586:36): [True: 1.79k, False: 80]
  ------------------
 7587|  1.79k|                Py_VISIT(values->values[i]);
  ------------------
  |  |  194|  1.79k|    do {                                                                \
  |  |  195|  1.79k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 604, False: 1.19k]
  |  |  ------------------
  |  |  196|    604|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    604|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    604|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    604|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 604]
  |  |  ------------------
  |  |  198|    604|                return vret;                                            \
  |  |  199|    604|        }                                                               \
  |  |  200|  1.79k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 1.79k]
  |  |  ------------------
  ------------------
 7588|  1.79k|            }
 7589|     80|        }
 7590|     80|    }
 7591|     80|    return 0;
 7592|     80|}
PyObject_ClearManagedDict:
 7810|    252|{
 7811|       |    // This is called when the object is being freed or cleared
 7812|       |    // by the GC and therefore known to have no references.
 7813|    252|    if (Py_TYPE(obj)->tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  213|    252|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    252|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_TYPE(obj)->tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  472|    252|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (7813:9): [True: 252, False: 0]
  ------------------
 7814|    252|        PyDictObject *dict = _PyObject_GetManagedDict(obj);
 7815|    252|        if (dict == NULL) {
  ------------------
  |  Branch (7815:13): [True: 252, False: 0]
  ------------------
 7816|       |            // We have no materialized dictionary and inline values
 7817|       |            // that just need to be cleared.
 7818|       |            // No dict to clear, we're done
 7819|    252|            clear_inline_values(_PyObject_InlineValues(obj));
 7820|    252|            return;
 7821|    252|        }
 7822|      0|        else if (FT_ATOMIC_LOAD_PTR_RELAXED(dict->ma_values) ==
  ------------------
  |  |  153|      0|#define FT_ATOMIC_LOAD_PTR_RELAXED(value) value
  ------------------
  |  Branch (7822:18): [True: 0, False: 0]
  ------------------
 7823|      0|                    _PyObject_InlineValues(obj)) {
 7824|       |            // We have a materialized object which points at the inline
 7825|       |            // values. We need to materialize the keys. Nothing can modify
 7826|       |            // this object, but we need to lock the dictionary.
 7827|      0|            int err;
 7828|      0|            Py_BEGIN_CRITICAL_SECTION(dict);
  ------------------
  |  |   51|      0|    {
  ------------------
 7829|      0|            err = detach_dict_from_object(dict, obj);
 7830|      0|            Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 7831|       |
 7832|      0|            if (err) {
  ------------------
  |  Branch (7832:17): [True: 0, False: 0]
  ------------------
 7833|       |                /* Must be out of memory */
 7834|      0|                assert(PyErr_Occurred() == PyExc_MemoryError);
  ------------------
  |  Branch (7834:17): [True: 0, False: 0]
  ------------------
 7835|      0|                PyErr_FormatUnraisable("Exception ignored while "
 7836|      0|                                       "clearing an object managed dict");
 7837|       |                /* Clear the dict */
 7838|      0|                Py_BEGIN_CRITICAL_SECTION(dict);
  ------------------
  |  |   51|      0|    {
  ------------------
 7839|      0|                PyDictKeysObject *oldkeys = dict->ma_keys;
 7840|      0|                set_keys(dict, Py_EMPTY_KEYS);
  ------------------
  |  |  645|      0|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
 7841|      0|                dict->ma_values = NULL;
 7842|      0|                dictkeys_decref(oldkeys, IS_DICT_SHARED(dict));
  ------------------
  |  |  258|      0|#define IS_DICT_SHARED(mp) (false)
  ------------------
 7843|      0|                STORE_USED(dict, 0);
  ------------------
  |  |  321|      0|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 7844|      0|                clear_inline_values(_PyObject_InlineValues(obj));
 7845|      0|                Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 7846|      0|            }
 7847|      0|        }
 7848|    252|    }
 7849|      0|    Py_CLEAR(_PyObject_ManagedDictPointer(obj)->dict);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 7850|      0|}
PyObject_GenericGetDict:
 7925|     36|{
 7926|     36|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|     36|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7927|     36|    if (_PyType_HasFeature(tp, Py_TPFLAGS_MANAGED_DICT)) {
  ------------------
  |  |  482|     36|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (7927:9): [True: 0, False: 36]
  ------------------
 7928|      0|        return Py_XNewRef(ensure_managed_dict(obj));
  ------------------
  |  |  551|      0|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7929|      0|    }
 7930|     36|    else {
 7931|     36|        PyObject **dictptr = _PyObject_ComputedDictPointer(obj);
 7932|     36|        if (dictptr == NULL) {
  ------------------
  |  Branch (7932:13): [True: 0, False: 36]
  ------------------
 7933|      0|            PyErr_SetString(PyExc_AttributeError,
 7934|      0|                            "This object has no __dict__");
 7935|      0|            return NULL;
 7936|      0|        }
 7937|       |
 7938|     36|        return Py_XNewRef(ensure_nonmanaged_dict(obj, dictptr));
  ------------------
  |  |  551|     36|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7939|     36|    }
 7940|     36|}
_PyObjectDict_SetItem:
 7945|  1.76k|{
 7946|  1.76k|    PyObject *dict;
 7947|  1.76k|    int res;
 7948|       |
 7949|  1.76k|    assert(dictptr != NULL);
  ------------------
  |  Branch (7949:5): [True: 1.76k, False: 0]
  ------------------
 7950|  1.76k|    dict = ensure_nonmanaged_dict(obj, dictptr);
 7951|  1.76k|    if (dict == NULL) {
  ------------------
  |  Branch (7951:9): [True: 0, False: 1.76k]
  ------------------
 7952|      0|        return -1;
 7953|      0|    }
 7954|       |
 7955|  1.76k|    Py_BEGIN_CRITICAL_SECTION(dict);
  ------------------
  |  |   51|  1.76k|    {
  ------------------
 7956|  1.76k|    res = _PyDict_SetItem_LockHeld((PyDictObject *)dict, key, value);
 7957|  1.76k|    ASSERT_CONSISTENT(dict);
  ------------------
  |  |  653|  1.76k|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (7957:5): [True: 1.76k, False: 0]
  ------------------
 7958|  1.76k|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|  1.76k|    }
  ------------------
 7959|  1.76k|    return res;
 7960|  1.76k|}
_PyDictKeys_GetVersionForCurrentState:
 7995|    850|{
 7996|    850|    uint32_t dk_version = FT_ATOMIC_LOAD_UINT32_RELAXED(dictkeys->dk_version);
  ------------------
  |  |  159|    850|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  ------------------
 7997|    850|    if (dk_version != 0) {
  ------------------
  |  Branch (7997:9): [True: 770, False: 80]
  ------------------
 7998|    770|        return dk_version;
 7999|    770|    }
 8000|     80|    dk_version = get_next_dict_keys_version(interp);
 8001|     80|    FT_ATOMIC_STORE_UINT32_RELAXED(dictkeys->dk_version, dk_version);
  ------------------
  |  |  172|     80|#define FT_ATOMIC_STORE_UINT32_RELAXED(value, new_value) value = new_value
  ------------------
 8002|     80|    return dk_version;
 8003|    850|}
_PyDict_GetKeysVersionForCurrentState:
 8008|    708|{
 8009|    708|    ASSERT_DICT_LOCKED((PyObject *) dict);
 8010|    708|    uint32_t dk_version =
 8011|    708|        _PyDictKeys_GetVersionForCurrentState(interp, dict->ma_keys);
 8012|    708|    ensure_shared_on_keys_version_assignment(dict);
 8013|    708|    return dk_version;
 8014|    708|}
PyDict_Watch:
 8038|     66|{
 8039|     66|    if (!PyDict_Check(dict)) {
  ------------------
  |  |   18|     66|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     66|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (8039:9): [True: 0, False: 66]
  ------------------
 8040|      0|        PyErr_SetString(PyExc_ValueError, "Cannot watch non-dictionary");
 8041|      0|        return -1;
 8042|      0|    }
 8043|     66|    PyInterpreterState *interp = _PyInterpreterState_GET();
 8044|     66|    if (validate_watcher_id(interp, watcher_id)) {
  ------------------
  |  Branch (8044:9): [True: 0, False: 66]
  ------------------
 8045|      0|        return -1;
 8046|      0|    }
 8047|     66|    FT_ATOMIC_OR_UINT64(((PyDictObject*)dict)->_ma_watcher_tag,
  ------------------
  |  |  174|     66|#define FT_ATOMIC_OR_UINT64(value, new_value) (void)(value |= new_value)
  ------------------
 8048|     66|                        1ULL << watcher_id);
 8049|     66|    return 0;
 8050|     66|}
_PyDict_SendEvent:
 8125|  4.74k|{
 8126|  4.74k|    PyInterpreterState *interp = _PyInterpreterState_GET();
 8127|  42.7k|    for (int i = 0; i < DICT_MAX_WATCHERS; i++) {
  ------------------
  |  |   11|  42.7k|#define DICT_MAX_WATCHERS 8
  ------------------
  |  Branch (8127:21): [True: 37.9k, False: 4.74k]
  ------------------
 8128|  37.9k|        if (watcher_bits & 1) {
  ------------------
  |  Branch (8128:13): [True: 4.74k, False: 33.2k]
  ------------------
 8129|  4.74k|            PyDict_WatchCallback cb = FT_ATOMIC_LOAD_PTR_ACQUIRE(
  ------------------
  |  |  150|  4.74k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
 8130|  4.74k|                interp->dict_state.watchers[i]);
 8131|  4.74k|            if (cb && (cb(event, (PyObject*)mp, key, value) < 0)) {
  ------------------
  |  Branch (8131:17): [True: 4.74k, False: 0]
  |  Branch (8131:23): [True: 0, False: 4.74k]
  ------------------
 8132|       |                // We don't want to resurrect the dict by potentially having an
 8133|       |                // unraisablehook keep a reference to it, so we don't pass the
 8134|       |                // dict as context, just an informative string message.  Dict
 8135|       |                // repr can call arbitrary code, so we invent a simpler version.
 8136|      0|                PyErr_FormatUnraisable(
 8137|      0|                    "Exception ignored in %s watcher callback for <dict at %p>",
 8138|      0|                    dict_event_name(event), mp);
 8139|      0|            }
 8140|  4.74k|        }
 8141|  37.9k|        watcher_bits >>= 1;
 8142|  37.9k|    }
 8143|  4.74k|}
dictobject.c:dictkeys_get_index:
  513|   266k|{
  514|   266k|    int log2size = DK_LOG_SIZE(keys);
  ------------------
  |  |  260|   266k|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  ------------------
  |  |  |  |  277|   266k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
  515|   266k|    Py_ssize_t ix;
  516|       |
  517|   266k|    if (log2size < 8) {
  ------------------
  |  Branch (517:9): [True: 199k, False: 66.3k]
  ------------------
  518|   199k|        ix = LOAD_INDEX(keys, 8, i);
  ------------------
  |  |  260|   199k|#define LOAD_INDEX(keys, size, idx) ((const int##size##_t*)(keys->dk_indices))[idx]
  ------------------
  519|   199k|    }
  520|  66.3k|    else if (log2size < 16) {
  ------------------
  |  Branch (520:14): [True: 66.3k, False: 0]
  ------------------
  521|  66.3k|        ix = LOAD_INDEX(keys, 16, i);
  ------------------
  |  |  260|  66.3k|#define LOAD_INDEX(keys, size, idx) ((const int##size##_t*)(keys->dk_indices))[idx]
  ------------------
  522|  66.3k|    }
  523|      0|#if SIZEOF_VOID_P > 4
  524|      0|    else if (log2size >= 32) {
  ------------------
  |  Branch (524:14): [True: 0, False: 0]
  ------------------
  525|      0|        ix = LOAD_INDEX(keys, 64, i);
  ------------------
  |  |  260|      0|#define LOAD_INDEX(keys, size, idx) ((const int##size##_t*)(keys->dk_indices))[idx]
  ------------------
  526|      0|    }
  527|      0|#endif
  528|      0|    else {
  529|      0|        ix = LOAD_INDEX(keys, 32, i);
  ------------------
  |  |  260|      0|#define LOAD_INDEX(keys, size, idx) ((const int##size##_t*)(keys->dk_indices))[idx]
  ------------------
  530|      0|    }
  531|   266k|    assert(ix >= DKIX_DUMMY);
  ------------------
  |  Branch (531:5): [True: 266k, False: 0]
  ------------------
  532|   266k|    return ix;
  533|   266k|}
dictobject.c:unicode_get_hash:
  436|   111k|{
  437|   111k|    return PyUnstable_Unicode_GET_CACHED_HASH(o);
  438|   111k|}
dictobject.c:new_dict:
  930|  2.20k|{
  931|  2.20k|    PyDictObject *mp = _Py_FREELIST_POP(PyDictObject, dicts);
  ------------------
  |  |   43|  2.20k|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|  2.20k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  932|  2.20k|    if (mp == NULL) {
  ------------------
  |  Branch (932:9): [True: 1.20k, False: 998]
  ------------------
  933|  1.20k|        mp = PyObject_GC_New(PyDictObject, &PyDict_Type);
  ------------------
  |  |  181|  1.20k|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|  1.20k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  934|  1.20k|    }
  935|  2.20k|    assert(mp == NULL || Py_IS_TYPE(mp, &PyDict_Type));
  ------------------
  |  Branch (935:5): [True: 0, False: 2.20k]
  |  Branch (935:5): [True: 2.20k, False: 0]
  ------------------
  936|       |
  937|  2.20k|    return new_dict_impl(mp, keys, values, used, free_values_on_failure, 0);
  938|  2.20k|}
dictobject.c:new_dict_impl:
  904|  2.20k|{
  905|  2.20k|    assert(keys != NULL);
  ------------------
  |  Branch (905:5): [True: 2.20k, False: 0]
  ------------------
  906|  2.20k|    if (mp == NULL) {
  ------------------
  |  Branch (906:9): [True: 0, False: 2.20k]
  ------------------
  907|      0|        dictkeys_decref(keys, false);
  908|      0|        if (free_values_on_failure) {
  ------------------
  |  Branch (908:13): [True: 0, False: 0]
  ------------------
  909|      0|            free_values(values, false);
  910|      0|        }
  911|      0|        return NULL;
  912|      0|    }
  913|       |
  914|  2.20k|    mp->ma_keys = keys;
  915|  2.20k|    mp->ma_values = values;
  916|  2.20k|    mp->ma_used = used;
  917|  2.20k|    mp->_ma_watcher_tag = 0;
  918|  2.20k|    if (frozendict) {
  ------------------
  |  Branch (918:9): [True: 0, False: 2.20k]
  ------------------
  919|      0|        ((PyFrozenDictObject *)mp)->ma_hash = -1;
  920|      0|    }
  921|  2.20k|    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|  2.20k|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (921:5): [True: 2.20k, False: 0]
  ------------------
  922|  2.20k|    _PyObject_GC_TRACK(mp);
  ------------------
  |  |  513|  2.20k|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.20k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.20k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  923|  2.20k|    return (PyObject *)mp;
  924|  2.20k|}
dictobject.c:check_keys_unicode:
 1191|    290|{
 1192|    290|    return PyUnicode_CheckExact(key) && (dk->dk_kind != DICT_KEYS_GENERAL);
  ------------------
  |  |  104|    290|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    580|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    290|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    290|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 290, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1192:41): [True: 290, False: 0]
  ------------------
 1193|    290|}
dictobject.c:hash_unicode_key:
 1197|    330|{
 1198|    330|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (1198:5): [True: 330, False: 0]
  ------------------
 1199|    330|    Py_hash_t hash = unicode_get_hash(key);
 1200|    330|    if (hash == -1) {
  ------------------
  |  Branch (1200:9): [True: 0, False: 330]
  ------------------
 1201|      0|        hash = PyUnicode_Type.tp_hash(key);
 1202|      0|        assert(hash != -1);
  ------------------
  |  Branch (1202:9): [True: 0, False: 0]
  ------------------
 1203|      0|    }
 1204|    330|    return hash;
 1205|    330|}
dictobject.c:unicodekeys_lookup_unicode:
 1151|   106k|{
 1152|       |    return do_lookup(NULL, dk, key, hash, compare_unicode_unicode);
 1153|   106k|}
dictobject.c:do_lookup:
 1058|   108k|{
 1059|   108k|    void *ep0 = _DK_ENTRIES(dk);
 1060|   108k|    size_t mask = DK_MASK(dk);
  ------------------
  |  |  452|   108k|#define DK_MASK(dk) (DK_SIZE(dk)-1)
  |  |  ------------------
  |  |  |  |  262|   108k|#define DK_SIZE(dk)      (((int64_t)1)<<DK_LOG_SIZE(dk))
  |  |  |  |  ------------------
  |  |  |  |  |  |  260|   108k|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  277|   108k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1061|   108k|    size_t perturb = hash;
 1062|   108k|    size_t i = (size_t)hash & mask;
 1063|   108k|    Py_ssize_t ix;
 1064|   133k|    for (;;) {
 1065|   133k|        ix = dictkeys_get_index(dk, i);
 1066|   133k|        if (ix >= 0) {
  ------------------
  |  Branch (1066:13): [True: 69.2k, False: 63.8k]
  ------------------
 1067|  69.2k|            int cmp = check_lookup(mp, dk, ep0, ix, key, hash);
 1068|  69.2k|            if (cmp < 0) {
  ------------------
  |  Branch (1068:17): [True: 0, False: 69.2k]
  ------------------
 1069|      0|                return cmp;
 1070|  69.2k|            } else if (cmp) {
  ------------------
  |  Branch (1070:24): [True: 18.3k, False: 50.9k]
  ------------------
 1071|  18.3k|                return ix;
 1072|  18.3k|            }
 1073|  69.2k|        }
 1074|  63.8k|        else if (ix == DKIX_EMPTY) {
  ------------------
  |  |  184|  63.8k|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (1074:18): [True: 60.9k, False: 2.93k]
  ------------------
 1075|  60.9k|            return DKIX_EMPTY;
  ------------------
  |  |  184|  60.9k|#define DKIX_EMPTY (-1)
  ------------------
 1076|  60.9k|        }
 1077|  53.8k|        perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  323|  53.8k|#define PERTURB_SHIFT 5
  ------------------
 1078|  53.8k|        i = mask & (i*5 + perturb + 1);
 1079|       |
 1080|       |        // Manual loop unrolling
 1081|  53.8k|        ix = dictkeys_get_index(dk, i);
 1082|  53.8k|        if (ix >= 0) {
  ------------------
  |  Branch (1082:13): [True: 26.6k, False: 27.2k]
  ------------------
 1083|  26.6k|            int cmp = check_lookup(mp, dk, ep0, ix, key, hash);
 1084|  26.6k|            if (cmp < 0) {
  ------------------
  |  Branch (1084:17): [True: 0, False: 26.6k]
  ------------------
 1085|      0|                return cmp;
 1086|  26.6k|            } else if (cmp) {
  ------------------
  |  Branch (1086:24): [True: 2.75k, False: 23.8k]
  ------------------
 1087|  2.75k|                return ix;
 1088|  2.75k|            }
 1089|  26.6k|        }
 1090|  27.2k|        else if (ix == DKIX_EMPTY) {
  ------------------
  |  |  184|  27.2k|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (1090:18): [True: 26.0k, False: 1.27k]
  ------------------
 1091|  26.0k|            return DKIX_EMPTY;
  ------------------
  |  |  184|  26.0k|#define DKIX_EMPTY (-1)
  ------------------
 1092|  26.0k|        }
 1093|  25.1k|        perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  323|  25.1k|#define PERTURB_SHIFT 5
  ------------------
 1094|  25.1k|        i = mask & (i*5 + perturb + 1);
 1095|  25.1k|    }
 1096|      0|    Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1097|   108k|}
dictobject.c:compare_unicode_unicode:
 1137|  94.4k|{
 1138|  94.4k|    PyDictUnicodeEntry *ep = &((PyDictUnicodeEntry *)ep0)[ix];
 1139|  94.4k|    PyObject *ep_key = FT_ATOMIC_LOAD_PTR_CONSUME(ep->me_key);
  ------------------
  |  |  151|  94.4k|#define FT_ATOMIC_LOAD_PTR_CONSUME(value) value
  ------------------
 1140|  94.4k|    assert(ep_key != NULL);
  ------------------
  |  Branch (1140:5): [True: 94.4k, False: 0]
  ------------------
 1141|  94.4k|    assert(PyUnicode_CheckExact(ep_key));
  ------------------
  |  Branch (1141:5): [True: 94.4k, False: 0]
  ------------------
 1142|  94.4k|    if (ep_key == key ||
  ------------------
  |  Branch (1142:9): [True: 18.2k, False: 76.2k]
  ------------------
 1143|  76.2k|            (unicode_get_hash(ep_key) == hash && unicode_eq(ep_key, key))) {
  ------------------
  |  Branch (1143:14): [True: 2.70k, False: 73.5k]
  |  Branch (1143:50): [True: 2.70k, False: 0]
  ------------------
 1144|  20.9k|        return 1;
 1145|  20.9k|    }
 1146|  73.5k|    return 0;
 1147|  94.4k|}
dictobject.c:unicodekeys_lookup_split:
 1215|    552|{
 1216|    552|    Py_ssize_t ix;
 1217|    552|    assert(dk->dk_kind == DICT_KEYS_SPLIT);
  ------------------
  |  Branch (1217:5): [True: 552, False: 0]
  ------------------
 1218|    552|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (1218:5): [True: 552, False: 0]
  ------------------
 1219|       |
 1220|       |#ifdef Py_GIL_DISABLED
 1221|       |    // A split dictionaries keys can be mutated by other dictionaries
 1222|       |    // but if we have a unicode key we can avoid locking the shared
 1223|       |    // keys.
 1224|       |    ix = unicodekeys_lookup_unicode_threadsafe(dk, key, hash);
 1225|       |    if (ix == DKIX_KEY_CHANGED) {
 1226|       |        LOCK_KEYS(dk);
 1227|       |        ix = unicodekeys_lookup_unicode(dk, key, hash);
 1228|       |        UNLOCK_KEYS(dk);
 1229|       |    }
 1230|       |#else
 1231|    552|    ix = unicodekeys_lookup_unicode(dk, key, hash);
 1232|    552|#endif
 1233|    552|    return ix;
 1234|    552|}
dictobject.c:unicodekeys_lookup_generic:
 1130|      2|{
 1131|      2|    return do_lookup(mp, dk, key, hash, compare_unicode_generic);
 1132|      2|}
dictobject.c:dictkeys_generic_lookup:
 1185|  1.13k|{
 1186|  1.13k|    return do_lookup(mp, dk, key, hash, compare_generic);
 1187|  1.13k|}
dictobject.c:compare_generic:
 1158|  1.40k|{
 1159|  1.40k|    PyDictKeyEntry *ep = &((PyDictKeyEntry *)ep0)[ix];
 1160|  1.40k|    assert(ep->me_key != NULL);
  ------------------
  |  Branch (1160:5): [True: 1.40k, False: 0]
  ------------------
 1161|  1.40k|    if (ep->me_key == key) {
  ------------------
  |  Branch (1161:9): [True: 94, False: 1.30k]
  ------------------
 1162|     94|        return 1;
 1163|     94|    }
 1164|  1.30k|    if (ep->me_hash == hash) {
  ------------------
  |  Branch (1164:9): [True: 4, False: 1.30k]
  ------------------
 1165|      4|        PyObject *startkey = ep->me_key;
 1166|      4|        Py_INCREF(startkey);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1167|      4|        int cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
  ------------------
  |  |  654|      4|#define Py_EQ 2
  ------------------
 1168|      4|        Py_DECREF(startkey);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1169|      4|        if (cmp < 0) {
  ------------------
  |  Branch (1169:13): [True: 0, False: 4]
  ------------------
 1170|      0|            return DKIX_ERROR;
  ------------------
  |  |  186|      0|#define DKIX_ERROR (-3)
  ------------------
 1171|      0|        }
 1172|      4|        if (dk == mp->ma_keys && ep->me_key == startkey) {
  ------------------
  |  Branch (1172:13): [True: 4, False: 0]
  |  Branch (1172:34): [True: 4, False: 0]
  ------------------
 1173|      4|            return cmp;
 1174|      4|        }
 1175|      0|        else {
 1176|       |            /* The dict was mutated, restart */
 1177|      0|            return DKIX_KEY_CHANGED;
  ------------------
  |  |  187|      0|#define DKIX_KEY_CHANGED (-4) /* Used internally */
  ------------------
 1178|      0|        }
 1179|      4|    }
 1180|  1.30k|    return 0;
 1181|  1.30k|}
dictobject.c:can_modify_dict:
  295|  43.5k|{
  296|  43.5k|    if (PyFrozenDict_Check(mp)) {
  ------------------
  |  |   37|  43.5k|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|  43.5k|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  43.5k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  43.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 43.5k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  297|       |        // No locking required to modify a newly created frozendict
  298|       |        // since it's only accessible from the current thread.
  299|      0|        return PyUnstable_Object_IsUniquelyReferenced(_PyObject_CAST(mp));
  ------------------
  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  300|      0|    }
  301|  43.5k|    else {
  302|       |        // Locking is only required if the dictionary is not
  303|       |        // uniquely referenced.
  304|  43.5k|        ASSERT_DICT_LOCKED(mp);
  305|  43.5k|        return 1;
  306|  43.5k|    }
  307|  43.5k|}
dictobject.c:dict_new_presized:
 2272|    394|{
 2273|    394|    const uint8_t log2_max_presize = 17;
 2274|    394|    const Py_ssize_t max_presize = ((Py_ssize_t)1) << log2_max_presize;
 2275|    394|    uint8_t log2_newsize;
 2276|    394|    PyDictKeysObject *new_keys;
 2277|       |
 2278|    394|    if (minused <= USABLE_FRACTION(PyDict_MINSIZE)) {
  ------------------
  |  |  575|    394|#define USABLE_FRACTION(n) (((n) << 1)/3)
  ------------------
  |  Branch (2278:9): [True: 390, False: 4]
  ------------------
 2279|    390|        return PyDict_New();
 2280|    390|    }
 2281|       |    /* There are no strict guarantee that returned dict can contain minused
 2282|       |     * items without resize.  So we create medium size dict instead of very
 2283|       |     * large dict or MemoryError.
 2284|       |     */
 2285|      4|    if (minused > USABLE_FRACTION(max_presize)) {
  ------------------
  |  |  575|      4|#define USABLE_FRACTION(n) (((n) << 1)/3)
  ------------------
  |  Branch (2285:9): [True: 0, False: 4]
  ------------------
 2286|      0|        log2_newsize = log2_max_presize;
 2287|      0|    }
 2288|      4|    else {
 2289|      4|        log2_newsize = estimate_log2_keysize(minused);
 2290|      4|    }
 2291|       |
 2292|      4|    new_keys = new_keys_object(log2_newsize, unicode);
 2293|      4|    if (new_keys == NULL)
  ------------------
  |  Branch (2293:9): [True: 0, False: 4]
  ------------------
 2294|      0|        return NULL;
 2295|      4|    return new_dict(new_keys, NULL, 0, 0);
 2296|      4|}
dictobject.c:estimate_log2_keysize:
  607|      4|{
  608|      4|    return calculate_log2_keysize((n*3 + 1) / 2);
  609|      4|}
dictobject.c:calculate_log2_keysize:
  580|  1.31k|{
  581|  1.31k|#if SIZEOF_LONG == SIZEOF_SIZE_T
  582|  1.31k|    minsize = Py_MAX(minsize, PyDict_MINSIZE);
  ------------------
  |  |  115|  1.31k|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 1.29k, False: 18]
  |  |  ------------------
  ------------------
  583|  1.31k|    return _Py_bit_length(minsize - 1);
  584|       |#elif defined(_MSC_VER)
  585|       |    // On 64bit Windows, sizeof(long) == 4. We cannot use _Py_bit_length.
  586|       |    minsize = Py_MAX(minsize, PyDict_MINSIZE);
  587|       |    unsigned long msb;
  588|       |    _BitScanReverse64(&msb, (uint64_t)minsize - 1);
  589|       |    return (uint8_t)(msb + 1);
  590|       |#else
  591|       |    uint8_t log2_size;
  592|       |    for (log2_size = PyDict_LOG_MINSIZE;
  593|       |            (((Py_ssize_t)1) << log2_size) < minsize;
  594|       |            log2_size++)
  595|       |        ;
  596|       |    return log2_size;
  597|       |#endif
  598|  1.31k|}
dictobject.c:dict_getitem:
 2354|     96|{
 2355|     96|    if (!PyAnyDict_Check(op)) {
  ------------------
  |  |   43|     96|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|     96|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    192|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 96, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2356|      0|        return NULL;
 2357|      0|    }
 2358|     96|    PyDictObject *mp = (PyDictObject *)op;
 2359|       |
 2360|     96|    Py_hash_t hash = _PyObject_HashFast(key);
 2361|     96|    if (hash == -1) {
  ------------------
  |  Branch (2361:9): [True: 0, False: 96]
  ------------------
 2362|      0|        PyErr_FormatUnraisable(warnmsg);
 2363|      0|        return NULL;
 2364|      0|    }
 2365|       |
 2366|     96|    PyThreadState *tstate = _PyThreadState_GET();
 2367|       |#ifdef Py_DEBUG
 2368|       |    // bpo-40839: Before Python 3.10, it was possible to call PyDict_GetItem()
 2369|       |    // with the GIL released.
 2370|       |    _Py_EnsureTstateNotNULL(tstate);
 2371|       |#endif
 2372|       |
 2373|       |    /* Preserve the existing exception */
 2374|     96|    PyObject *value;
 2375|     96|    Py_ssize_t ix; (void)ix;
 2376|       |
 2377|     96|    PyObject *exc = _PyErr_GetRaisedException(tstate);
 2378|       |#ifdef Py_GIL_DISABLED
 2379|       |    ix = _Py_dict_lookup_threadsafe(mp, key, hash, &value);
 2380|       |    Py_XDECREF(value);
 2381|       |#else
 2382|     96|    ix = _Py_dict_lookup(mp, key, hash, &value);
 2383|     96|#endif
 2384|       |
 2385|       |    /* Ignore any exception raised by the lookup */
 2386|     96|    PyObject *exc2 = _PyErr_Occurred(tstate);
 2387|     96|    if (exc2 && !PyErr_GivenExceptionMatches(exc2, PyExc_KeyError)) {
  ------------------
  |  Branch (2387:9): [True: 0, False: 96]
  |  Branch (2387:17): [True: 0, False: 0]
  ------------------
 2388|      0|        PyErr_FormatUnraisable(warnmsg);
 2389|      0|    }
 2390|     96|    _PyErr_SetRaisedException(tstate, exc);
 2391|       |
 2392|     96|    assert(ix >= 0 || value == NULL);
  ------------------
  |  Branch (2392:5): [True: 90, False: 6]
  |  Branch (2392:5): [True: 6, False: 0]
  ------------------
 2393|     96|    return value;  // borrowed reference
 2394|     96|}
dictobject.c:setitem_take2_lock_held:
 2749|  13.8k|{
 2750|  13.8k|    Py_hash_t hash = _PyObject_HashFast(key);
 2751|  13.8k|    if (hash == -1) {
  ------------------
  |  Branch (2751:9): [True: 0, False: 13.8k]
  ------------------
 2752|      0|        dict_unhashable_type((PyObject*)mp, key);
 2753|      0|        Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2754|      0|        Py_DECREF(value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2755|      0|        return -1;
 2756|      0|    }
 2757|       |
 2758|  13.8k|    return setitem_take2_lock_held_known_hash(mp, key, value, hash);
 2759|  13.8k|}
dictobject.c:setitem_take2_lock_held_known_hash:
 2734|  13.8k|{
 2735|  13.8k|    assert(PyAnyDict_Check(mp));
  ------------------
  |  Branch (2735:5): [True: 13.8k, False: 0]
  |  Branch (2735:5): [True: 0, False: 0]
  ------------------
 2736|  13.8k|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (2736:5): [True: 13.8k, False: 0]
  ------------------
 2737|  13.8k|    assert(key);
  ------------------
  |  Branch (2737:5): [True: 13.8k, False: 0]
  ------------------
 2738|  13.8k|    assert(value);
  ------------------
  |  Branch (2738:5): [True: 13.8k, False: 0]
  ------------------
 2739|       |
 2740|  13.8k|    if (mp->ma_keys == Py_EMPTY_KEYS) {
  ------------------
  |  |  645|  13.8k|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
  |  Branch (2740:9): [True: 1.28k, False: 12.5k]
  ------------------
 2741|  1.28k|        return insert_to_emptydict(mp, key, hash, value);
 2742|  1.28k|    }
 2743|       |    /* insertdict() handles any resizing that might be necessary */
 2744|  12.5k|    return insertdict(mp, key, hash, value);
 2745|  13.8k|}
dictobject.c:setitem_lock_held:
 2819|  2.11k|{
 2820|  2.11k|    assert(key);
  ------------------
  |  Branch (2820:5): [True: 2.11k, False: 0]
  ------------------
 2821|  2.11k|    assert(value);
  ------------------
  |  Branch (2821:5): [True: 2.11k, False: 0]
  ------------------
 2822|  2.11k|    return setitem_take2_lock_held(mp,
 2823|  2.11k|                                   Py_NewRef(key), Py_NewRef(value));
  ------------------
  |  |  550|  2.11k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  2.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                                                 Py_NewRef(key), Py_NewRef(value));
  ------------------
  |  |  550|  2.11k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  2.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2824|  2.11k|}
dictobject.c:insert_to_emptydict:
 2019|  1.30k|{
 2020|  1.30k|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (2020:5): [True: 1.30k, False: 0]
  ------------------
 2021|  1.30k|    assert(mp->ma_keys == Py_EMPTY_KEYS);
  ------------------
  |  Branch (2021:5): [True: 1.30k, False: 0]
  ------------------
 2022|       |
 2023|  1.30k|    int unicode = PyUnicode_CheckExact(key);
  ------------------
  |  |  104|  1.30k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  1.30k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.30k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.30k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2024|  1.30k|    PyDictKeysObject *newkeys = new_keys_object(PyDict_LOG_MINSIZE, unicode);
  ------------------
  |  |  115|  1.30k|#define PyDict_LOG_MINSIZE 3
  ------------------
 2025|  1.30k|    if (newkeys == NULL) {
  ------------------
  |  Branch (2025:9): [True: 0, False: 1.30k]
  ------------------
 2026|      0|        Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2027|      0|        Py_DECREF(value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2028|      0|        return -1;
 2029|      0|    }
 2030|  1.30k|    _PyDict_NotifyEvent(PyDict_EVENT_ADDED, mp, key, value);
 2031|       |
 2032|       |    /* We don't decref Py_EMPTY_KEYS here because it is immortal. */
 2033|  1.30k|    assert(mp->ma_values == NULL);
  ------------------
  |  Branch (2033:5): [True: 1.30k, False: 0]
  ------------------
 2034|       |
 2035|  1.30k|    size_t hashpos = (size_t)hash & (PyDict_MINSIZE-1);
  ------------------
  |  |  116|  1.30k|#define PyDict_MINSIZE 8
  ------------------
 2036|  1.30k|    dictkeys_set_index(newkeys, hashpos, 0);
 2037|  1.30k|    if (unicode) {
  ------------------
  |  Branch (2037:9): [True: 1.16k, False: 138]
  ------------------
 2038|  1.16k|        PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(newkeys);
 2039|  1.16k|        ep->me_key = key;
 2040|  1.16k|        STORE_VALUE(ep, value);
  ------------------
  |  |  316|  1.16k|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|  1.16k|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2041|  1.16k|    }
 2042|    138|    else {
 2043|    138|        PyDictKeyEntry *ep = DK_ENTRIES(newkeys);
 2044|    138|        ep->me_key = key;
 2045|    138|        ep->me_hash = hash;
 2046|    138|        STORE_VALUE(ep, value);
  ------------------
  |  |  316|    138|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|    138|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2047|    138|    }
 2048|  1.30k|    STORE_USED(mp, mp->ma_used + 1);
  ------------------
  |  |  321|  1.30k|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|  1.30k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2049|  1.30k|    newkeys->dk_usable--;
 2050|  1.30k|    newkeys->dk_nentries++;
 2051|       |    // We store the keys last so no one can see them in a partially inconsistent
 2052|       |    // state so that we don't need to switch the keys to being shared yet for
 2053|       |    // the case where we're inserting from the non-owner thread.  We don't use
 2054|       |    // set_keys here because the transition from empty to non-empty is safe
 2055|       |    // as the empty keys will never be freed.
 2056|  1.30k|    FT_ATOMIC_STORE_PTR_RELEASE(mp->ma_keys, newkeys);
  ------------------
  |  |  164|  1.30k|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 2057|  1.30k|    return 0;
 2058|  1.30k|}
dictobject.c:dictkeys_set_index:
  538|  53.7k|{
  539|  53.7k|    int log2size = DK_LOG_SIZE(keys);
  ------------------
  |  |  260|  53.7k|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  ------------------
  |  |  |  |  277|  53.7k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
  540|       |
  541|  53.7k|    assert(ix >= DKIX_DUMMY);
  ------------------
  |  Branch (541:5): [True: 53.7k, False: 0]
  ------------------
  542|  53.7k|    assert(keys->dk_version == 0);
  ------------------
  |  Branch (542:5): [True: 53.7k, False: 0]
  ------------------
  543|       |
  544|  53.7k|    if (log2size < 8) {
  ------------------
  |  Branch (544:9): [True: 28.3k, False: 25.4k]
  ------------------
  545|  28.3k|        assert(ix <= 0x7f);
  ------------------
  |  Branch (545:9): [True: 28.3k, False: 0]
  ------------------
  546|  28.3k|        STORE_INDEX(keys, 8, i, ix);
  ------------------
  |  |  261|  28.3k|#define STORE_INDEX(keys, size, idx, value) ((int##size##_t*)(keys->dk_indices))[idx] = (int##size##_t)value
  ------------------
  547|  28.3k|    }
  548|  25.4k|    else if (log2size < 16) {
  ------------------
  |  Branch (548:14): [True: 25.4k, False: 0]
  ------------------
  549|  25.4k|        assert(ix <= 0x7fff);
  ------------------
  |  Branch (549:9): [True: 25.4k, False: 0]
  ------------------
  550|  25.4k|        STORE_INDEX(keys, 16, i, ix);
  ------------------
  |  |  261|  25.4k|#define STORE_INDEX(keys, size, idx, value) ((int##size##_t*)(keys->dk_indices))[idx] = (int##size##_t)value
  ------------------
  551|  25.4k|    }
  552|      0|#if SIZEOF_VOID_P > 4
  553|      0|    else if (log2size >= 32) {
  ------------------
  |  Branch (553:14): [True: 0, False: 0]
  ------------------
  554|      0|        STORE_INDEX(keys, 64, i, ix);
  ------------------
  |  |  261|      0|#define STORE_INDEX(keys, size, idx, value) ((int##size##_t*)(keys->dk_indices))[idx] = (int##size##_t)value
  ------------------
  555|      0|    }
  556|      0|#endif
  557|      0|    else {
  558|      0|        assert(ix <= 0x7fffffff);
  ------------------
  |  Branch (558:9): [True: 0, False: 0]
  ------------------
  559|      0|        STORE_INDEX(keys, 32, i, ix);
  ------------------
  |  |  261|      0|#define STORE_INDEX(keys, size, idx, value) ((int##size##_t*)(keys->dk_indices))[idx] = (int##size##_t)value
  ------------------
  560|      0|    }
  561|  53.7k|}
dictobject.c:insertdict:
 1948|  13.2k|{
 1949|  13.2k|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (1949:5): [True: 13.2k, False: 0]
  ------------------
 1950|       |
 1951|  13.2k|    PyObject *old_value = NULL;
 1952|  13.2k|    Py_ssize_t ix;
 1953|       |
 1954|  13.2k|    if (_PyDict_HasSplitTable(mp) && PyUnicode_CheckExact(key)) {
  ------------------
  |  |   56|  26.5k|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 14, False: 13.2k]
  |  |  ------------------
  ------------------
                  if (_PyDict_HasSplitTable(mp) && PyUnicode_CheckExact(key)) {
  ------------------
  |  |  104|     14|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     14|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 14, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1955|     14|        ix = insert_split_key(mp->ma_keys, key, hash);
 1956|     14|        if (ix != DKIX_EMPTY) {
  ------------------
  |  |  184|     14|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (1956:13): [True: 14, False: 0]
  ------------------
 1957|     14|            _PyDict_InsertSplitValue(mp, key, value, ix);
 1958|     14|            Py_DECREF(key);
  ------------------
  |  |  430|     14|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1959|     14|            Py_DECREF(value);
  ------------------
  |  |  430|     14|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1960|     14|            return 0;
 1961|     14|        }
 1962|       |        // No space in shared keys. Go to insert_combined_dict() below.
 1963|     14|    }
 1964|  13.2k|    else {
 1965|  13.2k|        ix = _Py_dict_lookup(mp, key, hash, &old_value);
 1966|  13.2k|        if (ix == DKIX_ERROR)
  ------------------
  |  |  186|  13.2k|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (1966:13): [True: 0, False: 13.2k]
  ------------------
 1967|      0|            goto Fail;
 1968|  13.2k|    }
 1969|       |
 1970|  13.2k|    if (old_value == NULL) {
  ------------------
  |  Branch (1970:9): [True: 12.6k, False: 614]
  ------------------
 1971|       |        // insert_combined_dict() will convert from non DICT_KEYS_GENERAL table
 1972|       |        // into DICT_KEYS_GENERAL table if key is not Unicode.
 1973|       |        // We don't convert it before _Py_dict_lookup because non-Unicode key
 1974|       |        // may change generic table into Unicode table.
 1975|       |        //
 1976|       |        // NOTE: ix may not be DKIX_EMPTY because split table may have key
 1977|       |        // without value.
 1978|  12.6k|        if (insert_combined_dict(mp, hash, key, value) < 0) {
  ------------------
  |  Branch (1978:13): [True: 0, False: 12.6k]
  ------------------
 1979|      0|            goto Fail;
 1980|      0|        }
 1981|  12.6k|        STORE_USED(mp, mp->ma_used + 1);
  ------------------
  |  |  321|  12.6k|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|  12.6k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1982|  12.6k|        ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|  12.6k|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (1982:9): [True: 12.6k, False: 0]
  ------------------
 1983|  12.6k|        return 0;
 1984|  12.6k|    }
 1985|       |
 1986|    614|    if (old_value != value) {
  ------------------
  |  Branch (1986:9): [True: 520, False: 94]
  ------------------
 1987|    520|        _PyDict_NotifyEvent(PyDict_EVENT_MODIFIED, mp, key, value);
 1988|    520|        assert(old_value != NULL);
  ------------------
  |  Branch (1988:9): [True: 520, False: 0]
  ------------------
 1989|    520|        if (DK_IS_UNICODE(mp->ma_keys)) {
  ------------------
  |  |  282|    520|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 508, False: 12]
  |  |  ------------------
  ------------------
 1990|    508|            if (_PyDict_HasSplitTable(mp)) {
  ------------------
  |  |   56|    508|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 508]
  |  |  ------------------
  ------------------
 1991|      0|                STORE_SPLIT_VALUE(mp, ix, value);
  ------------------
  |  |  317|      0|#define STORE_SPLIT_VALUE(mp, idx, value) FT_ATOMIC_STORE_PTR_RELEASE(mp->ma_values->values[idx], value)
  |  |  ------------------
  |  |  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1992|      0|            }
 1993|    508|            else {
 1994|    508|                PyDictUnicodeEntry *ep = &DK_UNICODE_ENTRIES(mp->ma_keys)[ix];
 1995|    508|                STORE_VALUE(ep, value);
  ------------------
  |  |  316|    508|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|    508|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1996|    508|            }
 1997|    508|        }
 1998|     12|        else {
 1999|     12|            PyDictKeyEntry *ep = &DK_ENTRIES(mp->ma_keys)[ix];
 2000|     12|            STORE_VALUE(ep, value);
  ------------------
  |  |  316|     12|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|     12|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2001|     12|        }
 2002|    520|    }
 2003|    614|    Py_XDECREF(old_value); /* which **CAN** re-enter (see issue #22653) */
  ------------------
  |  |  524|    614|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    614|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    614|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2004|    614|    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|    614|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (2004:5): [True: 614, False: 0]
  ------------------
 2005|    614|    Py_DECREF(key);
  ------------------
  |  |  430|    614|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    614|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    614|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2006|    614|    return 0;
 2007|       |
 2008|      0|Fail:
 2009|      0|    Py_DECREF(value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2010|      0|    Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2011|      0|    return -1;
 2012|    614|}
dictobject.c:insert_combined_dict:
 1844|  22.4k|{
 1845|       |    // gh-140551: If dict was cleared in _Py_dict_lookup,
 1846|       |    // we have to resize one more time to force general key kind.
 1847|  22.4k|    if (DK_IS_UNICODE(mp->ma_keys) && !PyUnicode_CheckExact(key)) {
  ------------------
  |  |  282|  44.9k|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 21.5k, False: 976]
  |  |  ------------------
  ------------------
                  if (DK_IS_UNICODE(mp->ma_keys) && !PyUnicode_CheckExact(key)) {
  ------------------
  |  |  104|  21.5k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  21.5k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  21.5k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  21.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1847:39): [True: 0, False: 21.5k]
  ------------------
 1848|      0|        if (insertion_resize(mp, 0) < 0)
  ------------------
  |  Branch (1848:13): [True: 0, False: 0]
  ------------------
 1849|      0|            return -1;
 1850|      0|        assert(mp->ma_keys->dk_kind == DICT_KEYS_GENERAL);
  ------------------
  |  Branch (1850:9): [True: 0, False: 0]
  ------------------
 1851|      0|    }
 1852|       |
 1853|  22.4k|    if (mp->ma_keys->dk_usable <= 0) {
  ------------------
  |  Branch (1853:9): [True: 1.31k, False: 21.1k]
  ------------------
 1854|       |        /* Need to resize. */
 1855|  1.31k|        if (insertion_resize(mp, 1) < 0) {
  ------------------
  |  Branch (1855:13): [True: 0, False: 1.31k]
  ------------------
 1856|      0|            return -1;
 1857|      0|        }
 1858|  1.31k|    }
 1859|       |
 1860|  22.4k|    _PyDict_NotifyEvent(PyDict_EVENT_ADDED, mp, key, value);
 1861|  22.4k|    FT_ATOMIC_STORE_UINT32_RELAXED(mp->ma_keys->dk_version, 0);
  ------------------
  |  |  172|  22.4k|#define FT_ATOMIC_STORE_UINT32_RELAXED(value, new_value) value = new_value
  ------------------
 1862|       |
 1863|  22.4k|    Py_ssize_t hashpos = find_empty_slot(mp->ma_keys, hash);
 1864|  22.4k|    dictkeys_set_index(mp->ma_keys, hashpos, mp->ma_keys->dk_nentries);
 1865|       |
 1866|  22.4k|    if (DK_IS_UNICODE(mp->ma_keys)) {
  ------------------
  |  |  282|  22.4k|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 21.5k, False: 976]
  |  |  ------------------
  ------------------
 1867|  21.5k|        PyDictUnicodeEntry *ep;
 1868|  21.5k|        ep = &DK_UNICODE_ENTRIES(mp->ma_keys)[mp->ma_keys->dk_nentries];
 1869|  21.5k|        STORE_KEY(ep, key);
  ------------------
  |  |  315|  21.5k|#define STORE_KEY(ep, key) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_key, key)
  |  |  ------------------
  |  |  |  |  164|  21.5k|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1870|  21.5k|        STORE_VALUE(ep, value);
  ------------------
  |  |  316|  21.5k|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|  21.5k|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1871|  21.5k|    }
 1872|    976|    else {
 1873|    976|        PyDictKeyEntry *ep;
 1874|    976|        ep = &DK_ENTRIES(mp->ma_keys)[mp->ma_keys->dk_nentries];
 1875|    976|        STORE_KEY(ep, key);
  ------------------
  |  |  315|    976|#define STORE_KEY(ep, key) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_key, key)
  |  |  ------------------
  |  |  |  |  164|    976|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1876|    976|        STORE_VALUE(ep, value);
  ------------------
  |  |  316|    976|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|    976|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1877|    976|        STORE_HASH(ep, hash);
  ------------------
  |  |  318|    976|#define STORE_HASH(ep, hash) FT_ATOMIC_STORE_SSIZE_RELAXED((ep)->me_hash, hash)
  |  |  ------------------
  |  |  |  |  194|    976|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1878|    976|    }
 1879|  22.4k|    STORE_KEYS_USABLE(mp->ma_keys, mp->ma_keys->dk_usable - 1);
  ------------------
  |  |  319|  22.4k|#define STORE_KEYS_USABLE(keys, usable) FT_ATOMIC_STORE_SSIZE_RELAXED(keys->dk_usable, usable)
  |  |  ------------------
  |  |  |  |  194|  22.4k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1880|  22.4k|    STORE_KEYS_NENTRIES(mp->ma_keys, mp->ma_keys->dk_nentries + 1);
  ------------------
  |  |  320|  22.4k|#define STORE_KEYS_NENTRIES(keys, nentries) FT_ATOMIC_STORE_SSIZE_RELAXED(keys->dk_nentries, nentries)
  |  |  ------------------
  |  |  |  |  194|  22.4k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 1881|  22.4k|    assert(mp->ma_keys->dk_usable >= 0);
  ------------------
  |  Branch (1881:5): [True: 22.4k, False: 0]
  ------------------
 1882|  22.4k|    return 0;
 1883|  22.4k|}
dictobject.c:insertion_resize:
 1837|  1.31k|{
 1838|  1.31k|    return dictresize(mp, calculate_log2_keysize(GROWTH_RATE(mp)), unicode);
  ------------------
  |  |  622|  1.31k|#define GROWTH_RATE(d) ((d)->ma_used*3)
  ------------------
 1839|  1.31k|}
dictobject.c:dictresize:
 2121|  1.31k|{
 2122|  1.31k|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (2122:5): [True: 1.31k, False: 0]
  ------------------
 2123|       |
 2124|  1.31k|    PyDictKeysObject *oldkeys, *newkeys;
 2125|  1.31k|    PyDictValues *oldvalues;
 2126|       |
 2127|  1.31k|    if (log2_newsize >= SIZEOF_SIZE_T*8) {
  ------------------
  |  | 1838|  1.31k|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (2127:9): [True: 0, False: 1.31k]
  ------------------
 2128|      0|        PyErr_NoMemory();
 2129|      0|        return -1;
 2130|      0|    }
 2131|  1.31k|    assert(log2_newsize >= PyDict_LOG_MINSIZE);
  ------------------
  |  Branch (2131:5): [True: 1.31k, False: 0]
  ------------------
 2132|       |
 2133|  1.31k|    oldkeys = mp->ma_keys;
 2134|  1.31k|    oldvalues = mp->ma_values;
 2135|       |
 2136|  1.31k|    if (!DK_IS_UNICODE(oldkeys)) {
  ------------------
  |  |  282|  1.31k|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  ------------------
  |  Branch (2136:9): [True: 58, False: 1.25k]
  ------------------
 2137|     58|        unicode = 0;
 2138|     58|    }
 2139|       |
 2140|  1.31k|    ensure_shared_on_resize(mp);
 2141|       |    /* NOTE: Current odict checks mp->ma_keys to detect resize happen.
 2142|       |     * So we can't reuse oldkeys even if oldkeys->dk_size == newsize.
 2143|       |     * TODO: Try reusing oldkeys when reimplement odict.
 2144|       |     */
 2145|       |
 2146|       |    /* Allocate a new table. */
 2147|  1.31k|    newkeys = new_keys_object(log2_newsize, unicode);
 2148|  1.31k|    if (newkeys == NULL) {
  ------------------
  |  Branch (2148:9): [True: 0, False: 1.31k]
  ------------------
 2149|      0|        return -1;
 2150|      0|    }
 2151|       |    // New table must be large enough.
 2152|  1.31k|    assert(newkeys->dk_usable >= mp->ma_used);
  ------------------
  |  Branch (2152:5): [True: 1.31k, False: 0]
  ------------------
 2153|       |
 2154|  1.31k|    Py_ssize_t numentries = mp->ma_used;
 2155|       |
 2156|  1.31k|    if (oldvalues != NULL) {
  ------------------
  |  Branch (2156:9): [True: 0, False: 1.31k]
  ------------------
 2157|      0|        LOCK_KEYS(oldkeys);
 2158|      0|        PyDictUnicodeEntry *oldentries = DK_UNICODE_ENTRIES(oldkeys);
 2159|       |        /* Convert split table into new combined table.
 2160|       |         * We must incref keys; we can transfer values.
 2161|       |         */
 2162|      0|        if (newkeys->dk_kind == DICT_KEYS_GENERAL) {
  ------------------
  |  Branch (2162:13): [True: 0, False: 0]
  ------------------
 2163|       |            // split -> generic
 2164|      0|            PyDictKeyEntry *newentries = DK_ENTRIES(newkeys);
 2165|       |
 2166|      0|            for (Py_ssize_t i = 0; i < numentries; i++) {
  ------------------
  |  Branch (2166:36): [True: 0, False: 0]
  ------------------
 2167|      0|                int index = get_index_from_order(mp, i);
 2168|      0|                PyDictUnicodeEntry *ep = &oldentries[index];
 2169|      0|                assert(oldvalues->values[index] != NULL);
  ------------------
  |  Branch (2169:17): [True: 0, False: 0]
  ------------------
 2170|      0|                newentries[i].me_key = Py_NewRef(ep->me_key);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2171|      0|                newentries[i].me_hash = unicode_get_hash(ep->me_key);
 2172|      0|                newentries[i].me_value = oldvalues->values[index];
 2173|      0|            }
 2174|      0|            build_indices_generic(newkeys, newentries, numentries);
 2175|      0|        }
 2176|      0|        else { // split -> combined unicode
 2177|      0|            PyDictUnicodeEntry *newentries = DK_UNICODE_ENTRIES(newkeys);
 2178|       |
 2179|      0|            for (Py_ssize_t i = 0; i < numentries; i++) {
  ------------------
  |  Branch (2179:36): [True: 0, False: 0]
  ------------------
 2180|      0|                int index = get_index_from_order(mp, i);
 2181|      0|                PyDictUnicodeEntry *ep = &oldentries[index];
 2182|      0|                assert(oldvalues->values[index] != NULL);
  ------------------
  |  Branch (2182:17): [True: 0, False: 0]
  ------------------
 2183|      0|                newentries[i].me_key = Py_NewRef(ep->me_key);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2184|      0|                newentries[i].me_value = oldvalues->values[index];
 2185|      0|            }
 2186|      0|            build_indices_unicode(newkeys, newentries, numentries);
 2187|      0|        }
 2188|      0|        UNLOCK_KEYS(oldkeys);
 2189|      0|        set_keys(mp, newkeys);
 2190|      0|        dictkeys_decref(oldkeys, IS_DICT_SHARED(mp));
  ------------------
  |  |  258|      0|#define IS_DICT_SHARED(mp) (false)
  ------------------
 2191|      0|        set_values(mp, NULL);
 2192|      0|        if (oldvalues->embedded) {
  ------------------
  |  Branch (2192:13): [True: 0, False: 0]
  ------------------
 2193|      0|            assert(oldvalues->embedded == 1);
  ------------------
  |  Branch (2193:13): [True: 0, False: 0]
  ------------------
 2194|      0|            assert(oldvalues->valid == 1);
  ------------------
  |  Branch (2194:13): [True: 0, False: 0]
  ------------------
 2195|      0|            invalidate_and_clear_inline_values(oldvalues);
 2196|      0|        }
 2197|      0|        else {
 2198|      0|            free_values(oldvalues, IS_DICT_SHARED(mp));
  ------------------
  |  |  258|      0|#define IS_DICT_SHARED(mp) (false)
  ------------------
 2199|      0|        }
 2200|      0|    }
 2201|  1.31k|    else {  // oldkeys is combined.
 2202|  1.31k|        if (oldkeys->dk_kind == DICT_KEYS_GENERAL) {
  ------------------
  |  Branch (2202:13): [True: 58, False: 1.25k]
  ------------------
 2203|       |            // generic -> generic
 2204|     58|            assert(newkeys->dk_kind == DICT_KEYS_GENERAL);
  ------------------
  |  Branch (2204:13): [True: 58, False: 0]
  ------------------
 2205|     58|            PyDictKeyEntry *oldentries = DK_ENTRIES(oldkeys);
 2206|     58|            PyDictKeyEntry *newentries = DK_ENTRIES(newkeys);
 2207|     58|            if (oldkeys->dk_nentries == numentries) {
  ------------------
  |  Branch (2207:17): [True: 48, False: 10]
  ------------------
 2208|     48|                memcpy(newentries, oldentries, numentries * sizeof(PyDictKeyEntry));
 2209|     48|            }
 2210|     10|            else {
 2211|     10|                PyDictKeyEntry *ep = oldentries;
 2212|     10|                for (Py_ssize_t i = 0; i < numentries; i++) {
  ------------------
  |  Branch (2212:40): [True: 0, False: 10]
  ------------------
 2213|      0|                    while (ep->me_value == NULL)
  ------------------
  |  Branch (2213:28): [True: 0, False: 0]
  ------------------
 2214|      0|                        ep++;
 2215|      0|                    newentries[i] = *ep++;
 2216|      0|                }
 2217|     10|            }
 2218|     58|            build_indices_generic(newkeys, newentries, numentries);
 2219|     58|        }
 2220|  1.25k|        else {  // oldkeys is combined unicode
 2221|  1.25k|            PyDictUnicodeEntry *oldentries = DK_UNICODE_ENTRIES(oldkeys);
 2222|  1.25k|            if (unicode) { // combined unicode -> combined unicode
  ------------------
  |  Branch (2222:17): [True: 1.25k, False: 0]
  ------------------
 2223|  1.25k|                PyDictUnicodeEntry *newentries = DK_UNICODE_ENTRIES(newkeys);
 2224|  1.25k|                if (oldkeys->dk_nentries == numentries && mp->ma_keys->dk_kind == DICT_KEYS_UNICODE) {
  ------------------
  |  Branch (2224:21): [True: 1.16k, False: 92]
  |  Branch (2224:59): [True: 1.16k, False: 0]
  ------------------
 2225|  1.16k|                    memcpy(newentries, oldentries, numentries * sizeof(PyDictUnicodeEntry));
 2226|  1.16k|                }
 2227|     92|                else {
 2228|     92|                    PyDictUnicodeEntry *ep = oldentries;
 2229|    898|                    for (Py_ssize_t i = 0; i < numentries; i++) {
  ------------------
  |  Branch (2229:44): [True: 806, False: 92]
  ------------------
 2230|    982|                        while (ep->me_value == NULL)
  ------------------
  |  Branch (2230:32): [True: 176, False: 806]
  ------------------
 2231|    176|                            ep++;
 2232|    806|                        newentries[i] = *ep++;
 2233|    806|                    }
 2234|     92|                }
 2235|  1.25k|                build_indices_unicode(newkeys, newentries, numentries);
 2236|  1.25k|            }
 2237|      0|            else { // combined unicode -> generic
 2238|      0|                PyDictKeyEntry *newentries = DK_ENTRIES(newkeys);
 2239|      0|                PyDictUnicodeEntry *ep = oldentries;
 2240|      0|                for (Py_ssize_t i = 0; i < numentries; i++) {
  ------------------
  |  Branch (2240:40): [True: 0, False: 0]
  ------------------
 2241|      0|                    while (ep->me_value == NULL)
  ------------------
  |  Branch (2241:28): [True: 0, False: 0]
  ------------------
 2242|      0|                        ep++;
 2243|      0|                    newentries[i].me_key = ep->me_key;
 2244|      0|                    newentries[i].me_hash = unicode_get_hash(ep->me_key);
 2245|      0|                    newentries[i].me_value = ep->me_value;
 2246|      0|                    ep++;
 2247|      0|                }
 2248|      0|                build_indices_generic(newkeys, newentries, numentries);
 2249|      0|            }
 2250|  1.25k|        }
 2251|       |
 2252|  1.31k|        set_keys(mp, newkeys);
 2253|       |
 2254|  1.31k|        if (oldkeys != Py_EMPTY_KEYS) {
  ------------------
  |  |  645|  1.31k|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
  |  Branch (2254:13): [True: 1.31k, False: 0]
  ------------------
 2255|       |#ifdef Py_REF_DEBUG
 2256|       |            _Py_DecRefTotal(_PyThreadState_GET());
 2257|       |#endif
 2258|  1.31k|            assert(oldkeys->dk_kind != DICT_KEYS_SPLIT);
  ------------------
  |  Branch (2258:13): [True: 1.31k, False: 0]
  ------------------
 2259|  1.31k|            assert(oldkeys->dk_refcnt == 1);
  ------------------
  |  Branch (2259:13): [True: 1.31k, False: 0]
  ------------------
 2260|  1.31k|            free_keys_object(oldkeys, IS_DICT_SHARED(mp));
  ------------------
  |  |  258|  1.31k|#define IS_DICT_SHARED(mp) (false)
  ------------------
 2261|  1.31k|        }
 2262|  1.31k|    }
 2263|       |
 2264|  1.31k|    STORE_KEYS_USABLE(mp->ma_keys, mp->ma_keys->dk_usable - numentries);
  ------------------
  |  |  319|  1.31k|#define STORE_KEYS_USABLE(keys, usable) FT_ATOMIC_STORE_SSIZE_RELAXED(keys->dk_usable, usable)
  |  |  ------------------
  |  |  |  |  194|  1.31k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2265|  1.31k|    STORE_KEYS_NENTRIES(mp->ma_keys, numentries);
  ------------------
  |  |  320|  1.31k|#define STORE_KEYS_NENTRIES(keys, nentries) FT_ATOMIC_STORE_SSIZE_RELAXED(keys->dk_nentries, nentries)
  |  |  ------------------
  |  |  |  |  194|  1.31k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2266|  1.31k|    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|  1.31k|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (2266:5): [True: 1.31k, False: 0]
  ------------------
 2267|  1.31k|    return 0;
 2268|  1.31k|}
dictobject.c:ensure_shared_on_resize:
 1393|  1.35k|{
 1394|       |#ifdef Py_GIL_DISABLED
 1395|       |    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(mp);
 1396|       |
 1397|       |    if (!_Py_IsOwnedByCurrentThread((PyObject *)mp) && !IS_DICT_SHARED(mp)) {
 1398|       |        // We are writing to the dict from another thread that owns
 1399|       |        // it and we haven't marked it as shared which will ensure
 1400|       |        // that when we re-size ma_keys or ma_values that we will
 1401|       |        // free using QSBR.  We need to lock the dictionary to
 1402|       |        // contend with writes from the owning thread, mark it as
 1403|       |        // shared, and then we can continue with lock-free reads.
 1404|       |        // Technically this is a little heavy handed, we could just
 1405|       |        // free the individual old keys / old-values using qsbr
 1406|       |        SET_DICT_SHARED(mp);
 1407|       |    }
 1408|       |#endif
 1409|  1.35k|}
dictobject.c:build_indices_generic:
 2065|     58|{
 2066|     58|    size_t mask = DK_MASK(keys);
  ------------------
  |  |  452|     58|#define DK_MASK(dk) (DK_SIZE(dk)-1)
  |  |  ------------------
  |  |  |  |  262|     58|#define DK_SIZE(dk)      (((int64_t)1)<<DK_LOG_SIZE(dk))
  |  |  |  |  ------------------
  |  |  |  |  |  |  260|     58|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  277|     58|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2067|  1.27k|    for (Py_ssize_t ix = 0; ix != n; ix++, ep++) {
  ------------------
  |  Branch (2067:29): [True: 1.21k, False: 58]
  ------------------
 2068|  1.21k|        Py_hash_t hash = ep->me_hash;
 2069|  1.21k|        size_t i = hash & mask;
 2070|  1.95k|        for (size_t perturb = hash; dictkeys_get_index(keys, i) != DKIX_EMPTY;) {
  ------------------
  |  |  184|  1.95k|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (2070:37): [True: 737, False: 1.21k]
  ------------------
 2071|    737|            perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  323|    737|#define PERTURB_SHIFT 5
  ------------------
 2072|    737|            i = mask & (i*5 + perturb + 1);
 2073|    737|        }
 2074|  1.21k|        dictkeys_set_index(keys, i, ix);
 2075|  1.21k|    }
 2076|     58|}
dictobject.c:build_indices_unicode:
 2080|  1.25k|{
 2081|  1.25k|    size_t mask = DK_MASK(keys);
  ------------------
  |  |  452|  1.25k|#define DK_MASK(dk) (DK_SIZE(dk)-1)
  |  |  ------------------
  |  |  |  |  262|  1.25k|#define DK_SIZE(dk)      (((int64_t)1)<<DK_LOG_SIZE(dk))
  |  |  |  |  ------------------
  |  |  |  |  |  |  260|  1.25k|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  277|  1.25k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2082|  29.2k|    for (Py_ssize_t ix = 0; ix != n; ix++, ep++) {
  ------------------
  |  Branch (2082:29): [True: 27.9k, False: 1.25k]
  ------------------
 2083|  27.9k|        Py_hash_t hash = unicode_get_hash(ep->me_key);
 2084|  27.9k|        assert(hash != -1);
  ------------------
  |  Branch (2084:9): [True: 27.9k, False: 0]
  ------------------
 2085|  27.9k|        size_t i = hash & mask;
 2086|  33.9k|        for (size_t perturb = hash; dictkeys_get_index(keys, i) != DKIX_EMPTY;) {
  ------------------
  |  |  184|  33.9k|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (2086:37): [True: 6.01k, False: 27.9k]
  ------------------
 2087|  6.01k|            perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  323|  6.01k|#define PERTURB_SHIFT 5
  ------------------
 2088|  6.01k|            i = mask & (i*5 + perturb + 1);
 2089|  6.01k|        }
 2090|  27.9k|        dictkeys_set_index(keys, i, ix);
 2091|  27.9k|    }
 2092|  1.25k|}
dictobject.c:free_keys_object:
  845|  1.85k|{
  846|       |#ifdef Py_GIL_DISABLED
  847|       |    if (use_qsbr) {
  848|       |        _PyMem_FreeDelayed(keys, _PyDict_KeysSize(keys));
  849|       |        return;
  850|       |    }
  851|       |#endif
  852|  1.85k|    if (DK_LOG_SIZE(keys) == PyDict_LOG_MINSIZE && keys->dk_kind == DICT_KEYS_UNICODE) {
  ------------------
  |  |  260|  1.85k|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  ------------------
  |  |  |  |  277|  1.85k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
                  if (DK_LOG_SIZE(keys) == PyDict_LOG_MINSIZE && keys->dk_kind == DICT_KEYS_UNICODE) {
  ------------------
  |  |  115|  3.70k|#define PyDict_LOG_MINSIZE 3
  ------------------
  |  Branch (852:9): [True: 776, False: 1.07k]
  |  Branch (852:52): [True: 750, False: 26]
  ------------------
  853|    750|        _Py_FREELIST_FREE(dictkeys, keys, PyMem_Free);
  ------------------
  |  |   35|    750|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|    750|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|    750|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   17|    750|#  define Py_dictkeys_MAXFREELIST 80
  |  |  ------------------
  ------------------
  854|    750|    }
  855|  1.10k|    else {
  856|  1.10k|        PyMem_Free(keys);
  857|  1.10k|    }
  858|  1.85k|}
dictobject.c:find_empty_slot:
 1821|  22.6k|{
 1822|  22.6k|    assert(keys != NULL);
  ------------------
  |  Branch (1822:5): [True: 22.6k, False: 0]
  ------------------
 1823|       |
 1824|  22.6k|    const size_t mask = DK_MASK(keys);
  ------------------
  |  |  452|  22.6k|#define DK_MASK(dk) (DK_SIZE(dk)-1)
  |  |  ------------------
  |  |  |  |  262|  22.6k|#define DK_SIZE(dk)      (((int64_t)1)<<DK_LOG_SIZE(dk))
  |  |  |  |  ------------------
  |  |  |  |  |  |  260|  22.6k|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  277|  22.6k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1825|  22.6k|    size_t i = hash & mask;
 1826|  22.6k|    Py_ssize_t ix = dictkeys_get_index(keys, i);
 1827|  42.3k|    for (size_t perturb = hash; is_unusable_slot(ix);) {
  ------------------
  |  Branch (1827:33): [True: 19.6k, False: 22.6k]
  ------------------
 1828|  19.6k|        perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  323|  19.6k|#define PERTURB_SHIFT 5
  ------------------
 1829|  19.6k|        i = (i*5 + perturb + 1) & mask;
 1830|  19.6k|        ix = dictkeys_get_index(keys, i);
 1831|  19.6k|    }
 1832|  22.6k|    return i;
 1833|  22.6k|}
dictobject.c:is_unusable_slot:
 1808|  42.3k|{
 1809|       |#ifdef Py_GIL_DISABLED
 1810|       |    return ix >= 0 || ix == DKIX_DUMMY;
 1811|       |#else
 1812|  42.3k|    return ix >= 0;
 1813|  42.3k|#endif
 1814|  42.3k|}
dictobject.c:delitem_common:
 2884|    580|{
 2885|    580|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (2885:5): [True: 580, False: 0]
  ------------------
 2886|       |
 2887|    580|    PyObject *old_key;
 2888|       |
 2889|    580|    Py_ssize_t hashpos = lookdict_index(mp->ma_keys, hash, ix);
 2890|    580|    assert(hashpos >= 0);
  ------------------
  |  Branch (2890:5): [True: 580, False: 0]
  ------------------
 2891|       |
 2892|    580|    STORE_USED(mp, mp->ma_used - 1);
  ------------------
  |  |  321|    580|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|    580|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2893|    580|    if (_PyDict_HasSplitTable(mp)) {
  ------------------
  |  |   56|    580|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 580]
  |  |  ------------------
  ------------------
 2894|      0|        assert(old_value == mp->ma_values->values[ix]);
  ------------------
  |  Branch (2894:9): [True: 0, False: 0]
  ------------------
 2895|      0|        STORE_SPLIT_VALUE(mp, ix, NULL);
  ------------------
  |  |  317|      0|#define STORE_SPLIT_VALUE(mp, idx, value) FT_ATOMIC_STORE_PTR_RELEASE(mp->ma_values->values[idx], value)
  |  |  ------------------
  |  |  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2896|      0|        assert(ix < SHARED_KEYS_MAX_SIZE);
  ------------------
  |  Branch (2896:9): [True: 0, False: 0]
  ------------------
 2897|       |        /* Update order */
 2898|      0|        delete_index_from_values(mp->ma_values, ix);
 2899|      0|        ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|      0|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (2899:9): [True: 0, False: 0]
  ------------------
 2900|      0|    }
 2901|    580|    else {
 2902|    580|        FT_ATOMIC_STORE_UINT32_RELAXED(mp->ma_keys->dk_version, 0);
  ------------------
  |  |  172|    580|#define FT_ATOMIC_STORE_UINT32_RELAXED(value, new_value) value = new_value
  ------------------
 2903|    580|        dictkeys_set_index(mp->ma_keys, hashpos, DKIX_DUMMY);
  ------------------
  |  |  185|    580|#define DKIX_DUMMY (-2)  /* Used internally */
  ------------------
 2904|    580|        if (DK_IS_UNICODE(mp->ma_keys)) {
  ------------------
  |  |  282|    580|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 520, False: 60]
  |  |  ------------------
  ------------------
 2905|    520|            PyDictUnicodeEntry *ep = &DK_UNICODE_ENTRIES(mp->ma_keys)[ix];
 2906|    520|            old_key = ep->me_key;
 2907|    520|            STORE_KEY(ep, NULL);
  ------------------
  |  |  315|    520|#define STORE_KEY(ep, key) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_key, key)
  |  |  ------------------
  |  |  |  |  164|    520|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2908|    520|            STORE_VALUE(ep, NULL);
  ------------------
  |  |  316|    520|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|    520|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2909|    520|        }
 2910|     60|        else {
 2911|     60|            PyDictKeyEntry *ep = &DK_ENTRIES(mp->ma_keys)[ix];
 2912|     60|            old_key = ep->me_key;
 2913|     60|            STORE_KEY(ep, NULL);
  ------------------
  |  |  315|     60|#define STORE_KEY(ep, key) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_key, key)
  |  |  ------------------
  |  |  |  |  164|     60|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2914|     60|            STORE_VALUE(ep, NULL);
  ------------------
  |  |  316|     60|#define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value)
  |  |  ------------------
  |  |  |  |  164|     60|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2915|     60|            STORE_HASH(ep, 0);
  ------------------
  |  |  318|     60|#define STORE_HASH(ep, hash) FT_ATOMIC_STORE_SSIZE_RELAXED((ep)->me_hash, hash)
  |  |  ------------------
  |  |  |  |  194|     60|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 2916|     60|        }
 2917|    580|        Py_DECREF(old_key);
  ------------------
  |  |  430|    580|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    580|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    580|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2918|    580|    }
 2919|    580|    Py_DECREF(old_value);
  ------------------
  |  |  430|    580|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    580|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    580|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2920|       |
 2921|       |    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|    580|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (2921:5): [True: 580, False: 0]
  ------------------
 2922|    580|}
dictobject.c:lookdict_index:
 1036|    580|{
 1037|    580|    size_t mask = DK_MASK(k);
  ------------------
  |  |  452|    580|#define DK_MASK(dk) (DK_SIZE(dk)-1)
  |  |  ------------------
  |  |  |  |  262|    580|#define DK_SIZE(dk)      (((int64_t)1)<<DK_LOG_SIZE(dk))
  |  |  |  |  ------------------
  |  |  |  |  |  |  260|    580|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  277|    580|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1038|    580|    size_t perturb = (size_t)hash;
 1039|    580|    size_t i = (size_t)hash & mask;
 1040|       |
 1041|    761|    for (;;) {
 1042|    761|        Py_ssize_t ix = dictkeys_get_index(k, i);
 1043|    761|        if (ix == index) {
  ------------------
  |  Branch (1043:13): [True: 580, False: 181]
  ------------------
 1044|    580|            return i;
 1045|    580|        }
 1046|    181|        if (ix == DKIX_EMPTY) {
  ------------------
  |  |  184|    181|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (1046:13): [True: 0, False: 181]
  ------------------
 1047|      0|            return DKIX_EMPTY;
  ------------------
  |  |  184|      0|#define DKIX_EMPTY (-1)
  ------------------
 1048|      0|        }
 1049|    181|        perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  323|    181|#define PERTURB_SHIFT 5
  ------------------
 1050|    181|        i = mask & (i*5 + perturb + 1);
 1051|    181|    }
 1052|      0|    Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1053|    580|}
dictobject.c:delitemif_lock_held:
 2984|     60|{
 2985|     60|    PyDictObject *mp = _PyAnyDict_CAST(op);
  ------------------
  |  |  311|     60|    (assert(PyAnyDict_Check(op)), _Py_CAST(PyDictObject*, op))
  |  |  ------------------
  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (2985:24): [True: 60, False: 0]
  |  Branch (2985:24): [True: 0, False: 0]
  ------------------
 2986|     60|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (2986:5): [True: 60, False: 0]
  ------------------
 2987|       |
 2988|     60|    Py_ssize_t ix;
 2989|     60|    Py_hash_t hash;
 2990|     60|    PyObject *old_value;
 2991|     60|    int res;
 2992|       |
 2993|     60|    assert(key);
  ------------------
  |  Branch (2993:5): [True: 60, False: 0]
  ------------------
 2994|     60|    hash = PyObject_Hash(key);
 2995|     60|    if (hash == -1)
  ------------------
  |  Branch (2995:9): [True: 0, False: 60]
  ------------------
 2996|      0|        return -1;
 2997|     60|    ix = _Py_dict_lookup(mp, key, hash, &old_value);
 2998|     60|    if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|     60|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (2998:9): [True: 0, False: 60]
  ------------------
 2999|      0|        return -1;
 3000|      0|    }
 3001|     60|    if (ix == DKIX_EMPTY || old_value == NULL) {
  ------------------
  |  |  184|    120|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (3001:9): [True: 0, False: 60]
  |  Branch (3001:29): [True: 0, False: 60]
  ------------------
 3002|      0|        return 0;
 3003|      0|    }
 3004|       |
 3005|     60|    res = predicate(old_value, arg);
 3006|     60|    if (res == -1)
  ------------------
  |  Branch (3006:9): [True: 0, False: 60]
  ------------------
 3007|      0|        return -1;
 3008|       |
 3009|     60|    if (res > 0) {
  ------------------
  |  Branch (3009:9): [True: 60, False: 0]
  ------------------
 3010|     60|        _PyDict_NotifyEvent(PyDict_EVENT_DELETED, mp, key, NULL);
 3011|     60|        delitem_common(mp, hash, ix, old_value);
 3012|     60|        return 1;
 3013|     60|    } else {
 3014|      0|        return 0;
 3015|      0|    }
 3016|     60|}
dictobject.c:clear_lock_held:
 3052|      4|{
 3053|      4|    if (!PyDict_Check(op)) {
  ------------------
  |  |   18|      4|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3053:9): [True: 0, False: 4]
  ------------------
 3054|      0|        return;
 3055|      0|    }
 3056|      4|    PyDictObject *mp = (PyDictObject *)op;
 3057|      4|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (3057:5): [True: 4, False: 0]
  ------------------
 3058|       |
 3059|      4|    PyDictKeysObject *oldkeys;
 3060|      4|    PyDictValues *oldvalues;
 3061|      4|    Py_ssize_t i, n;
 3062|       |
 3063|      4|    oldkeys = mp->ma_keys;
 3064|      4|    oldvalues = mp->ma_values;
 3065|      4|    if (oldkeys == Py_EMPTY_KEYS) {
  ------------------
  |  |  645|      4|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
  |  Branch (3065:9): [True: 0, False: 4]
  ------------------
 3066|      0|        return;
 3067|      0|    }
 3068|       |    /* Empty the dict... */
 3069|      4|    _PyDict_NotifyEvent(PyDict_EVENT_CLEARED, mp, NULL, NULL);
 3070|       |    // We don't inc ref empty keys because they're immortal
 3071|      4|    ensure_shared_on_resize(mp);
 3072|      4|    STORE_USED(mp, 0);
  ------------------
  |  |  321|      4|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|      4|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 3073|      4|    if (oldvalues == NULL) {
  ------------------
  |  Branch (3073:9): [True: 4, False: 0]
  ------------------
 3074|      4|        set_keys(mp, Py_EMPTY_KEYS);
  ------------------
  |  |  645|      4|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
 3075|      4|        assert(oldkeys->dk_refcnt == 1);
  ------------------
  |  Branch (3075:9): [True: 4, False: 0]
  ------------------
 3076|      4|        dictkeys_decref(oldkeys, IS_DICT_SHARED(mp));
  ------------------
  |  |  258|      4|#define IS_DICT_SHARED(mp) (false)
  ------------------
 3077|      4|    }
 3078|      0|    else if (oldvalues->embedded) {
  ------------------
  |  Branch (3078:14): [True: 0, False: 0]
  ------------------
 3079|      0|        clear_embedded_values(oldvalues, oldkeys->dk_nentries);
 3080|      0|    }
 3081|      0|    else {
 3082|      0|        set_values(mp, NULL);
 3083|      0|        set_keys(mp, Py_EMPTY_KEYS);
  ------------------
  |  |  645|      0|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
 3084|      0|        n = oldkeys->dk_nentries;
 3085|      0|        for (i = 0; i < n; i++) {
  ------------------
  |  Branch (3085:21): [True: 0, False: 0]
  ------------------
 3086|      0|            PyObject *tmp = oldvalues->values[i];
 3087|      0|            FT_ATOMIC_STORE_PTR_RELEASE(oldvalues->values[i], NULL);
  ------------------
  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 3088|      0|            Py_XDECREF(tmp);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3089|      0|        }
 3090|      0|        free_values(oldvalues, IS_DICT_SHARED(mp));
  ------------------
  |  |  258|      0|#define IS_DICT_SHARED(mp) (false)
  ------------------
 3091|      0|        dictkeys_decref(oldkeys, IS_DICT_SHARED(mp));
  ------------------
  |  |  258|      0|#define IS_DICT_SHARED(mp) (false)
  ------------------
 3092|      0|    }
 3093|      4|    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|      4|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (3093:5): [True: 4, False: 0]
  ------------------
 3094|      4|}
dictobject.c:pop_lock_held:
 3249|    134|{
 3250|    134|    if (!PyDict_Check(op)) {
  ------------------
  |  |   18|    134|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    134|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3250:9): [True: 0, False: 134]
  ------------------
 3251|      0|        if (result) {
  ------------------
  |  Branch (3251:13): [True: 0, False: 0]
  ------------------
 3252|      0|            *result = NULL;
 3253|      0|        }
 3254|      0|        if (PyFrozenDict_Check(op)) {
  ------------------
  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3255|      0|            frozendict_does_not_support("deletion");
  ------------------
  |  | 2728|      0|    PyErr_SetString(PyExc_TypeError, "frozendict object does " \
  |  | 2729|      0|                    "not support item " WHAT)
  ------------------
 3256|      0|        }
 3257|      0|        else {
 3258|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3259|      0|        }
 3260|      0|        return -1;
 3261|      0|    }
 3262|    134|    PyDictObject *dict = (PyDictObject *)op;
 3263|    134|    assert(can_modify_dict(dict));
  ------------------
  |  Branch (3263:5): [True: 134, False: 0]
  ------------------
 3264|       |
 3265|    134|    if (dict->ma_used == 0) {
  ------------------
  |  Branch (3265:9): [True: 0, False: 134]
  ------------------
 3266|      0|        if (result) {
  ------------------
  |  Branch (3266:13): [True: 0, False: 0]
  ------------------
 3267|      0|            *result = NULL;
 3268|      0|        }
 3269|      0|        return 0;
 3270|      0|    }
 3271|       |
 3272|    134|    Py_hash_t hash = _PyObject_HashFast(key);
 3273|    134|    if (hash == -1) {
  ------------------
  |  Branch (3273:9): [True: 0, False: 134]
  ------------------
 3274|      0|        dict_unhashable_type(op, key);
 3275|      0|        if (result) {
  ------------------
  |  Branch (3275:13): [True: 0, False: 0]
  ------------------
 3276|      0|            *result = NULL;
 3277|      0|        }
 3278|      0|        return -1;
 3279|      0|    }
 3280|    134|    return _PyDict_Pop_KnownHash(dict, key, hash, result);
 3281|    134|}
dictobject.c:dict_pop_default:
 3314|     54|{
 3315|     54|    PyObject *result;
 3316|     54|    if (PyDict_Pop(dict, key, &result) == 0) {
  ------------------
  |  Branch (3316:9): [True: 0, False: 54]
  ------------------
 3317|      0|        if (default_value != NULL) {
  ------------------
  |  Branch (3317:13): [True: 0, False: 0]
  ------------------
 3318|      0|            return Py_NewRef(default_value);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3319|      0|        }
 3320|      0|        _PyErr_SetKeyError(key);
 3321|      0|        return NULL;
 3322|      0|    }
 3323|     54|    return result;
 3324|     54|}
dictobject.c:keys_lock_held:
 3735|      8|{
 3736|      8|    ASSERT_DICT_LOCKED(dict);
 3737|       |
 3738|      8|    if (dict == NULL || !PyAnyDict_Check(dict)) {
  ------------------
  |  |   43|      8|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|      8|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|     16|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 8, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3738:9): [True: 0, False: 8]
  ------------------
 3739|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3740|      0|        return NULL;
 3741|      0|    }
 3742|      8|    PyDictObject *mp = (PyDictObject *)dict;
 3743|      8|    PyObject *v;
 3744|      8|    Py_ssize_t n;
 3745|       |
 3746|      8|  again:
 3747|      8|    n = mp->ma_used;
 3748|      8|    v = PyList_New(n);
 3749|      8|    if (v == NULL)
  ------------------
  |  Branch (3749:9): [True: 0, False: 8]
  ------------------
 3750|      0|        return NULL;
 3751|      8|    if (n != mp->ma_used) {
  ------------------
  |  Branch (3751:9): [True: 0, False: 8]
  ------------------
 3752|       |        /* Durnit.  The allocations caused the dict to resize.
 3753|       |         * Just start over, this shouldn't normally happen.
 3754|       |         */
 3755|      0|        Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3756|      0|        goto again;
 3757|      0|    }
 3758|       |
 3759|       |    /* Nothing we do below makes any function calls. */
 3760|      8|    Py_ssize_t j = 0, pos = 0;
 3761|      8|    PyObject *key;
 3762|  1.75k|    while (_PyDict_Next((PyObject*)mp, &pos, &key, NULL, NULL)) {
  ------------------
  |  Branch (3762:12): [True: 1.74k, False: 8]
  ------------------
 3763|  1.74k|        assert(j < n);
  ------------------
  |  Branch (3763:9): [True: 1.74k, False: 0]
  ------------------
 3764|  1.74k|        PyList_SET_ITEM(v, j, Py_NewRef(key));
  ------------------
  |  |   50|  1.74k|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  1.74k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.74k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  1.74k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.74k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3765|  1.74k|        j++;
 3766|  1.74k|    }
 3767|      8|    assert(j == n);
  ------------------
  |  Branch (3767:5): [True: 8, False: 0]
  ------------------
 3768|      8|    return v;
 3769|      8|}
dictobject.c:dict_merge:
 4184|    262|{
 4185|    262|    assert(a != NULL);
  ------------------
  |  Branch (4185:5): [True: 262, False: 0]
  ------------------
 4186|    262|    assert(b != NULL);
  ------------------
  |  Branch (4186:5): [True: 262, False: 0]
  ------------------
 4187|    262|    assert(0 <= override && override <= 2);
  ------------------
  |  Branch (4187:5): [True: 262, False: 0]
  |  Branch (4187:5): [True: 262, False: 0]
  ------------------
 4188|       |
 4189|    262|    PyDictObject *mp = _PyAnyDict_CAST(a);
  ------------------
  |  |  311|    262|    (assert(PyAnyDict_Check(op)), _Py_CAST(PyDictObject*, op))
  |  |  ------------------
  |  |  |  |   37|    262|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (4189:24): [True: 262, False: 0]
  |  Branch (4189:24): [True: 0, False: 0]
  ------------------
 4190|      0|    int res = 0;
 4191|    262|    if (PyAnyDict_Check(b) && (Py_TYPE(b)->tp_iter == dict_iter)) {
  ------------------
  |  |   43|    524|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|    262|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    524|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 262, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyAnyDict_Check(b) && (Py_TYPE(b)->tp_iter == dict_iter)) {
  ------------------
  |  |  213|    262|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    262|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    262|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4191:31): [True: 262, False: 0]
  ------------------
 4192|    262|        PyDictObject *other = (PyDictObject*)b;
 4193|    262|        int res;
 4194|    262|        Py_BEGIN_CRITICAL_SECTION2(a, b);
  ------------------
  |  |   57|    262|    {
  ------------------
 4195|    262|        res = dict_dict_merge((PyDictObject *)a, other, override, dupkey);
 4196|    262|        ASSERT_CONSISTENT(a);
  ------------------
  |  |  653|    262|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (4196:9): [True: 262, False: 0]
  ------------------
 4197|    262|        Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|    262|    }
  ------------------
 4198|    262|        return res;
 4199|    262|    }
 4200|      0|    else {
 4201|       |        /* Do it the generic, slower way */
 4202|      0|        Py_BEGIN_CRITICAL_SECTION(a);
  ------------------
  |  |   51|      0|    {
  ------------------
 4203|      0|        PyObject *keys = PyMapping_Keys(b);
 4204|      0|        PyObject *iter;
 4205|      0|        PyObject *key, *value;
 4206|      0|        int status;
 4207|       |
 4208|      0|        if (keys == NULL) {
  ------------------
  |  Branch (4208:13): [True: 0, False: 0]
  ------------------
 4209|       |            /* Docstring says this is equivalent to E.keys() so
 4210|       |             * if E doesn't have a .keys() method we want
 4211|       |             * AttributeError to percolate up.  Might as well
 4212|       |             * do the same for any other error.
 4213|       |             */
 4214|      0|            res = -1;
 4215|      0|            goto slow_exit;
 4216|      0|        }
 4217|       |
 4218|      0|        iter = PyObject_GetIter(keys);
 4219|      0|        Py_DECREF(keys);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4220|      0|        if (iter == NULL) {
  ------------------
  |  Branch (4220:13): [True: 0, False: 0]
  ------------------
 4221|      0|            res = -1;
 4222|      0|            goto slow_exit;
 4223|      0|        }
 4224|       |
 4225|      0|        for (key = PyIter_Next(iter); key; key = PyIter_Next(iter)) {
  ------------------
  |  Branch (4225:39): [True: 0, False: 0]
  ------------------
 4226|      0|            if (override != 1) {
  ------------------
  |  Branch (4226:17): [True: 0, False: 0]
  ------------------
 4227|      0|                status = dict_contains(a, key);
 4228|      0|                if (status != 0) {
  ------------------
  |  Branch (4228:21): [True: 0, False: 0]
  ------------------
 4229|      0|                    if (status > 0) {
  ------------------
  |  Branch (4229:25): [True: 0, False: 0]
  ------------------
 4230|      0|                        if (dupkey == NULL) {
  ------------------
  |  Branch (4230:29): [True: 0, False: 0]
  ------------------
 4231|      0|                            Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4232|      0|                            continue;
 4233|      0|                        }
 4234|      0|                        *dupkey = key;
 4235|      0|                        res = -2;
 4236|      0|                    }
 4237|      0|                    else {
 4238|      0|                        Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4239|      0|                        res = -1;
 4240|      0|                    }
 4241|      0|                    Py_DECREF(iter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4242|      0|                    goto slow_exit;
 4243|      0|                }
 4244|      0|            }
 4245|      0|            value = PyObject_GetItem(b, key);
 4246|      0|            if (value == NULL) {
  ------------------
  |  Branch (4246:17): [True: 0, False: 0]
  ------------------
 4247|      0|                Py_DECREF(iter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4248|      0|                Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4249|      0|                res = -1;
 4250|      0|                goto slow_exit;
 4251|      0|            }
 4252|      0|            status = setitem_lock_held(mp, key, value);
 4253|      0|            Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4254|      0|            Py_DECREF(value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4255|      0|            if (status < 0) {
  ------------------
  |  Branch (4255:17): [True: 0, False: 0]
  ------------------
 4256|      0|                Py_DECREF(iter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4257|      0|                res = -1;
 4258|      0|                goto slow_exit;
 4259|      0|                return -1;
 4260|      0|            }
 4261|      0|        }
 4262|      0|        Py_DECREF(iter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4263|      0|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (4263:13): [True: 0, False: 0]
  ------------------
 4264|       |            /* Iterator completed, via error */
 4265|      0|            res = -1;
 4266|      0|            goto slow_exit;
 4267|      0|        }
 4268|       |
 4269|      0|slow_exit:
 4270|      0|        ASSERT_CONSISTENT(a);
  ------------------
  |  |  653|      0|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (4270:9): [True: 0, False: 0]
  ------------------
 4271|      0|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 4272|      0|        return res;
 4273|      0|    }
 4274|    262|}
dictobject.c:dict_dict_merge:
 4089|    262|{
 4090|    262|    assert(can_modify_dict(mp));
  ------------------
  |  Branch (4090:5): [True: 262, False: 0]
  ------------------
 4091|    262|    ASSERT_DICT_LOCKED(other);
 4092|       |
 4093|    262|    if (other == mp || other->ma_used == 0)
  ------------------
  |  Branch (4093:9): [True: 0, False: 262]
  |  Branch (4093:24): [True: 186, False: 76]
  ------------------
 4094|       |        /* a.update(a) or a.update({}); nothing to do */
 4095|    186|        return 0;
 4096|     76|    if (mp->ma_used == 0) {
  ------------------
  |  Branch (4096:9): [True: 36, False: 40]
  ------------------
 4097|       |        /* Since the target dict is empty, _PyDict_Contains_KnownHash()
 4098|       |         * always returns 0.  Setting override to 1
 4099|       |         * skips the unnecessary test.
 4100|       |         */
 4101|     36|        override = 1;
 4102|     36|        PyDictKeysObject *okeys = other->ma_keys;
 4103|       |
 4104|       |        // If other is clean, combined, and just allocated, just clone it.
 4105|     36|        if (mp->ma_values == NULL &&
  ------------------
  |  Branch (4105:13): [True: 36, False: 0]
  ------------------
 4106|     36|            other->ma_values == NULL &&
  ------------------
  |  Branch (4106:13): [True: 36, False: 0]
  ------------------
 4107|     36|            other->ma_used == okeys->dk_nentries &&
  ------------------
  |  Branch (4107:13): [True: 36, False: 0]
  ------------------
 4108|     36|            (DK_LOG_SIZE(okeys) == PyDict_LOG_MINSIZE ||
  ------------------
  |  |  260|     36|#define DK_LOG_SIZE(dk)  _Py_RVALUE((dk)->dk_log2_size)
  |  |  ------------------
  |  |  |  |  277|     36|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  ------------------
  ------------------
                          (DK_LOG_SIZE(okeys) == PyDict_LOG_MINSIZE ||
  ------------------
  |  |  115|     72|#define PyDict_LOG_MINSIZE 3
  ------------------
  |  Branch (4108:14): [True: 34, False: 2]
  ------------------
 4109|      2|             USABLE_FRACTION(DK_SIZE(okeys)/2) < other->ma_used)
  ------------------
  |  |  575|      2|#define USABLE_FRACTION(n) (((n) << 1)/3)
  ------------------
  |  Branch (4109:14): [True: 2, False: 0]
  ------------------
 4110|     36|        ) {
 4111|     36|            _PyDict_NotifyEvent(PyDict_EVENT_CLONED, mp, (PyObject *)other, NULL);
 4112|     36|            PyDictKeysObject *keys = clone_combined_dict_keys(other);
 4113|     36|            if (keys == NULL)
  ------------------
  |  Branch (4113:17): [True: 0, False: 36]
  ------------------
 4114|      0|                return -1;
 4115|       |
 4116|     36|            ensure_shared_on_resize(mp);
 4117|     36|            dictkeys_decref(mp->ma_keys, IS_DICT_SHARED(mp));
  ------------------
  |  |  258|     36|#define IS_DICT_SHARED(mp) (false)
  ------------------
 4118|     36|            set_keys(mp, keys);
 4119|     36|            STORE_USED(mp, other->ma_used);
  ------------------
  |  |  321|     36|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|     36|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 4120|     36|            ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|     36|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (4120:13): [True: 36, False: 0]
  ------------------
 4121|       |
 4122|     36|            if (_PyObject_GC_IS_TRACKED(other) && !_PyObject_GC_IS_TRACKED(mp)) {
  ------------------
  |  |   81|     72|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 36, False: 0]
  |  |  ------------------
  ------------------
                          if (_PyObject_GC_IS_TRACKED(other) && !_PyObject_GC_IS_TRACKED(mp)) {
  ------------------
  |  |   81|     36|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (4122:51): [True: 0, False: 36]
  ------------------
 4123|       |                /* Maintain tracking. */
 4124|      0|                _PyObject_GC_TRACK(mp);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4125|      0|            }
 4126|       |
 4127|     36|            return 0;
 4128|     36|        }
 4129|     36|    }
 4130|       |    /* Do one big resize at the start, rather than
 4131|       |        * incrementally resizing as we insert new items.  Expect
 4132|       |        * that there will be no (or few) overlapping keys.
 4133|       |        */
 4134|     40|    if (USABLE_FRACTION(DK_SIZE(mp->ma_keys)) < other->ma_used) {
  ------------------
  |  |  575|     40|#define USABLE_FRACTION(n) (((n) << 1)/3)
  ------------------
  |  Branch (4134:9): [True: 0, False: 40]
  ------------------
 4135|      0|        int unicode = DK_IS_UNICODE(other->ma_keys);
  ------------------
  |  |  282|      0|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  ------------------
 4136|      0|        if (dictresize(mp, estimate_log2_keysize(mp->ma_used + other->ma_used),
  ------------------
  |  Branch (4136:13): [True: 0, False: 0]
  ------------------
 4137|      0|                        unicode)) {
 4138|      0|            return -1;
 4139|      0|        }
 4140|      0|    }
 4141|       |
 4142|     40|    Py_ssize_t orig_size = other->ma_used;
 4143|     40|    Py_ssize_t pos = 0;
 4144|     40|    Py_hash_t hash;
 4145|     40|    PyObject *key, *value;
 4146|       |
 4147|    708|    while (_PyDict_Next((PyObject*)other, &pos, &key, &value, &hash)) {
  ------------------
  |  Branch (4147:12): [True: 668, False: 40]
  ------------------
 4148|    668|        int err = 0;
 4149|    668|        Py_INCREF(key);
  ------------------
  |  |  310|    668|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    668|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    668|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4150|    668|        Py_INCREF(value);
  ------------------
  |  |  310|    668|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    668|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    668|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4151|    668|        if (override == 1) {
  ------------------
  |  Branch (4151:13): [True: 668, False: 0]
  ------------------
 4152|    668|            err = insertdict(mp, Py_NewRef(key), hash, Py_NewRef(value));
  ------------------
  |  |  550|    668|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    668|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    668|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          err = insertdict(mp, Py_NewRef(key), hash, Py_NewRef(value));
  ------------------
  |  |  550|    668|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    668|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    668|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4153|    668|        }
 4154|      0|        else {
 4155|      0|            err = _PyDict_Contains_KnownHash((PyObject *)mp, key, hash);
 4156|      0|            if (err == 0) {
  ------------------
  |  Branch (4156:17): [True: 0, False: 0]
  ------------------
 4157|      0|                err = insertdict(mp, Py_NewRef(key), hash, Py_NewRef(value));
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                              err = insertdict(mp, Py_NewRef(key), hash, Py_NewRef(value));
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4158|      0|            }
 4159|      0|            else if (err > 0) {
  ------------------
  |  Branch (4159:22): [True: 0, False: 0]
  ------------------
 4160|      0|                if (dupkey != NULL) {
  ------------------
  |  Branch (4160:21): [True: 0, False: 0]
  ------------------
 4161|      0|                    *dupkey = key;
 4162|      0|                    Py_DECREF(value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4163|      0|                    return -2;
 4164|      0|                }
 4165|      0|                err = 0;
 4166|      0|            }
 4167|      0|        }
 4168|    668|        Py_DECREF(value);
  ------------------
  |  |  430|    668|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    668|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    668|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4169|    668|        Py_DECREF(key);
  ------------------
  |  |  430|    668|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    668|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    668|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4170|    668|        if (err != 0)
  ------------------
  |  Branch (4170:13): [True: 0, False: 668]
  ------------------
 4171|      0|            return -1;
 4172|       |
 4173|    668|        if (orig_size != other->ma_used) {
  ------------------
  |  Branch (4173:13): [True: 0, False: 668]
  ------------------
 4174|      0|            PyErr_SetString(PyExc_RuntimeError,
 4175|      0|                    "dict mutated during update");
 4176|      0|            return -1;
 4177|      0|        }
 4178|    668|    }
 4179|     40|    return 0;
 4180|     40|}
dictobject.c:clone_combined_dict_keys:
  967|    386|{
  968|    386|    assert(PyAnyDict_Check(orig));
  ------------------
  |  Branch (968:5): [True: 386, False: 0]
  |  Branch (968:5): [True: 0, False: 0]
  ------------------
  969|    386|    assert(Py_TYPE(orig)->tp_iter == dict_iter);
  ------------------
  |  Branch (969:5): [True: 386, False: 0]
  ------------------
  970|    386|    assert(orig->ma_values == NULL);
  ------------------
  |  Branch (970:5): [True: 386, False: 0]
  ------------------
  971|    386|    assert(orig->ma_keys != Py_EMPTY_KEYS);
  ------------------
  |  Branch (971:5): [True: 386, False: 0]
  ------------------
  972|    386|    assert(orig->ma_keys->dk_refcnt == 1);
  ------------------
  |  Branch (972:5): [True: 386, False: 0]
  ------------------
  973|       |
  974|    386|    if (!PyFrozenDict_Check(orig)) {
  ------------------
  |  |   37|    386|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|    386|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    386|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    386|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (974:9): [True: 386, False: 0]
  ------------------
  975|    386|        ASSERT_DICT_LOCKED(orig);
  976|    386|    }
  977|       |
  978|    386|    size_t keys_size = _PyDict_KeysSize(orig->ma_keys);
  979|    386|    PyDictKeysObject *keys = PyMem_Malloc(keys_size);
  980|    386|    if (keys == NULL) {
  ------------------
  |  Branch (980:9): [True: 0, False: 386]
  ------------------
  981|      0|        PyErr_NoMemory();
  982|      0|        return NULL;
  983|      0|    }
  984|       |
  985|    386|    memcpy(keys, orig->ma_keys, keys_size);
  986|       |
  987|       |    /* After copying key/value pairs, we need to incref all
  988|       |       keys and values and they are about to be co-owned by a
  989|       |       new dict object. */
  990|    386|    PyObject **pkey, **pvalue;
  991|    386|    size_t offs;
  992|    386|    if (DK_IS_UNICODE(orig->ma_keys)) {
  ------------------
  |  |  282|    386|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 386, False: 0]
  |  |  ------------------
  ------------------
  993|    386|        PyDictUnicodeEntry *ep0 = DK_UNICODE_ENTRIES(keys);
  994|    386|        pkey = &ep0->me_key;
  995|    386|        pvalue = &ep0->me_value;
  996|    386|        offs = sizeof(PyDictUnicodeEntry) / sizeof(PyObject*);
  997|    386|    }
  998|      0|    else {
  999|      0|        PyDictKeyEntry *ep0 = DK_ENTRIES(keys);
 1000|      0|        pkey = &ep0->me_key;
 1001|      0|        pvalue = &ep0->me_value;
 1002|      0|        offs = sizeof(PyDictKeyEntry) / sizeof(PyObject*);
 1003|      0|    }
 1004|       |
 1005|    386|    Py_ssize_t n = keys->dk_nentries;
 1006|  4.66k|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (1006:28): [True: 4.28k, False: 386]
  ------------------
 1007|  4.28k|        PyObject *value = *pvalue;
 1008|  4.28k|        if (value != NULL) {
  ------------------
  |  Branch (1008:13): [True: 4.00k, False: 278]
  ------------------
 1009|  4.00k|            Py_INCREF(value);
  ------------------
  |  |  310|  4.00k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1010|  4.00k|            Py_INCREF(*pkey);
  ------------------
  |  |  310|  4.00k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1011|  4.00k|        }
 1012|  4.28k|        pvalue += offs;
 1013|  4.28k|        pkey += offs;
 1014|  4.28k|    }
 1015|       |
 1016|       |    /* Since we copied the keys table we now have an extra reference
 1017|       |       in the system.  Manually call increment _Py_RefTotal to signal that
 1018|       |       we have it now; calling dictkeys_incref would be an error as
 1019|       |       keys->dk_refcnt is already set to 1 (after memcpy). */
 1020|       |#ifdef Py_REF_DEBUG
 1021|       |    _Py_IncRefTotal(_PyThreadState_GET());
 1022|       |#endif
 1023|    386|    return keys;
 1024|    386|}
dictobject.c:dict_merge_api:
 4278|    244|{
 4279|       |    /* We accept for the argument either a concrete dictionary object,
 4280|       |     * or an abstract "mapping" object.  For the former, we can do
 4281|       |     * things quite efficiently.  For the latter, we only require that
 4282|       |     * PyMapping_Keys() and PyObject_GetItem() be supported.
 4283|       |     */
 4284|    244|    if (a == NULL || !PyDict_Check(a) || b == NULL) {
  ------------------
  |  |   18|    244|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    488|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4284:9): [True: 0, False: 244]
  |  Branch (4284:22): [True: 0, False: 244]
  |  Branch (4284:42): [True: 0, False: 244]
  ------------------
 4285|      0|        if (a != NULL && PyFrozenDict_Check(a)) {
  ------------------
  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4285:13): [True: 0, False: 0]
  ------------------
 4286|      0|            frozendict_does_not_support("assignment");
  ------------------
  |  | 2728|      0|    PyErr_SetString(PyExc_TypeError, "frozendict object does " \
  |  | 2729|      0|                    "not support item " WHAT)
  ------------------
 4287|      0|        }
 4288|      0|        else {
 4289|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 4290|      0|        }
 4291|      0|        return -1;
 4292|      0|    }
 4293|    244|    return dict_merge(a, b, override, dupkey);
 4294|    244|}
dictobject.c:copy_lock_held:
 4351|    352|{
 4352|    352|    PyObject *copy;
 4353|    352|    PyDictObject *mp;
 4354|       |
 4355|       |    // frozendict is immutable and so doesn't need critical section
 4356|    352|    if (!PyFrozenDict_Check(o)) {
  ------------------
  |  |   37|    352|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|    352|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    352|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    352|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4356:9): [True: 352, False: 0]
  ------------------
 4357|    352|        ASSERT_DICT_LOCKED(o);
 4358|    352|    }
 4359|       |
 4360|    352|    mp = (PyDictObject *)o;
 4361|    352|    if (mp->ma_used == 0) {
  ------------------
  |  Branch (4361:9): [True: 2, False: 350]
  ------------------
 4362|       |        /* The dict is empty; just return a new dict. */
 4363|      2|        if (as_frozendict) {
  ------------------
  |  Branch (4363:13): [True: 0, False: 2]
  ------------------
 4364|      0|            return PyFrozenDict_New(NULL);
 4365|      0|        }
 4366|      2|        else {
 4367|      2|            return PyDict_New();
 4368|      2|        }
 4369|      2|    }
 4370|       |
 4371|    350|    if (_PyDict_HasSplitTable(mp)) {
  ------------------
  |  |   56|    350|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 350]
  |  |  ------------------
  ------------------
 4372|      0|        PyDictObject *split_copy;
 4373|      0|        PyDictValues *newvalues = copy_values(mp->ma_values);
 4374|      0|        if (newvalues == NULL) {
  ------------------
  |  Branch (4374:13): [True: 0, False: 0]
  ------------------
 4375|      0|            return PyErr_NoMemory();
 4376|      0|        }
 4377|      0|        if (as_frozendict) {
  ------------------
  |  Branch (4377:13): [True: 0, False: 0]
  ------------------
 4378|      0|            split_copy = (PyDictObject *)PyObject_GC_New(PyFrozenDictObject,
  ------------------
  |  |  181|      0|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 4379|      0|                                                         &PyFrozenDict_Type);
 4380|      0|        }
 4381|      0|        else {
 4382|      0|            split_copy = PyObject_GC_New(PyDictObject, &PyDict_Type);
  ------------------
  |  |  181|      0|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 4383|      0|        }
 4384|      0|        if (split_copy == NULL) {
  ------------------
  |  Branch (4384:13): [True: 0, False: 0]
  ------------------
 4385|      0|            free_values(newvalues, false);
 4386|      0|            return NULL;
 4387|      0|        }
 4388|      0|        for (size_t i = 0; i < newvalues->capacity; i++) {
  ------------------
  |  Branch (4388:28): [True: 0, False: 0]
  ------------------
 4389|      0|            Py_XINCREF(newvalues->values[i]);
  ------------------
  |  |  514|      0|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4390|      0|        }
 4391|      0|        split_copy->ma_values = newvalues;
 4392|      0|        split_copy->ma_keys = mp->ma_keys;
 4393|      0|        split_copy->ma_used = mp->ma_used;
 4394|      0|        split_copy->_ma_watcher_tag = 0;
 4395|      0|        dictkeys_incref(mp->ma_keys);
 4396|      0|        if (as_frozendict) {
  ------------------
  |  Branch (4396:13): [True: 0, False: 0]
  ------------------
 4397|      0|            PyFrozenDictObject *frozen = (PyFrozenDictObject *)split_copy;
 4398|      0|            frozen->ma_hash = -1;
 4399|      0|        }
 4400|      0|        _PyObject_GC_TRACK(split_copy);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4401|      0|        return (PyObject *)split_copy;
 4402|      0|    }
 4403|       |
 4404|    350|    if (Py_TYPE(mp)->tp_iter == dict_iter &&
  ------------------
  |  |  213|    350|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    350|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    350|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4404:9): [True: 350, False: 0]
  ------------------
 4405|    350|            mp->ma_values == NULL &&
  ------------------
  |  Branch (4405:13): [True: 350, False: 0]
  ------------------
 4406|    350|            (mp->ma_used >= (mp->ma_keys->dk_nentries * 2) / 3))
  ------------------
  |  Branch (4406:13): [True: 350, False: 0]
  ------------------
 4407|    350|    {
 4408|       |        /* Use fast-copy if:
 4409|       |
 4410|       |           (1) type(mp) doesn't override tp_iter; and
 4411|       |
 4412|       |           (2) 'mp' is not a split-dict; and
 4413|       |
 4414|       |           (3) if 'mp' is non-compact ('del' operation does not resize dicts),
 4415|       |               do fast-copy only if it has at most 1/3 non-used keys.
 4416|       |
 4417|       |           The last condition (3) is important to guard against a pathological
 4418|       |           case when a large dict is almost emptied with multiple del/pop
 4419|       |           operations and copied after that.  In cases like this, we defer to
 4420|       |           PyDict_Merge, which produces a compacted copy.
 4421|       |        */
 4422|    350|        PyDictKeysObject *keys = clone_combined_dict_keys(mp);
 4423|    350|        if (keys == NULL) {
  ------------------
  |  Branch (4423:13): [True: 0, False: 350]
  ------------------
 4424|      0|            return NULL;
 4425|      0|        }
 4426|    350|        PyDictObject *new;
 4427|    350|        if (as_frozendict) {
  ------------------
  |  Branch (4427:13): [True: 0, False: 350]
  ------------------
 4428|      0|            new = (PyDictObject *)new_frozendict(keys, NULL, 0, 0);
 4429|      0|        }
 4430|    350|        else {
 4431|    350|            new = (PyDictObject *)new_dict(keys, NULL, 0, 0);
 4432|    350|        }
 4433|    350|        if (new == NULL) {
  ------------------
  |  Branch (4433:13): [True: 0, False: 350]
  ------------------
 4434|       |            /* In case of an error, new_dict()/new_frozendict() takes care of
 4435|       |               cleaning up `keys`. */
 4436|      0|            return NULL;
 4437|      0|        }
 4438|       |
 4439|    350|        new->ma_used = mp->ma_used;
 4440|    350|        ASSERT_CONSISTENT(new);
  ------------------
  |  |  653|    350|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (4440:9): [True: 350, False: 0]
  ------------------
 4441|    350|        return (PyObject *)new;
 4442|    350|    }
 4443|       |
 4444|      0|    if (as_frozendict) {
  ------------------
  |  Branch (4444:9): [True: 0, False: 0]
  ------------------
 4445|      0|        copy = PyFrozenDict_New(NULL);
 4446|      0|    }
 4447|      0|    else {
 4448|      0|        copy = PyDict_New();
 4449|      0|    }
 4450|      0|    if (copy == NULL)
  ------------------
  |  Branch (4450:9): [True: 0, False: 0]
  ------------------
 4451|      0|        return NULL;
 4452|      0|    if (dict_merge(copy, o, 1, NULL) == 0)
  ------------------
  |  Branch (4452:9): [True: 0, False: 0]
  ------------------
 4453|      0|        return copy;
 4454|      0|    Py_DECREF(copy);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4455|       |    return NULL;
 4456|      0|}
dictobject.c:new_values:
  874|      2|{
  875|      2|    size_t n = values_size_from_count(size);
  876|      2|    PyDictValues *res = (PyDictValues *)PyMem_Malloc(n);
  877|      2|    if (res == NULL) {
  ------------------
  |  Branch (877:9): [True: 0, False: 2]
  ------------------
  878|      0|        return NULL;
  879|      0|    }
  880|      2|    res->embedded = 0;
  881|      2|    res->size = 0;
  882|      2|    assert(size < 256);
  ------------------
  |  Branch (882:5): [True: 2, False: 0]
  ------------------
  883|      2|    res->capacity = (uint8_t)size;
  884|      2|    return res;
  885|      2|}
dictobject.c:values_size_from_count:
  862|      2|{
  863|      2|    assert(count >= 1);
  ------------------
  |  Branch (863:5): [True: 2, False: 0]
  ------------------
  864|      2|    size_t suffix_size = _Py_SIZE_ROUND_UP(count, sizeof(PyObject *));
  ------------------
  |  |  213|      2|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  214|      2|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  ------------------
  865|      2|    assert(suffix_size < 128);
  ------------------
  |  Branch (865:5): [True: 2, False: 0]
  ------------------
  866|      2|    assert(suffix_size % sizeof(PyObject *) == 0);
  ------------------
  |  Branch (866:5): [True: 2, False: 0]
  ------------------
  867|      2|    return (count + 1) * sizeof(PyObject *) + suffix_size;
  868|      2|}
dictobject.c:dictkeys_incref:
  467|      2|{
  468|      2|    if (FT_ATOMIC_LOAD_SSIZE_RELAXED(dk->dk_refcnt) < 0) {
  ------------------
  |  |  149|      2|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
  |  Branch (468:9): [True: 0, False: 2]
  ------------------
  469|      0|        assert(FT_ATOMIC_LOAD_SSIZE_RELAXED(dk->dk_refcnt) == _Py_DICT_IMMORTAL_INITIAL_REFCNT);
  ------------------
  |  Branch (469:9): [True: 0, False: 0]
  ------------------
  470|      0|        return;
  471|      0|    }
  472|       |#ifdef Py_REF_DEBUG
  473|       |    _Py_IncRefTotal(_PyThreadState_GET());
  474|       |#endif
  475|      2|    INCREF_KEYS(dk);
  ------------------
  |  |  251|      2|#define INCREF_KEYS(dk)  dk->dk_refcnt++
  ------------------
  476|      2|}
dictobject.c:dict_setdefault_ref_lock_held:
 4678|  12.1k|{
 4679|  12.1k|    if (!PyDict_Check(d)) {
  ------------------
  |  |   18|  12.1k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  12.1k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4679:9): [True: 0, False: 12.1k]
  ------------------
 4680|      0|        if (PyFrozenDict_Check(d)) {
  ------------------
  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4681|      0|            frozendict_does_not_support("assignment");
  ------------------
  |  | 2728|      0|    PyErr_SetString(PyExc_TypeError, "frozendict object does " \
  |  | 2729|      0|                    "not support item " WHAT)
  ------------------
 4682|      0|        }
 4683|      0|        else {
 4684|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 4685|      0|        }
 4686|      0|        if (result) {
  ------------------
  |  Branch (4686:13): [True: 0, False: 0]
  ------------------
 4687|      0|            *result = NULL;
 4688|      0|        }
 4689|      0|        return -1;
 4690|      0|    }
 4691|  12.1k|    assert(can_modify_dict((PyDictObject*)d));
  ------------------
  |  Branch (4691:5): [True: 12.1k, False: 0]
  ------------------
 4692|       |
 4693|  12.1k|    PyDictObject *mp = (PyDictObject *)d;
 4694|  12.1k|    PyObject *value;
 4695|  12.1k|    Py_hash_t hash;
 4696|  12.1k|    Py_ssize_t ix;
 4697|       |
 4698|  12.1k|    hash = _PyObject_HashFast(key);
 4699|  12.1k|    if (hash == -1) {
  ------------------
  |  Branch (4699:9): [True: 0, False: 12.1k]
  ------------------
 4700|      0|        dict_unhashable_type(d, key);
 4701|      0|        if (result) {
  ------------------
  |  Branch (4701:13): [True: 0, False: 0]
  ------------------
 4702|      0|            *result = NULL;
 4703|      0|        }
 4704|      0|        return -1;
 4705|      0|    }
 4706|       |
 4707|  12.1k|    if (mp->ma_keys == Py_EMPTY_KEYS) {
  ------------------
  |  |  645|  12.1k|#define Py_EMPTY_KEYS &empty_keys_struct
  ------------------
  |  Branch (4707:9): [True: 16, False: 12.1k]
  ------------------
 4708|     16|        if (insert_to_emptydict(mp, Py_NewRef(key), hash,
  ------------------
  |  |  550|     16|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4708:13): [True: 0, False: 16]
  ------------------
 4709|     16|                                Py_NewRef(default_value)) < 0) {
  ------------------
  |  |  550|     16|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4710|      0|            if (result) {
  ------------------
  |  Branch (4710:17): [True: 0, False: 0]
  ------------------
 4711|      0|                *result = NULL;
 4712|      0|            }
 4713|      0|            return -1;
 4714|      0|        }
 4715|     16|        if (result) {
  ------------------
  |  Branch (4715:13): [True: 2, False: 14]
  ------------------
 4716|      2|            *result = incref_result ? Py_NewRef(default_value) : default_value;
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4716:23): [True: 2, False: 0]
  ------------------
 4717|      2|        }
 4718|     16|        return 0;
 4719|     16|    }
 4720|       |
 4721|  12.1k|    if (_PyDict_HasSplitTable(mp) && PyUnicode_CheckExact(key)) {
  ------------------
  |  |   56|  24.3k|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 12.1k]
  |  |  ------------------
  ------------------
                  if (_PyDict_HasSplitTable(mp) && PyUnicode_CheckExact(key)) {
  ------------------
  |  |  104|      0|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4722|      0|        ix = insert_split_key(mp->ma_keys, key, hash);
 4723|      0|        if (ix != DKIX_EMPTY) {
  ------------------
  |  |  184|      0|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (4723:13): [True: 0, False: 0]
  ------------------
 4724|      0|            PyObject *value = mp->ma_values->values[ix];
 4725|      0|            int already_present = value != NULL;
 4726|      0|            if (!already_present) {
  ------------------
  |  Branch (4726:17): [True: 0, False: 0]
  ------------------
 4727|      0|                _PyDict_InsertSplitValue(mp, key, default_value, ix);
 4728|      0|                value = default_value;
 4729|      0|            }
 4730|      0|            if (result) {
  ------------------
  |  Branch (4730:17): [True: 0, False: 0]
  ------------------
 4731|      0|                *result = incref_result ? Py_NewRef(value) : value;
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4731:27): [True: 0, False: 0]
  ------------------
 4732|      0|            }
 4733|      0|            return already_present;
 4734|      0|        }
 4735|       |        // No space in shared keys. Go to insert_combined_dict() below.
 4736|      0|    }
 4737|  12.1k|    else {
 4738|  12.1k|        ix = _Py_dict_lookup(mp, key, hash, &value);
 4739|  12.1k|        if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|  12.1k|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (4739:13): [True: 0, False: 12.1k]
  ------------------
 4740|      0|            if (result) {
  ------------------
  |  Branch (4740:17): [True: 0, False: 0]
  ------------------
 4741|      0|                *result = NULL;
 4742|      0|            }
 4743|      0|            return -1;
 4744|      0|        }
 4745|  12.1k|    }
 4746|       |
 4747|  12.1k|    if (ix == DKIX_EMPTY) {
  ------------------
  |  |  184|  12.1k|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (4747:9): [True: 9.86k, False: 2.30k]
  ------------------
 4748|  9.86k|        value = default_value;
 4749|       |
 4750|       |        // See comment to this function in insertdict.
 4751|  9.86k|        if (insert_combined_dict(mp, hash, Py_NewRef(key), Py_NewRef(value)) < 0) {
  ------------------
  |  |  550|  9.86k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  9.86k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.86k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (insert_combined_dict(mp, hash, Py_NewRef(key), Py_NewRef(value)) < 0) {
  ------------------
  |  |  550|  9.86k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  9.86k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.86k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4751:13): [True: 0, False: 9.86k]
  ------------------
 4752|      0|            Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4753|      0|            Py_DECREF(value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4754|      0|            if (result) {
  ------------------
  |  Branch (4754:17): [True: 0, False: 0]
  ------------------
 4755|      0|                *result = NULL;
 4756|      0|            }
 4757|      0|            return -1;
 4758|      0|        }
 4759|       |
 4760|  9.86k|        STORE_USED(mp, mp->ma_used + 1);
  ------------------
  |  |  321|  9.86k|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|  9.86k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 4761|  9.86k|        assert(mp->ma_keys->dk_usable >= 0);
  ------------------
  |  Branch (4761:9): [True: 9.86k, False: 0]
  ------------------
 4762|  9.86k|        ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|  9.86k|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (4762:9): [True: 9.86k, False: 0]
  ------------------
 4763|  9.86k|        if (result) {
  ------------------
  |  Branch (4763:13): [True: 6.95k, False: 2.91k]
  ------------------
 4764|  6.95k|            *result = incref_result ? Py_NewRef(value) : value;
  ------------------
  |  |  550|  6.95k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  6.95k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.95k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4764:23): [True: 6.95k, False: 0]
  ------------------
 4765|  6.95k|        }
 4766|  9.86k|        return 0;
 4767|  9.86k|    }
 4768|       |
 4769|  12.1k|    assert(value != NULL);
  ------------------
  |  Branch (4769:5): [True: 2.30k, False: 0]
  ------------------
 4770|  2.30k|    ASSERT_CONSISTENT(mp);
  ------------------
  |  |  653|  2.30k|#  define ASSERT_CONSISTENT(op) assert(_PyDict_CheckConsistency((PyObject *)(op), 0))
  ------------------
  |  Branch (4770:5): [True: 2.30k, False: 0]
  ------------------
 4771|  2.30k|    if (result) {
  ------------------
  |  Branch (4771:9): [True: 2.30k, False: 0]
  ------------------
 4772|  2.30k|        *result = incref_result ? Py_NewRef(value) : value;
  ------------------
  |  |  550|  2.30k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  2.30k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.30k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4772:19): [True: 2.30k, False: 0]
  ------------------
 4773|  2.30k|    }
 4774|  2.30k|    return 1;
 4775|  2.30k|}
dictobject.c:dict_update_arg:
 3914|     18|{
 3915|     18|    if (PyAnyDict_CheckExact(arg)) {
  ------------------
  |  |   41|     18|    (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   19|     18|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|     36|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 18, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3916|     18|        return dict_merge(self, arg, 1, NULL);
 3917|     18|    }
 3918|      0|    int has_keys = PyObject_HasAttrWithError(arg, &_Py_ID(keys));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3919|      0|    if (has_keys < 0) {
  ------------------
  |  Branch (3919:9): [True: 0, False: 0]
  ------------------
 3920|      0|        return -1;
 3921|      0|    }
 3922|      0|    if (has_keys) {
  ------------------
  |  Branch (3922:9): [True: 0, False: 0]
  ------------------
 3923|      0|        return dict_merge(self, arg, 1, NULL);
 3924|      0|    }
 3925|      0|    return dict_merge_from_seq2(self, arg, 1);
 3926|      0|}
dictobject.c:dict_contains:
 5138|  4.92k|{
 5139|  4.92k|    Py_hash_t hash = _PyObject_HashFast(key);
 5140|  4.92k|    if (hash == -1) {
  ------------------
  |  Branch (5140:9): [True: 0, False: 4.92k]
  ------------------
 5141|      0|        dict_unhashable_type(op, key);
 5142|      0|        return -1;
 5143|      0|    }
 5144|       |
 5145|  4.92k|    return _PyDict_Contains_KnownHash(op, key, hash);
 5146|  4.92k|}
dictobject.c:dict_dealloc:
 3528|  1.00k|{
 3529|  1.00k|    PyDictObject *mp = (PyDictObject *)self;
 3530|  1.00k|    _PyObject_ResurrectStart(self);
 3531|  1.00k|    _PyDict_NotifyEvent(PyDict_EVENT_DEALLOCATED, mp, NULL, NULL);
 3532|  1.00k|    if (_PyObject_ResurrectEnd(self)) {
  ------------------
  |  Branch (3532:9): [True: 0, False: 1.00k]
  ------------------
 3533|      0|        return;
 3534|      0|    }
 3535|  1.00k|    PyDictValues *values = mp->ma_values;
 3536|  1.00k|    PyDictKeysObject *keys = mp->ma_keys;
 3537|  1.00k|    Py_ssize_t i, n;
 3538|       |
 3539|       |    /* bpo-31095: UnTrack is needed before calling any callbacks */
 3540|  1.00k|    PyObject_GC_UnTrack(mp);
 3541|  1.00k|    if (values != NULL) {
  ------------------
  |  Branch (3541:9): [True: 0, False: 1.00k]
  ------------------
 3542|      0|        if (values->embedded == 0) {
  ------------------
  |  Branch (3542:13): [True: 0, False: 0]
  ------------------
 3543|      0|            for (i = 0, n = values->capacity; i < n; i++) {
  ------------------
  |  Branch (3543:47): [True: 0, False: 0]
  ------------------
 3544|      0|                Py_XDECREF(values->values[i]);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3545|      0|            }
 3546|      0|            free_values(values, false);
 3547|      0|        }
 3548|      0|        dictkeys_decref(keys, false);
 3549|      0|    }
 3550|  1.00k|    else if (keys != NULL) {
  ------------------
  |  Branch (3550:14): [True: 1.00k, False: 0]
  ------------------
 3551|  1.00k|        assert(keys->dk_refcnt == 1 || keys == Py_EMPTY_KEYS);
  ------------------
  |  Branch (3551:9): [True: 536, False: 470]
  |  Branch (3551:9): [True: 470, False: 0]
  ------------------
 3552|  1.00k|        dictkeys_decref(keys, false);
 3553|  1.00k|    }
 3554|  1.00k|    if (Py_IS_TYPE(mp, &PyDict_Type)) {
  ------------------
  |  |  215|  1.00k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  1.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 1.00k, False: 0]
  |  |  ------------------
  ------------------
 3555|  1.00k|        _Py_FREELIST_FREE(dicts, mp, Py_TYPE(mp)->tp_free);
  ------------------
  |  |   35|  1.00k|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|  1.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|  1.00k|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   16|  1.00k|#  define Py_dicts_MAXFREELIST 80
  |  |  ------------------
  ------------------
 3556|  1.00k|    }
 3557|      0|    else {
 3558|      0|        Py_TYPE(mp)->tp_free((PyObject *)mp);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3559|      0|    }
 3560|  1.00k|}
dictobject.c:dict_length:
 3667|      2|{
 3668|      2|    return GET_USED(_PyAnyDict_CAST(self));
  ------------------
  |  |  313|      2|#define GET_USED(ep) FT_ATOMIC_LOAD_SSIZE_RELAXED((ep)->ma_used)
  |  |  ------------------
  |  |  |  |  149|      8|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (149:45): [True: 2, False: 0]
  |  |  |  |  |  Branch (149:45): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3669|      2|}
dictobject.c:dict_traverse:
 4953|  1.67k|{
 4954|  1.67k|    PyDictObject *mp = (PyDictObject *)op;
 4955|  1.67k|    PyDictKeysObject *keys = mp->ma_keys;
 4956|  1.67k|    Py_ssize_t i, n = keys->dk_nentries;
 4957|       |
 4958|  1.67k|    if (DK_IS_UNICODE(keys)) {
  ------------------
  |  |  282|  1.67k|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 1.51k, False: 160]
  |  |  ------------------
  ------------------
 4959|  1.51k|        if (_PyDict_HasSplitTable(mp)) {
  ------------------
  |  |   56|  1.51k|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 1.51k]
  |  |  ------------------
  ------------------
 4960|      0|            for (i = 0; i < n; i++) {
  ------------------
  |  Branch (4960:25): [True: 0, False: 0]
  ------------------
 4961|      0|                Py_VISIT(mp->ma_values->values[i]);
  ------------------
  |  |  194|      0|    do {                                                                \
  |  |  195|      0|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4962|      0|            }
 4963|      0|        }
 4964|  1.51k|        else {
 4965|  1.51k|            PyDictUnicodeEntry *entries = DK_UNICODE_ENTRIES(keys);
 4966|  24.1k|            for (i = 0; i < n; i++) {
  ------------------
  |  Branch (4966:25): [True: 22.6k, False: 1.51k]
  ------------------
 4967|  22.6k|                Py_VISIT(entries[i].me_value);
  ------------------
  |  |  194|  22.6k|    do {                                                                \
  |  |  195|  22.6k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 22.3k, False: 244]
  |  |  ------------------
  |  |  196|  22.3k|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|  22.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  22.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|  22.3k|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 22.3k]
  |  |  ------------------
  |  |  198|  22.3k|                return vret;                                            \
  |  |  199|  22.3k|        }                                                               \
  |  |  200|  22.6k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 22.6k]
  |  |  ------------------
  ------------------
 4968|  22.6k|            }
 4969|  1.51k|        }
 4970|  1.51k|    }
 4971|    160|    else {
 4972|    160|        PyDictKeyEntry *entries = DK_ENTRIES(keys);
 4973|  1.33k|        for (i = 0; i < n; i++) {
  ------------------
  |  Branch (4973:21): [True: 1.17k, False: 160]
  ------------------
 4974|  1.17k|            if (entries[i].me_value != NULL) {
  ------------------
  |  Branch (4974:17): [True: 1.16k, False: 12]
  ------------------
 4975|  1.16k|                Py_VISIT(entries[i].me_value);
  ------------------
  |  |  194|  1.16k|    do {                                                                \
  |  |  195|  1.16k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 1.16k, False: 0]
  |  |  ------------------
  |  |  196|  1.16k|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|  1.16k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.16k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|  1.16k|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 1.16k]
  |  |  ------------------
  |  |  198|  1.16k|                return vret;                                            \
  |  |  199|  1.16k|        }                                                               \
  |  |  200|  1.16k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 1.16k]
  |  |  ------------------
  ------------------
 4976|  1.16k|                Py_VISIT(entries[i].me_key);
  ------------------
  |  |  194|  1.16k|    do {                                                                \
  |  |  195|  1.16k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 1.16k, False: 0]
  |  |  ------------------
  |  |  196|  1.16k|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|  1.16k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.16k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|  1.16k|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 1.16k]
  |  |  ------------------
  |  |  198|  1.16k|                return vret;                                            \
  |  |  199|  1.16k|        }                                                               \
  |  |  200|  1.16k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 1.16k]
  |  |  ------------------
  ------------------
 4977|  1.16k|            }
 4978|  1.17k|        }
 4979|    160|    }
 4980|  1.67k|    return 0;
 4981|  1.67k|}
dictobject.c:dict_tp_clear:
 4985|      4|{
 4986|      4|    PyDict_Clear(op);
 4987|      4|    return 0;
 4988|      4|}
dictobject.c:dictiter_new:
 5459|     72|{
 5460|     72|    Py_ssize_t used;
 5461|     72|    dictiterobject *di;
 5462|     72|    di = PyObject_GC_New(dictiterobject, itertype);
  ------------------
  |  |  181|     72|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 5463|     72|    if (di == NULL) {
  ------------------
  |  Branch (5463:9): [True: 0, False: 72]
  ------------------
 5464|      0|        return NULL;
 5465|      0|    }
 5466|     72|    di->di_dict = (PyDictObject*)Py_NewRef(dict);
  ------------------
  |  |  550|     72|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5467|     72|    used = GET_USED(dict);
  ------------------
  |  |  313|     72|#define GET_USED(ep) FT_ATOMIC_LOAD_SSIZE_RELAXED((ep)->ma_used)
  |  |  ------------------
  |  |  |  |  149|     72|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  |  |  ------------------
  ------------------
 5468|     72|    di->di_used = used;
 5469|     72|    di->len = used;
 5470|     72|    if (itertype == &PyDictRevIterKey_Type ||
  ------------------
  |  Branch (5470:9): [True: 0, False: 72]
  ------------------
 5471|     72|         itertype == &PyDictRevIterItem_Type ||
  ------------------
  |  Branch (5471:10): [True: 0, False: 72]
  ------------------
 5472|     72|         itertype == &PyDictRevIterValue_Type) {
  ------------------
  |  Branch (5472:10): [True: 0, False: 72]
  ------------------
 5473|      0|        if (_PyDict_HasSplitTable(dict)) {
  ------------------
  |  |   56|      0|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 5474|      0|            di->di_pos = used - 1;
 5475|      0|        }
 5476|      0|        else {
 5477|      0|            di->di_pos = load_keys_nentries(dict) - 1;
 5478|      0|        }
 5479|      0|    }
 5480|     72|    else {
 5481|     72|        di->di_pos = 0;
 5482|     72|    }
 5483|     72|    if (itertype == &PyDictIterItem_Type ||
  ------------------
  |  Branch (5483:9): [True: 68, False: 4]
  ------------------
 5484|     68|        itertype == &PyDictRevIterItem_Type) {
  ------------------
  |  Branch (5484:9): [True: 0, False: 4]
  ------------------
 5485|     68|        di->di_result = _PyTuple_FromPairSteal(Py_None, Py_None);
  ------------------
  |  |  616|     68|#  define Py_None (&_Py_NoneStruct)
  ------------------
                      di->di_result = _PyTuple_FromPairSteal(Py_None, Py_None);
  ------------------
  |  |  616|     68|#  define Py_None (&_Py_NoneStruct)
  ------------------
 5486|     68|        if (di->di_result == NULL) {
  ------------------
  |  Branch (5486:13): [True: 0, False: 68]
  ------------------
 5487|      0|            Py_DECREF(di);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5488|      0|            return NULL;
 5489|      0|        }
 5490|     68|    }
 5491|      4|    else {
 5492|      4|        di->di_result = NULL;
 5493|      4|    }
 5494|     72|    _PyObject_GC_TRACK(di);
  ------------------
  |  |  513|     72|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5495|     72|    return (PyObject *)di;
 5496|     72|}
dictobject.c:dict_get_impl:
 4656|    192|{
 4657|    192|    PyObject *val = NULL;
 4658|    192|    Py_hash_t hash;
 4659|    192|    Py_ssize_t ix;
 4660|       |
 4661|    192|    hash = _PyObject_HashFast(key);
 4662|    192|    if (hash == -1) {
  ------------------
  |  Branch (4662:9): [True: 0, False: 192]
  ------------------
 4663|      0|        dict_unhashable_type((PyObject*)self, key);
 4664|      0|        return NULL;
 4665|      0|    }
 4666|    192|    ix = _Py_dict_lookup_threadsafe(self, key, hash, &val);
 4667|    192|    if (ix == DKIX_ERROR)
  ------------------
  |  |  186|    192|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (4667:9): [True: 0, False: 192]
  ------------------
 4668|      0|        return NULL;
 4669|    192|    if (ix == DKIX_EMPTY || val == NULL) {
  ------------------
  |  |  184|    384|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (4669:9): [True: 114, False: 78]
  |  Branch (4669:29): [True: 0, False: 78]
  ------------------
 4670|    114|        val = Py_NewRef(default_value);
  ------------------
  |  |  550|    114|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    114|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    114|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4671|    114|    }
 4672|    192|    return val;
 4673|    192|}
dictobject.c:dict_pop_impl:
 4853|     54|{
 4854|     54|    return dict_pop_default((PyObject*)self, key, default_value);
 4855|     54|}
dictobject.c:dict_keys_impl:
 6878|      4|{
 6879|      4|    return _PyDictView_New((PyObject *)self, &PyDictKeys_Type);
 6880|      4|}
dictobject.c:dict_items_impl:
 6990|     70|{
 6991|     70|    return _PyDictView_New((PyObject *)self, &PyDictItems_Type);
 6992|     70|}
dictobject.c:dict_values_impl:
 7080|      4|{
 7081|      4|    return _PyDictView_New((PyObject *)self, &PyDictValues_Type);
 7082|      4|}
dictobject.c:dict_update:
 3956|     18|{
 3957|     18|    if (dict_update_common(self, args, kwds, "update") != -1)
  ------------------
  |  Branch (3957:9): [True: 18, False: 0]
  ------------------
 3958|     18|        Py_RETURN_NONE;
  ------------------
  |  |  628|     18|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     18|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 3959|      0|    return NULL;
 3960|     18|}
dictobject.c:dict_update_common:
 3931|     18|{
 3932|     18|    PyObject *arg = NULL;
 3933|     18|    int result = 0;
 3934|       |
 3935|     18|    if (!PyArg_UnpackTuple(args, methname, 0, 1, &arg)) {
  ------------------
  |  Branch (3935:9): [True: 0, False: 18]
  ------------------
 3936|      0|        result = -1;
 3937|      0|    }
 3938|     18|    else if (arg != NULL) {
  ------------------
  |  Branch (3938:14): [True: 18, False: 0]
  ------------------
 3939|     18|        result = dict_update_arg(self, arg);
 3940|     18|    }
 3941|       |
 3942|     18|    if (result == 0 && kwds != NULL) {
  ------------------
  |  Branch (3942:9): [True: 18, False: 0]
  |  Branch (3942:24): [True: 0, False: 18]
  ------------------
 3943|      0|        if (PyArg_ValidateKeywordArguments(kwds))
  ------------------
  |  Branch (3943:13): [True: 0, False: 0]
  ------------------
 3944|      0|            result = dict_merge(self, kwds, 1, NULL);
 3945|      0|        else
 3946|      0|            result = -1;
 3947|      0|    }
 3948|     18|    return result;
 3949|     18|}
dictobject.c:dictiter_dealloc:
 5500|     72|{
 5501|     72|    dictiterobject *di = (dictiterobject *)self;
 5502|       |    /* bpo-31095: UnTrack is needed before calling any callbacks */
 5503|     72|    _PyObject_GC_UNTRACK(di);
  ------------------
  |  |  515|     72|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5504|     72|    Py_XDECREF(di->di_dict);
  ------------------
  |  |  524|     72|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5505|     72|    Py_XDECREF(di->di_result);
  ------------------
  |  |  524|     72|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5506|     72|    PyObject_GC_Del(di);
 5507|     72|}
dictobject.c:dictiter_len:
 5520|     58|{
 5521|     58|    dictiterobject *di = (dictiterobject *)self;
 5522|     58|    Py_ssize_t len = 0;
 5523|     58|    if (di->di_dict != NULL && di->di_used == GET_USED(di->di_dict))
  ------------------
  |  |  313|     58|#define GET_USED(ep) FT_ATOMIC_LOAD_SSIZE_RELAXED((ep)->ma_used)
  |  |  ------------------
  |  |  |  |  149|     58|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  |  |  ------------------
  ------------------
  |  Branch (5523:9): [True: 58, False: 0]
  |  Branch (5523:32): [True: 58, False: 0]
  ------------------
 5524|     58|        len = FT_ATOMIC_LOAD_SSIZE_RELAXED(di->len);
  ------------------
  |  |  149|     58|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 5525|     58|    return PyLong_FromSize_t(len);
 5526|     58|}
dictobject.c:dictiter_iternextitem:
 6024|    634|{
 6025|    634|    dictiterobject *di = (dictiterobject *)self;
 6026|    634|    PyDictObject *d = di->di_dict;
 6027|       |
 6028|    634|    if (d == NULL)
  ------------------
  |  Branch (6028:9): [True: 0, False: 634]
  ------------------
 6029|      0|        return NULL;
 6030|       |
 6031|    634|    PyObject *key, *value;
 6032|       |#ifdef Py_GIL_DISABLED
 6033|       |    if (dictiter_iternext_threadsafe(d, self, &key, &value) == 0) {
 6034|       |#else
 6035|    634|    if (dictiter_iternextitem_lock_held(d, self, &key, &value) == 0) {
  ------------------
  |  Branch (6035:9): [True: 568, False: 66]
  ------------------
 6036|       |
 6037|    568|#endif
 6038|    568|        PyObject *result = di->di_result;
 6039|    568|        if (acquire_iter_result(result)) {
  ------------------
  |  Branch (6039:13): [True: 66, False: 502]
  ------------------
 6040|     66|            PyObject *oldkey = PyTuple_GET_ITEM(result, 0);
  ------------------
  |  |   29|     66|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     66|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6040:32): [True: 66, False: 0]
  ------------------
 6041|     66|            PyObject *oldvalue = PyTuple_GET_ITEM(result, 1);
  ------------------
  |  |   29|     66|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     66|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6041:34): [True: 66, False: 0]
  ------------------
 6042|     66|            PyTuple_SET_ITEM(result, 0, key);
  ------------------
  |  |   40|     66|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6043|     66|            PyTuple_SET_ITEM(result, 1, value);
  ------------------
  |  |   40|     66|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6044|     66|            Py_DECREF(oldkey);
  ------------------
  |  |  430|     66|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6045|     66|            Py_DECREF(oldvalue);
  ------------------
  |  |  430|     66|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6046|       |            // bpo-42536: The GC may have untracked this result tuple. Since we're
 6047|       |            // recycling it, make sure it's tracked again:
 6048|     66|            _PyTuple_Recycle(result);
 6049|     66|        }
 6050|    502|        else {
 6051|    502|            result = _PyTuple_FromPairSteal(key, value);
 6052|    502|        }
 6053|    568|        return result;
 6054|    568|    }
 6055|     66|    return NULL;
 6056|    634|}
dictobject.c:dictiter_iternextitem_lock_held:
 5801|    634|{
 5802|    634|    dictiterobject *di = (dictiterobject *)self;
 5803|    634|    PyObject *key, *value;
 5804|    634|    Py_ssize_t i;
 5805|       |
 5806|    634|    assert (PyAnyDict_Check(d));
  ------------------
  |  Branch (5806:5): [True: 634, False: 0]
  |  Branch (5806:5): [True: 0, False: 0]
  ------------------
 5807|    634|    ASSERT_DICT_LOCKED(d);
 5808|       |
 5809|    634|    if (di->di_used != d->ma_used) {
  ------------------
  |  Branch (5809:9): [True: 0, False: 634]
  ------------------
 5810|      0|        PyErr_SetString(PyExc_RuntimeError,
 5811|      0|                        "dictionary changed size during iteration");
 5812|      0|        di->di_used = -1; /* Make this state sticky */
 5813|      0|        return -1;
 5814|      0|    }
 5815|       |
 5816|    634|    i = FT_ATOMIC_LOAD_SSIZE_RELAXED(di->di_pos);
  ------------------
  |  |  149|    634|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 5817|       |
 5818|    634|    assert(i >= 0);
  ------------------
  |  Branch (5818:5): [True: 634, False: 0]
  ------------------
 5819|    634|    if (_PyDict_HasSplitTable(d)) {
  ------------------
  |  |   56|    634|#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
  |  |  ------------------
  |  |  |  Branch (56:34): [True: 0, False: 634]
  |  |  ------------------
  ------------------
 5820|      0|        if (i >= d->ma_used)
  ------------------
  |  Branch (5820:13): [True: 0, False: 0]
  ------------------
 5821|      0|            goto fail;
 5822|      0|        int index = get_index_from_order(d, i);
 5823|      0|        key = LOAD_SHARED_KEY(DK_UNICODE_ENTRIES(d->ma_keys)[index].me_key);
  ------------------
  |  |  249|      0|#define LOAD_SHARED_KEY(key) key
  ------------------
 5824|      0|        value = d->ma_values->values[index];
 5825|      0|        assert(value != NULL);
  ------------------
  |  Branch (5825:9): [True: 0, False: 0]
  ------------------
 5826|      0|    }
 5827|    634|    else {
 5828|    634|        Py_ssize_t n = d->ma_keys->dk_nentries;
 5829|    634|        if (DK_IS_UNICODE(d->ma_keys)) {
  ------------------
  |  |  282|    634|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 634, False: 0]
  |  |  ------------------
  ------------------
 5830|    634|            PyDictUnicodeEntry *entry_ptr = &DK_UNICODE_ENTRIES(d->ma_keys)[i];
 5831|    738|            while (i < n && entry_ptr->me_value == NULL) {
  ------------------
  |  Branch (5831:20): [True: 672, False: 66]
  |  Branch (5831:29): [True: 104, False: 568]
  ------------------
 5832|    104|                entry_ptr++;
 5833|    104|                i++;
 5834|    104|            }
 5835|    634|            if (i >= n)
  ------------------
  |  Branch (5835:17): [True: 66, False: 568]
  ------------------
 5836|     66|                goto fail;
 5837|    568|            key = entry_ptr->me_key;
 5838|    568|            value = entry_ptr->me_value;
 5839|    568|        }
 5840|      0|        else {
 5841|      0|            PyDictKeyEntry *entry_ptr = &DK_ENTRIES(d->ma_keys)[i];
 5842|      0|            while (i < n && entry_ptr->me_value == NULL) {
  ------------------
  |  Branch (5842:20): [True: 0, False: 0]
  |  Branch (5842:29): [True: 0, False: 0]
  ------------------
 5843|      0|                entry_ptr++;
 5844|      0|                i++;
 5845|      0|            }
 5846|      0|            if (i >= n)
  ------------------
  |  Branch (5846:17): [True: 0, False: 0]
  ------------------
 5847|      0|                goto fail;
 5848|      0|            key = entry_ptr->me_key;
 5849|      0|            value = entry_ptr->me_value;
 5850|      0|        }
 5851|    634|    }
 5852|       |    // We found an element, but did not expect it
 5853|    568|    if (di->len == 0) {
  ------------------
  |  Branch (5853:9): [True: 0, False: 568]
  ------------------
 5854|      0|        PyErr_SetString(PyExc_RuntimeError,
 5855|      0|                        "dictionary keys changed during iteration");
 5856|      0|        goto fail;
 5857|      0|    }
 5858|    568|    di->di_pos = i+1;
 5859|    568|    di->len--;
 5860|    568|    if (out_key != NULL) {
  ------------------
  |  Branch (5860:9): [True: 568, False: 0]
  ------------------
 5861|    568|        *out_key = Py_NewRef(key);
  ------------------
  |  |  550|    568|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    568|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    568|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5862|    568|    }
 5863|    568|    if (out_value != NULL) {
  ------------------
  |  Branch (5863:9): [True: 568, False: 0]
  ------------------
 5864|    568|        *out_value = Py_NewRef(value);
  ------------------
  |  |  550|    568|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    568|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    568|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5865|    568|    }
 5866|    568|    return 0;
 5867|       |
 5868|     66|fail:
 5869|     66|    di->di_dict = NULL;
 5870|     66|    Py_DECREF(d);
  ------------------
  |  |  430|     66|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5871|     66|    return -1;
 5872|    568|}
dictobject.c:acquire_iter_result:
 6014|    568|{
 6015|    568|    if (_PyObject_IsUniquelyReferenced(result)) {
  ------------------
  |  Branch (6015:9): [True: 66, False: 502]
  ------------------
 6016|     66|        Py_INCREF(result);
  ------------------
  |  |  310|     66|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6017|     66|        return true;
 6018|     66|    }
 6019|    502|    return false;
 6020|    568|}
dictobject.c:dictview_dealloc:
 6275|     78|{
 6276|     78|    _PyDictViewObject *dv = (_PyDictViewObject *)self;
 6277|       |    /* bpo-31095: UnTrack is needed before calling any callbacks */
 6278|     78|    _PyObject_GC_UNTRACK(dv);
  ------------------
  |  |  515|     78|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6279|     78|    Py_XDECREF(dv->dv_dict);
  ------------------
  |  |  524|     78|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6280|     78|    PyObject_GC_Del(dv);
 6281|     78|}
dictobject.c:dictkeys_iter:
 6461|      2|{
 6462|      2|    _PyDictViewObject *dv = (_PyDictViewObject *)self;
 6463|      2|    if (dv->dv_dict == NULL) {
  ------------------
  |  Branch (6463:9): [True: 0, False: 2]
  ------------------
 6464|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 6465|      0|    }
 6466|      2|    return dictiter_new(dv->dv_dict, &PyDictIterKey_Type);
 6467|      2|}
dictobject.c:dictitems_iter:
 6896|     68|{
 6897|     68|    _PyDictViewObject *dv = (_PyDictViewObject *)self;
 6898|     68|    if (dv->dv_dict == NULL) {
  ------------------
  |  Branch (6898:9): [True: 0, False: 68]
  ------------------
 6899|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 6900|      0|    }
 6901|     68|    return dictiter_new(dv->dv_dict, &PyDictIterItem_Type);
 6902|     68|}
dictobject.c:dictvalues_iter:
 7008|      2|{
 7009|      2|    _PyDictViewObject *dv = (_PyDictViewObject *)self;
 7010|      2|    if (dv->dv_dict == NULL) {
  ------------------
  |  Branch (7010:9): [True: 0, False: 2]
  ------------------
 7011|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 7012|      0|    }
 7013|      2|    return dictiter_new(dv->dv_dict, &PyDictIterValue_Type);
 7014|      2|}
dictobject.c:new_keys_object:
  789|  2.71k|{
  790|  2.71k|    Py_ssize_t usable;
  791|  2.71k|    int log2_bytes;
  792|  2.71k|    size_t entry_size = unicode ? sizeof(PyDictUnicodeEntry) : sizeof(PyDictKeyEntry);
  ------------------
  |  Branch (792:25): [True: 2.51k, False: 196]
  ------------------
  793|       |
  794|  2.71k|    assert(log2_size >= PyDict_LOG_MINSIZE);
  ------------------
  |  Branch (794:5): [True: 2.71k, False: 0]
  ------------------
  795|       |
  796|  2.71k|    usable = USABLE_FRACTION((size_t)1<<log2_size);
  ------------------
  |  |  575|  2.71k|#define USABLE_FRACTION(n) (((n) << 1)/3)
  ------------------
  797|  2.71k|    if (log2_size < 8) {
  ------------------
  |  Branch (797:9): [True: 2.66k, False: 48]
  ------------------
  798|  2.66k|        log2_bytes = log2_size;
  799|  2.66k|    }
  800|     48|    else if (log2_size < 16) {
  ------------------
  |  Branch (800:14): [True: 48, False: 0]
  ------------------
  801|     48|        log2_bytes = log2_size + 1;
  802|     48|    }
  803|      0|#if SIZEOF_VOID_P > 4
  804|      0|    else if (log2_size >= 32) {
  ------------------
  |  Branch (804:14): [True: 0, False: 0]
  ------------------
  805|      0|        log2_bytes = log2_size + 3;
  806|      0|    }
  807|      0|#endif
  808|      0|    else {
  809|      0|        log2_bytes = log2_size + 2;
  810|      0|    }
  811|       |
  812|  2.71k|    PyDictKeysObject *dk = NULL;
  813|  2.71k|    if (log2_size == PyDict_LOG_MINSIZE && unicode) {
  ------------------
  |  |  115|  5.42k|#define PyDict_LOG_MINSIZE 3
  ------------------
  |  Branch (813:9): [True: 1.31k, False: 1.39k]
  |  Branch (813:44): [True: 1.17k, False: 148]
  ------------------
  814|  1.17k|        dk = _Py_FREELIST_POP_MEM(dictkeys);
  ------------------
  |  |   48|  1.17k|    _PyFreeList_PopMem(&_Py_freelists_GET()->NAME)
  ------------------
  815|  1.17k|    }
  816|  2.71k|    if (dk == NULL) {
  ------------------
  |  Branch (816:9): [True: 1.96k, False: 746]
  ------------------
  817|  1.96k|        dk = PyMem_Malloc(sizeof(PyDictKeysObject)
  818|  1.96k|                          + ((size_t)1 << log2_bytes)
  819|  1.96k|                          + entry_size * usable);
  820|  1.96k|        if (dk == NULL) {
  ------------------
  |  Branch (820:13): [True: 0, False: 1.96k]
  ------------------
  821|      0|            PyErr_NoMemory();
  822|      0|            return NULL;
  823|      0|        }
  824|  1.96k|    }
  825|       |#ifdef Py_REF_DEBUG
  826|       |    _Py_IncRefTotal(_PyThreadState_GET());
  827|       |#endif
  828|  2.71k|    dk->dk_refcnt = 1;
  829|  2.71k|    dk->dk_log2_size = log2_size;
  830|  2.71k|    dk->dk_log2_index_bytes = log2_bytes;
  831|  2.71k|    dk->dk_kind = unicode ? DICT_KEYS_UNICODE : DICT_KEYS_GENERAL;
  ------------------
  |  Branch (831:19): [True: 2.51k, False: 196]
  ------------------
  832|       |#ifdef Py_GIL_DISABLED
  833|       |    dk->dk_mutex = (PyMutex){0};
  834|       |#endif
  835|  2.71k|    dk->dk_nentries = 0;
  836|  2.71k|    dk->dk_usable = usable;
  837|  2.71k|    dk->dk_version = 0;
  838|  2.71k|    memset(&dk->dk_indices[0], 0xff, ((size_t)1 << log2_bytes));
  839|  2.71k|    memset(&dk->dk_indices[(size_t)1 << log2_bytes], 0, entry_size * usable);
  840|  2.71k|    return dk;
  841|  2.71k|}
dictobject.c:insert_split_key:
 1887|    312|{
 1888|    312|    assert(PyUnicode_CheckExact(key));
  ------------------
  |  Branch (1888:5): [True: 312, False: 0]
  ------------------
 1889|    312|    Py_ssize_t ix;
 1890|       |
 1891|       |
 1892|       |#ifdef Py_GIL_DISABLED
 1893|       |    ix = unicodekeys_lookup_unicode_threadsafe(keys, key, hash);
 1894|       |    if (ix >= 0) {
 1895|       |        return ix;
 1896|       |    }
 1897|       |#endif
 1898|       |
 1899|    312|    LOCK_KEYS(keys);
 1900|    312|    ix = unicodekeys_lookup_unicode(keys, key, hash);
 1901|    312|    if (ix == DKIX_EMPTY && keys->dk_usable > 0) {
  ------------------
  |  |  184|    624|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (1901:9): [True: 198, False: 114]
  |  Branch (1901:29): [True: 198, False: 0]
  ------------------
 1902|       |        // Insert into new slot
 1903|    198|        FT_ATOMIC_STORE_UINT32_RELAXED(keys->dk_version, 0);
  ------------------
  |  |  172|    198|#define FT_ATOMIC_STORE_UINT32_RELAXED(value, new_value) value = new_value
  ------------------
 1904|    198|        Py_ssize_t hashpos = find_empty_slot(keys, hash);
 1905|    198|        ix = keys->dk_nentries;
 1906|    198|        dictkeys_set_index(keys, hashpos, ix);
 1907|    198|        PyDictUnicodeEntry *ep = &DK_UNICODE_ENTRIES(keys)[ix];
 1908|    198|        STORE_SHARED_KEY(ep->me_key, Py_NewRef(key));
  ------------------
  |  |  250|    198|#define STORE_SHARED_KEY(key, value) key = value
  ------------------
 1909|    198|        split_keys_entry_added(keys);
 1910|    198|    }
 1911|    312|    assert (ix < SHARED_KEYS_MAX_SIZE);
  ------------------
  |  Branch (1911:5): [True: 312, False: 0]
  ------------------
 1912|    312|    UNLOCK_KEYS(keys);
 1913|    312|    return ix;
 1914|    312|}
dictobject.c:split_keys_entry_added:
  264|    198|{
  265|    198|    keys->dk_usable--;
  266|    198|    keys->dk_nentries++;
  267|    198|}
dictobject.c:store_instance_attr_lock_held:
 7262|    118|{
 7263|    118|    PyDictKeysObject *keys = CACHED_KEYS(Py_TYPE(obj));
  ------------------
  |  |  870|    118|#define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)
  ------------------
 7264|    118|    assert(keys != NULL);
  ------------------
  |  Branch (7264:5): [True: 118, False: 0]
  ------------------
 7265|    118|    assert(values != NULL);
  ------------------
  |  Branch (7265:5): [True: 118, False: 0]
  ------------------
 7266|    118|    assert(Py_TYPE(obj)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  ------------------
  |  Branch (7266:5): [True: 118, False: 0]
  ------------------
 7267|    118|    Py_ssize_t ix = DKIX_EMPTY;
  ------------------
  |  |  184|    118|#define DKIX_EMPTY (-1)
  ------------------
 7268|    118|    PyDictObject *dict = _PyObject_GetManagedDict(obj);
 7269|    118|    assert(dict == NULL || ((PyDictObject *)dict)->ma_values == values);
  ------------------
  |  Branch (7269:5): [True: 118, False: 0]
  |  Branch (7269:5): [True: 0, False: 0]
  ------------------
 7270|    118|    if (PyUnicode_CheckExact(name)) {
  ------------------
  |  |  104|    118|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    118|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 118, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7271|    118|        Py_hash_t hash = unicode_get_hash(name);
 7272|    118|        if (hash == -1) {
  ------------------
  |  Branch (7272:13): [True: 0, False: 118]
  ------------------
 7273|      0|            hash = PyUnicode_Type.tp_hash(name);
 7274|      0|            assert(hash != -1);
  ------------------
  |  Branch (7274:13): [True: 0, False: 0]
  ------------------
 7275|      0|        }
 7276|       |
 7277|    118|        ix = insert_split_key(keys, name, hash);
 7278|       |
 7279|       |#ifdef Py_STATS
 7280|       |        if (ix == DKIX_EMPTY) {
 7281|       |            if (PyUnicode_CheckExact(name)) {
 7282|       |                if (shared_keys_usable_size(keys) == SHARED_KEYS_MAX_SIZE) {
 7283|       |                    OBJECT_STAT_INC(dict_materialized_too_big);
 7284|       |                }
 7285|       |                else {
 7286|       |                    OBJECT_STAT_INC(dict_materialized_new_key);
 7287|       |                }
 7288|       |            }
 7289|       |            else {
 7290|       |                OBJECT_STAT_INC(dict_materialized_str_subclass);
 7291|       |            }
 7292|       |        }
 7293|       |#endif
 7294|    118|    }
 7295|       |
 7296|    118|    if (ix == DKIX_EMPTY) {
  ------------------
  |  |  184|    118|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (7296:9): [True: 0, False: 118]
  ------------------
 7297|      0|        int res;
 7298|      0|        if (dict == NULL) {
  ------------------
  |  Branch (7298:13): [True: 0, False: 0]
  ------------------
 7299|       |            // Make the dict but don't publish it in the object
 7300|       |            // so that no one else will see it.
 7301|      0|            dict = make_dict_from_instance_attributes(keys, values);
 7302|      0|            if (dict == NULL ||
  ------------------
  |  Branch (7302:17): [True: 0, False: 0]
  ------------------
 7303|      0|                _PyDict_SetItem_LockHeld(dict, name, value) < 0) {
  ------------------
  |  Branch (7303:17): [True: 0, False: 0]
  ------------------
 7304|      0|                Py_XDECREF(dict);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7305|      0|                return -1;
 7306|      0|            }
 7307|       |
 7308|      0|            FT_ATOMIC_STORE_PTR_RELEASE(_PyObject_ManagedDictPointer(obj)->dict,
  ------------------
  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 7309|      0|                                        (PyDictObject *)dict);
 7310|      0|            return 0;
 7311|      0|        }
 7312|       |
 7313|      0|        _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(dict);
 7314|       |
 7315|      0|        res = _PyDict_SetItem_LockHeld(dict, name, value);
 7316|      0|        return res;
 7317|      0|    }
 7318|       |
 7319|    118|    PyObject *old_value = values->values[ix];
 7320|    118|    if (old_value == NULL && value == NULL) {
  ------------------
  |  Branch (7320:9): [True: 94, False: 24]
  |  Branch (7320:30): [True: 0, False: 94]
  ------------------
 7321|      0|        PyErr_Format(PyExc_AttributeError,
 7322|      0|                        "'%.100s' object has no attribute '%U'",
 7323|      0|                        Py_TYPE(obj)->tp_name, name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7324|      0|        (void)_PyObject_SetAttributeErrorContext(obj, name);
 7325|      0|        return -1;
 7326|      0|    }
 7327|       |
 7328|    118|    if (dict) {
  ------------------
  |  Branch (7328:9): [True: 0, False: 118]
  ------------------
 7329|      0|        PyDict_WatchEvent event = (old_value == NULL ? PyDict_EVENT_ADDED :
  ------------------
  |  Branch (7329:36): [True: 0, False: 0]
  ------------------
 7330|      0|                                   value == NULL ? PyDict_EVENT_DELETED :
  ------------------
  |  Branch (7330:36): [True: 0, False: 0]
  ------------------
 7331|      0|                                   PyDict_EVENT_MODIFIED);
 7332|      0|        _PyDict_NotifyEvent(event, dict, name, value);
 7333|      0|    }
 7334|       |
 7335|    118|    FT_ATOMIC_STORE_PTR_RELEASE(values->values[ix], Py_XNewRef(value));
  ------------------
  |  |  164|    118|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 7336|       |
 7337|    118|    if (old_value == NULL) {
  ------------------
  |  Branch (7337:9): [True: 94, False: 24]
  ------------------
 7338|     94|        _PyDictValues_AddToInsertionOrder(values, ix);
 7339|     94|        if (dict) {
  ------------------
  |  Branch (7339:13): [True: 0, False: 94]
  ------------------
 7340|      0|            assert(dict->ma_values == values);
  ------------------
  |  Branch (7340:13): [True: 0, False: 0]
  ------------------
 7341|      0|            STORE_USED(dict, dict->ma_used + 1);
  ------------------
  |  |  321|      0|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 7342|      0|        }
 7343|     94|    }
 7344|     24|    else {
 7345|     24|        if (value == NULL) {
  ------------------
  |  Branch (7345:13): [True: 0, False: 24]
  ------------------
 7346|      0|            delete_index_from_values(values, ix);
 7347|      0|            if (dict) {
  ------------------
  |  Branch (7347:17): [True: 0, False: 0]
  ------------------
 7348|      0|                assert(dict->ma_values == values);
  ------------------
  |  Branch (7348:17): [True: 0, False: 0]
  ------------------
 7349|      0|                STORE_USED(dict, dict->ma_used - 1);
  ------------------
  |  |  321|      0|#define STORE_USED(mp, used) FT_ATOMIC_STORE_SSIZE_RELAXED(mp->ma_used, used)
  |  |  ------------------
  |  |  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  ------------------
 7350|      0|            }
 7351|      0|        }
 7352|     24|        Py_DECREF(old_value);
  ------------------
  |  |  430|     24|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7353|     24|    }
 7354|    118|    return 0;
 7355|    118|}
dictobject.c:clear_inline_values:
 7596|    252|{
 7597|    252|    if (values->valid) {
  ------------------
  |  Branch (7597:9): [True: 252, False: 0]
  ------------------
 7598|    252|        FT_ATOMIC_STORE_UINT8(values->valid, 0);
  ------------------
  |  |  155|    252|#define FT_ATOMIC_STORE_UINT8(value, new_value) value = new_value
  ------------------
 7599|  4.06k|        for (Py_ssize_t i = 0; i < values->capacity; i++) {
  ------------------
  |  Branch (7599:32): [True: 3.81k, False: 252]
  ------------------
 7600|       |            Py_CLEAR(values->values[i]);
  ------------------
  |  |  484|  3.81k|    do { \
  |  |  485|  3.81k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.81k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.81k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.81k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.81k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 600, False: 3.21k]
  |  |  ------------------
  |  |  488|    600|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|    600|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|    600|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|    600|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    600|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    600|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|    600|        } \
  |  |  491|  3.81k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.81k]
  |  |  ------------------
  ------------------
 7601|  3.81k|        }
 7602|    252|    }
 7603|    252|}
dictobject.c:set_keys:
  271|  1.35k|{
  272|  1.35k|    mp->ma_keys = keys;
  273|  1.35k|}
dictobject.c:dictkeys_decref:
  480|  1.04k|{
  481|  1.04k|    if (FT_ATOMIC_LOAD_SSIZE_RELAXED(dk->dk_refcnt) < 0) {
  ------------------
  |  |  149|  1.04k|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
  |  Branch (481:9): [True: 506, False: 540]
  ------------------
  482|    506|        assert(FT_ATOMIC_LOAD_SSIZE_RELAXED(dk->dk_refcnt) == _Py_DICT_IMMORTAL_INITIAL_REFCNT);
  ------------------
  |  Branch (482:9): [True: 506, False: 0]
  ------------------
  483|    506|        return;
  484|    506|    }
  485|  1.04k|    assert(FT_ATOMIC_LOAD_SSIZE(dk->dk_refcnt) > 0);
  ------------------
  |  Branch (485:5): [True: 540, False: 0]
  ------------------
  486|       |#ifdef Py_REF_DEBUG
  487|       |    _Py_DecRefTotal(_PyThreadState_GET());
  488|       |#endif
  489|    540|    if (DECREF_KEYS(dk) == 1) {
  ------------------
  |  |  252|    540|#define DECREF_KEYS(dk)  dk->dk_refcnt--
  ------------------
  |  Branch (489:9): [True: 540, False: 0]
  ------------------
  490|    540|        if (DK_IS_UNICODE(dk)) {
  ------------------
  |  |  282|    540|#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
  |  |  ------------------
  |  |  |  Branch (282:27): [True: 540, False: 0]
  |  |  ------------------
  ------------------
  491|    540|            PyDictUnicodeEntry *entries = DK_UNICODE_ENTRIES(dk);
  492|    540|            Py_ssize_t i, n;
  493|  5.67k|            for (i = 0, n = dk->dk_nentries; i < n; i++) {
  ------------------
  |  Branch (493:46): [True: 5.13k, False: 540]
  ------------------
  494|  5.13k|                Py_XDECREF(entries[i].me_key);
  ------------------
  |  |  524|  5.13k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.13k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.13k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  495|  5.13k|                Py_XDECREF(entries[i].me_value);
  ------------------
  |  |  524|  5.13k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.13k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.13k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  496|  5.13k|            }
  497|    540|        }
  498|      0|        else {
  499|      0|            PyDictKeyEntry *entries = DK_ENTRIES(dk);
  500|      0|            Py_ssize_t i, n;
  501|      0|            for (i = 0, n = dk->dk_nentries; i < n; i++) {
  ------------------
  |  Branch (501:46): [True: 0, False: 0]
  ------------------
  502|      0|                Py_XDECREF(entries[i].me_key);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  503|      0|                Py_XDECREF(entries[i].me_value);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  504|      0|            }
  505|      0|        }
  506|    540|        free_keys_object(dk, use_qsbr);
  507|    540|    }
  508|    540|}
dictobject.c:new_dict_with_shared_keys:
  951|      2|{
  952|      2|    size_t size = shared_keys_usable_size(keys);
  953|      2|    PyDictValues *values = new_values(size);
  954|      2|    if (values == NULL) {
  ------------------
  |  Branch (954:9): [True: 0, False: 2]
  ------------------
  955|      0|        return PyErr_NoMemory();
  956|      0|    }
  957|      2|    dictkeys_incref(keys);
  958|     62|    for (size_t i = 0; i < size; i++) {
  ------------------
  |  Branch (958:24): [True: 60, False: 2]
  ------------------
  959|       |        values->values[i] = NULL;
  960|     60|    }
  961|      2|    return new_dict(keys, values, 0, 1);
  962|      2|}
dictobject.c:ensure_nonmanaged_dict:
 7894|  1.80k|{
 7895|  1.80k|    PyDictKeysObject *cached;
 7896|       |
 7897|  1.80k|    PyObject *dict = FT_ATOMIC_LOAD_PTR_ACQUIRE(*dictptr);
  ------------------
  |  |  150|  1.80k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
 7898|  1.80k|    if (dict == NULL) {
  ------------------
  |  Branch (7898:9): [True: 224, False: 1.58k]
  ------------------
 7899|       |#ifdef Py_GIL_DISABLED
 7900|       |        Py_BEGIN_CRITICAL_SECTION(obj);
 7901|       |        dict = *dictptr;
 7902|       |        if (dict != NULL) {
 7903|       |            goto done;
 7904|       |        }
 7905|       |#endif
 7906|    224|        PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|    224|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    224|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    224|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7907|    224|        if (_PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE) && (cached = CACHED_KEYS(tp))) {
  ------------------
  |  |  503|    224|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
                      if (_PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE) && (cached = CACHED_KEYS(tp))) {
  ------------------
  |  |  870|     14|#define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)
  ------------------
  |  Branch (7907:13): [True: 14, False: 210]
  |  Branch (7907:60): [True: 2, False: 12]
  ------------------
 7908|      2|            assert(!_PyType_HasFeature(tp, Py_TPFLAGS_INLINE_VALUES));
  ------------------
  |  Branch (7908:13): [True: 2, False: 0]
  ------------------
 7909|      2|            dict = new_dict_with_shared_keys(cached);
 7910|      2|        }
 7911|    222|        else {
 7912|    222|            dict = PyDict_New();
 7913|    222|        }
 7914|    224|        FT_ATOMIC_STORE_PTR_RELEASE(*dictptr, dict);
  ------------------
  |  |  164|    224|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 7915|       |#ifdef Py_GIL_DISABLED
 7916|       |done:
 7917|       |        Py_END_CRITICAL_SECTION();
 7918|       |#endif
 7919|    224|    }
 7920|  1.80k|    return dict;
 7921|  1.80k|}
dictobject.c:get_next_dict_keys_version:
 7970|     80|{
 7971|       |#ifdef Py_GIL_DISABLED
 7972|       |    uint32_t v;
 7973|       |    do {
 7974|       |        v = _Py_atomic_load_uint32_relaxed(
 7975|       |            &interp->dict_state.next_keys_version);
 7976|       |        if (v == 0) {
 7977|       |            return 0;
 7978|       |        }
 7979|       |    } while (!_Py_atomic_compare_exchange_uint32(
 7980|       |        &interp->dict_state.next_keys_version, &v, v + 1));
 7981|       |#else
 7982|     80|    if (interp->dict_state.next_keys_version == 0) {
  ------------------
  |  Branch (7982:9): [True: 0, False: 80]
  ------------------
 7983|      0|        return 0;
 7984|      0|    }
 7985|     80|    uint32_t v = interp->dict_state.next_keys_version++;
 7986|     80|#endif
 7987|     80|    return v;
 7988|     80|}
dictobject.c:ensure_shared_on_keys_version_assignment:
 1413|    708|{
 1414|    708|    ASSERT_DICT_LOCKED((PyObject *) mp);
 1415|       |    #ifdef Py_GIL_DISABLED
 1416|       |    if (!IS_DICT_SHARED(mp)) {
 1417|       |        // This ensures that a concurrent resize operation will delay
 1418|       |        // freeing the old keys or values using QSBR, which is necessary to
 1419|       |        // safely allow concurrent reads without locking.
 1420|       |        SET_DICT_SHARED(mp);
 1421|       |    }
 1422|       |    #endif
 1423|    708|}
dictobject.c:validate_watcher_id:
 8018|     66|{
 8019|     66|    if (watcher_id < 0 || watcher_id >= DICT_MAX_WATCHERS) {
  ------------------
  |  |   11|     66|#define DICT_MAX_WATCHERS 8
  ------------------
  |  Branch (8019:9): [True: 0, False: 66]
  |  Branch (8019:27): [True: 0, False: 66]
  ------------------
 8020|      0|        PyErr_Format(PyExc_ValueError, "Invalid dict watcher ID %d", watcher_id);
 8021|      0|        return -1;
 8022|      0|    }
 8023|     66|    PyDict_WatchCallback cb = FT_ATOMIC_LOAD_PTR_RELAXED(
  ------------------
  |  |  153|     66|#define FT_ATOMIC_LOAD_PTR_RELAXED(value) value
  ------------------
 8024|     66|        interp->dict_state.watchers[watcher_id]);
 8025|     66|    if (cb == NULL) {
  ------------------
  |  Branch (8025:9): [True: 0, False: 66]
  ------------------
 8026|      0|        PyErr_Format(PyExc_ValueError, "No dict watcher set for ID %d", watcher_id);
 8027|      0|        return -1;
 8028|      0|    }
 8029|     66|    return 0;
 8030|     66|}

enumobject.c:reversed_new_impl:
  365|      6|{
  366|      6|    Py_ssize_t n;
  367|      6|    PyObject *reversed_meth;
  368|      6|    reversedobject *ro;
  369|       |
  370|      6|    reversed_meth = _PyObject_LookupSpecial(seq, &_Py_ID(__reversed__));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  371|      6|    if (reversed_meth == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (371:9): [True: 0, False: 6]
  ------------------
  372|      0|        Py_DECREF(reversed_meth);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  373|      0|        PyErr_Format(PyExc_TypeError,
  374|      0|                     "'%.200s' object is not reversible",
  375|      0|                     Py_TYPE(seq)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  376|      0|        return NULL;
  377|      0|    }
  378|      6|    if (reversed_meth != NULL) {
  ------------------
  |  Branch (378:9): [True: 6, False: 0]
  ------------------
  379|      6|        PyObject *res = _PyObject_CallNoArgs(reversed_meth);
  380|      6|        Py_DECREF(reversed_meth);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  381|      6|        return res;
  382|      6|    }
  383|      0|    else if (PyErr_Occurred())
  ------------------
  |  Branch (383:14): [True: 0, False: 0]
  ------------------
  384|      0|        return NULL;
  385|       |
  386|      0|    if (!PySequence_Check(seq)) {
  ------------------
  |  Branch (386:9): [True: 0, False: 0]
  ------------------
  387|      0|        PyErr_Format(PyExc_TypeError,
  388|      0|                     "'%.200s' object is not reversible",
  389|      0|                     Py_TYPE(seq)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  390|      0|        return NULL;
  391|      0|    }
  392|       |
  393|      0|    n = PySequence_Size(seq);
  394|      0|    if (n == -1)
  ------------------
  |  Branch (394:9): [True: 0, False: 0]
  ------------------
  395|      0|        return NULL;
  396|       |
  397|      0|    ro = (reversedobject *)type->tp_alloc(type, 0);
  398|      0|    if (ro == NULL)
  ------------------
  |  Branch (398:9): [True: 0, False: 0]
  ------------------
  399|      0|        return NULL;
  400|       |
  401|      0|    ro->index = n-1;
  402|      0|    ro->seq = Py_NewRef(seq);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  403|      0|    return (PyObject *)ro;
  404|      0|}
enumobject.c:reversed_vectorcall:
  409|      6|{
  410|      6|    if (!_PyArg_NoKwnames("reversed", kwnames)) {
  ------------------
  |  |   15|      6|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 6, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  411|      0|        return NULL;
  412|      0|    }
  413|       |
  414|      6|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      6|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  415|      6|    if (!_PyArg_CheckPositional("reversed", nargs, 1, 1)) {
  ------------------
  |  |   31|      6|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 6, False: 0]
  |  |  |  Branch (31:27): [True: 6, False: 0]
  |  |  ------------------
  |  |   32|      6|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  416|      0|        return NULL;
  417|      0|    }
  418|       |
  419|      6|    return reversed_new_impl(_PyType_CAST(type), args[0]);
  ------------------
  |  |  770|      6|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (419:30): [True: 6, False: 0]
  ------------------
  420|      6|}

PyException_GetTraceback:
  512|  4.09k|{
  513|  4.09k|    PyObject *traceback;
  514|  4.09k|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|  4.09k|    {
  ------------------
  515|  4.09k|    traceback = Py_XNewRef(PyBaseExceptionObject_CAST(self)->traceback);
  ------------------
  |  |  551|  4.09k|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  4.09k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.09k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  516|  4.09k|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|  4.09k|    }
  ------------------
  517|  4.09k|    return traceback;
  518|  4.09k|}
PyException_SetTraceback:
  523|    208|{
  524|    208|    int res;
  525|    208|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|    208|    {
  ------------------
  526|    208|    res = BaseException___traceback___set_impl(PyBaseExceptionObject_CAST(self), tb);
  527|    208|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    208|    }
  ------------------
  528|    208|    return res;
  529|    208|}
PyException_SetCause:
  544|      2|{
  545|      2|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      2|    {
  ------------------
  546|      2|    PyBaseExceptionObject *base_self = PyBaseExceptionObject_CAST(self);
  547|      2|    base_self->suppress_context = 1;
  548|      2|    Py_XSETREF(base_self->cause, cause);
  ------------------
  |  |  374|      2|    do { \
  |  |  375|      2|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      2|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      2|        *_tmp_dst_ptr = (src); \
  |  |  378|      2|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  549|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
  550|      2|}
PyException_GetContext:
  554|     18|{
  555|     18|    PyObject *context;
  556|     18|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|     18|    {
  ------------------
  557|     18|    context = Py_XNewRef(PyBaseExceptionObject_CAST(self)->context);
  ------------------
  |  |  551|     18|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  558|     18|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     18|    }
  ------------------
  559|     18|    return context;
  560|     18|}
PyException_SetContext:
  565|     18|{
  566|     18|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|     18|    {
  ------------------
  567|     18|    Py_XSETREF(PyBaseExceptionObject_CAST(self)->context, context);
  ------------------
  |  |  374|     18|    do { \
  |  |  375|     18|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     18|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     18|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     18|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     18|        *_tmp_dst_ptr = (src); \
  |  |  378|     18|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     18|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     18|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 18]
  |  |  ------------------
  ------------------
  568|     18|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     18|    }
  ------------------
  569|     18|}
_PyExc_InitTypes:
 4491|      2|{
 4492|    140|    for (size_t i=0; i < Py_ARRAY_LENGTH(static_exceptions); i++) {
  ------------------
  |  |  196|    140|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (4492:22): [True: 138, False: 2]
  ------------------
 4493|    138|        PyTypeObject *exc = static_exceptions[i].exc;
 4494|    138|        if (_PyStaticType_InitBuiltin(interp, exc) < 0) {
  ------------------
  |  Branch (4494:13): [True: 0, False: 138]
  ------------------
 4495|      0|            return -1;
 4496|      0|        }
 4497|    138|        if (exc->tp_new == BaseException_new
  ------------------
  |  Branch (4497:13): [True: 102, False: 36]
  ------------------
 4498|    102|            && exc->tp_init == BaseException_init)
  ------------------
  |  Branch (4498:16): [True: 72, False: 30]
  ------------------
 4499|     72|        {
 4500|     72|            exc->tp_vectorcall = BaseException_vectorcall;
 4501|     72|        }
 4502|    138|    }
 4503|      2|    return 0;
 4504|      2|}
_PyExc_InitGlobalObjects:
 4519|      2|{
 4520|      2|    if (preallocate_memerrors() < 0) {
  ------------------
  |  Branch (4520:9): [True: 0, False: 2]
  ------------------
 4521|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 4522|      0|    }
 4523|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4524|      2|}
_PyExc_InitState:
 4528|      2|{
 4529|      2|    struct _Py_exc_state *state = &interp->exc_state;
 4530|       |
 4531|      2|#define ADD_ERRNO(TYPE, CODE) \
 4532|      2|    do { \
 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
 4536|      2|            Py_XDECREF(_code); \
 4537|      2|            return _PyStatus_ERR("errmap insertion problem."); \
 4538|      2|        } \
 4539|      2|        Py_DECREF(_code); \
 4540|      2|    } while (0)
 4541|       |
 4542|       |    /* Add exceptions to errnomap */
 4543|      2|    assert(state->errnomap == NULL);
  ------------------
  |  Branch (4543:5): [True: 2, False: 0]
  ------------------
 4544|      2|    state->errnomap = PyDict_New();
 4545|      2|    if (!state->errnomap) {
  ------------------
  |  Branch (4545:9): [True: 0, False: 2]
  ------------------
 4546|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 4547|      0|    }
 4548|       |
 4549|      2|    ADD_ERRNO(BlockingIOError, EAGAIN);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4549:5): [True: 2, False: 0]
  ------------------
 4550|      2|    ADD_ERRNO(BlockingIOError, EALREADY);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4550:5): [True: 2, False: 0]
  ------------------
 4551|      2|    ADD_ERRNO(BlockingIOError, EINPROGRESS);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4551:5): [True: 2, False: 0]
  ------------------
 4552|      2|    ADD_ERRNO(BlockingIOError, EWOULDBLOCK);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4552:5): [True: 2, False: 0]
  ------------------
 4553|      2|    ADD_ERRNO(BrokenPipeError, EPIPE);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4553:5): [True: 2, False: 0]
  ------------------
 4554|      2|#ifdef ESHUTDOWN
 4555|      2|    ADD_ERRNO(BrokenPipeError, ESHUTDOWN);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4555:5): [True: 2, False: 0]
  ------------------
 4556|      2|#endif
 4557|      2|    ADD_ERRNO(ChildProcessError, ECHILD);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4557:5): [True: 2, False: 0]
  ------------------
 4558|      2|    ADD_ERRNO(ConnectionAbortedError, ECONNABORTED);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4558:5): [True: 2, False: 0]
  ------------------
 4559|      2|    ADD_ERRNO(ConnectionRefusedError, ECONNREFUSED);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4559:5): [True: 2, False: 0]
  ------------------
 4560|      2|    ADD_ERRNO(ConnectionResetError, ECONNRESET);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4560:5): [True: 2, False: 0]
  ------------------
 4561|      2|    ADD_ERRNO(FileExistsError, EEXIST);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4561:5): [True: 2, False: 0]
  ------------------
 4562|      2|    ADD_ERRNO(FileNotFoundError, ENOENT);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4562:5): [True: 2, False: 0]
  ------------------
 4563|      2|    ADD_ERRNO(IsADirectoryError, EISDIR);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4563:5): [True: 2, False: 0]
  ------------------
 4564|      2|    ADD_ERRNO(NotADirectoryError, ENOTDIR);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4564:5): [True: 2, False: 0]
  ------------------
 4565|      2|    ADD_ERRNO(InterruptedError, EINTR);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4565:5): [True: 2, False: 0]
  ------------------
 4566|      2|    ADD_ERRNO(PermissionError, EACCES);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4566:5): [True: 2, False: 0]
  ------------------
 4567|      2|    ADD_ERRNO(PermissionError, EPERM);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4567:5): [True: 2, False: 0]
  ------------------
 4568|       |#ifdef ENOTCAPABLE
 4569|       |    // Extension for WASI capability-based security. Process lacks
 4570|       |    // capability to access a resource.
 4571|       |    ADD_ERRNO(PermissionError, ENOTCAPABLE);
 4572|       |#endif
 4573|      2|    ADD_ERRNO(ProcessLookupError, ESRCH);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4573:5): [True: 2, False: 0]
  ------------------
 4574|      2|    ADD_ERRNO(TimeoutError, ETIMEDOUT);
  ------------------
  |  | 4532|      2|    do { \
  |  | 4533|      2|        PyObject *_code = PyLong_FromLong(CODE); \
  |  | 4534|      2|        assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
  |  | 4535|      2|        if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \
  |  |  ------------------
  |  |  |  Branch (4535:13): [True: 0, False: 2]
  |  |  |  Branch (4535:23): [True: 0, False: 2]
  |  |  ------------------
  |  | 4536|      0|            Py_XDECREF(_code); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4537|      0|            return _PyStatus_ERR("errmap insertion problem."); \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  | 4538|      0|        } \
  |  | 4539|      2|        Py_DECREF(_code); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4540|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4540:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (4574:5): [True: 2, False: 0]
  ------------------
 4575|       |#ifdef WSAETIMEDOUT
 4576|       |    ADD_ERRNO(TimeoutError, WSAETIMEDOUT);
 4577|       |#endif
 4578|       |
 4579|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4580|       |
 4581|      2|#undef ADD_ERRNO
 4582|      2|}
_PyBuiltins_AddExceptions:
 4588|      2|{
 4589|      2|    PyObject *mod_dict = PyModule_GetDict(bltinmod);
 4590|      2|    if (mod_dict == NULL) {
  ------------------
  |  Branch (4590:9): [True: 0, False: 2]
  ------------------
 4591|      0|        return -1;
 4592|      0|    }
 4593|       |
 4594|    140|    for (size_t i=0; i < Py_ARRAY_LENGTH(static_exceptions); i++) {
  ------------------
  |  |  196|    140|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (4594:22): [True: 138, False: 2]
  ------------------
 4595|    138|        struct static_exception item = static_exceptions[i];
 4596|       |
 4597|    138|        if (PyDict_SetItemString(mod_dict, item.name, (PyObject*)item.exc)) {
  ------------------
  |  Branch (4597:13): [True: 0, False: 138]
  ------------------
 4598|      0|            return -1;
 4599|      0|        }
 4600|    138|    }
 4601|       |
 4602|      2|    PyObject *PyExc_ExceptionGroup = create_exception_group_class();
 4603|      2|    if (!PyExc_ExceptionGroup) {
  ------------------
  |  Branch (4603:9): [True: 0, False: 2]
  ------------------
 4604|      0|        return -1;
 4605|      0|    }
 4606|      2|    if (PyDict_SetItemString(mod_dict, "ExceptionGroup", PyExc_ExceptionGroup)) {
  ------------------
  |  Branch (4606:9): [True: 0, False: 2]
  ------------------
 4607|      0|        return -1;
 4608|      0|    }
 4609|      2|    if (PyDict_SetItemString(mod_dict, "EnvironmentError", PyExc_OSError)) {
  ------------------
  |  Branch (4609:9): [True: 0, False: 2]
  ------------------
 4610|      0|        return -1;
 4611|      0|    }
 4612|      2|    if (PyDict_SetItemString(mod_dict, "IOError", PyExc_OSError)) {
  ------------------
  |  Branch (4612:9): [True: 0, False: 2]
  ------------------
 4613|      0|        return -1;
 4614|      0|    }
 4615|       |#ifdef MS_WINDOWS
 4616|       |    if (PyDict_SetItemString(mod_dict, "WindowsError", PyExc_OSError)) {
 4617|       |        return -1;
 4618|       |    }
 4619|       |#endif
 4620|      2|    return 0;
 4621|      2|}
exceptions.c:PyBaseExceptionObject_CAST:
   43|  12.1k|{
   44|  12.1k|    assert(PyExceptionInstance_Check(exc));
  ------------------
  |  Branch (44:5): [True: 12.1k, False: 0]
  ------------------
   45|  12.1k|    return (PyBaseExceptionObject *)exc;
   46|  12.1k|}
exceptions.c:BaseException___traceback___set_impl:
  393|    208|{
  394|    208|    if (value == NULL) {
  ------------------
  |  Branch (394:9): [True: 0, False: 208]
  ------------------
  395|      0|        PyErr_SetString(PyExc_TypeError, "__traceback__ may not be deleted");
  396|      0|        return -1;
  397|      0|    }
  398|    208|    if (PyTraceBack_Check(value)) {
  ------------------
  |  |   14|    208|#define PyTraceBack_Check(v) Py_IS_TYPE((v), &PyTraceBack_Type)
  |  |  ------------------
  |  |  |  |  215|    208|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    208|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    208|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 204, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  399|    204|        Py_XSETREF(self->traceback, Py_NewRef(value));
  ------------------
  |  |  374|    204|    do { \
  |  |  375|    204|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    204|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|    204|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    204|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|    204|        *_tmp_dst_ptr = (src); \
  |  |  378|    204|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|    204|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|    204|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 204]
  |  |  ------------------
  ------------------
  400|    204|    }
  401|      4|    else if (value == Py_None) {
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (401:14): [True: 4, False: 0]
  ------------------
  402|      4|        Py_CLEAR(self->traceback);
  ------------------
  |  |  484|      4|    do { \
  |  |  485|      4|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      4|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      4|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  488|      4|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      4|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      4|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      4|        } \
  |  |  491|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  403|      4|    }
  404|      0|    else {
  405|      0|        PyErr_SetString(PyExc_TypeError,
  406|      0|                        "__traceback__ must be a traceback or None");
  407|      0|        return -1;
  408|      0|    }
  409|    208|    return 0;
  410|    208|}
exceptions.c:BaseException_dealloc:
  139|  3.78k|{
  140|  3.78k|    PyBaseExceptionObject *self = PyBaseExceptionObject_CAST(op);
  141|  3.78k|    PyObject_GC_UnTrack(self);
  142|       |    // bpo-44348: The trashcan mechanism prevents stack overflow when deleting
  143|       |    // long chains of exceptions. For example, exceptions can be chained
  144|       |    // through the __context__ attributes or the __traceback__ attribute.
  145|  3.78k|    (void)BaseException_clear(op);
  146|  3.78k|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|  3.78k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  3.78k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.78k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  147|  3.78k|}
exceptions.c:get_exc_state:
   31|     86|{
   32|     86|    PyInterpreterState *interp = _PyInterpreterState_GET();
   33|     86|    return &interp->exc_state;
   34|     86|}
exceptions.c:ImportError_dealloc:
 1847|     14|{
 1848|     14|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|     14|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1849|     14|    (void)ImportError_clear(self);
 1850|     14|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|     14|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1851|     14|}
exceptions.c:PyImportErrorObject_CAST:
 1793|     28|{
 1794|     28|    assert(PyObject_TypeCheck(self, (PyTypeObject *)PyExc_ImportError));
  ------------------
  |  Branch (1794:5): [True: 28, False: 0]
  ------------------
 1795|     28|    return (PyImportErrorObject *)self;
 1796|     28|}
exceptions.c:ImportError_clear:
 1836|     14|{
 1837|     14|    PyImportErrorObject *self = PyImportErrorObject_CAST(op);
 1838|     14|    Py_CLEAR(self->msg);
  ------------------
  |  |  484|     14|    do { \
  |  |  485|     14|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     14|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     14|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 14, False: 0]
  |  |  ------------------
  |  |  488|     14|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     14|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     14|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     14|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     14|        } \
  |  |  491|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1839|     14|    Py_CLEAR(self->name);
  ------------------
  |  |  484|     14|    do { \
  |  |  485|     14|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     14|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     14|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 4, False: 10]
  |  |  ------------------
  |  |  488|      4|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      4|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      4|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      4|        } \
  |  |  491|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1840|     14|    Py_CLEAR(self->path);
  ------------------
  |  |  484|     14|    do { \
  |  |  485|     14|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     14|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     14|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 10, False: 4]
  |  |  ------------------
  |  |  488|     10|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     10|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     10|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     10|        } \
  |  |  491|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1841|       |    Py_CLEAR(self->name_from);
  ------------------
  |  |  484|     14|    do { \
  |  |  485|     14|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     14|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     14|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 14]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1842|     14|    return BaseException_clear(op);
 1843|     14|}
exceptions.c:ImportError_init:
 1800|     14|{
 1801|     14|    static char *kwlist[] = {"name", "path", "name_from", 0};
 1802|     14|    PyObject *empty_tuple;
 1803|     14|    PyObject *msg = NULL;
 1804|     14|    PyObject *name = NULL;
 1805|     14|    PyObject *path = NULL;
 1806|     14|    PyObject *name_from = NULL;
 1807|       |
 1808|     14|    if (BaseException_init(op, args, NULL) == -1)
  ------------------
  |  Branch (1808:9): [True: 0, False: 14]
  ------------------
 1809|      0|        return -1;
 1810|       |
 1811|     14|    PyImportErrorObject *self = PyImportErrorObject_CAST(op);
 1812|     14|    empty_tuple = PyTuple_New(0);
 1813|     14|    if (!empty_tuple)
  ------------------
  |  Branch (1813:9): [True: 0, False: 14]
  ------------------
 1814|      0|        return -1;
 1815|     14|    if (!PyArg_ParseTupleAndKeywords(empty_tuple, kwds, "|$OOO:ImportError", kwlist,
  ------------------
  |  Branch (1815:9): [True: 0, False: 14]
  ------------------
 1816|     14|                                     &name, &path, &name_from)) {
 1817|      0|        Py_DECREF(empty_tuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1818|      0|        return -1;
 1819|      0|    }
 1820|     14|    Py_DECREF(empty_tuple);
  ------------------
  |  |  430|     14|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1821|       |
 1822|     14|    Py_XSETREF(self->name, Py_XNewRef(name));
  ------------------
  |  |  374|     14|    do { \
  |  |  375|     14|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     14|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     14|        *_tmp_dst_ptr = (src); \
  |  |  378|     14|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1823|     14|    Py_XSETREF(self->path, Py_XNewRef(path));
  ------------------
  |  |  374|     14|    do { \
  |  |  375|     14|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     14|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     14|        *_tmp_dst_ptr = (src); \
  |  |  378|     14|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1824|     14|    Py_XSETREF(self->name_from, Py_XNewRef(name_from));
  ------------------
  |  |  374|     14|    do { \
  |  |  375|     14|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     14|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     14|        *_tmp_dst_ptr = (src); \
  |  |  378|     14|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1825|       |
 1826|     14|    if (PyTuple_GET_SIZE(args) == 1) {
  ------------------
  |  |   27|     14|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1826:9): [True: 14, False: 0]
  ------------------
 1827|     14|        msg = Py_NewRef(PyTuple_GET_ITEM(args, 0));
  ------------------
  |  |  550|     14|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (37:38): [True: 14, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1828|     14|    }
 1829|     14|    Py_XSETREF(self->msg, msg);
  ------------------
  |  |  374|     14|    do { \
  |  |  375|     14|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     14|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     14|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     14|        *_tmp_dst_ptr = (src); \
  |  |  378|     14|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 1830|       |
 1831|     14|    return 0;
 1832|     14|}
exceptions.c:OSError_dealloc:
 2321|     20|{
 2322|     20|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|     20|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2323|     20|    (void)OSError_clear(self);
 2324|     20|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|     20|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2325|     20|}
exceptions.c:PyOSErrorObject_CAST:
 2035|     40|{
 2036|     40|    assert(PyObject_TypeCheck(self, (PyTypeObject *)PyExc_OSError));
  ------------------
  |  Branch (2036:5): [True: 40, False: 0]
  ------------------
 2037|     40|    return (PyOSErrorObject *)self;
 2038|     40|}
exceptions.c:OSError_clear:
 2307|     20|{
 2308|     20|    PyOSErrorObject *self = PyOSErrorObject_CAST(op);
 2309|     20|    Py_CLEAR(self->myerrno);
  ------------------
  |  |  484|     20|    do { \
  |  |  485|     20|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     20|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     20|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 20, False: 0]
  |  |  ------------------
  |  |  488|     20|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     20|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     20|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     20|        } \
  |  |  491|     20|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 20]
  |  |  ------------------
  ------------------
 2310|     20|    Py_CLEAR(self->strerror);
  ------------------
  |  |  484|     20|    do { \
  |  |  485|     20|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     20|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     20|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 20, False: 0]
  |  |  ------------------
  |  |  488|     20|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     20|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     20|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     20|        } \
  |  |  491|     20|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 20]
  |  |  ------------------
  ------------------
 2311|     20|    Py_CLEAR(self->filename);
  ------------------
  |  |  484|     20|    do { \
  |  |  485|     20|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     20|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     20|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 10, False: 10]
  |  |  ------------------
  |  |  488|     10|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     10|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     10|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     10|        } \
  |  |  491|     20|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 20]
  |  |  ------------------
  ------------------
 2312|     20|    Py_CLEAR(self->filename2);
  ------------------
  |  |  484|     20|    do { \
  |  |  485|     20|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     20|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     20|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 20]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|     20|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 20]
  |  |  ------------------
  ------------------
 2313|       |#ifdef MS_WINDOWS
 2314|       |    Py_CLEAR(self->winerror);
 2315|       |#endif
 2316|     20|    return BaseException_clear(op);
 2317|     20|}
exceptions.c:OSError_init:
 2268|     20|{
 2269|     20|    PyOSErrorObject *self = PyOSErrorObject_CAST(op);
 2270|     20|    PyObject *myerrno = NULL, *strerror = NULL;
 2271|     20|    PyObject *filename = NULL, *filename2 = NULL;
 2272|       |#ifdef MS_WINDOWS
 2273|       |    PyObject *winerror = NULL;
 2274|       |#endif
 2275|       |
 2276|     20|    if (!oserror_use_init(Py_TYPE(self)))
  ------------------
  |  |  213|     20|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2276:9): [True: 20, False: 0]
  ------------------
 2277|       |        /* Everything already done in OSError_new */
 2278|     20|        return 0;
 2279|       |
 2280|      0|    if (!_PyArg_NoKeywords(Py_TYPE(self)->tp_name, kwds))
  ------------------
  |  |   25|      0|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 0, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2281|      0|        return -1;
 2282|       |
 2283|      0|    Py_INCREF(args);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2284|      0|    if (oserror_parse_args(&args, &myerrno, &strerror, &filename, &filename2
  ------------------
  |  Branch (2284:9): [True: 0, False: 0]
  ------------------
 2285|       |#ifdef MS_WINDOWS
 2286|       |                           , &winerror
 2287|       |#endif
 2288|      0|        ))
 2289|      0|        goto error;
 2290|       |
 2291|      0|    if (oserror_init(self, &args, myerrno, strerror, filename, filename2
  ------------------
  |  Branch (2291:9): [True: 0, False: 0]
  ------------------
 2292|       |#ifdef MS_WINDOWS
 2293|       |                     , winerror
 2294|       |#endif
 2295|      0|        ))
 2296|      0|        goto error;
 2297|       |
 2298|      0|    return 0;
 2299|       |
 2300|      0|error:
 2301|      0|    Py_DECREF(args);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2302|      0|    return -1;
 2303|      0|}
exceptions.c:oserror_use_init:
 2180|     60|{
 2181|       |    /* When __init__ is defined in an OSError subclass, we want any
 2182|       |       extraneous argument to __new__ to be ignored.  The only reasonable
 2183|       |       solution, given __new__ takes a variable number of arguments,
 2184|       |       is to defer arg parsing and initialization to __init__.
 2185|       |
 2186|       |       But when __new__ is overridden as well, it should call our __new__
 2187|       |       with the right arguments.
 2188|       |
 2189|       |       (see http://bugs.python.org/issue12555#msg148829 )
 2190|       |    */
 2191|     60|    if (type->tp_init != OSError_init && type->tp_new == OSError_new) {
  ------------------
  |  Branch (2191:9): [True: 0, False: 60]
  |  Branch (2191:42): [True: 0, False: 0]
  ------------------
 2192|      0|        assert((PyObject *) type != PyExc_OSError);
  ------------------
  |  Branch (2192:9): [True: 0, False: 0]
  ------------------
 2193|      0|        return 1;
 2194|      0|    }
 2195|     60|    return 0;
 2196|     60|}
exceptions.c:oserror_parse_args:
 2069|     20|{
 2070|     20|    Py_ssize_t nargs;
 2071|     20|    PyObject *args = *p_args;
 2072|     20|#ifndef MS_WINDOWS
 2073|       |    /*
 2074|       |     * ignored on non-Windows platforms,
 2075|       |     * but parsed so OSError has a consistent signature
 2076|       |     */
 2077|     20|    PyObject *_winerror = NULL;
 2078|     20|    PyObject **winerror = &_winerror;
 2079|     20|#endif /* MS_WINDOWS */
 2080|       |
 2081|     20|    nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|     20|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2082|       |
 2083|     20|    if (nargs >= 2 && nargs <= 5) {
  ------------------
  |  Branch (2083:9): [True: 20, False: 0]
  |  Branch (2083:23): [True: 20, False: 0]
  ------------------
 2084|     20|        if (!PyArg_UnpackTuple(args, "OSError", 2, 5,
  ------------------
  |  Branch (2084:13): [True: 0, False: 20]
  ------------------
 2085|     20|                               myerrno, strerror,
 2086|     20|                               filename, winerror, filename2))
 2087|      0|            return -1;
 2088|       |#ifdef MS_WINDOWS
 2089|       |        if (*winerror && PyLong_Check(*winerror)) {
 2090|       |            long errcode, winerrcode;
 2091|       |            PyObject *newargs;
 2092|       |            Py_ssize_t i;
 2093|       |
 2094|       |            winerrcode = PyLong_AsLong(*winerror);
 2095|       |            if (winerrcode == -1 && PyErr_Occurred())
 2096|       |                return -1;
 2097|       |            errcode = winerror_to_errno(winerrcode);
 2098|       |            *myerrno = PyLong_FromLong(errcode);
 2099|       |            if (!*myerrno)
 2100|       |                return -1;
 2101|       |            newargs = PyTuple_New(nargs);
 2102|       |            if (!newargs)
 2103|       |                return -1;
 2104|       |            PyTuple_SET_ITEM(newargs, 0, *myerrno);
 2105|       |            for (i = 1; i < nargs; i++) {
 2106|       |                PyObject *val = PyTuple_GET_ITEM(args, i);
 2107|       |                PyTuple_SET_ITEM(newargs, i, Py_NewRef(val));
 2108|       |            }
 2109|       |            Py_DECREF(args);
 2110|       |            args = *p_args = newargs;
 2111|       |        }
 2112|       |#endif /* MS_WINDOWS */
 2113|     20|    }
 2114|       |
 2115|     20|    return 0;
 2116|     20|}
exceptions.c:oserror_init:
 2126|     20|{
 2127|     20|    PyObject *args = *p_args;
 2128|     20|    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|     20|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2129|       |
 2130|       |    /* self->filename will remain Py_None otherwise */
 2131|     20|    if (filename && filename != Py_None) {
  ------------------
  |  |  616|     10|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (2131:9): [True: 10, False: 10]
  |  Branch (2131:21): [True: 10, False: 0]
  ------------------
 2132|     10|        if (Py_IS_TYPE(self, (PyTypeObject *) PyExc_BlockingIOError) &&
  ------------------
  |  |  215|     20|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 10]
  |  |  ------------------
  ------------------
 2133|      0|            PyNumber_Check(filename)) {
  ------------------
  |  Branch (2133:13): [True: 0, False: 0]
  ------------------
 2134|       |            /* BlockingIOError's 3rd argument can be the number of
 2135|       |             * characters written.
 2136|       |             */
 2137|      0|            self->written = PyNumber_AsSsize_t(filename, PyExc_ValueError);
 2138|      0|            if (self->written == -1 && PyErr_Occurred())
  ------------------
  |  Branch (2138:17): [True: 0, False: 0]
  |  Branch (2138:40): [True: 0, False: 0]
  ------------------
 2139|      0|                return -1;
 2140|      0|        }
 2141|     10|        else {
 2142|     10|            self->filename = Py_NewRef(filename);
  ------------------
  |  |  550|     10|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2143|       |
 2144|     10|            if (filename2 && filename2 != Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (2144:17): [True: 0, False: 10]
  |  Branch (2144:30): [True: 0, False: 0]
  ------------------
 2145|      0|                self->filename2 = Py_NewRef(filename2);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2146|      0|            }
 2147|       |
 2148|     10|            if (nargs >= 2 && nargs <= 5) {
  ------------------
  |  Branch (2148:17): [True: 10, False: 0]
  |  Branch (2148:31): [True: 10, False: 0]
  ------------------
 2149|       |                /* filename, filename2, and winerror are removed from the args tuple
 2150|       |                   (for compatibility purposes, see test_exceptions.py) */
 2151|     10|                PyObject *subslice = PyTuple_GetSlice(args, 0, 2);
 2152|     10|                if (!subslice)
  ------------------
  |  Branch (2152:21): [True: 0, False: 10]
  ------------------
 2153|      0|                    return -1;
 2154|       |
 2155|     10|                Py_DECREF(args);  /* replacing args */
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2156|     10|                *p_args = args = subslice;
 2157|     10|            }
 2158|     10|        }
 2159|     10|    }
 2160|     20|    self->myerrno = Py_XNewRef(myerrno);
  ------------------
  |  |  551|     20|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2161|     20|    self->strerror = Py_XNewRef(strerror);
  ------------------
  |  |  551|     20|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2162|       |#ifdef MS_WINDOWS
 2163|       |    self->winerror = Py_XNewRef(winerror);
 2164|       |#endif
 2165|       |
 2166|       |    /* Steals the reference to args */
 2167|     20|    Py_XSETREF(self->args, args);
  ------------------
  |  |  374|     20|    do { \
  |  |  375|     20|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     20|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     20|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     20|        *_tmp_dst_ptr = (src); \
  |  |  378|     20|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     20|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     20|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 20]
  |  |  ------------------
  ------------------
 2168|     20|    *p_args = args = NULL;
 2169|       |
 2170|     20|    return 0;
 2171|     20|}
exceptions.c:OSError_new:
 2200|     20|{
 2201|     20|    PyOSErrorObject *self = NULL;
 2202|     20|    PyObject *myerrno = NULL, *strerror = NULL;
 2203|     20|    PyObject *filename = NULL, *filename2 = NULL;
 2204|       |#ifdef MS_WINDOWS
 2205|       |    PyObject *winerror = NULL;
 2206|       |#endif
 2207|       |
 2208|     20|    Py_INCREF(args);
  ------------------
  |  |  310|     20|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2209|       |
 2210|     20|    if (!oserror_use_init(type)) {
  ------------------
  |  Branch (2210:9): [True: 20, False: 0]
  ------------------
 2211|     20|        if (!_PyArg_NoKeywords(type->tp_name, kwds))
  ------------------
  |  |   25|     20|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 20, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2212|      0|            goto error;
 2213|       |
 2214|     20|        if (oserror_parse_args(&args, &myerrno, &strerror,
  ------------------
  |  Branch (2214:13): [True: 0, False: 20]
  ------------------
 2215|     20|                               &filename, &filename2
 2216|       |#ifdef MS_WINDOWS
 2217|       |                               , &winerror
 2218|       |#endif
 2219|     20|            ))
 2220|      0|            goto error;
 2221|       |
 2222|     20|        struct _Py_exc_state *state = get_exc_state();
 2223|     20|        if (myerrno && PyLong_Check(myerrno) &&
  ------------------
  |  |   13|     20|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     40|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 20, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2223:13): [True: 20, False: 0]
  ------------------
 2224|     20|            state->errnomap && (PyObject *) type == PyExc_OSError) {
  ------------------
  |  Branch (2224:13): [True: 20, False: 0]
  |  Branch (2224:32): [True: 20, False: 0]
  ------------------
 2225|     20|            PyObject *newtype;
 2226|     20|            newtype = PyDict_GetItemWithError(state->errnomap, myerrno);
 2227|     20|            if (newtype) {
  ------------------
  |  Branch (2227:17): [True: 20, False: 0]
  ------------------
 2228|     20|                type = _PyType_CAST(newtype);
  ------------------
  |  |  770|     20|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (2228:24): [True: 20, False: 0]
  ------------------
 2229|     20|            }
 2230|      0|            else if (PyErr_Occurred())
  ------------------
  |  Branch (2230:22): [True: 0, False: 0]
  ------------------
 2231|      0|                goto error;
 2232|     20|        }
 2233|     20|    }
 2234|       |
 2235|     20|    self = (PyOSErrorObject *) type->tp_alloc(type, 0);
 2236|     20|    if (!self)
  ------------------
  |  Branch (2236:9): [True: 0, False: 20]
  ------------------
 2237|      0|        goto error;
 2238|       |
 2239|     20|    self->dict = NULL;
 2240|     20|    self->traceback = self->cause = self->context = NULL;
 2241|     20|    self->written = -1;
 2242|       |
 2243|     20|    if (!oserror_use_init(type)) {
  ------------------
  |  Branch (2243:9): [True: 20, False: 0]
  ------------------
 2244|     20|        if (oserror_init(self, &args, myerrno, strerror, filename, filename2
  ------------------
  |  Branch (2244:13): [True: 0, False: 20]
  ------------------
 2245|       |#ifdef MS_WINDOWS
 2246|       |                         , winerror
 2247|       |#endif
 2248|     20|            ))
 2249|      0|            goto error;
 2250|     20|    }
 2251|      0|    else {
 2252|      0|        self->args = PyTuple_New(0);
 2253|      0|        if (self->args == NULL)
  ------------------
  |  Branch (2253:13): [True: 0, False: 0]
  ------------------
 2254|      0|            goto error;
 2255|      0|    }
 2256|       |
 2257|     20|    Py_XDECREF(args);
  ------------------
  |  |  524|     20|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2258|     20|    return (PyObject *) self;
 2259|       |
 2260|      0|error:
 2261|      0|    Py_XDECREF(args);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2262|      0|    Py_XDECREF(self);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2263|       |    return NULL;
 2264|     20|}
exceptions.c:AttributeError_dealloc:
 2698|     64|{
 2699|     64|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|     64|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2700|     64|    (void)AttributeError_clear(self);
 2701|     64|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|     64|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2702|     64|}
exceptions.c:PyAttributeErrorObject_CAST:
 2653|    128|{
 2654|    128|    assert(PyObject_TypeCheck(self, (PyTypeObject *)PyExc_AttributeError));
  ------------------
  |  Branch (2654:5): [True: 128, False: 0]
  ------------------
 2655|    128|    return (PyAttributeErrorObject *)self;
 2656|    128|}
exceptions.c:AttributeError_clear:
 2689|     64|{
 2690|     64|    PyAttributeErrorObject *self = PyAttributeErrorObject_CAST(op);
 2691|     64|    Py_CLEAR(self->obj);
  ------------------
  |  |  484|     64|    do { \
  |  |  485|     64|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     64|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     64|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 42, False: 22]
  |  |  ------------------
  |  |  488|     42|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     42|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     42|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     42|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     42|        } \
  |  |  491|     64|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 64]
  |  |  ------------------
  ------------------
 2692|       |    Py_CLEAR(self->name);
  ------------------
  |  |  484|     64|    do { \
  |  |  485|     64|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     64|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     64|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 42, False: 22]
  |  |  ------------------
  |  |  488|     42|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     42|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     42|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     42|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     42|        } \
  |  |  491|     64|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 64]
  |  |  ------------------
  ------------------
 2693|     64|    return BaseException_clear(op);
 2694|     64|}
exceptions.c:AttributeError_init:
 2660|     64|{
 2661|     64|    static char *kwlist[] = {"name", "obj", NULL};
 2662|     64|    PyObject *name = NULL;
 2663|     64|    PyObject *obj = NULL;
 2664|       |
 2665|     64|    if (BaseException_init(op, args, NULL) == -1) {
  ------------------
  |  Branch (2665:9): [True: 0, False: 64]
  ------------------
 2666|      0|        return -1;
 2667|      0|    }
 2668|       |
 2669|     64|    PyObject *empty_tuple = PyTuple_New(0);
 2670|     64|    if (!empty_tuple) {
  ------------------
  |  Branch (2670:9): [True: 0, False: 64]
  ------------------
 2671|      0|        return -1;
 2672|      0|    }
 2673|     64|    if (!PyArg_ParseTupleAndKeywords(empty_tuple, kwds, "|$OO:AttributeError", kwlist,
  ------------------
  |  Branch (2673:9): [True: 0, False: 64]
  ------------------
 2674|     64|                                     &name, &obj)) {
 2675|      0|        Py_DECREF(empty_tuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2676|      0|        return -1;
 2677|      0|    }
 2678|     64|    Py_DECREF(empty_tuple);
  ------------------
  |  |  430|     64|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2679|       |
 2680|     64|    PyAttributeErrorObject *self = PyAttributeErrorObject_CAST(op);
 2681|     64|    Py_XSETREF(self->name, Py_XNewRef(name));
  ------------------
  |  |  374|     64|    do { \
  |  |  375|     64|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     64|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     64|        *_tmp_dst_ptr = (src); \
  |  |  378|     64|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     64|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     64|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 64]
  |  |  ------------------
  ------------------
 2682|     64|    Py_XSETREF(self->obj, Py_XNewRef(obj));
  ------------------
  |  |  374|     64|    do { \
  |  |  375|     64|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     64|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     64|        *_tmp_dst_ptr = (src); \
  |  |  378|     64|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     64|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     64|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 64]
  |  |  ------------------
  ------------------
 2683|       |
 2684|     64|    return 0;
 2685|     64|}
exceptions.c:get_memory_error:
 4108|     32|{
 4109|     32|    PyBaseExceptionObject *self = NULL;
 4110|     32|    struct _Py_exc_state *state = get_exc_state();
 4111|       |
 4112|     32|    MEMERRORS_LOCK(state);
  ------------------
  |  | 4102|     32|# define MEMERRORS_LOCK(state) ((void)0)
  ------------------
 4113|     32|    if (state->memerrors_freelist != NULL) {
  ------------------
  |  Branch (4113:9): [True: 0, False: 32]
  ------------------
 4114|       |        /* Fetch MemoryError from freelist and initialize it */
 4115|      0|        self = state->memerrors_freelist;
 4116|      0|        state->memerrors_freelist = (PyBaseExceptionObject *) self->dict;
 4117|      0|        state->memerrors_numfree--;
 4118|      0|        self->dict = NULL;
 4119|      0|        self->args = (PyObject *)&_Py_SINGLETON(tuple_empty);
  ------------------
  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  ------------------
  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  ------------------
  ------------------
 4120|      0|        _Py_NewReference((PyObject *)self);
 4121|      0|        _PyObject_GC_TRACK(self);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4122|      0|    }
 4123|     32|    MEMERRORS_UNLOCK(state);
  ------------------
  |  | 4103|     32|# define MEMERRORS_UNLOCK(state) ((void)0)
  ------------------
 4124|       |
 4125|     32|    if (self != NULL) {
  ------------------
  |  Branch (4125:9): [True: 0, False: 32]
  ------------------
 4126|      0|        return (PyObject *)self;
 4127|      0|    }
 4128|       |
 4129|     32|    if (!allow_allocation) {
  ------------------
  |  Branch (4129:9): [True: 0, False: 32]
  ------------------
 4130|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
 4131|      0|        return Py_NewRef(
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4132|      0|            &_Py_INTERP_SINGLETON(interp, last_resort_memory_error));
 4133|      0|    }
 4134|     32|    return BaseException_new((PyTypeObject *)PyExc_MemoryError, args, kwds);
 4135|     32|}
exceptions.c:MemoryError_dealloc:
 4166|     32|{
 4167|     32|    PyBaseExceptionObject *self = PyBaseExceptionObject_CAST(op);
 4168|     32|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|     32|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4169|       |
 4170|     32|    (void)BaseException_clear(op);
 4171|       |
 4172|       |    /* If this is a subclass of MemoryError, we don't need to
 4173|       |     * do anything in the free-list*/
 4174|     32|    if (!Py_IS_TYPE(self, (PyTypeObject *) PyExc_MemoryError)) {
  ------------------
  |  |  215|     32|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4174:9): [True: 0, False: 32]
  ------------------
 4175|      0|        Py_TYPE(self)->tp_free(op);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4176|      0|        return;
 4177|      0|    }
 4178|       |
 4179|     32|    struct _Py_exc_state *state = get_exc_state();
 4180|     32|    MEMERRORS_LOCK(state);
  ------------------
  |  | 4102|     32|# define MEMERRORS_LOCK(state) ((void)0)
  ------------------
 4181|     32|    if (state->memerrors_numfree < MEMERRORS_SAVE) {
  ------------------
  |  | 4096|     32|#define MEMERRORS_SAVE 16
  ------------------
  |  Branch (4181:9): [True: 32, False: 0]
  ------------------
 4182|     32|        self->dict = (PyObject *) state->memerrors_freelist;
 4183|     32|        state->memerrors_freelist = self;
 4184|     32|        state->memerrors_numfree++;
 4185|     32|        MEMERRORS_UNLOCK(state);
  ------------------
  |  | 4103|     32|# define MEMERRORS_UNLOCK(state) ((void)0)
  ------------------
 4186|     32|        return;
 4187|     32|    }
 4188|      0|    MEMERRORS_UNLOCK(state);
  ------------------
  |  | 4103|      0|# define MEMERRORS_UNLOCK(state) ((void)0)
  ------------------
 4189|       |
 4190|      0|    Py_TYPE(self)->tp_free((PyObject *)self);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4191|      0|}
exceptions.c:BaseException_clear:
  126|  3.91k|{
  127|  3.91k|    PyBaseExceptionObject *self = PyBaseExceptionObject_CAST(op);
  128|  3.91k|    Py_CLEAR(self->dict);
  ------------------
  |  |  484|  3.91k|    do { \
  |  |  485|  3.91k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.91k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.91k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 3.91k]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|  3.91k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.91k]
  |  |  ------------------
  ------------------
  129|  3.91k|    Py_CLEAR(self->args);
  ------------------
  |  |  484|  3.91k|    do { \
  |  |  485|  3.91k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.91k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.91k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 3.91k, False: 0]
  |  |  ------------------
  |  |  488|  3.91k|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|  3.91k|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|  3.91k|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|  3.91k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  3.91k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  3.91k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|  3.91k|        } \
  |  |  491|  3.91k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.91k]
  |  |  ------------------
  ------------------
  130|  3.91k|    Py_CLEAR(self->notes);
  ------------------
  |  |  484|  3.91k|    do { \
  |  |  485|  3.91k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.91k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.91k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 3.91k]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|  3.91k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.91k]
  |  |  ------------------
  ------------------
  131|  3.91k|    Py_CLEAR(self->traceback);
  ------------------
  |  |  484|  3.91k|    do { \
  |  |  485|  3.91k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.91k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.91k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 180, False: 3.73k]
  |  |  ------------------
  |  |  488|    180|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|    180|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|    180|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|    180|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|    180|        } \
  |  |  491|  3.91k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.91k]
  |  |  ------------------
  ------------------
  132|  3.91k|    Py_CLEAR(self->cause);
  ------------------
  |  |  484|  3.91k|    do { \
  |  |  485|  3.91k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.91k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.91k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 3.91k]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|  3.91k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.91k]
  |  |  ------------------
  ------------------
  133|       |    Py_CLEAR(self->context);
  ------------------
  |  |  484|  3.91k|    do { \
  |  |  485|  3.91k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.91k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.91k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.91k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 18, False: 3.89k]
  |  |  ------------------
  |  |  488|     18|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     18|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     18|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     18|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     18|        } \
  |  |  491|  3.91k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.91k]
  |  |  ------------------
  ------------------
  134|  3.91k|    return 0;
  135|  3.91k|}
exceptions.c:BaseException_init:
   81|     78|{
   82|     78|    PyBaseExceptionObject *self = PyBaseExceptionObject_CAST(op);
   83|     78|    if (!_PyArg_NoKeywords(Py_TYPE(self)->tp_name, kwds))
  ------------------
  |  |   25|     78|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 78, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   84|      0|        return -1;
   85|       |
   86|     78|    Py_XSETREF(self->args, Py_NewRef(args));
  ------------------
  |  |  374|     78|    do { \
  |  |  375|     78|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     78|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     78|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     78|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     78|        *_tmp_dst_ptr = (src); \
  |  |  378|     78|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     78|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     78|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 78]
  |  |  ------------------
  ------------------
   87|     78|    return 0;
   88|     78|}
exceptions.c:MemoryError_new:
 4139|     32|{
 4140|       |    /* If this is a subclass of MemoryError, don't use the freelist
 4141|       |     * and just return a fresh object */
 4142|     32|    if (type != (PyTypeObject *) PyExc_MemoryError) {
  ------------------
  |  Branch (4142:9): [True: 0, False: 32]
  ------------------
 4143|      0|        return BaseException_new(type, args, kwds);
 4144|      0|    }
 4145|     32|    return get_memory_error(1, args, kwds);
 4146|     32|}
exceptions.c:BaseException_new:
   53|    110|{
   54|    110|    PyBaseExceptionObject *self;
   55|       |
   56|    110|    self = (PyBaseExceptionObject *)type->tp_alloc(type, 0);
   57|    110|    if (!self)
  ------------------
  |  Branch (57:9): [True: 0, False: 110]
  ------------------
   58|      0|        return NULL;
   59|       |    /* the dict is created on the fly in PyObject_GenericSetAttr */
   60|    110|    self->dict = NULL;
   61|    110|    self->notes = NULL;
   62|    110|    self->traceback = self->cause = self->context = NULL;
   63|    110|    self->suppress_context = 0;
   64|       |
   65|    110|    if (args) {
  ------------------
  |  Branch (65:9): [True: 78, False: 32]
  ------------------
   66|     78|        self->args = Py_NewRef(args);
  ------------------
  |  |  550|     78|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   67|     78|        return (PyObject *)self;
   68|     78|    }
   69|       |
   70|     32|    self->args = PyTuple_New(0);
   71|     32|    if (!self->args) {
  ------------------
  |  Branch (71:9): [True: 0, False: 32]
  ------------------
   72|      0|        Py_DECREF(self);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   73|      0|        return NULL;
   74|      0|    }
   75|       |
   76|     32|    return (PyObject *)self;
   77|     32|}
exceptions.c:BaseException_vectorcall:
   94|  3.78k|{
   95|  3.78k|    PyTypeObject *type = _PyType_CAST(type_obj);
  ------------------
  |  |  770|  3.78k|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  3.78k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (95:26): [True: 3.78k, False: 0]
  ------------------
   96|  3.78k|    if (!_PyArg_NoKwnames(type->tp_name, kwnames)) {
  ------------------
  |  |   15|  3.78k|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 3.78k, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   97|      0|        return NULL;
   98|      0|    }
   99|       |
  100|  3.78k|    PyBaseExceptionObject *self;
  101|  3.78k|    self = (PyBaseExceptionObject *)type->tp_alloc(type, 0);
  102|  3.78k|    if (!self) {
  ------------------
  |  Branch (102:9): [True: 0, False: 3.78k]
  ------------------
  103|      0|        return NULL;
  104|      0|    }
  105|       |
  106|       |    // The dict is created on the fly in PyObject_GenericSetAttr()
  107|  3.78k|    self->dict = NULL;
  108|  3.78k|    self->notes = NULL;
  109|  3.78k|    self->traceback = NULL;
  110|  3.78k|    self->cause = NULL;
  111|  3.78k|    self->context = NULL;
  112|  3.78k|    self->suppress_context = 0;
  113|       |
  114|  3.78k|    self->args = PyTuple_FromArray(args, PyVectorcall_NARGS(nargsf));
  ------------------
  |  |   37|  3.78k|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  115|  3.78k|    if (!self->args) {
  ------------------
  |  Branch (115:9): [True: 0, False: 3.78k]
  ------------------
  116|      0|        Py_DECREF(self);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  117|      0|        return NULL;
  118|      0|    }
  119|       |
  120|  3.78k|    return (PyObject *)self;
  121|  3.78k|}
exceptions.c:preallocate_memerrors:
 4195|      2|{
 4196|       |    /* We create enough MemoryErrors and then decref them, which will fill
 4197|       |       up the freelist. */
 4198|      2|    int i;
 4199|       |
 4200|      2|    PyObject *errors[MEMERRORS_SAVE];
 4201|     34|    for (i = 0; i < MEMERRORS_SAVE; i++) {
  ------------------
  |  | 4096|     34|#define MEMERRORS_SAVE 16
  ------------------
  |  Branch (4201:17): [True: 32, False: 2]
  ------------------
 4202|     32|        errors[i] = MemoryError_new((PyTypeObject *) PyExc_MemoryError,
 4203|     32|                                    NULL, NULL);
 4204|     32|        if (!errors[i]) {
  ------------------
  |  Branch (4204:13): [True: 0, False: 32]
  ------------------
 4205|      0|            return -1;
 4206|      0|        }
 4207|     32|    }
 4208|     34|    for (i = 0; i < MEMERRORS_SAVE; i++) {
  ------------------
  |  | 4096|     34|#define MEMERRORS_SAVE 16
  ------------------
  |  Branch (4208:17): [True: 32, False: 2]
  ------------------
 4209|     32|        Py_DECREF(errors[i]);
  ------------------
  |  |  430|     32|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4210|     32|    }
 4211|      2|    return 0;
 4212|      2|}
exceptions.c:create_exception_group_class:
 1763|      2|create_exception_group_class(void) {
 1764|      2|    struct _Py_exc_state *state = get_exc_state();
 1765|       |
 1766|      2|    PyObject *bases = _PyTuple_FromPair(
 1767|      2|        PyExc_BaseExceptionGroup, PyExc_Exception);
 1768|      2|    if (bases == NULL) {
  ------------------
  |  Branch (1768:9): [True: 0, False: 2]
  ------------------
 1769|      0|        return NULL;
 1770|      0|    }
 1771|       |
 1772|      2|    assert(!state->PyExc_ExceptionGroup);
  ------------------
  |  Branch (1772:5): [True: 2, False: 0]
  ------------------
 1773|      2|    state->PyExc_ExceptionGroup = PyErr_NewException(
 1774|      2|        "builtins.ExceptionGroup", bases, NULL);
 1775|       |
 1776|      2|    Py_DECREF(bases);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1777|      2|    return state->PyExc_ExceptionGroup;
 1778|      2|}

PyFile_NewStdPrinter:
  291|      2|{
  292|      2|    PyStdPrinter_Object *self;
  293|       |
  294|      2|    if (fd != fileno(stdout) && fd != fileno(stderr)) {
  ------------------
  |  Branch (294:9): [True: 2, False: 0]
  |  Branch (294:33): [True: 0, False: 2]
  ------------------
  295|       |        /* not enough infrastructure for PyErr_BadInternalCall() */
  296|      0|        return NULL;
  297|      0|    }
  298|       |
  299|      2|    self = PyObject_New(PyStdPrinter_Object,
  ------------------
  |  |  130|      2|#define PyObject_New(type, typeobj) ((type *)_PyObject_New(typeobj))
  ------------------
  300|      2|                        &PyStdPrinter_Type);
  301|      2|    if (self != NULL) {
  ------------------
  |  Branch (301:9): [True: 2, False: 0]
  ------------------
  302|      2|        self->fd = fd;
  303|      2|    }
  304|      2|    return (PyObject*)self;
  305|      2|}

PyFloat_GetInfo:
   84|      2|{
   85|      2|    PyObject* floatinfo;
   86|      2|    int pos = 0;
   87|       |
   88|      2|    floatinfo = PyStructSequence_New(&FloatInfoType);
   89|      2|    if (floatinfo == NULL) {
  ------------------
  |  Branch (89:9): [True: 0, False: 2]
  ------------------
   90|      0|        return NULL;
   91|      0|    }
   92|       |
   93|      2|#define SetFlag(CALL) \
   94|      2|    do {                                                    \
   95|      2|        PyObject *flag = (CALL);                            \
   96|      2|        if (flag == NULL) {                                 \
   97|      2|            Py_CLEAR(floatinfo);                            \
   98|      2|            return NULL;                                    \
   99|      2|        }                                                   \
  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  101|      2|    } while (0)
  102|       |
  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  104|      2|#define SetDblFlag(FLAG) SetFlag(PyFloat_FromDouble((FLAG)))
  105|       |
  106|      2|    SetDblFlag(DBL_MAX);
  ------------------
  |  |  104|      2|#define SetDblFlag(FLAG) SetFlag(PyFloat_FromDouble((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  107|      2|    SetIntFlag(DBL_MAX_EXP);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  108|      2|    SetIntFlag(DBL_MAX_10_EXP);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  109|      2|    SetDblFlag(DBL_MIN);
  ------------------
  |  |  104|      2|#define SetDblFlag(FLAG) SetFlag(PyFloat_FromDouble((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  110|      2|    SetIntFlag(DBL_MIN_EXP);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  111|      2|    SetIntFlag(DBL_MIN_10_EXP);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  112|      2|    SetIntFlag(DBL_DIG);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  113|      2|    SetIntFlag(DBL_MANT_DIG);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  114|      2|    SetDblFlag(DBL_EPSILON);
  ------------------
  |  |  104|      2|#define SetDblFlag(FLAG) SetFlag(PyFloat_FromDouble((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  115|      2|    SetIntFlag(FLT_RADIX);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  116|      2|    SetIntFlag(FLT_ROUNDS);
  ------------------
  |  |  103|      2|#define SetIntFlag(FLAG) SetFlag(PyLong_FromLong((FLAG)))
  |  |  ------------------
  |  |  |  |   94|      2|    do {                                                    \
  |  |  |  |   95|      2|        PyObject *flag = (CALL);                            \
  |  |  |  |   96|      2|        if (flag == NULL) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (96:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   97|      0|            Py_CLEAR(floatinfo);                            \
  |  |  |  |  ------------------
  |  |  |  |  |  |  484|      0|    do { \
  |  |  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  490|      0|        } \
  |  |  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|      0|            return NULL;                                    \
  |  |  |  |   99|      0|        }                                                   \
  |  |  |  |  100|      2|        PyStructSequence_SET_ITEM(floatinfo, pos++, flag);  \
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  |  |  ------------------
  |  |  |  |  101|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (101:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  117|      2|#undef SetIntFlag
  118|      2|#undef SetDblFlag
  119|      2|#undef SetFlag
  120|       |
  121|      2|    return floatinfo;
  122|      2|}
PyFloat_FromDouble:
  126|  1.76k|{
  127|  1.76k|    PyFloatObject *op = _Py_FREELIST_POP(PyFloatObject, floats);
  ------------------
  |  |   43|  1.76k|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|  1.76k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  128|  1.76k|    if (op == NULL) {
  ------------------
  |  Branch (128:9): [True: 20, False: 1.74k]
  ------------------
  129|     20|        op = PyObject_Malloc(sizeof(PyFloatObject));
  130|     20|        if (!op) {
  ------------------
  |  Branch (130:13): [True: 0, False: 20]
  ------------------
  131|      0|            return PyErr_NoMemory();
  132|      0|        }
  133|     20|        _PyObject_Init((PyObject*)op, &PyFloat_Type);
  134|     20|    }
  135|  1.76k|    op->ob_fval = fval;
  136|  1.76k|    return (PyObject *) op;
  137|  1.76k|}
PyFloat_FromString:
  181|  3.60k|{
  182|  3.60k|    const char *s;
  183|  3.60k|    PyObject *s_buffer = NULL;
  184|  3.60k|    Py_ssize_t len;
  185|  3.60k|    Py_buffer view = {NULL, NULL};
  186|  3.60k|    PyObject *result = NULL;
  187|       |
  188|  3.60k|    if (PyUnicode_Check(v)) {
  ------------------
  |  |  103|  3.60k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  3.60k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 3.60k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  189|      0|        s_buffer = _PyUnicode_TransformDecimalAndSpaceToASCII(v);
  190|      0|        if (s_buffer == NULL)
  ------------------
  |  Branch (190:13): [True: 0, False: 0]
  ------------------
  191|      0|            return NULL;
  192|      0|        assert(PyUnicode_IS_ASCII(s_buffer));
  ------------------
  |  Branch (192:9): [True: 0, False: 0]
  ------------------
  193|       |        /* Simply get a pointer to existing ASCII characters. */
  194|      0|        s = PyUnicode_AsUTF8AndSize(s_buffer, &len);
  195|      0|        assert(s != NULL);
  ------------------
  |  Branch (195:9): [True: 0, False: 0]
  ------------------
  196|      0|    }
  197|  3.60k|    else if (PyBytes_Check(v)) {
  ------------------
  |  |   28|  3.60k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  3.60k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 3.60k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  198|  3.60k|        s = PyBytes_AS_STRING(v);
  ------------------
  |  |   27|  3.60k|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  199|  3.60k|        len = PyBytes_GET_SIZE(v);
  ------------------
  |  |   33|  3.60k|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|  3.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  200|  3.60k|    }
  201|      0|    else if (PyByteArray_Check(v)) {
  ------------------
  |  |   24|      0|#define PyByteArray_Check(self) PyObject_TypeCheck((self), &PyByteArray_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  202|      0|        s = PyByteArray_AS_STRING(v);
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  203|      0|        len = PyByteArray_GET_SIZE(v);
  ------------------
  |  |   38|      0|#define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  204|      0|    }
  205|      0|    else if (PyObject_GetBuffer(v, &view, PyBUF_SIMPLE) == 0) {
  ------------------
  |  |  108|      0|#define PyBUF_SIMPLE 0
  ------------------
  |  Branch (205:14): [True: 0, False: 0]
  ------------------
  206|      0|        s = (const char *)view.buf;
  207|      0|        len = view.len;
  208|       |        /* Copy to NUL-terminated buffer. */
  209|      0|        s_buffer = PyBytes_FromStringAndSize(s, len);
  210|      0|        if (s_buffer == NULL) {
  ------------------
  |  Branch (210:13): [True: 0, False: 0]
  ------------------
  211|      0|            PyBuffer_Release(&view);
  212|      0|            return NULL;
  213|      0|        }
  214|      0|        s = PyBytes_AS_STRING(s_buffer);
  ------------------
  |  |   27|      0|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  215|      0|    }
  216|      0|    else {
  217|      0|        PyErr_Format(PyExc_TypeError,
  218|      0|            "float() argument must be a string or a real number, not '%.200s'",
  219|      0|            Py_TYPE(v)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  220|      0|        return NULL;
  221|      0|    }
  222|  3.60k|    result = _Py_string_to_number_with_underscores(s, len, "float", v, v,
  223|  3.60k|                                                   float_from_string_inner);
  224|  3.60k|    PyBuffer_Release(&view);
  225|  3.60k|    Py_XDECREF(s_buffer);
  ------------------
  |  |  524|  3.60k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  226|  3.60k|    return result;
  227|  3.60k|}
_PyFloat_ExactDealloc:
  231|  1.75k|{
  232|  1.75k|    assert(PyFloat_CheckExact(obj));
  ------------------
  |  Branch (232:5): [True: 1.75k, False: 0]
  ------------------
  233|  1.75k|    _Py_FREELIST_FREE(floats, obj, PyObject_Free);
  ------------------
  |  |   35|  1.75k|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|  1.75k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.75k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|  1.75k|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   18|  1.75k|#  define Py_floats_MAXFREELIST 100
  |  |  ------------------
  ------------------
  234|  1.75k|}
_PyFloat_InitTypes:
 1856|      2|{
 1857|       |    /* Init float info */
 1858|      2|    if (_PyStructSequence_InitBuiltin(interp, &FloatInfoType,
  ------------------
  |  Branch (1858:9): [True: 0, False: 2]
  ------------------
 1859|      2|                                      &floatinfo_desc) < 0)
 1860|      0|    {
 1861|      0|        return _PyStatus_ERR("can't init float info type");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1862|      0|    }
 1863|       |
 1864|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1865|      2|}
floatobject.c:float_from_string_inner:
  141|  3.54k|{
  142|  3.54k|    double x;
  143|  3.54k|    const char *end;
  144|  3.54k|    const char *last = s + len;
  145|       |    /* strip leading whitespace */
  146|  4.22k|    while (s < last && Py_ISSPACE(*s)) {
  ------------------
  |  |   27|  4.19k|#define Py_ISSPACE(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE)
  |  |  ------------------
  |  |  |  |  138|  4.19k|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISSPACE(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE)
  |  |  ------------------
  |  |  |  |   13|  4.19k|#define PY_CTF_SPACE  0x08
  |  |  ------------------
  |  |  |  Branch (27:24): [True: 680, False: 3.51k]
  |  |  ------------------
  ------------------
  |  Branch (146:12): [True: 4.19k, False: 30]
  ------------------
  147|    680|        s++;
  148|    680|    }
  149|  3.54k|    if (s == last) {
  ------------------
  |  Branch (149:9): [True: 30, False: 3.51k]
  ------------------
  150|     30|        PyErr_Format(PyExc_ValueError,
  151|     30|                     "could not convert string to float: "
  152|     30|                     "%R", obj);
  153|     30|        return NULL;
  154|     30|    }
  155|       |
  156|       |    /* strip trailing whitespace */
  157|  3.91k|    while (s < last - 1 && Py_ISSPACE(last[-1])) {
  ------------------
  |  |   27|  3.81k|#define Py_ISSPACE(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE)
  |  |  ------------------
  |  |  |  |  138|  3.81k|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISSPACE(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE)
  |  |  ------------------
  |  |  |  |   13|  3.81k|#define PY_CTF_SPACE  0x08
  |  |  ------------------
  |  |  |  Branch (27:24): [True: 397, False: 3.41k]
  |  |  ------------------
  ------------------
  |  Branch (157:12): [True: 3.81k, False: 95]
  ------------------
  158|    397|        last--;
  159|    397|    }
  160|       |
  161|       |    /* We don't care about overflow or underflow.  If the platform
  162|       |     * supports them, infinities and signed zeroes (on underflow) are
  163|       |     * fine. */
  164|  3.51k|    x = PyOS_string_to_double(s, (char **)&end, NULL);
  165|  3.51k|    if (end != last) {
  ------------------
  |  Branch (165:9): [True: 1.83k, False: 1.67k]
  ------------------
  166|  1.83k|        PyErr_Format(PyExc_ValueError,
  167|  1.83k|                     "could not convert string to float: "
  168|  1.83k|                     "%R", obj);
  169|  1.83k|        return NULL;
  170|  1.83k|    }
  171|  1.67k|    else if (x == -1.0 && PyErr_Occurred()) {
  ------------------
  |  Branch (171:14): [True: 1, False: 1.67k]
  |  Branch (171:27): [True: 0, False: 1]
  ------------------
  172|      0|        return NULL;
  173|      0|    }
  174|  1.67k|    else {
  175|  1.67k|        return PyFloat_FromDouble(x);
  176|  1.67k|    }
  177|  3.51k|}
floatobject.c:float_dealloc:
  238|  1.75k|{
  239|  1.75k|    assert(PyFloat_Check(op));
  ------------------
  |  Branch (239:5): [True: 1.75k, False: 0]
  ------------------
  240|  1.75k|    if (PyFloat_CheckExact(op))
  ------------------
  |  |   17|  1.75k|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  215|  1.75k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.75k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.75k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 1.75k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  241|  1.75k|        _PyFloat_ExactDealloc(op);
  242|      0|    else
  243|      0|        Py_TYPE(op)->tp_free(op);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  244|  1.75k|}
floatobject.c:float_richcompare:
  373|     12|{
  374|     12|    double i, j;
  375|     12|    int r = 0;
  376|       |
  377|     12|    assert(PyFloat_Check(v));
  ------------------
  |  Branch (377:5): [True: 12, False: 0]
  ------------------
  378|     12|    i = PyFloat_AS_DOUBLE(v);
  ------------------
  |  |   18|     12|#define PyFloat_AS_DOUBLE(op) PyFloat_AS_DOUBLE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  379|       |
  380|       |    /* Switch on the type of w.  Set i and j to doubles to be compared,
  381|       |     * and op to the richcomp to use.
  382|       |     */
  383|     12|    if (PyFloat_Check(w))
  ------------------
  |  |   16|     12|#define PyFloat_Check(op) PyObject_TypeCheck(op, &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  378|     12|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 6, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  384|      6|        j = PyFloat_AS_DOUBLE(w);
  ------------------
  |  |   18|      6|#define PyFloat_AS_DOUBLE(op) PyFloat_AS_DOUBLE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  385|       |
  386|      6|    else if (!isfinite(i)) {
  ------------------
  |  Branch (386:14): [True: 0, False: 6]
  ------------------
  387|      0|        if (PyLong_Check(w))
  ------------------
  |  |   13|      0|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  388|       |            /* If i is an infinity, its magnitude exceeds any
  389|       |             * finite integer, so it doesn't matter which int we
  390|       |             * compare i with.  If i is a NaN, similarly.
  391|       |             */
  392|      0|            j = 0.0;
  393|      0|        else
  394|      0|            goto Unimplemented;
  395|      0|    }
  396|       |
  397|      6|    else if (PyLong_Check(w)) {
  ------------------
  |  |   13|      6|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  398|      6|        int vsign = i == 0.0 ? 0 : i < 0.0 ? -1 : 1;
  ------------------
  |  Branch (398:21): [True: 0, False: 6]
  |  Branch (398:36): [True: 0, False: 6]
  ------------------
  399|      6|        int wsign;
  400|      6|        int exponent;
  401|       |
  402|      6|        (void)PyLong_GetSign(w, &wsign);
  403|      6|        if (vsign != wsign) {
  ------------------
  |  Branch (403:13): [True: 6, False: 0]
  ------------------
  404|       |            /* Magnitudes are irrelevant -- the signs alone
  405|       |             * determine the outcome.
  406|       |             */
  407|      6|            i = (double)vsign;
  408|      6|            j = (double)wsign;
  409|      6|            goto Compare;
  410|      6|        }
  411|       |        /* The signs are the same. */
  412|       |        /* Convert w to a double if it fits.  In particular, 0 fits. */
  413|      0|        int64_t nbits64 = _PyLong_NumBits(w);
  414|      0|        assert(nbits64 >= 0);
  ------------------
  |  Branch (414:9): [True: 0, False: 0]
  ------------------
  415|      0|        assert(!PyErr_Occurred());
  ------------------
  |  Branch (415:9): [True: 0, False: 0]
  ------------------
  416|      0|        if (nbits64 > DBL_MAX_EXP) {
  ------------------
  |  Branch (416:13): [True: 0, False: 0]
  ------------------
  417|       |            /* This Python integer is larger than any finite C double.
  418|       |             * Replace with little doubles
  419|       |             * that give the same outcome -- w is so large that
  420|       |             * its magnitude must exceed the magnitude of any
  421|       |             * finite float.
  422|       |             */
  423|      0|            i = (double)vsign;
  424|      0|            assert(wsign != 0);
  ------------------
  |  Branch (424:13): [True: 0, False: 0]
  ------------------
  425|      0|            j = wsign * 2.0;
  426|      0|            goto Compare;
  427|      0|        }
  428|      0|        int nbits = (int)nbits64;
  429|      0|        if (nbits <= 48) {
  ------------------
  |  Branch (429:13): [True: 0, False: 0]
  ------------------
  430|      0|            j = PyLong_AsDouble(w);
  431|       |            /* It's impossible that <= 48 bits overflowed. */
  432|      0|            assert(j != -1.0 || ! PyErr_Occurred());
  ------------------
  |  Branch (432:13): [True: 0, False: 0]
  |  Branch (432:13): [True: 0, False: 0]
  ------------------
  433|      0|            goto Compare;
  434|      0|        }
  435|      0|        assert(wsign != 0); /* else nbits was 0 */
  ------------------
  |  Branch (435:9): [True: 0, False: 0]
  ------------------
  436|      0|        assert(vsign != 0); /* if vsign were 0, then since wsign is
  ------------------
  |  Branch (436:9): [True: 0, False: 0]
  ------------------
  437|       |                             * not 0, we would have taken the
  438|       |                             * vsign != wsign branch at the start */
  439|      0|        (void) frexp(i, &exponent);
  440|       |        /* exponent is the # of bits in v before the radix point;
  441|       |         * we know that nbits (the # of bits in w) > 48 at this point
  442|       |         */
  443|      0|        if (exponent < nbits) {
  ------------------
  |  Branch (443:13): [True: 0, False: 0]
  ------------------
  444|      0|            j = i;
  445|      0|            i = 0.0;
  446|      0|            goto Compare;
  447|      0|        }
  448|      0|        if (exponent > nbits) {
  ------------------
  |  Branch (448:13): [True: 0, False: 0]
  ------------------
  449|      0|            j = 0.0;
  450|      0|            goto Compare;
  451|      0|        }
  452|       |        /* v and w have the same number of bits before the radix
  453|       |         * point.  Construct an int from the integer part of v and
  454|       |         * update op if necessary, so comparing two ints has the same outcome.
  455|       |         */
  456|      0|        {
  457|      0|            double fracpart;
  458|      0|            double intpart;
  459|      0|            PyObject *result = NULL;
  460|      0|            PyObject *vv = NULL;
  461|       |
  462|      0|            fracpart = modf(i, &intpart);
  463|      0|            if (fracpart != 0.0) {
  ------------------
  |  Branch (463:17): [True: 0, False: 0]
  ------------------
  464|      0|                switch (op) {
  ------------------
  |  Branch (464:25): [True: 0, False: 0]
  ------------------
  465|       |                    /* Non-integer float never equals to an int. */
  466|      0|                    case Py_EQ:
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  |  Branch (466:21): [True: 0, False: 0]
  ------------------
  467|      0|                        Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  468|      0|                    case Py_NE:
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (468:21): [True: 0, False: 0]
  ------------------
  469|      0|                        Py_RETURN_TRUE;
  ------------------
  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  470|       |                    /* For non-integer float, v <= w <=> v < w.
  471|       |                     * If v > 0: trunc(v) < v < trunc(v) + 1
  472|       |                     *   v < w => trunc(v) < w
  473|       |                     *   trunc(v) < w => trunc(v) + 1 <= w => v < w
  474|       |                     * If v < 0: trunc(v) - 1 < v < trunc(v)
  475|       |                     *   v < w => trunc(v) - 1 < w => trunc(v) <= w
  476|       |                     *   trunc(v) <= w => v < w
  477|       |                     */
  478|      0|                    case Py_LT:
  ------------------
  |  |  652|      0|#define Py_LT 0
  ------------------
  |  Branch (478:21): [True: 0, False: 0]
  ------------------
  479|      0|                    case Py_LE:
  ------------------
  |  |  653|      0|#define Py_LE 1
  ------------------
  |  Branch (479:21): [True: 0, False: 0]
  ------------------
  480|      0|                        op = vsign > 0 ? Py_LT : Py_LE;
  ------------------
  |  |  652|      0|#define Py_LT 0
  ------------------
                                      op = vsign > 0 ? Py_LT : Py_LE;
  ------------------
  |  |  653|      0|#define Py_LE 1
  ------------------
  |  Branch (480:30): [True: 0, False: 0]
  ------------------
  481|      0|                        break;
  482|       |                    /* The same as above, but with opposite directions. */
  483|      0|                    case Py_GT:
  ------------------
  |  |  656|      0|#define Py_GT 4
  ------------------
  |  Branch (483:21): [True: 0, False: 0]
  ------------------
  484|      0|                    case Py_GE:
  ------------------
  |  |  657|      0|#define Py_GE 5
  ------------------
  |  Branch (484:21): [True: 0, False: 0]
  ------------------
  485|      0|                        op = vsign > 0 ? Py_GE : Py_GT;
  ------------------
  |  |  657|      0|#define Py_GE 5
  ------------------
                                      op = vsign > 0 ? Py_GE : Py_GT;
  ------------------
  |  |  656|      0|#define Py_GT 4
  ------------------
  |  Branch (485:30): [True: 0, False: 0]
  ------------------
  486|      0|                        break;
  487|      0|                }
  488|      0|            }
  489|       |
  490|      0|            vv = PyLong_FromDouble(intpart);
  491|      0|            if (vv == NULL)
  ------------------
  |  Branch (491:17): [True: 0, False: 0]
  ------------------
  492|      0|                goto Error;
  493|       |
  494|      0|            r = PyObject_RichCompareBool(vv, w, op);
  495|      0|            if (r < 0)
  ------------------
  |  Branch (495:17): [True: 0, False: 0]
  ------------------
  496|      0|                goto Error;
  497|      0|            result = PyBool_FromLong(r);
  498|      0|         Error:
  499|      0|            Py_XDECREF(vv);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  500|      0|            return result;
  501|      0|        }
  502|      0|    } /* else if (PyLong_Check(w)) */
  503|       |
  504|      0|    else        /* w isn't float or int */
  505|      0|        goto Unimplemented;
  506|       |
  507|     12| Compare:
  508|     12|    switch (op) {
  ------------------
  |  Branch (508:13): [True: 12, False: 0]
  ------------------
  509|      0|    case Py_EQ:
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  |  Branch (509:5): [True: 0, False: 12]
  ------------------
  510|      0|        r = i == j;
  511|      0|        break;
  512|     12|    case Py_NE:
  ------------------
  |  |  655|     12|#define Py_NE 3
  ------------------
  |  Branch (512:5): [True: 12, False: 0]
  ------------------
  513|     12|        r = i != j;
  514|     12|        break;
  515|      0|    case Py_LE:
  ------------------
  |  |  653|      0|#define Py_LE 1
  ------------------
  |  Branch (515:5): [True: 0, False: 12]
  ------------------
  516|      0|        r = i <= j;
  517|      0|        break;
  518|      0|    case Py_GE:
  ------------------
  |  |  657|      0|#define Py_GE 5
  ------------------
  |  Branch (518:5): [True: 0, False: 12]
  ------------------
  519|      0|        r = i >= j;
  520|      0|        break;
  521|      0|    case Py_LT:
  ------------------
  |  |  652|      0|#define Py_LT 0
  ------------------
  |  Branch (521:5): [True: 0, False: 12]
  ------------------
  522|      0|        r = i < j;
  523|      0|        break;
  524|      0|    case Py_GT:
  ------------------
  |  |  656|      0|#define Py_GT 4
  ------------------
  |  Branch (524:5): [True: 0, False: 12]
  ------------------
  525|      0|        r = i > j;
  526|      0|        break;
  527|     12|    }
  528|     12|    return PyBool_FromLong(r);
  529|       |
  530|      0| Unimplemented:
  531|      0|    Py_RETURN_NOTIMPLEMENTED;
  ------------------
  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  ------------------
  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  ------------------
  ------------------
  532|     12|}

_PyFrameLocalsProxy_New:
  948|      2|{
  949|      2|    PyObject* args = PyTuple_Pack(1, frame);
  950|      2|    if (args == NULL) {
  ------------------
  |  Branch (950:9): [True: 0, False: 2]
  ------------------
  951|      0|        return NULL;
  952|      0|    }
  953|       |
  954|      2|    PyObject* proxy = framelocalsproxy_new(&PyFrameLocalsProxy_Type, args, NULL);
  955|      2|    Py_DECREF(args);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  956|      2|    return proxy;
  957|      2|}
_PyFrame_New_NoTrack:
 2115|    186|{
 2116|    186|    CALL_STAT_INC(frame_objects_created);
  ------------------
  |  |   76|    186|#define CALL_STAT_INC(name) ((void)0)
  ------------------
 2117|    186|    int slots = code->co_nlocalsplus + code->co_stacksize;
 2118|    186|    PyFrameObject *f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, slots);
  ------------------
  |  |  183|    186|    _Py_CAST(type*, _PyObject_GC_NewVar((typeobj), (n)))
  |  |  ------------------
  |  |  |  |   37|    186|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 2119|    186|    if (f == NULL) {
  ------------------
  |  Branch (2119:9): [True: 0, False: 186]
  ------------------
 2120|      0|        return NULL;
 2121|      0|    }
 2122|    186|    f->f_back = NULL;
 2123|    186|    f->f_trace = NULL;
 2124|    186|    f->f_trace_lines = 1;
 2125|    186|    f->f_trace_opcodes = 0;
 2126|    186|    f->f_lineno = 0;
 2127|    186|    f->f_extra_locals = NULL;
 2128|    186|    f->f_locals_cache = NULL;
 2129|       |    f->f_overwritten_fast_locals = NULL;
 2130|    186|    return f;
 2131|    186|}
_PyFrame_HasHiddenLocals:
 2253|      8|{
 2254|       |    /*
 2255|       |     * This function returns if there are hidden locals introduced by PEP 709,
 2256|       |     * which are the isolated fast locals for inline comprehensions
 2257|       |     */
 2258|      8|    PyCodeObject* co = _PyFrame_GetCode(frame);
 2259|       |
 2260|      8|    for (int i = 0; i < co->co_nlocalsplus; i++) {
  ------------------
  |  Branch (2260:21): [True: 0, False: 8]
  ------------------
 2261|      0|        _PyLocals_Kind kind = _PyLocals_GetKind(co->co_localspluskinds, i);
 2262|       |
 2263|      0|        if (kind & CO_FAST_HIDDEN) {
  ------------------
  |  |  196|      0|#define CO_FAST_HIDDEN  (0x10)
  ------------------
  |  Branch (2263:13): [True: 0, False: 0]
  ------------------
 2264|      0|            if (framelocalsproxy_hasval(frame, co, i)) {
  ------------------
  |  Branch (2264:17): [True: 0, False: 0]
  ------------------
 2265|      0|                return true;
 2266|      0|            }
 2267|      0|        }
 2268|      0|    }
 2269|       |
 2270|      8|    return false;
 2271|      8|}
_PyFrame_GetLocals:
 2276|      8|{
 2277|       |    // We should try to avoid creating the FrameObject if possible.
 2278|       |    // So we check if the frame is a module or class level scope
 2279|      8|    PyCodeObject *co = _PyFrame_GetCode(frame);
 2280|       |
 2281|      8|    if (!(co->co_flags & CO_OPTIMIZED) && !_PyFrame_HasHiddenLocals(frame)) {
  ------------------
  |  |  118|      8|#define CO_OPTIMIZED    0x0001
  ------------------
  |  Branch (2281:9): [True: 8, False: 0]
  |  Branch (2281:43): [True: 8, False: 0]
  ------------------
 2282|      8|        if (frame->f_locals == NULL) {
  ------------------
  |  Branch (2282:13): [True: 0, False: 8]
  ------------------
 2283|       |            // We found cases when f_locals is NULL for non-optimized code.
 2284|       |            // We fill the f_locals with an empty dict to avoid crash until
 2285|       |            // we find the root cause.
 2286|      0|            frame->f_locals = PyDict_New();
 2287|      0|            if (frame->f_locals == NULL) {
  ------------------
  |  Branch (2287:17): [True: 0, False: 0]
  ------------------
 2288|      0|                return NULL;
 2289|      0|            }
 2290|      0|        }
 2291|      8|        return Py_NewRef(frame->f_locals);
  ------------------
  |  |  550|      8|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2292|      8|    }
 2293|       |
 2294|      0|    PyFrameObject* f = _PyFrame_GetFrameObject(frame);
 2295|      0|    if (f == NULL) {
  ------------------
  |  Branch (2295:9): [True: 0, False: 0]
  ------------------
 2296|      0|        return NULL;
 2297|      0|    }
 2298|       |
 2299|      0|    return _PyFrameLocalsProxy_New(f);
 2300|      0|}
PyFrame_GetCode:
 2385|      8|{
 2386|      8|    assert(frame != NULL);
  ------------------
  |  Branch (2386:5): [True: 8, False: 0]
  ------------------
 2387|      8|    PyObject *code;
 2388|      8|    Py_BEGIN_CRITICAL_SECTION(frame);
  ------------------
  |  |   51|      8|    {
  ------------------
 2389|      8|    assert(!_PyFrame_IsIncomplete(frame->f_frame));
  ------------------
  |  Branch (2389:5): [True: 8, False: 0]
  ------------------
 2390|      8|    code = Py_NewRef(_PyFrame_GetCode(frame->f_frame));
  ------------------
  |  |  550|      8|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2391|      8|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      8|    }
  ------------------
 2392|      8|    return (PyCodeObject *)code;
 2393|      8|}
frameobject.c:framelocalsproxy_dealloc:
  413|      2|{
  414|      2|    PyFrameLocalsProxyObject *proxy = PyFrameLocalsProxyObject_CAST(self);
  ------------------
  |  |   29|      2|    (                                                               \
  |  |   30|      2|        assert(PyObject_TypeCheck((op), &PyFrameLocalsProxy_Type)), \
  |  |   31|      2|        (PyFrameLocalsProxyObject *)(op)                            \
  |  |   32|      2|    )
  ------------------
  |  Branch (414:39): [True: 2, False: 0]
  ------------------
  415|      0|    PyObject_GC_UnTrack(self);
  416|      2|    Py_CLEAR(proxy->frame);
  ------------------
  |  |  484|      2|    do { \
  |  |  485|      2|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      2|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      2|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  488|      2|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      2|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      2|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      2|        } \
  |  |  491|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  417|      2|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  418|      2|}
frameobject.c:framelocalsproxy_new:
  422|      2|{
  423|      2|    if (PyTuple_GET_SIZE(args) != 1) {
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (423:9): [True: 0, False: 2]
  ------------------
  424|      0|        PyErr_Format(PyExc_TypeError,
  425|      0|                     "FrameLocalsProxy expected 1 argument, got %zd",
  426|      0|                     PyTuple_GET_SIZE(args));
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  427|      0|        return NULL;
  428|      0|    }
  429|      2|    PyObject *item = PyTuple_GET_ITEM(args, 0);
  ------------------
  |  |   29|      2|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (429:22): [True: 2, False: 0]
  ------------------
  430|       |
  431|      2|    if (!PyFrame_Check(item)) {
  ------------------
  |  |    8|      2|#define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (431:9): [True: 0, False: 2]
  ------------------
  432|      0|        PyErr_Format(PyExc_TypeError, "expect frame, not %T", item);
  433|      0|        return NULL;
  434|      0|    }
  435|      2|    PyFrameObject *frame = (PyFrameObject*)item;
  436|       |
  437|      2|    if (kwds != NULL && PyDict_Size(kwds) != 0) {
  ------------------
  |  Branch (437:9): [True: 0, False: 2]
  |  Branch (437:25): [True: 0, False: 0]
  ------------------
  438|      0|        PyErr_SetString(PyExc_TypeError,
  439|      0|                        "FrameLocalsProxy takes no keyword arguments");
  440|      0|        return 0;
  441|      0|    }
  442|       |
  443|      2|    PyFrameLocalsProxyObject *self = (PyFrameLocalsProxyObject *)type->tp_alloc(type, 0);
  444|      2|    if (self == NULL) {
  ------------------
  |  Branch (444:9): [True: 0, False: 2]
  ------------------
  445|      0|        return NULL;
  446|      0|    }
  447|       |
  448|      2|    ((PyFrameLocalsProxyObject*)self)->frame = (PyFrameObject*)Py_NewRef(frame);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  449|       |
  450|      2|    return (PyObject *)self;
  451|      2|}
frameobject.c:frame_dealloc:
 1928|    186|{
 1929|       |    /* It is the responsibility of the owning generator/coroutine
 1930|       |     * to have cleared the generator pointer */
 1931|    186|    PyFrameObject *f = PyFrameObject_CAST(op);
  ------------------
  |  |   26|    186|    (assert(PyObject_TypeCheck((op), &PyFrame_Type)), (PyFrameObject *)(op))
  ------------------
  |  Branch (1931:24): [True: 186, False: 0]
  ------------------
 1932|    186|    if (_PyObject_GC_IS_TRACKED(f)) {
  ------------------
  |  |   81|    186|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|    186|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 28, False: 158]
  |  |  ------------------
  ------------------
 1933|     28|        _PyObject_GC_UNTRACK(f);
  ------------------
  |  |  515|     28|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1934|     28|    }
 1935|       |
 1936|       |    /* GH-106092: If f->f_frame was on the stack and we reached the maximum
 1937|       |     * nesting depth for deallocations, the trashcan may have delayed this
 1938|       |     * deallocation until after f->f_frame is freed. Avoid dereferencing
 1939|       |     * f->f_frame unless we know it still points to valid memory. */
 1940|    186|    _PyInterpreterFrame *frame = (_PyInterpreterFrame *)f->_f_frame_data;
 1941|       |
 1942|       |    /* Kill all local variables including specials, if we own them */
 1943|    186|    if (f->f_frame == frame && frame->owner == FRAME_OWNED_BY_FRAME_OBJECT) {
  ------------------
  |  Branch (1943:9): [True: 28, False: 158]
  |  Branch (1943:32): [True: 28, False: 0]
  ------------------
 1944|     28|        PyStackRef_CLEAR(frame->f_executable);
  ------------------
  |  |  711|     28|    do { \
  |  |  712|     28|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|     28|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|     28|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|     28|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 1945|     28|        PyStackRef_CLEAR(frame->f_funcobj);
  ------------------
  |  |  711|     28|    do { \
  |  |  712|     28|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|     28|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|     28|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|     28|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 1946|     28|        Py_CLEAR(frame->f_locals);
  ------------------
  |  |  484|     28|    do { \
  |  |  485|     28|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     28|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     28|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     28|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     28|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 28]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 1947|     28|        _PyStackRef *locals = _PyFrame_GetLocalsArray(frame);
 1948|     28|        _PyStackRef *sp = frame->stackpointer;
 1949|    164|        while (sp > locals) {
  ------------------
  |  Branch (1949:16): [True: 136, False: 28]
  ------------------
 1950|    136|            sp--;
 1951|    136|            PyStackRef_CLEAR(*sp);
  ------------------
  |  |  711|    136|    do { \
  |  |  712|    136|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|    136|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|    136|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|    136|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|    136|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 136]
  |  |  ------------------
  ------------------
 1952|    136|        }
 1953|     28|    }
 1954|    186|    Py_CLEAR(f->f_back);
  ------------------
  |  |  484|    186|    do { \
  |  |  485|    186|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    186|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    186|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 28, False: 158]
  |  |  ------------------
  |  |  488|     28|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     28|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     28|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     28|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     28|        } \
  |  |  491|    186|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 186]
  |  |  ------------------
  ------------------
 1955|    186|    Py_CLEAR(f->f_trace);
  ------------------
  |  |  484|    186|    do { \
  |  |  485|    186|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    186|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    186|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 186]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    186|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 186]
  |  |  ------------------
  ------------------
 1956|    186|    Py_CLEAR(f->f_extra_locals);
  ------------------
  |  |  484|    186|    do { \
  |  |  485|    186|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    186|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    186|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 186]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    186|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 186]
  |  |  ------------------
  ------------------
 1957|    186|    Py_CLEAR(f->f_locals_cache);
  ------------------
  |  |  484|    186|    do { \
  |  |  485|    186|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    186|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    186|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 186]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    186|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 186]
  |  |  ------------------
  ------------------
 1958|       |    Py_CLEAR(f->f_overwritten_fast_locals);
  ------------------
  |  |  484|    186|    do { \
  |  |  485|    186|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    186|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    186|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    186|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 186]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    186|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 186]
  |  |  ------------------
  ------------------
 1959|    186|    PyObject_GC_Del(f);
 1960|    186|}
frameobject.c:frame_locals_get_impl:
  975|      2|{
  976|      2|    assert(!_PyFrame_IsIncomplete(self->f_frame));
  ------------------
  |  Branch (976:5): [True: 2, False: 0]
  ------------------
  977|       |
  978|      2|    PyCodeObject *co = _PyFrame_GetCode(self->f_frame);
  979|       |
  980|      2|    if (!(co->co_flags & CO_OPTIMIZED) && !_PyFrame_HasHiddenLocals(self->f_frame)) {
  ------------------
  |  |  118|      2|#define CO_OPTIMIZED    0x0001
  ------------------
  |  Branch (980:9): [True: 0, False: 2]
  |  Branch (980:43): [True: 0, False: 0]
  ------------------
  981|      0|        if (self->f_frame->f_locals == NULL) {
  ------------------
  |  Branch (981:13): [True: 0, False: 0]
  ------------------
  982|       |            // We found cases when f_locals is NULL for non-optimized code.
  983|       |            // We fill the f_locals with an empty dict to avoid crash until
  984|       |            // we find the root cause.
  985|      0|            self->f_frame->f_locals = PyDict_New();
  986|      0|            if (self->f_frame->f_locals == NULL) {
  ------------------
  |  Branch (986:17): [True: 0, False: 0]
  ------------------
  987|      0|                return NULL;
  988|      0|            }
  989|      0|        }
  990|      0|        return Py_NewRef(self->f_frame->f_locals);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  991|      0|    }
  992|       |
  993|      2|    return _PyFrameLocalsProxy_New(self);
  994|      2|}

_PyFunction_FromConstructor:
  117|     32|{
  118|     32|    PyObject *module;
  119|     32|    if (PyDict_GetItemRef(constr->fc_globals, &_Py_ID(__name__), &module) < 0) {
  ------------------
  |  |  917|     32|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     32|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     32|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (119:9): [True: 0, False: 32]
  ------------------
  120|      0|        return NULL;
  121|      0|    }
  122|       |
  123|     32|    PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type);
  ------------------
  |  |  181|     32|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  124|     32|    if (op == NULL) {
  ------------------
  |  Branch (124:9): [True: 0, False: 32]
  ------------------
  125|      0|        Py_XDECREF(module);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  126|      0|        return NULL;
  127|      0|    }
  128|     32|    _Py_INCREF_DICT(constr->fc_globals);
  ------------------
  |  |  384|     32|#  define _Py_INCREF_DICT Py_INCREF
  |  |  ------------------
  |  |  |  |  310|     32|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  129|     32|    op->func_globals = constr->fc_globals;
  130|     32|    _Py_INCREF_BUILTINS(constr->fc_builtins);
  ------------------
  |  |  386|     32|#  define _Py_INCREF_BUILTINS Py_INCREF
  |  |  ------------------
  |  |  |  |  310|     32|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  131|     32|    op->func_builtins = constr->fc_builtins;
  132|     32|    op->func_name = Py_NewRef(constr->fc_name);
  ------------------
  |  |  550|     32|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  133|     32|    op->func_qualname = Py_NewRef(constr->fc_qualname);
  ------------------
  |  |  550|     32|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  134|     32|    _Py_INCREF_CODE((PyCodeObject *)constr->fc_code);
  ------------------
  |  |  317|     32|#  define _Py_INCREF_CODE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|     32|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  135|     32|    op->func_code = constr->fc_code;
  136|     32|    op->func_defaults = Py_XNewRef(constr->fc_defaults);
  ------------------
  |  |  551|     32|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  137|     32|    op->func_kwdefaults = Py_XNewRef(constr->fc_kwdefaults);
  ------------------
  |  |  551|     32|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  138|     32|    op->func_closure = Py_XNewRef(constr->fc_closure);
  ------------------
  |  |  551|     32|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  139|     32|    op->func_doc = Py_NewRef(Py_None);
  ------------------
  |  |  550|     32|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  140|     32|    op->func_dict = NULL;
  141|     32|    op->func_weakreflist = NULL;
  142|     32|    op->func_module = module;
  143|     32|    op->func_annotations = NULL;
  144|     32|    op->func_annotate = NULL;
  145|     32|    op->func_typeparams = NULL;
  146|     32|    op->vectorcall = _PyFunction_Vectorcall;
  147|     32|    op->func_version = FUNC_VERSION_UNSET;
  ------------------
  |  |   18|     32|#define FUNC_VERSION_UNSET 0
  ------------------
  148|       |    // NOTE: functions created via FrameConstructor do not use deferred
  149|       |    // reference counting because they are typically not part of cycles
  150|       |    // nor accessed by multiple threads.
  151|     32|    _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|     32|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  152|       |    handle_func_event(PyFunction_EVENT_CREATE, op, NULL);
  153|     32|    return op;
  154|     32|}
PyFunction_NewWithQualName:
  158|  1.47k|{
  159|  1.47k|    assert(globals != NULL);
  ------------------
  |  Branch (159:5): [True: 1.47k, False: 0]
  ------------------
  160|  1.47k|    assert(PyAnyDict_Check(globals));
  ------------------
  |  Branch (160:5): [True: 1.47k, False: 0]
  |  Branch (160:5): [True: 0, False: 0]
  ------------------
  161|  1.47k|    _Py_INCREF_DICT(globals);
  ------------------
  |  |  384|  1.47k|#  define _Py_INCREF_DICT Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  1.47k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.47k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.47k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  162|       |
  163|  1.47k|    PyCodeObject *code_obj = (PyCodeObject *)code;
  164|  1.47k|    _Py_INCREF_CODE(code_obj);
  ------------------
  |  |  317|  1.47k|#  define _Py_INCREF_CODE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  1.47k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.47k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.47k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  165|       |
  166|  1.47k|    assert(code_obj->co_name != NULL);
  ------------------
  |  Branch (166:5): [True: 1.47k, False: 0]
  ------------------
  167|  1.47k|    PyObject *name = Py_NewRef(code_obj->co_name);
  ------------------
  |  |  550|  1.47k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.47k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.47k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  168|       |
  169|  1.47k|    if (!qualname) {
  ------------------
  |  Branch (169:9): [True: 1.47k, False: 0]
  ------------------
  170|  1.47k|        qualname = code_obj->co_qualname;
  171|  1.47k|    }
  172|  1.47k|    assert(qualname != NULL);
  ------------------
  |  Branch (172:5): [True: 1.47k, False: 0]
  ------------------
  173|  1.47k|    Py_INCREF(qualname);
  ------------------
  |  |  310|  1.47k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.47k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.47k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  174|       |
  175|  1.47k|    PyObject *consts = code_obj->co_consts;
  176|  1.47k|    assert(PyTuple_Check(consts));
  ------------------
  |  Branch (176:5): [True: 1.47k, False: 0]
  ------------------
  177|  1.47k|    PyObject *doc;
  178|  1.47k|    if (code_obj->co_flags & CO_HAS_DOCSTRING) {
  ------------------
  |  |  150|  1.47k|#define CO_HAS_DOCSTRING 0x4000000
  ------------------
  |  Branch (178:9): [True: 608, False: 864]
  ------------------
  179|    608|        assert(PyTuple_Size(consts) >= 1);
  ------------------
  |  Branch (179:9): [True: 608, False: 0]
  ------------------
  180|    608|        doc = PyTuple_GetItem(consts, 0);
  181|    608|        if (!PyUnicode_Check(doc)) {
  ------------------
  |  |  103|    608|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    608|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (181:13): [True: 0, False: 608]
  ------------------
  182|      0|            doc = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  183|      0|        }
  184|    608|    }
  185|    864|    else {
  186|    864|        doc = Py_None;
  ------------------
  |  |  616|    864|#  define Py_None (&_Py_NoneStruct)
  ------------------
  187|    864|    }
  188|  1.47k|    Py_INCREF(doc);
  ------------------
  |  |  310|  1.47k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.47k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.47k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  189|       |
  190|       |    // __module__: Use globals['__name__'] if it exists, or NULL.
  191|  1.47k|    PyObject *module;
  192|  1.47k|    PyObject *builtins = NULL;
  193|  1.47k|    if (PyDict_GetItemRef(globals, &_Py_ID(__name__), &module) < 0) {
  ------------------
  |  |  917|  1.47k|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|  1.47k|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|  1.47k|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (193:9): [True: 0, False: 1.47k]
  ------------------
  194|      0|        goto error;
  195|      0|    }
  196|       |
  197|  1.47k|    builtins = _PyDict_LoadBuiltinsFromGlobals(globals);
  198|  1.47k|    if (builtins == NULL) {
  ------------------
  |  Branch (198:9): [True: 0, False: 1.47k]
  ------------------
  199|      0|        goto error;
  200|      0|    }
  201|       |
  202|  1.47k|    PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type);
  ------------------
  |  |  181|  1.47k|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|  1.47k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  203|  1.47k|    if (op == NULL) {
  ------------------
  |  Branch (203:9): [True: 0, False: 1.47k]
  ------------------
  204|      0|        goto error;
  205|      0|    }
  206|       |    /* Note: No failures from this point on, since func_dealloc() does not
  207|       |       expect a partially-created object. */
  208|       |
  209|  1.47k|    op->func_globals = globals;
  210|  1.47k|    op->func_builtins = builtins;
  211|  1.47k|    op->func_name = name;
  212|  1.47k|    op->func_qualname = qualname;
  213|  1.47k|    op->func_code = (PyObject*)code_obj;
  214|  1.47k|    op->func_defaults = NULL;    // No default positional arguments
  215|  1.47k|    op->func_kwdefaults = NULL;  // No default keyword arguments
  216|  1.47k|    op->func_closure = NULL;
  217|  1.47k|    op->func_doc = doc;
  218|  1.47k|    op->func_dict = NULL;
  219|  1.47k|    op->func_weakreflist = NULL;
  220|  1.47k|    op->func_module = module;
  221|  1.47k|    op->func_annotations = NULL;
  222|  1.47k|    op->func_annotate = NULL;
  223|  1.47k|    op->func_typeparams = NULL;
  224|  1.47k|    op->vectorcall = _PyFunction_Vectorcall;
  225|  1.47k|    op->func_version = FUNC_VERSION_UNSET;
  ------------------
  |  |   18|  1.47k|#define FUNC_VERSION_UNSET 0
  ------------------
  226|  1.47k|    if (((code_obj->co_flags & CO_NESTED) == 0) ||
  ------------------
  |  |  122|  1.47k|#define CO_NESTED       0x0010
  ------------------
  |  Branch (226:9): [True: 1.34k, False: 126]
  ------------------
  227|  1.35k|        (code_obj->co_flags & CO_METHOD)) {
  ------------------
  |  |  153|    126|#define CO_METHOD  0x8000000
  ------------------
  |  Branch (227:9): [True: 6, False: 120]
  ------------------
  228|       |        // Use deferred reference counting for top-level functions, but not
  229|       |        // nested functions because they are more likely to capture variables,
  230|       |        // which makes prompt deallocation more important.
  231|       |        //
  232|       |        // Nested methods (functions defined in class scope) are also deferred,
  233|       |        // since they will likely be cleaned up by GC anyway.
  234|  1.35k|        _PyObject_SetDeferredRefcount((PyObject *)op);
  235|  1.35k|    }
  236|  1.47k|    _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|  1.47k|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.47k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.47k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  237|  1.47k|    handle_func_event(PyFunction_EVENT_CREATE, op, NULL);
  238|  1.47k|    return (PyObject *)op;
  239|       |
  240|      0|error:
  241|      0|    Py_DECREF(globals);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  242|      0|    Py_DECREF(code_obj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  243|      0|    Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  244|      0|    Py_DECREF(qualname);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  245|      0|    Py_DECREF(doc);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  246|      0|    Py_XDECREF(module);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  247|      0|    Py_XDECREF(builtins);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  248|       |    return NULL;
  249|  1.47k|}
_PyFunction_SetVersion:
  320|  1.47k|{
  321|  1.47k|    assert(func->func_version == FUNC_VERSION_UNSET);
  ------------------
  |  Branch (321:5): [True: 1.47k, False: 0]
  ------------------
  322|  1.47k|    assert(version >= FUNC_VERSION_FIRST_VALID);
  ------------------
  |  Branch (322:5): [True: 1.47k, False: 0]
  ------------------
  323|       |    // This should only be called from MAKE_FUNCTION. No code is specialized
  324|       |    // based on the version, so we do not need to stop the world to set it.
  325|  1.47k|    func->func_version = version;
  326|  1.47k|#ifndef Py_GIL_DISABLED
  327|  1.47k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  328|  1.47k|    struct _func_version_cache_item *slot = get_cache_item(interp, version);
  329|  1.47k|    slot->func = func;
  330|  1.47k|    slot->code = func->func_code;
  331|  1.47k|#endif
  332|  1.47k|}
_PyFunction_ClearCodeByVersion:
  368|    276|{
  369|    276|#ifndef Py_GIL_DISABLED
  370|    276|    PyInterpreterState *interp = _PyInterpreterState_GET();
  371|    276|    struct _func_version_cache_item *slot = get_cache_item(interp, version);
  372|    276|    if (slot->code) {
  ------------------
  |  Branch (372:9): [True: 212, False: 64]
  ------------------
  373|    212|        assert(PyCode_Check(slot->code));
  ------------------
  |  Branch (373:9): [True: 212, False: 0]
  ------------------
  374|    212|        PyCodeObject *code = (PyCodeObject *)slot->code;
  375|    212|        if (code->co_version == version) {
  ------------------
  |  Branch (375:13): [True: 212, False: 0]
  ------------------
  376|    212|            slot->code = NULL;
  377|       |            slot->func = NULL;
  378|    212|        }
  379|    212|    }
  380|    276|#endif
  381|    276|}
_PyFunction_GetVersionForCurrentState:
  385|    148|{
  386|    148|    return func->func_version;
  387|    148|}
PyFunction_New:
  391|  1.47k|{
  392|       |    return PyFunction_NewWithQualName(code, globals, NULL);
  393|  1.47k|}
PyStaticMethod_New:
 1903|     16|{
 1904|     16|    staticmethod *sm = (staticmethod *)
 1905|     16|        PyType_GenericAlloc(&PyStaticMethod_Type, 0);
 1906|     16|    if (sm == NULL) {
  ------------------
  |  Branch (1906:9): [True: 0, False: 16]
  ------------------
 1907|      0|        return NULL;
 1908|      0|    }
 1909|     16|    _PyObject_SetDeferredRefcount((PyObject *)sm);
 1910|     16|    if (sm_set_callable(sm, callable) < 0) {
  ------------------
  |  Branch (1910:9): [True: 0, False: 16]
  ------------------
 1911|      0|        Py_DECREF(sm);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1912|      0|        return NULL;
 1913|      0|    }
 1914|     16|    return (PyObject *)sm;
 1915|     16|}
_PyStaticMethod_GetFunc:
 1926|    338|{
 1927|    338|    staticmethod *sm = _PyStaticMethod_CAST(self);
  ------------------
  |  | 1676|    338|    (assert(PyObject_TypeCheck((cm), &PyStaticMethod_Type)), \
  |  | 1677|    338|     _Py_CAST(staticmethod*, cm))
  |  |  ------------------
  |  |  |  |   37|    338|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1927:24): [True: 338, False: 0]
  ------------------
 1928|      0|    return sm->sm_callable;
 1929|    338|}
funcobject.c:handle_func_event:
   55|  1.85k|{
   56|  1.85k|    assert(Py_REFCNT(func) > 0);
  ------------------
  |  Branch (56:5): [True: 1.85k, False: 0]
  ------------------
   57|  1.85k|    PyInterpreterState *interp = _PyInterpreterState_GET();
   58|  1.85k|    assert(interp->_initialized);
  ------------------
  |  Branch (58:5): [True: 1.85k, False: 0]
  ------------------
   59|  1.85k|    if (interp->active_func_watchers) {
  ------------------
  |  Branch (59:9): [True: 0, False: 1.85k]
  ------------------
   60|      0|        notify_func_watchers(interp, event, func, new_value);
   61|      0|    }
   62|  1.85k|    switch (event) {
   63|      0|        case PyFunction_EVENT_MODIFY_CODE:
  ------------------
  |  Branch (63:9): [True: 0, False: 1.85k]
  ------------------
   64|      0|        case PyFunction_EVENT_MODIFY_DEFAULTS:
  ------------------
  |  Branch (64:9): [True: 0, False: 1.85k]
  ------------------
   65|      0|        case PyFunction_EVENT_MODIFY_KWDEFAULTS:
  ------------------
  |  Branch (65:9): [True: 0, False: 1.85k]
  ------------------
   66|     18|        case PyFunction_EVENT_MODIFY_QUALNAME:
  ------------------
  |  Branch (66:9): [True: 18, False: 1.84k]
  ------------------
   67|       |#if _Py_TIER2
   68|       |            // Note: we only invalidate JIT code if a function version changes.
   69|       |            // Not when the function is deallocated.
   70|       |            // Function deallocation occurs frequently (think: lambdas),
   71|       |            // so we want to minimize dependency invalidation there.
   72|       |            _Py_Executors_InvalidateDependency(interp, func, 1);
   73|       |#endif
   74|     18|            RARE_EVENT_INTERP_INC(interp, func_modification);
  ------------------
  |  |   98|     18|    do { \
  |  |   99|     18|        /* saturating add */ \
  |  |  100|     18|        uint8_t val = FT_ATOMIC_LOAD_UINT8_RELAXED(interp->rare_events.name); \
  |  |  ------------------
  |  |  |  |  157|     18|#define FT_ATOMIC_LOAD_UINT8_RELAXED(value) value
  |  |  ------------------
  |  |  101|     18|        if (val < UINT8_MAX) { \
  |  |  ------------------
  |  |  |  Branch (101:13): [True: 18, False: 0]
  |  |  ------------------
  |  |  102|     18|            FT_ATOMIC_STORE_UINT8(interp->rare_events.name, val + 1); \
  |  |  ------------------
  |  |  |  |  155|     18|#define FT_ATOMIC_STORE_UINT8(value, new_value) value = new_value
  |  |  ------------------
  |  |  103|     18|        } \
  |  |  104|     18|        RARE_EVENT_STAT_INC(name); \
  |  |  ------------------
  |  |  |  |   89|     18|#define RARE_EVENT_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  |  105|     18|    } while (0); \
  |  |  ------------------
  |  |  |  Branch (105:14): [Folded, False: 18]
  |  |  ------------------
  ------------------
   75|     18|            break;
   76|  1.84k|        default:
  ------------------
  |  Branch (76:9): [True: 1.84k, False: 18]
  ------------------
   77|  1.84k|            break;
   78|  1.85k|    }
   79|  1.85k|}
funcobject.c:get_cache_item:
  312|  2.05k|{
  313|  2.05k|    return interp->func_state.func_version_cache +
  314|  2.05k|           (version % FUNC_VERSION_CACHE_SIZE);
  ------------------
  |  |  497|  2.05k|#define FUNC_VERSION_CACHE_SIZE (1<<12)  /* Must be a power of 2 */
  ------------------
  315|  2.05k|}
funcobject.c:func_clear_version:
  336|    336|{
  337|    336|    if (func->func_version < FUNC_VERSION_FIRST_VALID) {
  ------------------
  |  |   20|    336|#define FUNC_VERSION_FIRST_VALID 2
  ------------------
  |  Branch (337:9): [True: 32, False: 304]
  ------------------
  338|       |        // Version was never set or has already been cleared.
  339|     32|        return;
  340|     32|    }
  341|    304|#ifndef Py_GIL_DISABLED
  342|    304|    struct _func_version_cache_item *slot =
  343|    304|        get_cache_item(interp, func->func_version);
  344|    304|    if (slot->func == func) {
  ------------------
  |  Branch (344:9): [True: 286, False: 18]
  ------------------
  345|    286|        slot->func = NULL;
  346|       |        // Leave slot->code alone, there may be use for it.
  347|    286|    }
  348|    304|#endif
  349|    304|    func->func_version = FUNC_VERSION_CLEARED;
  ------------------
  |  |   19|    304|#define FUNC_VERSION_CLEARED 1
  ------------------
  350|    304|}
funcobject.c:func_dealloc:
 1129|    336|{
 1130|    336|    PyFunctionObject *op = _PyFunction_CAST(self);
  ------------------
  |  |   86|    336|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1130:28): [True: 336, False: 0]
  ------------------
 1131|      0|    _PyObject_ResurrectStart(self);
 1132|    336|    handle_func_event(PyFunction_EVENT_DESTROY, op, NULL);
 1133|    336|    if (_PyObject_ResurrectEnd(self)) {
  ------------------
  |  Branch (1133:9): [True: 0, False: 336]
  ------------------
 1134|      0|        return;
 1135|      0|    }
 1136|    336|    _PyObject_GC_UNTRACK(op);
  ------------------
  |  |  515|    336|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1137|    336|    FT_CLEAR_WEAKREFS(self, op->func_weakreflist);
  ------------------
  |  |   47|    336|    do {                                            \
  |  |   48|    336|        assert(Py_REFCNT(obj) == 0);                \
  |  |   49|    336|        if (weakref_list != NULL) {                 \
  |  |  ------------------
  |  |  |  Branch (49:13): [True: 0, False: 336]
  |  |  ------------------
  |  |   50|      0|            PyObject_ClearWeakRefs(obj);            \
  |  |   51|      0|        }                                           \
  |  |   52|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (52:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
  |  Branch (1137:5): [True: 336, False: 0]
  ------------------
 1138|    336|    (void)func_clear((PyObject*)op);
 1139|       |    // These aren't cleared by func_clear().
 1140|    336|    _Py_DECREF_CODE((PyCodeObject *)op->func_code);
  ------------------
  |  |  318|    336|#  define _Py_DECREF_CODE Py_DECREF
  |  |  ------------------
  |  |  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1141|    336|    Py_DECREF(op->func_name);
  ------------------
  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1142|    336|    Py_DECREF(op->func_qualname);
  ------------------
  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1143|    336|    PyObject_GC_Del(op);
 1144|    336|}
funcobject.c:func_traverse:
 1156|    912|{
 1157|    912|    PyFunctionObject *f = _PyFunction_CAST(self);
  ------------------
  |  |   86|    912|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|    912|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1157:27): [True: 912, False: 0]
  ------------------
 1158|    912|    Py_VISIT(f->func_code);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 912, False: 0]
  |  |  ------------------
  |  |  196|    912|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    912|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    912|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    912|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 912]
  |  |  ------------------
  |  |  198|    912|                return vret;                                            \
  |  |  199|    912|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1159|    912|    Py_VISIT(f->func_globals);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 912, False: 0]
  |  |  ------------------
  |  |  196|    912|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    912|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    912|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    912|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 912]
  |  |  ------------------
  |  |  198|    912|                return vret;                                            \
  |  |  199|    912|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1160|    912|    Py_VISIT(f->func_builtins);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 912, False: 0]
  |  |  ------------------
  |  |  196|    912|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    912|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    912|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    912|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 912]
  |  |  ------------------
  |  |  198|    912|                return vret;                                            \
  |  |  199|    912|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1161|    912|    Py_VISIT(f->func_module);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 908, False: 4]
  |  |  ------------------
  |  |  196|    908|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    908|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    908|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    908|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 908]
  |  |  ------------------
  |  |  198|    908|                return vret;                                            \
  |  |  199|    908|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1162|    912|    Py_VISIT(f->func_defaults);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 112, False: 800]
  |  |  ------------------
  |  |  196|    112|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    112|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 112]
  |  |  ------------------
  |  |  198|    112|                return vret;                                            \
  |  |  199|    112|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1163|    912|    Py_VISIT(f->func_kwdefaults);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 40, False: 872]
  |  |  ------------------
  |  |  196|     40|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     40|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 40]
  |  |  ------------------
  |  |  198|     40|                return vret;                                            \
  |  |  199|     40|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1164|    912|    Py_VISIT(f->func_doc);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 912, False: 0]
  |  |  ------------------
  |  |  196|    912|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    912|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    912|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    912|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 912]
  |  |  ------------------
  |  |  198|    912|                return vret;                                            \
  |  |  199|    912|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1165|    912|    Py_VISIT(f->func_name);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 912, False: 0]
  |  |  ------------------
  |  |  196|    912|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    912|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    912|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    912|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 912]
  |  |  ------------------
  |  |  198|    912|                return vret;                                            \
  |  |  199|    912|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1166|    912|    Py_VISIT(f->func_dict);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 72, False: 840]
  |  |  ------------------
  |  |  196|     72|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     72|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 72]
  |  |  ------------------
  |  |  198|     72|                return vret;                                            \
  |  |  199|     72|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1167|    912|    Py_VISIT(f->func_closure);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 52, False: 860]
  |  |  ------------------
  |  |  196|     52|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     52|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 52]
  |  |  ------------------
  |  |  198|     52|                return vret;                                            \
  |  |  199|     52|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1168|    912|    Py_VISIT(f->func_annotations);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 912]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1169|    912|    Py_VISIT(f->func_annotate);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 912]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1170|    912|    Py_VISIT(f->func_typeparams);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 912]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1171|    912|    Py_VISIT(f->func_qualname);
  ------------------
  |  |  194|    912|    do {                                                                \
  |  |  195|    912|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 912, False: 0]
  |  |  ------------------
  |  |  196|    912|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    912|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    912|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    912|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 912]
  |  |  ------------------
  |  |  198|    912|                return vret;                                            \
  |  |  199|    912|        }                                                               \
  |  |  200|    912|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 912]
  |  |  ------------------
  ------------------
 1172|    912|    return 0;
 1173|    912|}
funcobject.c:func_clear:
 1095|    336|{
 1096|    336|    PyFunctionObject *op = _PyFunction_CAST(self);
  ------------------
  |  |   86|    336|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1096:28): [True: 336, False: 0]
  ------------------
 1097|      0|    func_clear_version(_PyInterpreterState_GET(), op);
 1098|    336|    PyObject *globals = op->func_globals;
 1099|    336|    op->func_globals = NULL;
 1100|    336|    if (globals != NULL) {
  ------------------
  |  Branch (1100:9): [True: 336, False: 0]
  ------------------
 1101|    336|        _Py_DECREF_DICT(globals);
  ------------------
  |  |  385|    336|#  define _Py_DECREF_DICT Py_DECREF
  |  |  ------------------
  |  |  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1102|    336|    }
 1103|    336|    PyObject *builtins = op->func_builtins;
 1104|    336|    op->func_builtins = NULL;
 1105|    336|    if (builtins != NULL) {
  ------------------
  |  Branch (1105:9): [True: 336, False: 0]
  ------------------
 1106|    336|        _Py_DECREF_BUILTINS(builtins);
  ------------------
  |  |  387|    336|#  define _Py_DECREF_BUILTINS Py_DECREF
  |  |  ------------------
  |  |  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1107|    336|    }
 1108|    336|    Py_CLEAR(op->func_module);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 324, False: 12]
  |  |  ------------------
  |  |  488|    324|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|    324|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|    324|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|    324|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    324|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    324|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|    324|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1109|    336|    Py_CLEAR(op->func_defaults);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 48, False: 288]
  |  |  ------------------
  |  |  488|     48|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     48|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     48|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     48|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     48|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1110|    336|    Py_CLEAR(op->func_kwdefaults);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 2, False: 334]
  |  |  ------------------
  |  |  488|      2|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      2|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      2|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      2|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1111|    336|    Py_CLEAR(op->func_doc);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 336, False: 0]
  |  |  ------------------
  |  |  488|    336|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|    336|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|    336|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|    336|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1112|    336|    Py_CLEAR(op->func_dict);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 336]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1113|    336|    Py_CLEAR(op->func_closure);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 30, False: 306]
  |  |  ------------------
  |  |  488|     30|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     30|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     30|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     30|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     30|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1114|    336|    Py_CLEAR(op->func_annotations);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 336]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1115|    336|    Py_CLEAR(op->func_annotate);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 336]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1116|    336|    Py_CLEAR(op->func_typeparams);
  ------------------
  |  |  484|    336|    do { \
  |  |  485|    336|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    336|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    336|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 336]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1117|       |    // Don't Py_CLEAR(op->func_code), since code is always required
 1118|       |    // to be non-NULL. Similarly, name and qualname shouldn't be NULL.
 1119|       |    // However, name and qualname could be str subclasses, so they
 1120|       |    // could have reference cycles. The solution is to replace them
 1121|       |    // with a genuinely immutable string.
 1122|    336|    Py_SETREF(op->func_name, &_Py_STR(empty));
  ------------------
  |  |  352|    336|    do { \
  |  |  353|    336|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|    336|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|    336|        *_tmp_dst_ptr = (src); \
  |  |  356|    336|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1123|    336|    Py_SETREF(op->func_qualname, &_Py_STR(empty));
  ------------------
  |  |  352|    336|    do { \
  |  |  353|    336|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|    336|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    336|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|    336|        *_tmp_dst_ptr = (src); \
  |  |  356|    336|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|    336|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    336|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    336|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|    336|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 336]
  |  |  ------------------
  ------------------
 1124|    336|    return 0;
 1125|    336|}
funcobject.c:func_get_code:
  635|      4|{
  636|      4|    PyFunctionObject *op = _PyFunction_CAST(self);
  ------------------
  |  |   86|      4|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (636:28): [True: 4, False: 0]
  ------------------
  637|      4|    if (PySys_Audit("object.__getattr__", "Os", op, "__code__") < 0) {
  ------------------
  |  Branch (637:9): [True: 0, False: 4]
  ------------------
  638|      0|        return NULL;
  639|      0|    }
  640|       |
  641|      4|    return Py_NewRef(op->func_code);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  642|      4|}
funcobject.c:func_get_name:
  695|    136|{
  696|    136|    PyFunctionObject *op = _PyFunction_CAST(self);
  ------------------
  |  |   86|    136|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (696:28): [True: 136, False: 0]
  ------------------
  697|    136|    return Py_NewRef(op->func_name);
  ------------------
  |  |  550|    136|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    136|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  698|    136|}
funcobject.c:func_set_name:
  702|     18|{
  703|     18|    PyFunctionObject *op = _PyFunction_CAST(self);
  ------------------
  |  |   86|     18|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (703:28): [True: 18, False: 0]
  ------------------
  704|       |    /* Not legal to del f.func_name or to set it to anything
  705|       |     * other than a string object. */
  706|     18|    if (value == NULL || !PyUnicode_Check(value)) {
  ------------------
  |  |  103|     18|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     18|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (706:9): [True: 0, False: 18]
  |  Branch (706:26): [True: 0, False: 18]
  ------------------
  707|      0|        PyErr_SetString(PyExc_TypeError,
  708|      0|                        "__name__ must be set to a string object");
  709|      0|        return -1;
  710|      0|    }
  711|     18|    Py_XSETREF(op->func_name, Py_NewRef(value));
  ------------------
  |  |  374|     18|    do { \
  |  |  375|     18|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     18|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     18|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     18|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     18|        *_tmp_dst_ptr = (src); \
  |  |  378|     18|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     18|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     18|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 18]
  |  |  ------------------
  ------------------
  712|     18|    return 0;
  713|     18|}
funcobject.c:func_get_qualname:
  717|    136|{
  718|    136|    PyFunctionObject *op = _PyFunction_CAST(self);
  ------------------
  |  |   86|    136|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (718:28): [True: 136, False: 0]
  ------------------
  719|    136|    return Py_NewRef(op->func_qualname);
  ------------------
  |  |  550|    136|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    136|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  720|    136|}
funcobject.c:func_set_qualname:
  724|     18|{
  725|     18|    PyFunctionObject *op = _PyFunction_CAST(self);
  ------------------
  |  |   86|     18|    (assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))
  |  |  ------------------
  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (725:28): [True: 18, False: 0]
  ------------------
  726|       |    /* Not legal to del f.__qualname__ or to set it to anything
  727|       |     * other than a string object. */
  728|     18|    if (value == NULL || !PyUnicode_Check(value)) {
  ------------------
  |  |  103|     18|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     18|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (728:9): [True: 0, False: 18]
  |  Branch (728:26): [True: 0, False: 18]
  ------------------
  729|      0|        PyErr_SetString(PyExc_TypeError,
  730|      0|                        "__qualname__ must be set to a string object");
  731|      0|        return -1;
  732|      0|    }
  733|     18|    handle_func_event(PyFunction_EVENT_MODIFY_QUALNAME, (PyFunctionObject *) op, value);
  734|     18|    Py_XSETREF(op->func_qualname, Py_NewRef(value));
  ------------------
  |  |  374|     18|    do { \
  |  |  375|     18|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     18|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     18|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     18|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     18|        *_tmp_dst_ptr = (src); \
  |  |  378|     18|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     18|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     18|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 18]
  |  |  ------------------
  ------------------
  735|     18|    return 0;
  736|     18|}
funcobject.c:func_descr_get:
 1178|    228|{
 1179|    228|    if (obj == Py_None || obj == NULL) {
  ------------------
  |  |  616|    456|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1179:9): [True: 0, False: 228]
  |  Branch (1179:27): [True: 92, False: 136]
  ------------------
 1180|     92|        return Py_NewRef(func);
  ------------------
  |  |  550|     92|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     92|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     92|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1181|     92|    }
 1182|    136|    return PyMethod_New(func, obj);
 1183|    228|}
funcobject.c:cm_traverse:
 1426|     68|{
 1427|     68|    classmethod *cm = _PyClassMethod_CAST(self);
  ------------------
  |  | 1411|     68|    (assert(PyObject_TypeCheck((cm), &PyClassMethod_Type)), \
  |  | 1412|     68|     _Py_CAST(classmethod*, cm))
  |  |  ------------------
  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1427:23): [True: 68, False: 0]
  ------------------
 1428|     68|    Py_VISIT(cm->cm_callable);
  ------------------
  |  |  194|     68|    do {                                                                \
  |  |  195|     68|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 68, False: 0]
  |  |  ------------------
  |  |  196|     68|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     68|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 68]
  |  |  ------------------
  |  |  198|     68|                return vret;                                            \
  |  |  199|     68|        }                                                               \
  |  |  200|     68|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 68]
  |  |  ------------------
  ------------------
 1429|     68|    Py_VISIT(cm->cm_dict);
  ------------------
  |  |  194|     68|    do {                                                                \
  |  |  195|     68|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 68, False: 0]
  |  |  ------------------
  |  |  196|     68|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     68|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 68]
  |  |  ------------------
  |  |  198|     68|                return vret;                                            \
  |  |  199|     68|        }                                                               \
  |  |  200|     68|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 68]
  |  |  ------------------
  ------------------
 1430|     68|    return 0;
 1431|     68|}
funcobject.c:cm_get___isabstractmethod__:
 1511|     52|{
 1512|     52|    classmethod *cm = _PyClassMethod_CAST(self);
  ------------------
  |  | 1411|     52|    (assert(PyObject_TypeCheck((cm), &PyClassMethod_Type)), \
  |  | 1412|     52|     _Py_CAST(classmethod*, cm))
  |  |  ------------------
  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1512:23): [True: 52, False: 0]
  ------------------
 1513|      0|    int res = _PyObject_IsAbstract(cm->cm_callable);
 1514|     52|    if (res == -1) {
  ------------------
  |  Branch (1514:9): [True: 0, False: 52]
  ------------------
 1515|      0|        return NULL;
 1516|      0|    }
 1517|     52|    else if (res) {
  ------------------
  |  Branch (1517:14): [True: 0, False: 52]
  ------------------
 1518|      0|        Py_RETURN_TRUE;
  ------------------
  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1519|      0|    }
 1520|     52|    Py_RETURN_FALSE;
  ------------------
  |  |   45|     52|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|     52|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1521|     52|}
funcobject.c:cm_descr_get:
 1445|    256|{
 1446|    256|    classmethod *cm = (classmethod *)self;
 1447|    256|    if (type == NULL)
  ------------------
  |  Branch (1447:9): [True: 0, False: 256]
  ------------------
 1448|      0|        type = (PyObject *)(Py_TYPE(obj));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1449|    256|    return PyMethod_New(cm->cm_callable, type);
 1450|    256|}
funcobject.c:cm_init:
 1490|     86|{
 1491|     86|    if (!_PyArg_NoKeywords("classmethod", kwds)) {
  ------------------
  |  |   25|     86|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 86, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1492|      0|        return -1;
 1493|      0|    }
 1494|     86|    PyObject *callable;  // borrowed ref
 1495|     86|    if (!PyArg_UnpackTuple(args, "classmethod", 1, 1, &callable)) {
  ------------------
  |  Branch (1495:9): [True: 0, False: 86]
  ------------------
 1496|      0|        return -1;
 1497|      0|    }
 1498|       |
 1499|     86|    classmethod *cm = (classmethod *)self;
 1500|     86|    return cm_set_callable(cm, callable);
 1501|     86|}
funcobject.c:cm_new:
 1467|     86|{
 1468|     86|    if (!_PyArg_NoKeywords("classmethod", kwds)) {
  ------------------
  |  |   25|     86|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 86, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1469|      0|        return NULL;
 1470|      0|    }
 1471|     86|    PyObject *callable;  // borrowed ref
 1472|     86|    if (!PyArg_UnpackTuple(args, "classmethod", 1, 1, &callable)) {
  ------------------
  |  Branch (1472:9): [True: 0, False: 86]
  ------------------
 1473|      0|        return NULL;
 1474|      0|    }
 1475|       |
 1476|     86|    classmethod *cm = (classmethod *)PyType_GenericAlloc(type, 0);
 1477|     86|    if (cm == NULL) {
  ------------------
  |  Branch (1477:9): [True: 0, False: 86]
  ------------------
 1478|      0|        return NULL;
 1479|      0|    }
 1480|     86|    _PyObject_SetDeferredRefcount((PyObject *)cm);
 1481|     86|    if (cm_set_callable(cm, callable) < 0) {
  ------------------
  |  Branch (1481:9): [True: 0, False: 86]
  ------------------
 1482|      0|        Py_DECREF(cm);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1483|      0|        return NULL;
 1484|      0|    }
 1485|     86|    return (PyObject *)cm;
 1486|     86|}
funcobject.c:cm_set_callable:
 1454|    172|{
 1455|    172|    assert(callable != NULL);
  ------------------
  |  Branch (1455:5): [True: 172, False: 0]
  ------------------
 1456|    172|    if (cm->cm_callable == callable) {
  ------------------
  |  Branch (1456:9): [True: 86, False: 86]
  ------------------
 1457|       |        // cm_init() sets the same callable than cm_new()
 1458|     86|        return 0;
 1459|     86|    }
 1460|       |
 1461|     86|    Py_XSETREF(cm->cm_callable, Py_NewRef(callable));
  ------------------
  |  |  374|     86|    do { \
  |  |  375|     86|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     86|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     86|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     86|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     86|        *_tmp_dst_ptr = (src); \
  |  |  378|     86|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     86|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     86|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     86|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     86|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 86]
  |  |  ------------------
  ------------------
 1462|     86|    return functools_wraps((PyObject *)cm, cm->cm_callable);
 1463|    172|}
funcobject.c:functools_wraps:
 1302|    120|{
 1303|    120|#define COPY_ATTR(ATTR) \
 1304|    120|    do { \
 1305|    120|        if (functools_copy_attr(wrapper, wrapped, &_Py_ID(ATTR)) < 0) { \
 1306|    120|            return -1; \
 1307|    120|        } \
 1308|    120|    } while (0) \
 1309|    120|
 1310|    120|    COPY_ATTR(__module__);
  ------------------
  |  | 1304|    120|    do { \
  |  | 1305|    120|        if (functools_copy_attr(wrapper, wrapped, &_Py_ID(ATTR)) < 0) { \
  |  |  ------------------
  |  |  |  |  917|    120|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    120|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    120|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1305:13): [True: 0, False: 120]
  |  |  ------------------
  |  | 1306|      0|            return -1; \
  |  | 1307|      0|        } \
  |  | 1308|    120|    } while (0) \
  |  |  ------------------
  |  |  |  Branch (1308:14): [Folded, False: 120]
  |  |  ------------------
  ------------------
 1311|    120|    COPY_ATTR(__name__);
  ------------------
  |  | 1304|    120|    do { \
  |  | 1305|    120|        if (functools_copy_attr(wrapper, wrapped, &_Py_ID(ATTR)) < 0) { \
  |  |  ------------------
  |  |  |  |  917|    120|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    120|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    120|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1305:13): [True: 0, False: 120]
  |  |  ------------------
  |  | 1306|      0|            return -1; \
  |  | 1307|      0|        } \
  |  | 1308|    120|    } while (0) \
  |  |  ------------------
  |  |  |  Branch (1308:14): [Folded, False: 120]
  |  |  ------------------
  ------------------
 1312|    120|    COPY_ATTR(__qualname__);
  ------------------
  |  | 1304|    120|    do { \
  |  | 1305|    120|        if (functools_copy_attr(wrapper, wrapped, &_Py_ID(ATTR)) < 0) { \
  |  |  ------------------
  |  |  |  |  917|    120|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    120|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    120|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1305:13): [True: 0, False: 120]
  |  |  ------------------
  |  | 1306|      0|            return -1; \
  |  | 1307|      0|        } \
  |  | 1308|    120|    } while (0) \
  |  |  ------------------
  |  |  |  Branch (1308:14): [Folded, False: 120]
  |  |  ------------------
  ------------------
 1313|    120|    COPY_ATTR(__doc__);
  ------------------
  |  | 1304|    120|    do { \
  |  | 1305|    120|        if (functools_copy_attr(wrapper, wrapped, &_Py_ID(ATTR)) < 0) { \
  |  |  ------------------
  |  |  |  |  917|    120|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    120|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    120|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1305:13): [True: 0, False: 120]
  |  |  ------------------
  |  | 1306|      0|            return -1; \
  |  | 1307|      0|        } \
  |  | 1308|    120|    } while (0) \
  |  |  ------------------
  |  |  |  Branch (1308:14): [Folded, False: 120]
  |  |  ------------------
  ------------------
 1314|    120|    return 0;
 1315|       |
 1316|    120|#undef COPY_ATTR
 1317|    120|}
funcobject.c:functools_copy_attr:
 1289|    480|{
 1290|    480|    PyObject *value;
 1291|    480|    int res = PyObject_GetOptionalAttr(wrapped, name, &value);
 1292|    480|    if (value != NULL) {
  ------------------
  |  Branch (1292:9): [True: 480, False: 0]
  ------------------
 1293|    480|        res = PyObject_SetAttr(wrapper, name, value);
 1294|    480|        Py_DECREF(value);
  ------------------
  |  |  430|    480|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    480|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    480|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1295|    480|    }
 1296|    480|    return res;
 1297|    480|}
funcobject.c:sm_traverse:
 1691|     52|{
 1692|     52|    staticmethod *sm = _PyStaticMethod_CAST(self);
  ------------------
  |  | 1676|     52|    (assert(PyObject_TypeCheck((cm), &PyStaticMethod_Type)), \
  |  | 1677|     52|     _Py_CAST(staticmethod*, cm))
  |  |  ------------------
  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1692:24): [True: 52, False: 0]
  ------------------
 1693|     52|    Py_VISIT(sm->sm_callable);
  ------------------
  |  |  194|     52|    do {                                                                \
  |  |  195|     52|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 52, False: 0]
  |  |  ------------------
  |  |  196|     52|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     52|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 52]
  |  |  ------------------
  |  |  198|     52|                return vret;                                            \
  |  |  199|     52|        }                                                               \
  |  |  200|     52|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 52]
  |  |  ------------------
  ------------------
 1694|     52|    Py_VISIT(sm->sm_dict);
  ------------------
  |  |  194|     52|    do {                                                                \
  |  |  195|     52|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 52, False: 0]
  |  |  ------------------
  |  |  196|     52|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     52|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 52]
  |  |  ------------------
  |  |  198|     52|                return vret;                                            \
  |  |  199|     52|        }                                                               \
  |  |  200|     52|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 52]
  |  |  ------------------
  ------------------
 1695|     52|    return 0;
 1696|     52|}
funcobject.c:sm_descr_get:
 1709|     62|{
 1710|     62|    staticmethod *sm = (staticmethod *)self;
 1711|     62|    return Py_NewRef(sm->sm_callable);
  ------------------
  |  |  550|     62|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1712|     62|}
funcobject.c:sm_init:
 1752|     18|{
 1753|     18|    if (!_PyArg_NoKeywords("staticmethod", kwds)) {
  ------------------
  |  |   25|     18|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 18, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1754|      0|        return -1;
 1755|      0|    }
 1756|     18|    PyObject *callable;  // borrowed ref
 1757|     18|    if (!PyArg_UnpackTuple(args, "staticmethod", 1, 1, &callable)) {
  ------------------
  |  Branch (1757:9): [True: 0, False: 18]
  ------------------
 1758|      0|        return -1;
 1759|      0|    }
 1760|       |
 1761|     18|    staticmethod *sm = (staticmethod *)self;
 1762|     18|    return sm_set_callable(sm, callable);
 1763|     18|}
funcobject.c:sm_new:
 1729|     18|{
 1730|     18|    if (!_PyArg_NoKeywords("staticmethod", kwds)) {
  ------------------
  |  |   25|     18|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 18, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1731|      0|        return NULL;
 1732|      0|    }
 1733|     18|    PyObject *callable;  // borrowed ref
 1734|     18|    if (!PyArg_UnpackTuple(args, "staticmethod", 1, 1, &callable)) {
  ------------------
  |  Branch (1734:9): [True: 0, False: 18]
  ------------------
 1735|      0|        return NULL;
 1736|      0|    }
 1737|       |
 1738|     18|    staticmethod *sm = (staticmethod *)PyType_GenericAlloc(type, 0);
 1739|     18|    if (sm == NULL) {
  ------------------
  |  Branch (1739:9): [True: 0, False: 18]
  ------------------
 1740|      0|        return NULL;
 1741|      0|    }
 1742|     18|    _PyObject_SetDeferredRefcount((PyObject *)sm);
 1743|     18|    if (sm_set_callable(sm, callable) < 0) {
  ------------------
  |  Branch (1743:9): [True: 0, False: 18]
  ------------------
 1744|      0|        Py_DECREF(sm);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1745|      0|        return NULL;
 1746|      0|    }
 1747|     18|    return (PyObject *)sm;
 1748|     18|}
funcobject.c:sm_set_callable:
 1716|     52|{
 1717|     52|    assert(callable != NULL);
  ------------------
  |  Branch (1717:5): [True: 52, False: 0]
  ------------------
 1718|     52|    if (sm->sm_callable == callable) {
  ------------------
  |  Branch (1718:9): [True: 18, False: 34]
  ------------------
 1719|       |        // sm_init() sets the same callable than sm_new()
 1720|     18|        return 0;
 1721|     18|    }
 1722|       |
 1723|     34|    Py_XSETREF(sm->sm_callable, Py_NewRef(callable));
  ------------------
  |  |  374|     34|    do { \
  |  |  375|     34|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     34|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     34|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     34|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     34|        *_tmp_dst_ptr = (src); \
  |  |  378|     34|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     34|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     34|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 34]
  |  |  ------------------
  ------------------
 1724|     34|    return functools_wraps((PyObject *)sm, sm->sm_callable);
 1725|     52|}

Py_GenericAlias:
 1045|      4|{
 1046|      4|    gaobject *alias = (gaobject*) PyType_GenericAlloc(
 1047|      4|            (PyTypeObject *)&Py_GenericAliasType, 0);
 1048|      4|    if (alias == NULL) {
  ------------------
  |  Branch (1048:9): [True: 0, False: 4]
  ------------------
 1049|      0|        return NULL;
 1050|      0|    }
 1051|      4|    if (!setup_ga(alias, origin, args)) {
  ------------------
  |  Branch (1051:9): [True: 0, False: 4]
  ------------------
 1052|      0|        Py_DECREF(alias);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1053|      0|        return NULL;
 1054|      0|    }
 1055|      4|    return (PyObject *)alias;
 1056|      4|}
genericaliasobject.c:ga_dealloc:
   33|      4|{
   34|      4|    gaobject *alias = (gaobject *)self;
   35|       |
   36|      4|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|      4|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   37|      4|    FT_CLEAR_WEAKREFS(self, alias->weakreflist);
  ------------------
  |  |   47|      4|    do {                                            \
  |  |   48|      4|        assert(Py_REFCNT(obj) == 0);                \
  |  |   49|      4|        if (weakref_list != NULL) {                 \
  |  |  ------------------
  |  |  |  Branch (49:13): [True: 0, False: 4]
  |  |  ------------------
  |  |   50|      0|            PyObject_ClearWeakRefs(obj);            \
  |  |   51|      0|        }                                           \
  |  |   52|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (52:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  |  Branch (37:5): [True: 4, False: 0]
  ------------------
   38|      4|    Py_XDECREF(alias->origin);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   39|      4|    Py_XDECREF(alias->args);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   40|      4|    Py_XDECREF(alias->parameters);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   41|      4|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   42|      4|}
genericaliasobject.c:setup_ga:
  872|      4|setup_ga(gaobject *alias, PyObject *origin, PyObject *args) {
  873|      4|    if (!PyTuple_Check(args)) {
  ------------------
  |  |   27|      4|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (873:9): [True: 4, False: 0]
  ------------------
  874|      4|        args = PyTuple_Pack(1, args);
  875|      4|        if (args == NULL) {
  ------------------
  |  Branch (875:13): [True: 0, False: 4]
  ------------------
  876|      0|            return 0;
  877|      0|        }
  878|      4|    }
  879|      0|    else {
  880|      0|        Py_INCREF(args);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  881|      0|    }
  882|       |
  883|      4|    alias->origin = Py_NewRef(origin);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  884|      4|    alias->args = args;
  885|      4|    alias->parameters = NULL;
  886|      4|    alias->weakreflist = NULL;
  887|       |
  888|      4|    if (PyVectorcall_Function(origin) != NULL) {
  ------------------
  |  Branch (888:9): [True: 4, False: 0]
  ------------------
  889|      4|        alias->vectorcall = ga_vectorcall;
  890|      4|    }
  891|      0|    else {
  892|      0|        alias->vectorcall = NULL;
  893|      0|    }
  894|       |
  895|      4|    return 1;
  896|      4|}

_Py_MakeCoro:
 1115|     42|{
 1116|     42|    int coro_flags = ((PyCodeObject *)func->func_code)->co_flags &
 1117|     42|        (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR);
  ------------------
  |  |  123|     42|#define CO_GENERATOR    0x0020
  ------------------
                      (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR);
  ------------------
  |  |  127|     42|#define CO_COROUTINE            0x0080
  ------------------
                      (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR);
  ------------------
  |  |  129|     42|#define CO_ASYNC_GENERATOR      0x0200
  ------------------
 1118|     42|    assert(coro_flags);
  ------------------
  |  Branch (1118:5): [True: 42, False: 0]
  ------------------
 1119|     42|    if (coro_flags == CO_GENERATOR) {
  ------------------
  |  |  123|     42|#define CO_GENERATOR    0x0020
  ------------------
  |  Branch (1119:9): [True: 38, False: 4]
  ------------------
 1120|     38|        return make_gen(&PyGen_Type, func);
 1121|     38|    }
 1122|      4|    if (coro_flags == CO_ASYNC_GENERATOR) {
  ------------------
  |  |  129|      4|#define CO_ASYNC_GENERATOR      0x0200
  ------------------
  |  Branch (1122:9): [True: 2, False: 2]
  ------------------
 1123|      2|        PyAsyncGenObject *ag;
 1124|      2|        ag = (PyAsyncGenObject *)make_gen(&PyAsyncGen_Type, func);
 1125|      2|        if (ag == NULL) {
  ------------------
  |  Branch (1125:13): [True: 0, False: 2]
  ------------------
 1126|      0|            return NULL;
 1127|      0|        }
 1128|      2|        ag->ag_origin_or_finalizer = NULL;
 1129|      2|        ag->ag_closed = 0;
 1130|      2|        ag->ag_hooks_inited = 0;
 1131|      2|        ag->ag_running_async = 0;
 1132|      2|        return (PyObject*)ag;
 1133|      2|    }
 1134|       |
 1135|      4|    assert (coro_flags == CO_COROUTINE);
  ------------------
  |  Branch (1135:5): [True: 2, False: 0]
  ------------------
 1136|      2|    PyObject *coro = make_gen(&PyCoro_Type, func);
 1137|      2|    if (!coro) {
  ------------------
  |  Branch (1137:9): [True: 0, False: 2]
  ------------------
 1138|      0|        return NULL;
 1139|      0|    }
 1140|      2|    PyThreadState *tstate = _PyThreadState_GET();
 1141|      2|    int origin_depth = tstate->coroutine_origin_tracking_depth;
 1142|       |
 1143|      2|    if (origin_depth == 0) {
  ------------------
  |  Branch (1143:9): [True: 2, False: 0]
  ------------------
 1144|      2|        ((PyCoroObject *)coro)->cr_origin_or_finalizer = NULL;
 1145|      2|    } else {
 1146|      0|        _PyInterpreterFrame *frame = tstate->current_frame;
 1147|      0|        assert(frame);
  ------------------
  |  Branch (1147:9): [True: 0, False: 0]
  ------------------
 1148|      0|        assert(_PyFrame_IsIncomplete(frame));
  ------------------
  |  Branch (1148:9): [True: 0, False: 0]
  ------------------
 1149|      0|        frame = _PyFrame_GetFirstComplete(frame->previous);
 1150|      0|        PyObject *cr_origin = _PyCoro_ComputeOrigin(origin_depth, frame);
 1151|      0|        ((PyCoroObject *)coro)->cr_origin_or_finalizer = cr_origin;
 1152|      0|        if (!cr_origin) {
  ------------------
  |  Branch (1152:13): [True: 0, False: 0]
  ------------------
 1153|      0|            Py_DECREF(coro);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1154|      0|            return NULL;
 1155|      0|        }
 1156|      0|    }
 1157|      2|    return coro;
 1158|      2|}
genobject.c:_PyGen_GetCode:
   69|     12|_PyGen_GetCode(PyGenObject *gen) {
   70|     12|    return _PyFrame_GetCode(&gen->gi_iframe);
   71|     12|}
genobject.c:gen_clear_frame:
  168|      8|{
  169|      8|    assert(FT_ATOMIC_LOAD_INT8_RELAXED(gen->gi_frame_state) == FRAME_CLEARED);
  ------------------
  |  Branch (169:5): [True: 8, False: 0]
  ------------------
  170|      8|    _PyInterpreterFrame *frame = &gen->gi_iframe;
  171|       |    frame->previous = NULL;
  172|      8|    _PyFrame_ClearExceptCode(frame);
  173|      8|    _PyErr_ClearExcState(&gen->gi_exc_state);
  174|      8|}
genobject.c:gen_dealloc:
  206|     42|{
  207|     42|    PyGenObject *gen = _PyGen_CAST(self);
  ------------------
  |  |   33|     42|    _Py_CAST(PyGenObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  208|       |
  209|     42|    _PyObject_GC_UNTRACK(gen);
  ------------------
  |  |  515|     42|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  210|       |
  211|     42|    FT_CLEAR_WEAKREFS(self, gen->gi_weakreflist);
  ------------------
  |  |   47|     42|    do {                                            \
  |  |   48|     42|        assert(Py_REFCNT(obj) == 0);                \
  |  |   49|     42|        if (weakref_list != NULL) {                 \
  |  |  ------------------
  |  |  |  Branch (49:13): [True: 0, False: 42]
  |  |  ------------------
  |  |   50|      0|            PyObject_ClearWeakRefs(obj);            \
  |  |   51|      0|        }                                           \
  |  |   52|     42|    } while (0)
  |  |  ------------------
  |  |  |  Branch (52:14): [Folded, False: 42]
  |  |  ------------------
  ------------------
  |  Branch (211:5): [True: 42, False: 0]
  ------------------
  212|       |
  213|     42|    _PyObject_GC_TRACK(self);
  ------------------
  |  |  513|     42|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  214|       |
  215|     42|    if (PyObject_CallFinalizerFromDealloc(self))
  ------------------
  |  Branch (215:9): [True: 0, False: 42]
  ------------------
  216|      0|        return;                     /* resurrected.  :( */
  217|       |
  218|     42|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|     42|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  219|     42|    if (PyAsyncGen_CheckExact(gen)) {
  ------------------
  |  |   46|     42|#define PyAsyncGen_CheckExact(op) Py_IS_TYPE((op), &PyAsyncGen_Type)
  |  |  ------------------
  |  |  |  |  215|     42|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  220|       |        /* We have to handle this case for asynchronous generators
  221|       |           right here, because this code has to be between UNTRACK
  222|       |           and GC_Del. */
  223|      2|        Py_CLEAR(((PyAsyncGenObject*)gen)->ag_origin_or_finalizer);
  ------------------
  |  |  484|      2|    do { \
  |  |  485|      2|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      2|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      2|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  224|      2|    }
  225|     42|    if (PyCoro_CheckExact(gen)) {
  ------------------
  |  |   31|     42|#define PyCoro_CheckExact(op) Py_IS_TYPE((op), &PyCoro_Type)
  |  |  ------------------
  |  |  |  |  215|     42|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  226|      2|        Py_CLEAR(((PyCoroObject *)gen)->cr_origin_or_finalizer);
  ------------------
  |  |  484|      2|    do { \
  |  |  485|      2|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      2|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      2|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  227|      2|    }
  228|     42|    if (gen->gi_frame_state != FRAME_CLEARED) {
  ------------------
  |  Branch (228:9): [True: 0, False: 42]
  ------------------
  229|      0|        gen->gi_frame_state = FRAME_CLEARED;
  230|      0|        gen_clear_frame(gen);
  231|      0|    }
  232|     42|    assert(gen->gi_exc_state.exc_value == NULL);
  ------------------
  |  Branch (232:5): [True: 42, False: 0]
  ------------------
  233|     42|    PyStackRef_CLEAR(gen->gi_iframe.f_executable);
  ------------------
  |  |  711|     42|    do { \
  |  |  712|     42|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|     42|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|     42|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|     42|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|     42|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 42]
  |  |  ------------------
  ------------------
  234|     42|    Py_CLEAR(gen->gi_name);
  ------------------
  |  |  484|     42|    do { \
  |  |  485|     42|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     42|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     42|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     42|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     42|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 42, False: 0]
  |  |  ------------------
  |  |  488|     42|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     42|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     42|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     42|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     42|        } \
  |  |  491|     42|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 42]
  |  |  ------------------
  ------------------
  235|     42|    Py_CLEAR(gen->gi_qualname);
  ------------------
  |  |  484|     42|    do { \
  |  |  485|     42|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     42|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     42|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     42|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     42|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 42, False: 0]
  |  |  ------------------
  |  |  488|     42|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     42|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     42|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     42|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     42|        } \
  |  |  491|     42|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 42]
  |  |  ------------------
  ------------------
  236|       |
  237|     42|    PyObject_GC_Del(gen);
  238|     42|}
genobject.c:gen_send_ex:
  330|     68|{
  331|     68|    *presult = NULL;
  332|     68|    int8_t frame_state = FT_ATOMIC_LOAD_INT8_RELAXED(gen->gi_frame_state);
  ------------------
  |  |  156|     68|#define FT_ATOMIC_LOAD_INT8_RELAXED(value) value
  ------------------
  333|     68|    do {
  334|     68|        if (frame_state == FRAME_CREATED && arg && arg != Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (334:13): [True: 30, False: 38]
  |  Branch (334:45): [True: 0, False: 30]
  |  Branch (334:52): [True: 0, False: 0]
  ------------------
  335|      0|            const char *msg = "can't send non-None value to a "
  336|      0|                                "just-started generator";
  337|      0|            if (PyCoro_CheckExact(gen)) {
  ------------------
  |  |   31|      0|#define PyCoro_CheckExact(op) Py_IS_TYPE((op), &PyCoro_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  338|      0|                msg = NON_INIT_CORO_MSG;
  339|      0|            }
  340|      0|            else if (PyAsyncGen_CheckExact(gen)) {
  ------------------
  |  |   46|      0|#define PyAsyncGen_CheckExact(op) Py_IS_TYPE((op), &PyAsyncGen_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  341|      0|                msg = "can't send non-None value to a "
  342|      0|                        "just-started async generator";
  343|      0|            }
  344|      0|            PyErr_SetString(PyExc_TypeError, msg);
  345|      0|            return PYGEN_ERROR;
  346|      0|        }
  347|     68|        if (frame_state == FRAME_EXECUTING) {
  ------------------
  |  Branch (347:13): [True: 0, False: 68]
  ------------------
  348|      0|            gen_raise_already_executing_error(gen);
  349|      0|            return PYGEN_ERROR;
  350|      0|        }
  351|     68|        if (FRAME_STATE_FINISHED(frame_state)) {
  ------------------
  |  |   57|     68|#define FRAME_STATE_FINISHED(S) ((S) == FRAME_CLEARED)
  |  |  ------------------
  |  |  |  Branch (57:33): [True: 0, False: 68]
  |  |  ------------------
  ------------------
  352|      0|            if (PyCoro_CheckExact(gen)) {
  ------------------
  |  |   31|      0|#define PyCoro_CheckExact(op) Py_IS_TYPE((op), &PyCoro_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  353|       |                /* `gen` is an exhausted coroutine: raise an error,
  354|       |                except when called from gen_close(), which should
  355|       |                always be a silent method. */
  356|      0|                PyErr_SetString(
  357|      0|                    PyExc_RuntimeError,
  358|      0|                    "cannot reuse already awaited coroutine");
  359|      0|            }
  360|      0|            else if (arg) {
  ------------------
  |  Branch (360:22): [True: 0, False: 0]
  ------------------
  361|       |                /* `gen` is an exhausted generator:
  362|       |                only return value if called from send(). */
  363|      0|                *presult = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  364|      0|                return PYGEN_RETURN;
  365|      0|            }
  366|      0|            return PYGEN_ERROR;
  367|      0|        }
  368|       |
  369|     68|        assert((frame_state == FRAME_CREATED) ||
  ------------------
  |  Branch (369:9): [True: 38, False: 0]
  |  Branch (369:9): [True: 38, False: 0]
  |  Branch (369:9): [True: 30, False: 38]
  ------------------
  370|     68|               FRAME_STATE_SUSPENDED(frame_state));
  371|     68|    } while (!_Py_GEN_TRY_SET_FRAME_STATE(gen, frame_state, FRAME_EXECUTING));
  ------------------
  |  |   57|     68|    ((gen)->gi_frame_state = (state), true)
  ------------------
  |  Branch (371:14): [True: 0, False: 68]
  ------------------
  372|       |
  373|     68|    return gen_send_ex2(gen, arg, presult, 0);
  374|     68|}
genobject.c:gen_send_ex2:
  260|     68|{
  261|     68|    assert(FT_ATOMIC_LOAD_INT8_RELAXED(gen->gi_frame_state) == FRAME_EXECUTING);
  ------------------
  |  Branch (261:5): [True: 68, False: 0]
  ------------------
  262|       |
  263|     68|    PyThreadState *tstate = _PyThreadState_GET();
  264|     68|    _PyInterpreterFrame *frame = &gen->gi_iframe;
  265|       |
  266|       |    /* Push arg onto the frame's value stack */
  267|     68|    PyObject *arg_obj = arg ? arg : Py_None;
  ------------------
  |  |  616|     68|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (267:25): [True: 0, False: 68]
  ------------------
  268|     68|    _PyFrame_StackPush(frame, PyStackRef_FromPyObjectNew(arg_obj));
  ------------------
  |  |  599|     68|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  269|       |
  270|     68|    _PyErr_StackItem *prev_exc_info = tstate->exc_info;
  271|     68|    gen->gi_exc_state.previous_item = prev_exc_info;
  272|     68|    tstate->exc_info = &gen->gi_exc_state;
  273|       |
  274|     68|    if (exc) {
  ------------------
  |  Branch (274:9): [True: 0, False: 68]
  ------------------
  275|      0|        assert(_PyErr_Occurred(tstate));
  ------------------
  |  Branch (275:9): [True: 0, False: 0]
  ------------------
  276|      0|        _PyErr_ChainStackItem();
  277|      0|    }
  278|       |
  279|     68|    EVAL_CALL_STAT_INC(EVAL_CALL_GENERATOR);
  ------------------
  |  |   79|     68|#define EVAL_CALL_STAT_INC(name) ((void)0)
  ------------------
  280|     68|    PyObject *result = _PyEval_EvalFrame(tstate, frame, exc);
  281|     68|    assert(tstate->exc_info == prev_exc_info);
  ------------------
  |  Branch (281:5): [True: 68, False: 0]
  ------------------
  282|     68|#ifndef Py_GIL_DISABLED
  283|     68|    assert(gen->gi_exc_state.previous_item == NULL);
  ------------------
  |  Branch (283:5): [True: 68, False: 0]
  ------------------
  284|     68|    assert(frame->previous == NULL);
  ------------------
  |  Branch (284:5): [True: 68, False: 0]
  ------------------
  285|     68|    assert(gen->gi_frame_state != FRAME_EXECUTING);
  ------------------
  |  Branch (285:5): [True: 68, False: 0]
  ------------------
  286|     68|#endif
  287|       |
  288|       |    // The generator_return_kind field is used to distinguish between a
  289|       |    // yield and a return from within _PyEval_EvalFrame(). Earlier versions
  290|       |    // of CPython (prior to 3.15) used gi_frame_state for this purpose, but
  291|       |    // that requires the GIL for thread-safety.
  292|     68|    int return_kind = ((_PyThreadStateImpl *)tstate)->generator_return_kind;
  293|       |
  294|     68|    if (return_kind == GENERATOR_YIELD) {
  ------------------
  |  Branch (294:9): [True: 42, False: 26]
  ------------------
  295|     42|        assert(result != NULL && !_PyErr_Occurred(tstate));
  ------------------
  |  Branch (295:9): [True: 42, False: 0]
  |  Branch (295:9): [True: 42, False: 0]
  ------------------
  296|     42|#ifndef Py_GIL_DISABLED
  297|     42|        assert(FRAME_STATE_SUSPENDED(gen->gi_frame_state));
  ------------------
  |  Branch (297:9): [True: 42, False: 0]
  |  Branch (297:9): [True: 42, False: 0]
  ------------------
  298|     42|#endif
  299|     42|        *presult = result;
  300|     42|        return PYGEN_NEXT;
  301|     42|    }
  302|       |
  303|     68|    assert(return_kind == GENERATOR_RETURN);
  ------------------
  |  Branch (303:5): [True: 26, False: 0]
  ------------------
  304|     26|    assert(gen->gi_exc_state.exc_value == NULL);
  ------------------
  |  Branch (304:5): [True: 26, False: 0]
  ------------------
  305|     26|    assert(FT_ATOMIC_LOAD_INT8_RELAXED(gen->gi_frame_state) == FRAME_CLEARED);
  ------------------
  |  Branch (305:5): [True: 26, False: 0]
  ------------------
  306|       |
  307|       |    /* If the generator just returned (as opposed to yielding), signal
  308|       |     * that the generator is exhausted. */
  309|     26|    if (result) {
  ------------------
  |  Branch (309:9): [True: 26, False: 0]
  ------------------
  310|     26|        assert(result == Py_None || !PyAsyncGen_CheckExact(gen));
  ------------------
  |  Branch (310:9): [True: 26, False: 0]
  |  Branch (310:9): [True: 0, False: 0]
  ------------------
  311|     26|        if (result == Py_None && !PyAsyncGen_CheckExact(gen) && !arg) {
  ------------------
  |  |  616|     52|#  define Py_None (&_Py_NoneStruct)
  ------------------
                      if (result == Py_None && !PyAsyncGen_CheckExact(gen) && !arg) {
  ------------------
  |  |   46|     26|#define PyAsyncGen_CheckExact(op) Py_IS_TYPE((op), &PyAsyncGen_Type)
  |  |  ------------------
  |  |  |  |  215|     52|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (311:13): [True: 26, False: 0]
  |  Branch (311:34): [True: 26, False: 0]
  |  Branch (311:65): [True: 26, False: 0]
  ------------------
  312|       |            /* Return NULL if called by gen_iternext() */
  313|     26|            Py_CLEAR(result);
  ------------------
  |  |  484|     26|    do { \
  |  |  485|     26|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     26|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     26|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     26|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     26|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 26, False: 0]
  |  |  ------------------
  |  |  488|     26|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     26|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     26|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     26|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     26|        } \
  |  |  491|     26|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 26]
  |  |  ------------------
  ------------------
  314|     26|        }
  315|     26|    }
  316|      0|    else {
  317|      0|        assert(!PyErr_ExceptionMatches(PyExc_StopIteration));
  ------------------
  |  Branch (317:9): [True: 0, False: 0]
  ------------------
  318|      0|        assert(!PyAsyncGen_CheckExact(gen) ||
  ------------------
  |  Branch (318:9): [True: 0, False: 0]
  |  Branch (318:9): [True: 0, False: 0]
  ------------------
  319|      0|            !PyErr_ExceptionMatches(PyExc_StopAsyncIteration));
  320|      0|    }
  321|       |
  322|     26|    *presult = result;
  323|     26|    return result ? PYGEN_RETURN : PYGEN_ERROR;
  ------------------
  |  Branch (323:12): [True: 0, False: 26]
  ------------------
  324|     26|}
genobject.c:gen_iternext:
  759|     68|{
  760|     68|    assert(PyGen_CheckExact(self) || PyCoro_CheckExact(self));
  ------------------
  |  Branch (760:5): [True: 68, False: 0]
  |  Branch (760:5): [True: 0, False: 0]
  ------------------
  761|     68|    PyGenObject *gen = _PyGen_CAST(self);
  ------------------
  |  |   33|     68|    _Py_CAST(PyGenObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  762|       |
  763|     68|    PyObject *result;
  764|     68|    if (gen_send_ex(gen, NULL, &result) == PYGEN_RETURN) {
  ------------------
  |  Branch (764:9): [True: 0, False: 68]
  ------------------
  765|      0|        if (result != Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (765:13): [True: 0, False: 0]
  ------------------
  766|      0|            _PyGen_SetStopIterationValue(result);
  767|      0|        }
  768|       |        Py_CLEAR(result);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  769|      0|    }
  770|     68|    return result;
  771|     68|}
genobject.c:gen_close:
  464|      8|{
  465|      8|    PyGenObject *gen = _PyGen_CAST(self);
  ------------------
  |  |   33|      8|    _Py_CAST(PyGenObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  466|       |
  467|      8|    int8_t frame_state = FT_ATOMIC_LOAD_INT8_RELAXED(gen->gi_frame_state);
  ------------------
  |  |  156|      8|#define FT_ATOMIC_LOAD_INT8_RELAXED(value) value
  ------------------
  468|      8|    do {
  469|      8|        if (frame_state == FRAME_CREATED) {
  ------------------
  |  Branch (469:13): [True: 6, False: 2]
  ------------------
  470|       |            // && (1) to avoid -Wunreachable-code warning on Clang
  471|      6|            if (!_Py_GEN_TRY_SET_FRAME_STATE(gen, frame_state, FRAME_CLEARED) && (1)) {
  ------------------
  |  |   57|     12|    ((gen)->gi_frame_state = (state), true)
  ------------------
  |  Branch (471:17): [True: 0, False: 6]
  |  Branch (471:82): [True: 0, Folded]
  ------------------
  472|      0|                continue;
  473|      0|            }
  474|      6|            gen_clear_frame(gen);
  475|      6|            Py_RETURN_NONE;
  ------------------
  |  |  628|      6|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  476|      6|        }
  477|       |
  478|      2|        if (FRAME_STATE_FINISHED(frame_state)) {
  ------------------
  |  |   57|      2|#define FRAME_STATE_FINISHED(S) ((S) == FRAME_CLEARED)
  |  |  ------------------
  |  |  |  Branch (57:33): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  479|      0|            Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  480|      0|        }
  481|       |
  482|      2|        if (frame_state == FRAME_EXECUTING) {
  ------------------
  |  Branch (482:13): [True: 0, False: 2]
  ------------------
  483|      0|            gen_raise_already_executing_error(gen);
  484|      0|            return NULL;
  485|      0|        }
  486|       |
  487|      2|        assert(FRAME_STATE_SUSPENDED(frame_state));
  ------------------
  |  Branch (487:9): [True: 2, False: 0]
  |  Branch (487:9): [True: 2, False: 0]
  ------------------
  488|      2|    } while (!_Py_GEN_TRY_SET_FRAME_STATE(gen, frame_state, FRAME_EXECUTING));
  ------------------
  |  |   57|      2|    ((gen)->gi_frame_state = (state), true)
  ------------------
  |  Branch (488:14): [True: 0, False: 2]
  ------------------
  489|       |
  490|      2|    int err = 0;
  491|      2|    _PyInterpreterFrame *frame = &gen->gi_iframe;
  492|      2|    if (frame_state == FRAME_SUSPENDED_YIELD_FROM) {
  ------------------
  |  Branch (492:9): [True: 0, False: 2]
  ------------------
  493|      0|        PyObject *yf = PyStackRef_AsPyObjectNew(_PyFrame_StackPeek(frame, 2));
  ------------------
  |  |  736|      0|#define PyStackRef_AsPyObjectNew(stackref) Py_NewRef(PyStackRef_AsPyObjectBorrow(stackref))
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  494|      0|        err = gen_close_iter(yf);
  495|      0|        Py_DECREF(yf);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  496|      0|    }
  497|       |
  498|      2|    if (is_resume(frame->instr_ptr)) {
  ------------------
  |  Branch (498:9): [True: 2, False: 0]
  ------------------
  499|      2|        bool no_unwind_tools = _PyEval_NoToolsForUnwind(_PyThreadState_GET(), frame);
  500|       |        /* We can safely ignore the outermost try block
  501|       |         * as it is automatically generated to handle
  502|       |         * StopIteration. */
  503|      2|        int oparg = frame->instr_ptr->op.arg;
  504|      2|        if (oparg & RESUME_OPARG_DEPTH1_MASK && no_unwind_tools) {
  ------------------
  |  |   93|      4|#define RESUME_OPARG_DEPTH1_MASK 0x8
  ------------------
  |  Branch (504:13): [True: 2, False: 0]
  |  Branch (504:49): [True: 2, False: 0]
  ------------------
  505|       |            // RESUME after YIELD_VALUE and exception depth is 1
  506|      2|            assert((oparg & RESUME_OPARG_LOCATION_MASK) != RESUME_AT_FUNC_START);
  ------------------
  |  Branch (506:13): [True: 2, False: 0]
  ------------------
  507|      2|            FT_ATOMIC_STORE_INT8_RELEASE(gen->gi_frame_state, FRAME_CLEARED);
  ------------------
  |  |  167|      2|#define FT_ATOMIC_STORE_INT8_RELEASE(value, new_value) value = new_value
  ------------------
  508|      2|            gen_clear_frame(gen);
  509|      2|            Py_RETURN_NONE;
  ------------------
  |  |  628|      2|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  510|      2|        }
  511|      2|    }
  512|      0|    if (err == 0) {
  ------------------
  |  Branch (512:9): [True: 0, False: 0]
  ------------------
  513|      0|        PyErr_SetNone(PyExc_GeneratorExit);
  514|      0|    }
  515|       |
  516|      0|    PyObject *retval;
  517|      0|    if (gen_send_ex2(gen, Py_None, &retval, 1) == PYGEN_RETURN) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (517:9): [True: 0, False: 0]
  ------------------
  518|       |        // the generator returned a value while closing, return the value here
  519|      0|        assert(!PyErr_Occurred());
  ------------------
  |  Branch (519:9): [True: 0, False: 0]
  ------------------
  520|      0|        return retval;
  521|      0|    }
  522|      0|    else if (retval) {
  ------------------
  |  Branch (522:14): [True: 0, False: 0]
  ------------------
  523|      0|        const char *msg = "generator ignored GeneratorExit";
  524|      0|        if (PyCoro_CheckExact(gen)) {
  ------------------
  |  |   31|      0|#define PyCoro_CheckExact(op) Py_IS_TYPE((op), &PyCoro_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  525|      0|            msg = "coroutine ignored GeneratorExit";
  526|      0|        } else if (PyAsyncGen_CheckExact(gen)) {
  ------------------
  |  |   46|      0|#define PyAsyncGen_CheckExact(op) Py_IS_TYPE((op), &PyAsyncGen_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  527|      0|            msg = ASYNC_GEN_IGNORED_EXIT_MSG;
  528|      0|        }
  529|      0|        Py_DECREF(retval);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  530|      0|        PyErr_SetString(PyExc_RuntimeError, msg);
  531|      0|        return NULL;
  532|      0|    }
  533|      0|    assert(PyErr_Occurred());
  ------------------
  |  Branch (533:5): [True: 0, False: 0]
  ------------------
  534|       |
  535|      0|    if (PyErr_ExceptionMatches(PyExc_GeneratorExit)) {
  ------------------
  |  Branch (535:9): [True: 0, False: 0]
  ------------------
  536|      0|        PyErr_Clear();          /* ignore this error */
  537|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  538|      0|    }
  539|      0|    return NULL;
  540|      0|}
genobject.c:is_resume:
  452|      2|{
  453|      2|    uint8_t code = FT_ATOMIC_LOAD_UINT8_RELAXED(instr->op.code);
  ------------------
  |  |  157|      2|#define FT_ATOMIC_LOAD_UINT8_RELAXED(value) value
  ------------------
  454|      2|    return (
  455|      2|        code == RESUME ||
  ------------------
  |  |  133|      4|#define RESUME                                 128
  ------------------
  |  Branch (455:9): [True: 0, False: 2]
  ------------------
  456|      2|        code == RESUME_CHECK ||
  ------------------
  |  |  205|      4|#define RESUME_CHECK                           200
  ------------------
  |  Branch (456:9): [True: 2, False: 0]
  ------------------
  457|      0|        code == RESUME_CHECK_JIT ||
  ------------------
  |  |  206|      2|#define RESUME_CHECK_JIT                       201
  ------------------
  |  Branch (457:9): [True: 0, False: 0]
  ------------------
  458|      0|        code == INSTRUMENTED_RESUME
  ------------------
  |  |  235|      0|#define INSTRUMENTED_RESUME                    244
  ------------------
  |  Branch (458:9): [True: 0, False: 0]
  ------------------
  459|      2|    );
  460|      2|}
genobject.c:gen_finalize:
  109|     42|{
  110|     42|    PyGenObject *gen = (PyGenObject *)self;
  111|       |
  112|     42|    if (FRAME_STATE_FINISHED(gen->gi_frame_state)) {
  ------------------
  |  |   57|     42|#define FRAME_STATE_FINISHED(S) ((S) == FRAME_CLEARED)
  |  |  ------------------
  |  |  |  Branch (57:33): [True: 36, False: 6]
  |  |  ------------------
  ------------------
  113|       |        /* Generator isn't paused, so no need to close */
  114|     36|        return;
  115|     36|    }
  116|       |
  117|      6|    if (PyAsyncGen_CheckExact(self)) {
  ------------------
  |  |   46|      6|#define PyAsyncGen_CheckExact(op) Py_IS_TYPE((op), &PyAsyncGen_Type)
  |  |  ------------------
  |  |  |  |  215|      6|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  118|      2|        PyAsyncGenObject *agen = (PyAsyncGenObject*)self;
  119|      2|        PyObject *finalizer = agen->ag_origin_or_finalizer;
  120|      2|        if (finalizer && !agen->ag_closed) {
  ------------------
  |  Branch (120:13): [True: 0, False: 2]
  |  Branch (120:26): [True: 0, False: 0]
  ------------------
  121|       |            /* Save the current exception, if any. */
  122|      0|            PyObject *exc = PyErr_GetRaisedException();
  123|       |
  124|      0|            PyObject *res = PyObject_CallOneArg(finalizer, self);
  125|      0|            if (res == NULL) {
  ------------------
  |  Branch (125:17): [True: 0, False: 0]
  ------------------
  126|      0|                PyErr_FormatUnraisable("Exception ignored while "
  127|      0|                                       "finalizing generator %R", self);
  128|      0|            }
  129|      0|            else {
  130|      0|                Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  131|      0|            }
  132|       |            /* Restore the saved exception. */
  133|      0|            PyErr_SetRaisedException(exc);
  134|      0|            return;
  135|      0|        }
  136|      2|    }
  137|       |
  138|       |    /* Save the current exception, if any. */
  139|      6|    PyObject *exc = PyErr_GetRaisedException();
  140|       |
  141|       |    /* If `gen` is a coroutine, and if it was never awaited on,
  142|       |       issue a RuntimeWarning. */
  143|      6|    assert(_PyGen_GetCode(gen) != NULL);
  ------------------
  |  Branch (143:5): [True: 6, False: 0]
  ------------------
  144|      6|    if (_PyGen_GetCode(gen)->co_flags & CO_COROUTINE &&
  ------------------
  |  |  127|     12|#define CO_COROUTINE            0x0080
  ------------------
  |  Branch (144:9): [True: 0, False: 6]
  ------------------
  145|      0|        gen->gi_frame_state == FRAME_CREATED)
  ------------------
  |  Branch (145:9): [True: 0, False: 0]
  ------------------
  146|      0|    {
  147|      0|        _PyErr_WarnUnawaitedCoroutine((PyObject *)gen);
  148|      0|    }
  149|      6|    else {
  150|      6|        PyObject *res = gen_close((PyObject*)gen, NULL);
  151|      6|        if (res == NULL) {
  ------------------
  |  Branch (151:13): [True: 0, False: 6]
  ------------------
  152|      0|            if (PyErr_Occurred()) {
  ------------------
  |  Branch (152:17): [True: 0, False: 0]
  ------------------
  153|      0|                PyErr_FormatUnraisable("Exception ignored while "
  154|      0|                                       "closing generator %R", self);
  155|      0|            }
  156|      0|        }
  157|      6|        else {
  158|      6|            Py_DECREF(res);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  159|      6|        }
  160|      6|    }
  161|       |
  162|       |    /* Restore the saved exception. */
  163|      6|    PyErr_SetRaisedException(exc);
  164|      6|}
genobject.c:make_gen:
 1093|     42|{
 1094|     42|    PyCodeObject *code = (PyCodeObject *)func->func_code;
 1095|     42|    int slots = _PyFrame_NumSlotsForCodeObject(code);
 1096|     42|    PyGenObject *gen = PyObject_GC_NewVar(PyGenObject, type, slots);
  ------------------
  |  |  183|     42|    _Py_CAST(type*, _PyObject_GC_NewVar((typeobj), (n)))
  |  |  ------------------
  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1097|     42|    if (gen == NULL) {
  ------------------
  |  Branch (1097:9): [True: 0, False: 42]
  ------------------
 1098|      0|        return NULL;
 1099|      0|    }
 1100|     42|    gen->gi_frame_state = FRAME_CLEARED;
 1101|     42|    gen->gi_weakreflist = NULL;
 1102|     42|    gen->gi_exc_state.exc_value = NULL;
 1103|     42|    gen->gi_exc_state.previous_item = NULL;
 1104|     42|    gen->gi_iframe.f_executable = PyStackRef_None;
  ------------------
  |  |  473|     42|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  ------------------
  |  |  |  |   55|     42|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
 1105|     42|    assert(func->func_name != NULL);
  ------------------
  |  Branch (1105:5): [True: 42, False: 0]
  ------------------
 1106|     42|    gen->gi_name = Py_NewRef(func->func_name);
  ------------------
  |  |  550|     42|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1107|     42|    assert(func->func_qualname != NULL);
  ------------------
  |  Branch (1107:5): [True: 42, False: 0]
  ------------------
 1108|     42|    gen->gi_qualname = Py_NewRef(func->func_qualname);
  ------------------
  |  |  550|     42|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1109|     42|    _PyObject_GC_TRACK(gen);
  ------------------
  |  |  513|     42|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1110|     42|    return (PyObject *)gen;
 1111|     42|}

_PyInterpolation_InitTypes:
  165|      2|{
  166|      2|    PyObject *tuple = Py_BuildValue("(ssss)", "value", "expression", "conversion", "format_spec");
  167|      2|    if (!tuple) {
  ------------------
  |  Branch (167:9): [True: 0, False: 2]
  ------------------
  168|      0|        goto error;
  169|      0|    }
  170|       |
  171|      2|    PyObject *dict = _PyType_GetDict(&_PyInterpolation_Type);
  172|      2|    if (!dict) {
  ------------------
  |  Branch (172:9): [True: 0, False: 2]
  ------------------
  173|      0|        Py_DECREF(tuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  174|      0|        goto error;
  175|      0|    }
  176|       |
  177|      2|    int status = PyDict_SetItemString(dict, "__match_args__", tuple);
  178|      2|    Py_DECREF(tuple);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  179|      2|    if (status < 0) {
  ------------------
  |  Branch (179:9): [True: 0, False: 2]
  ------------------
  180|      0|        goto error;
  181|      0|    }
  182|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  183|       |
  184|      0|error:
  185|      0|    return _PyStatus_ERR("Can't initialize interpolation types");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  186|      2|}

_PyLazyImport_New:
   15|      8|{
   16|      8|    PyLazyImportObject *m;
   17|      8|    if (!name || !PyUnicode_Check(name)) {
  ------------------
  |  |  103|      8|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (17:9): [True: 0, False: 8]
  |  Branch (17:18): [True: 0, False: 8]
  ------------------
   18|      0|        PyErr_SetString(PyExc_TypeError, "expected str for name");
   19|      0|        return NULL;
   20|      0|    }
   21|      8|    if (fromlist == Py_None || fromlist == NULL) {
  ------------------
  |  |  616|     16|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (21:9): [True: 8, False: 0]
  |  Branch (21:32): [True: 0, False: 0]
  ------------------
   22|      8|        fromlist = NULL;
   23|      8|    }
   24|      0|    else if (!PyUnicode_Check(fromlist) && !PyTuple_Check(fromlist)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
                  else if (!PyUnicode_Check(fromlist) && !PyTuple_Check(fromlist)) {
  ------------------
  |  |   27|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (24:14): [True: 0, False: 0]
  |  Branch (24:44): [True: 0, False: 0]
  ------------------
   25|      0|        PyErr_SetString(PyExc_TypeError,
   26|      0|            "lazy_import: fromlist must be None, a string, or a tuple");
   27|      0|        return NULL;
   28|      0|    }
   29|      8|    m = PyObject_GC_New(PyLazyImportObject, &PyLazyImport_Type);
  ------------------
  |  |  181|      8|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   30|      8|    if (m == NULL) {
  ------------------
  |  Branch (30:9): [True: 0, False: 8]
  ------------------
   31|      0|        return NULL;
   32|      0|    }
   33|      8|    m->lz_builtins = Py_XNewRef(builtins);
  ------------------
  |  |  551|      8|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   34|      8|    m->lz_from = Py_NewRef(name);
  ------------------
  |  |  550|      8|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   35|      8|    m->lz_attr = Py_XNewRef(fromlist);
  ------------------
  |  |  551|      8|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   36|       |
   37|       |    // Capture frame information for the original import location.
   38|      8|    m->lz_code = NULL;
   39|      8|    m->lz_instr_offset = -1;
   40|       |
   41|      8|    if (frame != NULL) {
  ------------------
  |  Branch (41:9): [True: 8, False: 0]
  ------------------
   42|      8|        PyCodeObject *code = _PyFrame_GetCode(frame);
   43|      8|        if (code != NULL) {
  ------------------
  |  Branch (43:13): [True: 8, False: 0]
  ------------------
   44|      8|            m->lz_code = (PyCodeObject *)Py_NewRef(code);
  ------------------
  |  |  550|      8|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   45|       |            // Calculate the instruction offset from the current frame.
   46|      8|            m->lz_instr_offset = _PyInterpreterFrame_LASTI(frame);
  ------------------
  |  |   18|      8|    ((int)((IF)->instr_ptr - _PyFrame_GetBytecode((IF))))
  ------------------
   47|      8|        }
   48|      8|    }
   49|       |
   50|      8|    _PyObject_GC_TRACK(m);
  ------------------
  |  |  513|      8|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   51|      8|    return (PyObject *)m;
   52|      8|}

PyList_New:
  242|    756|{
  243|    756|    if (size < 0) {
  ------------------
  |  Branch (243:9): [True: 0, False: 756]
  ------------------
  244|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  245|      0|        return NULL;
  246|      0|    }
  247|       |
  248|    756|    PyListObject *op = _Py_FREELIST_POP(PyListObject, lists);
  ------------------
  |  |   43|    756|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|    756|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  249|    756|    if (op == NULL) {
  ------------------
  |  Branch (249:9): [True: 102, False: 654]
  ------------------
  250|    102|        op = PyObject_GC_New(PyListObject, &PyList_Type);
  ------------------
  |  |  181|    102|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|    102|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  251|    102|        if (op == NULL) {
  ------------------
  |  Branch (251:13): [True: 0, False: 102]
  ------------------
  252|      0|            return NULL;
  253|      0|        }
  254|    102|    }
  255|    756|    if (size <= 0) {
  ------------------
  |  Branch (255:9): [True: 668, False: 88]
  ------------------
  256|    668|        op->ob_item = NULL;
  257|    668|    }
  258|     88|    else {
  259|       |#ifdef Py_GIL_DISABLED
  260|       |        _PyListArray *array = list_allocate_array(size);
  261|       |        if (array == NULL) {
  262|       |            Py_DECREF(op);
  263|       |            return PyErr_NoMemory();
  264|       |        }
  265|       |        memset(&array->ob_item, 0, size * sizeof(PyObject *));
  266|       |        op->ob_item = array->ob_item;
  267|       |#else
  268|     88|        op->ob_item = (PyObject **) PyMem_Calloc(size, sizeof(PyObject *));
  269|     88|#endif
  270|     88|        if (op->ob_item == NULL) {
  ------------------
  |  Branch (270:13): [True: 0, False: 88]
  ------------------
  271|      0|            Py_DECREF(op);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  272|      0|            return PyErr_NoMemory();
  273|      0|        }
  274|     88|    }
  275|    756|    Py_SET_SIZE(op, size);
  ------------------
  |  |  216|    756|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    756|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    756|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  276|    756|    op->allocated = size;
  277|    756|    _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|    756|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    756|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    756|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  278|    756|    return (PyObject *) op;
  279|    756|}
PyList_Size:
  310|      4|{
  311|      4|    if (!PyList_Check(op)) {
  ------------------
  |  |   25|      4|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (311:9): [True: 0, False: 4]
  ------------------
  312|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  313|      0|        return -1;
  314|      0|    }
  315|      4|    else {
  316|      4|        return PyList_GET_SIZE(op);
  ------------------
  |  |   38|      4|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  317|      4|    }
  318|      4|}
PyList_GetItemRef:
  407|      2|{
  408|      2|    if (!PyList_Check(op)) {
  ------------------
  |  |   25|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (408:9): [True: 0, False: 2]
  ------------------
  409|      0|        PyErr_SetString(PyExc_TypeError, "expected a list");
  410|      0|        return NULL;
  411|      0|    }
  412|      2|    PyObject *item = list_get_item_ref((PyListObject *)op, i);
  413|      2|    if (item == NULL) {
  ------------------
  |  Branch (413:9): [True: 0, False: 2]
  ------------------
  414|      0|        _Py_DECLARE_STR(list_err, "list index out of range");
  415|      0|        PyErr_SetObject(PyExc_IndexError, &_Py_STR(list_err));
  ------------------
  |  |  919|      0|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  416|      0|        return NULL;
  417|      0|    }
  418|      2|    return item;
  419|      2|}
PyList_SetItem:
  456|      4|{
  457|      4|    if (!PyList_Check(op)) {
  ------------------
  |  |   25|      4|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (457:9): [True: 0, False: 4]
  ------------------
  458|      0|        Py_XDECREF(newitem);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  459|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  460|      0|        return -1;
  461|      0|    }
  462|      4|    int ret;
  463|      4|    PyListObject *self = ((PyListObject *)op);
  464|      4|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      4|    {
  ------------------
  465|      4|    if (!valid_index(i, Py_SIZE(self))) {
  ------------------
  |  |  214|      4|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (465:9): [True: 0, False: 4]
  ------------------
  466|      0|        Py_XDECREF(newitem);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  467|      0|        PyErr_SetString(PyExc_IndexError,
  468|      0|                        "list assignment index out of range");
  469|      0|        ret = -1;
  470|      0|        goto end;
  471|      0|    }
  472|      4|    PyObject *tmp = self->ob_item[i];
  473|      4|    FT_ATOMIC_STORE_PTR_RELEASE(self->ob_item[i], newitem);
  ------------------
  |  |  164|      4|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  474|      4|    Py_XDECREF(tmp);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  475|      4|    ret = 0;
  476|      4|end:;
  477|      4|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      4|    }
  ------------------
  478|      4|    return ret;
  479|      4|}
PyList_Insert:
  511|      2|{
  512|      2|    if (!PyList_Check(op)) {
  ------------------
  |  |   25|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (512:9): [True: 0, False: 2]
  ------------------
  513|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  514|      0|        return -1;
  515|      0|    }
  516|      2|    PyListObject *self = (PyListObject *)op;
  517|      2|    int err;
  518|      2|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      2|    {
  ------------------
  519|      2|    err = ins1(self, where, newitem);
  520|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
  521|      2|    return err;
  522|      2|}
_PyList_AppendTakeRefListResize:
  527|    928|{
  528|    928|    Py_ssize_t len = Py_SIZE(self);
  ------------------
  |  |  214|    928|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    928|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    928|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  529|    928|    assert(self->allocated == -1 || self->allocated == len);
  ------------------
  |  Branch (529:5): [True: 0, False: 928]
  |  Branch (529:5): [True: 928, False: 0]
  ------------------
  530|    928|    if (list_resize(self, len + 1) < 0) {
  ------------------
  |  Branch (530:9): [True: 0, False: 928]
  ------------------
  531|      0|        Py_DECREF(newitem);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  532|      0|        return -1;
  533|      0|    }
  534|    928|    FT_ATOMIC_STORE_PTR_RELEASE(self->ob_item[len], newitem);
  ------------------
  |  |  164|    928|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  535|    928|    return 0;
  536|    928|}
PyList_Append:
  540|  10.7k|{
  541|  10.7k|    if (PyList_Check(op) && (newitem != NULL)) {
  ------------------
  |  |   25|  10.7k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  21.5k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 10.7k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (541:29): [True: 10.7k, False: 0]
  ------------------
  542|  10.7k|        int ret;
  543|  10.7k|        Py_BEGIN_CRITICAL_SECTION(op);
  ------------------
  |  |   51|  10.7k|    {
  ------------------
  544|  10.7k|        ret = _PyList_AppendTakeRef((PyListObject *)op, Py_NewRef(newitem));
  ------------------
  |  |  550|  10.7k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  10.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  545|  10.7k|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|  10.7k|    }
  ------------------
  546|  10.7k|        return ret;
  547|  10.7k|    }
  548|      0|    PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  549|      0|    return -1;
  550|  10.7k|}
_PyList_BinarySlice:
  721|      8|{
  722|      8|    assert(PyList_CheckExact(container));
  ------------------
  |  Branch (722:5): [True: 8, False: 0]
  ------------------
  723|      8|    Py_ssize_t istart = 0;
  724|      8|    Py_ssize_t istop = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|      8|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  725|       |    /* Unpack the index values before acquiring the lock, since
  726|       |     * _PyEval_SliceIndex may call __index__ which could execute
  727|       |     * arbitrary Python code. */
  728|      8|    if (!_PyEval_SliceIndex(start, &istart)) {
  ------------------
  |  Branch (728:9): [True: 0, False: 8]
  ------------------
  729|      0|        return NULL;
  730|      0|    }
  731|      8|    if (!_PyEval_SliceIndex(stop, &istop)) {
  ------------------
  |  Branch (731:9): [True: 0, False: 8]
  ------------------
  732|      0|        return NULL;
  733|      0|    }
  734|      8|    PyObject *ret;
  735|      8|    Py_BEGIN_CRITICAL_SECTION(container);
  ------------------
  |  |   51|      8|    {
  ------------------
  736|      8|    Py_ssize_t len = Py_SIZE(container);
  ------------------
  |  |  214|      8|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  737|      8|    PySlice_AdjustIndices(len, &istart, &istop, 1);
  738|      8|    ret = list_slice_lock_held((PyListObject *)container, istart, istop);
  739|      8|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      8|    }
  ------------------
  740|      8|    return ret;
  741|      8|}
_PyList_Concat:
  803|      2|{
  804|      2|    if (!PyList_Check(bb)) {
  ------------------
  |  |   25|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (804:9): [True: 0, False: 2]
  ------------------
  805|      0|        PyErr_Format(PyExc_TypeError,
  806|      0|                  "can only concatenate list (not \"%.200s\") to list",
  807|      0|                  Py_TYPE(bb)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  808|      0|        return NULL;
  809|      0|    }
  810|      2|    PyListObject *a = (PyListObject *)aa;
  811|      2|    PyListObject *b = (PyListObject *)bb;
  812|      2|    PyObject *ret;
  813|      2|    Py_BEGIN_CRITICAL_SECTION2(a, b);
  ------------------
  |  |   57|      2|    {
  ------------------
  814|      2|    ret = list_concat_lock_held(a, b);
  815|      2|    Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|      2|    }
  ------------------
  816|      2|    return ret;
  817|      2|}
_PyList_Extend:
 1534|    134|{
 1535|    134|    return list_extend((PyObject*)self, iterable);
 1536|    134|}
PyList_Sort:
 3213|     68|{
 3214|     68|    if (v == NULL || !PyList_Check(v)) {
  ------------------
  |  |   25|     68|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     68|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3214:9): [True: 0, False: 68]
  |  Branch (3214:22): [True: 0, False: 68]
  ------------------
 3215|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3216|      0|        return -1;
 3217|      0|    }
 3218|     68|    Py_BEGIN_CRITICAL_SECTION(v);
  ------------------
  |  |   51|     68|    {
  ------------------
 3219|     68|    v = list_sort_impl((PyListObject *)v, NULL, 0);
 3220|     68|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     68|    }
  ------------------
 3221|     68|    if (v == NULL)
  ------------------
  |  Branch (3221:9): [True: 0, False: 68]
  ------------------
 3222|      0|        return -1;
 3223|     68|    Py_DECREF(v);
  ------------------
  |  |  430|     68|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3224|     68|    return 0;
 3225|     68|}
PyList_AsTuple:
 3262|    142|{
 3263|    142|    if (v == NULL || !PyList_Check(v)) {
  ------------------
  |  |   25|    142|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    142|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3263:9): [True: 0, False: 142]
  |  Branch (3263:22): [True: 0, False: 142]
  ------------------
 3264|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3265|      0|        return NULL;
 3266|      0|    }
 3267|    142|    PyObject *ret;
 3268|    142|    PyListObject *self = (PyListObject *)v;
 3269|    142|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|    142|    {
  ------------------
 3270|    142|    ret = PyTuple_FromArray(self->ob_item, Py_SIZE(v));
  ------------------
  |  |  214|    142|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    142|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    142|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3271|    142|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    142|    }
  ------------------
 3272|    142|    return ret;
 3273|    142|}
_PyList_AsTupleAndClear:
 3277|      8|{
 3278|      8|    assert(self != NULL);
  ------------------
  |  Branch (3278:5): [True: 8, False: 0]
  ------------------
 3279|      8|    PyObject *ret;
 3280|      8|    if (self->ob_item == NULL) {
  ------------------
  |  Branch (3280:9): [True: 0, False: 8]
  ------------------
 3281|      0|        return PyTuple_New(0);
 3282|      0|    }
 3283|      8|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      8|    {
  ------------------
 3284|      8|    PyObject **items = self->ob_item;
 3285|      8|    Py_ssize_t size = Py_SIZE(self);
  ------------------
  |  |  214|      8|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3286|      8|    Py_SET_SIZE(self, 0);
  ------------------
  |  |  216|      8|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      8|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3287|      8|    ret = _PyTuple_FromArraySteal(items, size);
 3288|      8|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      8|    }
  ------------------
 3289|      8|    return ret;
 3290|      8|}
_PyList_FromStackRefStealOnSuccess:
 3294|    410|{
 3295|    410|    if (n == 0) {
  ------------------
  |  Branch (3295:9): [True: 370, False: 40]
  ------------------
 3296|    370|        return PyList_New(0);
 3297|    370|    }
 3298|       |
 3299|     40|    PyListObject *list = (PyListObject *)PyList_New(n);
 3300|     40|    if (list == NULL) {
  ------------------
  |  Branch (3300:9): [True: 0, False: 40]
  ------------------
 3301|      0|        return NULL;
 3302|      0|    }
 3303|       |
 3304|     40|    PyObject **dst = list->ob_item;
 3305|     98|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (3305:28): [True: 58, False: 40]
  ------------------
 3306|     58|        dst[i] = PyStackRef_AsPyObjectSteal(src[i]);
 3307|     58|    }
 3308|       |
 3309|     40|    return (PyObject *)list;
 3310|     40|}
listobject.c:valid_index:
  322|  3.21k|{
  323|       |    /* The cast to size_t lets us use just a single comparison
  324|       |       to check whether i is in the range: 0 <= i < limit.
  325|       |
  326|       |       See:  Section 14.2 "Bounds Checking" in the Agner Fog
  327|       |       optimization manual found at:
  328|       |       https://www.agner.org/optimize/optimizing_cpp.pdf
  329|       |    */
  330|  3.21k|    return (size_t) i < (size_t) limit;
  331|  3.21k|}
listobject.c:list_get_item_ref:
  382|  2.11k|{
  383|  2.11k|    if (!valid_index(i, Py_SIZE(op))) {
  ------------------
  |  |  214|  2.11k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (383:9): [True: 26, False: 2.08k]
  ------------------
  384|     26|        return NULL;
  385|     26|    }
  386|  2.08k|    return Py_NewRef(PyList_GET_ITEM(op, i));
  ------------------
  |  |  550|  2.08k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  2.08k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.16k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (37:38): [True: 2.08k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  387|  2.08k|}
listobject.c:ins1:
  483|      4|{
  484|      4|    Py_ssize_t i, n = Py_SIZE(self);
  ------------------
  |  |  214|      4|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  485|      4|    PyObject **items;
  486|      4|    if (v == NULL) {
  ------------------
  |  Branch (486:9): [True: 0, False: 4]
  ------------------
  487|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  488|      0|        return -1;
  489|      0|    }
  490|       |
  491|      4|    assert((size_t)n + 1 < PY_SSIZE_T_MAX);
  ------------------
  |  Branch (491:5): [True: 4, False: 0]
  ------------------
  492|      4|    if (list_resize(self, n+1) < 0)
  ------------------
  |  Branch (492:9): [True: 0, False: 4]
  ------------------
  493|      0|        return -1;
  494|       |
  495|      4|    if (where < 0) {
  ------------------
  |  Branch (495:9): [True: 0, False: 4]
  ------------------
  496|      0|        where += n;
  497|      0|        if (where < 0)
  ------------------
  |  Branch (497:13): [True: 0, False: 0]
  ------------------
  498|      0|            where = 0;
  499|      0|    }
  500|      4|    if (where > n)
  ------------------
  |  Branch (500:9): [True: 0, False: 4]
  ------------------
  501|      0|        where = n;
  502|      4|    items = self->ob_item;
  503|      6|    for (i = n; --i >= where; )
  ------------------
  |  Branch (503:17): [True: 2, False: 4]
  ------------------
  504|      2|        FT_ATOMIC_STORE_PTR_RELEASE(items[i+1], items[i]);
  ------------------
  |  |  164|      6|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  505|      4|    FT_ATOMIC_STORE_PTR_RELEASE(items[where], Py_NewRef(v));
  ------------------
  |  |  164|      4|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  506|      4|    return 0;
  507|      4|}
listobject.c:list_resize:
  105|  1.02k|{
  106|  1.02k|    size_t new_allocated, target_bytes;
  107|  1.02k|    Py_ssize_t allocated = self->allocated;
  108|       |
  109|       |    /* Bypass realloc() when a previous overallocation is large enough
  110|       |       to accommodate the newsize.  If the newsize falls lower than half
  111|       |       the allocated size, then proceed with the realloc() to shrink the list.
  112|       |    */
  113|  1.02k|    if (allocated >= newsize && newsize >= (allocated >> 1)) {
  ------------------
  |  Branch (113:9): [True: 74, False: 954]
  |  Branch (113:33): [True: 48, False: 26]
  ------------------
  114|     48|        assert(self->ob_item != NULL || newsize == 0);
  ------------------
  |  Branch (114:9): [True: 48, False: 0]
  |  Branch (114:9): [True: 0, False: 0]
  ------------------
  115|     48|        Py_SET_SIZE(self, newsize);
  ------------------
  |  |  216|     48|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|     48|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  116|     48|        return 0;
  117|     48|    }
  118|       |
  119|       |    /* This over-allocates proportional to the list size, making room
  120|       |     * for additional growth.  The over-allocation is mild, but is
  121|       |     * enough to give linear-time amortized behavior over a long
  122|       |     * sequence of appends() in the presence of a poorly-performing
  123|       |     * system realloc().
  124|       |     * Add padding to make the allocated size multiple of 4.
  125|       |     * The growth pattern is:  0, 4, 8, 16, 24, 32, 40, 52, 64, 76, ...
  126|       |     * Note: new_allocated won't overflow because the largest possible value
  127|       |     *       is PY_SSIZE_T_MAX * (9 / 8) + 6 which always fits in a size_t.
  128|       |     */
  129|    980|    new_allocated = ((size_t)newsize + (newsize >> 3) + 6) & ~(size_t)3;
  130|       |    /* Do not overallocate if the new size is closer to overallocated size
  131|       |     * than to the old size.
  132|       |     */
  133|    980|    if (newsize - Py_SIZE(self) > (Py_ssize_t)(new_allocated - newsize))
  ------------------
  |  |  214|    980|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    980|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    980|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (133:9): [True: 14, False: 966]
  ------------------
  134|     14|        new_allocated = ((size_t)newsize + 3) & ~(size_t)3;
  135|       |
  136|    980|    if (newsize == 0)
  ------------------
  |  Branch (136:9): [True: 4, False: 976]
  ------------------
  137|      4|        new_allocated = 0;
  138|       |
  139|    980|    ensure_shared_on_resize(self);
  140|       |
  141|       |#ifdef Py_GIL_DISABLED
  142|       |    _PyListArray *array = list_allocate_array(new_allocated);
  143|       |    if (array == NULL) {
  144|       |        if (newsize < allocated) {
  145|       |            // Never fail when shrinking allocations
  146|       |            Py_SET_SIZE(self, newsize);
  147|       |            return 0;
  148|       |        }
  149|       |        PyErr_NoMemory();
  150|       |        return -1;
  151|       |    }
  152|       |    PyObject **old_items = self->ob_item;
  153|       |    if (self->ob_item) {
  154|       |        if (new_allocated < (size_t)allocated) {
  155|       |            target_bytes = new_allocated * sizeof(PyObject*);
  156|       |        }
  157|       |        else {
  158|       |            target_bytes = allocated * sizeof(PyObject*);
  159|       |        }
  160|       |        memcpy(array->ob_item, self->ob_item, target_bytes);
  161|       |    }
  162|       |    if (new_allocated > (size_t)allocated) {
  163|       |        memset(array->ob_item + allocated, 0, sizeof(PyObject *) * (new_allocated - allocated));
  164|       |    }
  165|       |     _Py_atomic_store_ptr_release(&self->ob_item, &array->ob_item);
  166|       |    self->allocated = new_allocated;
  167|       |    Py_SET_SIZE(self, newsize);
  168|       |    if (old_items != NULL) {
  169|       |        free_list_items(old_items, _PyObject_GC_IS_SHARED(self));
  170|       |    }
  171|       |#else
  172|    980|    PyObject **items;
  173|    980|    if (new_allocated <= (size_t)PY_SSIZE_T_MAX / sizeof(PyObject *)) {
  ------------------
  |  |  137|    980|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (173:9): [True: 980, False: 0]
  ------------------
  174|    980|        target_bytes = new_allocated * sizeof(PyObject *);
  175|    980|        items = (PyObject **)PyMem_Realloc(self->ob_item, target_bytes);
  176|    980|    }
  177|      0|    else {
  178|       |        // integer overflow
  179|      0|        items = NULL;
  180|      0|    }
  181|    980|    if (items == NULL) {
  ------------------
  |  Branch (181:9): [True: 0, False: 980]
  ------------------
  182|      0|        if (newsize < allocated) {
  ------------------
  |  Branch (182:13): [True: 0, False: 0]
  ------------------
  183|       |            // Never fail when shrinking allocations
  184|      0|            Py_SET_SIZE(self, newsize);
  ------------------
  |  |  216|      0|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      0|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  185|      0|            return 0;
  186|      0|        }
  187|      0|        PyErr_NoMemory();
  188|      0|        return -1;
  189|      0|    }
  190|    980|    self->ob_item = items;
  191|    980|    Py_SET_SIZE(self, newsize);
  ------------------
  |  |  216|    980|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    980|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    980|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  192|    980|    self->allocated = new_allocated;
  193|    980|#endif
  194|    980|    return 0;
  195|    980|}
listobject.c:ensure_shared_on_resize:
   77|    980|{
   78|       |#ifdef Py_GIL_DISABLED
   79|       |    // We can't use _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED here because
   80|       |    // the `CALL_LIST_APPEND` bytecode handler may lock the list without
   81|       |    // a critical section.
   82|       |    assert(Py_REFCNT(self) == 1 || PyMutex_IsLocked(&_PyObject_CAST(self)->ob_mutex));
   83|       |
   84|       |    // Ensure that the list array is freed using QSBR if we are not the
   85|       |    // owning thread.
   86|       |    if (!_Py_IsOwnedByCurrentThread((PyObject *)self) &&
   87|       |        !_PyObject_GC_IS_SHARED(self))
   88|       |    {
   89|       |        _PyObject_GC_SET_SHARED(self);
   90|       |    }
   91|       |#endif
   92|    980|}
listobject.c:list_slice_lock_held:
  697|     10|{
  698|     10|    PyListObject *np;
  699|     10|    PyObject **src, **dest;
  700|     10|    Py_ssize_t i, len;
  701|     10|    len = ihigh - ilow;
  702|     10|    if (len <= 0) {
  ------------------
  |  Branch (702:9): [True: 0, False: 10]
  ------------------
  703|      0|        return PyList_New(0);
  704|      0|    }
  705|     10|    np = (PyListObject *) list_new_prealloc(len);
  706|     10|    if (np == NULL)
  ------------------
  |  Branch (706:9): [True: 0, False: 10]
  ------------------
  707|      0|        return NULL;
  708|       |
  709|     10|    src = a->ob_item + ilow;
  710|     10|    dest = np->ob_item;
  711|     28|    for (i = 0; i < len; i++) {
  ------------------
  |  Branch (711:17): [True: 18, False: 10]
  ------------------
  712|     18|        PyObject *v = src[i];
  713|     18|        dest[i] = Py_NewRef(v);
  ------------------
  |  |  550|     18|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  714|     18|    }
  715|     10|    Py_SET_SIZE(np, len);
  ------------------
  |  |  216|     10|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|     10|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  716|     10|    return (PyObject *)np;
  717|     10|}
listobject.c:list_new_prealloc:
  283|     12|{
  284|     12|    assert(size > 0);
  ------------------
  |  Branch (284:5): [True: 12, False: 0]
  ------------------
  285|     12|    PyListObject *op = (PyListObject *) PyList_New(0);
  286|     12|    if (op == NULL) {
  ------------------
  |  Branch (286:9): [True: 0, False: 12]
  ------------------
  287|      0|        return NULL;
  288|      0|    }
  289|     12|    assert(op->ob_item == NULL);
  ------------------
  |  Branch (289:5): [True: 12, False: 0]
  ------------------
  290|       |#ifdef Py_GIL_DISABLED
  291|       |    _PyListArray *array = list_allocate_array(size);
  292|       |    if (array == NULL) {
  293|       |        Py_DECREF(op);
  294|       |        return PyErr_NoMemory();
  295|       |    }
  296|       |    op->ob_item = array->ob_item;
  297|       |#else
  298|     12|    op->ob_item = PyMem_New(PyObject *, size);
  ------------------
  |  |   64|     12|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  ------------------
  |  |  |  |  137|     12|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  |  |  |  Branch (64:5): [True: 0, False: 12]
  |  |  ------------------
  |  |   65|     12|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  ------------------
  299|     12|    if (op->ob_item == NULL) {
  ------------------
  |  Branch (299:9): [True: 0, False: 12]
  ------------------
  300|      0|        Py_DECREF(op);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  301|      0|        return PyErr_NoMemory();
  302|      0|    }
  303|     12|#endif
  304|     12|    op->allocated = size;
  305|     12|    return (PyObject *) op;
  306|     12|}
listobject.c:list_concat_lock_held:
  771|      2|{
  772|      2|    Py_ssize_t size;
  773|      2|    Py_ssize_t i;
  774|      2|    PyObject **src, **dest;
  775|      2|    PyListObject *np;
  776|      2|    assert((size_t)Py_SIZE(a) + (size_t)Py_SIZE(b) < PY_SSIZE_T_MAX);
  ------------------
  |  Branch (776:5): [True: 2, False: 0]
  ------------------
  777|      2|    size = Py_SIZE(a) + Py_SIZE(b);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  size = Py_SIZE(a) + Py_SIZE(b);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  778|      2|    if (size == 0) {
  ------------------
  |  Branch (778:9): [True: 0, False: 2]
  ------------------
  779|      0|        return PyList_New(0);
  780|      0|    }
  781|      2|    np = (PyListObject *) list_new_prealloc(size);
  782|      2|    if (np == NULL) {
  ------------------
  |  Branch (782:9): [True: 0, False: 2]
  ------------------
  783|      0|        return NULL;
  784|      0|    }
  785|      2|    src = a->ob_item;
  786|      2|    dest = np->ob_item;
  787|      4|    for (i = 0; i < Py_SIZE(a); i++) {
  ------------------
  |  |  214|      4|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (787:17): [True: 2, False: 2]
  ------------------
  788|      2|        PyObject *v = src[i];
  789|      2|        dest[i] = Py_NewRef(v);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  790|      2|    }
  791|      2|    src = b->ob_item;
  792|      2|    dest = np->ob_item + Py_SIZE(a);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  793|      6|    for (i = 0; i < Py_SIZE(b); i++) {
  ------------------
  |  |  214|      6|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (793:17): [True: 4, False: 2]
  ------------------
  794|      4|        PyObject *v = src[i];
  795|      4|        dest[i] = Py_NewRef(v);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  796|      4|    }
  797|      2|    Py_SET_SIZE(np, size);
  ------------------
  |  |  216|      2|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      2|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  798|      2|    return (PyObject *)np;
  799|      2|}
listobject.c:list_ass_slice_lock_held:
  951|     62|{
  952|       |    /* Because [X]DECREF can recursively invoke list operations on
  953|       |       this list, we must postpone all [X]DECREF activity until
  954|       |       after the list is back in its canonical shape.  Therefore
  955|       |       we must allocate an additional array, 'recycle', into which
  956|       |       we temporarily copy the items that are deleted from the
  957|       |       list. :-( */
  958|     62|    PyObject *recycle_on_stack[8];
  959|     62|    PyObject **recycle = recycle_on_stack; /* will allocate more if needed */
  960|     62|    PyObject **item;
  961|     62|    PyObject **vitem = NULL;
  962|     62|    PyObject *v_as_SF = NULL; /* PySequence_Fast(v) */
  963|     62|    Py_ssize_t n; /* # of elements in replacement list */
  964|     62|    Py_ssize_t norig; /* # of elements in list getting replaced */
  965|     62|    Py_ssize_t d; /* Change in size */
  966|     62|    Py_ssize_t k;
  967|     62|    size_t s;
  968|     62|    int result = -1;            /* guilty until proved innocent */
  969|     62|#define b ((PyListObject *)v)
  970|     62|    if (v == NULL)
  ------------------
  |  Branch (970:9): [True: 60, False: 2]
  ------------------
  971|     60|        n = 0;
  972|      2|    else {
  973|      2|        v_as_SF = PySequence_Fast(v, "can only assign an iterable");
  974|      2|        if(v_as_SF == NULL)
  ------------------
  |  Branch (974:12): [True: 0, False: 2]
  ------------------
  975|      0|            goto Error;
  976|      2|        n = PySequence_Fast_GET_SIZE(v_as_SF);
  ------------------
  |  |   92|      2|    (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   25|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   38|      2|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  977|      2|        vitem = PySequence_Fast_ITEMS(v_as_SF);
  ------------------
  |  |  102|      2|    (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
  |  |  ------------------
  |  |  |  |   25|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|      2|                      : ((PyTupleObject *)(sf))->ob_item)
  ------------------
  978|      2|    }
  979|     62|    if (ilow < 0)
  ------------------
  |  Branch (979:9): [True: 0, False: 62]
  ------------------
  980|      0|        ilow = 0;
  981|     62|    else if (ilow > Py_SIZE(a))
  ------------------
  |  |  214|     62|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (981:14): [True: 0, False: 62]
  ------------------
  982|      0|        ilow = Py_SIZE(a);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  983|       |
  984|     62|    if (ihigh < ilow)
  ------------------
  |  Branch (984:9): [True: 0, False: 62]
  ------------------
  985|      0|        ihigh = ilow;
  986|     62|    else if (ihigh > Py_SIZE(a))
  ------------------
  |  |  214|     62|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (986:14): [True: 0, False: 62]
  ------------------
  987|      0|        ihigh = Py_SIZE(a);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  988|       |
  989|     62|    norig = ihigh - ilow;
  990|     62|    assert(norig >= 0);
  ------------------
  |  Branch (990:5): [True: 62, False: 0]
  ------------------
  991|     62|    d = n - norig;
  992|     62|    if (Py_SIZE(a) + d == 0) {
  ------------------
  |  |  214|     62|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (992:9): [True: 60, False: 2]
  ------------------
  993|     60|        Py_XDECREF(v_as_SF);
  ------------------
  |  |  524|     60|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  994|     60|        list_clear(a);
  995|     60|        return 0;
  996|     60|    }
  997|      2|    item = a->ob_item;
  998|       |    /* recycle the items that we are about to remove */
  999|      2|    s = norig * sizeof(PyObject *);
 1000|       |    /* If norig == 0, item might be NULL, in which case we may not memcpy from it. */
 1001|      2|    if (s) {
  ------------------
  |  Branch (1001:9): [True: 2, False: 0]
  ------------------
 1002|      2|        if (s > sizeof(recycle_on_stack)) {
  ------------------
  |  Branch (1002:13): [True: 0, False: 2]
  ------------------
 1003|      0|            recycle = (PyObject **)PyMem_Malloc(s);
 1004|      0|            if (recycle == NULL) {
  ------------------
  |  Branch (1004:17): [True: 0, False: 0]
  ------------------
 1005|      0|                PyErr_NoMemory();
 1006|      0|                goto Error;
 1007|      0|            }
 1008|      0|        }
 1009|      2|        memcpy(recycle, &item[ilow], s);
 1010|      2|    }
 1011|       |
 1012|      2|    if (d < 0) { /* Delete -d items */
  ------------------
  |  Branch (1012:9): [True: 0, False: 2]
  ------------------
 1013|      0|        Py_ssize_t tail = Py_SIZE(a) - ihigh;
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1014|      0|        ptr_wise_atomic_memmove(a, &item[ihigh+d], &item[ihigh], tail);
 1015|      0|        (void)list_resize(a, Py_SIZE(a) + d); // NB: shrinking a list can't fail
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1016|      0|        item = a->ob_item;
 1017|      0|    }
 1018|      2|    else if (d > 0) { /* Insert d items */
  ------------------
  |  Branch (1018:14): [True: 0, False: 2]
  ------------------
 1019|      0|        k = Py_SIZE(a);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1020|      0|        if (list_resize(a, k+d) < 0)
  ------------------
  |  Branch (1020:13): [True: 0, False: 0]
  ------------------
 1021|      0|            goto Error;
 1022|      0|        item = a->ob_item;
 1023|      0|        ptr_wise_atomic_memmove(a, &item[ihigh+d], &item[ihigh], k - ihigh);
 1024|      0|    }
 1025|      8|    for (k = 0; k < n; k++, ilow++) {
  ------------------
  |  Branch (1025:17): [True: 6, False: 2]
  ------------------
 1026|      6|        PyObject *w = vitem[k];
 1027|      6|        FT_ATOMIC_STORE_PTR_RELEASE(item[ilow], Py_XNewRef(w));
  ------------------
  |  |  164|      6|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 1028|      6|    }
 1029|      8|    for (k = norig - 1; k >= 0; --k)
  ------------------
  |  Branch (1029:25): [True: 6, False: 2]
  ------------------
 1030|      6|        Py_XDECREF(recycle[k]);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1031|      2|    result = 0;
 1032|      2| Error:
 1033|      2|    if (recycle != recycle_on_stack)
  ------------------
  |  Branch (1033:9): [True: 0, False: 2]
  ------------------
 1034|      0|        PyMem_Free(recycle);
 1035|      2|    Py_XDECREF(v_as_SF);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1036|      2|    return result;
 1037|      2|#undef b
 1038|      2|}
listobject.c:list_extend_impl:
 1525|    176|{
 1526|    176|    if (_list_extend(self, iterable) < 0) {
  ------------------
  |  Branch (1526:9): [True: 0, False: 176]
  ------------------
 1527|      0|        return NULL;
 1528|      0|    }
 1529|    176|    Py_RETURN_NONE;
  ------------------
  |  |  628|    176|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|    176|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1530|    176|}
listobject.c:_list_extend:
 1458|    224|{
 1459|       |    // Special case:
 1460|       |    // lists and tuples which can use PySequence_Fast ops
 1461|    224|    int res = -1;
 1462|    224|    if ((PyObject *)self == iterable) {
  ------------------
  |  Branch (1462:9): [True: 0, False: 224]
  ------------------
 1463|      0|        Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      0|    {
  ------------------
 1464|      0|        res = list_inplace_repeat_lock_held(self, 2);
 1465|      0|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 1466|      0|    }
 1467|    224|    else if (PyList_CheckExact(iterable)) {
  ------------------
  |  |   26|    224|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|    224|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    224|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    224|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 72, False: 152]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1468|     72|        Py_BEGIN_CRITICAL_SECTION2(self, iterable);
  ------------------
  |  |   57|     72|    {
  ------------------
 1469|     72|        res = list_extend_lock_held(self, iterable);
 1470|     72|        Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|     72|    }
  ------------------
 1471|     72|    }
 1472|    152|    else if (PyTuple_CheckExact(iterable)) {
  ------------------
  |  |   28|    152|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|    152|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    152|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    152|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 72, False: 80]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1473|     72|        Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|     72|    {
  ------------------
 1474|     72|        res = list_extend_lock_held(self, iterable);
 1475|     72|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     72|    }
  ------------------
 1476|     72|    }
 1477|     80|    else if (PyAnySet_CheckExact(iterable)) {
  ------------------
  |  |   29|     80|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  215|    160|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 80]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  215|     80|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 80]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1478|      0|        Py_BEGIN_CRITICAL_SECTION2(self, iterable);
  ------------------
  |  |   57|      0|    {
  ------------------
 1479|      0|        res = list_extend_set(self, (PySetObject *)iterable);
 1480|      0|        Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|      0|    }
  ------------------
 1481|      0|    }
 1482|     80|    else if (PyDict_CheckExact(iterable)) {
  ------------------
  |  |   19|     80|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|     80|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 80]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1483|      0|        Py_BEGIN_CRITICAL_SECTION2(self, iterable);
  ------------------
  |  |   57|      0|    {
  ------------------
 1484|      0|        res = list_extend_dict(self, (PyDictObject *)iterable, 0 /*keys*/);
 1485|      0|        Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|      0|    }
  ------------------
 1486|      0|    }
 1487|     80|    else if (Py_IS_TYPE(iterable, &PyDictKeys_Type)) {
  ------------------
  |  |  215|     80|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 80]
  |  |  ------------------
  ------------------
 1488|      0|        PyDictObject *dict = ((_PyDictViewObject *)iterable)->dv_dict;
 1489|      0|        Py_BEGIN_CRITICAL_SECTION2(self, dict);
  ------------------
  |  |   57|      0|    {
  ------------------
 1490|      0|        res = list_extend_dict(self, dict, 0 /*keys*/);
 1491|      0|        Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|      0|    }
  ------------------
 1492|      0|    }
 1493|     80|    else if (Py_IS_TYPE(iterable, &PyDictValues_Type)) {
  ------------------
  |  |  215|     80|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 80]
  |  |  ------------------
  ------------------
 1494|      0|        PyDictObject *dict = ((_PyDictViewObject *)iterable)->dv_dict;
 1495|      0|        Py_BEGIN_CRITICAL_SECTION2(self, dict);
  ------------------
  |  |   57|      0|    {
  ------------------
 1496|      0|        res = list_extend_dict(self, dict, 1 /*values*/);
 1497|      0|        Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|      0|    }
  ------------------
 1498|      0|    }
 1499|     80|    else if (Py_IS_TYPE(iterable, &PyDictItems_Type)) {
  ------------------
  |  |  215|     80|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 80]
  |  |  ------------------
  ------------------
 1500|      0|        PyDictObject *dict = ((_PyDictViewObject *)iterable)->dv_dict;
 1501|      0|        Py_BEGIN_CRITICAL_SECTION2(self, dict);
  ------------------
  |  |   57|      0|    {
  ------------------
 1502|      0|        res = list_extend_dictitems(self, dict);
 1503|      0|        Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|      0|    }
  ------------------
 1504|      0|    }
 1505|     80|    else {
 1506|     80|        Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|     80|    {
  ------------------
 1507|     80|        res = list_extend_iter_lock_held(self, iterable);
 1508|     80|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     80|    }
  ------------------
 1509|     80|    }
 1510|    224|    return res;
 1511|    224|}
listobject.c:list_extend_lock_held:
 1356|    144|{
 1357|    144|    PyObject *seq = PySequence_Fast(iterable, "argument must be iterable");
 1358|    144|    if (!seq) {
  ------------------
  |  Branch (1358:9): [True: 0, False: 144]
  ------------------
 1359|      0|        return -1;
 1360|      0|    }
 1361|       |
 1362|    144|    int res = list_extend_fast(self, seq);
 1363|    144|    Py_DECREF(seq);
  ------------------
  |  |  430|    144|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    144|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    144|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1364|    144|    return res;
 1365|    144|}
listobject.c:list_extend_fast:
 1243|    144|{
 1244|    144|    Py_ssize_t n = PySequence_Fast_GET_SIZE(iterable);
  ------------------
  |  |   92|    144|    (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   25|    144|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    144|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 72, False: 72]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   38|     72|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   27|     72|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1245|    144|    if (n == 0) {
  ------------------
  |  Branch (1245:9): [True: 0, False: 144]
  ------------------
 1246|       |        /* short circuit when iterable is empty */
 1247|      0|        return 0;
 1248|      0|    }
 1249|       |
 1250|    144|    Py_ssize_t m = Py_SIZE(self);
  ------------------
  |  |  214|    144|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    144|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    144|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1251|       |    // It should not be possible to allocate a list large enough to cause
 1252|       |    // an overflow on any relevant platform.
 1253|    144|    assert(m < PY_SSIZE_T_MAX - n);
  ------------------
  |  Branch (1253:5): [True: 144, False: 0]
  ------------------
 1254|    144|    if (self->ob_item == NULL) {
  ------------------
  |  Branch (1254:9): [True: 118, False: 26]
  ------------------
 1255|    118|        if (list_preallocate_exact(self, n) < 0) {
  ------------------
  |  Branch (1255:13): [True: 0, False: 118]
  ------------------
 1256|      0|            return -1;
 1257|      0|        }
 1258|    118|        Py_SET_SIZE(self, n);
  ------------------
  |  |  216|    118|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    118|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1259|    118|    }
 1260|     26|    else if (list_resize(self, m + n) < 0) {
  ------------------
  |  Branch (1260:14): [True: 0, False: 26]
  ------------------
 1261|      0|        return -1;
 1262|      0|    }
 1263|       |
 1264|       |    // note that we may still have self == iterable here for the
 1265|       |    // situation a.extend(a), but the following code works
 1266|       |    // in that case too.  Just make sure to resize self
 1267|       |    // before calling PySequence_Fast_ITEMS.
 1268|       |    //
 1269|       |    // populate the end of self with iterable's items.
 1270|    144|    PyObject **src = PySequence_Fast_ITEMS(iterable);
  ------------------
  |  |  102|    144|    (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
  |  |  ------------------
  |  |  |  |   25|    144|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    144|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 72, False: 72]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|    144|                      : ((PyTupleObject *)(sf))->ob_item)
  ------------------
 1271|    144|    PyObject **dest = self->ob_item + m;
 1272|  2.18k|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (1272:28): [True: 2.03k, False: 144]
  ------------------
 1273|  2.03k|        PyObject *o = src[i];
 1274|  2.03k|        FT_ATOMIC_STORE_PTR_RELEASE(dest[i], Py_NewRef(o));
  ------------------
  |  |  164|  2.03k|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 1275|  2.03k|    }
 1276|    144|    return 0;
 1277|    144|}
listobject.c:list_preallocate_exact:
  199|    186|{
  200|    186|    PyObject **items;
  201|    186|    assert(self->ob_item == NULL);
  ------------------
  |  Branch (201:5): [True: 186, False: 0]
  ------------------
  202|    186|    assert(size > 0);
  ------------------
  |  Branch (202:5): [True: 186, False: 0]
  ------------------
  203|       |
  204|       |    /* Since the Python memory allocator has granularity of 16 bytes on 64-bit
  205|       |     * platforms (8 on 32-bit), there is no benefit of allocating space for
  206|       |     * the odd number of items, and there is no drawback of rounding the
  207|       |     * allocated size up to the nearest even number.
  208|       |     */
  209|    186|    size = (size + 1) & ~(size_t)1;
  210|       |#ifdef Py_GIL_DISABLED
  211|       |    _PyListArray *array = list_allocate_array(size);
  212|       |    if (array == NULL) {
  213|       |        PyErr_NoMemory();
  214|       |        return -1;
  215|       |    }
  216|       |    items = array->ob_item;
  217|       |    memset(items, 0, size * sizeof(PyObject *));
  218|       |#else
  219|    186|    items = PyMem_New(PyObject*, size);
  ------------------
  |  |   64|    186|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  ------------------
  |  |  |  |  137|    186|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  |  |  |  Branch (64:5): [True: 0, False: 186]
  |  |  ------------------
  |  |   65|    186|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  ------------------
  220|    186|    if (items == NULL) {
  ------------------
  |  Branch (220:9): [True: 0, False: 186]
  ------------------
  221|      0|        PyErr_NoMemory();
  222|      0|        return -1;
  223|      0|    }
  224|    186|#endif
  225|    186|    FT_ATOMIC_STORE_PTR_RELEASE(self->ob_item, items);
  ------------------
  |  |  164|    186|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  226|    186|    self->allocated = size;
  227|    186|    return 0;
  228|    186|}
listobject.c:list_extend_iter_lock_held:
 1281|     80|{
 1282|     80|    PyObject *it = PyObject_GetIter(iterable);
 1283|     80|    if (it == NULL) {
  ------------------
  |  Branch (1283:9): [True: 0, False: 80]
  ------------------
 1284|      0|        return -1;
 1285|      0|    }
 1286|     80|    PyObject *(*iternext)(PyObject *) = *Py_TYPE(it)->tp_iternext;
  ------------------
  |  |  213|     80|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1287|       |
 1288|       |    /* Guess a result list size. */
 1289|     80|    Py_ssize_t n = PyObject_LengthHint(iterable, 8);
 1290|     80|    if (n < 0) {
  ------------------
  |  Branch (1290:9): [True: 0, False: 80]
  ------------------
 1291|      0|        Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1292|      0|        return -1;
 1293|      0|    }
 1294|       |
 1295|     80|    Py_ssize_t m = Py_SIZE(self);
  ------------------
  |  |  214|     80|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1296|     80|    if (m > PY_SSIZE_T_MAX - n) {
  ------------------
  |  |  137|     80|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1296:9): [True: 0, False: 80]
  ------------------
 1297|       |        /* m + n overflowed; on the chance that n lied, and there really
 1298|       |         * is enough room, ignore it.  If n was telling the truth, we'll
 1299|       |         * eventually run out of memory during the loop.
 1300|       |         */
 1301|      0|    }
 1302|     80|    else if (self->ob_item == NULL) {
  ------------------
  |  Branch (1302:14): [True: 68, False: 12]
  ------------------
 1303|     68|        if (n && list_preallocate_exact(self, n) < 0)
  ------------------
  |  Branch (1303:13): [True: 68, False: 0]
  |  Branch (1303:18): [True: 0, False: 68]
  ------------------
 1304|      0|            goto error;
 1305|     68|    }
 1306|     12|    else {
 1307|       |        /* Make room. */
 1308|     12|        if (list_resize(self, m + n) < 0) {
  ------------------
  |  Branch (1308:13): [True: 0, False: 12]
  ------------------
 1309|      0|            goto error;
 1310|      0|        }
 1311|       |
 1312|       |        /* Make the list sane again. */
 1313|     12|        Py_SET_SIZE(self, m);
  ------------------
  |  |  216|     12|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|     12|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1314|     12|    }
 1315|       |
 1316|       |    /* Run iterator to exhaustion. */
 1317|    676|    for (;;) {
 1318|    676|        PyObject *item = iternext(it);
 1319|    676|        if (item == NULL) {
  ------------------
  |  Branch (1319:13): [True: 80, False: 596]
  ------------------
 1320|     80|            if (PyErr_Occurred()) {
  ------------------
  |  Branch (1320:17): [True: 0, False: 80]
  ------------------
 1321|      0|                if (PyErr_ExceptionMatches(PyExc_StopIteration))
  ------------------
  |  Branch (1321:21): [True: 0, False: 0]
  ------------------
 1322|      0|                    PyErr_Clear();
 1323|      0|                else
 1324|      0|                    goto error;
 1325|      0|            }
 1326|     80|            break;
 1327|     80|        }
 1328|       |
 1329|    596|        if (Py_SIZE(self) < self->allocated) {
  ------------------
  |  |  214|    596|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    596|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    596|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1329:13): [True: 596, False: 0]
  ------------------
 1330|    596|            Py_ssize_t len = Py_SIZE(self);
  ------------------
  |  |  214|    596|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    596|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    596|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1331|    596|            FT_ATOMIC_STORE_PTR_RELEASE(self->ob_item[len], item);  // steals item ref
  ------------------
  |  |  164|    596|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 1332|    596|            Py_SET_SIZE(self, len + 1);
  ------------------
  |  |  216|    596|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    596|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    596|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1333|    596|        }
 1334|      0|        else {
 1335|      0|            if (_PyList_AppendTakeRef(self, item) < 0)
  ------------------
  |  Branch (1335:17): [True: 0, False: 0]
  ------------------
 1336|      0|                goto error;
 1337|      0|        }
 1338|    596|    }
 1339|       |
 1340|       |    /* Cut back result list if initial guess was too large. */
 1341|     80|    if (Py_SIZE(self) < self->allocated) {
  ------------------
  |  |  214|     80|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1341:9): [True: 46, False: 34]
  ------------------
 1342|     46|        if (list_resize(self, Py_SIZE(self)) < 0)
  ------------------
  |  |  214|     46|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1342:13): [True: 0, False: 46]
  ------------------
 1343|      0|            goto error;
 1344|     46|    }
 1345|       |
 1346|     80|    Py_DECREF(it);
  ------------------
  |  |  430|     80|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1347|     80|    return 0;
 1348|       |
 1349|      0|  error:
 1350|      0|    Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1351|      0|    return -1;
 1352|     80|}
listobject.c:list_clear:
  904|    116|{
  905|       |    list_clear_impl(a, true);
  906|    116|}
listobject.c:list_clear_impl:
  874|    116|{
  875|    116|    PyObject **items = a->ob_item;
  876|    116|    if (items == NULL) {
  ------------------
  |  Branch (876:9): [True: 0, False: 116]
  ------------------
  877|      0|        return;
  878|      0|    }
  879|       |
  880|       |    /* Because XDECREF can recursively invoke operations on
  881|       |       this list, we make it empty first. */
  882|    116|    Py_ssize_t i = Py_SIZE(a);
  ------------------
  |  |  214|    116|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  883|    116|    Py_SET_SIZE(a, 0);
  ------------------
  |  |  216|    116|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|    116|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  884|    116|    FT_ATOMIC_STORE_PTR_RELEASE(a->ob_item, NULL);
  ------------------
  |  |  164|    116|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  885|    116|    a->allocated = 0;
  886|    234|    while (--i >= 0) {
  ------------------
  |  Branch (886:12): [True: 118, False: 116]
  ------------------
  887|    118|        Py_XDECREF(items[i]);
  ------------------
  |  |  524|    118|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  888|    118|    }
  889|       |#ifdef Py_GIL_DISABLED
  890|       |    if (is_resize) {
  891|       |        ensure_shared_on_resize(a);
  892|       |    }
  893|       |    bool use_qsbr = is_resize && _PyObject_GC_IS_SHARED(a);
  894|       |#else
  895|    116|    bool use_qsbr = false;
  896|    116|#endif
  897|    116|    free_list_items(items, use_qsbr);
  898|       |    // Note that there is no guarantee that the list is actually empty
  899|       |    // at this point, because XDECREF may have populated it indirectly again!
  900|    116|}
listobject.c:free_list_items:
   60|    502|{
   61|       |#ifdef Py_GIL_DISABLED
   62|       |    _PyListArray *array = _Py_CONTAINER_OF(items, _PyListArray, ob_item);
   63|       |    if (use_qsbr) {
   64|       |        size_t size = sizeof(_PyListArray) + array->allocated * sizeof(PyObject *);
   65|       |        _PyMem_FreeDelayed(array, size);
   66|       |    }
   67|       |    else {
   68|       |        PyMem_Free(array);
   69|       |    }
   70|       |#else
   71|    502|    PyMem_Free(items);
   72|    502|#endif
   73|    502|}
listobject.c:list_sort_impl:
 2947|     72|{
 2948|     72|    MergeState ms;
 2949|     72|    Py_ssize_t nremaining;
 2950|     72|    Py_ssize_t minrun;
 2951|     72|    sortslice lo;
 2952|     72|    Py_ssize_t saved_ob_size, saved_allocated;
 2953|     72|    PyObject **saved_ob_item;
 2954|     72|    PyObject **final_ob_item;
 2955|     72|    PyObject *result = NULL;            /* guilty until proved innocent */
 2956|     72|    Py_ssize_t i;
 2957|     72|    PyObject **keys;
 2958|       |
 2959|     72|    assert(self != NULL);
  ------------------
  |  Branch (2959:5): [True: 72, False: 0]
  ------------------
 2960|     72|    assert(PyList_Check(self));
  ------------------
  |  Branch (2960:5): [True: 72, False: 0]
  ------------------
 2961|     72|    if (keyfunc == Py_None)
  ------------------
  |  |  616|     72|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (2961:9): [True: 4, False: 68]
  ------------------
 2962|      4|        keyfunc = NULL;
 2963|       |
 2964|       |    /* The list is temporarily made empty, so that mutations performed
 2965|       |     * by comparison functions can't affect the slice of memory we're
 2966|       |     * sorting (allowing mutations during sorting is a core-dump
 2967|       |     * factory, since ob_item may change).
 2968|       |     */
 2969|     72|    saved_ob_size = Py_SIZE(self);
  ------------------
  |  |  214|     72|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2970|     72|    saved_ob_item = self->ob_item;
 2971|     72|    saved_allocated = self->allocated;
 2972|     72|    Py_SET_SIZE(self, 0);
  ------------------
  |  |  216|     72|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|     72|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2973|     72|    FT_ATOMIC_STORE_PTR_RELEASE(self->ob_item, NULL);
  ------------------
  |  |  164|     72|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 2974|     72|    self->allocated = -1; /* any operation will reset it to >= 0 */
 2975|       |
 2976|     72|    if (keyfunc == NULL) {
  ------------------
  |  Branch (2976:9): [True: 72, False: 0]
  ------------------
 2977|     72|        keys = NULL;
 2978|     72|        lo.keys = saved_ob_item;
 2979|     72|        lo.values = NULL;
 2980|     72|    }
 2981|      0|    else {
 2982|      0|        if (saved_ob_size < MERGESTATE_TEMP_SIZE/2)
  ------------------
  |  | 1731|      0|#define MERGESTATE_TEMP_SIZE 256
  ------------------
  |  Branch (2982:13): [True: 0, False: 0]
  ------------------
 2983|       |            /* Leverage stack space we allocated but won't otherwise use */
 2984|      0|            keys = &ms.temparray[saved_ob_size+1];
 2985|      0|        else {
 2986|      0|            keys = PyMem_Malloc(sizeof(PyObject *) * saved_ob_size);
 2987|      0|            if (keys == NULL) {
  ------------------
  |  Branch (2987:17): [True: 0, False: 0]
  ------------------
 2988|      0|                PyErr_NoMemory();
 2989|      0|                goto keyfunc_fail;
 2990|      0|            }
 2991|      0|        }
 2992|       |
 2993|      0|        for (i = 0; i < saved_ob_size ; i++) {
  ------------------
  |  Branch (2993:21): [True: 0, False: 0]
  ------------------
 2994|      0|            keys[i] = PyObject_CallOneArg(keyfunc, saved_ob_item[i]);
 2995|      0|            if (keys[i] == NULL) {
  ------------------
  |  Branch (2995:17): [True: 0, False: 0]
  ------------------
 2996|      0|                for (i=i-1 ; i>=0 ; i--)
  ------------------
  |  Branch (2996:30): [True: 0, False: 0]
  ------------------
 2997|      0|                    Py_DECREF(keys[i]);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2998|      0|                if (saved_ob_size >= MERGESTATE_TEMP_SIZE/2)
  ------------------
  |  | 1731|      0|#define MERGESTATE_TEMP_SIZE 256
  ------------------
  |  Branch (2998:21): [True: 0, False: 0]
  ------------------
 2999|      0|                    PyMem_Free(keys);
 3000|      0|                goto keyfunc_fail;
 3001|      0|            }
 3002|      0|        }
 3003|       |
 3004|      0|        lo.keys = keys;
 3005|      0|        lo.values = saved_ob_item;
 3006|      0|    }
 3007|       |
 3008|       |
 3009|       |    /* The pre-sort check: here's where we decide which compare function to use.
 3010|       |     * How much optimization is safe? We test for homogeneity with respect to
 3011|       |     * several properties that are expensive to check at compare-time, and
 3012|       |     * set ms appropriately. */
 3013|     72|    if (saved_ob_size > 1) {
  ------------------
  |  Branch (3013:9): [True: 6, False: 66]
  ------------------
 3014|       |        /* Assume the first element is representative of the whole list. */
 3015|      6|        int keys_are_in_tuples = (Py_IS_TYPE(lo.keys[0], &PyTuple_Type) &&
  ------------------
  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 6]
  |  |  ------------------
  ------------------
 3016|      0|                                  Py_SIZE(lo.keys[0]) > 0);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3016:35): [True: 0, False: 0]
  ------------------
 3017|       |
 3018|      6|        PyTypeObject* key_type = (keys_are_in_tuples ?
  ------------------
  |  Branch (3018:35): [True: 0, False: 6]
  ------------------
 3019|      0|                                  Py_TYPE(PyTuple_GET_ITEM(lo.keys[0], 0)) :
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (37:38): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3020|      6|                                  Py_TYPE(lo.keys[0]));
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3021|       |
 3022|      6|        int keys_are_all_same_type = 1;
 3023|      6|        int strings_are_latin = 1;
 3024|      6|        int ints_are_bounded = 1;
 3025|       |
 3026|       |        /* Prove that assumption by checking every key. */
 3027|    840|        for (i=0; i < saved_ob_size; i++) {
  ------------------
  |  Branch (3027:19): [True: 834, False: 6]
  ------------------
 3028|       |
 3029|    834|            if (keys_are_in_tuples &&
  ------------------
  |  Branch (3029:17): [True: 0, False: 834]
  ------------------
 3030|      0|                !(Py_IS_TYPE(lo.keys[i], &PyTuple_Type) && Py_SIZE(lo.keys[i]) != 0)) {
  ------------------
  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
                              !(Py_IS_TYPE(lo.keys[i], &PyTuple_Type) && Py_SIZE(lo.keys[i]) != 0)) {
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3030:60): [True: 0, False: 0]
  ------------------
 3031|      0|                keys_are_in_tuples = 0;
 3032|      0|                keys_are_all_same_type = 0;
 3033|      0|                break;
 3034|      0|            }
 3035|       |
 3036|       |            /* Note: for lists of tuples, key is the first element of the tuple
 3037|       |             * lo.keys[i], not lo.keys[i] itself! We verify type-homogeneity
 3038|       |             * for lists of tuples in the if-statement directly above. */
 3039|    834|            PyObject *key = (keys_are_in_tuples ?
  ------------------
  |  Branch (3039:30): [True: 0, False: 834]
  ------------------
 3040|      0|                             PyTuple_GET_ITEM(lo.keys[i], 0) :
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3040:30): [True: 0, False: 0]
  ------------------
 3041|    834|                             lo.keys[i]);
 3042|       |
 3043|    834|            if (!Py_IS_TYPE(key, key_type)) {
  ------------------
  |  |  215|    834|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    834|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    834|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3043:17): [True: 0, False: 834]
  ------------------
 3044|      0|                keys_are_all_same_type = 0;
 3045|       |                /* If keys are in tuple we must loop over the whole list to make
 3046|       |                   sure all items are tuples */
 3047|      0|                if (!keys_are_in_tuples) {
  ------------------
  |  Branch (3047:21): [True: 0, False: 0]
  ------------------
 3048|      0|                    break;
 3049|      0|                }
 3050|      0|            }
 3051|       |
 3052|    834|            if (keys_are_all_same_type) {
  ------------------
  |  Branch (3052:17): [True: 834, False: 0]
  ------------------
 3053|    834|                if (key_type == &PyLong_Type &&
  ------------------
  |  Branch (3053:21): [True: 0, False: 834]
  ------------------
 3054|      0|                    ints_are_bounded &&
  ------------------
  |  Branch (3054:21): [True: 0, False: 0]
  ------------------
 3055|      0|                    !_PyLong_IsCompact((PyLongObject *)key)) {
  ------------------
  |  Branch (3055:21): [True: 0, False: 0]
  ------------------
 3056|       |
 3057|      0|                    ints_are_bounded = 0;
 3058|      0|                }
 3059|    834|                else if (key_type == &PyUnicode_Type &&
  ------------------
  |  Branch (3059:26): [True: 834, False: 0]
  ------------------
 3060|    834|                         strings_are_latin &&
  ------------------
  |  Branch (3060:26): [True: 834, False: 0]
  ------------------
 3061|  1.66k|                         PyUnicode_KIND(key) != PyUnicode_1BYTE_KIND) {
  ------------------
  |  |  258|    834|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  1.66k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 834, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3061:26): [True: 0, False: 834]
  ------------------
 3062|       |
 3063|      0|                        strings_are_latin = 0;
 3064|      0|                    }
 3065|    834|                }
 3066|    834|            }
 3067|       |
 3068|       |        /* Choose the best compare, given what we now know about the keys. */
 3069|      6|        if (keys_are_all_same_type) {
  ------------------
  |  Branch (3069:13): [True: 6, False: 0]
  ------------------
 3070|       |
 3071|      6|            if (key_type == &PyUnicode_Type && strings_are_latin) {
  ------------------
  |  Branch (3071:17): [True: 6, False: 0]
  |  Branch (3071:48): [True: 6, False: 0]
  ------------------
 3072|      6|                ms.key_compare = unsafe_latin_compare;
 3073|      6|            }
 3074|      0|            else if (key_type == &PyLong_Type && ints_are_bounded) {
  ------------------
  |  Branch (3074:22): [True: 0, False: 0]
  |  Branch (3074:50): [True: 0, False: 0]
  ------------------
 3075|      0|                ms.key_compare = unsafe_long_compare;
 3076|      0|            }
 3077|      0|            else if (key_type == &PyFloat_Type) {
  ------------------
  |  Branch (3077:22): [True: 0, False: 0]
  ------------------
 3078|      0|                ms.key_compare = unsafe_float_compare;
 3079|      0|            }
 3080|      0|            else if ((ms.key_richcompare = key_type->tp_richcompare) != NULL) {
  ------------------
  |  Branch (3080:22): [True: 0, False: 0]
  ------------------
 3081|      0|                ms.key_compare = unsafe_object_compare;
 3082|      0|            }
 3083|      0|            else {
 3084|      0|                ms.key_compare = safe_object_compare;
 3085|      0|            }
 3086|      6|        }
 3087|      0|        else {
 3088|      0|            ms.key_compare = safe_object_compare;
 3089|      0|        }
 3090|       |
 3091|      6|        if (keys_are_in_tuples) {
  ------------------
  |  Branch (3091:13): [True: 0, False: 6]
  ------------------
 3092|       |            /* Make sure we're not dealing with tuples of tuples
 3093|       |             * (remember: here, key_type refers list [key[0] for key in keys]) */
 3094|      0|            if (key_type == &PyTuple_Type) {
  ------------------
  |  Branch (3094:17): [True: 0, False: 0]
  ------------------
 3095|      0|                ms.tuple_elem_compare = safe_object_compare;
 3096|      0|            }
 3097|      0|            else {
 3098|      0|                ms.tuple_elem_compare = ms.key_compare;
 3099|      0|            }
 3100|       |
 3101|      0|            ms.key_compare = unsafe_tuple_compare;
 3102|      0|        }
 3103|      6|    }
 3104|       |    /* End of pre-sort check: ms is now set properly! */
 3105|       |
 3106|     72|    merge_init(&ms, saved_ob_size, keys != NULL, &lo);
 3107|       |
 3108|     72|    nremaining = saved_ob_size;
 3109|     72|    if (nremaining < 2)
  ------------------
  |  Branch (3109:9): [True: 66, False: 6]
  ------------------
 3110|     66|        goto succeed;
 3111|       |
 3112|       |    /* Reverse sort stability achieved by initially reversing the list,
 3113|       |    applying a stable forward sort, then reversing the final result. */
 3114|      6|    if (reverse) {
  ------------------
  |  Branch (3114:9): [True: 0, False: 6]
  ------------------
 3115|      0|        if (keys != NULL)
  ------------------
  |  Branch (3115:13): [True: 0, False: 0]
  ------------------
 3116|      0|            reverse_slice(&keys[0], &keys[saved_ob_size]);
 3117|      0|        reverse_slice(&saved_ob_item[0], &saved_ob_item[saved_ob_size]);
 3118|      0|    }
 3119|       |
 3120|       |    /* March over the array once, left to right, finding natural runs,
 3121|       |     * and extending short natural runs to minrun elements.
 3122|       |     */
 3123|     20|    do {
 3124|     20|        Py_ssize_t n;
 3125|       |
 3126|       |        /* Identify next run. */
 3127|     20|        n = count_run(&ms, &lo, nremaining);
 3128|     20|        if (n < 0)
  ------------------
  |  Branch (3128:13): [True: 0, False: 20]
  ------------------
 3129|      0|            goto fail;
 3130|       |        /* If short, extend to min(minrun, nremaining). */
 3131|     20|        minrun = minrun_next(&ms);
 3132|     20|        if (n < minrun) {
  ------------------
  |  Branch (3132:13): [True: 18, False: 2]
  ------------------
 3133|     18|            const Py_ssize_t force = nremaining <= minrun ?
  ------------------
  |  Branch (3133:38): [True: 4, False: 14]
  ------------------
 3134|     14|                              nremaining : minrun;
 3135|     18|            if (binarysort(&ms, &lo, force, n) < 0)
  ------------------
  |  Branch (3135:17): [True: 0, False: 18]
  ------------------
 3136|      0|                goto fail;
 3137|     18|            n = force;
 3138|     18|        }
 3139|       |        /* Maybe merge pending runs. */
 3140|     20|        assert(ms.n == 0 || ms.pending[ms.n -1].base.keys +
  ------------------
  |  Branch (3140:9): [True: 6, False: 14]
  |  Branch (3140:9): [True: 14, False: 0]
  ------------------
 3141|     20|                            ms.pending[ms.n-1].len == lo.keys);
 3142|     20|        if (found_new_run(&ms, n) < 0)
  ------------------
  |  Branch (3142:13): [True: 0, False: 20]
  ------------------
 3143|      0|            goto fail;
 3144|       |        /* Push new run on stack. */
 3145|     20|        assert(ms.n < MAX_MERGE_PENDING);
  ------------------
  |  Branch (3145:9): [True: 20, False: 0]
  ------------------
 3146|     20|        ms.pending[ms.n].base = lo;
 3147|     20|        ms.pending[ms.n].len = n;
 3148|     20|        ++ms.n;
 3149|       |        /* Advance to find next run. */
 3150|     20|        sortslice_advance(&lo, n);
 3151|     20|        nremaining -= n;
 3152|     20|    } while (nremaining);
  ------------------
  |  Branch (3152:14): [True: 14, False: 6]
  ------------------
 3153|       |
 3154|      6|    if (merge_force_collapse(&ms) < 0)
  ------------------
  |  Branch (3154:9): [True: 0, False: 6]
  ------------------
 3155|      0|        goto fail;
 3156|      6|    assert(ms.n == 1);
  ------------------
  |  Branch (3156:5): [True: 6, False: 0]
  ------------------
 3157|      6|    assert(keys == NULL
  ------------------
  |  Branch (3157:5): [True: 6, False: 0]
  |  Branch (3157:5): [True: 6, False: 0]
  ------------------
 3158|      6|           ? ms.pending[0].base.keys == saved_ob_item
 3159|      6|           : ms.pending[0].base.keys == &keys[0]);
 3160|      6|    assert(ms.pending[0].len == saved_ob_size);
  ------------------
  |  Branch (3160:5): [True: 6, False: 0]
  ------------------
 3161|      6|    lo = ms.pending[0].base;
 3162|       |
 3163|     72|succeed:
 3164|     72|    result = Py_None;
  ------------------
  |  |  616|     72|#  define Py_None (&_Py_NoneStruct)
  ------------------
 3165|     72|fail:
 3166|     72|    if (keys != NULL) {
  ------------------
  |  Branch (3166:9): [True: 0, False: 72]
  ------------------
 3167|      0|        for (i = 0; i < saved_ob_size; i++)
  ------------------
  |  Branch (3167:21): [True: 0, False: 0]
  ------------------
 3168|      0|            Py_DECREF(keys[i]);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3169|      0|        if (saved_ob_size >= MERGESTATE_TEMP_SIZE/2)
  ------------------
  |  | 1731|      0|#define MERGESTATE_TEMP_SIZE 256
  ------------------
  |  Branch (3169:13): [True: 0, False: 0]
  ------------------
 3170|      0|            PyMem_Free(keys);
 3171|      0|    }
 3172|       |
 3173|     72|    if (self->allocated != -1 && result != NULL) {
  ------------------
  |  Branch (3173:9): [True: 0, False: 72]
  |  Branch (3173:34): [True: 0, False: 0]
  ------------------
 3174|       |        /* The user mucked with the list during the sort,
 3175|       |         * and we don't already have another error to report.
 3176|       |         */
 3177|      0|        PyErr_SetString(PyExc_ValueError, "list modified during sort");
 3178|      0|        result = NULL;
 3179|      0|    }
 3180|       |
 3181|     72|    if (reverse && saved_ob_size > 1)
  ------------------
  |  Branch (3181:9): [True: 0, False: 72]
  |  Branch (3181:20): [True: 0, False: 0]
  ------------------
 3182|      0|        reverse_slice(saved_ob_item, saved_ob_item + saved_ob_size);
 3183|       |
 3184|     72|    merge_freemem(&ms);
 3185|       |
 3186|     72|keyfunc_fail:
 3187|     72|    final_ob_item = self->ob_item;
 3188|     72|    i = Py_SIZE(self);
  ------------------
  |  |  214|     72|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3189|     72|    Py_SET_SIZE(self, saved_ob_size);
  ------------------
  |  |  216|     72|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|     72|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3190|     72|    FT_ATOMIC_STORE_PTR_RELEASE(self->ob_item, saved_ob_item);
  ------------------
  |  |  164|     72|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 3191|     72|    FT_ATOMIC_STORE_SSIZE_RELAXED(self->allocated, saved_allocated);
  ------------------
  |  |  194|     72|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
 3192|     72|    if (final_ob_item != NULL) {
  ------------------
  |  Branch (3192:9): [True: 0, False: 72]
  ------------------
 3193|       |        /* we cannot use list_clear() for this because it does not
 3194|       |           guarantee that the list is really empty when it returns */
 3195|      0|        while (--i >= 0) {
  ------------------
  |  Branch (3195:16): [True: 0, False: 0]
  ------------------
 3196|      0|            Py_XDECREF(final_ob_item[i]);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3197|      0|        }
 3198|       |#ifdef Py_GIL_DISABLED
 3199|       |        ensure_shared_on_resize(self);
 3200|       |        bool use_qsbr = _PyObject_GC_IS_SHARED(self);
 3201|       |#else
 3202|      0|        bool use_qsbr = false;
 3203|      0|#endif
 3204|      0|        free_list_items(final_ob_item, use_qsbr);
 3205|      0|    }
 3206|     72|    return Py_XNewRef(result);
  ------------------
  |  |  551|     72|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3207|     72|}
listobject.c:unsafe_latin_compare:
 2816|  5.11k|{
 2817|  5.11k|    Py_ssize_t len;
 2818|  5.11k|    int res;
 2819|       |
 2820|       |    /* Modified from Objects/unicodeobject.c:unicode_compare, assuming: */
 2821|  5.11k|    assert(Py_IS_TYPE(v, &PyUnicode_Type));
  ------------------
  |  Branch (2821:5): [True: 5.11k, False: 0]
  ------------------
 2822|  5.11k|    assert(Py_IS_TYPE(w, &PyUnicode_Type));
  ------------------
  |  Branch (2822:5): [True: 5.11k, False: 0]
  ------------------
 2823|  5.11k|    assert(PyUnicode_KIND(v) == PyUnicode_KIND(w));
  ------------------
  |  Branch (2823:5): [True: 5.11k, False: 0]
  |  Branch (2823:5): [True: 5.11k, False: 0]
  |  Branch (2823:5): [True: 5.11k, False: 0]
  ------------------
 2824|  5.11k|    assert(PyUnicode_KIND(v) == PyUnicode_1BYTE_KIND);
  ------------------
  |  Branch (2824:5): [True: 5.11k, False: 0]
  |  Branch (2824:5): [True: 5.11k, False: 0]
  ------------------
 2825|       |
 2826|  5.11k|    len = Py_MIN(PyUnicode_GET_LENGTH(v), PyUnicode_GET_LENGTH(w));
  ------------------
  |  |  112|  5.11k|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 2.59k, False: 2.51k]
  |  |  ------------------
  ------------------
 2827|  5.11k|    res = memcmp(PyUnicode_DATA(v), PyUnicode_DATA(w), len);
  ------------------
  |  |  284|  5.11k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  res = memcmp(PyUnicode_DATA(v), PyUnicode_DATA(w), len);
  ------------------
  |  |  284|  5.11k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2828|       |
 2829|  5.11k|    res = (res != 0 ?
  ------------------
  |  Branch (2829:12): [True: 5.03k, False: 72]
  ------------------
 2830|  5.03k|           res < 0 :
 2831|  5.11k|           PyUnicode_GET_LENGTH(v) < PyUnicode_GET_LENGTH(w));
  ------------------
  |  |  299|     72|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                         PyUnicode_GET_LENGTH(v) < PyUnicode_GET_LENGTH(w));
  ------------------
  |  |  299|     72|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2832|       |
 2833|  5.11k|    assert(res == PyObject_RichCompareBool(v, w, Py_LT));;
  ------------------
  |  Branch (2833:5): [True: 5.11k, False: 0]
  ------------------
 2834|  5.11k|    return res;
 2835|  5.11k|}
listobject.c:merge_init:
 2234|     72|{
 2235|     72|    assert(ms != NULL);
  ------------------
  |  Branch (2235:5): [True: 72, False: 0]
  ------------------
 2236|     72|    if (has_keyfunc) {
  ------------------
  |  Branch (2236:9): [True: 0, False: 72]
  ------------------
 2237|       |        /* The temporary space for merging will need at most half the list
 2238|       |         * size rounded up.  Use the minimum possible space so we can use the
 2239|       |         * rest of temparray for other things.  In particular, if there is
 2240|       |         * enough extra space, listsort() will use it to store the keys.
 2241|       |         */
 2242|      0|        ms->alloced = (list_size + 1) / 2;
 2243|       |
 2244|       |        /* ms->alloced describes how many keys will be stored at
 2245|       |           ms->temparray, but we also need to store the values.  Hence,
 2246|       |           ms->alloced is capped at half of MERGESTATE_TEMP_SIZE. */
 2247|      0|        if (MERGESTATE_TEMP_SIZE / 2 < ms->alloced)
  ------------------
  |  | 1731|      0|#define MERGESTATE_TEMP_SIZE 256
  ------------------
  |  Branch (2247:13): [True: 0, False: 0]
  ------------------
 2248|      0|            ms->alloced = MERGESTATE_TEMP_SIZE / 2;
  ------------------
  |  | 1731|      0|#define MERGESTATE_TEMP_SIZE 256
  ------------------
 2249|      0|        ms->a.values = &ms->temparray[ms->alloced];
 2250|      0|    }
 2251|     72|    else {
 2252|     72|        ms->alloced = MERGESTATE_TEMP_SIZE;
  ------------------
  |  | 1731|     72|#define MERGESTATE_TEMP_SIZE 256
  ------------------
 2253|     72|        ms->a.values = NULL;
 2254|     72|    }
 2255|     72|    ms->a.keys = ms->temparray;
 2256|     72|    ms->n = 0;
 2257|     72|    ms->min_gallop = MIN_GALLOP;
  ------------------
  |  | 1728|     72|#define MIN_GALLOP 7
  ------------------
 2258|     72|    ms->listlen = list_size;
 2259|     72|    ms->basekeys = lo->keys;
 2260|       |
 2261|       |    /* State for generating minrun values. See listsort.txt. */
 2262|     72|    ms->mr_e = 0;
 2263|     78|    while (list_size >> ms->mr_e >= MAX_MINRUN) {
  ------------------
  |  | 1734|     78|#define MAX_MINRUN 64
  ------------------
  |  Branch (2263:12): [True: 6, False: 72]
  ------------------
 2264|      6|        ++ms->mr_e;
 2265|      6|    }
 2266|     72|    ms->mr_mask = (1 << ms->mr_e) - 1;
 2267|     72|    ms->mr_current = 0;
 2268|     72|}
listobject.c:count_run:
 1952|     20|{
 1953|     20|    Py_ssize_t k; /* used by IFLT macro expansion */
 1954|     20|    Py_ssize_t n;
 1955|     20|    PyObject ** const lo = slo->keys;
 1956|       |
 1957|       |    /* In general, as things go on we've established that the slice starts
 1958|       |       with a monotone run of n elements, starting at lo. */
 1959|       |
 1960|       |    /* We're n elements into the slice, and the most recent neq+1 elements are
 1961|       |     * all equal. This reverses them in-place, and resets neq for reuse.
 1962|       |     */
 1963|     20|#define REVERSE_LAST_NEQ                        \
 1964|     20|    if (neq) {                                  \
 1965|     20|        sortslice slice = *slo;                 \
 1966|     20|        ++neq;                                  \
 1967|     20|        sortslice_advance(&slice, n - neq);     \
 1968|     20|        sortslice_reverse(&slice, neq);         \
 1969|     20|        neq = 0;                                \
 1970|     20|    }
 1971|       |
 1972|       |    /* Sticking to only __lt__ compares is confusing and error-prone. But in
 1973|       |     * this routine, almost all uses of IFLT can be captured by tiny macros
 1974|       |     * giving mnemonic names to the intent. Note that inline functions don't
 1975|       |     * work for this (IFLT expands to code including `goto fail`).
 1976|       |     */
 1977|     20|#define IF_NEXT_LARGER  IFLT(lo[n-1], lo[n])
 1978|     20|#define IF_NEXT_SMALLER IFLT(lo[n], lo[n-1])
 1979|       |
 1980|     20|    assert(nremaining);
  ------------------
  |  Branch (1980:5): [True: 20, False: 0]
  ------------------
 1981|       |    /* try ascending run first */
 1982|     50|    for (n = 1; n < nremaining; ++n) {
  ------------------
  |  Branch (1982:17): [True: 50, False: 0]
  ------------------
 1983|     50|        IF_NEXT_SMALLER
  ------------------
  |  | 1978|     50|#define IF_NEXT_SMALLER IFLT(lo[n], lo[n-1])
  |  |  ------------------
  |  |  |  | 1715|     50|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1709|     50|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1715:24): [True: 0, False: 50]
  |  |  |  |  ------------------
  |  |  |  | 1716|     50|           if (k)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1716:16): [True: 20, False: 30]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1984|     20|            break;
 1985|     50|    }
 1986|     20|    if (n == nremaining)
  ------------------
  |  Branch (1986:9): [True: 0, False: 20]
  ------------------
 1987|      0|        return n;
 1988|       |    /* lo[n] is strictly less */
 1989|       |    /* If n is 1 now, then the first compare established it's a descending
 1990|       |     * run, so fall through to the descending case. But if n > 1, there are
 1991|       |     * n elements in an ascending run terminated by the strictly less lo[n].
 1992|       |     * If the first key < lo[n-1], *somewhere* along the way the sequence
 1993|       |     * increased, so we're done (there is no descending run).
 1994|       |     * Else first key >= lo[n-1], which implies that the entire ascending run
 1995|       |     * consists of equal elements. In that case, this is a descending run,
 1996|       |     * and we reverse the all-equal prefix in-place.
 1997|       |     */
 1998|     20|    if (n > 1) {
  ------------------
  |  Branch (1998:9): [True: 12, False: 8]
  ------------------
 1999|     12|        IFLT(lo[0], lo[n-1])
  ------------------
  |  | 1715|     12|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     12|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 12]
  |  |  ------------------
  |  | 1716|     12|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 12, False: 0]
  |  |  ------------------
  ------------------
 2000|     12|            return n;
 2001|      0|        sortslice_reverse(slo, n);
 2002|      0|    }
 2003|      8|    ++n; /* in all cases it's been established that lo[n] has been resolved */
 2004|       |
 2005|       |    /* Finish descending run. All-squal subruns are reversed in-place on the
 2006|       |     * fly. Their original order will be restored at the end by the whole-slice
 2007|       |     * reversal.
 2008|       |     */
 2009|      8|    Py_ssize_t neq = 0;
 2010|     14|    for ( ; n < nremaining; ++n) {
  ------------------
  |  Branch (2010:13): [True: 12, False: 2]
  ------------------
 2011|     12|        IF_NEXT_SMALLER {
  ------------------
  |  | 1978|     12|#define IF_NEXT_SMALLER IFLT(lo[n], lo[n-1])
  |  |  ------------------
  |  |  |  | 1715|     12|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1709|     12|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1715:24): [True: 0, False: 12]
  |  |  |  |  ------------------
  |  |  |  | 1716|     12|           if (k)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1716:16): [True: 6, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2012|       |            /* This ends the most recent run of equal elements, but still in
 2013|       |             * the "descending" direction.
 2014|       |             */
 2015|      6|            REVERSE_LAST_NEQ
  ------------------
  |  | 1964|      6|    if (neq) {                                  \
  |  |  ------------------
  |  |  |  Branch (1964:9): [True: 0, False: 6]
  |  |  ------------------
  |  | 1965|      0|        sortslice slice = *slo;                 \
  |  | 1966|      0|        ++neq;                                  \
  |  | 1967|      0|        sortslice_advance(&slice, n - neq);     \
  |  | 1968|      0|        sortslice_reverse(&slice, neq);         \
  |  | 1969|      0|        neq = 0;                                \
  |  | 1970|      0|    }
  ------------------
 2016|      6|        }
 2017|      6|        else {
 2018|      6|            IF_NEXT_LARGER /* descending run is over */
  ------------------
  |  | 1977|      6|#define IF_NEXT_LARGER  IFLT(lo[n-1], lo[n])
  |  |  ------------------
  |  |  |  | 1715|      6|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1709|      6|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1715:24): [True: 0, False: 6]
  |  |  |  |  ------------------
  |  |  |  | 1716|      6|           if (k)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1716:16): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2019|      6|                break;
 2020|      0|            else /* not x < y and not y < x implies x == y */
 2021|      0|                ++neq;
 2022|      6|        }
 2023|     12|    }
 2024|      8|    REVERSE_LAST_NEQ
  ------------------
  |  | 1964|      8|    if (neq) {                                  \
  |  |  ------------------
  |  |  |  Branch (1964:9): [True: 0, False: 8]
  |  |  ------------------
  |  | 1965|      0|        sortslice slice = *slo;                 \
  |  | 1966|      0|        ++neq;                                  \
  |  | 1967|      0|        sortslice_advance(&slice, n - neq);     \
  |  | 1968|      0|        sortslice_reverse(&slice, neq);         \
  |  | 1969|      0|        neq = 0;                                \
  |  | 1970|      0|    }
  ------------------
 2025|      8|    sortslice_reverse(slo, n); /* transform to ascending run */
 2026|       |
 2027|       |    /* And after reversing, it's possible this can be extended by a
 2028|       |     * naturally increasing suffix; e.g., [3, 2, 3, 4, 1] makes an
 2029|       |     * ascending run from the first 4 elements.
 2030|       |     */
 2031|     10|    for ( ; n < nremaining; ++n) {
  ------------------
  |  Branch (2031:13): [True: 8, False: 2]
  ------------------
 2032|      8|        IF_NEXT_SMALLER
  ------------------
  |  | 1978|      8|#define IF_NEXT_SMALLER IFLT(lo[n], lo[n-1])
  |  |  ------------------
  |  |  |  | 1715|      8|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1709|      8|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1715:24): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  |  | 1716|      8|           if (k)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1716:16): [True: 6, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2033|      6|            break;
 2034|      8|    }
 2035|       |
 2036|      8|    return n;
 2037|      0|fail:
 2038|      0|    return -1;
 2039|       |
 2040|      8|#undef REVERSE_LAST_NEQ
 2041|      8|#undef IF_NEXT_SMALLER
 2042|      8|#undef IF_NEXT_LARGER
 2043|      8|}
listobject.c:sortslice_reverse:
 1936|      8|{
 1937|      8|    reverse_slice(s->keys, &s->keys[n]);
 1938|      8|    if (s->values != NULL)
  ------------------
  |  Branch (1938:9): [True: 0, False: 8]
  ------------------
 1939|      0|        reverse_slice(s->values, &s->values[n]);
 1940|      8|}
listobject.c:minrun_next:
 2748|     20|{
 2749|     20|    ms->mr_current += ms->listlen;
 2750|     20|    assert(ms->mr_current >= 0); /* no overflow */
  ------------------
  |  Branch (2750:5): [True: 20, False: 0]
  ------------------
 2751|     20|    Py_ssize_t result = ms->mr_current >> ms->mr_e;
 2752|     20|    ms->mr_current &= ms->mr_mask;
 2753|     20|    return result;
 2754|     20|}
listobject.c:binarysort:
 1814|     18|{
 1815|     18|    Py_ssize_t k; /* for IFLT macro expansion */
 1816|     18|    PyObject ** const a = ss->keys;
 1817|     18|    PyObject ** const v = ss->values;
 1818|     18|    const bool has_values = v != NULL;
 1819|     18|    PyObject *pivot;
 1820|     18|    Py_ssize_t M;
 1821|       |
 1822|     18|    assert(0 <= ok && ok <= n && 1 <= n && n <= MAX_MINRUN);
  ------------------
  |  Branch (1822:5): [True: 18, False: 0]
  |  Branch (1822:5): [True: 18, False: 0]
  |  Branch (1822:5): [True: 18, False: 0]
  |  Branch (1822:5): [True: 18, False: 0]
  ------------------
 1823|       |    /* assert a[:ok] is sorted */
 1824|     18|    if (! ok)
  ------------------
  |  Branch (1824:9): [True: 0, False: 18]
  ------------------
 1825|      0|        ++ok;
 1826|       |    /* Regular insertion sort has average- and worst-case O(n**2) cost
 1827|       |       for both # of comparisons and number of bytes moved. But its branches
 1828|       |       are highly predictable, and it loves sorted input (n-1 compares and no
 1829|       |       data movement). This is significant in cases like sortperf.py's %sort,
 1830|       |       where an out-of-order element near the start of a run is moved into
 1831|       |       place slowly but then the remaining elements up to length minrun are
 1832|       |       generally at worst one slot away from their correct position (so only
 1833|       |       need 1 or 2 commpares to resolve). If comparisons are very fast (such
 1834|       |       as for a list of Python floats), the simple inner loop leaves it
 1835|       |       very competitive with binary insertion, despite that it does
 1836|       |       significantly more compares overall on random data.
 1837|       |
 1838|       |       Binary insertion sort has worst, average, and best case O(n log n)
 1839|       |       cost for # of comparisons, but worst and average case O(n**2) cost
 1840|       |       for data movement. The more expensive comparisons, the more important
 1841|       |       the comparison advantage. But its branches are less predictable the
 1842|       |       more "randomish" the data, and that's so significant its worst case
 1843|       |       in real life is random input rather than reverse-ordered (which does
 1844|       |       about twice the data movement than random input does).
 1845|       |
 1846|       |       Note that the number of bytes moved doesn't seem to matter. MAX_MINRUN
 1847|       |       of 64 is so small that the key and value pointers all fit in a corner
 1848|       |       of L1 cache, and moving things around in that is very fast. */
 1849|       |#if 0 // ordinary insertion sort.
 1850|       |    PyObject * vpivot = NULL;
 1851|       |    for (; ok < n; ++ok) {
 1852|       |        pivot = a[ok];
 1853|       |        if (has_values)
 1854|       |            vpivot = v[ok];
 1855|       |        for (M = ok - 1; M >= 0; --M) {
 1856|       |            k = ISLT(pivot, a[M]);
 1857|       |            if (k < 0) {
 1858|       |                a[M + 1] = pivot;
 1859|       |                if (has_values)
 1860|       |                    v[M + 1] = vpivot;
 1861|       |                goto fail;
 1862|       |            }
 1863|       |            else if (k) {
 1864|       |                a[M + 1] = a[M];
 1865|       |                if (has_values)
 1866|       |                    v[M + 1] = v[M];
 1867|       |            }
 1868|       |            else
 1869|       |                break;
 1870|       |        }
 1871|       |        a[M + 1] = pivot;
 1872|       |        if (has_values)
 1873|       |            v[M + 1] = vpivot;
 1874|       |    }
 1875|       |#else // binary insertion sort
 1876|     18|    Py_ssize_t L, R;
 1877|    786|    for (; ok < n; ++ok) {
  ------------------
  |  Branch (1877:12): [True: 768, False: 18]
  ------------------
 1878|       |        /* set L to where a[ok] belongs */
 1879|    768|        L = 0;
 1880|    768|        R = ok;
 1881|    768|        pivot = a[ok];
 1882|       |        /* Slice invariants. vacuously true at the start:
 1883|       |         * all a[0:L]  <= pivot
 1884|       |         * all a[L:R]     unknown
 1885|       |         * all a[R:ok]  > pivot
 1886|       |         */
 1887|    768|        assert(L < R);
  ------------------
  |  Branch (1887:9): [True: 768, False: 0]
  ------------------
 1888|  3.41k|        do {
 1889|       |            /* don't do silly ;-) things to prevent overflow when finding
 1890|       |               the midpoint; L and R are very far from filling a Py_ssize_t */
 1891|  3.41k|            M = (L + R) >> 1;
 1892|  3.41k|#if 1 // straightforward, but highly unpredictable branch on random data
 1893|  3.41k|            IFLT(pivot, a[M])
  ------------------
  |  | 1715|  3.41k|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|  3.41k|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 3.41k]
  |  |  ------------------
  |  | 1716|  3.41k|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 1.70k, False: 1.71k]
  |  |  ------------------
  ------------------
 1894|  1.70k|                R = M;
 1895|  1.71k|            else
 1896|  1.71k|                L = M + 1;
 1897|       |#else
 1898|       |            /* Try to get compiler to generate conditional move instructions
 1899|       |               instead. Works fine, but leaving it disabled for now because
 1900|       |               it's not yielding consistently faster sorts. Needs more
 1901|       |               investigation. More computation in the inner loop adds its own
 1902|       |               costs, which can be significant when compares are fast. */
 1903|       |            k = ISLT(pivot, a[M]);
 1904|       |            if (k < 0)
 1905|       |                goto fail;
 1906|       |            Py_ssize_t Mp1 = M + 1;
 1907|       |            R = k ? M : R;
 1908|       |            L = k ? L : Mp1;
 1909|       |#endif
 1910|  3.41k|        } while (L < R);
  ------------------
  |  Branch (1910:18): [True: 2.64k, False: 768]
  ------------------
 1911|    768|        assert(L == R);
  ------------------
  |  Branch (1911:9): [True: 768, False: 0]
  ------------------
 1912|       |        /* a[:L] holds all elements from a[:ok] <= pivot now, so pivot belongs
 1913|       |           at index L. Slide a[L:ok] to the right a slot to make room for it.
 1914|       |           Caution: using memmove is much slower under MSVC 5; we're not
 1915|       |           usually moving many slots. Years later: under Visual Studio 2022,
 1916|       |           memmove seems just slightly slower than doing it "by hand". */
 1917|  9.55k|        for (M = ok; M > L; --M)
  ------------------
  |  Branch (1917:22): [True: 8.78k, False: 768]
  ------------------
 1918|  8.78k|            a[M] = a[M - 1];
 1919|    768|        a[L] = pivot;
 1920|    768|        if (has_values) {
  ------------------
  |  Branch (1920:13): [True: 0, False: 768]
  ------------------
 1921|      0|            pivot = v[ok];
 1922|      0|            for (M = ok; M > L; --M)
  ------------------
  |  Branch (1922:26): [True: 0, False: 0]
  ------------------
 1923|      0|                v[M] = v[M - 1];
 1924|      0|            v[L] = pivot;
 1925|      0|        }
 1926|    768|    }
 1927|     18|#endif // pick binary or regular insertion sort
 1928|     18|    return 0;
 1929|       |
 1930|      0| fail:
 1931|      0|    return -1;
 1932|     18|}
listobject.c:found_new_run:
 2706|     20|{
 2707|     20|    assert(ms);
  ------------------
  |  Branch (2707:5): [True: 20, False: 0]
  ------------------
 2708|     20|    if (ms->n) {
  ------------------
  |  Branch (2708:9): [True: 14, False: 6]
  ------------------
 2709|     14|        assert(ms->n > 0);
  ------------------
  |  Branch (2709:9): [True: 14, False: 0]
  ------------------
 2710|     14|        struct s_slice *p = ms->pending;
 2711|     14|        Py_ssize_t s1 = p[ms->n - 1].base.keys - ms->basekeys; /* start index */
 2712|     14|        Py_ssize_t n1 = p[ms->n - 1].len;
 2713|     14|        int power = powerloop(s1, n1, n2, ms->listlen);
 2714|     22|        while (ms->n > 1 && p[ms->n - 2].power > power) {
  ------------------
  |  Branch (2714:16): [True: 16, False: 6]
  |  Branch (2714:29): [True: 8, False: 8]
  ------------------
 2715|      8|            if (merge_at(ms, ms->n - 2) < 0)
  ------------------
  |  Branch (2715:17): [True: 0, False: 8]
  ------------------
 2716|      0|                return -1;
 2717|      8|        }
 2718|     14|        assert(ms->n < 2 || p[ms->n - 2].power < power);
  ------------------
  |  Branch (2718:9): [True: 6, False: 8]
  |  Branch (2718:9): [True: 8, False: 0]
  ------------------
 2719|     14|        p[ms->n - 1].power = power;
 2720|     14|    }
 2721|     20|    return 0;
 2722|     20|}
listobject.c:powerloop:
 2659|     14|{
 2660|     14|    int result = 0;
 2661|     14|    assert(s1 >= 0);
  ------------------
  |  Branch (2661:5): [True: 14, False: 0]
  ------------------
 2662|     14|    assert(n1 > 0 && n2 > 0);
  ------------------
  |  Branch (2662:5): [True: 14, False: 0]
  |  Branch (2662:5): [True: 14, False: 0]
  ------------------
 2663|     14|    assert(s1 + n1 + n2 <= n);
  ------------------
  |  Branch (2663:5): [True: 14, False: 0]
  ------------------
 2664|       |    /* midpoints a and b:
 2665|       |     * a = s1 + n1/2
 2666|       |     * b = s1 + n1 + n2/2 = a + (n1 + n2)/2
 2667|       |     *
 2668|       |     * Those may not be integers, though, because of the "/2". So we work with
 2669|       |     * 2*a and 2*b instead, which are necessarily integers. It makes no
 2670|       |     * difference to the outcome, since the bits in the expansion of (2*i)/n
 2671|       |     * are merely shifted one position from those of i/n.
 2672|       |     */
 2673|     14|    Py_ssize_t a = 2 * s1 + n1;  /* 2*a */
 2674|     14|    Py_ssize_t b = a + n1 + n2;  /* 2*b */
 2675|       |    /* Emulate a/n and b/n one bit a time, until bits differ. */
 2676|     34|    for (;;) {
 2677|     34|        ++result;
 2678|     34|        if (a >= n) {  /* both quotient bits are 1 */
  ------------------
  |  Branch (2678:13): [True: 10, False: 24]
  ------------------
 2679|     10|            assert(b >= a);
  ------------------
  |  Branch (2679:13): [True: 10, False: 0]
  ------------------
 2680|     10|            a -= n;
 2681|     10|            b -= n;
 2682|     10|        }
 2683|     24|        else if (b >= n) {  /* a/n bit is 0, b/n bit is 1 */
  ------------------
  |  Branch (2683:18): [True: 14, False: 10]
  ------------------
 2684|     14|            break;
 2685|     14|        } /* else both quotient bits are 0 */
 2686|     34|        assert(a < b && b < n);
  ------------------
  |  Branch (2686:9): [True: 20, False: 0]
  |  Branch (2686:9): [True: 20, False: 0]
  ------------------
 2687|     20|        a <<= 1;
 2688|     20|        b <<= 1;
 2689|     20|    }
 2690|     14|    return result;
 2691|     14|}
listobject.c:merge_at:
 2599|     14|{
 2600|     14|    sortslice ssa, ssb;
 2601|     14|    Py_ssize_t na, nb;
 2602|     14|    Py_ssize_t k;
 2603|       |
 2604|     14|    assert(ms != NULL);
  ------------------
  |  Branch (2604:5): [True: 14, False: 0]
  ------------------
 2605|     14|    assert(ms->n >= 2);
  ------------------
  |  Branch (2605:5): [True: 14, False: 0]
  ------------------
 2606|     14|    assert(i >= 0);
  ------------------
  |  Branch (2606:5): [True: 14, False: 0]
  ------------------
 2607|     14|    assert(i == ms->n - 2 || i == ms->n - 3);
  ------------------
  |  Branch (2607:5): [True: 14, False: 0]
  |  Branch (2607:5): [True: 0, False: 0]
  ------------------
 2608|       |
 2609|     14|    ssa = ms->pending[i].base;
 2610|     14|    na = ms->pending[i].len;
 2611|     14|    ssb = ms->pending[i+1].base;
 2612|     14|    nb = ms->pending[i+1].len;
 2613|     14|    assert(na > 0 && nb > 0);
  ------------------
  |  Branch (2613:5): [True: 14, False: 0]
  |  Branch (2613:5): [True: 14, False: 0]
  ------------------
 2614|     14|    assert(ssa.keys + na == ssb.keys);
  ------------------
  |  Branch (2614:5): [True: 14, False: 0]
  ------------------
 2615|       |
 2616|       |    /* Record the length of the combined runs; if i is the 3rd-last
 2617|       |     * run now, also slide over the last run (which isn't involved
 2618|       |     * in this merge).  The current run i+1 goes away in any case.
 2619|       |     */
 2620|     14|    ms->pending[i].len = na + nb;
 2621|     14|    if (i == ms->n - 3)
  ------------------
  |  Branch (2621:9): [True: 0, False: 14]
  ------------------
 2622|      0|        ms->pending[i+1] = ms->pending[i+2];
 2623|     14|    --ms->n;
 2624|       |
 2625|       |    /* Where does b start in a?  Elements in a before that can be
 2626|       |     * ignored (already in place).
 2627|       |     */
 2628|     14|    k = gallop_right(ms, *ssb.keys, ssa.keys, na, 0);
 2629|     14|    if (k < 0)
  ------------------
  |  Branch (2629:9): [True: 0, False: 14]
  ------------------
 2630|      0|        return -1;
 2631|     14|    sortslice_advance(&ssa, k);
 2632|     14|    na -= k;
 2633|     14|    if (na == 0)
  ------------------
  |  Branch (2633:9): [True: 0, False: 14]
  ------------------
 2634|      0|        return 0;
 2635|       |
 2636|       |    /* Where does a end in b?  Elements in b after that can be
 2637|       |     * ignored (already in place).
 2638|       |     */
 2639|     14|    nb = gallop_left(ms, ssa.keys[na-1], ssb.keys, nb, nb-1);
 2640|     14|    if (nb <= 0)
  ------------------
  |  Branch (2640:9): [True: 0, False: 14]
  ------------------
 2641|      0|        return nb;
 2642|       |
 2643|       |    /* Merge what remains of the runs, using a temp array with
 2644|       |     * min(na, nb) elements.
 2645|       |     */
 2646|     14|    if (na <= nb)
  ------------------
  |  Branch (2646:9): [True: 8, False: 6]
  ------------------
 2647|      8|        return merge_lo(ms, ssa, na, ssb, nb);
 2648|      6|    else
 2649|      6|        return merge_hi(ms, ssa, na, ssb, nb);
 2650|     14|}
listobject.c:gallop_right:
 2157|     70|{
 2158|     70|    Py_ssize_t ofs;
 2159|     70|    Py_ssize_t lastofs;
 2160|     70|    Py_ssize_t k;
 2161|       |
 2162|     70|    assert(key && a && n > 0 && hint >= 0 && hint < n);
  ------------------
  |  Branch (2162:5): [True: 70, False: 0]
  |  Branch (2162:5): [True: 70, False: 0]
  |  Branch (2162:5): [True: 70, False: 0]
  |  Branch (2162:5): [True: 70, False: 0]
  |  Branch (2162:5): [True: 70, False: 0]
  ------------------
 2163|       |
 2164|     70|    a += hint;
 2165|     70|    lastofs = 0;
 2166|     70|    ofs = 1;
 2167|     70|    IFLT(key, *a) {
  ------------------
  |  | 1715|     70|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     70|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 70]
  |  |  ------------------
  |  | 1716|     70|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 38, False: 32]
  |  |  ------------------
  ------------------
 2168|       |        /* key < a[hint] -- gallop left, until
 2169|       |         * a[hint - ofs] <= key < a[hint - lastofs]
 2170|       |         */
 2171|     38|        const Py_ssize_t maxofs = hint + 1;             /* &a[0] is lowest */
 2172|     74|        while (ofs < maxofs) {
  ------------------
  |  Branch (2172:16): [True: 46, False: 28]
  ------------------
 2173|     46|            IFLT(key, *(a-ofs)) {
  ------------------
  |  | 1715|     46|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     46|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 46]
  |  |  ------------------
  |  | 1716|     46|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 36, False: 10]
  |  |  ------------------
  ------------------
 2174|     36|                lastofs = ofs;
 2175|     36|                assert(ofs <= (PY_SSIZE_T_MAX - 1) / 2);
  ------------------
  |  Branch (2175:17): [True: 36, False: 0]
  ------------------
 2176|     36|                ofs = (ofs << 1) + 1;
 2177|     36|            }
 2178|     10|            else                /* a[hint - ofs] <= key */
 2179|     10|                break;
 2180|     46|        }
 2181|     38|        if (ofs > maxofs)
  ------------------
  |  Branch (2181:13): [True: 4, False: 34]
  ------------------
 2182|      4|            ofs = maxofs;
 2183|       |        /* Translate back to positive offsets relative to &a[0]. */
 2184|     38|        k = lastofs;
 2185|     38|        lastofs = hint - ofs;
 2186|     38|        ofs = hint - k;
 2187|     38|    }
 2188|     32|    else {
 2189|       |        /* a[hint] <= key -- gallop right, until
 2190|       |         * a[hint + lastofs] <= key < a[hint + ofs]
 2191|       |        */
 2192|     32|        const Py_ssize_t maxofs = n - hint;             /* &a[n-1] is highest */
 2193|     80|        while (ofs < maxofs) {
  ------------------
  |  Branch (2193:16): [True: 70, False: 10]
  ------------------
 2194|     70|            IFLT(key, a[ofs])
  ------------------
  |  | 1715|     70|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     70|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 70]
  |  |  ------------------
  |  | 1716|     70|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 22, False: 48]
  |  |  ------------------
  ------------------
 2195|     22|                break;
 2196|       |            /* a[hint + ofs] <= key */
 2197|     48|            lastofs = ofs;
 2198|     48|            assert(ofs <= (PY_SSIZE_T_MAX - 1) / 2);
  ------------------
  |  Branch (2198:13): [True: 48, False: 0]
  ------------------
 2199|     48|            ofs = (ofs << 1) + 1;
 2200|     48|        }
 2201|     32|        if (ofs > maxofs)
  ------------------
  |  Branch (2201:13): [True: 0, False: 32]
  ------------------
 2202|      0|            ofs = maxofs;
 2203|       |        /* Translate back to offsets relative to &a[0]. */
 2204|     32|        lastofs += hint;
 2205|     32|        ofs += hint;
 2206|     32|    }
 2207|     70|    a -= hint;
 2208|       |
 2209|     70|    assert(-1 <= lastofs && lastofs < ofs && ofs <= n);
  ------------------
  |  Branch (2209:5): [True: 70, False: 0]
  |  Branch (2209:5): [True: 70, False: 0]
  |  Branch (2209:5): [True: 70, False: 0]
  ------------------
 2210|       |    /* Now a[lastofs] <= key < a[ofs], so key belongs somewhere to the
 2211|       |     * right of lastofs but no farther right than ofs.  Do a binary
 2212|       |     * search, with invariant a[lastofs-1] <= key < a[ofs].
 2213|       |     */
 2214|     70|    ++lastofs;
 2215|    152|    while (lastofs < ofs) {
  ------------------
  |  Branch (2215:12): [True: 82, False: 70]
  ------------------
 2216|     82|        Py_ssize_t m = lastofs + ((ofs - lastofs) >> 1);
 2217|       |
 2218|     82|        IFLT(key, a[m])
  ------------------
  |  | 1715|     82|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     82|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 82]
  |  |  ------------------
  |  | 1716|     82|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 44, False: 38]
  |  |  ------------------
  ------------------
 2219|     44|            ofs = m;                    /* key < a[m] */
 2220|     38|        else
 2221|     38|            lastofs = m+1;              /* a[m] <= key */
 2222|     82|    }
 2223|     70|    assert(lastofs == ofs);             /* so a[ofs-1] <= key < a[ofs] */
  ------------------
  |  Branch (2223:5): [True: 70, False: 0]
  ------------------
 2224|     70|    return ofs;
 2225|       |
 2226|      0|fail:
 2227|      0|    return -1;
 2228|     70|}
listobject.c:gallop_left:
 2068|     64|{
 2069|     64|    Py_ssize_t ofs;
 2070|     64|    Py_ssize_t lastofs;
 2071|     64|    Py_ssize_t k;
 2072|       |
 2073|     64|    assert(key && a && n > 0 && hint >= 0 && hint < n);
  ------------------
  |  Branch (2073:5): [True: 64, False: 0]
  |  Branch (2073:5): [True: 64, False: 0]
  |  Branch (2073:5): [True: 64, False: 0]
  |  Branch (2073:5): [True: 64, False: 0]
  |  Branch (2073:5): [True: 64, False: 0]
  ------------------
 2074|       |
 2075|     64|    a += hint;
 2076|     64|    lastofs = 0;
 2077|     64|    ofs = 1;
 2078|     64|    IFLT(*a, key) {
  ------------------
  |  | 1715|     64|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     64|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 64]
  |  |  ------------------
  |  | 1716|     64|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 28, False: 36]
  |  |  ------------------
  ------------------
 2079|       |        /* a[hint] < key -- gallop right, until
 2080|       |         * a[hint + lastofs] < key <= a[hint + ofs]
 2081|       |         */
 2082|     28|        const Py_ssize_t maxofs = n - hint;             /* &a[n-1] is highest */
 2083|     58|        while (ofs < maxofs) {
  ------------------
  |  Branch (2083:16): [True: 42, False: 16]
  ------------------
 2084|     42|            IFLT(a[ofs], key) {
  ------------------
  |  | 1715|     42|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     42|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 42]
  |  |  ------------------
  |  | 1716|     42|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 30, False: 12]
  |  |  ------------------
  ------------------
 2085|     30|                lastofs = ofs;
 2086|     30|                assert(ofs <= (PY_SSIZE_T_MAX - 1) / 2);
  ------------------
  |  Branch (2086:17): [True: 30, False: 0]
  ------------------
 2087|     30|                ofs = (ofs << 1) + 1;
 2088|     30|            }
 2089|     12|            else                /* key <= a[hint + ofs] */
 2090|     12|                break;
 2091|     42|        }
 2092|     28|        if (ofs > maxofs)
  ------------------
  |  Branch (2092:13): [True: 2, False: 26]
  ------------------
 2093|      2|            ofs = maxofs;
 2094|       |        /* Translate back to offsets relative to &a[0]. */
 2095|     28|        lastofs += hint;
 2096|     28|        ofs += hint;
 2097|     28|    }
 2098|     36|    else {
 2099|       |        /* key <= a[hint] -- gallop left, until
 2100|       |         * a[hint - ofs] < key <= a[hint - lastofs]
 2101|       |         */
 2102|     36|        const Py_ssize_t maxofs = hint + 1;             /* &a[0] is lowest */
 2103|     90|        while (ofs < maxofs) {
  ------------------
  |  Branch (2103:16): [True: 74, False: 16]
  ------------------
 2104|     74|            IFLT(*(a-ofs), key)
  ------------------
  |  | 1715|     74|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     74|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 74]
  |  |  ------------------
  |  | 1716|     74|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 20, False: 54]
  |  |  ------------------
  ------------------
 2105|     20|                break;
 2106|       |            /* key <= a[hint - ofs] */
 2107|     54|            lastofs = ofs;
 2108|     54|            assert(ofs <= (PY_SSIZE_T_MAX - 1) / 2);
  ------------------
  |  Branch (2108:13): [True: 54, False: 0]
  ------------------
 2109|     54|            ofs = (ofs << 1) + 1;
 2110|     54|        }
 2111|     36|        if (ofs > maxofs)
  ------------------
  |  Branch (2111:13): [True: 2, False: 34]
  ------------------
 2112|      2|            ofs = maxofs;
 2113|       |        /* Translate back to positive offsets relative to &a[0]. */
 2114|     36|        k = lastofs;
 2115|     36|        lastofs = hint - ofs;
 2116|     36|        ofs = hint - k;
 2117|     36|    }
 2118|     64|    a -= hint;
 2119|       |
 2120|     64|    assert(-1 <= lastofs && lastofs < ofs && ofs <= n);
  ------------------
  |  Branch (2120:5): [True: 64, False: 0]
  |  Branch (2120:5): [True: 64, False: 0]
  |  Branch (2120:5): [True: 64, False: 0]
  ------------------
 2121|       |    /* Now a[lastofs] < key <= a[ofs], so key belongs somewhere to the
 2122|       |     * right of lastofs but no farther right than ofs.  Do a binary
 2123|       |     * search, with invariant a[lastofs-1] < key <= a[ofs].
 2124|       |     */
 2125|     64|    ++lastofs;
 2126|    142|    while (lastofs < ofs) {
  ------------------
  |  Branch (2126:12): [True: 78, False: 64]
  ------------------
 2127|     78|        Py_ssize_t m = lastofs + ((ofs - lastofs) >> 1);
 2128|       |
 2129|     78|        IFLT(a[m], key)
  ------------------
  |  | 1715|     78|#define IFLT(X, Y) if ((k = ISLT(X, Y)) < 0) goto fail;  \
  |  |  ------------------
  |  |  |  | 1709|     78|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  |  |  ------------------
  |  |  |  Branch (1715:24): [True: 0, False: 78]
  |  |  ------------------
  |  | 1716|     78|           if (k)
  |  |  ------------------
  |  |  |  Branch (1716:16): [True: 36, False: 42]
  |  |  ------------------
  ------------------
 2130|     36|            lastofs = m+1;              /* a[m] < key */
 2131|     42|        else
 2132|     42|            ofs = m;                    /* key <= a[m] */
 2133|     78|    }
 2134|     64|    assert(lastofs == ofs);             /* so a[ofs-1] < key <= a[ofs] */
  ------------------
  |  Branch (2134:5): [True: 64, False: 0]
  ------------------
 2135|     64|    return ofs;
 2136|       |
 2137|      0|fail:
 2138|      0|    return -1;
 2139|     64|}
listobject.c:merge_lo:
 2329|      8|{
 2330|      8|    Py_ssize_t k;
 2331|      8|    sortslice dest;
 2332|      8|    int result = -1;            /* guilty until proved innocent */
 2333|      8|    Py_ssize_t min_gallop;
 2334|       |
 2335|      8|    assert(ms && ssa.keys && ssb.keys && na > 0 && nb > 0);
  ------------------
  |  Branch (2335:5): [True: 8, False: 0]
  |  Branch (2335:5): [True: 8, False: 0]
  |  Branch (2335:5): [True: 8, False: 0]
  |  Branch (2335:5): [True: 8, False: 0]
  |  Branch (2335:5): [True: 8, False: 0]
  ------------------
 2336|      8|    assert(ssa.keys + na == ssb.keys);
  ------------------
  |  Branch (2336:5): [True: 8, False: 0]
  ------------------
 2337|      8|    if (MERGE_GETMEM(ms, na) < 0)
  ------------------
  |  | 2317|      8|#define MERGE_GETMEM(MS, NEED) ((NEED) <= (MS)->alloced ? 0 :   \
  |  |  ------------------
  |  |  |  Branch (2317:33): [True: 8, False: 0]
  |  |  ------------------
  |  | 2318|      8|                                merge_getmem(MS, NEED))
  ------------------
  |  Branch (2337:9): [True: 0, False: 8]
  ------------------
 2338|      0|        return -1;
 2339|      8|    sortslice_memcpy(&ms->a, 0, &ssa, 0, na);
 2340|      8|    dest = ssa;
 2341|      8|    ssa = ms->a;
 2342|       |
 2343|      8|    sortslice_copy_incr(&dest, &ssb);
 2344|      8|    --nb;
 2345|      8|    if (nb == 0)
  ------------------
  |  Branch (2345:9): [True: 0, False: 8]
  ------------------
 2346|      0|        goto Succeed;
 2347|      8|    if (na == 1)
  ------------------
  |  Branch (2347:9): [True: 0, False: 8]
  ------------------
 2348|      0|        goto CopyB;
 2349|       |
 2350|      8|    min_gallop = ms->min_gallop;
 2351|     26|    for (;;) {
 2352|     26|        Py_ssize_t acount = 0;          /* # of times A won in a row */
 2353|     26|        Py_ssize_t bcount = 0;          /* # of times B won in a row */
 2354|       |
 2355|       |        /* Do the straightforward thing until (if ever) one run
 2356|       |         * appears to win consistently.
 2357|       |         */
 2358|    562|        for (;;) {
 2359|    562|            assert(na > 1 && nb > 0);
  ------------------
  |  Branch (2359:13): [True: 562, False: 0]
  |  Branch (2359:13): [True: 562, False: 0]
  ------------------
 2360|    562|            k = ISLT(ssb.keys[0], ssa.keys[0]);
  ------------------
  |  | 1709|    562|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  ------------------
 2361|    562|            if (k) {
  ------------------
  |  Branch (2361:17): [True: 256, False: 306]
  ------------------
 2362|    256|                if (k < 0)
  ------------------
  |  Branch (2362:21): [True: 0, False: 256]
  ------------------
 2363|      0|                    goto Fail;
 2364|    256|                sortslice_copy_incr(&dest, &ssb);
 2365|    256|                ++bcount;
 2366|    256|                acount = 0;
 2367|    256|                --nb;
 2368|    256|                if (nb == 0)
  ------------------
  |  Branch (2368:21): [True: 4, False: 252]
  ------------------
 2369|      4|                    goto Succeed;
 2370|    252|                if (bcount >= min_gallop)
  ------------------
  |  Branch (2370:21): [True: 8, False: 244]
  ------------------
 2371|      8|                    break;
 2372|    252|            }
 2373|    306|            else {
 2374|    306|                sortslice_copy_incr(&dest, &ssa);
 2375|    306|                ++acount;
 2376|    306|                bcount = 0;
 2377|    306|                --na;
 2378|    306|                if (na == 1)
  ------------------
  |  Branch (2378:21): [True: 0, False: 306]
  ------------------
 2379|      0|                    goto CopyB;
 2380|    306|                if (acount >= min_gallop)
  ------------------
  |  Branch (2380:21): [True: 14, False: 292]
  ------------------
 2381|     14|                    break;
 2382|    306|            }
 2383|    562|        }
 2384|       |
 2385|       |        /* One run is winning so consistently that galloping may
 2386|       |         * be a huge win.  So try that, and continue galloping until
 2387|       |         * (if ever) neither run appears to be winning consistently
 2388|       |         * anymore.
 2389|       |         */
 2390|     22|        ++min_gallop;
 2391|     32|        do {
 2392|     32|            assert(na > 1 && nb > 0);
  ------------------
  |  Branch (2392:13): [True: 32, False: 0]
  |  Branch (2392:13): [True: 32, False: 0]
  ------------------
 2393|     32|            min_gallop -= min_gallop > 1;
 2394|     32|            ms->min_gallop = min_gallop;
 2395|     32|            k = gallop_right(ms, ssb.keys[0], ssa.keys, na, 0);
 2396|     32|            acount = k;
 2397|     32|            if (k) {
  ------------------
  |  Branch (2397:17): [True: 18, False: 14]
  ------------------
 2398|     18|                if (k < 0)
  ------------------
  |  Branch (2398:21): [True: 0, False: 18]
  ------------------
 2399|      0|                    goto Fail;
 2400|     18|                sortslice_memcpy(&dest, 0, &ssa, 0, k);
 2401|     18|                sortslice_advance(&dest, k);
 2402|     18|                sortslice_advance(&ssa, k);
 2403|     18|                na -= k;
 2404|     18|                if (na == 1)
  ------------------
  |  Branch (2404:21): [True: 2, False: 16]
  ------------------
 2405|      2|                    goto CopyB;
 2406|       |                /* na==0 is impossible now if the comparison
 2407|       |                 * function is consistent, but we can't assume
 2408|       |                 * that it is.
 2409|       |                 */
 2410|     16|                if (na == 0)
  ------------------
  |  Branch (2410:21): [True: 0, False: 16]
  ------------------
 2411|      0|                    goto Succeed;
 2412|     16|            }
 2413|     30|            sortslice_copy_incr(&dest, &ssb);
 2414|     30|            --nb;
 2415|     30|            if (nb == 0)
  ------------------
  |  Branch (2415:17): [True: 2, False: 28]
  ------------------
 2416|      2|                goto Succeed;
 2417|       |
 2418|     28|            k = gallop_left(ms, ssa.keys[0], ssb.keys, nb, 0);
 2419|     28|            bcount = k;
 2420|     28|            if (k) {
  ------------------
  |  Branch (2420:17): [True: 14, False: 14]
  ------------------
 2421|     14|                if (k < 0)
  ------------------
  |  Branch (2421:21): [True: 0, False: 14]
  ------------------
 2422|      0|                    goto Fail;
 2423|     14|                sortslice_memmove(&dest, 0, &ssb, 0, k);
 2424|     14|                sortslice_advance(&dest, k);
 2425|     14|                sortslice_advance(&ssb, k);
 2426|     14|                nb -= k;
 2427|     14|                if (nb == 0)
  ------------------
  |  Branch (2427:21): [True: 0, False: 14]
  ------------------
 2428|      0|                    goto Succeed;
 2429|     14|            }
 2430|     28|            sortslice_copy_incr(&dest, &ssa);
 2431|     28|            --na;
 2432|     28|            if (na == 1)
  ------------------
  |  Branch (2432:17): [True: 0, False: 28]
  ------------------
 2433|      0|                goto CopyB;
 2434|     28|        } while (acount >= MIN_GALLOP || bcount >= MIN_GALLOP);
  ------------------
  |  | 1728|     56|#define MIN_GALLOP 7
  ------------------
                      } while (acount >= MIN_GALLOP || bcount >= MIN_GALLOP);
  ------------------
  |  | 1728|     20|#define MIN_GALLOP 7
  ------------------
  |  Branch (2434:18): [True: 8, False: 20]
  |  Branch (2434:42): [True: 2, False: 18]
  ------------------
 2435|     18|        ++min_gallop;           /* penalize it for leaving galloping mode */
 2436|     18|        ms->min_gallop = min_gallop;
 2437|     18|    }
 2438|      6|Succeed:
 2439|      6|    result = 0;
 2440|      6|Fail:
 2441|      6|    if (na)
  ------------------
  |  Branch (2441:9): [True: 6, False: 0]
  ------------------
 2442|      6|        sortslice_memcpy(&dest, 0, &ssa, 0, na);
 2443|      6|    return result;
 2444|      2|CopyB:
 2445|      2|    assert(na == 1 && nb > 0);
  ------------------
  |  Branch (2445:5): [True: 2, False: 0]
  |  Branch (2445:5): [True: 2, False: 0]
  ------------------
 2446|       |    /* The last element of ssa belongs at the end of the merge. */
 2447|      2|    sortslice_memmove(&dest, 0, &ssb, 0, nb);
 2448|      2|    sortslice_copy(&dest, nb, &ssa, 0);
 2449|      2|    return 0;
 2450|      2|}
listobject.c:sortslice_memcpy:
 1681|     58|{
 1682|     58|    memcpy(&s1->keys[i], &s2->keys[j], sizeof(PyObject *) * n);
 1683|     58|    if (s1->values != NULL)
  ------------------
  |  Branch (1683:9): [True: 0, False: 58]
  ------------------
 1684|      0|        memcpy(&s1->values[i], &s2->values[j], sizeof(PyObject *) * n);
 1685|     58|}
listobject.c:sortslice_copy_incr:
 1663|    628|{
 1664|    628|    *dst->keys++ = *src->keys++;
 1665|    628|    if (dst->values != NULL)
  ------------------
  |  Branch (1665:9): [True: 0, False: 628]
  ------------------
 1666|      0|        *dst->values++ = *src->values++;
 1667|    628|}
listobject.c:sortslice_memmove:
 1690|     30|{
 1691|     30|    memmove(&s1->keys[i], &s2->keys[j], sizeof(PyObject *) * n);
 1692|     30|    if (s1->values != NULL)
  ------------------
  |  Branch (1692:9): [True: 0, False: 30]
  ------------------
 1693|      0|        memmove(&s1->values[i], &s2->values[j], sizeof(PyObject *) * n);
 1694|     30|}
listobject.c:sortslice_copy:
 1655|      2|{
 1656|      2|    s1->keys[i] = s2->keys[j];
 1657|      2|    if (s1->values != NULL)
  ------------------
  |  Branch (1657:9): [True: 0, False: 2]
  ------------------
 1658|      0|        s1->values[i] = s2->values[j];
 1659|      2|}
listobject.c:merge_hi:
 2461|      6|{
 2462|      6|    Py_ssize_t k;
 2463|      6|    sortslice dest, basea, baseb;
 2464|      6|    int result = -1;            /* guilty until proved innocent */
 2465|      6|    Py_ssize_t min_gallop;
 2466|       |
 2467|      6|    assert(ms && ssa.keys && ssb.keys && na > 0 && nb > 0);
  ------------------
  |  Branch (2467:5): [True: 6, False: 0]
  |  Branch (2467:5): [True: 6, False: 0]
  |  Branch (2467:5): [True: 6, False: 0]
  |  Branch (2467:5): [True: 6, False: 0]
  |  Branch (2467:5): [True: 6, False: 0]
  ------------------
 2468|      6|    assert(ssa.keys + na == ssb.keys);
  ------------------
  |  Branch (2468:5): [True: 6, False: 0]
  ------------------
 2469|      6|    if (MERGE_GETMEM(ms, nb) < 0)
  ------------------
  |  | 2317|      6|#define MERGE_GETMEM(MS, NEED) ((NEED) <= (MS)->alloced ? 0 :   \
  |  |  ------------------
  |  |  |  Branch (2317:33): [True: 6, False: 0]
  |  |  ------------------
  |  | 2318|      6|                                merge_getmem(MS, NEED))
  ------------------
  |  Branch (2469:9): [True: 0, False: 6]
  ------------------
 2470|      0|        return -1;
 2471|      6|    dest = ssb;
 2472|      6|    sortslice_advance(&dest, nb-1);
 2473|      6|    sortslice_memcpy(&ms->a, 0, &ssb, 0, nb);
 2474|      6|    basea = ssa;
 2475|      6|    baseb = ms->a;
 2476|      6|    ssb.keys = ms->a.keys + nb - 1;
 2477|      6|    if (ssb.values != NULL)
  ------------------
  |  Branch (2477:9): [True: 0, False: 6]
  ------------------
 2478|      0|        ssb.values = ms->a.values + nb - 1;
 2479|      6|    sortslice_advance(&ssa, na - 1);
 2480|       |
 2481|      6|    sortslice_copy_decr(&dest, &ssa);
 2482|      6|    --na;
 2483|      6|    if (na == 0)
  ------------------
  |  Branch (2483:9): [True: 0, False: 6]
  ------------------
 2484|      0|        goto Succeed;
 2485|      6|    if (nb == 1)
  ------------------
  |  Branch (2485:9): [True: 0, False: 6]
  ------------------
 2486|      0|        goto CopyA;
 2487|       |
 2488|      6|    min_gallop = ms->min_gallop;
 2489|     14|    for (;;) {
 2490|     14|        Py_ssize_t acount = 0;          /* # of times A won in a row */
 2491|     14|        Py_ssize_t bcount = 0;          /* # of times B won in a row */
 2492|       |
 2493|       |        /* Do the straightforward thing until (if ever) one run
 2494|       |         * appears to win consistently.
 2495|       |         */
 2496|    520|        for (;;) {
 2497|    520|            assert(na > 0 && nb > 1);
  ------------------
  |  Branch (2497:13): [True: 520, False: 0]
  |  Branch (2497:13): [True: 520, False: 0]
  ------------------
 2498|    520|            k = ISLT(ssb.keys[0], ssa.keys[0]);
  ------------------
  |  | 1709|    520|#define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms)
  ------------------
 2499|    520|            if (k) {
  ------------------
  |  Branch (2499:17): [True: 300, False: 220]
  ------------------
 2500|    300|                if (k < 0)
  ------------------
  |  Branch (2500:21): [True: 0, False: 300]
  ------------------
 2501|      0|                    goto Fail;
 2502|    300|                sortslice_copy_decr(&dest, &ssa);
 2503|    300|                ++acount;
 2504|    300|                bcount = 0;
 2505|    300|                --na;
 2506|    300|                if (na == 0)
  ------------------
  |  Branch (2506:21): [True: 4, False: 296]
  ------------------
 2507|      4|                    goto Succeed;
 2508|    296|                if (acount >= min_gallop)
  ------------------
  |  Branch (2508:21): [True: 8, False: 288]
  ------------------
 2509|      8|                    break;
 2510|    296|            }
 2511|    220|            else {
 2512|    220|                sortslice_copy_decr(&dest, &ssb);
 2513|    220|                ++bcount;
 2514|    220|                acount = 0;
 2515|    220|                --nb;
 2516|    220|                if (nb == 1)
  ------------------
  |  Branch (2516:21): [True: 0, False: 220]
  ------------------
 2517|      0|                    goto CopyA;
 2518|    220|                if (bcount >= min_gallop)
  ------------------
  |  Branch (2518:21): [True: 2, False: 218]
  ------------------
 2519|      2|                    break;
 2520|    220|            }
 2521|    520|        }
 2522|       |
 2523|       |        /* One run is winning so consistently that galloping may
 2524|       |         * be a huge win.  So try that, and continue galloping until
 2525|       |         * (if ever) neither run appears to be winning consistently
 2526|       |         * anymore.
 2527|       |         */
 2528|     10|        ++min_gallop;
 2529|     24|        do {
 2530|     24|            assert(na > 0 && nb > 1);
  ------------------
  |  Branch (2530:13): [True: 24, False: 0]
  |  Branch (2530:13): [True: 24, False: 0]
  ------------------
 2531|     24|            min_gallop -= min_gallop > 1;
 2532|     24|            ms->min_gallop = min_gallop;
 2533|     24|            k = gallop_right(ms, ssb.keys[0], basea.keys, na, na-1);
 2534|     24|            if (k < 0)
  ------------------
  |  Branch (2534:17): [True: 0, False: 24]
  ------------------
 2535|      0|                goto Fail;
 2536|     24|            k = na - k;
 2537|     24|            acount = k;
 2538|     24|            if (k) {
  ------------------
  |  Branch (2538:17): [True: 14, False: 10]
  ------------------
 2539|     14|                sortslice_advance(&dest, -k);
 2540|     14|                sortslice_advance(&ssa, -k);
 2541|     14|                sortslice_memmove(&dest, 1, &ssa, 1, k);
 2542|     14|                na -= k;
 2543|     14|                if (na == 0)
  ------------------
  |  Branch (2543:21): [True: 2, False: 12]
  ------------------
 2544|      2|                    goto Succeed;
 2545|     14|            }
 2546|     22|            sortslice_copy_decr(&dest, &ssb);
 2547|     22|            --nb;
 2548|     22|            if (nb == 1)
  ------------------
  |  Branch (2548:17): [True: 0, False: 22]
  ------------------
 2549|      0|                goto CopyA;
 2550|       |
 2551|     22|            k = gallop_left(ms, ssa.keys[0], baseb.keys, nb, nb-1);
 2552|     22|            if (k < 0)
  ------------------
  |  Branch (2552:17): [True: 0, False: 22]
  ------------------
 2553|      0|                goto Fail;
 2554|     22|            k = nb - k;
 2555|     22|            bcount = k;
 2556|     22|            if (k) {
  ------------------
  |  Branch (2556:17): [True: 14, False: 8]
  ------------------
 2557|     14|                sortslice_advance(&dest, -k);
 2558|     14|                sortslice_advance(&ssb, -k);
 2559|     14|                sortslice_memcpy(&dest, 1, &ssb, 1, k);
 2560|     14|                nb -= k;
 2561|     14|                if (nb == 1)
  ------------------
  |  Branch (2561:21): [True: 0, False: 14]
  ------------------
 2562|      0|                    goto CopyA;
 2563|       |                /* nb==0 is impossible now if the comparison
 2564|       |                 * function is consistent, but we can't assume
 2565|       |                 * that it is.
 2566|       |                 */
 2567|     14|                if (nb == 0)
  ------------------
  |  Branch (2567:21): [True: 0, False: 14]
  ------------------
 2568|      0|                    goto Succeed;
 2569|     14|            }
 2570|     22|            sortslice_copy_decr(&dest, &ssa);
 2571|     22|            --na;
 2572|     22|            if (na == 0)
  ------------------
  |  Branch (2572:17): [True: 0, False: 22]
  ------------------
 2573|      0|                goto Succeed;
 2574|     22|        } while (acount >= MIN_GALLOP || bcount >= MIN_GALLOP);
  ------------------
  |  | 1728|     44|#define MIN_GALLOP 7
  ------------------
                      } while (acount >= MIN_GALLOP || bcount >= MIN_GALLOP);
  ------------------
  |  | 1728|     14|#define MIN_GALLOP 7
  ------------------
  |  Branch (2574:18): [True: 8, False: 14]
  |  Branch (2574:42): [True: 6, False: 8]
  ------------------
 2575|      8|        ++min_gallop;           /* penalize it for leaving galloping mode */
 2576|      8|        ms->min_gallop = min_gallop;
 2577|      8|    }
 2578|      6|Succeed:
 2579|      6|    result = 0;
 2580|      6|Fail:
 2581|      6|    if (nb)
  ------------------
  |  Branch (2581:9): [True: 6, False: 0]
  ------------------
 2582|      6|        sortslice_memcpy(&dest, -(nb-1), &baseb, 0, nb);
 2583|      6|    return result;
 2584|      0|CopyA:
 2585|      0|    assert(nb == 1 && na > 0);
  ------------------
  |  Branch (2585:5): [True: 0, False: 0]
  |  Branch (2585:5): [True: 0, False: 0]
  ------------------
 2586|       |    /* The first element of ssb belongs at the front of the merge. */
 2587|      0|    sortslice_memmove(&dest, 1-na, &ssa, 1-na, na);
 2588|      0|    sortslice_advance(&dest, -na);
 2589|      0|    sortslice_advance(&ssa, -na);
 2590|      0|    sortslice_copy(&dest, 0, &ssb, 0);
 2591|      0|    return 0;
 2592|      0|}
listobject.c:sortslice_copy_decr:
 1671|    570|{
 1672|    570|    *dst->keys-- = *src->keys--;
 1673|    570|    if (dst->values != NULL)
  ------------------
  |  Branch (1673:9): [True: 0, False: 570]
  ------------------
 1674|      0|        *dst->values-- = *src->values--;
 1675|    570|}
listobject.c:sortslice_advance:
 1698|    166|{
 1699|    166|    slice->keys += n;
 1700|    166|    if (slice->values != NULL)
  ------------------
  |  Branch (1700:9): [True: 0, False: 166]
  ------------------
 1701|      0|        slice->values += n;
 1702|    166|}
listobject.c:merge_force_collapse:
 2731|      6|{
 2732|      6|    struct s_slice *p = ms->pending;
 2733|       |
 2734|      6|    assert(ms);
  ------------------
  |  Branch (2734:5): [True: 6, False: 0]
  ------------------
 2735|     12|    while (ms->n > 1) {
  ------------------
  |  Branch (2735:12): [True: 6, False: 6]
  ------------------
 2736|      6|        Py_ssize_t n = ms->n - 2;
 2737|      6|        if (n > 0 && p[n-1].len < p[n+1].len)
  ------------------
  |  Branch (2737:13): [True: 4, False: 2]
  |  Branch (2737:22): [True: 0, False: 4]
  ------------------
 2738|      0|            --n;
 2739|      6|        if (merge_at(ms, n) < 0)
  ------------------
  |  Branch (2739:13): [True: 0, False: 6]
  ------------------
 2740|      0|            return -1;
 2741|      6|    }
 2742|      6|    return 0;
 2743|      6|}
listobject.c:merge_freemem:
 2276|     72|{
 2277|     72|    assert(ms != NULL);
  ------------------
  |  Branch (2277:5): [True: 72, False: 0]
  ------------------
 2278|     72|    if (ms->a.keys != ms->temparray) {
  ------------------
  |  Branch (2278:9): [True: 0, False: 72]
  ------------------
 2279|      0|        PyMem_Free(ms->a.keys);
 2280|       |        ms->a.keys = NULL;
 2281|      0|    }
 2282|     72|}
listobject.c:reverse_slice:
 1622|      8|{
 1623|      8|    assert(lo && hi);
  ------------------
  |  Branch (1623:5): [True: 8, False: 0]
  |  Branch (1623:5): [True: 8, False: 0]
  ------------------
 1624|       |
 1625|      8|    --hi;
 1626|     18|    while (lo < hi) {
  ------------------
  |  Branch (1626:12): [True: 10, False: 8]
  ------------------
 1627|     10|        PyObject *t = *lo;
 1628|     10|        FT_ATOMIC_STORE_PTR_RELEASE(*lo, *hi);
  ------------------
  |  |  164|     10|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 1629|     10|        FT_ATOMIC_STORE_PTR_RELEASE(*hi, t);
  ------------------
  |  |  164|     10|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 1630|     10|        ++lo;
 1631|     10|        --hi;
 1632|     10|    }
 1633|      8|}
listobject.c:list_slice_subscript:
 3672|      2|{
 3673|      2|    assert(PyList_Check(self));
  ------------------
  |  Branch (3673:5): [True: 2, False: 0]
  ------------------
 3674|      2|    assert(PySlice_Check(item));
  ------------------
  |  Branch (3674:5): [True: 2, False: 0]
  ------------------
 3675|      2|    Py_ssize_t start, stop, step;
 3676|      2|    if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
  ------------------
  |  Branch (3676:9): [True: 0, False: 2]
  ------------------
 3677|      0|        return NULL;
 3678|      0|    }
 3679|      2|    return list_slice_wrap((PyListObject *)self, start, stop, step);
 3680|      2|}
listobject.c:list_slice_wrap:
 3653|      2|{
 3654|      2|    PyObject *res = NULL;
 3655|      2|    Py_BEGIN_CRITICAL_SECTION(aa);
  ------------------
  |  |   51|      2|    {
  ------------------
 3656|      2|    Py_ssize_t len = PySlice_AdjustIndices(Py_SIZE(aa), &start, &stop, step);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3657|      2|    if (len <= 0) {
  ------------------
  |  Branch (3657:9): [True: 0, False: 2]
  ------------------
 3658|      0|        res = PyList_New(0);
 3659|      0|    }
 3660|      2|    else if (step == 1) {
  ------------------
  |  Branch (3660:14): [True: 2, False: 0]
  ------------------
 3661|      2|        res = list_slice_lock_held(aa, start, stop);
 3662|      2|    }
 3663|      0|    else {
 3664|      0|        res = list_slice_step_lock_held(aa, start, step, len);
 3665|      0|    }
 3666|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
 3667|      2|    return res;
 3668|      2|}
listobject.c:list_dealloc:
  556|    734|{
  557|    734|    PyListObject *op = (PyListObject *)self;
  558|    734|    Py_ssize_t i;
  559|    734|    PyObject_GC_UnTrack(op);
  560|    734|    if (op->ob_item != NULL) {
  ------------------
  |  Branch (560:9): [True: 386, False: 348]
  ------------------
  561|       |        /* Do it backwards, for Christian Tismer.
  562|       |           There's a simple test case where somehow this reduces
  563|       |           thrashing when a *very* large list is created and
  564|       |           immediately deleted. */
  565|    386|        i = Py_SIZE(op);
  ------------------
  |  |  214|    386|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    386|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    386|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  566|  15.4k|        while (--i >= 0) {
  ------------------
  |  Branch (566:16): [True: 15.0k, False: 386]
  ------------------
  567|  15.0k|            Py_XDECREF(op->ob_item[i]);
  ------------------
  |  |  524|  15.0k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  568|  15.0k|        }
  569|    386|        free_list_items(op->ob_item, false);
  570|    386|        op->ob_item = NULL;
  571|    386|    }
  572|    734|    if (PyList_CheckExact(op)) {
  ------------------
  |  |   26|    734|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|    734|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    734|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    734|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 674, False: 60]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  573|    674|        _Py_FREELIST_FREE(lists, op, PyObject_GC_Del);
  ------------------
  |  |   35|    674|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|    674|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    674|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|    674|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   13|    674|#  define Py_lists_MAXFREELIST 80
  |  |  ------------------
  ------------------
  574|    674|    }
  575|     60|    else {
  576|     60|        PyObject_GC_Del(op);
  577|     60|    }
  578|    734|}
listobject.c:list_length:
  651|    198|{
  652|    198|    return PyList_GET_SIZE(a);
  ------------------
  |  |   38|    198|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    198|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    198|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  653|    198|}
listobject.c:list_item:
  676|  1.03k|{
  677|  1.03k|    PyListObject *a = (PyListObject *)aa;
  678|  1.03k|    if (!valid_index(i, PyList_GET_SIZE(a))) {
  ------------------
  |  |   38|  1.03k|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.03k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (678:9): [True: 8, False: 1.03k]
  ------------------
  679|      8|        PyErr_SetObject(PyExc_IndexError, &_Py_STR(list_err));
  ------------------
  |  |  919|      8|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      8|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      8|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  680|      8|        return NULL;
  681|      8|    }
  682|  1.03k|    PyObject *item;
  683|       |#ifdef Py_GIL_DISABLED
  684|       |    item = list_get_item_ref(a, i);
  685|       |    if (item == NULL) {
  686|       |        PyErr_SetObject(PyExc_IndexError, &_Py_STR(list_err));
  687|       |        return NULL;
  688|       |    }
  689|       |#else
  690|  1.03k|    item = Py_NewRef(a->ob_item[i]);
  ------------------
  |  |  550|  1.03k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.03k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  691|  1.03k|#endif
  692|  1.03k|    return item;
  693|  1.03k|}
listobject.c:list_contains:
  657|     88|{
  658|       |
  659|  1.50k|    for (Py_ssize_t i = 0; ; i++) {
  660|  1.50k|        PyObject *item = list_get_item_ref((PyListObject *)aa, i);
  661|  1.50k|        if (item == NULL) {
  ------------------
  |  Branch (661:13): [True: 12, False: 1.49k]
  ------------------
  662|       |            // out-of-bounds
  663|     12|            return 0;
  664|     12|        }
  665|  1.49k|        int cmp = PyObject_RichCompareBool(item, el, Py_EQ);
  ------------------
  |  |  654|  1.49k|#define Py_EQ 2
  ------------------
  666|  1.49k|        Py_DECREF(item);
  ------------------
  |  |  430|  1.49k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.49k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.49k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  667|  1.49k|        if (cmp != 0) {
  ------------------
  |  Branch (667:13): [True: 76, False: 1.41k]
  ------------------
  668|     76|            return cmp;
  669|     76|        }
  670|  1.49k|    }
  671|      0|    return 0;
  672|     88|}
listobject.c:list_subscript:
 3690|      4|{
 3691|      4|    PyListObject* self = (PyListObject*)_self;
 3692|      4|    if (_PyIndex_Check(item)) {
  ------------------
  |  Branch (3692:9): [True: 2, False: 2]
  ------------------
 3693|      2|        Py_ssize_t i;
 3694|      2|        i = PyNumber_AsSsize_t(item, PyExc_IndexError);
 3695|      2|        if (i == -1 && PyErr_Occurred())
  ------------------
  |  Branch (3695:13): [True: 0, False: 2]
  |  Branch (3695:24): [True: 0, False: 0]
  ------------------
 3696|      0|            return NULL;
 3697|      2|        if (i < 0)
  ------------------
  |  Branch (3697:13): [True: 0, False: 2]
  ------------------
 3698|      0|            i += PyList_GET_SIZE(self);
  ------------------
  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3699|      2|        return list_item((PyObject *)self, i);
 3700|      2|    }
 3701|      2|    else if (PySlice_Check(item)) {
  ------------------
  |  |   22|      2|#define PySlice_Check(op) Py_IS_TYPE((op), &PySlice_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3702|      2|        return list_slice_subscript(_self, item);
 3703|      2|    }
 3704|      0|    else {
 3705|      0|        PyErr_Format(PyExc_TypeError,
 3706|      0|                     "list indices must be integers or slices, not %.200s",
 3707|      0|                     Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3708|       |        return NULL;
 3709|      0|    }
 3710|      4|}
listobject.c:list_ass_subscript:
 3897|      2|{
 3898|      2|    int res;
 3899|       |#ifdef Py_GIL_DISABLED
 3900|       |    if (PySlice_Check(item) && value != NULL && PyList_CheckExact(value)) {
 3901|       |        Py_BEGIN_CRITICAL_SECTION2(self, value);
 3902|       |        res = list_ass_subscript_lock_held(self, item, value);
 3903|       |        Py_END_CRITICAL_SECTION2();
 3904|       |        return res;
 3905|       |    }
 3906|       |#endif
 3907|      2|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      2|    {
  ------------------
 3908|      2|    res = list_ass_subscript_lock_held(self, item, value);
 3909|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
 3910|      2|    return res;
 3911|      2|}
listobject.c:list_ass_subscript_lock_held:
 3731|      2|{
 3732|      2|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(_self);
 3733|       |
 3734|      2|    PyListObject *self = (PyListObject *)_self;
 3735|      2|    if (_PyIndex_Check(item)) {
  ------------------
  |  Branch (3735:9): [True: 0, False: 2]
  ------------------
 3736|      0|        Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
 3737|      0|        if (i == -1 && PyErr_Occurred())
  ------------------
  |  Branch (3737:13): [True: 0, False: 0]
  |  Branch (3737:24): [True: 0, False: 0]
  ------------------
 3738|      0|            return -1;
 3739|      0|        if (i < 0)
  ------------------
  |  Branch (3739:13): [True: 0, False: 0]
  ------------------
 3740|      0|            i += PyList_GET_SIZE(self);
  ------------------
  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3741|      0|        return list_ass_item_lock_held(self, i, value);
 3742|      0|    }
 3743|      2|    else if (PySlice_Check(item)) {
  ------------------
  |  |   22|      2|#define PySlice_Check(op) Py_IS_TYPE((op), &PySlice_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3744|      2|        Py_ssize_t start, stop, step;
 3745|       |
 3746|      2|        if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
  ------------------
  |  Branch (3746:13): [True: 0, False: 2]
  ------------------
 3747|      0|            return -1;
 3748|      0|        }
 3749|       |
 3750|      2|        if (value == NULL) {
  ------------------
  |  Branch (3750:13): [True: 0, False: 2]
  ------------------
 3751|       |            /* delete slice */
 3752|      0|            PyObject **garbage;
 3753|      0|            size_t cur;
 3754|      0|            Py_ssize_t i;
 3755|      0|            int res;
 3756|       |
 3757|      0|            Py_ssize_t slicelength = adjust_slice_indexes(self, &start, &stop,
 3758|      0|                                                          step);
 3759|       |
 3760|      0|            if (step == 1)
  ------------------
  |  Branch (3760:17): [True: 0, False: 0]
  ------------------
 3761|      0|                return list_ass_slice_lock_held(self, start, stop, value);
 3762|       |
 3763|      0|            if (slicelength <= 0)
  ------------------
  |  Branch (3763:17): [True: 0, False: 0]
  ------------------
 3764|      0|                return 0;
 3765|       |
 3766|      0|            if (step < 0) {
  ------------------
  |  Branch (3766:17): [True: 0, False: 0]
  ------------------
 3767|      0|                stop = start + 1;
 3768|      0|                start = stop + step*(slicelength - 1) - 1;
 3769|      0|                step = -step;
 3770|      0|            }
 3771|       |
 3772|      0|            garbage = (PyObject**)
 3773|      0|                PyMem_Malloc(slicelength*sizeof(PyObject*));
 3774|      0|            if (!garbage) {
  ------------------
  |  Branch (3774:17): [True: 0, False: 0]
  ------------------
 3775|      0|                PyErr_NoMemory();
 3776|      0|                return -1;
 3777|      0|            }
 3778|       |
 3779|       |            /* drawing pictures might help understand these for
 3780|       |               loops. Basically, we memmove the parts of the
 3781|       |               list that are *not* part of the slice: step-1
 3782|       |               items for each item that is part of the slice,
 3783|       |               and then tail end of the list that was not
 3784|       |               covered by the slice */
 3785|      0|            for (cur = start, i = 0;
 3786|      0|                 cur < (size_t)stop;
  ------------------
  |  Branch (3786:18): [True: 0, False: 0]
  ------------------
 3787|      0|                 cur += step, i++) {
 3788|      0|                Py_ssize_t lim = step - 1;
 3789|       |
 3790|      0|                garbage[i] = PyList_GET_ITEM(self, cur);
  ------------------
  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3790:30): [True: 0, False: 0]
  ------------------
 3791|       |
 3792|      0|                if (cur + step >= (size_t)Py_SIZE(self)) {
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3792:21): [True: 0, False: 0]
  ------------------
 3793|      0|                    lim = Py_SIZE(self) - cur - 1;
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3794|      0|                }
 3795|       |
 3796|      0|                ptr_wise_atomic_memmove(self, self->ob_item + cur - i,
 3797|      0|                    self->ob_item + cur + 1, lim);
 3798|      0|            }
 3799|      0|            cur = start + (size_t)slicelength * step;
 3800|      0|            if (cur < (size_t)Py_SIZE(self)) {
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3800:17): [True: 0, False: 0]
  ------------------
 3801|      0|                ptr_wise_atomic_memmove(self, self->ob_item + cur - slicelength,
 3802|      0|                    self->ob_item + cur, Py_SIZE(self) - cur);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3803|      0|            }
 3804|       |
 3805|      0|            Py_SET_SIZE(self, Py_SIZE(self) - slicelength);
  ------------------
  |  |  216|      0|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      0|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3806|      0|            res = list_resize(self, Py_SIZE(self));
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3807|       |
 3808|      0|            for (i = 0; i < slicelength; i++) {
  ------------------
  |  Branch (3808:25): [True: 0, False: 0]
  ------------------
 3809|      0|                Py_DECREF(garbage[i]);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3810|      0|            }
 3811|      0|            PyMem_Free(garbage);
 3812|       |
 3813|      0|            return res;
 3814|      0|        }
 3815|      2|        else {
 3816|       |            /* assign slice */
 3817|      2|            PyObject *ins, *seq;
 3818|      2|            PyObject **garbage, **seqitems, **selfitems;
 3819|      2|            Py_ssize_t i;
 3820|      2|            size_t cur;
 3821|       |
 3822|       |            /* protect against a[::-1] = a */
 3823|      2|            if (self == (PyListObject*)value) {
  ------------------
  |  Branch (3823:17): [True: 0, False: 2]
  ------------------
 3824|      0|                seq = list_slice_lock_held((PyListObject *)value, 0,
 3825|      0|                                            Py_SIZE(value));
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3826|      0|            }
 3827|      2|            else {
 3828|      2|                seq = PySequence_Fast(value,
 3829|      2|                                      "must assign iterable "
 3830|      2|                                      "to extended slice");
 3831|      2|            }
 3832|      2|            if (!seq)
  ------------------
  |  Branch (3832:17): [True: 0, False: 2]
  ------------------
 3833|      0|                return -1;
 3834|       |
 3835|      2|            Py_ssize_t slicelength = adjust_slice_indexes(self, &start, &stop,
 3836|      2|                                                          step);
 3837|       |
 3838|      2|            if (step == 1) {
  ------------------
  |  Branch (3838:17): [True: 2, False: 0]
  ------------------
 3839|      2|                int res = list_ass_slice_lock_held(self, start, stop, seq);
 3840|      2|                Py_DECREF(seq);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3841|      2|                return res;
 3842|      2|            }
 3843|       |
 3844|      0|            if (PySequence_Fast_GET_SIZE(seq) != slicelength) {
  ------------------
  |  |   92|      0|    (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   25|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3844:17): [True: 0, False: 0]
  ------------------
 3845|      0|                PyErr_Format(PyExc_ValueError,
 3846|      0|                    "attempt to assign sequence of "
 3847|      0|                    "size %zd to extended slice of "
 3848|      0|                    "size %zd",
 3849|      0|                         PySequence_Fast_GET_SIZE(seq),
  ------------------
  |  |   92|      0|    (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   25|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3850|      0|                         slicelength);
 3851|      0|                Py_DECREF(seq);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3852|      0|                return -1;
 3853|      0|            }
 3854|       |
 3855|      0|            if (!slicelength) {
  ------------------
  |  Branch (3855:17): [True: 0, False: 0]
  ------------------
 3856|      0|                Py_DECREF(seq);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3857|      0|                return 0;
 3858|      0|            }
 3859|       |
 3860|      0|            garbage = (PyObject**)
 3861|      0|                PyMem_Malloc(slicelength*sizeof(PyObject*));
 3862|      0|            if (!garbage) {
  ------------------
  |  Branch (3862:17): [True: 0, False: 0]
  ------------------
 3863|      0|                Py_DECREF(seq);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3864|      0|                PyErr_NoMemory();
 3865|      0|                return -1;
 3866|      0|            }
 3867|       |
 3868|      0|            selfitems = self->ob_item;
 3869|      0|            seqitems = PySequence_Fast_ITEMS(seq);
  ------------------
  |  |  102|      0|    (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
  |  |  ------------------
  |  |  |  |   25|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|      0|                      : ((PyTupleObject *)(sf))->ob_item)
  ------------------
 3870|      0|            for (cur = start, i = 0; i < slicelength;
  ------------------
  |  Branch (3870:38): [True: 0, False: 0]
  ------------------
 3871|      0|                 cur += (size_t)step, i++) {
 3872|      0|                garbage[i] = selfitems[cur];
 3873|      0|                ins = Py_NewRef(seqitems[i]);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3874|      0|                FT_ATOMIC_STORE_PTR_RELEASE(selfitems[cur], ins);
  ------------------
  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 3875|      0|            }
 3876|       |
 3877|      0|            for (i = 0; i < slicelength; i++) {
  ------------------
  |  Branch (3877:25): [True: 0, False: 0]
  ------------------
 3878|      0|                Py_DECREF(garbage[i]);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3879|      0|            }
 3880|       |
 3881|      0|            PyMem_Free(garbage);
 3882|      0|            Py_DECREF(seq);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3883|       |
 3884|      0|            return 0;
 3885|      0|        }
 3886|      2|    }
 3887|      0|    else {
 3888|      0|        PyErr_Format(PyExc_TypeError,
 3889|      0|                     "list indices must be integers or slices, not %.200s",
 3890|      0|                     Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3891|      0|        return -1;
 3892|      0|    }
 3893|      2|}
listobject.c:adjust_slice_indexes:
 3716|      2|{
 3717|      2|    Py_ssize_t slicelength = PySlice_AdjustIndices(Py_SIZE(lst), start, stop,
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3718|      2|                                                   step);
 3719|       |
 3720|       |    /* Make sure s[5:2] = [..] inserts at the right place:
 3721|       |        before 5, not before 2. */
 3722|      2|    if ((step < 0 && *start < *stop) ||
  ------------------
  |  Branch (3722:10): [True: 0, False: 2]
  |  Branch (3722:22): [True: 0, False: 0]
  ------------------
 3723|      2|        (step > 0 && *start > *stop))
  ------------------
  |  Branch (3723:10): [True: 2, False: 0]
  |  Branch (3723:22): [True: 0, False: 2]
  ------------------
 3724|      0|        *stop = *start;
 3725|       |
 3726|      2|    return slicelength;
 3727|      2|}
listobject.c:list_traverse:
 3429|    176|{
 3430|    176|    PyListObject *o = (PyListObject *)self;
 3431|    176|    Py_ssize_t i;
 3432|       |
 3433|    444|    for (i = Py_SIZE(o); --i >= 0; )
  ------------------
  |  |  214|    176|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    176|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    176|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3433:26): [True: 268, False: 176]
  ------------------
 3434|    268|        Py_VISIT(o->ob_item[i]);
  ------------------
  |  |  194|    268|    do {                                                                \
  |  |  195|    268|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 268, False: 0]
  |  |  ------------------
  |  |  196|    268|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    268|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    268|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    268|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 268]
  |  |  ------------------
  |  |  198|    268|                return vret;                                            \
  |  |  199|    268|        }                                                               \
  |  |  200|    268|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 268]
  |  |  ------------------
  ------------------
 3435|    176|    return 0;
 3436|    176|}
listobject.c:list_richcompare:
 3503|     62|{
 3504|     62|    PyObject *ret;
 3505|     62|    Py_BEGIN_CRITICAL_SECTION2(v, w);
  ------------------
  |  |   57|     62|    {
  ------------------
 3506|     62|    ret = list_richcompare_impl(v, w, op);
 3507|     62|    Py_END_CRITICAL_SECTION2()
  ------------------
  |  |   61|     62|    }
  ------------------
 3508|     62|    return ret;
 3509|     62|}
listobject.c:list_richcompare_impl:
 3440|     62|{
 3441|     62|    PyListObject *vl, *wl;
 3442|     62|    Py_ssize_t i;
 3443|       |
 3444|     62|    if (!PyList_Check(v) || !PyList_Check(w))
  ------------------
  |  |   25|     62|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    124|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
                  if (!PyList_Check(v) || !PyList_Check(w))
  ------------------
  |  |   25|     62|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     62|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3444:9): [True: 0, False: 62]
  |  Branch (3444:29): [True: 0, False: 62]
  ------------------
 3445|      0|        Py_RETURN_NOTIMPLEMENTED;
  ------------------
  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  ------------------
  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  ------------------
  ------------------
 3446|       |
 3447|     62|    vl = (PyListObject *)v;
 3448|     62|    wl = (PyListObject *)w;
 3449|       |
 3450|     62|    if (Py_SIZE(vl) != Py_SIZE(wl) && (op == Py_EQ || op == Py_NE)) {
  ------------------
  |  |  214|     62|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_SIZE(vl) != Py_SIZE(wl) && (op == Py_EQ || op == Py_NE)) {
  ------------------
  |  |  214|    124|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_SIZE(vl) != Py_SIZE(wl) && (op == Py_EQ || op == Py_NE)) {
  ------------------
  |  |  654|     24|#define Py_EQ 2
  ------------------
                  if (Py_SIZE(vl) != Py_SIZE(wl) && (op == Py_EQ || op == Py_NE)) {
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (3450:9): [True: 12, False: 50]
  |  Branch (3450:40): [True: 12, False: 0]
  |  Branch (3450:55): [True: 0, False: 0]
  ------------------
 3451|       |        /* Shortcut: if the lengths differ, the lists differ */
 3452|     12|        if (op == Py_EQ)
  ------------------
  |  |  654|     12|#define Py_EQ 2
  ------------------
  |  Branch (3452:13): [True: 12, False: 0]
  ------------------
 3453|     12|            Py_RETURN_FALSE;
  ------------------
  |  |   45|     12|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|     12|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3454|      0|        else
 3455|      0|            Py_RETURN_TRUE;
  ------------------
  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3456|     12|    }
 3457|       |
 3458|       |    /* Search for the first index where items are different */
 3459|     56|    for (i = 0; i < Py_SIZE(vl) && i < Py_SIZE(wl); i++) {
  ------------------
  |  |  214|    112|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  for (i = 0; i < Py_SIZE(vl) && i < Py_SIZE(wl); i++) {
  ------------------
  |  |  214|      6|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3459:17): [True: 6, False: 50]
  |  Branch (3459:36): [True: 6, False: 0]
  ------------------
 3460|      6|        PyObject *vitem = vl->ob_item[i];
 3461|      6|        PyObject *witem = wl->ob_item[i];
 3462|      6|        if (vitem == witem) {
  ------------------
  |  Branch (3462:13): [True: 0, False: 6]
  ------------------
 3463|      0|            continue;
 3464|      0|        }
 3465|       |
 3466|      6|        Py_INCREF(vitem);
  ------------------
  |  |  310|      6|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3467|      6|        Py_INCREF(witem);
  ------------------
  |  |  310|      6|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3468|      6|        int k = PyObject_RichCompareBool(vitem, witem, Py_EQ);
  ------------------
  |  |  654|      6|#define Py_EQ 2
  ------------------
 3469|      6|        Py_DECREF(vitem);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3470|      6|        Py_DECREF(witem);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3471|      6|        if (k < 0)
  ------------------
  |  Branch (3471:13): [True: 0, False: 6]
  ------------------
 3472|      0|            return NULL;
 3473|      6|        if (!k)
  ------------------
  |  Branch (3473:13): [True: 0, False: 6]
  ------------------
 3474|      0|            break;
 3475|      6|    }
 3476|       |
 3477|     50|    if (i >= Py_SIZE(vl) || i >= Py_SIZE(wl)) {
  ------------------
  |  |  214|    100|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     50|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     50|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (i >= Py_SIZE(vl) || i >= Py_SIZE(wl)) {
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3477:9): [True: 50, False: 0]
  |  Branch (3477:29): [True: 0, False: 0]
  ------------------
 3478|       |        /* No more items to compare -- compare sizes */
 3479|     50|        Py_RETURN_RICHCOMPARE(Py_SIZE(vl), Py_SIZE(wl), op);
  ------------------
  |  |  674|     50|    do {                                                                    \
  |  |  675|     50|        switch (op) {                                                       \
  |  |  676|     48|        case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  654|     48|#define Py_EQ 2
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|     48|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|     48|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (676:9): [True: 48, False: 2]
  |  |  |  Branch (676:25): [True: 48, False: 0]
  |  |  ------------------
  |  |  677|     48|        case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  655|      2|#define Py_NE 3
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      2|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (677:9): [True: 2, False: 48]
  |  |  |  Branch (677:25): [True: 0, False: 2]
  |  |  ------------------
  |  |  678|      2|        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  652|      0|#define Py_LT 0
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (678:9): [True: 0, False: 50]
  |  |  |  Branch (678:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  679|      0|        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  656|      0|#define Py_GT 4
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (679:9): [True: 0, False: 50]
  |  |  |  Branch (679:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  680|      0|        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  653|      0|#define Py_LE 1
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (680:9): [True: 0, False: 50]
  |  |  |  Branch (680:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  681|      0|        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  657|      0|#define Py_GE 5
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (681:9): [True: 0, False: 50]
  |  |  |  Branch (681:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  682|      0|        default:                                                            \
  |  |  ------------------
  |  |  |  Branch (682:9): [True: 0, False: 50]
  |  |  ------------------
  |  |  683|      0|            Py_UNREACHABLE();                                               \
  |  |  ------------------
  |  |  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  |  |  ------------------
  |  |  684|     50|        }                                                                   \
  |  |  685|     50|    } while (0)
  |  |  ------------------
  |  |  |  Branch (685:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3480|     50|    }
 3481|       |
 3482|       |    /* We have an item that differs -- shortcuts for EQ/NE */
 3483|      0|    if (op == Py_EQ) {
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  |  Branch (3483:9): [True: 0, False: 0]
  ------------------
 3484|      0|        Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3485|      0|    }
 3486|      0|    if (op == Py_NE) {
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (3486:9): [True: 0, False: 0]
  ------------------
 3487|      0|        Py_RETURN_TRUE;
  ------------------
  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3488|      0|    }
 3489|       |
 3490|       |    /* Compare the final item again using the proper operator */
 3491|      0|    PyObject *vitem = vl->ob_item[i];
 3492|      0|    PyObject *witem = wl->ob_item[i];
 3493|      0|    Py_INCREF(vitem);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3494|      0|    Py_INCREF(witem);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3495|      0|    PyObject *result = PyObject_RichCompare(vl->ob_item[i], wl->ob_item[i], op);
 3496|      0|    Py_DECREF(vitem);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3497|      0|    Py_DECREF(witem);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3498|      0|    return result;
 3499|      0|}
listobject.c:list___reversed___impl:
 4190|      6|{
 4191|      6|    listreviterobject *it;
 4192|       |
 4193|      6|    it = PyObject_GC_New(listreviterobject, &PyListRevIter_Type);
  ------------------
  |  |  181|      6|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 4194|      6|    if (it == NULL)
  ------------------
  |  Branch (4194:9): [True: 0, False: 6]
  ------------------
 4195|      0|        return NULL;
 4196|      6|    assert(PyList_Check(self));
  ------------------
  |  Branch (4196:5): [True: 6, False: 0]
  ------------------
 4197|      6|    it->it_index = PyList_GET_SIZE(self) - 1;
  ------------------
  |  |   38|      6|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4198|      6|    it->it_seq = (PyListObject*)Py_NewRef(self);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4199|      6|    PyObject_GC_Track(it);
 4200|      6|    return (PyObject *)it;
 4201|      6|}
listobject.c:py_list_clear_impl:
 1202|      4|{
 1203|      4|    list_clear(self);
 1204|      4|    Py_RETURN_NONE;
  ------------------
  |  |  628|      4|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1205|      4|}
listobject.c:list_append_impl:
 1234|    100|{
 1235|    100|    if (_PyList_AppendTakeRef(self, Py_NewRef(object)) < 0) {
  ------------------
  |  |  550|    100|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    100|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    100|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1235:9): [True: 0, False: 100]
  ------------------
 1236|      0|        return NULL;
 1237|      0|    }
 1238|    100|    Py_RETURN_NONE;
  ------------------
  |  |  628|    100|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|    100|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1239|    100|}
listobject.c:list_insert_impl:
 1185|      2|{
 1186|      2|    if (ins1(self, index, object) == 0) {
  ------------------
  |  Branch (1186:9): [True: 2, False: 0]
  ------------------
 1187|      2|        Py_RETURN_NONE;
  ------------------
  |  |  628|      2|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1188|      2|    }
 1189|      0|    return NULL;
 1190|      2|}
listobject.c:list_pop_impl:
 1588|     64|{
 1589|     64|    PyObject *v;
 1590|       |
 1591|     64|    if (Py_SIZE(self) == 0) {
  ------------------
  |  |  214|     64|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1591:9): [True: 0, False: 64]
  ------------------
 1592|       |        /* Special-case most common failure cause */
 1593|      0|        PyErr_SetString(PyExc_IndexError, "pop from empty list");
 1594|      0|        return NULL;
 1595|      0|    }
 1596|     64|    if (index < 0)
  ------------------
  |  Branch (1596:9): [True: 64, False: 0]
  ------------------
 1597|     64|        index += Py_SIZE(self);
  ------------------
  |  |  214|     64|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1598|     64|    if (!valid_index(index, Py_SIZE(self))) {
  ------------------
  |  |  214|     64|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1598:9): [True: 0, False: 64]
  ------------------
 1599|      0|        PyErr_SetString(PyExc_IndexError, "pop index out of range");
 1600|      0|        return NULL;
 1601|      0|    }
 1602|       |
 1603|     64|    PyObject **items = self->ob_item;
 1604|     64|    v = items[index];
 1605|     64|    if (Py_SIZE(self) == 1) {
  ------------------
  |  |  214|     64|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1605:9): [True: 52, False: 12]
  ------------------
 1606|     52|        Py_INCREF(v);
  ------------------
  |  |  310|     52|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1607|     52|        list_clear(self);
 1608|     52|        return v;
 1609|     52|    }
 1610|     12|    Py_ssize_t size_after_pop = Py_SIZE(self) - 1;
  ------------------
  |  |  214|     12|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1611|     12|    if (index < size_after_pop) {
  ------------------
  |  Branch (1611:9): [True: 0, False: 12]
  ------------------
 1612|      0|        ptr_wise_atomic_memmove(self, &items[index], &items[index+1],
 1613|      0|                                size_after_pop - index);
 1614|      0|    }
 1615|     12|    list_resize(self, size_after_pop);  // NB: shrinking a list can't fail
 1616|     12|    return v;
 1617|     64|}
listobject.c:list_remove_impl:
 3407|     60|{
 3408|     60|    Py_ssize_t i;
 3409|       |
 3410|     60|    for (i = 0; i < Py_SIZE(self); i++) {
  ------------------
  |  |  214|     60|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3410:17): [True: 60, False: 0]
  ------------------
 3411|     60|        PyObject *obj = self->ob_item[i];
 3412|     60|        Py_INCREF(obj);
  ------------------
  |  |  310|     60|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3413|     60|        int cmp = PyObject_RichCompareBool(obj, value, Py_EQ);
  ------------------
  |  |  654|     60|#define Py_EQ 2
  ------------------
 3414|     60|        Py_DECREF(obj);
  ------------------
  |  |  430|     60|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3415|     60|        if (cmp > 0) {
  ------------------
  |  Branch (3415:13): [True: 60, False: 0]
  ------------------
 3416|     60|            if (list_ass_slice_lock_held(self, i, i+1, NULL) == 0)
  ------------------
  |  Branch (3416:17): [True: 60, False: 0]
  ------------------
 3417|     60|                Py_RETURN_NONE;
  ------------------
  |  |  628|     60|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     60|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 3418|      0|            return NULL;
 3419|     60|        }
 3420|      0|        else if (cmp < 0)
  ------------------
  |  Branch (3420:18): [True: 0, False: 0]
  ------------------
 3421|      0|            return NULL;
 3422|     60|    }
 3423|      0|    PyErr_SetString(PyExc_ValueError, "list.remove(x): x not in list");
 3424|       |    return NULL;
 3425|     60|}
listobject.c:list___init___impl:
 3526|    108|{
 3527|       |    /* Verify list invariants established by PyType_GenericAlloc() */
 3528|    108|    assert(0 <= Py_SIZE(self));
  ------------------
  |  Branch (3528:5): [True: 108, False: 0]
  ------------------
 3529|    108|    assert(Py_SIZE(self) <= self->allocated || self->allocated == -1);
  ------------------
  |  Branch (3529:5): [True: 108, False: 0]
  |  Branch (3529:5): [True: 0, False: 0]
  ------------------
 3530|    108|    assert(self->ob_item != NULL ||
  ------------------
  |  Branch (3530:5): [True: 0, False: 108]
  |  Branch (3530:5): [True: 108, False: 0]
  |  Branch (3530:5): [True: 0, False: 0]
  ------------------
 3531|    108|           self->allocated == 0 || self->allocated == -1);
 3532|       |
 3533|       |    /* Empty previous contents */
 3534|    108|    if (self->ob_item != NULL) {
  ------------------
  |  Branch (3534:9): [True: 0, False: 108]
  ------------------
 3535|      0|        Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|      0|    {
  ------------------
 3536|      0|        list_clear(self);
 3537|      0|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 3538|      0|    }
 3539|    108|    if (iterable != NULL) {
  ------------------
  |  Branch (3539:9): [True: 48, False: 60]
  ------------------
 3540|     48|        if (_list_extend(self, iterable) < 0) {
  ------------------
  |  Branch (3540:13): [True: 0, False: 48]
  ------------------
 3541|      0|            return -1;
 3542|      0|        }
 3543|     48|    }
 3544|    108|    return 0;
 3545|    108|}
listobject.c:list_vectorcall:
 3550|     48|{
 3551|     48|    if (!_PyArg_NoKwnames("list", kwnames)) {
  ------------------
  |  |   15|     48|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 48, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3552|      0|        return NULL;
 3553|      0|    }
 3554|     48|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|     48|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
 3555|     48|    if (!_PyArg_CheckPositional("list", nargs, 0, 1)) {
  ------------------
  |  |   31|     48|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 48, False: 0]
  |  |  |  Branch (31:27): [True: 48, False: 0]
  |  |  ------------------
  |  |   32|     48|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3556|      0|        return NULL;
 3557|      0|    }
 3558|       |
 3559|     48|    PyObject *list = PyType_GenericAlloc(_PyType_CAST(type), 0);
  ------------------
  |  |  770|     48|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (3559:42): [True: 48, False: 0]
  ------------------
 3560|     48|    if (list == NULL) {
  ------------------
  |  Branch (3560:9): [True: 0, False: 48]
  ------------------
 3561|      0|        return NULL;
 3562|      0|    }
 3563|     48|    if (nargs) {
  ------------------
  |  Branch (3563:9): [True: 48, False: 0]
  ------------------
 3564|     48|        if (list___init___impl((PyListObject *)list, args[0])) {
  ------------------
  |  Branch (3564:13): [True: 0, False: 48]
  ------------------
 3565|      0|            Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3566|      0|            return NULL;
 3567|      0|        }
 3568|     48|    }
 3569|     48|    return list;
 3570|     48|}
listobject.c:list_iteritem:
 3915|     46|{
 3916|     46|    PyObject *result = list_get_item_ref((PyListObject *)obj, index);
 3917|     46|    return (_PyObjectIndexPair) { .object = result, .index = index + 1 };
 3918|     46|}
listobject.c:list_iter:
 4030|      8|{
 4031|      8|    if (!PyList_Check(seq)) {
  ------------------
  |  |   25|      8|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4031:9): [True: 0, False: 8]
  ------------------
 4032|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 4033|      0|        return NULL;
 4034|      0|    }
 4035|      8|    _PyListIterObject *it = _Py_FREELIST_POP(_PyListIterObject, list_iters);
  ------------------
  |  |   43|      8|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 4036|      8|    if (it == NULL) {
  ------------------
  |  Branch (4036:9): [True: 2, False: 6]
  ------------------
 4037|      2|        it = PyObject_GC_New(_PyListIterObject, &PyListIter_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 4038|      2|        if (it == NULL) {
  ------------------
  |  Branch (4038:13): [True: 0, False: 2]
  ------------------
 4039|      0|            return NULL;
 4040|      0|        }
 4041|      2|    }
 4042|      8|    it->it_index = 0;
 4043|      8|    it->it_seq = (PyListObject *)Py_NewRef(seq);
  ------------------
  |  |  550|      8|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4044|      8|    _PyObject_GC_TRACK(it);
  ------------------
  |  |  513|      8|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4045|      8|    return (PyObject *)it;
 4046|      8|}
listobject.c:listiter_dealloc:
 4050|      8|{
 4051|      8|    _PyListIterObject *it = (_PyListIterObject *)self;
 4052|      8|    _PyObject_GC_UNTRACK(it);
  ------------------
  |  |  515|      8|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4053|      8|    Py_XDECREF(it->it_seq);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4054|      8|    assert(Py_IS_TYPE(self, &PyListIter_Type));
  ------------------
  |  Branch (4054:5): [True: 8, False: 0]
  ------------------
 4055|      8|    _Py_FREELIST_FREE(list_iters, it, PyObject_GC_Del);
  ------------------
  |  |   35|      8|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|      8|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   14|      8|#  define Py_list_iters_MAXFREELIST 10
  |  |  ------------------
  ------------------
 4056|      8|}
listobject.c:listiter_next:
 4067|    552|{
 4068|    552|    _PyListIterObject *it = (_PyListIterObject *)self;
 4069|    552|    Py_ssize_t index = FT_ATOMIC_LOAD_SSIZE_RELAXED(it->it_index);
  ------------------
  |  |  149|    552|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 4070|    552|    if (index < 0) {
  ------------------
  |  Branch (4070:9): [True: 0, False: 552]
  ------------------
 4071|      0|        return NULL;
 4072|      0|    }
 4073|       |
 4074|    552|    PyObject *item = list_get_item_ref(it->it_seq, index);
 4075|    552|    if (item == NULL) {
  ------------------
  |  Branch (4075:9): [True: 6, False: 546]
  ------------------
 4076|       |        // out-of-bounds
 4077|      6|        FT_ATOMIC_STORE_SSIZE_RELAXED(it->it_index, -1);
  ------------------
  |  |  194|      6|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
 4078|      6|#ifndef Py_GIL_DISABLED
 4079|      6|        PyListObject *seq = it->it_seq;
 4080|      6|        it->it_seq = NULL;
 4081|      6|        Py_DECREF(seq);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4082|      6|#endif
 4083|      6|        return NULL;
 4084|      6|    }
 4085|    546|    FT_ATOMIC_STORE_SSIZE_RELAXED(it->it_index, index + 1);
  ------------------
  |  |  194|    546|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
 4086|    546|    return item;
 4087|    552|}
listobject.c:listreviter_dealloc:
 4205|      6|{
 4206|      6|    listreviterobject *it = (listreviterobject *)self;
 4207|      6|    PyObject_GC_UnTrack(it);
 4208|      6|    Py_XDECREF(it->it_seq);
  ------------------
  |  |  524|      6|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4209|      6|    PyObject_GC_Del(it);
 4210|      6|}
listobject.c:listreviter_next:
 4221|     10|{
 4222|     10|    listreviterobject *it = (listreviterobject *)self;
 4223|     10|    assert(it != NULL);
  ------------------
  |  Branch (4223:5): [True: 10, False: 0]
  ------------------
 4224|     10|    Py_ssize_t index = FT_ATOMIC_LOAD_SSIZE_RELAXED(it->it_index);
  ------------------
  |  |  149|     10|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 4225|     10|    if (index < 0) {
  ------------------
  |  Branch (4225:9): [True: 4, False: 6]
  ------------------
 4226|      4|        return NULL;
 4227|      4|    }
 4228|       |
 4229|      6|    PyListObject *seq = it->it_seq;
 4230|      6|    assert(PyList_Check(seq));
  ------------------
  |  Branch (4230:5): [True: 6, False: 0]
  ------------------
 4231|      6|    PyObject *item = list_get_item_ref(seq, index);
 4232|      6|    if (item != NULL) {
  ------------------
  |  Branch (4232:9): [True: 6, False: 0]
  ------------------
 4233|      6|        FT_ATOMIC_STORE_SSIZE_RELAXED(it->it_index, index - 1);
  ------------------
  |  |  194|      6|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
 4234|      6|        return item;
 4235|      6|    }
 4236|      0|    FT_ATOMIC_STORE_SSIZE_RELAXED(it->it_index, -1);
  ------------------
  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
 4237|      0|#ifndef Py_GIL_DISABLED
 4238|      0|    it->it_seq = NULL;
 4239|      0|    Py_DECREF(seq);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4240|      0|#endif
 4241|       |    return NULL;
 4242|      6|}

PyLong_FromLong:
  408|  1.95k|{
  409|       |    PYLONG_FROM_INT(unsigned long, long, ival);
  ------------------
  |  |  371|  1.95k|    do {                                                                            \
  |  |  372|  1.95k|        /* Handle small and medium cases. */                                        \
  |  |  373|  1.95k|        if (IS_SMALL_INT(ival)) {                                                   \
  |  |  ------------------
  |  |  |  |   29|  1.95k|#define IS_SMALL_INT(ival) _PY_IS_SMALL_INT(ival)
  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.95k|    (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   98|  1.95k|#define _PY_NSMALLNEGINTS           5
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |                   (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   97|  1.95k|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (68:6): [True: 1.95k, False: 6]
  |  |  |  |  |  |  |  Branch (68:37): [True: 1.57k, False: 374]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  374|  1.57k|            return get_small_int((sdigit)(ival));                                   \
  |  |  375|  1.57k|        }                                                                           \
  |  |  376|  1.95k|        if (-(INT_TYPE)PyLong_MASK <= (ival) && (ival) <= (INT_TYPE)PyLong_MASK) {  \
  |  |  ------------------
  |  |  |  |   62|    380|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    380|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    380|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (-(INT_TYPE)PyLong_MASK <= (ival) && (ival) <= (INT_TYPE)PyLong_MASK) {  \
  |  |  ------------------
  |  |  |  |   62|    380|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    380|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    380|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (376:13): [True: 380, False: 0]
  |  |  |  Branch (376:49): [True: 344, False: 36]
  |  |  ------------------
  |  |  377|    344|            return _PyLong_FromMedium((sdigit)(ival));                              \
  |  |  378|    344|        }                                                                           \
  |  |  379|    380|        UINT_TYPE abs_ival = (ival) < 0 ? 0U-(UINT_TYPE)(ival) : (UINT_TYPE)(ival); \
  |  |  ------------------
  |  |  |  Branch (379:30): [True: 0, False: 36]
  |  |  ------------------
  |  |  380|     36|        /* Do shift in two steps to avoid possible undefined behavior. */           \
  |  |  381|     36|        UINT_TYPE t = abs_ival >> PyLong_SHIFT >> PyLong_SHIFT;                     \
  |  |  ------------------
  |  |  |  |   47|     36|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |                       UINT_TYPE t = abs_ival >> PyLong_SHIFT >> PyLong_SHIFT;                     \
  |  |  ------------------
  |  |  |  |   47|     36|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  382|     36|        /* Count digits (at least two - smaller cases were handled above). */       \
  |  |  383|     36|        Py_ssize_t ndigits = 2;                                                     \
  |  |  384|     36|        while (t) {                                                                 \
  |  |  ------------------
  |  |  |  Branch (384:16): [True: 0, False: 36]
  |  |  ------------------
  |  |  385|      0|            ++ndigits;                                                              \
  |  |  386|      0|            t >>= PyLong_SHIFT;                                                     \
  |  |  ------------------
  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  387|      0|        }                                                                           \
  |  |  388|     36|        /* Construct output value. */                                               \
  |  |  389|     36|        PyLongObject *v = long_alloc(ndigits);                                      \
  |  |  390|     36|        if (v == NULL) {                                                            \
  |  |  ------------------
  |  |  |  Branch (390:13): [True: 0, False: 36]
  |  |  ------------------
  |  |  391|      0|            return NULL;                                                            \
  |  |  392|      0|        }                                                                           \
  |  |  393|     36|        digit *p = v->long_value.ob_digit;                                          \
  |  |  394|     36|        _PyLong_SetSignAndDigitCount(v, (ival) < 0 ? -1 : 1, ndigits);              \
  |  |  ------------------
  |  |  |  Branch (394:41): [True: 0, False: 36]
  |  |  ------------------
  |  |  395|     36|        t = abs_ival;                                                               \
  |  |  396|    108|        while (t) {                                                                 \
  |  |  ------------------
  |  |  |  Branch (396:16): [True: 72, False: 36]
  |  |  ------------------
  |  |  397|     72|            *p++ = (digit)(t & PyLong_MASK);                                        \
  |  |  ------------------
  |  |  |  |   62|     72|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|     72|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     72|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  398|     72|            t >>= PyLong_SHIFT;                                                     \
  |  |  ------------------
  |  |  |  |   47|     72|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  399|     72|        }                                                                           \
  |  |  400|     36|        return (PyObject *)v;                                                       \
  |  |  401|     36|    } while(0)
  |  |  ------------------
  |  |  |  Branch (401:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
  410|  1.95k|}
PyLong_FromUnsignedLong:
  446|    758|{
  447|       |    PYLONG_FROM_UINT(unsigned long, ival);
  ------------------
  |  |  413|    758|    do { \
  |  |  414|    758|        /* Handle small and medium cases. */ \
  |  |  415|    758|        if (IS_SMALL_UINT(ival)) { \
  |  |  ------------------
  |  |  |  |   30|    758|#define IS_SMALL_UINT(ival) ((ival) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    758|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (30:29): [True: 70, False: 688]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  416|     70|            return get_small_int((sdigit)(ival)); \
  |  |  417|     70|        } \
  |  |  418|    758|        if ((ival) <= PyLong_MASK) { \
  |  |  ------------------
  |  |  |  |   62|    688|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    688|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    688|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (418:13): [True: 0, False: 688]
  |  |  ------------------
  |  |  419|      0|            return _PyLong_FromMedium((sdigit)(ival)); \
  |  |  420|      0|        } \
  |  |  421|    688|        /* Do shift in two steps to avoid possible undefined behavior. */ \
  |  |  422|    688|        INT_TYPE t = (ival) >> PyLong_SHIFT >> PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|    688|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |                       INT_TYPE t = (ival) >> PyLong_SHIFT >> PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|    688|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  423|    688|        /* Count digits (at least two - smaller cases were handled above). */ \
  |  |  424|    688|        Py_ssize_t ndigits = 2; \
  |  |  425|    688|        while (t) { \
  |  |  ------------------
  |  |  |  Branch (425:16): [True: 0, False: 688]
  |  |  ------------------
  |  |  426|      0|            ++ndigits; \
  |  |  427|      0|            t >>= PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  428|      0|        } \
  |  |  429|    688|        /* Construct output value. */ \
  |  |  430|    688|        PyLongObject *v = long_alloc(ndigits); \
  |  |  431|    688|        if (v == NULL) { \
  |  |  ------------------
  |  |  |  Branch (431:13): [True: 0, False: 688]
  |  |  ------------------
  |  |  432|      0|            return NULL; \
  |  |  433|      0|        } \
  |  |  434|    688|        digit *p = v->long_value.ob_digit; \
  |  |  435|  2.06k|        while ((ival)) { \
  |  |  ------------------
  |  |  |  Branch (435:16): [True: 1.37k, False: 688]
  |  |  ------------------
  |  |  436|  1.37k|            *p++ = (digit)((ival) & PyLong_MASK); \
  |  |  ------------------
  |  |  |  |   62|  1.37k|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|  1.37k|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|  1.37k|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  437|  1.37k|            (ival) >>= PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|  1.37k|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  438|  1.37k|        } \
  |  |  439|    688|        return (PyObject *)v; \
  |  |  440|    688|    } while(0)
  |  |  ------------------
  |  |  |  Branch (440:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
  448|    758|}
PyLong_FromUnsignedLongLong:
  454|    204|{
  455|       |    PYLONG_FROM_UINT(unsigned long long, ival);
  ------------------
  |  |  413|    204|    do { \
  |  |  414|    204|        /* Handle small and medium cases. */ \
  |  |  415|    204|        if (IS_SMALL_UINT(ival)) { \
  |  |  ------------------
  |  |  |  |   30|    204|#define IS_SMALL_UINT(ival) ((ival) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    204|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (30:29): [True: 28, False: 176]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  416|     28|            return get_small_int((sdigit)(ival)); \
  |  |  417|     28|        } \
  |  |  418|    204|        if ((ival) <= PyLong_MASK) { \
  |  |  ------------------
  |  |  |  |   62|    176|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    176|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    176|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (418:13): [True: 56, False: 120]
  |  |  ------------------
  |  |  419|     56|            return _PyLong_FromMedium((sdigit)(ival)); \
  |  |  420|     56|        } \
  |  |  421|    176|        /* Do shift in two steps to avoid possible undefined behavior. */ \
  |  |  422|    176|        INT_TYPE t = (ival) >> PyLong_SHIFT >> PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|    120|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |                       INT_TYPE t = (ival) >> PyLong_SHIFT >> PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|    120|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  423|    120|        /* Count digits (at least two - smaller cases were handled above). */ \
  |  |  424|    120|        Py_ssize_t ndigits = 2; \
  |  |  425|    120|        while (t) { \
  |  |  ------------------
  |  |  |  Branch (425:16): [True: 0, False: 120]
  |  |  ------------------
  |  |  426|      0|            ++ndigits; \
  |  |  427|      0|            t >>= PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  428|      0|        } \
  |  |  429|    120|        /* Construct output value. */ \
  |  |  430|    120|        PyLongObject *v = long_alloc(ndigits); \
  |  |  431|    120|        if (v == NULL) { \
  |  |  ------------------
  |  |  |  Branch (431:13): [True: 0, False: 120]
  |  |  ------------------
  |  |  432|      0|            return NULL; \
  |  |  433|      0|        } \
  |  |  434|    120|        digit *p = v->long_value.ob_digit; \
  |  |  435|    360|        while ((ival)) { \
  |  |  ------------------
  |  |  |  Branch (435:16): [True: 240, False: 120]
  |  |  ------------------
  |  |  436|    240|            *p++ = (digit)((ival) & PyLong_MASK); \
  |  |  ------------------
  |  |  |  |   62|    240|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    240|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    240|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  437|    240|            (ival) >>= PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|    240|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  438|    240|        } \
  |  |  439|    120|        return (PyObject *)v; \
  |  |  440|    120|    } while(0)
  |  |  ------------------
  |  |  |  Branch (440:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
  456|    204|}
PyLong_FromSize_t:
  462|     58|{
  463|       |    PYLONG_FROM_UINT(size_t, ival);
  ------------------
  |  |  413|     58|    do { \
  |  |  414|     58|        /* Handle small and medium cases. */ \
  |  |  415|     58|        if (IS_SMALL_UINT(ival)) { \
  |  |  ------------------
  |  |  |  |   30|     58|#define IS_SMALL_UINT(ival) ((ival) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|     58|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (30:29): [True: 58, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  416|     58|            return get_small_int((sdigit)(ival)); \
  |  |  417|     58|        } \
  |  |  418|     58|        if ((ival) <= PyLong_MASK) { \
  |  |  ------------------
  |  |  |  |   62|      0|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|      0|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (418:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  419|      0|            return _PyLong_FromMedium((sdigit)(ival)); \
  |  |  420|      0|        } \
  |  |  421|      0|        /* Do shift in two steps to avoid possible undefined behavior. */ \
  |  |  422|      0|        INT_TYPE t = (ival) >> PyLong_SHIFT >> PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |                       INT_TYPE t = (ival) >> PyLong_SHIFT >> PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  423|      0|        /* Count digits (at least two - smaller cases were handled above). */ \
  |  |  424|      0|        Py_ssize_t ndigits = 2; \
  |  |  425|      0|        while (t) { \
  |  |  ------------------
  |  |  |  Branch (425:16): [True: 0, False: 0]
  |  |  ------------------
  |  |  426|      0|            ++ndigits; \
  |  |  427|      0|            t >>= PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  428|      0|        } \
  |  |  429|      0|        /* Construct output value. */ \
  |  |  430|      0|        PyLongObject *v = long_alloc(ndigits); \
  |  |  431|      0|        if (v == NULL) { \
  |  |  ------------------
  |  |  |  Branch (431:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  432|      0|            return NULL; \
  |  |  433|      0|        } \
  |  |  434|      0|        digit *p = v->long_value.ob_digit; \
  |  |  435|      0|        while ((ival)) { \
  |  |  ------------------
  |  |  |  Branch (435:16): [True: 0, False: 0]
  |  |  ------------------
  |  |  436|      0|            *p++ = (digit)((ival) & PyLong_MASK); \
  |  |  ------------------
  |  |  |  |   62|      0|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|      0|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  437|      0|            (ival) >>= PyLong_SHIFT; \
  |  |  ------------------
  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  438|      0|        } \
  |  |  439|      0|        return (PyObject *)v; \
  |  |  440|      0|    } while(0)
  |  |  ------------------
  |  |  |  Branch (440:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
  464|     58|}
PyLong_AsLongAndOverflow:
  594|    300|{
  595|       |    /* This version originally by Tim Peters */
  596|    300|    PyLongObject *v;
  597|    300|    long res;
  598|    300|    Py_ssize_t i;
  599|    300|    int sign;
  600|    300|    int do_decref = 0; /* if PyNumber_Index was called */
  601|       |
  602|    300|    *overflow = 0;
  603|    300|    if (vv == NULL) {
  ------------------
  |  Branch (603:9): [True: 0, False: 300]
  ------------------
  604|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  605|      0|        return -1;
  606|      0|    }
  607|       |
  608|    300|    if (PyLong_Check(vv)) {
  ------------------
  |  |   13|    300|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    300|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 300, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  609|    300|        v = (PyLongObject *)vv;
  610|    300|    }
  611|      0|    else {
  612|      0|        v = (PyLongObject *)_PyNumber_Index(vv);
  613|      0|        if (v == NULL)
  ------------------
  |  Branch (613:13): [True: 0, False: 0]
  ------------------
  614|      0|            return -1;
  615|      0|        do_decref = 1;
  616|      0|    }
  617|    300|    if (_PyLong_IsCompact(v)) {
  ------------------
  |  Branch (617:9): [True: 296, False: 4]
  ------------------
  618|       |#if SIZEOF_LONG < SIZEOF_SIZE_T
  619|       |        Py_ssize_t tmp = _PyLong_CompactValue(v);
  620|       |        if (tmp < LONG_MIN) {
  621|       |            *overflow = -1;
  622|       |            res = -1;
  623|       |        }
  624|       |        else if (tmp > LONG_MAX) {
  625|       |            *overflow = 1;
  626|       |            res = -1;
  627|       |        }
  628|       |        else {
  629|       |            res = (long)tmp;
  630|       |        }
  631|       |#else
  632|    296|        res = _PyLong_CompactValue(v);
  633|    296|#endif
  634|    296|    }
  635|      4|    else {
  636|      4|        res = -1;
  637|      4|        i = _PyLong_DigitCount(v);
  638|      4|        sign = _PyLong_NonCompactSign(v);
  639|       |
  640|      4|        unsigned long x = unroll_digits_ulong(v, &i);
  641|      4|        while (--i >= 0) {
  ------------------
  |  Branch (641:16): [True: 4, False: 0]
  ------------------
  642|      4|            if (x > (ULONG_MAX >> PyLong_SHIFT)) {
  ------------------
  |  |   47|      4|#define PyLong_SHIFT    30
  ------------------
  |  Branch (642:17): [True: 4, False: 0]
  ------------------
  643|      4|                *overflow = sign;
  644|      4|                goto exit;
  645|      4|            }
  646|      0|            x = (x << PyLong_SHIFT) | v->long_value.ob_digit[i];
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
  647|      0|        }
  648|       |        /* Haven't lost any bits, but casting to long requires extra
  649|       |        * care (see comment above).
  650|       |        */
  651|      0|        if (x <= (unsigned long)LONG_MAX) {
  ------------------
  |  Branch (651:13): [True: 0, False: 0]
  ------------------
  652|      0|            res = (long)x * sign;
  653|      0|        }
  654|      0|        else if (sign < 0 && x == PY_ABS_LONG_MIN) {
  ------------------
  |  |  532|      0|#define PY_ABS_LONG_MIN         (0-(unsigned long)LONG_MIN)
  ------------------
  |  Branch (654:18): [True: 0, False: 0]
  |  Branch (654:30): [True: 0, False: 0]
  ------------------
  655|      0|            res = LONG_MIN;
  656|      0|        }
  657|      0|        else {
  658|      0|            *overflow = sign;
  659|       |            /* res is already set to -1 */
  660|      0|        }
  661|      0|    }
  662|    300|  exit:
  663|    300|    if (do_decref) {
  ------------------
  |  Branch (663:9): [True: 0, False: 300]
  ------------------
  664|      0|        Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  665|      0|    }
  666|    300|    return res;
  667|    300|}
PyLong_AsLong:
  674|     32|{
  675|     32|    int overflow;
  676|     32|    long result = PyLong_AsLongAndOverflow(obj, &overflow);
  677|     32|    if (overflow) {
  ------------------
  |  Branch (677:9): [True: 2, False: 30]
  ------------------
  678|       |        /* XXX: could be cute and give a different
  679|       |           message for overflow == -1 */
  680|      2|        PyErr_SetString(PyExc_OverflowError,
  681|      2|                        "Python int too large to convert to C long");
  682|      2|    }
  683|     32|    return result;
  684|     32|}
PyLong_AsInt:
  691|    246|{
  692|    246|    int overflow;
  693|    246|    long result = PyLong_AsLongAndOverflow(obj, &overflow);
  694|    246|    if (overflow || result > INT_MAX || result < INT_MIN) {
  ------------------
  |  Branch (694:9): [True: 0, False: 246]
  |  Branch (694:21): [True: 0, False: 246]
  |  Branch (694:41): [True: 0, False: 246]
  ------------------
  695|       |        /* XXX: could be cute and give a different
  696|       |           message for overflow == -1 */
  697|      0|        PyErr_SetString(PyExc_OverflowError,
  698|      0|                        "Python int too large to convert to C int");
  699|      0|        return -1;
  700|      0|    }
  701|    246|    return (int)result;
  702|    246|}
PyLong_AsSsize_t:
  708|    182|PyLong_AsSsize_t(PyObject *vv) {
  709|    182|    PyLongObject *v;
  710|    182|    Py_ssize_t i;
  711|    182|    int sign;
  712|       |
  713|    182|    if (vv == NULL) {
  ------------------
  |  Branch (713:9): [True: 0, False: 182]
  ------------------
  714|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  715|      0|        return -1;
  716|      0|    }
  717|    182|    if (!PyLong_Check(vv)) {
  ------------------
  |  |   13|    182|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    182|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (717:9): [True: 0, False: 182]
  ------------------
  718|      0|        PyErr_SetString(PyExc_TypeError, "an integer is required");
  719|      0|        return -1;
  720|      0|    }
  721|       |
  722|    182|    v = (PyLongObject *)vv;
  723|    182|    if (_PyLong_IsCompact(v)) {
  ------------------
  |  Branch (723:9): [True: 182, False: 0]
  ------------------
  724|    182|        return _PyLong_CompactValue(v);
  725|    182|    }
  726|      0|    i = _PyLong_DigitCount(v);
  727|      0|    sign = _PyLong_NonCompactSign(v);
  728|       |
  729|      0|    size_t x = unroll_digits_size_t(v, &i);
  730|      0|    while (--i >= 0) {
  ------------------
  |  Branch (730:12): [True: 0, False: 0]
  ------------------
  731|      0|        if (x > (SIZE_MAX >> PyLong_SHIFT)) {
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
  |  Branch (731:13): [True: 0, False: 0]
  ------------------
  732|      0|            goto overflow;
  733|      0|        }
  734|      0|        x = (x << PyLong_SHIFT) | v->long_value.ob_digit[i];
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
  735|      0|    }
  736|       |    /* Haven't lost any bits, but casting to a signed type requires
  737|       |     * extra care (see comment above).
  738|       |     */
  739|      0|    if (x <= (size_t)PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (739:9): [True: 0, False: 0]
  ------------------
  740|      0|        return (Py_ssize_t)x * sign;
  741|      0|    }
  742|      0|    else if (sign < 0 && x == PY_ABS_SSIZE_T_MIN) {
  ------------------
  |  |  533|      0|#define PY_ABS_SSIZE_T_MIN      (0-(size_t)PY_SSIZE_T_MIN)
  |  |  ------------------
  |  |  |  |  146|      0|#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (742:14): [True: 0, False: 0]
  |  Branch (742:26): [True: 0, False: 0]
  ------------------
  743|      0|        return PY_SSIZE_T_MIN;
  ------------------
  |  |  146|      0|#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
  |  |  ------------------
  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  ------------------
  744|      0|    }
  745|       |    /* else overflow */
  746|       |
  747|      0|  overflow:
  748|      0|    PyErr_SetString(PyExc_OverflowError,
  749|      0|                    "Python int too large to convert to C ssize_t");
  750|      0|    return -1;
  751|      0|}
PyLong_AsUnsignedLong:
  758|      4|{
  759|      4|    PyLongObject *v;
  760|      4|    Py_ssize_t i;
  761|       |
  762|      4|    if (vv == NULL) {
  ------------------
  |  Branch (762:9): [True: 0, False: 4]
  ------------------
  763|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  764|      0|        return (unsigned long)-1;
  765|      0|    }
  766|      4|    if (!PyLong_Check(vv)) {
  ------------------
  |  |   13|      4|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (766:9): [True: 0, False: 4]
  ------------------
  767|      0|        PyErr_SetString(PyExc_TypeError, "an integer is required");
  768|      0|        return (unsigned long)-1;
  769|      0|    }
  770|       |
  771|      4|    v = (PyLongObject *)vv;
  772|      4|    if (_PyLong_IsNonNegativeCompact(v)) {
  ------------------
  |  Branch (772:9): [True: 4, False: 0]
  ------------------
  773|       |#if SIZEOF_LONG < SIZEOF_SIZE_T
  774|       |        size_t tmp = (size_t)_PyLong_CompactValue(v);
  775|       |        unsigned long res = (unsigned long)tmp;
  776|       |        if (res != tmp) {
  777|       |            goto overflow;
  778|       |        }
  779|       |        return res;
  780|       |#else
  781|      4|        return (unsigned long)(size_t)_PyLong_CompactValue(v);
  782|      4|#endif
  783|      4|    }
  784|      0|    if (_PyLong_IsNegative(v)) {
  ------------------
  |  Branch (784:9): [True: 0, False: 0]
  ------------------
  785|      0|        PyErr_SetString(PyExc_OverflowError,
  786|      0|                        "can't convert negative value to unsigned int");
  787|      0|        return (unsigned long) -1;
  788|      0|    }
  789|      0|    i = _PyLong_DigitCount(v);
  790|       |
  791|      0|    unsigned long x = unroll_digits_ulong(v, &i);
  792|      0|    while (--i >= 0) {
  ------------------
  |  Branch (792:12): [True: 0, False: 0]
  ------------------
  793|      0|        if (x > (ULONG_MAX >> PyLong_SHIFT)) {
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
  |  Branch (793:13): [True: 0, False: 0]
  ------------------
  794|      0|            goto overflow;
  795|      0|        }
  796|      0|        x = (x << PyLong_SHIFT) | v->long_value.ob_digit[i];
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
  797|      0|    }
  798|      0|    return x;
  799|      0|overflow:
  800|      0|    PyErr_SetString(PyExc_OverflowError,
  801|      0|                    "Python int too large to convert "
  802|      0|                    "to C unsigned long");
  803|      0|    return (unsigned long) -1;
  804|      0|}
PyLong_GetSign:
  955|      6|{
  956|      6|    if (!PyLong_Check(vv)) {
  ------------------
  |  |   13|      6|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (956:9): [True: 0, False: 6]
  ------------------
  957|      0|        PyErr_Format(PyExc_TypeError, "expect int, got %T", vv);
  958|      0|        return -1;
  959|      0|    }
  960|       |
  961|      6|    *sign = long_sign(vv);
  962|      6|    return 0;
  963|      6|}
_PyLong_AsByteArray:
 1113|      2|{
 1114|      2|    Py_ssize_t i;               /* index into v->long_value.ob_digit */
 1115|      2|    Py_ssize_t ndigits;         /* number of digits */
 1116|      2|    twodigits accum;            /* sliding register */
 1117|      2|    unsigned int accumbits;     /* # bits in accum */
 1118|      2|    int do_twos_comp;           /* store 2's-comp?  is_signed and v < 0 */
 1119|      2|    digit carry;                /* for computing 2's-comp */
 1120|      2|    size_t j;                   /* # bytes filled */
 1121|      2|    unsigned char* p;           /* pointer to next byte in bytes */
 1122|      2|    int pincr;                  /* direction to move p */
 1123|       |
 1124|      2|    assert(v != NULL && PyLong_Check(v));
  ------------------
  |  Branch (1124:5): [True: 2, False: 0]
  |  Branch (1124:5): [True: 2, False: 0]
  ------------------
 1125|       |
 1126|      2|    ndigits = _PyLong_DigitCount(v);
 1127|      2|    if (_PyLong_IsNegative(v)) {
  ------------------
  |  Branch (1127:9): [True: 0, False: 2]
  ------------------
 1128|      0|        if (!is_signed) {
  ------------------
  |  Branch (1128:13): [True: 0, False: 0]
  ------------------
 1129|      0|            if (with_exceptions) {
  ------------------
  |  Branch (1129:17): [True: 0, False: 0]
  ------------------
 1130|      0|                PyErr_SetString(PyExc_OverflowError,
 1131|      0|                                "can't convert negative int to unsigned");
 1132|      0|            }
 1133|      0|            return -1;
 1134|      0|        }
 1135|      0|        do_twos_comp = 1;
 1136|      0|    }
 1137|      2|    else {
 1138|      2|        do_twos_comp = 0;
 1139|      2|    }
 1140|       |
 1141|      2|    if (little_endian) {
  ------------------
  |  Branch (1141:9): [True: 2, False: 0]
  ------------------
 1142|      2|        p = bytes;
 1143|      2|        pincr = 1;
 1144|      2|    }
 1145|      0|    else {
 1146|      0|        p = bytes + n - 1;
 1147|      0|        pincr = -1;
 1148|      0|    }
 1149|       |
 1150|       |    /* Copy over all the Python digits.
 1151|       |       It's crucial that every Python digit except for the MSD contribute
 1152|       |       exactly PyLong_SHIFT bits to the total, so first assert that the int is
 1153|       |       normalized.
 1154|       |       NOTE: PyLong_AsNativeBytes() assumes that this function will fill in 'n'
 1155|       |       bytes even if it eventually fails to convert the whole number. Make sure
 1156|       |       you account for that if you are changing this algorithm to return without
 1157|       |       doing that.
 1158|       |       */
 1159|      2|    assert(ndigits == 0 || v->long_value.ob_digit[ndigits - 1] != 0);
  ------------------
  |  Branch (1159:5): [True: 0, False: 2]
  |  Branch (1159:5): [True: 2, False: 0]
  ------------------
 1160|      2|    j = 0;
 1161|      2|    accum = 0;
 1162|      2|    accumbits = 0;
 1163|      2|    carry = do_twos_comp ? 1 : 0;
  ------------------
  |  Branch (1163:13): [True: 0, False: 2]
  ------------------
 1164|      4|    for (i = 0; i < ndigits; ++i) {
  ------------------
  |  Branch (1164:17): [True: 2, False: 2]
  ------------------
 1165|      2|        digit thisdigit = v->long_value.ob_digit[i];
 1166|      2|        if (do_twos_comp) {
  ------------------
  |  Branch (1166:13): [True: 0, False: 2]
  ------------------
 1167|      0|            thisdigit = (thisdigit ^ PyLong_MASK) + carry;
  ------------------
  |  |   62|      0|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|      0|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1168|      0|            carry = thisdigit >> PyLong_SHIFT;
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
 1169|      0|            thisdigit &= PyLong_MASK;
  ------------------
  |  |   62|      0|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|      0|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1170|      0|        }
 1171|       |        /* Because we're going LSB to MSB, thisdigit is more
 1172|       |           significant than what's already in accum, so needs to be
 1173|       |           prepended to accum. */
 1174|      2|        accum |= (twodigits)thisdigit << accumbits;
 1175|       |
 1176|       |        /* The most-significant digit may be (probably is) at least
 1177|       |           partly empty. */
 1178|      2|        if (i == ndigits - 1) {
  ------------------
  |  Branch (1178:13): [True: 2, False: 0]
  ------------------
 1179|       |            /* Count # of sign bits -- they needn't be stored,
 1180|       |             * although for signed conversion we need later to
 1181|       |             * make sure at least one sign bit gets stored. */
 1182|      2|            digit s = do_twos_comp ? thisdigit ^ PyLong_MASK : thisdigit;
  ------------------
  |  |   62|      0|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|      0|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|      0|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1182:23): [True: 0, False: 2]
  ------------------
 1183|     58|            while (s != 0) {
  ------------------
  |  Branch (1183:20): [True: 56, False: 2]
  ------------------
 1184|     56|                s >>= 1;
 1185|     56|                accumbits++;
 1186|     56|            }
 1187|      2|        }
 1188|      0|        else
 1189|      0|            accumbits += PyLong_SHIFT;
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
 1190|       |
 1191|       |        /* Store as many bytes as possible. */
 1192|      8|        while (accumbits >= 8) {
  ------------------
  |  Branch (1192:16): [True: 6, False: 2]
  ------------------
 1193|      6|            if (j >= n)
  ------------------
  |  Branch (1193:17): [True: 0, False: 6]
  ------------------
 1194|      0|                goto Overflow;
 1195|      6|            ++j;
 1196|      6|            *p = (unsigned char)(accum & 0xff);
 1197|      6|            p += pincr;
 1198|      6|            accumbits -= 8;
 1199|      6|            accum >>= 8;
 1200|      6|        }
 1201|      2|    }
 1202|       |
 1203|       |    /* Store the straggler (if any). */
 1204|      2|    assert(accumbits < 8);
  ------------------
  |  Branch (1204:5): [True: 2, False: 0]
  ------------------
 1205|      2|    assert(carry == 0);  /* else do_twos_comp and *every* digit was 0 */
  ------------------
  |  Branch (1205:5): [True: 2, False: 0]
  ------------------
 1206|      2|    if (accumbits > 0) {
  ------------------
  |  Branch (1206:9): [True: 2, False: 0]
  ------------------
 1207|      2|        if (j >= n)
  ------------------
  |  Branch (1207:13): [True: 0, False: 2]
  ------------------
 1208|      0|            goto Overflow;
 1209|      2|        ++j;
 1210|      2|        if (do_twos_comp) {
  ------------------
  |  Branch (1210:13): [True: 0, False: 2]
  ------------------
 1211|       |            /* Fill leading bits of the byte with sign bits
 1212|       |               (appropriately pretending that the int had an
 1213|       |               infinite supply of sign bits). */
 1214|      0|            accum |= (~(twodigits)0) << accumbits;
 1215|      0|        }
 1216|      2|        *p = (unsigned char)(accum & 0xff);
 1217|      2|        p += pincr;
 1218|      2|    }
 1219|      0|    else if (j == n && is_signed) {
  ------------------
  |  Branch (1219:14): [True: 0, False: 0]
  |  Branch (1219:24): [True: 0, False: 0]
  ------------------
 1220|       |        /* The main loop filled the byte array exactly, so the code
 1221|       |           just above didn't get to ensure there's a sign bit, and the
 1222|       |           loop below wouldn't add one either.  Make sure a sign bit
 1223|       |           exists. */
 1224|      0|        int sign_bit_set;
 1225|      0|        if (n > 0) {
  ------------------
  |  Branch (1225:13): [True: 0, False: 0]
  ------------------
 1226|      0|            unsigned char msb = *(p - pincr);
 1227|      0|            sign_bit_set = msb >= 0x80;
 1228|      0|        }
 1229|      0|        else {
 1230|      0|            sign_bit_set = 0;
 1231|      0|        }
 1232|      0|        assert(accumbits == 0);
  ------------------
  |  Branch (1232:9): [True: 0, False: 0]
  ------------------
 1233|      0|        if (sign_bit_set == do_twos_comp)
  ------------------
  |  Branch (1233:13): [True: 0, False: 0]
  ------------------
 1234|      0|            return 0;
 1235|      0|        else
 1236|      0|            goto Overflow;
 1237|      0|    }
 1238|       |
 1239|       |    /* Fill remaining bytes with copies of the sign bit. */
 1240|      2|    {
 1241|      2|        unsigned char signbyte = do_twos_comp ? 0xffU : 0U;
  ------------------
  |  Branch (1241:34): [True: 0, False: 2]
  ------------------
 1242|      2|        for ( ; j < n; ++j, p += pincr)
  ------------------
  |  Branch (1242:17): [True: 0, False: 2]
  ------------------
 1243|      0|            *p = signbyte;
 1244|      2|    }
 1245|       |
 1246|      2|    return 0;
 1247|       |
 1248|      0|  Overflow:
 1249|      0|    if (with_exceptions) {
  ------------------
  |  Branch (1249:9): [True: 0, False: 0]
  ------------------
 1250|      0|        PyErr_SetString(PyExc_OverflowError, "int too big to convert");
 1251|      0|    }
 1252|      0|    return -1;
 1253|       |
 1254|      2|}
PyLong_AsNativeBytes:
 1283|      2|{
 1284|      2|    PyLongObject *v;
 1285|      2|    union {
 1286|      2|        Py_ssize_t v;
 1287|      2|        unsigned char b[sizeof(Py_ssize_t)];
 1288|      2|    } cv;
 1289|      2|    int do_decref = 0;
 1290|      2|    Py_ssize_t res = 0;
 1291|       |
 1292|      2|    if (vv == NULL || n < 0) {
  ------------------
  |  Branch (1292:9): [True: 0, False: 2]
  |  Branch (1292:23): [True: 0, False: 2]
  ------------------
 1293|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1294|      0|        return -1;
 1295|      0|    }
 1296|       |
 1297|      2|    int little_endian = flags;
 1298|      2|    if (_resolve_endianness(&little_endian) < 0) {
  ------------------
  |  Branch (1298:9): [True: 0, False: 2]
  ------------------
 1299|      0|        return -1;
 1300|      0|    }
 1301|       |
 1302|      2|    if (PyLong_Check(vv)) {
  ------------------
  |  |   13|      2|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1303|      2|        v = (PyLongObject *)vv;
 1304|      2|    }
 1305|      0|    else if (flags != -1 && (flags & Py_ASNATIVEBYTES_ALLOW_INDEX)) {
  ------------------
  |  |   50|      0|#define Py_ASNATIVEBYTES_ALLOW_INDEX 16
  ------------------
  |  Branch (1305:14): [True: 0, False: 0]
  |  Branch (1305:29): [True: 0, False: 0]
  ------------------
 1306|      0|        v = (PyLongObject *)_PyNumber_Index(vv);
 1307|      0|        if (v == NULL) {
  ------------------
  |  Branch (1307:13): [True: 0, False: 0]
  ------------------
 1308|      0|            return -1;
 1309|      0|        }
 1310|      0|        do_decref = 1;
 1311|      0|    }
 1312|      0|    else {
 1313|      0|        PyErr_Format(PyExc_TypeError, "expect int, got %T", vv);
 1314|      0|        return -1;
 1315|      0|    }
 1316|       |
 1317|      2|    if ((flags != -1 && (flags & Py_ASNATIVEBYTES_REJECT_NEGATIVE))
  ------------------
  |  |   49|      2|#define Py_ASNATIVEBYTES_REJECT_NEGATIVE 8
  ------------------
  |  Branch (1317:10): [True: 2, False: 0]
  |  Branch (1317:25): [True: 0, False: 2]
  ------------------
 1318|      0|        && _PyLong_IsNegative(v)) {
  ------------------
  |  Branch (1318:12): [True: 0, False: 0]
  ------------------
 1319|      0|        PyErr_SetString(PyExc_ValueError, "Cannot convert negative int");
 1320|      0|        if (do_decref) {
  ------------------
  |  Branch (1320:13): [True: 0, False: 0]
  ------------------
 1321|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1322|      0|        }
 1323|      0|        return -1;
 1324|      0|    }
 1325|       |
 1326|      2|    if (_PyLong_IsCompact(v)) {
  ------------------
  |  Branch (1326:9): [True: 2, False: 0]
  ------------------
 1327|      2|        res = 0;
 1328|      2|        cv.v = _PyLong_CompactValue(v);
 1329|       |        /* Most paths result in res = sizeof(compact value). Only the case
 1330|       |         * where 0 < n < sizeof(compact value) do we need to check and adjust
 1331|       |         * our return value. */
 1332|      2|        res = sizeof(cv.b);
 1333|      2|        if (n <= 0) {
  ------------------
  |  Branch (1333:13): [True: 0, False: 2]
  ------------------
 1334|       |            // nothing to do!
 1335|      0|        }
 1336|      2|        else if (n <= (Py_ssize_t)sizeof(cv.b)) {
  ------------------
  |  Branch (1336:18): [True: 2, False: 0]
  ------------------
 1337|      2|#if PY_LITTLE_ENDIAN
 1338|      2|            if (little_endian) {
  ------------------
  |  Branch (1338:17): [True: 2, False: 0]
  ------------------
 1339|      2|                memcpy(buffer, cv.b, n);
 1340|      2|            }
 1341|      0|            else {
 1342|      0|                for (Py_ssize_t i = 0; i < n; ++i) {
  ------------------
  |  Branch (1342:40): [True: 0, False: 0]
  ------------------
 1343|      0|                    ((unsigned char*)buffer)[n - i - 1] = cv.b[i];
 1344|      0|                }
 1345|      0|            }
 1346|       |#else
 1347|       |            if (little_endian) {
 1348|       |                for (Py_ssize_t i = 0; i < n; ++i) {
 1349|       |                    ((unsigned char*)buffer)[i] = cv.b[sizeof(cv.b) - i - 1];
 1350|       |                }
 1351|       |            }
 1352|       |            else {
 1353|       |                memcpy(buffer, &cv.b[sizeof(cv.b) - n], n);
 1354|       |            }
 1355|       |#endif
 1356|       |
 1357|       |            /* If we fit, return the requested number of bytes */
 1358|      2|            if (_fits_in_n_bits(cv.v, n * 8)) {
  ------------------
  |  Branch (1358:17): [True: 2, False: 0]
  ------------------
 1359|      2|                res = n;
 1360|      2|            } else if (cv.v > 0 && _fits_in_n_bits(cv.v, n * 8 + 1)) {
  ------------------
  |  Branch (1360:24): [True: 0, False: 0]
  |  Branch (1360:36): [True: 0, False: 0]
  ------------------
 1361|       |                /* Positive values with the MSB set do not require an
 1362|       |                 * additional bit when the caller's intent is to treat them
 1363|       |                 * as unsigned. */
 1364|      0|                if (flags == -1 || (flags & Py_ASNATIVEBYTES_UNSIGNED_BUFFER)) {
  ------------------
  |  |   48|      0|#define Py_ASNATIVEBYTES_UNSIGNED_BUFFER 4
  ------------------
  |  Branch (1364:21): [True: 0, False: 0]
  |  Branch (1364:36): [True: 0, False: 0]
  ------------------
 1365|      0|                    res = n;
 1366|      0|                } else {
 1367|      0|                    res = n + 1;
 1368|      0|                }
 1369|      0|            }
 1370|      2|        }
 1371|      0|        else {
 1372|      0|            unsigned char fill = cv.v < 0 ? 0xFF : 0x00;
  ------------------
  |  Branch (1372:34): [True: 0, False: 0]
  ------------------
 1373|      0|#if PY_LITTLE_ENDIAN
 1374|      0|            if (little_endian) {
  ------------------
  |  Branch (1374:17): [True: 0, False: 0]
  ------------------
 1375|      0|                memcpy(buffer, cv.b, sizeof(cv.b));
 1376|      0|                memset((char *)buffer + sizeof(cv.b), fill, n - sizeof(cv.b));
 1377|      0|            }
 1378|      0|            else {
 1379|      0|                unsigned char *b = (unsigned char *)buffer;
 1380|      0|                for (Py_ssize_t i = 0; i < n - (int)sizeof(cv.b); ++i) {
  ------------------
  |  Branch (1380:40): [True: 0, False: 0]
  ------------------
 1381|      0|                    *b++ = fill;
 1382|      0|                }
 1383|      0|                for (Py_ssize_t i = sizeof(cv.b); i > 0; --i) {
  ------------------
  |  Branch (1383:51): [True: 0, False: 0]
  ------------------
 1384|      0|                    *b++ = cv.b[i - 1];
 1385|      0|                }
 1386|      0|            }
 1387|       |#else
 1388|       |            if (little_endian) {
 1389|       |                unsigned char *b = (unsigned char *)buffer;
 1390|       |                for (Py_ssize_t i = sizeof(cv.b); i > 0; --i) {
 1391|       |                    *b++ = cv.b[i - 1];
 1392|       |                }
 1393|       |                for (Py_ssize_t i = 0; i < n - (int)sizeof(cv.b); ++i) {
 1394|       |                    *b++ = fill;
 1395|       |                }
 1396|       |            }
 1397|       |            else {
 1398|       |                memset(buffer, fill, n - sizeof(cv.b));
 1399|       |                memcpy((char *)buffer + n - sizeof(cv.b), cv.b, sizeof(cv.b));
 1400|       |            }
 1401|       |#endif
 1402|      0|        }
 1403|      2|    }
 1404|      0|    else {
 1405|      0|        if (n > 0) {
  ------------------
  |  Branch (1405:13): [True: 0, False: 0]
  ------------------
 1406|      0|            _PyLong_AsByteArray(v, buffer, (size_t)n, little_endian, 1, 0);
 1407|      0|        }
 1408|       |
 1409|       |        /* Calculates the number of bits required for the *absolute* value
 1410|       |         * of v. This does not take sign into account, only magnitude. */
 1411|      0|        int64_t nb = _PyLong_NumBits((PyObject *)v);
 1412|      0|        assert(nb >= 0);
  ------------------
  |  Branch (1412:9): [True: 0, False: 0]
  ------------------
 1413|       |        /* Normally this would be ((nb - 1) / 8) + 1 to avoid rounding up
 1414|       |         * multiples of 8 to the next byte, but we add an implied bit for
 1415|       |         * the sign and it cancels out. */
 1416|      0|        res = (Py_ssize_t)(nb / 8) + 1;
 1417|       |
 1418|       |        /* Two edge cases exist that are best handled after extracting the
 1419|       |         * bits. These may result in us reporting overflow when the value
 1420|       |         * actually fits.
 1421|       |         */
 1422|      0|        if (n > 0 && res == n + 1 && nb % 8 == 0) {
  ------------------
  |  Branch (1422:13): [True: 0, False: 0]
  |  Branch (1422:22): [True: 0, False: 0]
  |  Branch (1422:38): [True: 0, False: 0]
  ------------------
 1423|      0|            if (_PyLong_IsNegative(v)) {
  ------------------
  |  Branch (1423:17): [True: 0, False: 0]
  ------------------
 1424|       |                /* Values of 0x80...00 from negative values that use every
 1425|       |                 * available bit in the buffer do not require an additional
 1426|       |                 * bit to store the sign. */
 1427|      0|                int is_edge_case = 1;
 1428|      0|                unsigned char *b = (unsigned char *)buffer;
 1429|      0|                for (Py_ssize_t i = 0; i < n && is_edge_case; ++i, ++b) {
  ------------------
  |  Branch (1429:40): [True: 0, False: 0]
  |  Branch (1429:49): [True: 0, False: 0]
  ------------------
 1430|      0|                    if (i == 0) {
  ------------------
  |  Branch (1430:25): [True: 0, False: 0]
  ------------------
 1431|      0|                        is_edge_case = (*b == (little_endian ? 0 : 0x80));
  ------------------
  |  Branch (1431:48): [True: 0, False: 0]
  ------------------
 1432|      0|                    } else if (i < n - 1) {
  ------------------
  |  Branch (1432:32): [True: 0, False: 0]
  ------------------
 1433|      0|                        is_edge_case = (*b == 0);
 1434|      0|                    } else {
 1435|      0|                        is_edge_case = (*b == (little_endian ? 0x80 : 0));
  ------------------
  |  Branch (1435:48): [True: 0, False: 0]
  ------------------
 1436|      0|                    }
 1437|      0|                }
 1438|      0|                if (is_edge_case) {
  ------------------
  |  Branch (1438:21): [True: 0, False: 0]
  ------------------
 1439|      0|                    res = n;
 1440|      0|                }
 1441|      0|            }
 1442|      0|            else {
 1443|       |                /* Positive values with the MSB set do not require an
 1444|       |                 * additional bit when the caller's intent is to treat them
 1445|       |                 * as unsigned. */
 1446|      0|                unsigned char *b = (unsigned char *)buffer;
 1447|      0|                if (b[little_endian ? n - 1 : 0] & 0x80) {
  ------------------
  |  Branch (1447:21): [True: 0, False: 0]
  |  Branch (1447:23): [True: 0, False: 0]
  ------------------
 1448|      0|                    if (flags == -1 || (flags & Py_ASNATIVEBYTES_UNSIGNED_BUFFER)) {
  ------------------
  |  |   48|      0|#define Py_ASNATIVEBYTES_UNSIGNED_BUFFER 4
  ------------------
  |  Branch (1448:25): [True: 0, False: 0]
  |  Branch (1448:40): [True: 0, False: 0]
  ------------------
 1449|      0|                        res = n;
 1450|      0|                    } else {
 1451|      0|                        res = n + 1;
 1452|      0|                    }
 1453|      0|                }
 1454|      0|            }
 1455|      0|        }
 1456|      0|    }
 1457|       |
 1458|      2|    if (do_decref) {
  ------------------
  |  Branch (1458:9): [True: 0, False: 2]
  ------------------
 1459|      0|        Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1460|      0|    }
 1461|       |
 1462|      2|    return res;
 1463|      2|}
PyLong_FromVoidPtr:
 1509|    692|{
 1510|    692|#if SIZEOF_VOID_P <= SIZEOF_LONG
 1511|    692|    return PyLong_FromUnsignedLong((unsigned long)(uintptr_t)p);
 1512|       |#else
 1513|       |
 1514|       |#if SIZEOF_LONG_LONG < SIZEOF_VOID_P
 1515|       |#   error "PyLong_FromVoidPtr: sizeof(long long) < sizeof(void*)"
 1516|       |#endif
 1517|       |    return PyLong_FromUnsignedLongLong((unsigned long long)(uintptr_t)p);
 1518|       |#endif /* SIZEOF_VOID_P <= SIZEOF_LONG */
 1519|       |
 1520|    692|}
PyLong_FromLongLong:
 1567|    198|{
 1568|       |    PYLONG_FROM_INT(unsigned long long, long long, ival);
  ------------------
  |  |  371|    198|    do {                                                                            \
  |  |  372|    198|        /* Handle small and medium cases. */                                        \
  |  |  373|    198|        if (IS_SMALL_INT(ival)) {                                                   \
  |  |  ------------------
  |  |  |  |   29|    198|#define IS_SMALL_INT(ival) _PY_IS_SMALL_INT(ival)
  |  |  |  |  ------------------
  |  |  |  |  |  |   68|    198|    (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   98|    198|#define _PY_NSMALLNEGINTS           5
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |                   (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   97|    198|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (68:6): [True: 198, False: 0]
  |  |  |  |  |  |  |  Branch (68:37): [True: 2, False: 196]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  374|      2|            return get_small_int((sdigit)(ival));                                   \
  |  |  375|      2|        }                                                                           \
  |  |  376|    198|        if (-(INT_TYPE)PyLong_MASK <= (ival) && (ival) <= (INT_TYPE)PyLong_MASK) {  \
  |  |  ------------------
  |  |  |  |   62|    196|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    196|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    196|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (-(INT_TYPE)PyLong_MASK <= (ival) && (ival) <= (INT_TYPE)PyLong_MASK) {  \
  |  |  ------------------
  |  |  |  |   62|    196|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    196|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    196|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (376:13): [True: 196, False: 0]
  |  |  |  Branch (376:49): [True: 28, False: 168]
  |  |  ------------------
  |  |  377|     28|            return _PyLong_FromMedium((sdigit)(ival));                              \
  |  |  378|     28|        }                                                                           \
  |  |  379|    196|        UINT_TYPE abs_ival = (ival) < 0 ? 0U-(UINT_TYPE)(ival) : (UINT_TYPE)(ival); \
  |  |  ------------------
  |  |  |  Branch (379:30): [True: 0, False: 168]
  |  |  ------------------
  |  |  380|    168|        /* Do shift in two steps to avoid possible undefined behavior. */           \
  |  |  381|    168|        UINT_TYPE t = abs_ival >> PyLong_SHIFT >> PyLong_SHIFT;                     \
  |  |  ------------------
  |  |  |  |   47|    168|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |                       UINT_TYPE t = abs_ival >> PyLong_SHIFT >> PyLong_SHIFT;                     \
  |  |  ------------------
  |  |  |  |   47|    168|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  382|    168|        /* Count digits (at least two - smaller cases were handled above). */       \
  |  |  383|    168|        Py_ssize_t ndigits = 2;                                                     \
  |  |  384|    252|        while (t) {                                                                 \
  |  |  ------------------
  |  |  |  Branch (384:16): [True: 84, False: 168]
  |  |  ------------------
  |  |  385|     84|            ++ndigits;                                                              \
  |  |  386|     84|            t >>= PyLong_SHIFT;                                                     \
  |  |  ------------------
  |  |  |  |   47|     84|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  387|     84|        }                                                                           \
  |  |  388|    168|        /* Construct output value. */                                               \
  |  |  389|    168|        PyLongObject *v = long_alloc(ndigits);                                      \
  |  |  390|    168|        if (v == NULL) {                                                            \
  |  |  ------------------
  |  |  |  Branch (390:13): [True: 0, False: 168]
  |  |  ------------------
  |  |  391|      0|            return NULL;                                                            \
  |  |  392|      0|        }                                                                           \
  |  |  393|    168|        digit *p = v->long_value.ob_digit;                                          \
  |  |  394|    168|        _PyLong_SetSignAndDigitCount(v, (ival) < 0 ? -1 : 1, ndigits);              \
  |  |  ------------------
  |  |  |  Branch (394:41): [True: 0, False: 168]
  |  |  ------------------
  |  |  395|    168|        t = abs_ival;                                                               \
  |  |  396|    588|        while (t) {                                                                 \
  |  |  ------------------
  |  |  |  Branch (396:16): [True: 420, False: 168]
  |  |  ------------------
  |  |  397|    420|            *p++ = (digit)(t & PyLong_MASK);                                        \
  |  |  ------------------
  |  |  |  |   62|    420|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|    420|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    420|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  398|    420|            t >>= PyLong_SHIFT;                                                     \
  |  |  ------------------
  |  |  |  |   47|    420|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  399|    420|        }                                                                           \
  |  |  400|    168|        return (PyObject *)v;                                                       \
  |  |  401|    168|    } while(0)
  |  |  ------------------
  |  |  |  Branch (401:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1569|    198|}
PyLong_FromSsize_t:
 1575|    308|{
 1576|       |    PYLONG_FROM_INT(size_t, Py_ssize_t, ival);
  ------------------
  |  |  371|    308|    do {                                                                            \
  |  |  372|    308|        /* Handle small and medium cases. */                                        \
  |  |  373|    308|        if (IS_SMALL_INT(ival)) {                                                   \
  |  |  ------------------
  |  |  |  |   29|    308|#define IS_SMALL_INT(ival) _PY_IS_SMALL_INT(ival)
  |  |  |  |  ------------------
  |  |  |  |  |  |   68|    308|    (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   98|    308|#define _PY_NSMALLNEGINTS           5
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |                   (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   97|    308|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (68:6): [True: 308, False: 0]
  |  |  |  |  |  |  |  Branch (68:37): [True: 294, False: 14]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  374|    294|            return get_small_int((sdigit)(ival));                                   \
  |  |  375|    294|        }                                                                           \
  |  |  376|    308|        if (-(INT_TYPE)PyLong_MASK <= (ival) && (ival) <= (INT_TYPE)PyLong_MASK) {  \
  |  |  ------------------
  |  |  |  |   62|     14|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|     14|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     14|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (-(INT_TYPE)PyLong_MASK <= (ival) && (ival) <= (INT_TYPE)PyLong_MASK) {  \
  |  |  ------------------
  |  |  |  |   62|     14|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|     14|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     14|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (376:13): [True: 14, False: 0]
  |  |  |  Branch (376:49): [True: 10, False: 4]
  |  |  ------------------
  |  |  377|     10|            return _PyLong_FromMedium((sdigit)(ival));                              \
  |  |  378|     10|        }                                                                           \
  |  |  379|     14|        UINT_TYPE abs_ival = (ival) < 0 ? 0U-(UINT_TYPE)(ival) : (UINT_TYPE)(ival); \
  |  |  ------------------
  |  |  |  Branch (379:30): [True: 0, False: 4]
  |  |  ------------------
  |  |  380|      4|        /* Do shift in two steps to avoid possible undefined behavior. */           \
  |  |  381|      4|        UINT_TYPE t = abs_ival >> PyLong_SHIFT >> PyLong_SHIFT;                     \
  |  |  ------------------
  |  |  |  |   47|      4|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |                       UINT_TYPE t = abs_ival >> PyLong_SHIFT >> PyLong_SHIFT;                     \
  |  |  ------------------
  |  |  |  |   47|      4|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  382|      4|        /* Count digits (at least two - smaller cases were handled above). */       \
  |  |  383|      4|        Py_ssize_t ndigits = 2;                                                     \
  |  |  384|      8|        while (t) {                                                                 \
  |  |  ------------------
  |  |  |  Branch (384:16): [True: 4, False: 4]
  |  |  ------------------
  |  |  385|      4|            ++ndigits;                                                              \
  |  |  386|      4|            t >>= PyLong_SHIFT;                                                     \
  |  |  ------------------
  |  |  |  |   47|      4|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  387|      4|        }                                                                           \
  |  |  388|      4|        /* Construct output value. */                                               \
  |  |  389|      4|        PyLongObject *v = long_alloc(ndigits);                                      \
  |  |  390|      4|        if (v == NULL) {                                                            \
  |  |  ------------------
  |  |  |  Branch (390:13): [True: 0, False: 4]
  |  |  ------------------
  |  |  391|      0|            return NULL;                                                            \
  |  |  392|      0|        }                                                                           \
  |  |  393|      4|        digit *p = v->long_value.ob_digit;                                          \
  |  |  394|      4|        _PyLong_SetSignAndDigitCount(v, (ival) < 0 ? -1 : 1, ndigits);              \
  |  |  ------------------
  |  |  |  Branch (394:41): [True: 0, False: 4]
  |  |  ------------------
  |  |  395|      4|        t = abs_ival;                                                               \
  |  |  396|     16|        while (t) {                                                                 \
  |  |  ------------------
  |  |  |  Branch (396:16): [True: 12, False: 4]
  |  |  ------------------
  |  |  397|     12|            *p++ = (digit)(t & PyLong_MASK);                                        \
  |  |  ------------------
  |  |  |  |   62|     12|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   61|     12|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     12|#define PyLong_SHIFT    30
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  398|     12|            t >>= PyLong_SHIFT;                                                     \
  |  |  ------------------
  |  |  |  |   47|     12|#define PyLong_SHIFT    30
  |  |  ------------------
  |  |  399|     12|        }                                                                           \
  |  |  400|      4|        return (PyObject *)v;                                                       \
  |  |  401|      4|    } while(0)
  |  |  ------------------
  |  |  |  Branch (401:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1577|    308|}
_PyLong_ExactDealloc:
 3636|     32|{
 3637|     32|    assert(PyLong_CheckExact(self));
  ------------------
  |  Branch (3637:5): [True: 32, False: 0]
  ------------------
 3638|     32|    if (_PyLong_IsSmallInt((PyLongObject *)self)) {
  ------------------
  |  Branch (3638:9): [True: 0, False: 32]
  ------------------
 3639|       |        // See PEP 683, section Accidental De-Immortalizing for details
 3640|      0|        _Py_SetImmortal(self);
 3641|      0|        return;
 3642|      0|    }
 3643|     32|    if (_PyLong_IsCompact((PyLongObject *)self)) {
  ------------------
  |  Branch (3643:9): [True: 10, False: 22]
  ------------------
 3644|     10|        _Py_FREELIST_FREE(ints, self, PyObject_Free);
  ------------------
  |  |   35|     10|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|     10|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   20|     10|#  define Py_ints_MAXFREELIST 100
  |  |  ------------------
  ------------------
 3645|     10|        return;
 3646|     10|    }
 3647|     22|    PyObject_Free(self);
 3648|     22|}
_PyCompactLong_Add:
 3868|      8|{
 3869|      8|    assert(_PyLong_BothAreCompact(a, b));
  ------------------
  |  Branch (3869:5): [True: 8, False: 0]
  ------------------
 3870|      8|    stwodigits v = medium_value(a) + medium_value(b);
  ------------------
  |  |   27|      8|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
                  stwodigits v = medium_value(a) + medium_value(b);
  ------------------
  |  |   27|      8|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
 3871|      8|    return medium_from_stwodigits(v);
 3872|      8|}
PyLong_GetInfo:
 6712|      2|{
 6713|      2|    PyObject* int_info;
 6714|      2|    int field = 0;
 6715|      2|    int_info = PyStructSequence_New(&Int_InfoType);
 6716|      2|    if (int_info == NULL)
  ------------------
  |  Branch (6716:9): [True: 0, False: 2]
  ------------------
 6717|      0|        return NULL;
 6718|      2|    PyStructSequence_SET_ITEM(int_info, field++,
  ------------------
  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
 6719|      2|                              PyLong_FromLong(PyLong_SHIFT));
  ------------------
  |  |   47|      2|#define PyLong_SHIFT    30
  ------------------
 6720|      2|    PyStructSequence_SET_ITEM(int_info, field++,
  ------------------
  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
 6721|      2|                              PyLong_FromLong(sizeof(digit)));
 6722|       |    /*
 6723|       |     * The following two fields were added after investigating uses of
 6724|       |     * sys.int_info in the wild: Exceedingly rarely used. The ONLY use found was
 6725|       |     * numba using sys.int_info.bits_per_digit as attribute access rather than
 6726|       |     * sequence unpacking. Cython and sympy also refer to sys.int_info but only
 6727|       |     * as info for debugging. No concern about adding these in a backport.
 6728|       |     */
 6729|      2|    PyStructSequence_SET_ITEM(int_info, field++,
  ------------------
  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
 6730|      2|                              PyLong_FromLong(_PY_LONG_DEFAULT_MAX_STR_DIGITS));
  ------------------
  |  |   29|      2|#define _PY_LONG_DEFAULT_MAX_STR_DIGITS 4300
  ------------------
 6731|      2|    PyStructSequence_SET_ITEM(int_info, field++,
  ------------------
  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
 6732|      2|                              PyLong_FromLong(_PY_LONG_MAX_STR_DIGITS_THRESHOLD));
  ------------------
  |  |   42|      2|#define _PY_LONG_MAX_STR_DIGITS_THRESHOLD 640
  ------------------
 6733|      2|    if (PyErr_Occurred()) {
  ------------------
  |  Branch (6733:9): [True: 0, False: 2]
  ------------------
 6734|      0|        Py_CLEAR(int_info);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 6735|      0|        return NULL;
 6736|      0|    }
 6737|      2|    return int_info;
 6738|      2|}
_PyLong_InitTypes:
 6745|      2|{
 6746|       |    /* initialize int_info */
 6747|      2|    if (_PyStructSequence_InitBuiltin(interp, &Int_InfoType,
  ------------------
  |  Branch (6747:9): [True: 0, False: 2]
  ------------------
 6748|      2|                                      &int_info_desc) < 0)
 6749|      0|    {
 6750|      0|        return _PyStatus_ERR("can't init int info type");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 6751|      0|    }
 6752|       |
 6753|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 6754|      2|}
PyLong_AsInt64:
 6820|      2|{
 6821|      2|    LONG_TO_INT(obj, value, "C int64_t");
  ------------------
  |  | 6799|      2|    do { \
  |  | 6800|      2|        int flags = (Py_ASNATIVEBYTES_NATIVE_ENDIAN \
  |  |  ------------------
  |  |  |  |   47|      2|#define Py_ASNATIVEBYTES_NATIVE_ENDIAN 3
  |  |  ------------------
  |  | 6801|      2|                     | Py_ASNATIVEBYTES_ALLOW_INDEX); \
  |  |  ------------------
  |  |  |  |   50|      2|#define Py_ASNATIVEBYTES_ALLOW_INDEX 16
  |  |  ------------------
  |  | 6802|      2|        Py_ssize_t bytes = PyLong_AsNativeBytes(obj, value, sizeof(*value), flags); \
  |  | 6803|      2|        if (bytes < 0) { \
  |  |  ------------------
  |  |  |  Branch (6803:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 6804|      0|            return -1; \
  |  | 6805|      0|        } \
  |  | 6806|      2|        if ((size_t)bytes > sizeof(*value)) { \
  |  |  ------------------
  |  |  |  Branch (6806:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 6807|      0|            PyErr_SetString(PyExc_OverflowError, \
  |  | 6808|      0|                            "Python int too large to convert to " type_name); \
  |  | 6809|      0|            return -1; \
  |  | 6810|      0|        } \
  |  | 6811|      2|        return 0; \
  |  | 6812|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (6812:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 6822|      2|}
PyLong_GetNativeLayout:
 6863|      8|{
 6864|      8|    return &PyLong_LAYOUT;
 6865|      8|}
PyLongWriter_Create:
 6926|      8|{
 6927|      8|    if (ndigits <= 0) {
  ------------------
  |  Branch (6927:9): [True: 0, False: 8]
  ------------------
 6928|      0|        PyErr_SetString(PyExc_ValueError, "ndigits must be positive");
 6929|      0|        goto error;
 6930|      0|    }
 6931|      8|    assert(digits != NULL);
  ------------------
  |  Branch (6931:5): [True: 8, False: 0]
  ------------------
 6932|       |
 6933|      8|    PyLongObject *obj = long_alloc(ndigits);
 6934|      8|    if (obj == NULL) {
  ------------------
  |  Branch (6934:9): [True: 0, False: 8]
  ------------------
 6935|      0|        goto error;
 6936|      0|    }
 6937|      8|    if (negative) {
  ------------------
  |  Branch (6937:9): [True: 0, False: 8]
  ------------------
 6938|      0|        _PyLong_FlipSign(obj);
 6939|      0|    }
 6940|       |
 6941|      8|    *digits = obj->long_value.ob_digit;
 6942|      8|    return (PyLongWriter*)obj;
 6943|       |
 6944|      0|error:
 6945|      0|    *digits = NULL;
 6946|       |    return NULL;
 6947|      8|}
PyLongWriter_Finish:
 6965|      8|{
 6966|      8|    PyLongObject *obj = (PyLongObject *)writer;
 6967|      8|    assert(Py_REFCNT(obj) == 1);
  ------------------
  |  Branch (6967:5): [True: 8, False: 0]
  ------------------
 6968|       |
 6969|       |#ifdef Py_DEBUG
 6970|       |    // gh-147988: Detect uninitialized digits: long_alloc() fills digits with
 6971|       |    // 0xFF byte pattern. It's posssible because PyLong_BASE is smaller than
 6972|       |    // the maximum value of the C digit type (uint32_t or unsigned short):
 6973|       |    // most significan bits are unused by the API.
 6974|       |    Py_ssize_t ndigits = _PyLong_DigitCount(obj);
 6975|       |    if (ndigits == 0) {
 6976|       |        // Check ob_digit[0] digit for the number zero
 6977|       |        ndigits = 1;
 6978|       |    }
 6979|       |    for (Py_ssize_t i = 0; i < ndigits; i++) {
 6980|       |        digit d = obj->long_value.ob_digit[i];
 6981|       |        if (d & ~(digit)PyLong_MASK) {
 6982|       |            Py_DECREF(obj);
 6983|       |            PyErr_Format(PyExc_SystemError,
 6984|       |                         "PyLongWriter_Finish: digit %zd is uninitialized",
 6985|       |                         i);
 6986|       |            return NULL;
 6987|       |        }
 6988|       |    }
 6989|       |#endif
 6990|       |
 6991|       |    // Normalize and get singleton if possible
 6992|      8|    obj = maybe_small_long(long_normalize(obj));
 6993|       |
 6994|      8|    return (PyObject*)obj;
 6995|      8|}
longobject.c:long_alloc:
  160|  1.05k|{
  161|  1.05k|    assert(size >= 0);
  ------------------
  |  Branch (161:5): [True: 1.05k, False: 0]
  ------------------
  162|  1.05k|    PyLongObject *result = NULL;
  163|  1.05k|    if (size > (Py_ssize_t)MAX_LONG_DIGITS) {
  ------------------
  |  |  155|  1.05k|# define MAX_LONG_DIGITS ((INT64_MAX-1) / PyLong_SHIFT)
  |  |  ------------------
  |  |  |  |   47|  1.05k|#define PyLong_SHIFT    30
  |  |  ------------------
  ------------------
  |  Branch (163:9): [True: 0, False: 1.05k]
  ------------------
  164|      0|        PyErr_SetString(PyExc_OverflowError,
  165|      0|                        "too many digits in integer");
  166|      0|        return NULL;
  167|      0|    }
  168|       |    /* Fast operations for single digit integers (including zero)
  169|       |     * assume that there is always at least one digit present. */
  170|  1.05k|    Py_ssize_t ndigits = size ? size : 1;
  ------------------
  |  Branch (170:26): [True: 1.05k, False: 0]
  ------------------
  171|       |
  172|  1.05k|    if (ndigits == 1) {
  ------------------
  |  Branch (172:9): [True: 0, False: 1.05k]
  ------------------
  173|      0|        result = (PyLongObject *)_Py_FREELIST_POP(PyLongObject, ints);
  ------------------
  |  |   43|      0|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  174|      0|    }
  175|  1.05k|    if (result == NULL) {
  ------------------
  |  Branch (175:9): [True: 1.05k, False: 0]
  ------------------
  176|       |        /* Number of bytes needed is: offsetof(PyLongObject, ob_digit) +
  177|       |        sizeof(digit)*size.  Previous incarnations of this code used
  178|       |        sizeof() instead of the offsetof, but this risks being
  179|       |        incorrect in the presence of padding between the header
  180|       |        and the digits. */
  181|  1.05k|        result = PyObject_Malloc(offsetof(PyLongObject, long_value.ob_digit) +
  182|  1.05k|                                ndigits*sizeof(digit));
  183|  1.05k|        if (!result) {
  ------------------
  |  Branch (183:13): [True: 0, False: 1.05k]
  ------------------
  184|      0|            PyErr_NoMemory();
  185|      0|            return NULL;
  186|      0|        }
  187|  1.05k|        _PyObject_Init((PyObject*)result, &PyLong_Type);
  188|  1.05k|        _PyLong_InitTag(result);
  189|  1.05k|    }
  190|  1.05k|    _PyLong_SetSignAndDigitCount(result, size != 0, size);
  191|       |#ifdef Py_DEBUG
  192|       |    // gh-147988: Fill digits with an invalid pattern to catch usage
  193|       |    // of uninitialized digits.
  194|       |    memset(result->long_value.ob_digit, 0xFF, ndigits * sizeof(digit));
  195|       |#endif
  196|  1.05k|    return result;
  197|  1.05k|}
longobject.c:get_small_int:
   62|  2.04k|{
   63|  2.04k|    assert(IS_SMALL_INT(ival));
  ------------------
  |  Branch (63:5): [True: 2.04k, False: 0]
  |  Branch (63:5): [True: 2.04k, False: 0]
  ------------------
   64|  2.04k|    return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + ival];
  ------------------
  |  |   59|  2.04k|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|  2.04k|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|  2.04k|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  return (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + ival];
  ------------------
  |  |   98|  2.04k|#define _PY_NSMALLNEGINTS           5
  ------------------
   65|  2.04k|}
longobject.c:_PyLong_FromMedium:
  252|    446|{
  253|    446|    assert(!IS_SMALL_INT(x));
  ------------------
  |  Branch (253:5): [True: 440, False: 6]
  |  Branch (253:5): [True: 0, False: 440]
  ------------------
  254|    446|    assert(is_medium_int(x));
  ------------------
  |  Branch (254:5): [True: 446, False: 0]
  ------------------
  255|       |
  256|    446|    PyLongObject *v = (PyLongObject *)_Py_FREELIST_POP(PyLongObject, ints);
  ------------------
  |  |   43|    446|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|    446|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  257|    446|    if (v == NULL) {
  ------------------
  |  Branch (257:9): [True: 276, False: 170]
  ------------------
  258|    276|        v = PyObject_Malloc(sizeof(PyLongObject));
  259|    276|        if (v == NULL) {
  ------------------
  |  Branch (259:13): [True: 0, False: 276]
  ------------------
  260|      0|            PyErr_NoMemory();
  261|      0|            return NULL;
  262|      0|        }
  263|    276|        _PyObject_Init((PyObject*)v, &PyLong_Type);
  264|    276|        _PyLong_InitTag(v);
  265|    276|    }
  266|    446|    digit abs_x = x < 0 ? -x : x;
  ------------------
  |  Branch (266:19): [True: 6, False: 440]
  ------------------
  267|    446|    _PyLong_SetSignAndDigitCount(v, x<0?-1:1, 1);
  ------------------
  |  Branch (267:37): [True: 6, False: 440]
  ------------------
  268|    446|    v->long_value.ob_digit[0] = abs_x;
  269|    446|    return (PyObject*)v;
  270|    446|}
longobject.c:is_medium_int:
   54|    454|{
   55|       |    /* Take care that we are comparing unsigned values. */
   56|    454|    twodigits x_plus_mask = ((twodigits)x) + PyLong_MASK;
  ------------------
  |  |   62|    454|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|    454|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|    454|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   57|    454|    return x_plus_mask < ((twodigits)PyLong_MASK) + PyLong_BASE;
  ------------------
  |  |   62|    454|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|    454|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|    454|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  return x_plus_mask < ((twodigits)PyLong_MASK) + PyLong_BASE;
  ------------------
  |  |   61|    454|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  ------------------
  |  |  |  |   47|    454|#define PyLong_SHIFT    30
  |  |  ------------------
  ------------------
   58|    454|}
longobject.c:unroll_digits_ulong:
  537|      4|{
  538|      4|    assert(ULONG_MAX >= ((1UL << PyLong_SHIFT) - 1));
  ------------------
  |  Branch (538:5): [True: 4, Folded]
  ------------------
  539|       |
  540|      4|    Py_ssize_t i = *iptr;
  541|      4|    assert(i >= 2);
  ------------------
  |  Branch (541:5): [True: 4, False: 0]
  ------------------
  542|       |
  543|       |    /* unroll 1 digit */
  544|      4|    --i;
  545|      4|    digit *digits = v->long_value.ob_digit;
  546|      4|    unsigned long x = digits[i];
  547|       |
  548|      4|#if (ULONG_MAX >> PyLong_SHIFT) >= ((1UL << PyLong_SHIFT) - 1)
  549|       |    /* unroll another digit */
  550|      4|    x <<= PyLong_SHIFT;
  ------------------
  |  |   47|      4|#define PyLong_SHIFT    30
  ------------------
  551|      4|    --i;
  552|      4|    x |= digits[i];
  553|      4|#endif
  554|       |
  555|      4|    *iptr = i;
  556|      4|    return x;
  557|      4|}
longobject.c:long_sign:
  936|      6|{
  937|      6|    assert(vv != NULL);
  ------------------
  |  Branch (937:5): [True: 6, False: 0]
  ------------------
  938|      6|    assert(PyLong_Check(vv));
  ------------------
  |  Branch (938:5): [True: 6, False: 0]
  ------------------
  939|      6|    PyLongObject *v = (PyLongObject *)vv;
  940|       |
  941|      6|    if (_PyLong_IsCompact(v)) {
  ------------------
  |  Branch (941:9): [True: 6, False: 0]
  ------------------
  942|      6|        return _PyLong_CompactSign(v);
  943|      6|    }
  944|      0|    return _PyLong_NonCompactSign(v);
  945|      6|}
longobject.c:maybe_small_long:
   69|     16|{
   70|     16|    if (v && _PyLong_IsCompact(v)) {
  ------------------
  |  Branch (70:9): [True: 16, False: 0]
  |  Branch (70:14): [True: 0, False: 16]
  ------------------
   71|      0|        stwodigits ival = medium_value(v);
  ------------------
  |  |   27|      0|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
   72|      0|        if (IS_SMALL_INT(ival)) {
  ------------------
  |  |   29|      0|#define IS_SMALL_INT(ival) _PY_IS_SMALL_INT(ival)
  |  |  ------------------
  |  |  |  |   68|      0|    (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   98|      0|#define _PY_NSMALLNEGINTS           5
  |  |  |  |  ------------------
  |  |  |  |                   (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|      0|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (68:6): [True: 0, False: 0]
  |  |  |  |  |  Branch (68:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   73|      0|            _Py_DECREF_INT(v);
   74|      0|            return (PyLongObject *)get_small_int((sdigit)ival);
   75|      0|        }
   76|      0|    }
   77|     16|    return v;
   78|     16|}
longobject.c:_Py_DECREF_INT:
   47|     22|{
   48|     22|    assert(PyLong_CheckExact(op));
  ------------------
  |  Branch (48:5): [True: 22, False: 0]
  ------------------
   49|     22|    _Py_DECREF_SPECIALIZED((PyObject *)op, _PyLong_ExactDealloc);
   50|     22|}
longobject.c:long_normalize:
  127|     18|{
  128|     18|    Py_ssize_t j = _PyLong_DigitCount(v);
  129|     18|    Py_ssize_t i = j;
  130|       |
  131|     22|    while (i > 0 && v->long_value.ob_digit[i-1] == 0)
  ------------------
  |  Branch (131:12): [True: 22, False: 0]
  |  Branch (131:21): [True: 4, False: 18]
  ------------------
  132|      4|        --i;
  133|     18|    if (i != j) {
  ------------------
  |  Branch (133:9): [True: 4, False: 14]
  ------------------
  134|      4|        if (i == 0) {
  ------------------
  |  Branch (134:13): [True: 0, False: 4]
  ------------------
  135|      0|            _PyLong_SetSignAndDigitCount(v, 0, 0);
  136|      0|        }
  137|      4|        else {
  138|      4|            _PyLong_SetDigitCount(v, i);
  139|      4|        }
  140|      4|    }
  141|     18|    return v;
  142|     18|}
longobject.c:_resolve_endianness:
 1271|      2|{
 1272|      2|    if (*endianness == -1 || (*endianness & 2)) {
  ------------------
  |  Branch (1272:9): [True: 0, False: 2]
  |  Branch (1272:30): [True: 2, False: 0]
  ------------------
 1273|      2|        *endianness = PY_LITTLE_ENDIAN;
  ------------------
  |  |  454|      2|#  define PY_LITTLE_ENDIAN 1
  ------------------
 1274|      2|    } else {
 1275|      0|        *endianness &= 1;
 1276|      0|    }
 1277|      2|    assert(*endianness == 0 || *endianness == 1);
  ------------------
  |  Branch (1277:5): [True: 0, False: 2]
  |  Branch (1277:5): [True: 2, False: 0]
  ------------------
 1278|      2|    return 0;
 1279|      2|}
longobject.c:_fits_in_n_bits:
 1259|      2|{
 1260|      2|    if (n >= (Py_ssize_t)sizeof(Py_ssize_t) * 8) {
  ------------------
  |  Branch (1260:9): [True: 2, False: 0]
  ------------------
 1261|      2|        return 1;
 1262|      2|    }
 1263|       |    // If all bits above n are the same, we fit.
 1264|       |    // (Use n-1 if we require the sign bit to be consistent.)
 1265|      0|    Py_ssize_t v_extended = v >> ((int)n - 1);
 1266|      0|    return v_extended == 0 || v_extended == -1;
  ------------------
  |  Branch (1266:12): [True: 0, False: 0]
  |  Branch (1266:31): [True: 0, False: 0]
  ------------------
 1267|      2|}
longobject.c:long_to_decimal_string_internal:
 2101|     22|{
 2102|     22|    PyLongObject *scratch, *a;
 2103|     22|    PyObject *str = NULL;
 2104|     22|    Py_ssize_t size, strlen, size_a, i, j;
 2105|     22|    digit *pout, *pin, rem, tenpow;
 2106|     22|    int negative;
 2107|     22|    int d;
 2108|       |
 2109|       |    // writer or bytes_writer can be used, but not both at the same time.
 2110|     22|    assert(writer == NULL || bytes_writer == NULL);
  ------------------
  |  Branch (2110:5): [True: 22, False: 0]
  |  Branch (2110:5): [True: 0, False: 0]
  ------------------
 2111|       |
 2112|     22|    a = (PyLongObject *)aa;
 2113|     22|    if (a == NULL || !PyLong_Check(a)) {
  ------------------
  |  |   13|     22|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     22|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2113:9): [True: 0, False: 22]
  |  Branch (2113:22): [True: 0, False: 22]
  ------------------
 2114|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2115|      0|        return -1;
 2116|      0|    }
 2117|     22|    size_a = _PyLong_DigitCount(a);
 2118|     22|    negative = _PyLong_IsNegative(a);
 2119|       |
 2120|       |    /* quick and dirty pre-check for overflowing the decimal digit limit,
 2121|       |       based on the inequality 10/3 >= log2(10)
 2122|       |
 2123|       |       explanation in https://github.com/python/cpython/pull/96537
 2124|       |    */
 2125|     22|    if (size_a >= 10 * _PY_LONG_MAX_STR_DIGITS_THRESHOLD
  ------------------
  |  |   42|     22|#define _PY_LONG_MAX_STR_DIGITS_THRESHOLD 640
  ------------------
  |  Branch (2125:9): [True: 0, False: 22]
  ------------------
 2126|     22|                  / (3 * PyLong_SHIFT) + 2) {
  ------------------
  |  |   47|     22|#define PyLong_SHIFT    30
  ------------------
 2127|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
 2128|      0|        int max_str_digits = interp->long_state.max_str_digits;
 2129|      0|        if ((max_str_digits > 0) &&
  ------------------
  |  Branch (2129:13): [True: 0, False: 0]
  ------------------
 2130|      0|            (max_str_digits / (3 * PyLong_SHIFT) <= (size_a - 11) / 10)) {
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
  |  Branch (2130:13): [True: 0, False: 0]
  ------------------
 2131|      0|            PyErr_Format(PyExc_ValueError, _MAX_STR_DIGITS_ERROR_FMT_TO_STR,
  ------------------
  |  |   33|      0|#define _MAX_STR_DIGITS_ERROR_FMT_TO_STR "Exceeds the limit (%d digits) for integer string conversion; use sys.set_int_max_str_digits() to increase the limit"
  ------------------
 2132|      0|                         max_str_digits);
 2133|      0|            return -1;
 2134|      0|        }
 2135|      0|    }
 2136|       |
 2137|     22|#if WITH_PYLONG_MODULE
 2138|     22|    if (size_a > 1000) {
  ------------------
  |  Branch (2138:9): [True: 0, False: 22]
  ------------------
 2139|       |        /* Switch to _pylong.int_to_decimal_string(). */
 2140|      0|        return pylong_int_to_decimal_string(aa,
 2141|      0|                                         p_output,
 2142|      0|                                         writer,
 2143|      0|                                         bytes_writer,
 2144|      0|                                         bytes_str);
 2145|      0|    }
 2146|     22|#endif
 2147|       |
 2148|       |    /* quick and dirty upper bound for the number of digits
 2149|       |       required to express a in base _PyLong_DECIMAL_BASE:
 2150|       |
 2151|       |         #digits = 1 + floor(log2(a) / log2(_PyLong_DECIMAL_BASE))
 2152|       |
 2153|       |       But log2(a) < size_a * PyLong_SHIFT, and
 2154|       |       log2(_PyLong_DECIMAL_BASE) = log2(10) * _PyLong_DECIMAL_SHIFT
 2155|       |                                  > 3.3 * _PyLong_DECIMAL_SHIFT
 2156|       |
 2157|       |         size_a * PyLong_SHIFT / (3.3 * _PyLong_DECIMAL_SHIFT) =
 2158|       |             size_a + size_a / d < size_a + size_a / floor(d),
 2159|       |       where d = (3.3 * _PyLong_DECIMAL_SHIFT) /
 2160|       |                 (PyLong_SHIFT - 3.3 * _PyLong_DECIMAL_SHIFT)
 2161|       |    */
 2162|     22|    d = (33 * _PyLong_DECIMAL_SHIFT) /
  ------------------
  |  |   48|     22|#define _PyLong_DECIMAL_SHIFT   9 /* max(e such that 10**e fits in a digit) */
  ------------------
 2163|     22|        (10 * PyLong_SHIFT - 33 * _PyLong_DECIMAL_SHIFT);
  ------------------
  |  |   47|     22|#define PyLong_SHIFT    30
  ------------------
                      (10 * PyLong_SHIFT - 33 * _PyLong_DECIMAL_SHIFT);
  ------------------
  |  |   48|     22|#define _PyLong_DECIMAL_SHIFT   9 /* max(e such that 10**e fits in a digit) */
  ------------------
 2164|     22|    assert(size_a < PY_SSIZE_T_MAX/2);
  ------------------
  |  Branch (2164:5): [True: 22, False: 0]
  ------------------
 2165|     22|    size = 1 + size_a + size_a / d;
 2166|     22|    scratch = long_alloc(size);
 2167|     22|    if (scratch == NULL)
  ------------------
  |  Branch (2167:9): [True: 0, False: 22]
  ------------------
 2168|      0|        return -1;
 2169|       |
 2170|       |    /* convert array of base _PyLong_BASE digits in pin to an array of
 2171|       |       base _PyLong_DECIMAL_BASE digits in pout, following Knuth (TAOCP,
 2172|       |       Volume 2 (3rd edn), section 4.4, Method 1b). */
 2173|     22|    pin = a->long_value.ob_digit;
 2174|     22|    pout = scratch->long_value.ob_digit;
 2175|     22|    size = 0;
 2176|     44|    for (i = size_a; --i >= 0; ) {
  ------------------
  |  Branch (2176:22): [True: 22, False: 22]
  ------------------
 2177|     22|        digit hi = pin[i];
 2178|     22|        for (j = 0; j < size; j++) {
  ------------------
  |  Branch (2178:21): [True: 0, False: 22]
  ------------------
 2179|      0|            twodigits z = (twodigits)pout[j] << PyLong_SHIFT | hi;
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
 2180|      0|            hi = (digit)(z / _PyLong_DECIMAL_BASE);
  ------------------
  |  |   49|      0|#define _PyLong_DECIMAL_BASE    ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
  ------------------
 2181|      0|            pout[j] = (digit)(z - (twodigits)hi *
 2182|      0|                              _PyLong_DECIMAL_BASE);
  ------------------
  |  |   49|      0|#define _PyLong_DECIMAL_BASE    ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
  ------------------
 2183|      0|        }
 2184|     44|        while (hi) {
  ------------------
  |  Branch (2184:16): [True: 22, False: 22]
  ------------------
 2185|     22|            pout[size++] = hi % _PyLong_DECIMAL_BASE;
  ------------------
  |  |   49|     22|#define _PyLong_DECIMAL_BASE    ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
  ------------------
 2186|     22|            hi /= _PyLong_DECIMAL_BASE;
  ------------------
  |  |   49|     22|#define _PyLong_DECIMAL_BASE    ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
  ------------------
 2187|     22|        }
 2188|       |        /* check for keyboard interrupt */
 2189|     22|        SIGCHECK({
  ------------------
  |  |  117|     22|    do {                                        \
  |  |  118|     22|        if (PyErr_CheckSignals()) PyTryBlock    \
  |  |  ------------------
  |  |  |  Branch (118:13): [True: 0, False: 22]
  |  |  ------------------
  |  |  119|     22|    } while(0)
  |  |  ------------------
  |  |  |  Branch (119:13): [Folded, False: 22]
  |  |  ------------------
  ------------------
 2190|     22|                Py_DECREF(scratch);
 2191|     22|                return -1;
 2192|     22|            });
 2193|     22|    }
 2194|       |    /* pout should have at least one digit, so that the case when a = 0
 2195|       |       works correctly */
 2196|     22|    if (size == 0)
  ------------------
  |  Branch (2196:9): [True: 0, False: 22]
  ------------------
 2197|      0|        pout[size++] = 0;
 2198|       |
 2199|       |    /* calculate exact length of output string, and allocate */
 2200|     22|    strlen = negative + 1 + (size - 1) * _PyLong_DECIMAL_SHIFT;
  ------------------
  |  |   48|     22|#define _PyLong_DECIMAL_SHIFT   9 /* max(e such that 10**e fits in a digit) */
  ------------------
 2201|     22|    tenpow = 10;
 2202|     22|    rem = pout[size-1];
 2203|     32|    while (rem >= tenpow) {
  ------------------
  |  Branch (2203:12): [True: 10, False: 22]
  ------------------
 2204|     10|        tenpow *= 10;
 2205|     10|        strlen++;
 2206|     10|    }
 2207|     22|    if (strlen > _PY_LONG_MAX_STR_DIGITS_THRESHOLD) {
  ------------------
  |  |   42|     22|#define _PY_LONG_MAX_STR_DIGITS_THRESHOLD 640
  ------------------
  |  Branch (2207:9): [True: 0, False: 22]
  ------------------
 2208|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
 2209|      0|        int max_str_digits = interp->long_state.max_str_digits;
 2210|      0|        Py_ssize_t strlen_nosign = strlen - negative;
 2211|      0|        if ((max_str_digits > 0) && (strlen_nosign > max_str_digits)) {
  ------------------
  |  Branch (2211:13): [True: 0, False: 0]
  |  Branch (2211:37): [True: 0, False: 0]
  ------------------
 2212|      0|            Py_DECREF(scratch);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2213|      0|            PyErr_Format(PyExc_ValueError, _MAX_STR_DIGITS_ERROR_FMT_TO_STR,
  ------------------
  |  |   33|      0|#define _MAX_STR_DIGITS_ERROR_FMT_TO_STR "Exceeds the limit (%d digits) for integer string conversion; use sys.set_int_max_str_digits() to increase the limit"
  ------------------
 2214|      0|                         max_str_digits);
 2215|      0|            return -1;
 2216|      0|        }
 2217|      0|    }
 2218|     22|    if (writer) {
  ------------------
  |  Branch (2218:9): [True: 0, False: 22]
  ------------------
 2219|      0|        if (_PyUnicodeWriter_Prepare(writer, strlen, '9') == -1) {
  ------------------
  |  |  562|      0|    (((MAXCHAR) <= (WRITER)->maxchar                                  \
  |  |  ------------------
  |  |  |  Branch (562:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  563|      0|      && (LENGTH) <= (WRITER)->size - (WRITER)->pos)                  \
  |  |  ------------------
  |  |  |  Branch (563:10): [True: 0, False: 0]
  |  |  ------------------
  |  |  564|      0|     ? 0                                                              \
  |  |  565|      0|     : (((LENGTH) == 0)                                               \
  |  |  ------------------
  |  |  |  Branch (565:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  566|      0|        ? 0                                                           \
  |  |  567|      0|        : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  ------------------
  |  Branch (2219:13): [True: 0, False: 0]
  ------------------
 2220|      0|            Py_DECREF(scratch);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2221|      0|            return -1;
 2222|      0|        }
 2223|      0|    }
 2224|     22|    else if (bytes_writer) {
  ------------------
  |  Branch (2224:14): [True: 0, False: 22]
  ------------------
 2225|      0|        *bytes_str = PyBytesWriter_GrowAndUpdatePointer(bytes_writer, strlen,
 2226|      0|                                                        *bytes_str);
 2227|      0|        if (*bytes_str == NULL) {
  ------------------
  |  Branch (2227:13): [True: 0, False: 0]
  ------------------
 2228|      0|            Py_DECREF(scratch);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2229|      0|            return -1;
 2230|      0|        }
 2231|      0|    }
 2232|     22|    else {
 2233|     22|        str = PyUnicode_New(strlen, '9');
 2234|     22|        if (str == NULL) {
  ------------------
  |  Branch (2234:13): [True: 0, False: 22]
  ------------------
 2235|      0|            Py_DECREF(scratch);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2236|      0|            return -1;
 2237|      0|        }
 2238|     22|    }
 2239|       |
 2240|     22|#define WRITE_DIGITS(p)                                               \
 2241|     22|    do {                                                              \
 2242|       |        /* pout[0] through pout[size-2] contribute exactly            \
 2243|       |           _PyLong_DECIMAL_SHIFT digits each */                       \
 2244|     22|        for (i=0; i < size - 1; i++) {                                \
 2245|     22|            rem = pout[i];                                            \
 2246|     22|            for (j = 0; j < _PyLong_DECIMAL_SHIFT; j++) {             \
 2247|     22|                *--p = '0' + rem % 10;                                \
 2248|     22|                rem /= 10;                                            \
 2249|     22|            }                                                         \
 2250|     22|        }                                                             \
 2251|       |        /* pout[size-1]: always produce at least one decimal digit */ \
 2252|     22|        rem = pout[i];                                                \
 2253|     22|        do {                                                          \
 2254|     22|            *--p = '0' + rem % 10;                                    \
 2255|     22|            rem /= 10;                                                \
 2256|     22|        } while (rem != 0);                                           \
 2257|     22|                                                                      \
 2258|       |        /* and sign */                                                \
 2259|     22|        if (negative)                                                 \
 2260|     22|            *--p = '-';                                               \
 2261|     22|    } while (0)
 2262|       |
 2263|     22|#define WRITE_UNICODE_DIGITS(TYPE)                                    \
 2264|     22|    do {                                                              \
 2265|     22|        if (writer)                                                   \
 2266|     22|            p = (TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos + strlen; \
 2267|     22|        else                                                          \
 2268|     22|            p = (TYPE*)PyUnicode_DATA(str) + strlen;                  \
 2269|     22|                                                                      \
 2270|     22|        WRITE_DIGITS(p);                                              \
 2271|     22|                                                                      \
 2272|       |        /* check we've counted correctly */                           \
 2273|     22|        if (writer)                                                   \
 2274|     22|            assert(p == ((TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos)); \
 2275|     22|        else                                                          \
 2276|     22|            assert(p == (TYPE*)PyUnicode_DATA(str));                  \
 2277|     22|    } while (0)
 2278|       |
 2279|       |    /* fill the string right-to-left */
 2280|     22|    if (bytes_writer) {
  ------------------
  |  Branch (2280:9): [True: 0, False: 22]
  ------------------
 2281|      0|        char *p = *bytes_str + strlen;
 2282|      0|        WRITE_DIGITS(p);
  ------------------
  |  | 2241|      0|    do {                                                              \
  |  | 2242|      0|        /* pout[0] through pout[size-2] contribute exactly            \
  |  | 2243|      0|           _PyLong_DECIMAL_SHIFT digits each */                       \
  |  | 2244|      0|        for (i=0; i < size - 1; i++) {                                \
  |  |  ------------------
  |  |  |  Branch (2244:19): [True: 0, False: 0]
  |  |  ------------------
  |  | 2245|      0|            rem = pout[i];                                            \
  |  | 2246|      0|            for (j = 0; j < _PyLong_DECIMAL_SHIFT; j++) {             \
  |  |  ------------------
  |  |  |  |   48|      0|#define _PyLong_DECIMAL_SHIFT   9 /* max(e such that 10**e fits in a digit) */
  |  |  ------------------
  |  |  |  Branch (2246:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 2247|      0|                *--p = '0' + rem % 10;                                \
  |  | 2248|      0|                rem /= 10;                                            \
  |  | 2249|      0|            }                                                         \
  |  | 2250|      0|        }                                                             \
  |  | 2251|      0|        /* pout[size-1]: always produce at least one decimal digit */ \
  |  | 2252|      0|        rem = pout[i];                                                \
  |  | 2253|      0|        do {                                                          \
  |  | 2254|      0|            *--p = '0' + rem % 10;                                    \
  |  | 2255|      0|            rem /= 10;                                                \
  |  | 2256|      0|        } while (rem != 0);                                           \
  |  |  ------------------
  |  |  |  Branch (2256:18): [True: 0, False: 0]
  |  |  ------------------
  |  | 2257|      0|                                                                      \
  |  | 2258|      0|        /* and sign */                                                \
  |  | 2259|      0|        if (negative)                                                 \
  |  |  ------------------
  |  |  |  Branch (2259:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 2260|      0|            *--p = '-';                                               \
  |  | 2261|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2261:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2283|      0|        assert(p == *bytes_str);
  ------------------
  |  Branch (2283:9): [True: 0, False: 0]
  ------------------
 2284|      0|    }
 2285|     22|    else {
 2286|     22|        int kind = writer ? writer->kind : PyUnicode_KIND(str);
  ------------------
  |  |  258|     22|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     44|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 22, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2286:20): [True: 0, False: 22]
  ------------------
 2287|     22|        if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (2287:13): [True: 22, False: 0]
  ------------------
 2288|     22|            Py_UCS1 *p;
 2289|     22|            WRITE_UNICODE_DIGITS(Py_UCS1);
  ------------------
  |  | 2264|     22|    do {                                                              \
  |  | 2265|     22|        if (writer)                                                   \
  |  |  ------------------
  |  |  |  Branch (2265:13): [True: 0, False: 22]
  |  |  ------------------
  |  | 2266|     22|            p = (TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos + strlen; \
  |  |  ------------------
  |  |  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2267|     22|        else                                                          \
  |  | 2268|     22|            p = (TYPE*)PyUnicode_DATA(str) + strlen;                  \
  |  |  ------------------
  |  |  |  |  284|     22|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2269|     22|                                                                      \
  |  | 2270|     22|        WRITE_DIGITS(p);                                              \
  |  |  ------------------
  |  |  |  | 2241|     22|    do {                                                              \
  |  |  |  | 2242|     22|        /* pout[0] through pout[size-2] contribute exactly            \
  |  |  |  | 2243|     22|           _PyLong_DECIMAL_SHIFT digits each */                       \
  |  |  |  | 2244|     22|        for (i=0; i < size - 1; i++) {                                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2244:19): [True: 0, False: 22]
  |  |  |  |  ------------------
  |  |  |  | 2245|      0|            rem = pout[i];                                            \
  |  |  |  | 2246|      0|            for (j = 0; j < _PyLong_DECIMAL_SHIFT; j++) {             \
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|#define _PyLong_DECIMAL_SHIFT   9 /* max(e such that 10**e fits in a digit) */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2246:25): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2247|      0|                *--p = '0' + rem % 10;                                \
  |  |  |  | 2248|      0|                rem /= 10;                                            \
  |  |  |  | 2249|      0|            }                                                         \
  |  |  |  | 2250|      0|        }                                                             \
  |  |  |  | 2251|     22|        /* pout[size-1]: always produce at least one decimal digit */ \
  |  |  |  | 2252|     22|        rem = pout[i];                                                \
  |  |  |  | 2253|     32|        do {                                                          \
  |  |  |  | 2254|     32|            *--p = '0' + rem % 10;                                    \
  |  |  |  | 2255|     32|            rem /= 10;                                                \
  |  |  |  | 2256|     32|        } while (rem != 0);                                           \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2256:18): [True: 10, False: 22]
  |  |  |  |  ------------------
  |  |  |  | 2257|     22|                                                                      \
  |  |  |  | 2258|     22|        /* and sign */                                                \
  |  |  |  | 2259|     22|        if (negative)                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2259:13): [True: 0, False: 22]
  |  |  |  |  ------------------
  |  |  |  | 2260|     22|            *--p = '-';                                               \
  |  |  |  | 2261|     22|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2261:14): [Folded, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2271|     22|                                                                      \
  |  | 2272|     22|        /* check we've counted correctly */                           \
  |  | 2273|     22|        if (writer)                                                   \
  |  |  ------------------
  |  |  |  Branch (2273:13): [True: 0, False: 22]
  |  |  ------------------
  |  | 2274|     22|            assert(p == ((TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos)); \
  |  | 2275|     22|        else                                                          \
  |  | 2276|     22|            assert(p == (TYPE*)PyUnicode_DATA(str));                  \
  |  | 2277|     22|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2277:14): [Folded, False: 22]
  |  |  ------------------
  ------------------
  |  Branch (2289:13): [True: 0, False: 0]
  |  Branch (2289:13): [True: 22, False: 0]
  ------------------
 2290|     22|        }
 2291|      0|        else if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (2291:18): [True: 0, False: 0]
  ------------------
 2292|      0|            Py_UCS2 *p;
 2293|      0|            WRITE_UNICODE_DIGITS(Py_UCS2);
  ------------------
  |  | 2264|      0|    do {                                                              \
  |  | 2265|      0|        if (writer)                                                   \
  |  |  ------------------
  |  |  |  Branch (2265:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 2266|      0|            p = (TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos + strlen; \
  |  |  ------------------
  |  |  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2267|      0|        else                                                          \
  |  | 2268|      0|            p = (TYPE*)PyUnicode_DATA(str) + strlen;                  \
  |  |  ------------------
  |  |  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2269|      0|                                                                      \
  |  | 2270|      0|        WRITE_DIGITS(p);                                              \
  |  |  ------------------
  |  |  |  | 2241|      0|    do {                                                              \
  |  |  |  | 2242|      0|        /* pout[0] through pout[size-2] contribute exactly            \
  |  |  |  | 2243|      0|           _PyLong_DECIMAL_SHIFT digits each */                       \
  |  |  |  | 2244|      0|        for (i=0; i < size - 1; i++) {                                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2244:19): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2245|      0|            rem = pout[i];                                            \
  |  |  |  | 2246|      0|            for (j = 0; j < _PyLong_DECIMAL_SHIFT; j++) {             \
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|#define _PyLong_DECIMAL_SHIFT   9 /* max(e such that 10**e fits in a digit) */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2246:25): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2247|      0|                *--p = '0' + rem % 10;                                \
  |  |  |  | 2248|      0|                rem /= 10;                                            \
  |  |  |  | 2249|      0|            }                                                         \
  |  |  |  | 2250|      0|        }                                                             \
  |  |  |  | 2251|      0|        /* pout[size-1]: always produce at least one decimal digit */ \
  |  |  |  | 2252|      0|        rem = pout[i];                                                \
  |  |  |  | 2253|      0|        do {                                                          \
  |  |  |  | 2254|      0|            *--p = '0' + rem % 10;                                    \
  |  |  |  | 2255|      0|            rem /= 10;                                                \
  |  |  |  | 2256|      0|        } while (rem != 0);                                           \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2256:18): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2257|      0|                                                                      \
  |  |  |  | 2258|      0|        /* and sign */                                                \
  |  |  |  | 2259|      0|        if (negative)                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2259:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2260|      0|            *--p = '-';                                               \
  |  |  |  | 2261|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2261:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2271|      0|                                                                      \
  |  | 2272|      0|        /* check we've counted correctly */                           \
  |  | 2273|      0|        if (writer)                                                   \
  |  |  ------------------
  |  |  |  Branch (2273:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 2274|      0|            assert(p == ((TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos)); \
  |  | 2275|      0|        else                                                          \
  |  | 2276|      0|            assert(p == (TYPE*)PyUnicode_DATA(str));                  \
  |  | 2277|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2277:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2293:13): [True: 0, False: 0]
  |  Branch (2293:13): [True: 0, False: 0]
  ------------------
 2294|      0|        }
 2295|      0|        else {
 2296|      0|            assert (kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (2296:13): [True: 0, False: 0]
  ------------------
 2297|      0|            Py_UCS4 *p;
 2298|      0|            WRITE_UNICODE_DIGITS(Py_UCS4);
  ------------------
  |  | 2264|      0|    do {                                                              \
  |  | 2265|      0|        if (writer)                                                   \
  |  |  ------------------
  |  |  |  Branch (2265:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 2266|      0|            p = (TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos + strlen; \
  |  |  ------------------
  |  |  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2267|      0|        else                                                          \
  |  | 2268|      0|            p = (TYPE*)PyUnicode_DATA(str) + strlen;                  \
  |  |  ------------------
  |  |  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2269|      0|                                                                      \
  |  | 2270|      0|        WRITE_DIGITS(p);                                              \
  |  |  ------------------
  |  |  |  | 2241|      0|    do {                                                              \
  |  |  |  | 2242|      0|        /* pout[0] through pout[size-2] contribute exactly            \
  |  |  |  | 2243|      0|           _PyLong_DECIMAL_SHIFT digits each */                       \
  |  |  |  | 2244|      0|        for (i=0; i < size - 1; i++) {                                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2244:19): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2245|      0|            rem = pout[i];                                            \
  |  |  |  | 2246|      0|            for (j = 0; j < _PyLong_DECIMAL_SHIFT; j++) {             \
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|#define _PyLong_DECIMAL_SHIFT   9 /* max(e such that 10**e fits in a digit) */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2246:25): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2247|      0|                *--p = '0' + rem % 10;                                \
  |  |  |  | 2248|      0|                rem /= 10;                                            \
  |  |  |  | 2249|      0|            }                                                         \
  |  |  |  | 2250|      0|        }                                                             \
  |  |  |  | 2251|      0|        /* pout[size-1]: always produce at least one decimal digit */ \
  |  |  |  | 2252|      0|        rem = pout[i];                                                \
  |  |  |  | 2253|      0|        do {                                                          \
  |  |  |  | 2254|      0|            *--p = '0' + rem % 10;                                    \
  |  |  |  | 2255|      0|            rem /= 10;                                                \
  |  |  |  | 2256|      0|        } while (rem != 0);                                           \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2256:18): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2257|      0|                                                                      \
  |  |  |  | 2258|      0|        /* and sign */                                                \
  |  |  |  | 2259|      0|        if (negative)                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2259:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 2260|      0|            *--p = '-';                                               \
  |  |  |  | 2261|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2261:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2271|      0|                                                                      \
  |  | 2272|      0|        /* check we've counted correctly */                           \
  |  | 2273|      0|        if (writer)                                                   \
  |  |  ------------------
  |  |  |  Branch (2273:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 2274|      0|            assert(p == ((TYPE*)PyUnicode_DATA(writer->buffer) + writer->pos)); \
  |  | 2275|      0|        else                                                          \
  |  | 2276|      0|            assert(p == (TYPE*)PyUnicode_DATA(str));                  \
  |  | 2277|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (2277:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2298:13): [True: 0, False: 0]
  |  Branch (2298:13): [True: 0, False: 0]
  ------------------
 2299|      0|        }
 2300|     22|    }
 2301|       |
 2302|     22|#undef WRITE_DIGITS
 2303|     22|#undef WRITE_UNICODE_DIGITS
 2304|       |
 2305|     22|    _Py_DECREF_INT(scratch);
 2306|     22|    if (writer) {
  ------------------
  |  Branch (2306:9): [True: 0, False: 22]
  ------------------
 2307|      0|        writer->pos += strlen;
 2308|      0|    }
 2309|     22|    else if (bytes_writer) {
  ------------------
  |  Branch (2309:14): [True: 0, False: 22]
  ------------------
 2310|      0|        (*bytes_str) += strlen;
 2311|      0|    }
 2312|     22|    else {
 2313|     22|        assert(_PyUnicode_CheckConsistency(str, 1));
  ------------------
  |  Branch (2313:9): [True: 22, False: 0]
  ------------------
 2314|     22|        *p_output = (PyObject *)str;
 2315|     22|    }
 2316|     22|    return 0;
 2317|     22|}
longobject.c:_PyLong_FromSTwoDigits:
  314|     16|{
  315|     16|    if (IS_SMALL_INT(x)) {
  ------------------
  |  |   29|     16|#define IS_SMALL_INT(ival) _PY_IS_SMALL_INT(ival)
  |  |  ------------------
  |  |  |  |   68|     16|    (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   98|     16|#define _PY_NSMALLNEGINTS           5
  |  |  |  |  ------------------
  |  |  |  |                   (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|     16|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (68:6): [True: 16, False: 0]
  |  |  |  |  |  Branch (68:37): [True: 8, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  316|      8|        return (PyLongObject*)get_small_int((sdigit)x);
  317|      8|    }
  318|     16|    assert(x != 0);
  ------------------
  |  Branch (318:5): [True: 8, False: 0]
  ------------------
  319|      8|    if (is_medium_int(x)) {
  ------------------
  |  Branch (319:9): [True: 8, False: 0]
  ------------------
  320|      8|        return (PyLongObject*)_PyLong_FromMedium((sdigit)x);
  321|      8|    }
  322|      0|    return (PyLongObject*)_PyLong_FromLarge(x);
  323|      8|}
longobject.c:medium_from_stwodigits:
  329|      8|{
  330|      8|    if (IS_SMALL_INT(x)) {
  ------------------
  |  |   29|      8|#define IS_SMALL_INT(ival) _PY_IS_SMALL_INT(ival)
  |  |  ------------------
  |  |  |  |   68|      8|    (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   98|      8|#define _PY_NSMALLNEGINTS           5
  |  |  |  |  ------------------
  |  |  |  |                   (-_PY_NSMALLNEGINTS <= (val) && (val) < _PY_NSMALLPOSINTS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|      8|#define _PY_NSMALLPOSINTS           1025
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (68:6): [True: 8, False: 0]
  |  |  |  |  |  Branch (68:37): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  331|      8|        return PyStackRef_FromPyObjectBorrow(get_small_int((sdigit)x));
  332|      8|    }
  333|      8|    assert(x != 0);
  ------------------
  |  Branch (333:5): [True: 0, False: 0]
  ------------------
  334|      0|    if(!is_medium_int(x)) {
  ------------------
  |  Branch (334:8): [True: 0, False: 0]
  ------------------
  335|      0|        return PyStackRef_NULL;
  336|      0|    }
  337|      0|    PyLongObject *v = (PyLongObject *)_Py_FREELIST_POP(PyLongObject, ints);
  ------------------
  |  |   43|      0|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  338|      0|    if (v == NULL) {
  ------------------
  |  Branch (338:9): [True: 0, False: 0]
  ------------------
  339|      0|        v = PyObject_Malloc(sizeof(PyLongObject));
  340|      0|        if (v == NULL) {
  ------------------
  |  Branch (340:13): [True: 0, False: 0]
  ------------------
  341|      0|            return PyStackRef_NULL;
  342|      0|        }
  343|      0|        _PyObject_Init((PyObject*)v, &PyLong_Type);
  344|      0|        _PyLong_InitTag(v);
  345|      0|    }
  346|      0|    digit abs_x = x < 0 ? (digit)(-x) : (digit)x;
  ------------------
  |  Branch (346:19): [True: 0, False: 0]
  ------------------
  347|      0|    _PyLong_SetSignAndDigitCount(v, x<0?-1:1, 1);
  ------------------
  |  Branch (347:37): [True: 0, False: 0]
  ------------------
  348|      0|    v->long_value.ob_digit[0] = abs_x;
  349|      0|    return PyStackRef_FromPyObjectStealMortal((PyObject *)v);
  350|      0|}
longobject.c:long_lshift_int64:
 5523|      2|{
 5524|      2|    assert(shiftby >= 0);
  ------------------
  |  Branch (5524:5): [True: 2, False: 0]
  ------------------
 5525|       |
 5526|      2|    if (_PyLong_IsZero(a)) {
  ------------------
  |  Branch (5526:9): [True: 0, False: 2]
  ------------------
 5527|      0|        return PyLong_FromLong(0);
 5528|      0|    }
 5529|       |#if PY_SSIZE_T_MAX <= INT64_MAX / PyLong_SHIFT
 5530|       |    if (shiftby > (int64_t)PY_SSIZE_T_MAX * PyLong_SHIFT) {
 5531|       |        PyErr_SetString(PyExc_OverflowError,
 5532|       |                        "too many digits in integer");
 5533|       |        return NULL;
 5534|       |    }
 5535|       |#endif
 5536|      2|    Py_ssize_t wordshift = (Py_ssize_t)(shiftby / PyLong_SHIFT);
  ------------------
  |  |   47|      2|#define PyLong_SHIFT    30
  ------------------
 5537|      2|    digit remshift = (digit)(shiftby % PyLong_SHIFT);
  ------------------
  |  |   47|      2|#define PyLong_SHIFT    30
  ------------------
 5538|      2|    return long_lshift1(a, wordshift, remshift);
 5539|      2|}
longobject.c:long_lshift1:
 5454|      2|{
 5455|      2|    PyLongObject *z = NULL;
 5456|      2|    Py_ssize_t oldsize, newsize, i, j;
 5457|      2|    twodigits accum;
 5458|       |
 5459|      2|    if (wordshift == 0 && _PyLong_IsCompact(a)) {
  ------------------
  |  Branch (5459:9): [True: 0, False: 2]
  |  Branch (5459:27): [True: 0, False: 0]
  ------------------
 5460|      0|        stwodigits m = medium_value(a);
  ------------------
  |  |   27|      0|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
 5461|       |        // bypass undefined shift operator behavior
 5462|      0|        stwodigits x = m < 0 ? -(-m << remshift) : m << remshift;
  ------------------
  |  Branch (5462:24): [True: 0, False: 0]
  ------------------
 5463|      0|        return (PyObject*)_PyLong_FromSTwoDigits(x);
 5464|      0|    }
 5465|       |
 5466|      2|    oldsize = _PyLong_DigitCount(a);
 5467|      2|    newsize = oldsize + wordshift;
 5468|      2|    if (remshift)
  ------------------
  |  Branch (5468:9): [True: 2, False: 0]
  ------------------
 5469|      2|        ++newsize;
 5470|      2|    z = long_alloc(newsize);
 5471|      2|    if (z == NULL)
  ------------------
  |  Branch (5471:9): [True: 0, False: 2]
  ------------------
 5472|      0|        return NULL;
 5473|      2|    if (_PyLong_IsNegative(a)) {
  ------------------
  |  Branch (5473:9): [True: 0, False: 2]
  ------------------
 5474|      0|        assert(Py_REFCNT(z) == 1);
  ------------------
  |  Branch (5474:9): [True: 0, False: 0]
  ------------------
 5475|      0|        _PyLong_FlipSign(z);
 5476|      0|    }
 5477|     68|    for (i = 0; i < wordshift; i++)
  ------------------
  |  Branch (5477:17): [True: 66, False: 2]
  ------------------
 5478|     66|        z->long_value.ob_digit[i] = 0;
 5479|      2|    accum = 0;
 5480|      4|    for (j = 0; j < oldsize; i++, j++) {
  ------------------
  |  Branch (5480:17): [True: 2, False: 2]
  ------------------
 5481|      2|        accum |= (twodigits)a->long_value.ob_digit[j] << remshift;
 5482|      2|        z->long_value.ob_digit[i] = (digit)(accum & PyLong_MASK);
  ------------------
  |  |   62|      2|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|      2|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|      2|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5483|      2|        accum >>= PyLong_SHIFT;
  ------------------
  |  |   47|      2|#define PyLong_SHIFT    30
  ------------------
 5484|      2|    }
 5485|      2|    if (remshift)
  ------------------
  |  Branch (5485:9): [True: 2, False: 0]
  ------------------
 5486|      2|        z->long_value.ob_digit[newsize-1] = (digit)accum;
 5487|      0|    else
 5488|      2|        assert(!accum);
  ------------------
  |  Branch (5488:9): [True: 0, False: 0]
  ------------------
 5489|      2|    z = long_normalize(z);
 5490|      2|    return (PyObject *) maybe_small_long(z);
 5491|      2|}
longobject.c:long_compare:
 3603|     94|{
 3604|     94|    if (_PyLong_BothAreCompact(a, b)) {
  ------------------
  |  Branch (3604:9): [True: 20, False: 74]
  ------------------
 3605|     20|        return _PyLong_CompactValue(a) - _PyLong_CompactValue(b);
 3606|     20|    }
 3607|     74|    Py_ssize_t sign = _PyLong_SignedDigitCount(a) - _PyLong_SignedDigitCount(b);
 3608|     74|    if (sign == 0) {
  ------------------
  |  Branch (3608:9): [True: 72, False: 2]
  ------------------
 3609|     72|        Py_ssize_t i = _PyLong_DigitCount(a);
 3610|     72|        sdigit diff = 0;
 3611|    216|        while (--i >= 0) {
  ------------------
  |  Branch (3611:16): [True: 144, False: 72]
  ------------------
 3612|    144|            diff = (sdigit) a->long_value.ob_digit[i] - (sdigit) b->long_value.ob_digit[i];
 3613|    144|            if (diff) {
  ------------------
  |  Branch (3613:17): [True: 0, False: 144]
  ------------------
 3614|      0|                break;
 3615|      0|            }
 3616|    144|        }
 3617|     72|        sign = _PyLong_IsNegative(a) ? -diff : diff;
  ------------------
  |  Branch (3617:16): [True: 0, False: 72]
  ------------------
 3618|     72|    }
 3619|     74|    return sign;
 3620|     94|}
longobject.c:long_divrem:
 3216|      2|{
 3217|      2|    Py_ssize_t size_a = _PyLong_DigitCount(a), size_b = _PyLong_DigitCount(b);
 3218|      2|    PyLongObject *z;
 3219|       |
 3220|      2|    if (size_b == 0) {
  ------------------
  |  Branch (3220:9): [True: 0, False: 2]
  ------------------
 3221|      0|        PyErr_SetString(PyExc_ZeroDivisionError, "division by zero");
 3222|      0|        return -1;
 3223|      0|    }
 3224|      2|    if (size_a < size_b ||
  ------------------
  |  Branch (3224:9): [True: 0, False: 2]
  ------------------
 3225|      2|        (size_a == size_b &&
  ------------------
  |  Branch (3225:10): [True: 0, False: 2]
  ------------------
 3226|      0|         a->long_value.ob_digit[size_a-1] < b->long_value.ob_digit[size_b-1])) {
  ------------------
  |  Branch (3226:10): [True: 0, False: 0]
  ------------------
 3227|       |        /* |a| < |b|. */
 3228|      0|        *prem = (PyLongObject *)long_long((PyObject *)a);
 3229|      0|        if (*prem == NULL) {
  ------------------
  |  Branch (3229:13): [True: 0, False: 0]
  ------------------
 3230|      0|            return -1;
 3231|      0|        }
 3232|      0|        *pdiv = (PyLongObject*)_PyLong_GetZero();
 3233|      0|        return 0;
 3234|      0|    }
 3235|      2|    if (size_b == 1) {
  ------------------
  |  Branch (3235:9): [True: 2, False: 0]
  ------------------
 3236|      2|        digit rem = 0;
 3237|      2|        z = divrem1(a, b->long_value.ob_digit[0], &rem);
 3238|      2|        if (z == NULL)
  ------------------
  |  Branch (3238:13): [True: 0, False: 2]
  ------------------
 3239|      0|            return -1;
 3240|      2|        *prem = (PyLongObject *) PyLong_FromLong((long)rem);
 3241|      2|        if (*prem == NULL) {
  ------------------
  |  Branch (3241:13): [True: 0, False: 2]
  ------------------
 3242|      0|            Py_DECREF(z);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3243|      0|            return -1;
 3244|      0|        }
 3245|      2|    }
 3246|      0|    else {
 3247|      0|        z = x_divrem(a, b, prem);
 3248|      0|        *prem = maybe_small_long(*prem);
 3249|      0|        if (z == NULL)
  ------------------
  |  Branch (3249:13): [True: 0, False: 0]
  ------------------
 3250|      0|            return -1;
 3251|      0|    }
 3252|       |    /* Set the signs.
 3253|       |       The quotient z has the sign of a*b;
 3254|       |       the remainder r has the sign of a,
 3255|       |       so a = b*z + r. */
 3256|      2|    if ((_PyLong_IsNegative(a)) != (_PyLong_IsNegative(b))) {
  ------------------
  |  Branch (3256:9): [True: 0, False: 2]
  ------------------
 3257|      0|        _PyLong_Negate(&z);
 3258|      0|        if (z == NULL) {
  ------------------
  |  Branch (3258:13): [True: 0, False: 0]
  ------------------
 3259|      0|            Py_CLEAR(*prem);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3260|      0|            return -1;
 3261|      0|        }
 3262|      0|    }
 3263|      2|    if (_PyLong_IsNegative(a) && !_PyLong_IsZero(*prem)) {
  ------------------
  |  Branch (3263:9): [True: 0, False: 2]
  |  Branch (3263:34): [True: 0, False: 0]
  ------------------
 3264|      0|        _PyLong_Negate(prem);
 3265|      0|        if (*prem == NULL) {
  ------------------
  |  Branch (3265:13): [True: 0, False: 0]
  ------------------
 3266|      0|            Py_DECREF(z);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3267|      0|            Py_CLEAR(*prem);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3268|      0|            return -1;
 3269|      0|        }
 3270|      0|    }
 3271|      2|    *pdiv = maybe_small_long(z);
 3272|      2|    return 0;
 3273|      2|}
longobject.c:divrem1:
 1983|      2|{
 1984|      2|    const Py_ssize_t size = _PyLong_DigitCount(a);
 1985|      2|    PyLongObject *z;
 1986|       |
 1987|      2|    assert(n > 0 && n <= PyLong_MASK);
  ------------------
  |  Branch (1987:5): [True: 2, False: 0]
  |  Branch (1987:5): [True: 2, False: 0]
  ------------------
 1988|      2|    z = long_alloc(size);
 1989|      2|    if (z == NULL)
  ------------------
  |  Branch (1989:9): [True: 0, False: 2]
  ------------------
 1990|      0|        return NULL;
 1991|      2|    *prem = inplace_divrem1(z->long_value.ob_digit, a->long_value.ob_digit, size, n);
 1992|      2|    return long_normalize(z);
 1993|      2|}
longobject.c:inplace_divrem1:
 1961|      2|{
 1962|      2|    digit remainder = 0;
 1963|       |
 1964|      2|    assert(n > 0 && n <= PyLong_MASK);
  ------------------
  |  Branch (1964:5): [True: 2, False: 0]
  |  Branch (1964:5): [True: 2, False: 0]
  ------------------
 1965|     70|    while (--size >= 0) {
  ------------------
  |  Branch (1965:12): [True: 68, False: 2]
  ------------------
 1966|     68|        twodigits dividend;
 1967|     68|        dividend = ((twodigits)remainder << PyLong_SHIFT) | pin[size];
  ------------------
  |  |   47|     68|#define PyLong_SHIFT    30
  ------------------
 1968|     68|        digit quotient;
 1969|     68|        quotient = (digit)(dividend / n);
 1970|     68|        remainder = dividend % n;
 1971|     68|        pout[size] = quotient;
 1972|     68|    }
 1973|      2|    return remainder;
 1974|      2|}
longobject.c:long_sub:
 3884|      4|{
 3885|      4|    if (_PyLong_BothAreCompact(a, b)) {
  ------------------
  |  Branch (3885:9): [True: 0, False: 4]
  ------------------
 3886|      0|        return _PyLong_FromSTwoDigits(medium_value(a) - medium_value(b));
  ------------------
  |  |   27|      0|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
                      return _PyLong_FromSTwoDigits(medium_value(a) - medium_value(b));
  ------------------
  |  |   27|      0|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
 3887|      0|    }
 3888|       |
 3889|      4|    PyLongObject *z;
 3890|      4|    if (_PyLong_IsNegative(a)) {
  ------------------
  |  Branch (3890:9): [True: 0, False: 4]
  ------------------
 3891|      0|        if (_PyLong_IsNegative(b)) {
  ------------------
  |  Branch (3891:13): [True: 0, False: 0]
  ------------------
 3892|      0|            z = x_sub(b, a);
 3893|      0|        }
 3894|      0|        else {
 3895|      0|            z = x_add(a, b);
 3896|      0|            if (z != NULL) {
  ------------------
  |  Branch (3896:17): [True: 0, False: 0]
  ------------------
 3897|      0|                assert(_PyLong_IsZero(z) || Py_REFCNT(z) == 1);
  ------------------
  |  Branch (3897:17): [True: 0, False: 0]
  |  Branch (3897:17): [True: 0, False: 0]
  ------------------
 3898|      0|                _PyLong_FlipSign(z);
 3899|      0|            }
 3900|      0|        }
 3901|      0|    }
 3902|      4|    else {
 3903|      4|        if (_PyLong_IsNegative(b))
  ------------------
  |  Branch (3903:13): [True: 0, False: 4]
  ------------------
 3904|      0|            z = x_add(a, b);
 3905|      4|        else
 3906|      4|            z = x_sub(a, b);
 3907|      4|    }
 3908|      4|    return z;
 3909|      4|}
longobject.c:x_sub:
 3781|      4|{
 3782|      4|    Py_ssize_t size_a = _PyLong_DigitCount(a), size_b = _PyLong_DigitCount(b);
 3783|      4|    PyLongObject *z;
 3784|      4|    Py_ssize_t i;
 3785|      4|    int sign = 1;
 3786|      4|    digit borrow = 0;
 3787|       |
 3788|       |    /* Ensure a is the larger of the two: */
 3789|      4|    if (size_a < size_b) {
  ------------------
  |  Branch (3789:9): [True: 0, False: 4]
  ------------------
 3790|      0|        sign = -1;
 3791|      0|        { PyLongObject *temp = a; a = b; b = temp; }
 3792|      0|        { Py_ssize_t size_temp = size_a;
 3793|      0|            size_a = size_b;
 3794|      0|            size_b = size_temp; }
 3795|      0|    }
 3796|      4|    else if (size_a == size_b) {
  ------------------
  |  Branch (3796:14): [True: 0, False: 4]
  ------------------
 3797|       |        /* Find highest digit where a and b differ: */
 3798|      0|        i = size_a;
 3799|      0|        while (--i >= 0 && a->long_value.ob_digit[i] == b->long_value.ob_digit[i])
  ------------------
  |  Branch (3799:16): [True: 0, False: 0]
  |  Branch (3799:28): [True: 0, False: 0]
  ------------------
 3800|      0|            ;
 3801|      0|        if (i < 0)
  ------------------
  |  Branch (3801:13): [True: 0, False: 0]
  ------------------
 3802|      0|            return (PyLongObject *)PyLong_FromLong(0);
 3803|      0|        if (a->long_value.ob_digit[i] < b->long_value.ob_digit[i]) {
  ------------------
  |  Branch (3803:13): [True: 0, False: 0]
  ------------------
 3804|      0|            sign = -1;
 3805|      0|            { PyLongObject *temp = a; a = b; b = temp; }
 3806|      0|        }
 3807|      0|        size_a = size_b = i+1;
 3808|      0|    }
 3809|      4|    z = long_alloc(size_a);
 3810|      4|    if (z == NULL)
  ------------------
  |  Branch (3810:9): [True: 0, False: 4]
  ------------------
 3811|      0|        return NULL;
 3812|      6|    for (i = 0; i < size_b; ++i) {
  ------------------
  |  Branch (3812:17): [True: 2, False: 4]
  ------------------
 3813|       |        /* The following assumes unsigned arithmetic
 3814|       |           works module 2**N for some N>PyLong_SHIFT. */
 3815|      2|        borrow = a->long_value.ob_digit[i] - b->long_value.ob_digit[i] - borrow;
 3816|      2|        z->long_value.ob_digit[i] = borrow & PyLong_MASK;
  ------------------
  |  |   62|      2|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|      2|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|      2|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3817|      2|        borrow >>= PyLong_SHIFT;
  ------------------
  |  |   47|      2|#define PyLong_SHIFT    30
  ------------------
 3818|      2|        borrow &= 1; /* Keep only one sign bit */
 3819|      2|    }
 3820|    138|    for (; i < size_a; ++i) {
  ------------------
  |  Branch (3820:12): [True: 134, False: 4]
  ------------------
 3821|    134|        borrow = a->long_value.ob_digit[i] - borrow;
 3822|    134|        z->long_value.ob_digit[i] = borrow & PyLong_MASK;
  ------------------
  |  |   62|    134|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|    134|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|    134|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3823|    134|        borrow >>= PyLong_SHIFT;
  ------------------
  |  |   47|    134|#define PyLong_SHIFT    30
  ------------------
 3824|    134|        borrow &= 1; /* Keep only one sign bit */
 3825|    134|    }
 3826|      4|    assert(borrow == 0);
  ------------------
  |  Branch (3826:5): [True: 4, False: 0]
  ------------------
 3827|      4|    if (sign < 0) {
  ------------------
  |  Branch (3827:9): [True: 0, False: 4]
  ------------------
 3828|      0|        _PyLong_FlipSign(z);
 3829|      0|    }
 3830|      4|    return maybe_small_long(long_normalize(z));
 3831|      4|}
longobject.c:x_add:
 3747|      2|{
 3748|      2|    Py_ssize_t size_a = _PyLong_DigitCount(a), size_b = _PyLong_DigitCount(b);
 3749|      2|    PyLongObject *z;
 3750|      2|    Py_ssize_t i;
 3751|      2|    digit carry = 0;
 3752|       |
 3753|       |    /* Ensure a is the larger of the two: */
 3754|      2|    if (size_a < size_b) {
  ------------------
  |  Branch (3754:9): [True: 0, False: 2]
  ------------------
 3755|      0|        { PyLongObject *temp = a; a = b; b = temp; }
 3756|      0|        { Py_ssize_t size_temp = size_a;
 3757|      0|            size_a = size_b;
 3758|      0|            size_b = size_temp; }
 3759|      0|    }
 3760|      2|    z = long_alloc(size_a+1);
 3761|      2|    if (z == NULL)
  ------------------
  |  Branch (3761:9): [True: 0, False: 2]
  ------------------
 3762|      0|        return NULL;
 3763|      4|    for (i = 0; i < size_b; ++i) {
  ------------------
  |  Branch (3763:17): [True: 2, False: 2]
  ------------------
 3764|      2|        carry += a->long_value.ob_digit[i] + b->long_value.ob_digit[i];
 3765|      2|        z->long_value.ob_digit[i] = carry & PyLong_MASK;
  ------------------
  |  |   62|      2|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|      2|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|      2|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3766|      2|        carry >>= PyLong_SHIFT;
  ------------------
  |  |   47|      2|#define PyLong_SHIFT    30
  ------------------
 3767|      2|    }
 3768|     68|    for (; i < size_a; ++i) {
  ------------------
  |  Branch (3768:12): [True: 66, False: 2]
  ------------------
 3769|     66|        carry += a->long_value.ob_digit[i];
 3770|     66|        z->long_value.ob_digit[i] = carry & PyLong_MASK;
  ------------------
  |  |   62|     66|#define PyLong_MASK     ((digit)(PyLong_BASE - 1))
  |  |  ------------------
  |  |  |  |   61|     66|#define PyLong_BASE     ((digit)1 << PyLong_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|     66|#define PyLong_SHIFT    30
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3771|     66|        carry >>= PyLong_SHIFT;
  ------------------
  |  |   47|     66|#define PyLong_SHIFT    30
  ------------------
 3772|     66|    }
 3773|      2|    z->long_value.ob_digit[i] = carry;
 3774|      2|    return long_normalize(z);
 3775|      2|}
longobject.c:long_add:
 3835|      8|{
 3836|      8|    if (_PyLong_BothAreCompact(a, b)) {
  ------------------
  |  Branch (3836:9): [True: 6, False: 2]
  ------------------
 3837|      6|        stwodigits z = medium_value(a) + medium_value(b);
  ------------------
  |  |   27|      6|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
                      stwodigits z = medium_value(a) + medium_value(b);
  ------------------
  |  |   27|      6|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
 3838|      6|        return _PyLong_FromSTwoDigits(z);
 3839|      6|    }
 3840|       |
 3841|      2|    PyLongObject *z;
 3842|      2|    if (_PyLong_IsNegative(a)) {
  ------------------
  |  Branch (3842:9): [True: 0, False: 2]
  ------------------
 3843|      0|        if (_PyLong_IsNegative(b)) {
  ------------------
  |  Branch (3843:13): [True: 0, False: 0]
  ------------------
 3844|      0|            z = x_add(a, b);
 3845|      0|            if (z != NULL) {
  ------------------
  |  Branch (3845:17): [True: 0, False: 0]
  ------------------
 3846|       |                /* x_add received at least one multiple-digit int,
 3847|       |                   and thus z must be a multiple-digit int.
 3848|       |                   That also means z is not an element of
 3849|       |                   small_ints, so negating it in-place is safe. */
 3850|      0|                assert(Py_REFCNT(z) == 1);
  ------------------
  |  Branch (3850:17): [True: 0, False: 0]
  ------------------
 3851|      0|                _PyLong_FlipSign(z);
 3852|      0|            }
 3853|      0|        }
 3854|      0|        else
 3855|      0|            z = x_sub(b, a);
 3856|      0|    }
 3857|      2|    else {
 3858|      2|        if (_PyLong_IsNegative(b))
  ------------------
  |  Branch (3858:13): [True: 0, False: 2]
  ------------------
 3859|      0|            z = x_sub(a, b);
 3860|      2|        else
 3861|      2|            z = x_add(a, b);
 3862|      2|    }
 3863|      2|    return z;
 3864|      2|}
longobject.c:long_dealloc:
 3652|    474|{
 3653|    474|    if (_PyLong_IsSmallInt((PyLongObject *)self)) {
  ------------------
  |  Branch (3653:9): [True: 0, False: 474]
  ------------------
 3654|       |        /* This should never get called, but we also don't want to SEGV if
 3655|       |         * we accidentally decref small Ints out of existence. Instead,
 3656|       |         * since small Ints are immortal, re-set the reference count.
 3657|       |         *
 3658|       |         * See PEP 683, section Accidental De-Immortalizing for details
 3659|       |         */
 3660|      0|        _Py_SetImmortal(self);
 3661|      0|        return;
 3662|      0|    }
 3663|    474|    if (PyLong_CheckExact(self) && _PyLong_IsCompact((PyLongObject *)self)) {
  ------------------
  |  |   14|    474|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|    948|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    474|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    474|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 474, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3663:36): [True: 172, False: 302]
  ------------------
 3664|    172|        _Py_FREELIST_FREE(ints, self, PyObject_Free);
  ------------------
  |  |   35|    172|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|    172|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    172|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|    172|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   20|    172|#  define Py_ints_MAXFREELIST 100
  |  |  ------------------
  ------------------
 3665|    172|        return;
 3666|    172|    }
 3667|    302|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|    302|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    302|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    302|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3668|    302|}
longobject.c:long_to_decimal_string:
 2321|     22|{
 2322|     22|    PyObject *v;
 2323|     22|    if (long_to_decimal_string_internal(aa, &v, NULL, NULL, NULL) == -1)
  ------------------
  |  Branch (2323:9): [True: 0, False: 22]
  ------------------
 2324|      0|        return NULL;
 2325|     22|    return v;
 2326|     22|}
longobject.c:long_add_method:
 3876|      8|{
 3877|      8|    CHECK_BINOP(a, b);
  ------------------
  |  | 1844|      8|    do {                                                \
  |  | 1845|      8|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      8|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|     16|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      8|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 0, False: 8]
  |  |  |  Branch (1845:33): [True: 0, False: 8]
  |  |  ------------------
  |  | 1846|      8|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|      8|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 8]
  |  |  ------------------
  ------------------
 3878|      8|    return (PyObject*)long_add((PyLongObject*)a, (PyLongObject*)b);
 3879|      8|}
longobject.c:long_sub_method:
 3921|      4|{
 3922|      4|    CHECK_BINOP(a, b);
  ------------------
  |  | 1844|      4|    do {                                                \
  |  | 1845|      4|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      4|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      4|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 0, False: 4]
  |  |  |  Branch (1845:33): [True: 0, False: 4]
  |  |  ------------------
  |  | 1846|      4|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|      4|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 4]
  |  |  ------------------
  ------------------
 3923|      4|    return (PyObject*)long_sub((PyLongObject*)a, (PyLongObject*)b);
 3924|      4|}
longobject.c:long_mul_method:
 4368|      2|{
 4369|      2|    CHECK_BINOP(a, b);
  ------------------
  |  | 1844|      2|    do {                                                \
  |  | 1845|      2|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      2|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      0|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 2, False: 0]
  |  |  |  Branch (1845:33): [True: 0, False: 0]
  |  |  ------------------
  |  | 1846|      2|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      2|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      2|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4370|      0|    return (PyObject*)long_mul((PyLongObject*)a, (PyLongObject*)b);
 4371|      2|}
longobject.c:l_divmod:
 4481|      2|{
 4482|      2|    PyLongObject *div, *mod;
 4483|       |
 4484|      2|    if (_PyLong_DigitCount(v) == 1 && _PyLong_DigitCount(w) == 1) {
  ------------------
  |  Branch (4484:9): [True: 0, False: 2]
  |  Branch (4484:39): [True: 0, False: 0]
  ------------------
 4485|       |        /* Fast path for single-digit longs */
 4486|      0|        div = NULL;
 4487|      0|        if (pdiv != NULL) {
  ------------------
  |  Branch (4487:13): [True: 0, False: 0]
  ------------------
 4488|      0|            div = (PyLongObject *)fast_floor_div(v, w);
 4489|      0|            if (div == NULL) {
  ------------------
  |  Branch (4489:17): [True: 0, False: 0]
  ------------------
 4490|      0|                return -1;
 4491|      0|            }
 4492|      0|        }
 4493|      0|        if (pmod != NULL) {
  ------------------
  |  Branch (4493:13): [True: 0, False: 0]
  ------------------
 4494|      0|            mod = (PyLongObject *)fast_mod(v, w);
 4495|      0|            if (mod == NULL) {
  ------------------
  |  Branch (4495:17): [True: 0, False: 0]
  ------------------
 4496|      0|                Py_XDECREF(div);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4497|      0|                return -1;
 4498|      0|            }
 4499|      0|            *pmod = mod;
 4500|      0|        }
 4501|      0|        if (pdiv != NULL) {
  ------------------
  |  Branch (4501:13): [True: 0, False: 0]
  ------------------
 4502|       |            /* We only want to set `*pdiv` when `*pmod` is
 4503|       |               set successfully. */
 4504|      0|            *pdiv = div;
 4505|      0|        }
 4506|      0|        return 0;
 4507|      0|    }
 4508|      2|#if WITH_PYLONG_MODULE
 4509|      2|    Py_ssize_t size_v = _PyLong_DigitCount(v); /* digits in numerator */
 4510|      2|    Py_ssize_t size_w = _PyLong_DigitCount(w); /* digits in denominator */
 4511|      2|    if (size_w > 300 && (size_v - size_w) > 150) {
  ------------------
  |  Branch (4511:9): [True: 0, False: 2]
  |  Branch (4511:25): [True: 0, False: 0]
  ------------------
 4512|       |        /* Switch to _pylong.int_divmod().  If the quotient is small then
 4513|       |          "schoolbook" division is linear-time so don't use in that case.
 4514|       |          These limits are empirically determined and should be slightly
 4515|       |          conservative so that _pylong is used in cases it is likely
 4516|       |          to be faster. See Tools/scripts/divmod_threshold.py. */
 4517|      0|        return pylong_int_divmod(v, w, pdiv, pmod);
 4518|      0|    }
 4519|      2|#endif
 4520|      2|    if (long_divrem(v, w, &div, &mod) < 0)
  ------------------
  |  Branch (4520:9): [True: 0, False: 2]
  ------------------
 4521|      0|        return -1;
 4522|      2|    if ((_PyLong_IsNegative(mod) && _PyLong_IsPositive(w)) ||
  ------------------
  |  Branch (4522:10): [True: 0, False: 2]
  |  Branch (4522:37): [True: 0, False: 0]
  ------------------
 4523|      2|        (_PyLong_IsPositive(mod) && _PyLong_IsNegative(w))) {
  ------------------
  |  Branch (4523:10): [True: 0, False: 2]
  |  Branch (4523:37): [True: 0, False: 0]
  ------------------
 4524|      0|        PyLongObject *temp;
 4525|      0|        temp = long_add(mod, w);
 4526|      0|        Py_SETREF(mod, temp);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4527|      0|        if (mod == NULL) {
  ------------------
  |  Branch (4527:13): [True: 0, False: 0]
  ------------------
 4528|      0|            Py_DECREF(div);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4529|      0|            return -1;
 4530|      0|        }
 4531|      0|        temp = long_sub(div, (PyLongObject *)_PyLong_GetOne());
 4532|      0|        if (temp == NULL) {
  ------------------
  |  Branch (4532:13): [True: 0, False: 0]
  ------------------
 4533|      0|            Py_DECREF(mod);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4534|      0|            Py_DECREF(div);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4535|      0|            return -1;
 4536|      0|        }
 4537|      0|        Py_SETREF(div, temp);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4538|      0|    }
 4539|      2|    if (pdiv != NULL)
  ------------------
  |  Branch (4539:9): [True: 2, False: 0]
  ------------------
 4540|      2|        *pdiv = div;
 4541|      0|    else
 4542|      0|        Py_DECREF(div);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4543|       |
 4544|      2|    if (pmod != NULL)
  ------------------
  |  Branch (4544:9): [True: 0, False: 2]
  ------------------
 4545|      0|        *pmod = mod;
 4546|      2|    else
 4547|      2|        Py_DECREF(mod);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4548|       |
 4549|      2|    return 0;
 4550|      2|}
longobject.c:long_bool:
 5302|     14|{
 5303|     14|    return !_PyLong_IsZero(_PyLong_CAST(v));
  ------------------
  |  |    6|     14|    (assert(PyLong_Check(op)), _Py_CAST(PyLongObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (5303:28): [True: 14, False: 0]
  ------------------
 5304|     14|}
longobject.c:long_lshift_method:
 5496|      2|{
 5497|      2|    CHECK_BINOP(aa, bb);
  ------------------
  |  | 1844|      2|    do {                                                \
  |  | 1845|      2|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      2|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      2|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 0, False: 2]
  |  |  |  Branch (1845:33): [True: 0, False: 2]
  |  |  ------------------
  |  | 1846|      2|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 5498|      2|    PyLongObject *a = (PyLongObject*)aa;
 5499|      2|    PyLongObject *b = (PyLongObject*)bb;
 5500|       |
 5501|      2|    if (_PyLong_IsNegative(b)) {
  ------------------
  |  Branch (5501:9): [True: 0, False: 2]
  ------------------
 5502|      0|        PyErr_SetString(PyExc_ValueError, "negative shift count");
 5503|      0|        return NULL;
 5504|      0|    }
 5505|      2|    if (_PyLong_IsZero(a)) {
  ------------------
  |  Branch (5505:9): [True: 0, False: 2]
  ------------------
 5506|      0|        return PyLong_FromLong(0);
 5507|      0|    }
 5508|       |
 5509|      2|    int64_t shiftby;
 5510|      2|    if (PyLong_AsInt64(bb, &shiftby) < 0) {
  ------------------
  |  Branch (5510:9): [True: 0, False: 2]
  ------------------
 5511|      0|        if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
  ------------------
  |  Branch (5511:13): [True: 0, False: 0]
  ------------------
 5512|      0|            PyErr_SetString(PyExc_OverflowError,
 5513|      0|                            "too many digits in integer");
 5514|      0|        }
 5515|      0|        return NULL;
 5516|      0|    }
 5517|      2|    return long_lshift_int64(a, shiftby);
 5518|      2|}
longobject.c:long_and:
 5695|      4|{
 5696|      4|    CHECK_BINOP(a, b);
  ------------------
  |  | 1844|      4|    do {                                                \
  |  | 1845|      4|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      4|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      4|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 0, False: 4]
  |  |  |  Branch (1845:33): [True: 0, False: 4]
  |  |  ------------------
  |  | 1846|      4|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|      4|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 4]
  |  |  ------------------
  ------------------
 5697|      4|    PyLongObject *x = (PyLongObject*)a;
 5698|      4|    PyLongObject *y = (PyLongObject*)b;
 5699|      4|    if (_PyLong_IsCompact(x) && _PyLong_IsCompact(y)) {
  ------------------
  |  Branch (5699:9): [True: 4, False: 0]
  |  Branch (5699:33): [True: 4, False: 0]
  ------------------
 5700|      4|        return (PyObject*)_PyLong_FromSTwoDigits(medium_value(x) & medium_value(y));
  ------------------
  |  |   27|      4|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
                      return (PyObject*)_PyLong_FromSTwoDigits(medium_value(x) & medium_value(y));
  ------------------
  |  |   27|      4|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
 5701|      4|    }
 5702|      0|    return long_bitwise(x, '&', y);
 5703|      4|}
longobject.c:long_or:
 5719|      6|{
 5720|      6|    CHECK_BINOP(a, b);
  ------------------
  |  | 1844|      6|    do {                                                \
  |  | 1845|      6|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      6|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|     12|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      6|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 0, False: 6]
  |  |  |  Branch (1845:33): [True: 0, False: 6]
  |  |  ------------------
  |  | 1846|      6|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|      6|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 6]
  |  |  ------------------
  ------------------
 5721|      6|    PyLongObject *x = (PyLongObject*)a;
 5722|      6|    PyLongObject *y = (PyLongObject*)b;
 5723|      6|    if (_PyLong_IsCompact(x) && _PyLong_IsCompact(y)) {
  ------------------
  |  Branch (5723:9): [True: 6, False: 0]
  |  Branch (5723:33): [True: 6, False: 0]
  ------------------
 5724|      6|        return (PyObject*)_PyLong_FromSTwoDigits(medium_value(x) | medium_value(y));
  ------------------
  |  |   27|      6|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
                      return (PyObject*)_PyLong_FromSTwoDigits(medium_value(x) | medium_value(y));
  ------------------
  |  |   27|      6|#define medium_value(x) ((stwodigits)_PyLong_CompactValue(x))
  ------------------
 5725|      6|    }
 5726|      0|    return long_bitwise(x, '|', y);
 5727|      6|}
longobject.c:long_div:
 4584|      2|{
 4585|      2|    PyLongObject *div;
 4586|       |
 4587|      2|    CHECK_BINOP(a, b);
  ------------------
  |  | 1844|      2|    do {                                                \
  |  | 1845|      2|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      2|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|      2|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 0, False: 2]
  |  |  |  Branch (1845:33): [True: 0, False: 2]
  |  |  ------------------
  |  | 1846|      2|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4588|       |
 4589|      2|    if (_PyLong_DigitCount((PyLongObject*)a) == 1 && _PyLong_DigitCount((PyLongObject*)b) == 1) {
  ------------------
  |  Branch (4589:9): [True: 0, False: 2]
  |  Branch (4589:54): [True: 0, False: 0]
  ------------------
 4590|      0|        return fast_floor_div((PyLongObject*)a, (PyLongObject*)b);
 4591|      0|    }
 4592|       |
 4593|      2|    if (l_divmod((PyLongObject*)a, (PyLongObject*)b, &div, NULL) < 0)
  ------------------
  |  Branch (4593:9): [True: 0, False: 2]
  ------------------
 4594|      0|        div = NULL;
 4595|      2|    return (PyObject *)div;
 4596|      2|}
longobject.c:long_hash:
 3672|  1.20k|{
 3673|  1.20k|    PyLongObject *v = (PyLongObject *)obj;
 3674|  1.20k|    Py_uhash_t x;
 3675|  1.20k|    Py_ssize_t i;
 3676|  1.20k|    int sign;
 3677|       |
 3678|  1.20k|    if (_PyLong_IsCompact(v)) {
  ------------------
  |  Branch (3678:9): [True: 336, False: 868]
  ------------------
 3679|    336|        x = (Py_uhash_t)_PyLong_CompactValue(v);
 3680|    336|        if (x == (Py_uhash_t)-1) {
  ------------------
  |  Branch (3680:13): [True: 0, False: 336]
  ------------------
 3681|      0|            x = (Py_uhash_t)-2;
 3682|      0|        }
 3683|    336|        return x;
 3684|    336|    }
 3685|    868|    i = _PyLong_DigitCount(v);
 3686|    868|    sign = _PyLong_NonCompactSign(v);
 3687|       |
 3688|       |    // unroll first digit
 3689|    868|    Py_BUILD_ASSERT(PyHASH_BITS > PyLong_SHIFT);
  ------------------
  |  |  167|    868|        do { \
  |  |  168|    868|            static_assert((cond), #cond); \
  |  |  169|    868|        } while (0)
  |  |  ------------------
  |  |  |  Branch (169:18): [Folded, False: 868]
  |  |  ------------------
  ------------------
 3690|    868|    assert(i >= 1);
  ------------------
  |  Branch (3690:5): [True: 868, False: 0]
  ------------------
 3691|    868|    --i;
 3692|    868|    x = v->long_value.ob_digit[i];
 3693|    868|    assert(x < PyHASH_MODULUS);
  ------------------
  |  Branch (3693:5): [True: 868, False: 0]
  ------------------
 3694|       |
 3695|    868|#if PyHASH_BITS >= 2 * PyLong_SHIFT
 3696|       |    // unroll second digit
 3697|    868|    assert(i >= 1);
  ------------------
  |  Branch (3697:5): [True: 868, False: 0]
  ------------------
 3698|    868|    --i;
 3699|    868|    x <<= PyLong_SHIFT;
  ------------------
  |  |   47|    868|#define PyLong_SHIFT    30
  ------------------
 3700|    868|    x += v->long_value.ob_digit[i];
 3701|    868|    assert(x < PyHASH_MODULUS);
  ------------------
  |  Branch (3701:5): [True: 868, False: 0]
  ------------------
 3702|    868|#endif
 3703|       |
 3704|    868|    while (--i >= 0) {
  ------------------
  |  Branch (3704:12): [True: 0, False: 868]
  ------------------
 3705|       |        /* Here x is a quantity in the range [0, PyHASH_MODULUS); we
 3706|       |           want to compute x * 2**PyLong_SHIFT + v->long_value.ob_digit[i] modulo
 3707|       |           PyHASH_MODULUS.
 3708|       |
 3709|       |           The computation of x * 2**PyLong_SHIFT % PyHASH_MODULUS
 3710|       |           amounts to a rotation of the bits of x.  To see this, write
 3711|       |
 3712|       |             x * 2**PyLong_SHIFT = y * 2**PyHASH_BITS + z
 3713|       |
 3714|       |           where y = x >> (PyHASH_BITS - PyLong_SHIFT) gives the top
 3715|       |           PyLong_SHIFT bits of x (those that are shifted out of the
 3716|       |           original PyHASH_BITS bits, and z = (x << PyLong_SHIFT) &
 3717|       |           PyHASH_MODULUS gives the bottom PyHASH_BITS - PyLong_SHIFT
 3718|       |           bits of x, shifted up.  Then since 2**PyHASH_BITS is
 3719|       |           congruent to 1 modulo PyHASH_MODULUS, y*2**PyHASH_BITS is
 3720|       |           congruent to y modulo PyHASH_MODULUS.  So
 3721|       |
 3722|       |             x * 2**PyLong_SHIFT = y + z (mod PyHASH_MODULUS).
 3723|       |
 3724|       |           The right-hand side is just the result of rotating the
 3725|       |           PyHASH_BITS bits of x left by PyLong_SHIFT places; since
 3726|       |           not all PyHASH_BITS bits of x are 1s, the same is true
 3727|       |           after rotation, so 0 <= y+z < PyHASH_MODULUS and y + z is
 3728|       |           the reduction of x*2**PyLong_SHIFT modulo
 3729|       |           PyHASH_MODULUS. */
 3730|      0|        x = ((x << PyLong_SHIFT) & PyHASH_MODULUS) |
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
                      x = ((x << PyLong_SHIFT) & PyHASH_MODULUS) |
  ------------------
  |  |   18|      0|#define PyHASH_MODULUS (((size_t)1 << PyHASH_BITS) - 1)
  |  |  ------------------
  |  |  |  |   13|      0|#  define PyHASH_BITS 61
  |  |  ------------------
  ------------------
 3731|      0|            (x >> (PyHASH_BITS - PyLong_SHIFT));
  ------------------
  |  |   13|      0|#  define PyHASH_BITS 61
  ------------------
                          (x >> (PyHASH_BITS - PyLong_SHIFT));
  ------------------
  |  |   47|      0|#define PyLong_SHIFT    30
  ------------------
 3732|      0|        x += v->long_value.ob_digit[i];
 3733|      0|        if (x >= PyHASH_MODULUS)
  ------------------
  |  |   18|      0|#define PyHASH_MODULUS (((size_t)1 << PyHASH_BITS) - 1)
  |  |  ------------------
  |  |  |  |   13|      0|#  define PyHASH_BITS 61
  |  |  ------------------
  ------------------
  |  Branch (3733:13): [True: 0, False: 0]
  ------------------
 3734|      0|            x -= PyHASH_MODULUS;
  ------------------
  |  |   18|      0|#define PyHASH_MODULUS (((size_t)1 << PyHASH_BITS) - 1)
  |  |  ------------------
  |  |  |  |   13|      0|#  define PyHASH_BITS 61
  |  |  ------------------
  ------------------
 3735|      0|    }
 3736|    868|    x = x * sign;
 3737|    868|    if (x == (Py_uhash_t)-1)
  ------------------
  |  Branch (3737:9): [True: 0, False: 868]
  ------------------
 3738|      0|        x = (Py_uhash_t)-2;
 3739|    868|    return (Py_hash_t)x;
 3740|    868|}
longobject.c:long_richcompare:
 3624|    106|{
 3625|    106|    Py_ssize_t result;
 3626|    106|    CHECK_BINOP(self, other);
  ------------------
  |  | 1844|    106|    do {                                                \
  |  | 1845|    106|        if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|    106|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    212|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       if (!PyLong_Check(v) || !PyLong_Check(w))       \
  |  |  ------------------
  |  |  |  |   13|    106|        PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    106|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1845:13): [True: 0, False: 106]
  |  |  |  Branch (1845:33): [True: 0, False: 106]
  |  |  ------------------
  |  | 1846|    106|            Py_RETURN_NOTIMPLEMENTED;                   \
  |  |  ------------------
  |  |  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  |  |  ------------------
  |  |  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1847|    106|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1847:13): [Folded, False: 106]
  |  |  ------------------
  ------------------
 3627|    106|    if (self == other)
  ------------------
  |  Branch (3627:9): [True: 12, False: 94]
  ------------------
 3628|     12|        result = 0;
 3629|     94|    else
 3630|     94|        result = long_compare((PyLongObject*)self, (PyLongObject*)other);
 3631|    106|    Py_RETURN_RICHCOMPARE(result, 0, op);
  ------------------
  |  |  674|    106|    do {                                                                    \
  |  |  675|    106|        switch (op) {                                                       \
  |  |  676|     22|        case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  654|     22|#define Py_EQ 2
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|     20|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|     20|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      2|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (676:9): [True: 22, False: 84]
  |  |  |  Branch (676:25): [True: 20, False: 2]
  |  |  ------------------
  |  |  677|     66|        case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  655|     66|#define Py_NE 3
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      2|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|     64|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|     64|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (677:9): [True: 66, False: 40]
  |  |  |  Branch (677:25): [True: 2, False: 64]
  |  |  ------------------
  |  |  678|     66|        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  652|      6|#define Py_LT 0
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      2|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      4|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      4|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (678:9): [True: 6, False: 100]
  |  |  |  Branch (678:25): [True: 2, False: 4]
  |  |  ------------------
  |  |  679|      6|        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  656|      6|#define Py_GT 4
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      4|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      4|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      2|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (679:9): [True: 6, False: 100]
  |  |  |  Branch (679:25): [True: 4, False: 2]
  |  |  ------------------
  |  |  680|      6|        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  653|      0|#define Py_LE 1
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (680:9): [True: 0, False: 106]
  |  |  |  Branch (680:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  681|      6|        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  657|      6|#define Py_GE 5
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      6|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      6|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (681:9): [True: 6, False: 100]
  |  |  |  Branch (681:25): [True: 0, False: 6]
  |  |  ------------------
  |  |  682|      6|        default:                                                            \
  |  |  ------------------
  |  |  |  Branch (682:9): [True: 0, False: 106]
  |  |  ------------------
  |  |  683|      0|            Py_UNREACHABLE();                                               \
  |  |  ------------------
  |  |  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  |  |  ------------------
  |  |  684|    106|        }                                                                   \
  |  |  685|    106|    } while (0)
  |  |  ------------------
  |  |  |  Branch (685:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3632|    106|}
longobject.c:int_to_bytes_impl:
 6392|      2|{
 6393|      2|    int little_endian;
 6394|      2|    if (byteorder == NULL)
  ------------------
  |  Branch (6394:9): [True: 0, False: 2]
  ------------------
 6395|      0|        little_endian = 0;
 6396|      2|    else if (_PyUnicode_Equal(byteorder, &_Py_ID(little)))
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6396:14): [True: 2, False: 0]
  ------------------
 6397|      2|        little_endian = 1;
 6398|      0|    else if (_PyUnicode_Equal(byteorder, &_Py_ID(big)))
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6398:14): [True: 0, False: 0]
  ------------------
 6399|      0|        little_endian = 0;
 6400|      0|    else {
 6401|      0|        PyErr_SetString(PyExc_ValueError,
 6402|      0|            "byteorder must be either 'little' or 'big'");
 6403|      0|        return NULL;
 6404|      0|    }
 6405|       |
 6406|      2|    PyBytesWriter *writer = PyBytesWriter_Create(length);
 6407|      2|    if (writer == NULL) {
  ------------------
  |  Branch (6407:9): [True: 0, False: 2]
  ------------------
 6408|      0|        return NULL;
 6409|      0|    }
 6410|       |
 6411|      2|    if (_PyLong_AsByteArray((PyLongObject *)self,
  ------------------
  |  Branch (6411:9): [True: 0, False: 2]
  ------------------
 6412|      2|                            PyBytesWriter_GetData(writer),
 6413|      2|                            length, little_endian, is_signed, 1) < 0) {
 6414|      0|        PyBytesWriter_Discard(writer);
 6415|      0|        return NULL;
 6416|      0|    }
 6417|       |
 6418|      2|    return PyBytesWriter_Finish(writer);
 6419|      2|}

PyCMethod_New:
   48|  1.76k|{
   49|       |    /* Figure out correct vectorcall function to use */
   50|  1.76k|    vectorcallfunc vectorcall;
   51|  1.76k|    switch (ml->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS |
  ------------------
  |  |   95|  1.76k|#define METH_VARARGS  0x0001
  ------------------
                  switch (ml->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS |
  ------------------
  |  |  115|  1.76k|#  define METH_FASTCALL  0x0080
  ------------------
                  switch (ml->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS |
  ------------------
  |  |   98|  1.76k|#define METH_NOARGS   0x0004
  ------------------
   52|  1.76k|                            METH_O | METH_KEYWORDS | METH_METHOD))
  ------------------
  |  |   99|  1.76k|#define METH_O        0x0008
  ------------------
                                          METH_O | METH_KEYWORDS | METH_METHOD))
  ------------------
  |  |   96|  1.76k|#define METH_KEYWORDS 0x0002
  ------------------
                                          METH_O | METH_KEYWORDS | METH_METHOD))
  ------------------
  |  |  133|  1.76k|#define METH_METHOD 0x0200
  ------------------
   53|  1.76k|    {
   54|     64|        case METH_VARARGS:
  ------------------
  |  |   95|     64|#define METH_VARARGS  0x0001
  ------------------
  |  Branch (54:9): [True: 64, False: 1.69k]
  ------------------
   55|     70|        case METH_VARARGS | METH_KEYWORDS:
  ------------------
  |  |   95|     70|#define METH_VARARGS  0x0001
  ------------------
                      case METH_VARARGS | METH_KEYWORDS:
  ------------------
  |  |   96|     70|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (55:9): [True: 6, False: 1.75k]
  ------------------
   56|       |            /* For METH_VARARGS functions, it's more efficient to use tp_call
   57|       |             * instead of vectorcall. */
   58|     70|            vectorcall = NULL;
   59|     70|            break;
   60|    210|        case METH_FASTCALL:
  ------------------
  |  |  115|    210|#  define METH_FASTCALL  0x0080
  ------------------
  |  Branch (60:9): [True: 210, False: 1.55k]
  ------------------
   61|    210|            vectorcall = cfunction_vectorcall_FASTCALL;
   62|    210|            break;
   63|    658|        case METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |  115|    658|#  define METH_FASTCALL  0x0080
  ------------------
                      case METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |   96|    658|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (63:9): [True: 658, False: 1.10k]
  ------------------
   64|    658|            vectorcall = cfunction_vectorcall_FASTCALL_KEYWORDS;
   65|    658|            break;
   66|    474|        case METH_NOARGS:
  ------------------
  |  |   98|    474|#define METH_NOARGS   0x0004
  ------------------
  |  Branch (66:9): [True: 474, False: 1.28k]
  ------------------
   67|    474|            vectorcall = cfunction_vectorcall_NOARGS;
   68|    474|            break;
   69|    346|        case METH_O:
  ------------------
  |  |   99|    346|#define METH_O        0x0008
  ------------------
  |  Branch (69:9): [True: 346, False: 1.41k]
  ------------------
   70|    346|            vectorcall = cfunction_vectorcall_O;
   71|    346|            break;
   72|      4|        case METH_METHOD | METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |  133|      4|#define METH_METHOD 0x0200
  ------------------
                      case METH_METHOD | METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |  115|      4|#  define METH_FASTCALL  0x0080
  ------------------
                      case METH_METHOD | METH_FASTCALL | METH_KEYWORDS:
  ------------------
  |  |   96|      4|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (72:9): [True: 4, False: 1.75k]
  ------------------
   73|      4|            vectorcall = cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD;
   74|      4|            break;
   75|      0|        default:
  ------------------
  |  Branch (75:9): [True: 0, False: 1.76k]
  ------------------
   76|      0|            PyErr_Format(PyExc_SystemError,
   77|      0|                         "%s() method: bad call flags", ml->ml_name);
   78|      0|            return NULL;
   79|  1.76k|    }
   80|       |
   81|  1.76k|    PyCFunctionObject *op = NULL;
   82|       |
   83|  1.76k|    if (ml->ml_flags & METH_METHOD) {
  ------------------
  |  |  133|  1.76k|#define METH_METHOD 0x0200
  ------------------
  |  Branch (83:9): [True: 4, False: 1.75k]
  ------------------
   84|      4|        if (!cls) {
  ------------------
  |  Branch (84:13): [True: 0, False: 4]
  ------------------
   85|      0|            PyErr_SetString(PyExc_SystemError,
   86|      0|                            "attempting to create PyCMethod with a METH_METHOD "
   87|      0|                            "flag but no class");
   88|      0|            return NULL;
   89|      0|        }
   90|      4|        PyCMethodObject *om = _Py_FREELIST_POP(PyCMethodObject, pycmethodobject);
  ------------------
  |  |   43|      4|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   91|      4|        if (om == NULL) {
  ------------------
  |  Branch (91:13): [True: 2, False: 2]
  ------------------
   92|      2|            om = PyObject_GC_New(PyCMethodObject, &PyCMethod_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   93|      2|            if (om == NULL) {
  ------------------
  |  Branch (93:17): [True: 0, False: 2]
  ------------------
   94|      0|                return NULL;
   95|      0|            }
   96|      2|        }
   97|      4|        om->mm_class = (PyTypeObject*)Py_NewRef(cls);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   98|      4|        op = (PyCFunctionObject *)om;
   99|  1.75k|    } else {
  100|  1.75k|        if (cls) {
  ------------------
  |  Branch (100:13): [True: 0, False: 1.75k]
  ------------------
  101|      0|            PyErr_SetString(PyExc_SystemError,
  102|      0|                            "attempting to create PyCFunction with class "
  103|      0|                            "but no METH_METHOD flag");
  104|      0|            return NULL;
  105|      0|        }
  106|  1.75k|        op = _Py_FREELIST_POP(PyCFunctionObject, pycfunctionobject);
  ------------------
  |  |   43|  1.75k|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|  1.75k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  107|  1.75k|        if (op == NULL) {
  ------------------
  |  Branch (107:13): [True: 1.25k, False: 502]
  ------------------
  108|  1.25k|            op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type);
  ------------------
  |  |  181|  1.25k|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|  1.25k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  109|  1.25k|            if (op == NULL) {
  ------------------
  |  Branch (109:17): [True: 0, False: 1.25k]
  ------------------
  110|      0|                return NULL;
  111|      0|            }
  112|  1.25k|        }
  113|  1.75k|    }
  114|       |
  115|  1.76k|    op->m_weakreflist = NULL;
  116|  1.76k|    op->m_ml = ml;
  117|  1.76k|    op->m_self = Py_XNewRef(self);
  ------------------
  |  |  551|  1.76k|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.76k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.76k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  118|  1.76k|    op->m_module = Py_XNewRef(module);
  ------------------
  |  |  551|  1.76k|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.76k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.76k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  119|  1.76k|    op->vectorcall = vectorcall;
  120|  1.76k|    _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|  1.76k|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.76k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.76k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  121|  1.76k|    return (PyObject *)op;
  122|  1.76k|}
methodobject.c:meth_dealloc:
  168|    508|{
  169|    508|    PyCFunctionObject *m = _PyCFunctionObject_CAST(self);
  ------------------
  |  |   17|    508|    (assert(PyCFunction_Check(func)), \
  |  |   18|    508|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|    508|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (169:28): [True: 508, False: 0]
  ------------------
  170|      0|    PyObject_GC_UnTrack(m);
  171|    508|    FT_CLEAR_WEAKREFS(self, m->m_weakreflist);
  ------------------
  |  |   47|    508|    do {                                            \
  |  |   48|    508|        assert(Py_REFCNT(obj) == 0);                \
  |  |   49|    508|        if (weakref_list != NULL) {                 \
  |  |  ------------------
  |  |  |  Branch (49:13): [True: 0, False: 508]
  |  |  ------------------
  |  |   50|      0|            PyObject_ClearWeakRefs(obj);            \
  |  |   51|      0|        }                                           \
  |  |   52|    508|    } while (0)
  |  |  ------------------
  |  |  |  Branch (52:14): [Folded, False: 508]
  |  |  ------------------
  ------------------
  |  Branch (171:5): [True: 508, False: 0]
  ------------------
  172|       |    // We need to access ml_flags here rather than later.
  173|       |    // `m->m_ml` might have the same lifetime
  174|       |    // as `m_self` when it's dynamically allocated.
  175|    508|    int ml_flags = m->m_ml->ml_flags;
  176|       |    // Dereference class before m_self: PyCFunction_GET_CLASS accesses
  177|       |    // PyMethodDef m_ml, which could be kept alive by m_self
  178|    508|    Py_XDECREF(PyCFunction_GET_CLASS(m));
  ------------------
  |  |  524|    508|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    508|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    508|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  179|    508|    Py_XDECREF(m->m_self);
  ------------------
  |  |  524|    508|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    508|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    508|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  180|    508|    Py_XDECREF(m->m_module);
  ------------------
  |  |  524|    508|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    508|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    508|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  181|    508|    if (ml_flags & METH_METHOD) {
  ------------------
  |  |  133|    508|#define METH_METHOD 0x0200
  ------------------
  |  Branch (181:9): [True: 4, False: 504]
  ------------------
  182|      4|        assert(Py_IS_TYPE(self, &PyCMethod_Type));
  ------------------
  |  Branch (182:9): [True: 4, False: 0]
  ------------------
  183|      4|        _Py_FREELIST_FREE(pycmethodobject, m, PyObject_GC_Del);
  ------------------
  |  |   35|      4|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|      4|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   32|      4|#  define Py_pycmethodobject_MAXFREELIST 16
  |  |  ------------------
  ------------------
  184|      4|    }
  185|    504|    else {
  186|    504|        assert(Py_IS_TYPE(self, &PyCFunction_Type));
  ------------------
  |  Branch (186:9): [True: 504, False: 0]
  ------------------
  187|    504|        _Py_FREELIST_FREE(pycfunctionobject, m, PyObject_GC_Del);
  ------------------
  |  |   35|    504|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|    504|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    504|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|    504|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   31|    504|#  define Py_pycfunctionobject_MAXFREELIST 16
  |  |  ------------------
  ------------------
  188|    504|    }
  189|    508|}
methodobject.c:meth_hash:
  344|     92|{
  345|     92|    PyCFunctionObject *a = _PyCFunctionObject_CAST(self);
  ------------------
  |  |   17|     92|    (assert(PyCFunction_Check(func)), \
  |  |   18|     92|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|     92|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (345:28): [True: 92, False: 0]
  ------------------
  346|      0|    Py_hash_t x = PyObject_GenericHash(a->m_self);
  347|     92|    Py_hash_t y = Py_HashPointer((void*)(a->m_ml->ml_meth));
  348|     92|    x ^= y;
  349|     92|    if (x == -1) {
  ------------------
  |  Branch (349:9): [True: 0, False: 92]
  ------------------
  350|      0|        x = -2;
  351|      0|    }
  352|     92|    return x;
  353|     92|}
methodobject.c:meth_traverse:
  267|  2.12k|{
  268|  2.12k|    PyCFunctionObject *m = _PyCFunctionObject_CAST(self);
  ------------------
  |  |   17|  2.12k|    (assert(PyCFunction_Check(func)), \
  |  |   18|  2.12k|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|  2.12k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (268:28): [True: 2.12k, False: 0]
  ------------------
  269|  2.12k|    Py_VISIT(PyCFunction_GET_CLASS(m));
  ------------------
  |  |  194|  2.12k|    do {                                                                \
  |  |  195|  2.12k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 2.12k]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|  2.12k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 2.12k]
  |  |  ------------------
  ------------------
  270|  2.12k|    Py_VISIT(m->m_self);
  ------------------
  |  |  194|  2.12k|    do {                                                                \
  |  |  195|  2.12k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 2.04k, False: 80]
  |  |  ------------------
  |  |  196|  2.04k|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|  2.04k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.04k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|  2.04k|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 2.04k]
  |  |  ------------------
  |  |  198|  2.04k|                return vret;                                            \
  |  |  199|  2.04k|        }                                                               \
  |  |  200|  2.12k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 2.12k]
  |  |  ------------------
  ------------------
  271|  2.12k|    Py_VISIT(m->m_module);
  ------------------
  |  |  194|  2.12k|    do {                                                                \
  |  |  195|  2.12k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 1.54k, False: 588]
  |  |  ------------------
  |  |  196|  1.54k|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|  1.54k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.54k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|  1.54k|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 1.54k]
  |  |  ------------------
  |  |  198|  1.54k|                return vret;                                            \
  |  |  199|  1.54k|        }                                                               \
  |  |  200|  2.12k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 2.12k]
  |  |  ------------------
  ------------------
  272|  2.12k|    return 0;
  273|  2.12k|}
methodobject.c:meth_get__doc__:
  218|      6|{
  219|      6|    PyCFunctionObject *m = _PyCFunctionObject_CAST(self);
  ------------------
  |  |   17|      6|    (assert(PyCFunction_Check(func)), \
  |  |   18|      6|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (219:28): [True: 6, False: 0]
  ------------------
  220|      0|    return _PyType_GetDocFromInternalDoc(m->m_ml->ml_name, m->m_ml->ml_doc);
  221|      6|}
methodobject.c:meth_get__name__:
  225|      6|{
  226|      6|    PyCFunctionObject *m = _PyCFunctionObject_CAST(self);
  ------------------
  |  |   17|      6|    (assert(PyCFunction_Check(func)), \
  |  |   18|      6|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (226:28): [True: 6, False: 0]
  ------------------
  227|      0|    return PyUnicode_FromString(m->m_ml->ml_name);
  228|      6|}
methodobject.c:meth_get__qualname__:
  232|      6|{
  233|       |    /* If __self__ is a module or NULL, return m.__name__
  234|       |       (e.g. len.__qualname__ == 'len')
  235|       |
  236|       |       If __self__ is a type, return m.__self__.__qualname__ + '.' + m.__name__
  237|       |       (e.g. dict.fromkeys.__qualname__ == 'dict.fromkeys')
  238|       |
  239|       |       Otherwise return type(m.__self__).__qualname__ + '.' + m.__name__
  240|       |       (e.g. [].append.__qualname__ == 'list.append') */
  241|       |
  242|      6|    PyCFunctionObject *m = _PyCFunctionObject_CAST(self);
  ------------------
  |  |   17|      6|    (assert(PyCFunction_Check(func)), \
  |  |   18|      6|     _Py_CAST(PyCFunctionObject*, (func)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (242:28): [True: 6, False: 0]
  ------------------
  243|      6|    if (m->m_self == NULL || PyModule_Check(m->m_self)) {
  ------------------
  |  |   12|      6|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|      6|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (243:9): [True: 0, False: 6]
  ------------------
  244|      0|        return PyUnicode_FromString(m->m_ml->ml_name);
  245|      0|    }
  246|       |
  247|      6|    PyObject *type = PyType_Check(m->m_self) ? m->m_self : (PyObject*)Py_TYPE(m->m_self);
  ------------------
  |  |  766|      6|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 6, False: 0]
  |  |  ------------------
  ------------------
                  PyObject *type = PyType_Check(m->m_self) ? m->m_self : (PyObject*)Py_TYPE(m->m_self);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  248|       |
  249|      6|    PyObject *type_qualname = PyObject_GetAttr(type, &_Py_ID(__qualname__));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  250|      6|    if (type_qualname == NULL)
  ------------------
  |  Branch (250:9): [True: 0, False: 6]
  ------------------
  251|      0|        return NULL;
  252|       |
  253|      6|    if (!PyUnicode_Check(type_qualname)) {
  ------------------
  |  |  103|      6|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      6|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (253:9): [True: 0, False: 6]
  ------------------
  254|      0|        PyErr_SetString(PyExc_TypeError, "<method>.__class__."
  255|      0|                        "__qualname__ is not a unicode object");
  256|      0|        Py_XDECREF(type_qualname);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  257|      0|        return NULL;
  258|      0|    }
  259|       |
  260|      6|    PyObject *res = PyUnicode_FromFormat("%S.%s", type_qualname, m->m_ml->ml_name);
  261|      6|    Py_DECREF(type_qualname);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  262|      6|    return res;
  263|      6|}
methodobject.c:cfunction_vectorcall_FASTCALL:
  438|    156|{
  439|    156|    PyThreadState *tstate = _PyThreadState_GET();
  440|    156|    if (cfunction_check_kwargs(tstate, func, kwnames)) {
  ------------------
  |  Branch (440:9): [True: 0, False: 156]
  ------------------
  441|      0|        return NULL;
  442|      0|    }
  443|    156|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    156|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  444|    156|    PyCFunctionFast meth = (PyCFunctionFast)
  445|    156|                            cfunction_enter_call(tstate, func);
  446|    156|    if (meth == NULL) {
  ------------------
  |  Branch (446:9): [True: 0, False: 156]
  ------------------
  447|      0|        return NULL;
  448|      0|    }
  449|    156|    PyObject *result = meth(PyCFunction_GET_SELF(func), args, nargs);
  ------------------
  |  |   52|    156|#define PyCFunction_GET_SELF(func) PyCFunction_GET_SELF(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    156|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    156|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  450|    156|    _Py_LeaveRecursiveCallTstate(tstate);
  451|    156|    return result;
  452|    156|}
methodobject.c:cfunction_check_kwargs:
  408|  1.13k|{
  409|  1.13k|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (409:5): [True: 1.13k, False: 0]
  ------------------
  410|  1.13k|    assert(PyCFunction_Check(func));
  ------------------
  |  Branch (410:5): [True: 1.13k, False: 0]
  ------------------
  411|  1.13k|    if (kwnames && PyTuple_GET_SIZE(kwnames)) {
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (27:30): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (411:9): [True: 0, False: 1.13k]
  ------------------
  412|      0|        PyObject *funcstr = _PyObject_FunctionStr(func);
  413|      0|        if (funcstr != NULL) {
  ------------------
  |  Branch (413:13): [True: 0, False: 0]
  ------------------
  414|      0|            _PyErr_Format(tstate, PyExc_TypeError,
  415|      0|                         "%U takes no keyword arguments", funcstr);
  416|      0|            Py_DECREF(funcstr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  417|      0|        }
  418|      0|        return -1;
  419|      0|    }
  420|  1.13k|    return 0;
  421|  1.13k|}
methodobject.c:cfunction_enter_call:
  427|  1.62k|{
  428|  1.62k|    if (_Py_EnterRecursiveCallTstate(tstate, " while calling a Python object")) {
  ------------------
  |  Branch (428:9): [True: 0, False: 1.62k]
  ------------------
  429|      0|        return NULL;
  430|      0|    }
  431|  1.62k|    return (funcptr)PyCFunction_GET_FUNCTION(func);
  ------------------
  |  |   43|  1.62k|#define PyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|  1.62k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.62k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  432|  1.62k|}
methodobject.c:cfunction_vectorcall_FASTCALL_KEYWORDS:
  457|    498|{
  458|    498|    PyThreadState *tstate = _PyThreadState_GET();
  459|    498|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    498|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  460|    498|    PyCFunctionFastWithKeywords meth = (PyCFunctionFastWithKeywords)
  461|    498|                                        cfunction_enter_call(tstate, func);
  462|    498|    if (meth == NULL) {
  ------------------
  |  Branch (462:9): [True: 0, False: 498]
  ------------------
  463|      0|        return NULL;
  464|      0|    }
  465|    498|    PyObject *result = meth(PyCFunction_GET_SELF(func), args, nargs, kwnames);
  ------------------
  |  |   52|    498|#define PyCFunction_GET_SELF(func) PyCFunction_GET_SELF(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    498|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    498|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  466|    498|    _Py_LeaveRecursiveCallTstate(tstate);
  467|    498|    return result;
  468|    498|}
methodobject.c:cfunction_vectorcall_NOARGS:
  489|    884|{
  490|    884|    PyThreadState *tstate = _PyThreadState_GET();
  491|    884|    if (cfunction_check_kwargs(tstate, func, kwnames)) {
  ------------------
  |  Branch (491:9): [True: 0, False: 884]
  ------------------
  492|      0|        return NULL;
  493|      0|    }
  494|    884|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    884|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  495|    884|    if (nargs != 0) {
  ------------------
  |  Branch (495:9): [True: 0, False: 884]
  ------------------
  496|      0|        PyObject *funcstr = _PyObject_FunctionStr(func);
  497|      0|        if (funcstr != NULL) {
  ------------------
  |  Branch (497:13): [True: 0, False: 0]
  ------------------
  498|      0|            _PyErr_Format(tstate, PyExc_TypeError,
  499|      0|                "%U takes no arguments (%zd given)", funcstr, nargs);
  500|      0|            Py_DECREF(funcstr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  501|      0|        }
  502|      0|        return NULL;
  503|      0|    }
  504|    884|    PyCFunction meth = (PyCFunction)cfunction_enter_call(tstate, func);
  505|    884|    if (meth == NULL) {
  ------------------
  |  Branch (505:9): [True: 0, False: 884]
  ------------------
  506|      0|        return NULL;
  507|      0|    }
  508|    884|    PyObject *result = _PyCFunction_TrampolineCall(
  ------------------
  |  |  997|    884|    (meth)((self), (args))
  ------------------
  509|    884|        meth, PyCFunction_GET_SELF(func), NULL);
  510|    884|    _Py_LeaveRecursiveCallTstate(tstate);
  511|    884|    return result;
  512|    884|}
methodobject.c:cfunction_vectorcall_O:
  517|     90|{
  518|     90|    PyThreadState *tstate = _PyThreadState_GET();
  519|     90|    if (cfunction_check_kwargs(tstate, func, kwnames)) {
  ------------------
  |  Branch (519:9): [True: 0, False: 90]
  ------------------
  520|      0|        return NULL;
  521|      0|    }
  522|     90|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|     90|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  523|     90|    if (nargs != 1) {
  ------------------
  |  Branch (523:9): [True: 0, False: 90]
  ------------------
  524|      0|        PyObject *funcstr = _PyObject_FunctionStr(func);
  525|      0|        if (funcstr != NULL) {
  ------------------
  |  Branch (525:13): [True: 0, False: 0]
  ------------------
  526|      0|            _PyErr_Format(tstate, PyExc_TypeError,
  527|      0|                "%U takes exactly one argument (%zd given)", funcstr, nargs);
  528|      0|            Py_DECREF(funcstr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  529|      0|        }
  530|      0|        return NULL;
  531|      0|    }
  532|     90|    PyCFunction meth = (PyCFunction)cfunction_enter_call(tstate, func);
  533|     90|    if (meth == NULL) {
  ------------------
  |  Branch (533:9): [True: 0, False: 90]
  ------------------
  534|      0|        return NULL;
  535|      0|    }
  536|     90|    PyObject *result = _PyCFunction_TrampolineCall(
  ------------------
  |  |  997|     90|    (meth)((self), (args))
  ------------------
  537|     90|        meth, PyCFunction_GET_SELF(func), args[0]);
  538|     90|    _Py_LeaveRecursiveCallTstate(tstate);
  539|     90|    return result;
  540|     90|}
methodobject.c:cfunction_call:
  545|     82|{
  546|     82|    assert(kwargs == NULL || PyDict_Check(kwargs));
  ------------------
  |  Branch (546:5): [True: 82, False: 0]
  |  Branch (546:5): [True: 0, False: 0]
  ------------------
  547|       |
  548|     82|    PyThreadState *tstate = _PyThreadState_GET();
  549|     82|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (549:5): [True: 82, False: 0]
  ------------------
  550|       |
  551|     82|    int flags = PyCFunction_GET_FLAGS(func);
  ------------------
  |  |   57|     82|#define PyCFunction_GET_FLAGS(func) PyCFunction_GET_FLAGS(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  552|     82|    if (!(flags & METH_VARARGS)) {
  ------------------
  |  |   95|     82|#define METH_VARARGS  0x0001
  ------------------
  |  Branch (552:9): [True: 0, False: 82]
  ------------------
  553|       |        /* If this is not a METH_VARARGS function, delegate to vectorcall */
  554|      0|        return PyVectorcall_Call(func, args, kwargs);
  555|      0|    }
  556|       |
  557|       |    /* For METH_VARARGS, we cannot use vectorcall as the vectorcall pointer
  558|       |     * is NULL. This is intentional, since vectorcall would be slower. */
  559|     82|    PyCFunction meth = PyCFunction_GET_FUNCTION(func);
  ------------------
  |  |   43|     82|#define PyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  560|     82|    PyObject *self = PyCFunction_GET_SELF(func);
  ------------------
  |  |   52|     82|#define PyCFunction_GET_SELF(func) PyCFunction_GET_SELF(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  561|       |
  562|     82|    PyObject *result;
  563|     82|    if (flags & METH_KEYWORDS) {
  ------------------
  |  |   96|     82|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (563:9): [True: 0, False: 82]
  ------------------
  564|      0|        result = _PyCFunctionWithKeywords_TrampolineCall(
  ------------------
  |  |  999|      0|    (meth)((self), (args), (kw))
  ------------------
  565|      0|            *_PyCFunctionWithKeywords_CAST(meth),
  566|      0|            self, args, kwargs);
  567|      0|    }
  568|     82|    else {
  569|     82|        if (kwargs != NULL && PyDict_GET_SIZE(kwargs) != 0) {
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (569:13): [True: 0, False: 82]
  |  Branch (569:31): [True: 0, False: 0]
  ------------------
  570|      0|            _PyErr_Format(tstate, PyExc_TypeError,
  571|      0|                          "%.200s() takes no keyword arguments",
  572|      0|                          ((PyCFunctionObject*)func)->m_ml->ml_name);
  573|      0|            return NULL;
  574|      0|        }
  575|     82|        result = _PyCFunction_TrampolineCall(meth, self, args);
  ------------------
  |  |  997|     82|    (meth)((self), (args))
  ------------------
  576|     82|    }
  577|     82|    return _Py_CheckFunctionResult(tstate, func, result, NULL);
  578|     82|}

mi_heap_get_default:
  202|      2|mi_heap_t* mi_heap_get_default(void) {
  203|      2|  mi_thread_init();
  204|      2|  return mi_prim_get_default_heap();
  205|      2|}
_mi_heap_random_next:
  260|      6|uintptr_t _mi_heap_random_next(mi_heap_t* heap) {
  261|      6|  return _mi_random_next(&heap->random);
  262|      6|}

_mi_thread_id:
  121|      4|mi_threadid_t _mi_thread_id(void) mi_attr_noexcept {
  122|      4|  return _mi_prim_thread_id();
  123|      4|}
mi_thread_init:
  389|      4|{
  390|       |  // ensure our process has started already
  391|      4|  mi_process_init();
  392|       |
  393|       |  // initialize the thread local default heap
  394|       |  // (this will call `_mi_heap_set_default_direct` and thus set the
  395|       |  //  fiber/pthread key to a non-zero value, ensuring `_mi_thread_done` is called)
  396|      4|  if (_mi_heap_init()) return;  // returns true if already initialized
  ------------------
  |  Branch (396:7): [True: 4, False: 0]
  ------------------
  397|       |
  398|      0|  _mi_stat_increase(&_mi_stats_main.threads, 1);
  399|      0|  mi_atomic_increment_relaxed(&thread_count);
  ------------------
  |  |   78|      0|#define mi_atomic_increment_relaxed(p)           mi_atomic_add_relaxed(p,(uintptr_t)1)
  |  |  ------------------
  |  |  |  |   71|      0|#define mi_atomic_add_relaxed(p,x)               mi_atomic(fetch_add_explicit)(p,x,mi_memory_order(relaxed))
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      0|#define  mi_atomic(name)        atomic_##name
  |  |  |  |  ------------------
  |  |  |  |               #define mi_atomic_add_relaxed(p,x)               mi_atomic(fetch_add_explicit)(p,x,mi_memory_order(relaxed))
  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      0|#define  mi_memory_order(name)  memory_order_##name
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  400|       |  //_mi_verbose_message("thread init: 0x%zx\n", _mi_thread_id());
  401|      0|}
_mi_heap_set_default_direct:
  431|      2|void _mi_heap_set_default_direct(mi_heap_t* heap)  {
  432|      2|  mi_assert_internal(heap != NULL);
  433|       |  #if defined(MI_TLS_SLOT)
  434|       |  mi_prim_tls_slot_set(MI_TLS_SLOT,heap);
  435|       |  #elif defined(MI_TLS_PTHREAD_SLOT_OFS)
  436|       |  *mi_tls_pthread_heap_slot() = heap;
  437|       |  #elif defined(MI_TLS_PTHREAD)
  438|       |  // we use _mi_heap_default_key
  439|       |  #else
  440|      2|  _mi_heap_default = heap;
  441|      2|  #endif
  442|       |
  443|       |  // ensure the default heap is passed to `_mi_thread_done`
  444|       |  // setting to a non-NULL value also ensures `mi_thread_done` is called.
  445|      2|  _mi_prim_thread_associate_default_heap(heap);
  446|      2|}
_mi_preloading:
  458|     52|bool mi_decl_noinline _mi_preloading(void) {
  459|     52|  return os_preloading;
  460|     52|}
mi_process_init:
  543|      6|void mi_process_init(void) mi_attr_noexcept {
  544|       |  // ensure we are called once
  545|      6|  static mi_atomic_once_t process_init;
  546|      6|        #if _MSC_VER < 1920
  547|      6|        mi_heap_main_init(); // vs2017 can dynamically re-initialize _mi_heap_main
  548|      6|        #endif
  549|      6|  if (!mi_atomic_once(&process_init)) return;
  ------------------
  |  Branch (549:7): [True: 4, False: 2]
  ------------------
  550|      2|  _mi_process_is_initialized = true;
  551|      2|  _mi_verbose_message("process init: 0x%zx\n", _mi_thread_id());
  552|      2|  mi_process_setup_auto_thread_done();
  553|       |
  554|      2|  mi_detect_cpu_features();
  555|      2|  _mi_os_init();
  556|      2|  mi_heap_main_init();
  557|       |  #if MI_DEBUG
  558|       |  _mi_verbose_message("debug level : %d\n", MI_DEBUG);
  559|       |  #endif
  560|      2|  _mi_verbose_message("secure level: %d\n", MI_SECURE);
  ------------------
  |  |  101|      2|#define MI_SECURE 0
  ------------------
  561|      2|  _mi_verbose_message("mem tracking: %s\n", MI_TRACK_TOOL);
  ------------------
  |  |   98|      2|#define MI_TRACK_TOOL         "none"
  ------------------
  562|       |  #if MI_TSAN
  563|       |  _mi_verbose_message("thread sanitizer enabled\n");
  564|       |  #endif
  565|      2|  mi_thread_init();
  566|       |
  567|       |  #if defined(_WIN32)
  568|       |  // On windows, when building as a static lib the FLS cleanup happens to early for the main thread.
  569|       |  // To avoid this, set the FLS value for the main thread to NULL so the fls cleanup
  570|       |  // will not call _mi_thread_done on the (still executing) main thread. See issue #508.
  571|       |  _mi_prim_thread_associate_default_heap(NULL);
  572|       |  #endif
  573|       |
  574|      2|  mi_stats_reset();  // only call stat reset *after* thread init (or the heap tld == NULL)
  575|      2|  mi_track_init();
  576|       |
  577|      2|  if (mi_option_is_enabled(mi_option_reserve_huge_os_pages)) {
  ------------------
  |  Branch (577:7): [True: 0, False: 2]
  ------------------
  578|      0|    size_t pages = mi_option_get_clamp(mi_option_reserve_huge_os_pages, 0, 128*1024);
  579|      0|    long reserve_at = mi_option_get(mi_option_reserve_huge_os_pages_at);
  580|      0|    if (reserve_at != -1) {
  ------------------
  |  Branch (580:9): [True: 0, False: 0]
  ------------------
  581|      0|      mi_reserve_huge_os_pages_at(pages, reserve_at, pages*500);
  582|      0|    } else {
  583|      0|      mi_reserve_huge_os_pages_interleave(pages, 0, pages*500);
  584|      0|    }
  585|      0|  }
  586|      2|  if (mi_option_is_enabled(mi_option_reserve_os_memory)) {
  ------------------
  |  Branch (586:7): [True: 0, False: 2]
  ------------------
  587|      0|    long ksize = mi_option_get(mi_option_reserve_os_memory);
  588|      0|    if (ksize > 0) {
  ------------------
  |  Branch (588:9): [True: 0, False: 0]
  ------------------
  589|      0|      mi_reserve_os_memory((size_t)ksize*MI_KiB, true /* commit? */, true /* allow large pages? */);
  ------------------
  |  |  192|      0|#define MI_KiB     (MI_ZU(1024))
  |  |  ------------------
  |  |  |  |  182|      0|# define MI_ZU(x)  x##UL
  |  |  ------------------
  ------------------
  590|      0|    }
  591|      0|  }
  592|      2|}
obmalloc.c:_mi_process_init:
  681|      2|  static void __attribute__((constructor)) _mi_process_init(void) {
  682|      2|    mi_process_load();
  683|      2|  }
obmalloc.c:mi_heap_main_init:
  159|     10|static void mi_heap_main_init(void) {
  160|     10|  if (_mi_heap_main.cookie == 0) {
  ------------------
  |  Branch (160:7): [True: 2, False: 8]
  ------------------
  161|      2|    _mi_heap_main.thread_id = _mi_thread_id();
  162|      2|    _mi_heap_main.cookie = 1;
  163|       |    #if defined(_WIN32) && !defined(MI_SHARED_LIB)
  164|       |      _mi_random_init_weak(&_mi_heap_main.random);    // prevent allocation failure during bcrypt dll initialization with static linking
  165|       |    #else
  166|      2|      _mi_random_init(&_mi_heap_main.random);
  167|      2|    #endif
  168|      2|    _mi_heap_main.cookie  = _mi_heap_random_next(&_mi_heap_main);
  169|      2|    _mi_heap_main.keys[0] = _mi_heap_random_next(&_mi_heap_main);
  170|      2|    _mi_heap_main.keys[1] = _mi_heap_random_next(&_mi_heap_main);
  171|      2|  }
  172|     10|}
obmalloc.c:_mi_heap_init:
  268|      4|static bool _mi_heap_init(void) {
  269|      4|  if (mi_heap_is_initialized(mi_prim_get_default_heap())) return true;
  ------------------
  |  Branch (269:7): [True: 4, False: 0]
  ------------------
  270|      0|  if (_mi_is_main_thread()) {
  ------------------
  |  Branch (270:7): [True: 0, False: 0]
  ------------------
  271|       |    // mi_assert_internal(_mi_heap_main.thread_id != 0);  // can happen on freeBSD where alloc is called before any initialization
  272|       |    // the main heap is statically allocated
  273|      0|    mi_heap_main_init();
  274|      0|    _mi_heap_set_default_direct(&_mi_heap_main);
  275|       |    //mi_assert_internal(_mi_heap_default->tld->heap_backing == mi_prim_get_default_heap());
  276|      0|  }
  277|      0|  else {
  278|       |    // use `_mi_os_alloc` to allocate directly from the OS
  279|      0|    mi_thread_data_t* td = mi_thread_data_zalloc();
  280|      0|    if (td == NULL) return false;
  ------------------
  |  Branch (280:9): [True: 0, False: 0]
  ------------------
  281|       |
  282|      0|    _mi_tld_init(&td->tld, &td->heap);
  283|      0|    _mi_heap_init_ex(&td->heap, &td->tld, _mi_arena_id_none(), false, 0);
  284|      0|    _mi_heap_set_default_direct(&td->heap);
  285|      0|  }
  286|      0|  return false;
  287|      0|}
obmalloc.c:mi_process_setup_auto_thread_done:
  368|      4|static void mi_process_setup_auto_thread_done(void) {
  369|      4|  static bool tls_initialized = false; // fine if it races
  370|      4|  if (tls_initialized) return;
  ------------------
  |  Branch (370:7): [True: 2, False: 2]
  ------------------
  371|      2|  tls_initialized = true;
  372|      2|  _mi_prim_thread_init_auto_done();
  373|      2|  _mi_heap_set_default_direct(&_mi_heap_main);
  374|      2|}
obmalloc.c:mi_detect_cpu_features:
  537|      2|static void mi_detect_cpu_features(void) {
  538|       |  // nothing
  539|      2|}
obmalloc.c:mi_process_load:
  499|      2|static void mi_process_load(void) {
  500|      2|  mi_heap_main_init();
  501|       |  #if defined(__APPLE__) || defined(MI_TLS_RECURSE_GUARD)
  502|       |  volatile mi_heap_t* dummy = _mi_heap_default; // access TLS to allocate it before setting tls_initialized to true;
  503|       |  if (dummy == NULL) return;                    // use dummy or otherwise the access may get optimized away (issue #697)
  504|       |  #endif
  505|      2|  os_preloading = false;
  506|      2|  mi_assert_internal(_mi_is_main_thread());
  507|      2|  #if !(defined(_WIN32) && defined(MI_SHARED_LIB))  // use Dll process detach (see below) instead of atexit (issue #521)
  508|      2|  atexit(&mi_process_done);
  509|      2|  #endif
  510|      2|  _mi_options_init();
  511|      2|  mi_process_setup_auto_thread_done();
  512|      2|  mi_process_init();
  513|      2|  if (mi_redirected) _mi_verbose_message("malloc is redirected.\n");
  ------------------
  |  Branch (513:7): [True: 0, False: 2]
  ------------------
  514|       |
  515|       |  // show message from the redirector (if present)
  516|      2|  const char* msg = NULL;
  517|      2|  mi_allocator_init(&msg);
  518|      2|  if (msg != NULL && (mi_option_is_enabled(mi_option_verbose) || mi_option_is_enabled(mi_option_show_errors))) {
  ------------------
  |  Branch (518:7): [True: 0, False: 2]
  |  Branch (518:23): [True: 0, False: 0]
  |  Branch (518:66): [True: 0, False: 0]
  ------------------
  519|      0|    _mi_fputs(NULL,NULL,NULL,msg);
  520|      0|  }
  521|       |
  522|       |  // reseed random
  523|      2|  _mi_random_reinit_if_weak(&_mi_heap_main.random);
  524|      2|}
obmalloc.c:mi_allocator_init:
  489|      2|static bool mi_allocator_init(const char** message) {
  490|      2|  if (message != NULL) *message = NULL;
  ------------------
  |  Branch (490:7): [True: 2, False: 0]
  ------------------
  491|       |  return true;
  492|      2|}

_mi_options_init:
   97|      2|void _mi_options_init(void) {
   98|       |  // called on process load; should not be called before the CRT is initialized!
   99|       |  // (e.g. do not call this from process_init as that may run before CRT initialization)
  100|      2|  mi_add_stderr_output(); // now it safe to use stderr for output
  101|     54|  for(int i = 0; i < _mi_option_last; i++ ) {
  ------------------
  |  Branch (101:18): [True: 52, False: 2]
  ------------------
  102|     52|    mi_option_t option = (mi_option_t)i;
  103|     52|    long l = mi_option_get(option); MI_UNUSED(l); // initialize
  ------------------
  |  |  246|     52|#define MI_UNUSED(x)     (void)(x)
  ------------------
  104|       |    // if (option != mi_option_verbose)
  105|     52|    {
  106|     52|      mi_option_desc_t* desc = &options[option];
  107|     52|      _mi_verbose_message("option '%s': %ld\n", desc->name, desc->value);
  108|     52|    }
  109|     52|  }
  110|      2|  mi_max_error_count = mi_option_get(mi_option_max_errors);
  111|      2|  mi_max_warning_count = mi_option_get(mi_option_max_warnings);
  112|      2|}
mi_option_get:
  114|    118|mi_decl_nodiscard long mi_option_get(mi_option_t option) {
  115|    118|  mi_assert(option >= 0 && option < _mi_option_last);
  116|    118|  if (option < 0 || option >= _mi_option_last) return 0;
  ------------------
  |  Branch (116:7): [True: 0, False: 118]
  |  Branch (116:21): [True: 0, False: 118]
  ------------------
  117|    118|  mi_option_desc_t* desc = &options[option];
  118|    118|  mi_assert(desc->option == option);  // index should match the option
  119|    118|  if mi_unlikely(desc->init == UNINIT) {
  ------------------
  |  |  204|    118|#define mi_unlikely(x)     (__builtin_expect(!!(x),false))
  |  |  ------------------
  |  |  |  Branch (204:29): [True: 52, False: 66]
  |  |  ------------------
  ------------------
  120|     52|    mi_option_init(desc);
  121|     52|  }
  122|    118|  return desc->value;
  123|    118|}
mi_option_is_enabled:
  154|     62|mi_decl_nodiscard bool mi_option_is_enabled(mi_option_t option) {
  155|     62|  return (mi_option_get(option) != 0);
  156|     62|}
_mi_verbose_message:
  350|     58|void _mi_verbose_message(const char* fmt, ...) {
  351|     58|  if (!mi_option_is_enabled(mi_option_verbose)) return;
  ------------------
  |  Branch (351:7): [True: 58, False: 0]
  ------------------
  352|      0|  va_list args;
  353|      0|  va_start(args,fmt);
  354|      0|  mi_vfprintf(NULL, NULL, "mimalloc: ", fmt, args);
  355|       |  va_end(args);
  356|      0|}
_mi_toupper:
  437|  4.35k|char _mi_toupper(char c) {
  438|  4.35k|  if (c >= 'a' && c <= 'z') return (c - 'a' + 'A');
  ------------------
  |  Branch (438:7): [True: 2.17k, False: 2.17k]
  |  Branch (438:19): [True: 2.17k, False: 0]
  ------------------
  439|  2.17k|                       else return c;
  440|  4.35k|}
_mi_strnicmp:
  442|  2.11k|int _mi_strnicmp(const char* s, const char* t, size_t n) {
  443|  2.11k|  if (n == 0) return 0;
  ------------------
  |  Branch (443:7): [True: 0, False: 2.11k]
  ------------------
  444|  2.17k|  for (; *s != 0 && *t != 0 && n > 0; s++, t++, n--) {
  ------------------
  |  Branch (444:10): [True: 2.17k, False: 0]
  |  Branch (444:21): [True: 2.17k, False: 0]
  |  Branch (444:32): [True: 2.17k, False: 0]
  ------------------
  445|  2.17k|    if (_mi_toupper(*s) != _mi_toupper(*t)) break;
  ------------------
  |  Branch (445:9): [True: 2.11k, False: 64]
  ------------------
  446|  2.17k|  }
  447|  2.11k|  return (n == 0 ? 0 : *s - *t);
  ------------------
  |  Branch (447:11): [True: 0, False: 2.11k]
  ------------------
  448|  2.11k|}
_mi_strlcpy:
  450|    128|void _mi_strlcpy(char* dest, const char* src, size_t dest_size) {
  451|    128|  if (dest==NULL || src==NULL || dest_size == 0) return;
  ------------------
  |  Branch (451:7): [True: 0, False: 128]
  |  Branch (451:21): [True: 0, False: 128]
  |  Branch (451:34): [True: 0, False: 128]
  ------------------
  452|       |  // copy until end of src, or when dest is (almost) full
  453|  1.72k|  while (*src != 0 && dest_size > 1) {
  ------------------
  |  Branch (453:10): [True: 1.59k, False: 128]
  |  Branch (453:23): [True: 1.59k, False: 0]
  ------------------
  454|  1.59k|    *dest++ = *src++;
  455|  1.59k|    dest_size--;
  456|  1.59k|  }
  457|       |  // always zero terminate
  458|    128|  *dest = 0;
  459|    128|}
_mi_strlcat:
  461|     64|void _mi_strlcat(char* dest, const char* src, size_t dest_size) {
  462|     64|  if (dest==NULL || src==NULL || dest_size == 0) return;
  ------------------
  |  Branch (462:7): [True: 0, False: 64]
  |  Branch (462:21): [True: 0, False: 64]
  |  Branch (462:34): [True: 0, False: 64]
  ------------------
  463|       |  // find end of string in the dest buffer
  464|    640|  while (*dest != 0 && dest_size > 1) {
  ------------------
  |  Branch (464:10): [True: 576, False: 64]
  |  Branch (464:24): [True: 576, False: 0]
  ------------------
  465|    576|    dest++;
  466|    576|    dest_size--;
  467|    576|  }
  468|       |  // and catenate
  469|     64|  _mi_strlcpy(dest, src, dest_size);
  470|     64|}
_mi_strlen:
  472|     64|size_t _mi_strlen(const char* s) {
  473|     64|  if (s==NULL) return 0;
  ------------------
  |  Branch (473:7): [True: 0, False: 64]
  ------------------
  474|     64|  size_t len = 0;
  475|  1.66k|  while(s[len] != 0) { len++; }
  ------------------
  |  Branch (475:9): [True: 1.59k, False: 64]
  ------------------
  476|     64|  return len;
  477|     64|}
obmalloc.c:mi_out_stderr:
  174|      2|static void mi_cdecl mi_out_stderr(const char* msg, void* arg) {
  175|      2|  MI_UNUSED(arg);
  ------------------
  |  |  246|      2|#define MI_UNUSED(x)     (void)(x)
  ------------------
  176|      2|  if (msg != NULL && msg[0] != 0) {
  ------------------
  |  Branch (176:7): [True: 2, False: 0]
  |  Branch (176:22): [True: 0, False: 2]
  ------------------
  177|      0|    _mi_prim_out_stderr(msg);
  178|      0|  }
  179|      2|}
obmalloc.c:mi_out_buf_flush:
  207|      2|static void mi_out_buf_flush(mi_output_fun* out, bool no_more_buf, void* arg) {
  208|      2|  if (out==NULL) return;
  ------------------
  |  Branch (208:7): [True: 0, False: 2]
  ------------------
  209|       |  // claim (if `no_more_buf == true`, no more output will be added after this point)
  210|      2|  size_t count = mi_atomic_add_acq_rel(&out_len, (no_more_buf ? MI_MAX_DELAY_OUTPUT : 1));
  ------------------
  |  |   73|      4|#define mi_atomic_add_acq_rel(p,x)               mi_atomic(fetch_add_explicit)(p,x,mi_memory_order(acq_rel))
  |  |  ------------------
  |  |  |  |   42|      2|#define  mi_atomic(name)        atomic_##name
  |  |  ------------------
  |  |               #define mi_atomic_add_acq_rel(p,x)               mi_atomic(fetch_add_explicit)(p,x,mi_memory_order(acq_rel))
  |  |  ------------------
  |  |  |  |   43|      2|#define  mi_memory_order(name)  memory_order_##name
  |  |  ------------------
  |  |  |  Branch (73:82): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  211|       |  // and output the current contents
  212|      2|  if (count>MI_MAX_DELAY_OUTPUT) count = MI_MAX_DELAY_OUTPUT;
  ------------------
  |  |  186|      2|#define MI_MAX_DELAY_OUTPUT ((size_t)(32*1024))
  ------------------
                if (count>MI_MAX_DELAY_OUTPUT) count = MI_MAX_DELAY_OUTPUT;
  ------------------
  |  |  186|      0|#define MI_MAX_DELAY_OUTPUT ((size_t)(32*1024))
  ------------------
  |  Branch (212:7): [True: 0, False: 2]
  ------------------
  213|      2|  out_buf[count] = 0;
  214|      2|  out(out_buf,arg);
  215|      2|  if (!no_more_buf) {
  ------------------
  |  Branch (215:7): [True: 2, False: 0]
  ------------------
  216|      2|    out_buf[count] = '\n'; // if continue with the buffer, insert a newline
  217|      2|  }
  218|      2|}
obmalloc.c:mi_add_stderr_output:
  252|      2|static void mi_add_stderr_output(void) {
  253|      2|  mi_assert_internal(mi_out_default == NULL);
  254|      2|  mi_out_buf_flush(&mi_out_stderr, false, NULL); // flush current contents to stderr
  255|      2|  mi_out_default = &mi_out_buf_stderr;           // and add stderr to the delayed output
  256|      2|}
obmalloc.c:mi_option_init:
  505|     52|static void mi_option_init(mi_option_desc_t* desc) {
  506|       |  // Read option value from the environment
  507|     52|  char s[64 + 1];
  508|     52|  char buf[64+1];
  509|     52|  _mi_strlcpy(buf, "mimalloc_", sizeof(buf));
  510|     52|  _mi_strlcat(buf, desc->name, sizeof(buf));
  511|     52|  bool found = mi_getenv(buf, s, sizeof(s));
  512|     52|  if (!found && desc->legacy_name != NULL) {
  ------------------
  |  Branch (512:7): [True: 52, False: 0]
  |  Branch (512:17): [True: 12, False: 40]
  ------------------
  513|     12|    _mi_strlcpy(buf, "mimalloc_", sizeof(buf));
  514|     12|    _mi_strlcat(buf, desc->legacy_name, sizeof(buf));
  515|     12|    found = mi_getenv(buf, s, sizeof(s));
  516|     12|    if (found) {
  ------------------
  |  Branch (516:9): [True: 0, False: 12]
  ------------------
  517|      0|      _mi_warning_message("environment option \"mimalloc_%s\" is deprecated -- use \"mimalloc_%s\" instead.\n", desc->legacy_name, desc->name);
  518|      0|    }
  519|     12|  }
  520|       |
  521|     52|  if (found) {
  ------------------
  |  Branch (521:7): [True: 0, False: 52]
  ------------------
  522|      0|    size_t len = _mi_strnlen(s, sizeof(buf) - 1);
  523|      0|    for (size_t i = 0; i < len; i++) {
  ------------------
  |  Branch (523:24): [True: 0, False: 0]
  ------------------
  524|      0|      buf[i] = _mi_toupper(s[i]);
  525|      0|    }
  526|      0|    buf[len] = 0;
  527|      0|    if (buf[0] == 0 || strstr("1;TRUE;YES;ON", buf) != NULL) {
  ------------------
  |  Branch (527:9): [True: 0, False: 0]
  |  Branch (527:24): [True: 0, False: 0]
  ------------------
  528|      0|      desc->value = 1;
  529|      0|      desc->init = INITIALIZED;
  530|      0|    }
  531|      0|    else if (strstr("0;FALSE;NO;OFF", buf) != NULL) {
  ------------------
  |  Branch (531:14): [True: 0, False: 0]
  ------------------
  532|      0|      desc->value = 0;
  533|      0|      desc->init = INITIALIZED;
  534|      0|    }
  535|      0|    else {
  536|      0|      char* end = buf;
  537|      0|      long value = strtol(buf, &end, 10);
  538|      0|      if (desc->option == mi_option_reserve_os_memory || desc->option == mi_option_arena_reserve) {
  ------------------
  |  Branch (538:11): [True: 0, False: 0]
  |  Branch (538:58): [True: 0, False: 0]
  ------------------
  539|       |        // this option is interpreted in KiB to prevent overflow of `long`
  540|      0|        if (*end == 'K') { end++; }
  ------------------
  |  Branch (540:13): [True: 0, False: 0]
  ------------------
  541|      0|        else if (*end == 'M') { value *= MI_KiB; end++; }
  ------------------
  |  |  192|      0|#define MI_KiB     (MI_ZU(1024))
  |  |  ------------------
  |  |  |  |  182|      0|# define MI_ZU(x)  x##UL
  |  |  ------------------
  ------------------
  |  Branch (541:18): [True: 0, False: 0]
  ------------------
  542|      0|        else if (*end == 'G') { value *= MI_MiB; end++; }
  ------------------
  |  |  193|      0|#define MI_MiB     (MI_KiB*MI_KiB)
  |  |  ------------------
  |  |  |  |  192|      0|#define MI_KiB     (MI_ZU(1024))
  |  |  |  |  ------------------
  |  |  |  |  |  |  182|      0|# define MI_ZU(x)  x##UL
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MI_MiB     (MI_KiB*MI_KiB)
  |  |  ------------------
  |  |  |  |  192|      0|#define MI_KiB     (MI_ZU(1024))
  |  |  |  |  ------------------
  |  |  |  |  |  |  182|      0|# define MI_ZU(x)  x##UL
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (542:18): [True: 0, False: 0]
  ------------------
  543|      0|        else { value = (value + MI_KiB - 1) / MI_KiB; }
  ------------------
  |  |  192|      0|#define MI_KiB     (MI_ZU(1024))
  |  |  ------------------
  |  |  |  |  182|      0|# define MI_ZU(x)  x##UL
  |  |  ------------------
  ------------------
                      else { value = (value + MI_KiB - 1) / MI_KiB; }
  ------------------
  |  |  192|      0|#define MI_KiB     (MI_ZU(1024))
  |  |  ------------------
  |  |  |  |  182|      0|# define MI_ZU(x)  x##UL
  |  |  ------------------
  ------------------
  544|      0|        if (end[0] == 'I' && end[1] == 'B') { end += 2; }
  ------------------
  |  Branch (544:13): [True: 0, False: 0]
  |  Branch (544:30): [True: 0, False: 0]
  ------------------
  545|      0|        else if (*end == 'B') { end++; }
  ------------------
  |  Branch (545:18): [True: 0, False: 0]
  ------------------
  546|      0|      }
  547|      0|      if (*end == 0) {
  ------------------
  |  Branch (547:11): [True: 0, False: 0]
  ------------------
  548|      0|        desc->value = value;
  549|      0|        desc->init = INITIALIZED;
  550|      0|      }
  551|      0|      else {
  552|       |        // set `init` first to avoid recursion through _mi_warning_message on mimalloc_verbose.
  553|      0|        desc->init = DEFAULTED;
  554|      0|        if (desc->option == mi_option_verbose && desc->value == 0) {
  ------------------
  |  Branch (554:13): [True: 0, False: 0]
  |  Branch (554:50): [True: 0, False: 0]
  ------------------
  555|       |          // if the 'mimalloc_verbose' env var has a bogus value we'd never know
  556|       |          // (since the value defaults to 'off') so in that case briefly enable verbose
  557|      0|          desc->value = 1;
  558|      0|          _mi_warning_message("environment option mimalloc_%s has an invalid value.\n", desc->name);
  559|      0|          desc->value = 0;
  560|      0|        }
  561|      0|        else {
  562|      0|          _mi_warning_message("environment option mimalloc_%s has an invalid value.\n", desc->name);
  563|      0|        }
  564|      0|      }
  565|      0|    }
  566|      0|    mi_assert_internal(desc->init != UNINIT);
  567|      0|  }
  568|     52|  else if (!_mi_preloading()) {
  ------------------
  |  Branch (568:12): [True: 52, False: 0]
  ------------------
  569|     52|    desc->init = DEFAULTED;
  570|     52|  }
  571|     52|}
obmalloc.c:mi_getenv:
  494|     64|static bool mi_getenv(const char* name, char* result, size_t result_size) {
  495|     64|  if (name==NULL || result == NULL || result_size < 64) return false;
  ------------------
  |  Branch (495:7): [True: 0, False: 64]
  |  Branch (495:21): [True: 0, False: 64]
  |  Branch (495:39): [True: 0, False: 64]
  ------------------
  496|     64|  return _mi_prim_getenv(name,result,result_size);
  497|     64|}

_mi_os_init:
   65|      2|void _mi_os_init(void) {
   66|      2|  _mi_prim_mem_init(&mi_os_mem_config);
   67|      2|}

_mi_prim_mem_init:
  129|      2|void _mi_prim_mem_init( mi_os_mem_config_t* config ) {
  130|      2|  long psize = sysconf(_SC_PAGESIZE);
  131|      2|  if (psize > 0) {
  ------------------
  |  Branch (131:7): [True: 2, False: 0]
  ------------------
  132|      2|    config->page_size = (size_t)psize;
  133|      2|    config->alloc_granularity = (size_t)psize;
  134|      2|  }
  135|      2|  config->large_page_size = 2*MI_MiB; // TODO: can we query the OS for this?
  ------------------
  |  |  193|      2|#define MI_MiB     (MI_KiB*MI_KiB)
  |  |  ------------------
  |  |  |  |  192|      2|#define MI_KiB     (MI_ZU(1024))
  |  |  |  |  ------------------
  |  |  |  |  |  |  182|      2|# define MI_ZU(x)  x##UL
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MI_MiB     (MI_KiB*MI_KiB)
  |  |  ------------------
  |  |  |  |  192|      2|#define MI_KiB     (MI_ZU(1024))
  |  |  |  |  ------------------
  |  |  |  |  |  |  182|      2|# define MI_ZU(x)  x##UL
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  136|      2|  config->has_overcommit = unix_detect_overcommit();
  137|      2|  config->must_free_whole = false;    // mmap can free in parts
  138|       |  config->has_virtual_reserve = true; // todo: check if this true for NetBSD?  (for anonymous mmap with PROT_NONE)
  139|      2|}
_mi_prim_clock_now:
  556|      6|mi_msecs_t _mi_prim_clock_now(void) {
  557|      6|  struct timespec t;
  558|      6|  #ifdef CLOCK_MONOTONIC
  559|      6|  clock_gettime(CLOCK_MONOTONIC, &t);
  560|       |  #else
  561|       |  clock_gettime(CLOCK_REALTIME, &t);
  562|       |  #endif
  563|      6|  return ((mi_msecs_t)t.tv_sec * 1000) + ((mi_msecs_t)t.tv_nsec / 1000000);
  564|      6|}
_mi_prim_getenv:
  689|     64|bool _mi_prim_getenv(const char* name, char* result, size_t result_size) {
  690|     64|  if (name==NULL) return false;
  ------------------
  |  Branch (690:7): [True: 0, False: 64]
  ------------------
  691|     64|  const size_t len = _mi_strlen(name);
  692|     64|  if (len == 0) return false;
  ------------------
  |  Branch (692:7): [True: 0, False: 64]
  ------------------
  693|     64|  char** env = mi_get_environ();
  694|     64|  if (env == NULL) return false;
  ------------------
  |  Branch (694:7): [True: 0, False: 64]
  ------------------
  695|       |  // compare up to 10000 entries
  696|  2.17k|  for (int i = 0; i < 10000 && env[i] != NULL; i++) {
  ------------------
  |  Branch (696:19): [True: 2.17k, False: 0]
  |  Branch (696:32): [True: 2.11k, False: 64]
  ------------------
  697|  2.11k|    const char* s = env[i];
  698|  2.11k|    if (_mi_strnicmp(name, s, len) == 0 && s[len] == '=') { // case insensitive
  ------------------
  |  Branch (698:9): [True: 0, False: 2.11k]
  |  Branch (698:44): [True: 0, False: 0]
  ------------------
  699|       |      // found it
  700|      0|      _mi_strlcpy(result, s + len + 1, result_size);
  701|      0|      return true;
  702|      0|    }
  703|  2.11k|  }
  704|     64|  return false;
  705|     64|}
_mi_prim_random_buf:
  769|      2|bool _mi_prim_random_buf(void* buf, size_t buf_len) {
  770|       |  // Modern Linux provides `getrandom` but different distributions either use `sys/random.h` or `linux/random.h`
  771|       |  // and for the latter the actual `getrandom` call is not always defined.
  772|       |  // (see <https://stackoverflow.com/questions/45237324/why-doesnt-getrandom-compile>)
  773|       |  // We therefore use a syscall directly and fall back dynamically to /dev/urandom when needed.
  774|      2|  #if defined(MI_HAS_SYSCALL_H) && defined(SYS_getrandom)
  775|      2|    #ifndef GRND_NONBLOCK
  776|      2|    #define GRND_NONBLOCK (1)
  777|      2|    #endif
  778|      2|    static _Atomic(uintptr_t) no_getrandom; // = 0
  779|      2|    if (mi_atomic_load_acquire(&no_getrandom)==0) {
  ------------------
  |  |   60|      2|#define mi_atomic_load_acquire(p)                mi_atomic(load_explicit)(p,mi_memory_order(acquire))
  |  |  ------------------
  |  |  |  |   42|      2|#define  mi_atomic(name)        atomic_##name
  |  |  ------------------
  |  |               #define mi_atomic_load_acquire(p)                mi_atomic(load_explicit)(p,mi_memory_order(acquire))
  |  |  ------------------
  |  |  |  |   43|      2|#define  mi_memory_order(name)  memory_order_##name
  |  |  ------------------
  ------------------
  |  Branch (779:9): [True: 2, False: 0]
  ------------------
  780|      2|      ssize_t ret = syscall(SYS_getrandom, buf, buf_len, GRND_NONBLOCK);
  ------------------
  |  |  776|      2|    #define GRND_NONBLOCK (1)
  ------------------
  781|      2|      if (ret >= 0) return (buf_len == (size_t)ret);
  ------------------
  |  Branch (781:11): [True: 2, False: 0]
  ------------------
  782|      0|      if (errno != ENOSYS) return false;
  ------------------
  |  Branch (782:11): [True: 0, False: 0]
  ------------------
  783|      0|      mi_atomic_store_release(&no_getrandom, (uintptr_t)1); // don't call again, and fall back to /dev/urandom
  ------------------
  |  |   62|      0|#define mi_atomic_store_release(p,x)             mi_atomic(store_explicit)(p,x,mi_memory_order(release))
  |  |  ------------------
  |  |  |  |   42|      0|#define  mi_atomic(name)        atomic_##name
  |  |  ------------------
  |  |               #define mi_atomic_store_release(p,x)             mi_atomic(store_explicit)(p,x,mi_memory_order(release))
  |  |  ------------------
  |  |  |  |   43|      0|#define  mi_memory_order(name)  memory_order_##name
  |  |  ------------------
  ------------------
  784|      0|    }
  785|      0|  #endif
  786|      0|  int flags = O_RDONLY;
  787|      0|  #if defined(O_CLOEXEC)
  788|      0|  flags |= O_CLOEXEC;
  789|      0|  #endif
  790|      0|  int fd = mi_prim_open("/dev/urandom", flags);
  791|      0|  if (fd < 0) return false;
  ------------------
  |  Branch (791:7): [True: 0, False: 0]
  ------------------
  792|      0|  size_t count = 0;
  793|      0|  while(count < buf_len) {
  ------------------
  |  Branch (793:9): [True: 0, False: 0]
  ------------------
  794|      0|    ssize_t ret = mi_prim_read(fd, (char*)buf + count, buf_len - count);
  795|      0|    if (ret<=0) {
  ------------------
  |  Branch (795:9): [True: 0, False: 0]
  ------------------
  796|      0|      if (errno!=EAGAIN && errno!=EINTR) break;
  ------------------
  |  Branch (796:11): [True: 0, False: 0]
  |  Branch (796:28): [True: 0, False: 0]
  ------------------
  797|      0|    }
  798|      0|    else {
  799|      0|      count += ret;
  800|      0|    }
  801|      0|  }
  802|      0|  mi_prim_close(fd);
  803|      0|  return (count==buf_len);
  804|      0|}
_mi_prim_thread_init_auto_done:
  831|      2|void _mi_prim_thread_init_auto_done(void) {
  832|      2|  mi_assert_internal(_mi_heap_default_key == (pthread_key_t)(-1));
  833|      2|  pthread_key_create(&_mi_heap_default_key, &mi_pthread_done);
  834|      2|}
_mi_prim_thread_associate_default_heap:
  840|      2|void _mi_prim_thread_associate_default_heap(mi_heap_t* heap) {
  841|      2|  if (_mi_heap_default_key != (pthread_key_t)(-1)) {  // can happen during recursive invocation on freeBSD
  ------------------
  |  Branch (841:7): [True: 2, False: 0]
  ------------------
  842|      2|    pthread_setspecific(_mi_heap_default_key, heap);
  843|      2|  }
  844|      2|}
obmalloc.c:unix_detect_overcommit:
  103|      2|static bool unix_detect_overcommit(void) {
  104|      2|  bool os_overcommit = true;
  105|      2|#if defined(__linux__)
  106|      2|  int fd = mi_prim_open("/proc/sys/vm/overcommit_memory", O_RDONLY);
  107|      2|        if (fd >= 0) {
  ------------------
  |  Branch (107:13): [True: 2, False: 0]
  ------------------
  108|      2|    char buf[32] = {0};
  109|      2|    ssize_t nread = mi_prim_read(fd, &buf, sizeof(buf));
  110|      2|    mi_prim_close(fd);
  111|       |    // <https://www.kernel.org/doc/Documentation/vm/overcommit-accounting>
  112|       |    // 0: heuristic overcommit, 1: always overcommit, 2: never overcommit (ignore NORESERVE)
  113|      2|    if (nread >= 1) {
  ------------------
  |  Branch (113:9): [True: 2, False: 0]
  ------------------
  114|      2|      os_overcommit = (buf[0] == '0' || buf[0] == '1');
  ------------------
  |  Branch (114:24): [True: 0, False: 2]
  |  Branch (114:41): [True: 2, False: 0]
  ------------------
  115|      2|    }
  116|      2|  }
  117|       |#elif defined(__FreeBSD__)
  118|       |  int val = 0;
  119|       |  size_t olen = sizeof(val);
  120|       |  if (sysctlbyname("vm.overcommit", &val, &olen, NULL, 0) == 0) {
  121|       |    os_overcommit = (val != 0);
  122|       |  }
  123|       |#else
  124|       |  // default: overcommit is true
  125|       |#endif
  126|      2|  return os_overcommit;
  127|      2|}
obmalloc.c:mi_get_environ:
  685|     64|static char** mi_get_environ(void) {
  686|     64|  return environ;
  687|     64|}
obmalloc.c:mi_prim_open:
   67|      2|static int mi_prim_open(const char* fpath, int open_flags) {
   68|       |  return syscall(SYS_open,fpath,open_flags,0);
   69|      2|}
obmalloc.c:mi_prim_read:
   70|      2|static ssize_t mi_prim_read(int fd, void* buf, size_t bufsize) {
   71|       |  return syscall(SYS_read,fd,buf,bufsize);
   72|      2|}
obmalloc.c:mi_prim_close:
   73|      2|static int mi_prim_close(int fd) {
   74|       |  return syscall(SYS_close,fd);
   75|      2|}

_mi_random_next:
  144|      6|uintptr_t _mi_random_next(mi_random_ctx_t* ctx) {
  145|      6|  mi_assert_internal(mi_random_is_initialized(ctx));
  146|       |  #if MI_INTPTR_SIZE <= 4
  147|       |    return chacha_next32(ctx);
  148|       |  #elif MI_INTPTR_SIZE == 8
  149|       |    return (((uintptr_t)chacha_next32(ctx) << 32) | chacha_next32(ctx));
  150|       |  #else
  151|       |  # error "define mi_random_next for this platform"
  152|       |  #endif
  153|      6|}
_mi_random_init:
  194|      2|void _mi_random_init(mi_random_ctx_t* ctx) {
  195|       |  mi_random_init_ex(ctx, false);
  196|      2|}
_mi_random_reinit_if_weak:
  202|      2|void _mi_random_reinit_if_weak(mi_random_ctx_t * ctx) {
  203|      2|  if (ctx->weak) {
  ------------------
  |  Branch (203:7): [True: 0, False: 2]
  ------------------
  204|      0|    _mi_random_init(ctx);
  205|      0|  }
  206|      2|}
obmalloc.c:chacha_block:
   48|      2|{
   49|       |  // scramble into `x`
   50|      2|  uint32_t x[16];
   51|     34|  for (size_t i = 0; i < 16; i++) {
  ------------------
  |  Branch (51:22): [True: 32, False: 2]
  ------------------
   52|     32|    x[i] = ctx->input[i];
   53|     32|  }
   54|     22|  for (size_t i = 0; i < MI_CHACHA_ROUNDS; i += 2) {
  ------------------
  |  |   20|     22|#define MI_CHACHA_ROUNDS (20)   // perhaps use 12 for better performance?
  ------------------
  |  Branch (54:22): [True: 20, False: 2]
  ------------------
   55|     20|    qround(x, 0, 4,  8, 12);
   56|     20|    qround(x, 1, 5,  9, 13);
   57|     20|    qround(x, 2, 6, 10, 14);
   58|     20|    qround(x, 3, 7, 11, 15);
   59|     20|    qround(x, 0, 5, 10, 15);
   60|     20|    qround(x, 1, 6, 11, 12);
   61|     20|    qround(x, 2, 7,  8, 13);
   62|     20|    qround(x, 3, 4,  9, 14);
   63|     20|  }
   64|       |
   65|       |  // add scrambled data to the initial state
   66|     34|  for (size_t i = 0; i < 16; i++) {
  ------------------
  |  Branch (66:22): [True: 32, False: 2]
  ------------------
   67|     32|    ctx->output[i] = x[i] + ctx->input[i];
   68|     32|  }
   69|      2|  ctx->output_available = 16;
   70|       |
   71|       |  // increment the counter for the next round
   72|      2|  ctx->input[12] += 1;
   73|      2|  if (ctx->input[12] == 0) {
  ------------------
  |  Branch (73:7): [True: 0, False: 2]
  ------------------
   74|      0|    ctx->input[13] += 1;
   75|      0|    if (ctx->input[13] == 0) {  // and keep increasing into the nonce
  ------------------
  |  Branch (75:9): [True: 0, False: 0]
  ------------------
   76|      0|      ctx->input[14] += 1;
   77|      0|    }
   78|      0|  }
   79|      2|}
obmalloc.c:qround:
   40|    160|static inline void qround(uint32_t x[16], size_t a, size_t b, size_t c, size_t d) {
   41|    160|  x[a] += x[b]; x[d] = rotl(x[d] ^ x[a], 16);
   42|    160|  x[c] += x[d]; x[b] = rotl(x[b] ^ x[c], 12);
   43|    160|  x[a] += x[b]; x[d] = rotl(x[d] ^ x[a], 8);
   44|    160|  x[c] += x[d]; x[b] = rotl(x[b] ^ x[c], 7);
   45|    160|}
obmalloc.c:rotl:
   36|    640|static inline uint32_t rotl(uint32_t x, uint32_t shift) {
   37|    640|  return (x << shift) | (x >> (32 - shift));
   38|    640|}
obmalloc.c:chacha_next32:
   81|     12|static uint32_t chacha_next32(mi_random_ctx_t* ctx) {
   82|     12|  if (ctx->output_available <= 0) {
  ------------------
  |  Branch (82:7): [True: 2, False: 10]
  ------------------
   83|      2|    chacha_block(ctx);
   84|      2|    ctx->output_available = 16; // (assign again to suppress static analysis warning)
   85|      2|  }
   86|     12|  const uint32_t x = ctx->output[16 - ctx->output_available];
   87|     12|  ctx->output[16 - ctx->output_available] = 0; // reset once the data is handed out
   88|     12|  ctx->output_available--;
   89|     12|  return x;
   90|     12|}
obmalloc.c:mi_random_init_ex:
  173|      2|static void mi_random_init_ex(mi_random_ctx_t* ctx, bool use_weak) {
  174|      2|  uint8_t key[32] = {0};
  175|      2|  if (use_weak || !_mi_prim_random_buf(key, sizeof(key))) {
  ------------------
  |  Branch (175:7): [True: 0, False: 2]
  |  Branch (175:19): [True: 0, False: 2]
  ------------------
  176|       |    // if we fail to get random data from the OS, we fall back to a
  177|       |    // weak random source based on the current time
  178|      0|    #if !defined(__wasi__)
  179|      0|    if (!use_weak) { _mi_warning_message("unable to use secure randomness\n"); }
  ------------------
  |  Branch (179:9): [True: 0, False: 0]
  ------------------
  180|      0|    #endif
  181|      0|    uintptr_t x = _mi_os_random_weak(0);
  182|      0|    for (size_t i = 0; i < 8; i++) {  // key is eight 32-bit words.
  ------------------
  |  Branch (182:24): [True: 0, False: 0]
  ------------------
  183|      0|      x = _mi_random_shuffle(x);
  184|      0|      ((uint32_t*)key)[i] = (uint32_t)x;
  185|      0|    }
  186|      0|    ctx->weak = true;
  187|      0|  }
  188|      2|  else {
  189|       |    ctx->weak = false;
  190|      2|  }
  191|      2|  chacha_init(ctx, key, (uintptr_t)ctx /*nonce*/ );
  192|      2|}
obmalloc.c:chacha_init:
   98|      2|{
   99|       |  // since we only use chacha for randomness (and not encryption) we
  100|       |  // do not _need_ to read 32-bit values as little endian but we do anyways
  101|       |  // just for being compatible :-)
  102|      2|  memset(ctx, 0, sizeof(*ctx));
  103|     10|  for (size_t i = 0; i < 4; i++) {
  ------------------
  |  Branch (103:22): [True: 8, False: 2]
  ------------------
  104|      8|    const uint8_t* sigma = (uint8_t*)"expand 32-byte k";
  105|      8|    ctx->input[i] = read32(sigma,i);
  106|      8|  }
  107|     18|  for (size_t i = 0; i < 8; i++) {
  ------------------
  |  Branch (107:22): [True: 16, False: 2]
  ------------------
  108|     16|    ctx->input[i + 4] = read32(key,i);
  109|     16|  }
  110|      2|  ctx->input[12] = 0;
  111|      2|  ctx->input[13] = 0;
  112|      2|  ctx->input[14] = (uint32_t)nonce;
  113|      2|  ctx->input[15] = (uint32_t)(nonce >> 32);
  114|      2|}
obmalloc.c:read32:
   92|     24|static inline uint32_t read32(const uint8_t* p, size_t idx32) {
   93|     24|  const size_t i = 4*idx32;
   94|     24|  return ((uint32_t)p[i+0] | (uint32_t)p[i+1] << 8 | (uint32_t)p[i+2] << 16 | (uint32_t)p[i+3] << 24);
   95|     24|}

mi_stats_reset:
  386|      2|void mi_stats_reset(void) mi_attr_noexcept {
  387|      2|  mi_stats_t* stats = mi_stats_get_default();
  388|      2|  if (stats != &_mi_stats_main) { memset(stats, 0, sizeof(mi_stats_t)); }
  ------------------
  |  Branch (388:7): [True: 2, False: 0]
  ------------------
  389|      2|  memset(&_mi_stats_main, 0, sizeof(mi_stats_t));
  390|      2|  if (mi_process_start == 0) { mi_process_start = _mi_clock_start(); };
  ------------------
  |  Branch (390:7): [True: 2, False: 0]
  ------------------
  391|      2|}
_mi_clock_now:
  422|      6|mi_msecs_t _mi_clock_now(void) {
  423|      6|  return _mi_prim_clock_now();
  424|      6|}
_mi_clock_start:
  426|      2|mi_msecs_t _mi_clock_start(void) {
  427|      2|  if (mi_clock_diff == 0.0) {
  ------------------
  |  Branch (427:7): [True: 2, False: 0]
  ------------------
  428|      2|    mi_msecs_t t0 = _mi_clock_now();
  429|      2|    mi_clock_diff = _mi_clock_now() - t0;
  430|      2|  }
  431|      2|  return _mi_clock_now();
  432|      2|}
obmalloc.c:mi_stats_get_default:
  374|      2|static mi_stats_t* mi_stats_get_default(void) {
  375|      2|  mi_heap_t* heap = mi_heap_get_default();
  376|      2|  return &heap->tld->stats;
  377|      2|}

PyModuleDef_Init:
   83|     56|{
   84|       |#ifdef Py_GIL_DISABLED
   85|       |    // Check that this def does not come from a non-free-threading ABI.
   86|       |    //
   87|       |    // This is meant as a "sanity check"; users should never rely on it.
   88|       |    // In particular, if we run out of ob_flags bits, or otherwise need to
   89|       |    // change some of the internals, this check can go away. Still, it
   90|       |    // would be nice to keep it for the free-threading transition.
   91|       |    //
   92|       |    // A PyModuleDef must be initialized with PyModuleDef_HEAD_INIT,
   93|       |    // which (via PyObject_HEAD_INIT) sets _Py_STATICALLY_ALLOCATED_FLAG
   94|       |    // and not _Py_LEGACY_ABI_CHECK_FLAG. For PyModuleDef, these flags never
   95|       |    // change.
   96|       |    // This means that the lower nibble of a valid PyModuleDef's ob_flags is
   97|       |    // always `_10_` (in binary; `_` is don't care).
   98|       |    //
   99|       |    // So, a check for these bits won't reject valid PyModuleDef.
  100|       |    // Rejecting incompatible extensions is slightly less important; here's
  101|       |    // how that works:
  102|       |    //
  103|       |    // In the pre-free-threading stable ABI, PyModuleDef_HEAD_INIT is big
  104|       |    // enough to overlap with free-threading ABI's ob_flags, is all zeros
  105|       |    // except for the refcount field.
  106|       |    // The refcount field can be:
  107|       |    // - 1 (3.11 and below)
  108|       |    // - UINT_MAX >> 2 (32-bit 3.12 & 3.13)
  109|       |    // - UINT_MAX (64-bit 3.12 & 3.13)
  110|       |    // - 7L << 28 (3.14)
  111|       |    //
  112|       |    // This means that the lower nibble of *any byte* in PyModuleDef_HEAD_INIT
  113|       |    // is not `_10_` -- it can be:
  114|       |    // - 0b0000
  115|       |    // - 0b0001
  116|       |    // - 0b0011 (from UINT_MAX >> 2)
  117|       |    // - 0b0111 (from 7L << 28)
  118|       |    // - 0b1111 (e.g. from UINT_MAX)
  119|       |    // (The values may change at runtime as the PyModuleDef is used, but
  120|       |    // PyModuleDef_Init is required before using the def as a Python object,
  121|       |    // so we check at least once with the initial values.
  122|       |    uint16_t flags = ((PyObject*)def)->ob_flags;
  123|       |    uint16_t bits = _Py_STATICALLY_ALLOCATED_FLAG | _Py_LEGACY_ABI_CHECK_FLAG;
  124|       |    if ((flags & bits) != _Py_STATICALLY_ALLOCATED_FLAG) {
  125|       |        const char *message = "invalid PyModuleDef, extension possibly "
  126|       |            "compiled for non-free-threaded Python";
  127|       |        // Write the error as unraisable: if the extension tries calling
  128|       |        // any API, it's likely to segfault and lose the exception.
  129|       |        PyErr_SetString(PyExc_SystemError, message);
  130|       |        PyErr_WriteUnraisable(NULL);
  131|       |        // But also raise the exception normally -- this is technically
  132|       |        // a recoverable state.
  133|       |        PyErr_SetString(PyExc_SystemError, message);
  134|       |        return NULL;
  135|       |    }
  136|       |#endif
  137|     56|    assert(PyModuleDef_Type.tp_flags & Py_TPFLAGS_READY);
  ------------------
  |  Branch (137:5): [True: 56, False: 0]
  ------------------
  138|     56|    if (def->m_base.m_index == 0) {
  ------------------
  |  Branch (138:9): [True: 32, False: 24]
  ------------------
  139|     32|        Py_SET_REFCNT(def, 1);
  ------------------
  |  |  201|     32|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  140|     32|        Py_SET_TYPE(def, &PyModuleDef_Type);
  ------------------
  |  |  217|     32|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  141|     32|        def->m_base.m_index = _PyImport_GetNextModuleIndex();
  142|     32|    }
  143|     56|    return (PyObject*)def;
  144|     56|}
_PyModule_InitModuleDictWatcher:
  220|      2|{
  221|       |    // This is a reserved watcher for CPython so there's no need to check for non-NULL.
  222|      2|    assert(interp->dict_state.watchers[MODULE_WATCHER_ID] == NULL);
  ------------------
  |  Branch (222:5): [True: 2, False: 0]
  ------------------
  223|      2|    interp->dict_state.watchers[MODULE_WATCHER_ID] = &module_dict_watcher;
  ------------------
  |  |  294|      2|#define MODULE_WATCHER_ID       2
  ------------------
  224|      2|    return 0;
  225|      2|}
PyModule_NewObject:
  248|     36|{
  249|     36|    PyModuleObject *m = new_module_notrack(&PyModule_Type);
  250|     36|    if (m == NULL)
  ------------------
  |  Branch (250:9): [True: 0, False: 36]
  ------------------
  251|      0|        return NULL;
  252|     36|    if (module_init_dict(m, m->md_dict, name, NULL) != 0)
  ------------------
  |  Branch (252:9): [True: 0, False: 36]
  ------------------
  253|      0|        goto fail;
  254|     36|    track_module(m);
  255|     36|    return (PyObject *)m;
  256|       |
  257|      0| fail:
  258|      0|    Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  259|       |    return NULL;
  260|     36|}
PyModule_New:
  264|      8|{
  265|      8|    PyObject *nameobj, *module;
  266|      8|    nameobj = PyUnicode_FromString(name);
  267|      8|    if (nameobj == NULL)
  ------------------
  |  Branch (267:9): [True: 0, False: 8]
  ------------------
  268|      0|        return NULL;
  269|      8|    module = PyModule_NewObject(nameobj);
  270|      8|    Py_DECREF(nameobj);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  271|      8|    return module;
  272|      8|}
_PyModule_CreateInitialized:
  347|      8|{
  348|      8|    const char* name;
  349|      8|    PyModuleObject *m;
  350|       |
  351|      8|    if (!PyModuleDef_Init(module))
  ------------------
  |  Branch (351:9): [True: 0, False: 8]
  ------------------
  352|      0|        return NULL;
  353|      8|    name = module->m_name;
  354|      8|    if (!check_api_version(name, module_api_version)) {
  ------------------
  |  Branch (354:9): [True: 0, False: 8]
  ------------------
  355|      0|        return NULL;
  356|      0|    }
  357|      8|    if (module->m_slots) {
  ------------------
  |  Branch (357:9): [True: 0, False: 8]
  ------------------
  358|      0|        PyErr_Format(
  359|      0|            PyExc_SystemError,
  360|      0|            "module %s: PyModule_Create is incompatible with m_slots", name);
  361|      0|        return NULL;
  362|      0|    }
  363|      8|    name = _PyImport_ResolveNameWithPackageContext(name);
  364|       |
  365|      8|    m = (PyModuleObject*)PyModule_New(name);
  366|      8|    if (m == NULL)
  ------------------
  |  Branch (366:9): [True: 0, False: 8]
  ------------------
  367|      0|        return NULL;
  368|       |
  369|      8|    if (module->m_size > 0) {
  ------------------
  |  Branch (369:9): [True: 0, False: 8]
  ------------------
  370|      0|        m->md_state = PyMem_Malloc(module->m_size);
  371|      0|        if (!m->md_state) {
  ------------------
  |  Branch (371:13): [True: 0, False: 0]
  ------------------
  372|      0|            PyErr_NoMemory();
  373|      0|            Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  374|      0|            return NULL;
  375|      0|        }
  376|      0|        memset(m->md_state, 0, module->m_size);
  377|      0|    }
  378|       |
  379|      8|    if (module->m_methods != NULL) {
  ------------------
  |  Branch (379:9): [True: 8, False: 0]
  ------------------
  380|      8|        if (PyModule_AddFunctions((PyObject *) m, module->m_methods) != 0) {
  ------------------
  |  Branch (380:13): [True: 0, False: 8]
  ------------------
  381|      0|            Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  382|      0|            return NULL;
  383|      0|        }
  384|      8|    }
  385|      8|    if (module->m_doc != NULL) {
  ------------------
  |  Branch (385:9): [True: 6, False: 2]
  ------------------
  386|      6|        if (PyModule_SetDocString((PyObject *) m, module->m_doc) != 0) {
  ------------------
  |  Branch (386:13): [True: 0, False: 6]
  ------------------
  387|      0|            Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  388|      0|            return NULL;
  389|      0|        }
  390|      6|    }
  391|      8|    m->md_token = module;
  392|      8|    m->md_token_is_def = true;
  393|      8|    module_copy_members_from_deflike(m, module);
  394|       |#ifdef Py_GIL_DISABLED
  395|       |    m->md_requires_gil = true;
  396|       |#endif
  397|      8|    return (PyObject*)m;
  398|      8|}
PyModule_FromDefAndSpec2:
  671|     24|{
  672|     24|    PyModuleDef_Init(def);
  673|       |    return module_from_slots_and_spec(NULL, spec, module_api_version, def);
  674|     24|}
PyModule_Exec:
  753|     24|{
  754|     24|    if (alloc_state(module) < 0) {
  ------------------
  |  Branch (754:9): [True: 0, False: 24]
  ------------------
  755|      0|        return -1;
  756|      0|    }
  757|     24|    PyModuleObject *md = (PyModuleObject*)module;
  758|     24|    if (md->md_exec) {
  ------------------
  |  Branch (758:9): [True: 0, False: 24]
  ------------------
  759|      0|        assert(!md->md_token_is_def);
  ------------------
  |  Branch (759:9): [True: 0, False: 0]
  ------------------
  760|      0|        return run_exec_func(module, md->md_exec);
  761|      0|    }
  762|       |
  763|     24|    PyModuleDef *def = _PyModule_GetDefOrNull(module);
  764|     24|    if (def) {
  ------------------
  |  Branch (764:9): [True: 24, False: 0]
  ------------------
  765|     24|        return PyModule_ExecDef(module, def);
  766|     24|    }
  767|      0|    return 0;
  768|     24|}
PyModule_ExecDef:
  772|     24|{
  773|     24|    if (alloc_state(module) < 0) {
  ------------------
  |  Branch (773:9): [True: 0, False: 24]
  ------------------
  774|      0|        return -1;
  775|      0|    }
  776|       |
  777|     24|    assert(PyModule_Check(module));
  ------------------
  |  Branch (777:5): [True: 24, False: 0]
  ------------------
  778|       |
  779|     24|    if (def->m_slots == NULL) {
  ------------------
  |  Branch (779:9): [True: 0, False: 24]
  ------------------
  780|      0|        return 0;
  781|      0|    }
  782|       |
  783|     24|    _PySlotIterator it;
  784|     24|    _PySlotIterator_InitLegacy(&it, def->m_slots, _PySlot_KIND_MOD);
  785|    114|    while (_PySlotIterator_Next(&it)) {
  ------------------
  |  Branch (785:12): [True: 90, False: 24]
  ------------------
  786|     90|        _Py_modexecfunc func;
  787|     90|        switch (it.current.sl_id) {
  ------------------
  |  Branch (787:17): [True: 22, False: 68]
  ------------------
  788|      0|            case Py_slot_invalid:
  ------------------
  |  |   25|      0|#define Py_slot_invalid 0xffff
  ------------------
  |  Branch (788:13): [True: 0, False: 90]
  ------------------
  789|      0|                return -1;
  790|     22|            case Py_mod_exec:
  ------------------
  |  |   93|     22|#define Py_mod_exec _Py_SLOT_COMPAT_VALUE(2, 85)
  |  |  ------------------
  |  |  |  |    7|     22|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (790:13): [True: 22, False: 68]
  ------------------
  791|     22|                func = (_Py_modexecfunc)it.current.sl_func;
  792|     22|                if (run_exec_func(module, func) < 0) {
  ------------------
  |  Branch (792:21): [True: 0, False: 22]
  ------------------
  793|      0|                    return -1;
  794|      0|                }
  795|     22|                break;
  796|     90|        }
  797|     90|    }
  798|     24|    return 0;
  799|     24|}
PyModule_AddFunctions:
  803|      8|{
  804|      8|    int res;
  805|      8|    PyObject *name = PyModule_GetNameObject(m);
  806|      8|    if (name == NULL) {
  ------------------
  |  Branch (806:9): [True: 0, False: 8]
  ------------------
  807|      0|        return -1;
  808|      0|    }
  809|       |
  810|      8|    res = _add_methods_to_object(m, name, functions);
  811|      8|    Py_DECREF(name);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  812|      8|    return res;
  813|      8|}
PyModule_SetDocString:
  817|     28|{
  818|     28|    PyObject *v;
  819|       |
  820|     28|    v = PyUnicode_FromString(doc);
  821|     28|    if (v == NULL || PyObject_SetAttr(m, &_Py_ID(__doc__), v) != 0) {
  ------------------
  |  |  917|     28|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     28|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     28|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (821:9): [True: 0, False: 28]
  |  Branch (821:22): [True: 0, False: 28]
  ------------------
  822|      0|        Py_XDECREF(v);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  823|      0|        return -1;
  824|      0|    }
  825|     28|    Py_DECREF(v);
  ------------------
  |  |  430|     28|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  826|     28|    return 0;
  827|     28|}
PyModule_GetDict:
  831|    602|{
  832|    602|    if (!PyModule_Check(m)) {
  ------------------
  |  |   12|    602|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|    602|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    602|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    602|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (832:9): [True: 0, False: 602]
  ------------------
  833|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  834|      0|        return NULL;
  835|      0|    }
  836|    602|    return _PyModule_GetDict(m);  // borrowed reference
  837|    602|}
PyModule_GetNameObject:
  877|      8|{
  878|      8|    if (!PyModule_Check(mod)) {
  ------------------
  |  |   12|      8|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|      8|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (878:9): [True: 0, False: 8]
  ------------------
  879|      0|        PyErr_BadArgument();
  880|      0|        return NULL;
  881|      0|    }
  882|      8|    PyObject *dict = ((PyModuleObject *)mod)->md_dict;  // borrowed reference
  883|      8|    if (dict == NULL || !PyDict_Check(dict)) {
  ------------------
  |  |   18|      8|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (883:9): [True: 0, False: 8]
  |  Branch (883:25): [True: 0, False: 8]
  ------------------
  884|      0|        goto error;
  885|      0|    }
  886|      8|    PyObject *name;
  887|      8|    if (PyDict_GetItemRef(dict, &_Py_ID(__name__), &name) <= 0) {
  ------------------
  |  |  917|      8|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      8|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      8|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (887:9): [True: 0, False: 8]
  ------------------
  888|       |        // error or not found
  889|      0|        goto error;
  890|      0|    }
  891|      8|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|      8|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (891:9): [True: 0, False: 8]
  ------------------
  892|      0|        Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  893|      0|        goto error;
  894|      0|    }
  895|      8|    return name;
  896|       |
  897|      0|error:
  898|      0|    if (!PyErr_Occurred()) {
  ------------------
  |  Branch (898:9): [True: 0, False: 0]
  ------------------
  899|      0|        PyErr_SetString(PyExc_SystemError, "nameless module");
  900|      0|    }
  901|       |    return NULL;
  902|      8|}
PyModule_GetState:
 1029|     24|{
 1030|     24|    if (!PyModule_Check(m)) {
  ------------------
  |  |   12|     24|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|     24|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1030:9): [True: 0, False: 24]
  ------------------
 1031|      0|        PyErr_BadArgument();
 1032|      0|        return NULL;
 1033|      0|    }
 1034|     24|    return _PyModule_GetState(m);
 1035|     24|}
_PyModuleSpec_IsInitializing:
 1175|    132|{
 1176|    132|    if (spec == NULL) {
  ------------------
  |  Branch (1176:9): [True: 0, False: 132]
  ------------------
 1177|      0|        return 0;
 1178|      0|    }
 1179|    132|    PyObject *value;
 1180|    132|    int rc = PyObject_GetOptionalAttr(spec, &_Py_ID(_initializing), &value);
  ------------------
  |  |  917|    132|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    132|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    132|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1181|    132|    if (rc > 0) {
  ------------------
  |  Branch (1181:9): [True: 72, False: 60]
  ------------------
 1182|     72|        rc = PyObject_IsTrue(value);
 1183|     72|        Py_DECREF(value);
  ------------------
  |  |  430|     72|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1184|     72|    }
 1185|    132|    return rc;
 1186|    132|}
_PyModuleSpec_IsUninitializedSubmodule:
 1193|     20|{
 1194|     20|    if (spec == NULL) {
  ------------------
  |  Branch (1194:9): [True: 0, False: 20]
  ------------------
 1195|      0|         return 0;
 1196|      0|    }
 1197|       |
 1198|     20|    PyObject *value;
 1199|     20|    int rc = PyObject_GetOptionalAttr(spec, &_Py_ID(_uninitialized_submodules), &value);
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1200|     20|    if (rc > 0) {
  ------------------
  |  Branch (1200:9): [True: 4, False: 16]
  ------------------
 1201|      4|        rc = PySequence_Contains(value, name);
 1202|      4|        Py_DECREF(value);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1203|      4|    }
 1204|     20|    return rc;
 1205|     20|}
_PyModuleSpec_GetFileOrigin:
 1209|     20|{
 1210|     20|    PyObject *has_location = NULL;
 1211|     20|    int rc = PyObject_GetOptionalAttr(spec, &_Py_ID(has_location), &has_location);
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1212|     20|    if (rc <= 0) {
  ------------------
  |  Branch (1212:9): [True: 16, False: 4]
  ------------------
 1213|     16|        return rc;
 1214|     16|    }
 1215|       |    // If origin is not a location, or doesn't exist, or is not a str, we could consider falling
 1216|       |    // back to module.__file__. But the cases in which module.__file__ is not __spec__.origin
 1217|       |    // are cases in which we probably shouldn't be guessing.
 1218|      4|    rc = PyObject_IsTrue(has_location);
 1219|      4|    Py_DECREF(has_location);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1220|      4|    if (rc <= 0) {
  ------------------
  |  Branch (1220:9): [True: 4, False: 0]
  ------------------
 1221|      4|        return rc;
 1222|      4|    }
 1223|       |    // has_location is true, so origin is a location
 1224|      0|    PyObject *origin = NULL;
 1225|      0|    rc = PyObject_GetOptionalAttr(spec, &_Py_ID(origin), &origin);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1226|      0|    if (rc <= 0) {
  ------------------
  |  Branch (1226:9): [True: 0, False: 0]
  ------------------
 1227|      0|        return rc;
 1228|      0|    }
 1229|      0|    assert(origin != NULL);
  ------------------
  |  Branch (1229:5): [True: 0, False: 0]
  ------------------
 1230|      0|    if (!PyUnicode_Check(origin)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1230:9): [True: 0, False: 0]
  ------------------
 1231|      0|        Py_DECREF(origin);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1232|      0|        return 0;
 1233|      0|    }
 1234|      0|    *p_origin = origin;
 1235|      0|    return 1;
 1236|      0|}
_PyModule_IsPossiblyShadowing:
 1240|     20|{
 1241|       |    // origin must be a unicode subtype
 1242|       |    // Returns 1 if the module at origin could be shadowing a module of the
 1243|       |    // same name later in the module search path. The condition we check is basically:
 1244|       |    // root = os.path.dirname(origin.removesuffix(os.sep + "__init__.py"))
 1245|       |    // return not sys.flags.safe_path and root == (sys.path[0] or os.getcwd())
 1246|       |    // Returns 0 otherwise (or if we aren't sure)
 1247|       |    // Returns -1 if an error occurred that should be propagated
 1248|     20|    if (origin == NULL) {
  ------------------
  |  Branch (1248:9): [True: 20, False: 0]
  ------------------
 1249|     20|        return 0;
 1250|     20|    }
 1251|       |
 1252|       |    // not sys.flags.safe_path
 1253|      0|    const PyConfig *config = _Py_GetConfig();
 1254|      0|    if (config->safe_path) {
  ------------------
  |  Branch (1254:9): [True: 0, False: 0]
  ------------------
 1255|      0|        return 0;
 1256|      0|    }
 1257|       |
 1258|       |    // root = os.path.dirname(origin.removesuffix(os.sep + "__init__.py"))
 1259|      0|    wchar_t root[MAXPATHLEN + 1];
 1260|      0|    Py_ssize_t size = PyUnicode_AsWideChar(origin, root, MAXPATHLEN);
  ------------------
  |  |   43|      0|#    define MAXPATHLEN PATH_MAX
  ------------------
 1261|      0|    if (size < 0) {
  ------------------
  |  Branch (1261:9): [True: 0, False: 0]
  ------------------
 1262|      0|        return -1;
 1263|      0|    }
 1264|      0|    assert(size <= MAXPATHLEN);
  ------------------
  |  Branch (1264:5): [True: 0, False: 0]
  ------------------
 1265|      0|    root[size] = L'\0';
 1266|       |
 1267|      0|    wchar_t *sep = wcsrchr(root, SEP);
  ------------------
  |  |   29|      0|#  define SEP L'/'
  ------------------
 1268|      0|    if (sep == NULL) {
  ------------------
  |  Branch (1268:9): [True: 0, False: 0]
  ------------------
 1269|      0|        return 0;
 1270|      0|    }
 1271|       |    // If it's a package then we need to look one directory further up
 1272|      0|    if (wcscmp(sep + 1, L"__init__.py") == 0) {
  ------------------
  |  Branch (1272:9): [True: 0, False: 0]
  ------------------
 1273|      0|        *sep = L'\0';
 1274|      0|        sep = wcsrchr(root, SEP);
  ------------------
  |  |   29|      0|#  define SEP L'/'
  ------------------
 1275|      0|        if (sep == NULL) {
  ------------------
  |  Branch (1275:13): [True: 0, False: 0]
  ------------------
 1276|      0|            return 0;
 1277|      0|        }
 1278|      0|    }
 1279|      0|    *sep = L'\0';
 1280|       |
 1281|       |    // sys.path[0] or os.getcwd()
 1282|      0|    wchar_t *sys_path_0 = config->sys_path_0;
 1283|      0|    if (!sys_path_0) {
  ------------------
  |  Branch (1283:9): [True: 0, False: 0]
  ------------------
 1284|      0|        return 0;
 1285|      0|    }
 1286|       |
 1287|      0|    wchar_t sys_path_0_buf[MAXPATHLEN];
 1288|      0|    if (sys_path_0[0] == L'\0') {
  ------------------
  |  Branch (1288:9): [True: 0, False: 0]
  ------------------
 1289|       |        // if sys.path[0] == "", treat it as if it were the current directory
 1290|      0|        if (!_Py_wgetcwd(sys_path_0_buf, MAXPATHLEN)) {
  ------------------
  |  |   43|      0|#    define MAXPATHLEN PATH_MAX
  ------------------
  |  Branch (1290:13): [True: 0, False: 0]
  ------------------
 1291|       |            // If we failed to getcwd, don't raise an exception and instead
 1292|       |            // let the caller proceed assuming no shadowing
 1293|      0|            return 0;
 1294|      0|        }
 1295|      0|        sys_path_0 = sys_path_0_buf;
 1296|      0|    }
 1297|       |
 1298|      0|    int result = wcscmp(sys_path_0, root) == 0;
 1299|      0|    return result;
 1300|      0|}
_Py_module_getattro_impl:
 1304|  2.66k|{
 1305|       |    // When suppress=1, this function suppresses AttributeError.
 1306|  2.66k|    PyObject *attr, *mod_name, *getattr;
 1307|  2.66k|    attr = _PyObject_GenericGetAttrWithDict((PyObject *)m, name, NULL, suppress);
 1308|  2.66k|    if (attr) {
  ------------------
  |  Branch (1308:9): [True: 2.53k, False: 128]
  ------------------
 1309|  2.53k|        if (PyLazyImport_CheckExact(attr)) {
  ------------------
  |  |   15|  2.53k|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  ------------------
  |  |  |  |  215|  2.53k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.53k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.53k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 2.53k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1310|       |            // gh-144957: Module __getattr__ should get a chance to provide
 1311|       |            // the attribute before resolving a lazy import placeholder.
 1312|      0|            if (PyDict_GetItemRef(m->md_dict, &_Py_ID(__getattr__), &getattr) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1312:17): [True: 0, False: 0]
  ------------------
 1313|      0|                Py_DECREF(attr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1314|      0|                return NULL;
 1315|      0|            }
 1316|      0|            if (getattr) {
  ------------------
  |  Branch (1316:17): [True: 0, False: 0]
  ------------------
 1317|      0|                PyObject *result = PyObject_CallOneArg(getattr, name);
 1318|      0|                Py_DECREF(getattr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1319|      0|                if (result != NULL) {
  ------------------
  |  Branch (1319:21): [True: 0, False: 0]
  ------------------
 1320|      0|                    Py_DECREF(attr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1321|      0|                    return result;
 1322|      0|                }
 1323|      0|                if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (1323:21): [True: 0, False: 0]
  ------------------
 1324|      0|                    Py_DECREF(attr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1325|      0|                    return NULL;
 1326|      0|                }
 1327|      0|                PyErr_Clear();
 1328|      0|            }
 1329|      0|            PyObject *new_value = _PyImport_LoadLazyImportTstate(
 1330|      0|                PyThreadState_GET(), attr);
  ------------------
  |  |   63|      0|#define PyThreadState_GET() PyThreadState_Get()
  ------------------
 1331|      0|            if (new_value == NULL) {
  ------------------
  |  Branch (1331:17): [True: 0, False: 0]
  ------------------
 1332|      0|                if (suppress &&
  ------------------
  |  Branch (1332:21): [True: 0, False: 0]
  ------------------
 1333|      0|                    PyErr_ExceptionMatches(PyExc_ImportCycleError)) {
  ------------------
  |  Branch (1333:21): [True: 0, False: 0]
  ------------------
 1334|       |                    // ImportCycleError is raised when a lazy object tries
 1335|       |                    // to import itself. In this case, the error should not
 1336|       |                    // propagate to the caller and instead treated as if the
 1337|       |                    // attribute doesn't exist.
 1338|      0|                    PyErr_Clear();
 1339|      0|                }
 1340|      0|                Py_DECREF(attr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1341|      0|                return NULL;
 1342|      0|            }
 1343|       |
 1344|      0|            if (PyDict_SetItem(m->md_dict, name, new_value) < 0) {
  ------------------
  |  Branch (1344:17): [True: 0, False: 0]
  ------------------
 1345|      0|                Py_CLEAR(new_value);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1346|      0|            }
 1347|      0|            Py_DECREF(attr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1348|      0|            return new_value;
 1349|      0|        }
 1350|  2.53k|        return attr;
 1351|  2.53k|    }
 1352|    128|    if (suppress == 1) {
  ------------------
  |  Branch (1352:9): [True: 108, False: 20]
  ------------------
 1353|    108|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (1353:13): [True: 0, False: 108]
  ------------------
 1354|       |            // pass up non-AttributeError exception
 1355|      0|            return NULL;
 1356|      0|        }
 1357|    108|    }
 1358|     20|    else {
 1359|     20|        if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (1359:13): [True: 0, False: 20]
  ------------------
 1360|       |            // pass up non-AttributeError exception
 1361|      0|            return NULL;
 1362|      0|        }
 1363|     20|        PyErr_Clear();
 1364|     20|    }
 1365|    128|    assert(m->md_dict != NULL);
  ------------------
  |  Branch (1365:5): [True: 128, False: 0]
  ------------------
 1366|    128|    if (PyDict_GetItemRef(m->md_dict, &_Py_ID(__getattr__), &getattr) < 0) {
  ------------------
  |  |  917|    128|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    128|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    128|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1366:9): [True: 0, False: 128]
  ------------------
 1367|      0|        return NULL;
 1368|      0|    }
 1369|    128|    if (getattr) {
  ------------------
  |  Branch (1369:9): [True: 4, False: 124]
  ------------------
 1370|      4|        PyObject *result = PyObject_CallOneArg(getattr, name);
 1371|      4|        if (result == NULL && suppress == 1 && PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (1371:13): [True: 4, False: 0]
  |  Branch (1371:31): [True: 4, False: 0]
  |  Branch (1371:48): [True: 4, False: 0]
  ------------------
 1372|       |            // suppress AttributeError
 1373|      4|            PyErr_Clear();
 1374|      4|        }
 1375|      4|        Py_DECREF(getattr);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1376|      4|        return result;
 1377|      4|    }
 1378|       |
 1379|       |    // The attribute was not found.  We make a best effort attempt at a useful error message,
 1380|       |    // but only if we're not suppressing AttributeError.
 1381|    124|    if (suppress == 1) {
  ------------------
  |  Branch (1381:9): [True: 104, False: 20]
  ------------------
 1382|    104|        return NULL;
 1383|    104|    }
 1384|     20|    if (PyDict_GetItemRef(m->md_dict, &_Py_ID(__name__), &mod_name) < 0) {
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1384:9): [True: 0, False: 20]
  ------------------
 1385|      0|        return NULL;
 1386|      0|    }
 1387|     20|    if (!mod_name || !PyUnicode_Check(mod_name)) {
  ------------------
  |  |  103|     20|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     20|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1387:9): [True: 0, False: 20]
  |  Branch (1387:22): [True: 0, False: 20]
  ------------------
 1388|      0|        Py_XDECREF(mod_name);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1389|      0|        PyErr_Format(PyExc_AttributeError,
 1390|      0|                    "module has no attribute '%U'", name);
 1391|      0|        return NULL;
 1392|      0|    }
 1393|     20|    PyObject *spec;
 1394|     20|    if (PyDict_GetItemRef(m->md_dict, &_Py_ID(__spec__), &spec) < 0) {
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1394:9): [True: 0, False: 20]
  ------------------
 1395|      0|        Py_DECREF(mod_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1396|      0|        return NULL;
 1397|      0|    }
 1398|     20|    if (spec == NULL) {
  ------------------
  |  Branch (1398:9): [True: 0, False: 20]
  ------------------
 1399|      0|        PyErr_Format(PyExc_AttributeError,
 1400|      0|                     "module '%U' has no attribute '%U'",
 1401|      0|                     mod_name, name);
 1402|      0|        Py_DECREF(mod_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1403|      0|        return NULL;
 1404|      0|    }
 1405|       |
 1406|     20|    PyObject *origin = NULL;
 1407|     20|    if (_PyModuleSpec_GetFileOrigin(spec, &origin) < 0) {
  ------------------
  |  Branch (1407:9): [True: 0, False: 20]
  ------------------
 1408|      0|        goto done;
 1409|      0|    }
 1410|       |
 1411|     20|    int is_possibly_shadowing = _PyModule_IsPossiblyShadowing(origin);
 1412|     20|    if (is_possibly_shadowing < 0) {
  ------------------
  |  Branch (1412:9): [True: 0, False: 20]
  ------------------
 1413|      0|        goto done;
 1414|      0|    }
 1415|     20|    int is_possibly_shadowing_stdlib = 0;
 1416|     20|    if (is_possibly_shadowing) {
  ------------------
  |  Branch (1416:9): [True: 0, False: 20]
  ------------------
 1417|      0|        PyObject *stdlib_modules;
 1418|      0|        if (PySys_GetOptionalAttrString("stdlib_module_names", &stdlib_modules) < 0) {
  ------------------
  |  Branch (1418:13): [True: 0, False: 0]
  ------------------
 1419|      0|            goto done;
 1420|      0|        }
 1421|      0|        if (stdlib_modules && PyAnySet_Check(stdlib_modules)) {
  ------------------
  |  |   31|      0|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   32|      0|      PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (32:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   33|      0|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (33:7): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (1421:13): [True: 0, False: 0]
  ------------------
 1422|      0|            is_possibly_shadowing_stdlib = PySet_Contains(stdlib_modules, mod_name);
 1423|      0|            if (is_possibly_shadowing_stdlib < 0) {
  ------------------
  |  Branch (1423:17): [True: 0, False: 0]
  ------------------
 1424|      0|                Py_DECREF(stdlib_modules);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1425|      0|                goto done;
 1426|      0|            }
 1427|      0|        }
 1428|      0|        Py_XDECREF(stdlib_modules);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1429|      0|    }
 1430|       |
 1431|     20|    if (is_possibly_shadowing_stdlib) {
  ------------------
  |  Branch (1431:9): [True: 0, False: 20]
  ------------------
 1432|      0|        assert(origin);
  ------------------
  |  Branch (1432:9): [True: 0, False: 0]
  ------------------
 1433|      0|        PyErr_Format(PyExc_AttributeError,
 1434|      0|                    "module '%U' has no attribute '%U' "
 1435|      0|                    "(consider renaming '%U' since it has the same "
 1436|      0|                    "name as the standard library module named '%U' "
 1437|      0|                    "and prevents importing that standard library module)",
 1438|      0|                    mod_name, name, origin, mod_name);
 1439|      0|    }
 1440|     20|    else {
 1441|     20|        int rc = _PyModuleSpec_IsInitializing(spec);
 1442|     20|        if (rc < 0) {
  ------------------
  |  Branch (1442:13): [True: 0, False: 20]
  ------------------
 1443|      0|            goto done;
 1444|      0|        }
 1445|     20|        else if (rc > 0) {
  ------------------
  |  Branch (1445:18): [True: 0, False: 20]
  ------------------
 1446|      0|            if (is_possibly_shadowing) {
  ------------------
  |  Branch (1446:17): [True: 0, False: 0]
  ------------------
 1447|      0|                assert(origin);
  ------------------
  |  Branch (1447:17): [True: 0, False: 0]
  ------------------
 1448|       |                // For non-stdlib modules, only mention the possibility of
 1449|       |                // shadowing if the module is being initialized.
 1450|      0|                PyErr_Format(PyExc_AttributeError,
 1451|      0|                            "module '%U' has no attribute '%U' "
 1452|      0|                            "(consider renaming '%U' if it has the same name "
 1453|      0|                            "as a library you intended to import)",
 1454|      0|                            mod_name, name, origin);
 1455|      0|            }
 1456|      0|            else if (origin) {
  ------------------
  |  Branch (1456:22): [True: 0, False: 0]
  ------------------
 1457|      0|                PyErr_Format(PyExc_AttributeError,
 1458|      0|                            "partially initialized "
 1459|      0|                            "module '%U' from '%U' has no attribute '%U' "
 1460|      0|                            "(most likely due to a circular import)",
 1461|      0|                            mod_name, origin, name);
 1462|      0|            }
 1463|      0|            else {
 1464|      0|                PyErr_Format(PyExc_AttributeError,
 1465|      0|                            "partially initialized "
 1466|      0|                            "module '%U' has no attribute '%U' "
 1467|      0|                            "(most likely due to a circular import)",
 1468|      0|                            mod_name, name);
 1469|      0|            }
 1470|      0|        }
 1471|     20|        else {
 1472|     20|            assert(rc == 0);
  ------------------
  |  Branch (1472:13): [True: 20, False: 0]
  ------------------
 1473|     20|            rc = _PyModuleSpec_IsUninitializedSubmodule(spec, name);
 1474|     20|            if (rc > 0) {
  ------------------
  |  Branch (1474:17): [True: 0, False: 20]
  ------------------
 1475|      0|                PyErr_Format(PyExc_AttributeError,
 1476|      0|                            "cannot access submodule '%U' of module '%U' "
 1477|      0|                            "(most likely due to a circular import)",
 1478|      0|                            name, mod_name);
 1479|      0|            }
 1480|     20|            else if (rc == 0) {
  ------------------
  |  Branch (1480:22): [True: 20, False: 0]
  ------------------
 1481|     20|                PyErr_Format(PyExc_AttributeError,
 1482|     20|                            "module '%U' has no attribute '%U'",
 1483|     20|                            mod_name, name);
 1484|     20|            }
 1485|     20|        }
 1486|     20|    }
 1487|       |
 1488|     20|done:
 1489|     20|    Py_XDECREF(origin);
  ------------------
  |  |  524|     20|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1490|     20|    Py_DECREF(spec);
  ------------------
  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1491|     20|    Py_DECREF(mod_name);
  ------------------
  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1492|       |    return NULL;
 1493|     20|}
_Py_module_getattro:
 1498|  2.00k|{
 1499|  2.00k|    PyModuleObject *m = _PyModule_CAST(self);
  ------------------
  |  |   24|  2.00k|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  2.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1499:25): [True: 2.00k, False: 0]
  ------------------
 1500|      0|    return _Py_module_getattro_impl(m, name, 0);
 1501|  2.00k|}
moduleobject.c:module_dict_watcher:
  206|  4.74k|{
  207|  4.74k|    assert(PyDict_Check(dict));
  ------------------
  |  Branch (207:5): [True: 4.74k, False: 0]
  ------------------
  208|       |    // Only if a new lazy object shows up do we need to clear the dictionary. If
  209|       |    // this is adding a new key then the version will be reset anyway.
  210|  4.74k|    if (event == PyDict_EVENT_MODIFIED &&
  ------------------
  |  Branch (210:9): [True: 338, False: 4.40k]
  ------------------
  211|    338|        new_value != NULL &&
  ------------------
  |  Branch (211:9): [True: 338, False: 0]
  ------------------
  212|    338|        PyLazyImport_CheckExact(new_value)) {
  ------------------
  |  |   15|    338|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  ------------------
  |  |  |  |  215|    338|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    338|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    338|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 338]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  213|      0|        _PyDict_ClearKeysVersionLockHeld(dict);
  214|      0|    }
  215|  4.74k|    return 0;
  216|  4.74k|}
moduleobject.c:new_module_notrack:
  173|     64|{
  174|     64|    PyModuleObject *m;
  175|     64|    m = (PyModuleObject *)_PyType_AllocNoTrack(mt, 0);
  176|     64|    if (m == NULL)
  ------------------
  |  Branch (176:9): [True: 0, False: 64]
  ------------------
  177|      0|        return NULL;
  178|     64|    m->md_state = NULL;
  179|     64|    m->md_weaklist = NULL;
  180|     64|    m->md_name = NULL;
  181|     64|    m->md_token_is_def = false;
  182|       |#ifdef Py_GIL_DISABLED
  183|       |    m->md_requires_gil = true;
  184|       |#endif
  185|     64|    m->md_state_size = 0;
  186|     64|    m->md_state_traverse = NULL;
  187|     64|    m->md_state_clear = NULL;
  188|     64|    m->md_state_free = NULL;
  189|     64|    m->md_exec = NULL;
  190|     64|    m->md_token = NULL;
  191|     64|    m->md_dict = PyDict_New();
  192|     64|    if (m->md_dict == NULL) {
  ------------------
  |  Branch (192:9): [True: 0, False: 64]
  ------------------
  193|      0|        Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  194|      0|        return NULL;
  195|      0|    }
  196|     64|    return m;
  197|     64|}
moduleobject.c:module_init_dict:
  149|     64|{
  150|     64|    assert(md_dict != NULL);
  ------------------
  |  Branch (150:5): [True: 64, False: 0]
  ------------------
  151|     64|    if (doc == NULL)
  ------------------
  |  Branch (151:9): [True: 36, False: 28]
  ------------------
  152|     36|        doc = Py_None;
  ------------------
  |  |  616|     36|#  define Py_None (&_Py_NoneStruct)
  ------------------
  153|       |
  154|     64|    if (PyDict_SetItem(md_dict, &_Py_ID(__name__), name) != 0)
  ------------------
  |  |  917|     64|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     64|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     64|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (154:9): [True: 0, False: 64]
  ------------------
  155|      0|        return -1;
  156|     64|    if (PyDict_SetItem(md_dict, &_Py_ID(__doc__), doc) != 0)
  ------------------
  |  |  917|     64|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     64|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     64|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (156:9): [True: 0, False: 64]
  ------------------
  157|      0|        return -1;
  158|     64|    if (PyDict_SetItem(md_dict, &_Py_ID(__package__), Py_None) != 0)
  ------------------
  |  |  917|     64|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     64|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     64|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyDict_SetItem(md_dict, &_Py_ID(__package__), Py_None) != 0)
  ------------------
  |  |  616|     64|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (158:9): [True: 0, False: 64]
  ------------------
  159|      0|        return -1;
  160|     64|    if (PyDict_SetItem(md_dict, &_Py_ID(__loader__), Py_None) != 0)
  ------------------
  |  |  917|     64|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     64|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     64|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyDict_SetItem(md_dict, &_Py_ID(__loader__), Py_None) != 0)
  ------------------
  |  |  616|     64|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (160:9): [True: 0, False: 64]
  ------------------
  161|      0|        return -1;
  162|     64|    if (PyDict_SetItem(md_dict, &_Py_ID(__spec__), Py_None) != 0)
  ------------------
  |  |  917|     64|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     64|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     64|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyDict_SetItem(md_dict, &_Py_ID(__spec__), Py_None) != 0)
  ------------------
  |  |  616|     64|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (162:9): [True: 0, False: 64]
  ------------------
  163|      0|        return -1;
  164|     64|    if (PyUnicode_CheckExact(name)) {
  ------------------
  |  |  104|     64|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     64|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 64, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  165|     64|        Py_XSETREF(mod->md_name, Py_NewRef(name));
  ------------------
  |  |  374|     64|    do { \
  |  |  375|     64|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     64|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     64|        *_tmp_dst_ptr = (src); \
  |  |  378|     64|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     64|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     64|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 64]
  |  |  ------------------
  ------------------
  166|     64|    }
  167|       |
  168|     64|    return 0;
  169|     64|}
moduleobject.c:track_module:
  229|     64|{
  230|     64|    _PyDict_EnablePerThreadRefcounting(m->md_dict);
  231|     64|    _PyObject_SetDeferredRefcount((PyObject *)m);
  232|     64|    PyDict_Watch(MODULE_WATCHER_ID, m->md_dict);
  ------------------
  |  |  294|     64|#define MODULE_WATCHER_ID       2
  ------------------
  233|     64|    PyObject_GC_Track(m);
  234|     64|}
moduleobject.c:check_api_version:
  280|     32|{
  281|     32|    if (module_api_version != PYTHON_API_VERSION && module_api_version != PYTHON_ABI_VERSION) {
  ------------------
  |  |   59|     64|#define PYTHON_API_VERSION 1013
  ------------------
                  if (module_api_version != PYTHON_API_VERSION && module_api_version != PYTHON_ABI_VERSION) {
  ------------------
  |  |   61|      0|#define PYTHON_ABI_VERSION 3
  ------------------
  |  Branch (281:9): [True: 0, False: 32]
  |  Branch (281:53): [True: 0, False: 0]
  ------------------
  282|      0|        int err;
  283|      0|        err = PyErr_WarnFormat(PyExc_RuntimeWarning, 1,
  284|      0|            "Python C API version mismatch for module %.100s: "
  285|      0|            "This Python has API version %d, module %.100s has version %d.",
  286|      0|             name,
  287|      0|             PYTHON_API_VERSION, name, module_api_version);
  ------------------
  |  |   59|      0|#define PYTHON_API_VERSION 1013
  ------------------
  288|      0|        if (err)
  ------------------
  |  Branch (288:13): [True: 0, False: 0]
  ------------------
  289|      0|            return 0;
  290|      0|    }
  291|     32|    return 1;
  292|     32|}
moduleobject.c:module_copy_members_from_deflike:
  338|     32|{
  339|     32|    md->md_state_size = def_like->m_size;
  340|     32|    md->md_state_traverse = def_like->m_traverse;
  341|     32|    md->md_state_clear = def_like->m_clear;
  342|     32|    md->md_state_free = def_like->m_free;
  343|     32|}
moduleobject.c:module_from_slots_and_spec:
  408|     24|{
  409|     24|    createfunc_t create = NULL;
  410|     24|    PyObject *nameobj;
  411|     24|    PyObject *m = NULL;
  412|     24|    uint64_t multiple_interpreters = (uint64_t)Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED;
  ------------------
  |  |   81|     24|#  define Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED ((void *)1)
  ------------------
  413|     24|    bool requires_gil = true;
  414|     24|    const char *name;
  415|     24|    int ret;
  416|     24|    void *token = NULL;
  417|     24|    _Py_modexecfunc m_exec = NULL;
  418|     24|    PyInterpreterState *interp = _PyInterpreterState_GET();
  419|       |
  420|     24|    nameobj = PyObject_GetAttrString(spec, "name");
  421|     24|    if (nameobj == NULL) {
  ------------------
  |  Branch (421:9): [True: 0, False: 24]
  ------------------
  422|      0|        return NULL;
  423|      0|    }
  424|     24|    name = PyUnicode_AsUTF8(nameobj);
  425|     24|    if (name == NULL) {
  ------------------
  |  Branch (425:9): [True: 0, False: 24]
  ------------------
  426|      0|        goto error;
  427|      0|    }
  428|       |
  429|     24|    if (!check_api_version(name, module_api_version)) {
  ------------------
  |  Branch (429:9): [True: 0, False: 24]
  ------------------
  430|      0|        goto error;
  431|      0|    }
  432|       |
  433|     24|    _PySlotIterator it;
  434|       |
  435|     24|    PyModuleDef _dummy_def = {0};
  436|     24|    PyModuleDef *def_like;
  437|     24|    if (slots) {
  ------------------
  |  Branch (437:9): [True: 0, False: 24]
  ------------------
  438|      0|        assert(!original_def);
  ------------------
  |  Branch (438:9): [True: 0, False: 0]
  ------------------
  439|      0|        def_like = &_dummy_def;
  440|      0|         _PySlotIterator_Init(&it, slots, _PySlot_KIND_MOD);
  441|      0|    }
  442|     24|    else {
  443|     24|        assert(original_def);
  ------------------
  |  Branch (443:9): [True: 24, False: 0]
  ------------------
  444|     24|        def_like = original_def;
  445|     24|         _PySlotIterator_InitLegacy(&it, def_like->m_slots, _PySlot_KIND_MOD);
  446|     24|    }
  447|     24|    it.name = name;
  448|       |
  449|    114|    while (_PySlotIterator_Next(&it)) {
  ------------------
  |  Branch (449:12): [True: 90, False: 24]
  ------------------
  450|     90|        switch (it.current.sl_id) {
  ------------------
  |  Branch (450:17): [True: 90, False: 0]
  ------------------
  451|      0|            case Py_slot_invalid:
  ------------------
  |  |   25|      0|#define Py_slot_invalid 0xffff
  ------------------
  |  Branch (451:13): [True: 0, False: 90]
  ------------------
  452|      0|                goto error;
  453|      0|            case Py_mod_create:
  ------------------
  |  |   92|      0|#define Py_mod_create _Py_SLOT_COMPAT_VALUE(1, 84)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (453:13): [True: 0, False: 90]
  ------------------
  454|      0|                create = (createfunc_t)it.current.sl_func;
  455|      0|                break;
  456|     22|            case Py_mod_exec:
  ------------------
  |  |   93|     22|#define Py_mod_exec _Py_SLOT_COMPAT_VALUE(2, 85)
  |  |  ------------------
  |  |  |  |    7|     22|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (456:13): [True: 22, False: 68]
  ------------------
  457|     22|                if (!original_def) {
  ------------------
  |  Branch (457:21): [True: 0, False: 22]
  ------------------
  458|      0|                    if (m_exec) {
  ------------------
  |  Branch (458:25): [True: 0, False: 0]
  ------------------
  459|      0|                        PyErr_Format(
  460|      0|                            PyExc_SystemError,
  461|      0|                            "module %s has multiple Py_mod_exec slots",
  462|      0|                            name);
  463|      0|                        goto error;
  464|      0|                    }
  465|      0|                    m_exec = (_Py_modexecfunc)it.current.sl_func;
  466|      0|                }
  467|     22|                break;
  468|     24|            case Py_mod_multiple_interpreters:
  ------------------
  |  |   94|     24|#define Py_mod_multiple_interpreters _Py_SLOT_COMPAT_VALUE(3, 86)
  |  |  ------------------
  |  |  |  |    7|     24|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (468:13): [True: 24, False: 66]
  ------------------
  469|     24|                multiple_interpreters = it.current.sl_uint64;
  470|     24|                break;
  471|     24|            case Py_mod_gil:
  ------------------
  |  |   95|     24|#define Py_mod_gil _Py_SLOT_COMPAT_VALUE(4, 87)
  |  |  ------------------
  |  |  |  |    7|     24|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (471:13): [True: 24, False: 66]
  ------------------
  472|     24|                {
  473|     24|                    uint64_t val = it.current.sl_uint64;
  474|     24|                    requires_gil = (val != (uint64_t)Py_MOD_GIL_NOT_USED);
  ------------------
  |  |   88|     24|#  define Py_MOD_GIL_NOT_USED ((void *)1)
  ------------------
  475|     24|                }
  476|     24|                break;
  477|     20|            case Py_mod_abi:
  ------------------
  |  |  117|     20|#define Py_mod_abi 109
  ------------------
  |  Branch (477:13): [True: 20, False: 70]
  ------------------
  478|     20|                if (PyABIInfo_Check(it.current.sl_ptr, name) < 0) {
  ------------------
  |  Branch (478:21): [True: 0, False: 20]
  ------------------
  479|      0|                    goto error;
  480|      0|                }
  481|     20|                break;
  482|     20|            case Py_mod_token:
  ------------------
  |  |  118|      0|#define Py_mod_token 110
  ------------------
  |  Branch (482:13): [True: 0, False: 90]
  ------------------
  483|      0|                if (original_def && original_def != it.current.sl_ptr) {
  ------------------
  |  Branch (483:21): [True: 0, False: 0]
  |  Branch (483:37): [True: 0, False: 0]
  ------------------
  484|      0|                    PyErr_Format(
  485|      0|                        PyExc_SystemError,
  486|      0|                        "module %s: arbitrary Py_mod_token not "
  487|      0|                        "allowed with PyModuleDef",
  488|      0|                        name);
  489|      0|                    goto error;
  490|      0|                }
  491|      0|                token = it.current.sl_ptr;
  492|      0|                break;
  493|       |            // Common case: Copy a PEP 793 slot to def_like
  494|      0|#define DEF_SLOT_CASE(SLOT, TYPE, SL_MEMBER, MEMBER)                        \
  495|      0|            case SLOT:                                                      \
  496|      0|                do {                                                        \
  497|      0|                    if (original_def) {                                     \
  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  500|      0|                        if (orig_value != new_value) {                      \
  501|      0|                            PyErr_Format(                                   \
  502|      0|                                PyExc_SystemError,                          \
  503|      0|                                "module %s: %s conflicts with "             \
  504|      0|                                "PyModuleDef." #MEMBER,                     \
  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  506|      0|                            goto error;                                     \
  507|      0|                        }                                                   \
  508|      0|                    }                                                       \
  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  510|      0|                } while (0);                                                \
  511|      0|                break;                                                      \
  512|       |            /////////////////////////////////////////////////////////////////
  513|      0|            DEF_SLOT_CASE(Py_mod_name, char*, sl_ptr, m_name)
  ------------------
  |  |  495|      0|            case SLOT:                                                      \
  |  |  ------------------
  |  |  |  Branch (495:13): [True: 0, False: 90]
  |  |  ------------------
  |  |  496|      0|                do {                                                        \
  |  |  497|      0|                    if (original_def) {                                     \
  |  |  ------------------
  |  |  |  Branch (497:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  |  |  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  |  |  500|      0|                        if (orig_value != new_value) {                      \
  |  |  ------------------
  |  |  |  Branch (500:29): [True: 0, False: 0]
  |  |  ------------------
  |  |  501|      0|                            PyErr_Format(                                   \
  |  |  502|      0|                                PyExc_SystemError,                          \
  |  |  503|      0|                                "module %s: %s conflicts with "             \
  |  |  504|      0|                                "PyModuleDef." #MEMBER,                     \
  |  |  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  |  |  506|      0|                            goto error;                                     \
  |  |  507|      0|                        }                                                   \
  |  |  508|      0|                    }                                                       \
  |  |  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  |  |  510|      0|                } while (0);                                                \
  |  |  ------------------
  |  |  |  Branch (510:26): [Folded, False: 0]
  |  |  ------------------
  |  |  511|      0|                break;                                                      \
  ------------------
  514|      0|            DEF_SLOT_CASE(Py_mod_doc, char*, sl_ptr, m_doc)
  ------------------
  |  |  495|      0|            case SLOT:                                                      \
  |  |  ------------------
  |  |  |  Branch (495:13): [True: 0, False: 90]
  |  |  ------------------
  |  |  496|      0|                do {                                                        \
  |  |  497|      0|                    if (original_def) {                                     \
  |  |  ------------------
  |  |  |  Branch (497:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  |  |  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  |  |  500|      0|                        if (orig_value != new_value) {                      \
  |  |  ------------------
  |  |  |  Branch (500:29): [True: 0, False: 0]
  |  |  ------------------
  |  |  501|      0|                            PyErr_Format(                                   \
  |  |  502|      0|                                PyExc_SystemError,                          \
  |  |  503|      0|                                "module %s: %s conflicts with "             \
  |  |  504|      0|                                "PyModuleDef." #MEMBER,                     \
  |  |  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  |  |  506|      0|                            goto error;                                     \
  |  |  507|      0|                        }                                                   \
  |  |  508|      0|                    }                                                       \
  |  |  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  |  |  510|      0|                } while (0);                                                \
  |  |  ------------------
  |  |  |  Branch (510:26): [Folded, False: 0]
  |  |  ------------------
  |  |  511|      0|                break;                                                      \
  ------------------
  515|      0|            DEF_SLOT_CASE(Py_mod_state_size, Py_ssize_t, sl_size, m_size)
  ------------------
  |  |  495|      0|            case SLOT:                                                      \
  |  |  ------------------
  |  |  |  Branch (495:13): [True: 0, False: 90]
  |  |  ------------------
  |  |  496|      0|                do {                                                        \
  |  |  497|      0|                    if (original_def) {                                     \
  |  |  ------------------
  |  |  |  Branch (497:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  |  |  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  |  |  500|      0|                        if (orig_value != new_value) {                      \
  |  |  ------------------
  |  |  |  Branch (500:29): [True: 0, False: 0]
  |  |  ------------------
  |  |  501|      0|                            PyErr_Format(                                   \
  |  |  502|      0|                                PyExc_SystemError,                          \
  |  |  503|      0|                                "module %s: %s conflicts with "             \
  |  |  504|      0|                                "PyModuleDef." #MEMBER,                     \
  |  |  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  |  |  506|      0|                            goto error;                                     \
  |  |  507|      0|                        }                                                   \
  |  |  508|      0|                    }                                                       \
  |  |  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  |  |  510|      0|                } while (0);                                                \
  |  |  ------------------
  |  |  |  Branch (510:26): [Folded, False: 0]
  |  |  ------------------
  |  |  511|      0|                break;                                                      \
  ------------------
  516|      0|            DEF_SLOT_CASE(Py_mod_methods, PyMethodDef*, sl_ptr, m_methods)
  ------------------
  |  |  495|      0|            case SLOT:                                                      \
  |  |  ------------------
  |  |  |  Branch (495:13): [True: 0, False: 90]
  |  |  ------------------
  |  |  496|      0|                do {                                                        \
  |  |  497|      0|                    if (original_def) {                                     \
  |  |  ------------------
  |  |  |  Branch (497:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  |  |  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  |  |  500|      0|                        if (orig_value != new_value) {                      \
  |  |  ------------------
  |  |  |  Branch (500:29): [True: 0, False: 0]
  |  |  ------------------
  |  |  501|      0|                            PyErr_Format(                                   \
  |  |  502|      0|                                PyExc_SystemError,                          \
  |  |  503|      0|                                "module %s: %s conflicts with "             \
  |  |  504|      0|                                "PyModuleDef." #MEMBER,                     \
  |  |  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  |  |  506|      0|                            goto error;                                     \
  |  |  507|      0|                        }                                                   \
  |  |  508|      0|                    }                                                       \
  |  |  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  |  |  510|      0|                } while (0);                                                \
  |  |  ------------------
  |  |  |  Branch (510:26): [Folded, False: 0]
  |  |  ------------------
  |  |  511|      0|                break;                                                      \
  ------------------
  517|      0|            DEF_SLOT_CASE(Py_mod_state_traverse,
  ------------------
  |  |  495|      0|            case SLOT:                                                      \
  |  |  ------------------
  |  |  |  Branch (495:13): [True: 0, False: 90]
  |  |  ------------------
  |  |  496|      0|                do {                                                        \
  |  |  497|      0|                    if (original_def) {                                     \
  |  |  ------------------
  |  |  |  Branch (497:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  |  |  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  |  |  500|      0|                        if (orig_value != new_value) {                      \
  |  |  ------------------
  |  |  |  Branch (500:29): [True: 0, False: 0]
  |  |  ------------------
  |  |  501|      0|                            PyErr_Format(                                   \
  |  |  502|      0|                                PyExc_SystemError,                          \
  |  |  503|      0|                                "module %s: %s conflicts with "             \
  |  |  504|      0|                                "PyModuleDef." #MEMBER,                     \
  |  |  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  |  |  506|      0|                            goto error;                                     \
  |  |  507|      0|                        }                                                   \
  |  |  508|      0|                    }                                                       \
  |  |  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  |  |  510|      0|                } while (0);                                                \
  |  |  ------------------
  |  |  |  Branch (510:26): [Folded, False: 0]
  |  |  ------------------
  |  |  511|      0|                break;                                                      \
  ------------------
  518|      0|                          traverseproc, sl_func, m_traverse)
  519|      0|            DEF_SLOT_CASE(Py_mod_state_clear, inquiry, sl_func, m_clear)
  ------------------
  |  |  495|      0|            case SLOT:                                                      \
  |  |  ------------------
  |  |  |  Branch (495:13): [True: 0, False: 90]
  |  |  ------------------
  |  |  496|      0|                do {                                                        \
  |  |  497|      0|                    if (original_def) {                                     \
  |  |  ------------------
  |  |  |  Branch (497:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  |  |  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  |  |  500|      0|                        if (orig_value != new_value) {                      \
  |  |  ------------------
  |  |  |  Branch (500:29): [True: 0, False: 0]
  |  |  ------------------
  |  |  501|      0|                            PyErr_Format(                                   \
  |  |  502|      0|                                PyExc_SystemError,                          \
  |  |  503|      0|                                "module %s: %s conflicts with "             \
  |  |  504|      0|                                "PyModuleDef." #MEMBER,                     \
  |  |  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  |  |  506|      0|                            goto error;                                     \
  |  |  507|      0|                        }                                                   \
  |  |  508|      0|                    }                                                       \
  |  |  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  |  |  510|      0|                } while (0);                                                \
  |  |  ------------------
  |  |  |  Branch (510:26): [Folded, False: 0]
  |  |  ------------------
  |  |  511|      0|                break;                                                      \
  ------------------
  520|     90|            DEF_SLOT_CASE(Py_mod_state_free, freefunc, sl_func, m_free)
  ------------------
  |  |  495|      0|            case SLOT:                                                      \
  |  |  ------------------
  |  |  |  Branch (495:13): [True: 0, False: 90]
  |  |  ------------------
  |  |  496|      0|                do {                                                        \
  |  |  497|      0|                    if (original_def) {                                     \
  |  |  ------------------
  |  |  |  Branch (497:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  498|      0|                        TYPE orig_value = (TYPE)original_def->MEMBER;       \
  |  |  499|      0|                        TYPE new_value = (TYPE)it.current.SL_MEMBER;        \
  |  |  500|      0|                        if (orig_value != new_value) {                      \
  |  |  ------------------
  |  |  |  Branch (500:29): [True: 0, False: 0]
  |  |  ------------------
  |  |  501|      0|                            PyErr_Format(                                   \
  |  |  502|      0|                                PyExc_SystemError,                          \
  |  |  503|      0|                                "module %s: %s conflicts with "             \
  |  |  504|      0|                                "PyModuleDef." #MEMBER,                     \
  |  |  505|      0|                                name, _PySlot_GetName(it.current.sl_id));   \
  |  |  506|      0|                            goto error;                                     \
  |  |  507|      0|                        }                                                   \
  |  |  508|      0|                    }                                                       \
  |  |  509|      0|                    (def_like->MEMBER) = (TYPE)it.current.SL_MEMBER;        \
  |  |  510|      0|                } while (0);                                                \
  |  |  ------------------
  |  |  |  Branch (510:26): [Folded, False: 0]
  |  |  ------------------
  |  |  511|      0|                break;                                                      \
  ------------------
  521|     90|#undef DEF_SLOT_CASE
  522|     90|        }
  523|     90|    }
  524|     24|    if (!original_def && !_PySlotIterator_SawSlot(&it, Py_mod_abi)) {
  ------------------
  |  |  117|      0|#define Py_mod_abi 109
  ------------------
  |  Branch (524:9): [True: 0, False: 24]
  |  Branch (524:26): [True: 0, False: 0]
  ------------------
  525|      0|        PyErr_Format(
  526|      0|            PyExc_SystemError,
  527|      0|            "module %s does not define Py_mod_abi,"
  528|      0|            " which is mandatory for modules defined from slots only.",
  529|      0|            name);
  530|      0|        goto error;
  531|      0|    }
  532|       |
  533|       |#ifdef Py_GIL_DISABLED
  534|       |    // For modules created directly from slots (not from a def), we enable
  535|       |    // the GIL here (pairing `_PyEval_EnableGILTransient` with
  536|       |    // an immediate `_PyImport_EnableGILAndWarn`).
  537|       |    // For modules created from a def, the caller is responsible for this.
  538|       |    if (!original_def && requires_gil) {
  539|       |        PyThreadState *tstate = _PyThreadState_GET();
  540|       |        if (_PyEval_EnableGILTransient(tstate) < 0) {
  541|       |            goto error;
  542|       |        }
  543|       |        if (_PyImport_EnableGILAndWarn(tstate, nameobj) < 0) {
  544|       |            goto error;
  545|       |        }
  546|       |    }
  547|       |#endif
  548|       |
  549|     24|    if (def_like->m_size < 0) {
  ------------------
  |  Branch (549:9): [True: 0, False: 24]
  ------------------
  550|      0|        PyErr_Format(
  551|      0|            PyExc_SystemError,
  552|      0|            "module %s: m_size may not be negative for multi-phase initialization",
  553|      0|            name);
  554|      0|        goto error;
  555|      0|    }
  556|       |
  557|       |    /* By default, multi-phase init modules are expected
  558|       |       to work under multiple interpreters. */
  559|     24|    if (multiple_interpreters == (int64_t)(intptr_t)Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED) {
  ------------------
  |  |   80|     24|#  define Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED ((void *)0)
  ------------------
  |  Branch (559:9): [True: 0, False: 24]
  ------------------
  560|      0|        if (!_Py_IsMainInterpreter(interp)
  ------------------
  |  Branch (560:13): [True: 0, False: 0]
  ------------------
  561|      0|            && _PyImport_CheckSubinterpIncompatibleExtensionAllowed(name) < 0)
  ------------------
  |  Branch (561:16): [True: 0, False: 0]
  ------------------
  562|      0|        {
  563|      0|            goto error;
  564|      0|        }
  565|      0|    }
  566|     24|    else if (multiple_interpreters != (int64_t)(intptr_t)Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
  ------------------
  |  |   82|     48|#  define Py_MOD_PER_INTERPRETER_GIL_SUPPORTED ((void *)2)
  ------------------
  |  Branch (566:14): [True: 0, False: 24]
  ------------------
  567|      0|             && interp->ceval.own_gil
  ------------------
  |  Branch (567:17): [True: 0, False: 0]
  ------------------
  568|      0|             && !_Py_IsMainInterpreter(interp)
  ------------------
  |  Branch (568:17): [True: 0, False: 0]
  ------------------
  569|      0|             && _PyImport_CheckSubinterpIncompatibleExtensionAllowed(name) < 0)
  ------------------
  |  Branch (569:17): [True: 0, False: 0]
  ------------------
  570|      0|    {
  571|      0|        goto error;
  572|      0|    }
  573|       |
  574|     24|    if (create) {
  ------------------
  |  Branch (574:9): [True: 0, False: 24]
  ------------------
  575|      0|        m = create(spec, original_def);
  576|      0|        if (m == NULL) {
  ------------------
  |  Branch (576:13): [True: 0, False: 0]
  ------------------
  577|      0|            if (!PyErr_Occurred()) {
  ------------------
  |  Branch (577:17): [True: 0, False: 0]
  ------------------
  578|      0|                PyErr_Format(
  579|      0|                    PyExc_SystemError,
  580|      0|                    "creation of module %s failed without setting an exception",
  581|      0|                    name);
  582|      0|            }
  583|      0|            goto error;
  584|      0|        } else {
  585|      0|            if (PyErr_Occurred()) {
  ------------------
  |  Branch (585:17): [True: 0, False: 0]
  ------------------
  586|      0|                _PyErr_FormatFromCause(
  587|      0|                    PyExc_SystemError,
  588|      0|                    "creation of module %s raised unreported exception",
  589|      0|                    name);
  590|      0|                goto error;
  591|      0|            }
  592|      0|        }
  593|     24|    } else {
  594|     24|        m = PyModule_NewObject(nameobj);
  595|     24|        if (m == NULL) {
  ------------------
  |  Branch (595:13): [True: 0, False: 24]
  ------------------
  596|      0|            goto error;
  597|      0|        }
  598|     24|    }
  599|       |
  600|     24|    if (PyModule_Check(m)) {
  ------------------
  |  |   12|     24|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|     24|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 24, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  601|     24|        PyModuleObject *mod = (PyModuleObject*)m;
  602|     24|        mod->md_state = NULL;
  603|     24|        module_copy_members_from_deflike(mod, def_like);
  604|     24|        if (original_def) {
  ------------------
  |  Branch (604:13): [True: 24, False: 0]
  ------------------
  605|     24|            assert (!token || token == original_def);
  ------------------
  |  Branch (605:13): [True: 24, False: 0]
  |  Branch (605:13): [True: 0, False: 0]
  ------------------
  606|     24|            mod->md_token = original_def;
  607|     24|            mod->md_token_is_def = 1;
  608|     24|        }
  609|      0|        else {
  610|      0|            mod->md_token = token;
  611|      0|        }
  612|       |#ifdef Py_GIL_DISABLED
  613|       |        mod->md_requires_gil = requires_gil;
  614|       |#else
  615|     24|        (void)requires_gil;
  616|     24|#endif
  617|     24|        mod->md_exec = m_exec;
  618|     24|    } else {
  619|      0|        if (def_like->m_size > 0 || def_like->m_traverse || def_like->m_clear
  ------------------
  |  Branch (619:13): [True: 0, False: 0]
  |  Branch (619:37): [True: 0, False: 0]
  |  Branch (619:61): [True: 0, False: 0]
  ------------------
  620|      0|            || def_like->m_free)
  ------------------
  |  Branch (620:16): [True: 0, False: 0]
  ------------------
  621|      0|        {
  622|      0|            PyErr_Format(
  623|      0|                PyExc_SystemError,
  624|      0|                "module %s is not a module object, but requests module state",
  625|      0|                name);
  626|      0|            goto error;
  627|      0|        }
  628|      0|        if (_PySlotIterator_SawSlot(&it, Py_mod_exec)) {
  ------------------
  |  |   93|      0|#define Py_mod_exec _Py_SLOT_COMPAT_VALUE(2, 85)
  |  |  ------------------
  |  |  |  |    7|      0|#define _Py_SLOT_COMPAT_VALUE(OLD, NEW) NEW
  |  |  ------------------
  ------------------
  |  Branch (628:13): [True: 0, False: 0]
  ------------------
  629|      0|            PyErr_Format(
  630|      0|                PyExc_SystemError,
  631|      0|                "module %s specifies execution slots, but did not create "
  632|      0|                    "a ModuleType instance",
  633|      0|                name);
  634|      0|            goto error;
  635|      0|        }
  636|      0|        if (token) {
  ------------------
  |  Branch (636:13): [True: 0, False: 0]
  ------------------
  637|      0|            PyErr_Format(
  638|      0|                PyExc_SystemError,
  639|      0|                "module %s specifies a token, but did not create "
  640|      0|                    "a ModuleType instance",
  641|      0|                name);
  642|      0|            goto error;
  643|      0|        }
  644|      0|    }
  645|       |
  646|     24|    if (def_like->m_methods != NULL) {
  ------------------
  |  Branch (646:9): [True: 24, False: 0]
  ------------------
  647|     24|        ret = _add_methods_to_object(m, nameobj, def_like->m_methods);
  648|     24|        if (ret != 0) {
  ------------------
  |  Branch (648:13): [True: 0, False: 24]
  ------------------
  649|      0|            goto error;
  650|      0|        }
  651|     24|    }
  652|       |
  653|     24|    if (def_like->m_doc != NULL) {
  ------------------
  |  Branch (653:9): [True: 22, False: 2]
  ------------------
  654|     22|        ret = PyModule_SetDocString(m, def_like->m_doc);
  655|     22|        if (ret != 0) {
  ------------------
  |  Branch (655:13): [True: 0, False: 22]
  ------------------
  656|      0|            goto error;
  657|      0|        }
  658|     22|    }
  659|       |
  660|     24|    Py_DECREF(nameobj);
  ------------------
  |  |  430|     24|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  661|     24|    return m;
  662|       |
  663|      0|error:
  664|      0|    Py_DECREF(nameobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  665|      0|    Py_XDECREF(m);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  666|       |    return NULL;
  667|     24|}
moduleobject.c:alloc_state:
  729|     48|{
  730|     48|    if (!PyModule_Check(module)) {
  ------------------
  |  |   12|     48|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|     48|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (730:9): [True: 0, False: 48]
  ------------------
  731|      0|        PyErr_Format(PyExc_TypeError, "expected module, got %T", module);
  732|      0|        return -1;
  733|      0|    }
  734|     48|    PyModuleObject *md = (PyModuleObject*)module;
  735|       |
  736|     48|    if (md->md_state_size >= 0) {
  ------------------
  |  Branch (736:9): [True: 48, False: 0]
  ------------------
  737|     48|        if (md->md_state == NULL) {
  ------------------
  |  Branch (737:13): [True: 24, False: 24]
  ------------------
  738|       |            /* Always set a state pointer; this serves as a marker to skip
  739|       |             * multiple initialization (importlib.reload() is no-op) */
  740|     24|            md->md_state = PyMem_Malloc(md->md_state_size);
  741|     24|            if (!md->md_state) {
  ------------------
  |  Branch (741:17): [True: 0, False: 24]
  ------------------
  742|      0|                PyErr_NoMemory();
  743|      0|                return -1;
  744|      0|            }
  745|     24|            memset(md->md_state, 0, md->md_state_size);
  746|     24|        }
  747|     48|    }
  748|     48|    return 0;
  749|     48|}
moduleobject.c:run_exec_func:
  706|     22|{
  707|     22|    int ret = exec(module);
  708|     22|    if (ret != 0) {
  ------------------
  |  Branch (708:9): [True: 0, False: 22]
  ------------------
  709|      0|        if (!PyErr_Occurred()) {
  ------------------
  |  Branch (709:13): [True: 0, False: 0]
  ------------------
  710|      0|            PyErr_Format(
  711|      0|                PyExc_SystemError,
  712|      0|                "execution of %R failed without setting an exception",
  713|      0|                module);
  714|      0|        }
  715|      0|        return -1;
  716|      0|    }
  717|     22|    if (PyErr_Occurred()) {
  ------------------
  |  Branch (717:9): [True: 0, False: 22]
  ------------------
  718|      0|        _PyErr_FormatFromCause(
  719|      0|            PyExc_SystemError,
  720|      0|            "execution of module %R raised unreported exception",
  721|      0|            module);
  722|      0|        return -1;
  723|      0|    }
  724|     22|    return 0;
  725|     22|}
moduleobject.c:_add_methods_to_object:
  296|     32|{
  297|     32|    PyObject *func;
  298|     32|    PyMethodDef *fdef;
  299|       |
  300|    920|    for (fdef = functions; fdef->ml_name != NULL; fdef++) {
  ------------------
  |  Branch (300:28): [True: 888, False: 32]
  ------------------
  301|    888|        if ((fdef->ml_flags & METH_CLASS) ||
  ------------------
  |  |  104|    888|#define METH_CLASS    0x0010
  ------------------
  |  Branch (301:13): [True: 0, False: 888]
  ------------------
  302|    888|            (fdef->ml_flags & METH_STATIC)) {
  ------------------
  |  |  105|    888|#define METH_STATIC   0x0020
  ------------------
  |  Branch (302:13): [True: 0, False: 888]
  ------------------
  303|      0|            PyErr_SetString(PyExc_ValueError,
  304|      0|                            "module functions cannot set"
  305|      0|                            " METH_CLASS or METH_STATIC");
  306|      0|            return -1;
  307|      0|        }
  308|    888|        func = PyCFunction_NewEx(fdef, (PyObject*)module, name);
  ------------------
  |  |   87|    888|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
  309|    888|        if (func == NULL) {
  ------------------
  |  Branch (309:13): [True: 0, False: 888]
  ------------------
  310|      0|            return -1;
  311|      0|        }
  312|    888|        _PyObject_SetDeferredRefcount(func);
  313|    888|        if (PyObject_SetAttrString(module, fdef->ml_name, func) != 0) {
  ------------------
  |  Branch (313:13): [True: 0, False: 888]
  ------------------
  314|      0|            Py_DECREF(func);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  315|      0|            return -1;
  316|      0|        }
  317|    888|        Py_DECREF(func);
  ------------------
  |  |  430|    888|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    888|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    888|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  318|    888|    }
  319|       |
  320|     32|    return 0;
  321|     32|}
moduleobject.c:assert_def_missing_or_redundant:
   34|     68|{
   35|       |    /* We copy all relevant info into the module object.
   36|       |     * Modules created using a def keep a reference to that (statically
   37|       |     * allocated) def; the info there should match what we have in the module.
   38|       |     */
   39|     68|#ifndef NDEBUG
   40|     68|    if (m->md_token_is_def) {
  ------------------
  |  Branch (40:9): [True: 48, False: 20]
  ------------------
   41|     48|        PyModuleDef *def = (PyModuleDef *)m->md_token;
   42|     48|        assert(def);
  ------------------
  |  Branch (42:9): [True: 48, False: 0]
  ------------------
   43|     48|#define DO_ASSERT(F) assert (def->m_ ## F == m->md_state_ ## F);
   44|     48|        DO_ASSERT(size);
  ------------------
  |  |   43|     48|#define DO_ASSERT(F) assert (def->m_ ## F == m->md_state_ ## F);
  ------------------
  |  Branch (44:9): [True: 48, False: 0]
  ------------------
   45|     48|        DO_ASSERT(traverse);
  ------------------
  |  |   43|     48|#define DO_ASSERT(F) assert (def->m_ ## F == m->md_state_ ## F);
  ------------------
  |  Branch (45:9): [True: 48, False: 0]
  ------------------
   46|     48|        DO_ASSERT(clear);
  ------------------
  |  |   43|     48|#define DO_ASSERT(F) assert (def->m_ ## F == m->md_state_ ## F);
  ------------------
  |  Branch (46:9): [True: 48, False: 0]
  ------------------
   47|     48|        DO_ASSERT(free);
  ------------------
  |  |   43|     48|#define DO_ASSERT(F) assert (def->m_ ## F == m->md_state_ ## F);
  ------------------
  |  Branch (47:9): [True: 48, False: 0]
  ------------------
   48|     48|#undef DO_ASSERT
   49|     48|    }
   50|     68|#endif // NDEBUG
   51|     68|}
moduleobject.c:module_traverse:
 1505|     68|{
 1506|     68|    PyModuleObject *m = _PyModule_CAST(self);
  ------------------
  |  |   24|     68|    (assert(PyModule_Check(op)), _Py_CAST(PyModuleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1506:25): [True: 68, False: 0]
  ------------------
 1507|       |
 1508|      0|    assert_def_missing_or_redundant(m);
 1509|       |    /* bpo-39824: Don't call m_traverse() if m_size > 0 and md_state=NULL */
 1510|     68|    if (m->md_state_traverse && (m->md_state_size <= 0 || m->md_state != NULL))
  ------------------
  |  Branch (1510:9): [True: 16, False: 52]
  |  Branch (1510:34): [True: 0, False: 16]
  |  Branch (1510:59): [True: 16, False: 0]
  ------------------
 1511|     16|    {
 1512|     16|        int res = m->md_state_traverse((PyObject*)m, visit, arg);
 1513|     16|        if (res)
  ------------------
  |  Branch (1513:13): [True: 0, False: 16]
  ------------------
 1514|      0|            return res;
 1515|     16|    }
 1516|       |
 1517|     68|    Py_VISIT(m->md_dict);
  ------------------
  |  |  194|     68|    do {                                                                \
  |  |  195|     68|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 68, False: 0]
  |  |  ------------------
  |  |  196|     68|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     68|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 68]
  |  |  ------------------
  |  |  198|     68|                return vret;                                            \
  |  |  199|     68|        }                                                               \
  |  |  200|     68|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 68]
  |  |  ------------------
  ------------------
 1518|     68|    return 0;
 1519|     68|}
moduleobject.c:module_dir:
 1546|      2|{
 1547|      2|    PyObject *result = NULL;
 1548|      2|    PyObject *dict;
 1549|      2|    if (PyModule_CheckExact(self)) {
  ------------------
  |  |   13|      2|#define PyModule_CheckExact(op) Py_IS_TYPE((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1550|      2|        dict = Py_NewRef(((PyModuleObject *)self)->md_dict);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1551|      2|    } else {
 1552|      0|        dict = PyObject_GetAttr(self, &_Py_ID(__dict__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1553|      0|    }
 1554|       |
 1555|      2|    if (dict != NULL) {
  ------------------
  |  Branch (1555:9): [True: 2, False: 0]
  ------------------
 1556|      2|        if (PyDict_Check(dict)) {
  ------------------
  |  |   18|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1557|      2|            PyObject *dirfunc = PyDict_GetItemWithError(dict, &_Py_ID(__dir__));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1558|      2|            if (dirfunc) {
  ------------------
  |  Branch (1558:17): [True: 0, False: 2]
  ------------------
 1559|      0|                result = _PyObject_CallNoArgs(dirfunc);
 1560|      0|            }
 1561|      2|            else if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1561:22): [True: 2, False: 0]
  ------------------
 1562|      2|                result = PyDict_Keys(dict);
 1563|      2|            }
 1564|      2|        }
 1565|      0|        else {
 1566|      0|            PyErr_Format(PyExc_TypeError, "<module>.__dict__ is not a dictionary");
 1567|      0|        }
 1568|      2|    }
 1569|       |
 1570|      2|    Py_XDECREF(dict);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1571|      2|    return result;
 1572|      2|}
moduleobject.c:module___init___impl:
 1131|     28|{
 1132|     28|    return module_init_dict(self, self->md_dict, name, doc);
 1133|     28|}
moduleobject.c:new_module:
  238|     28|{
  239|     28|    PyModuleObject *m = new_module_notrack(mt);
  240|     28|    if (m != NULL) {
  ------------------
  |  Branch (240:9): [True: 28, False: 0]
  ------------------
  241|     28|        track_module(m);
  242|     28|    }
  243|     28|    return (PyObject *)m;
  244|     28|}

_PyNamespace_New:
  323|      8|{
  324|      8|    PyObject *ns = namespace_new(&_PyNamespace_Type, NULL, NULL);
  325|      8|    if (ns == NULL)
  ------------------
  |  Branch (325:9): [True: 0, False: 8]
  ------------------
  326|      0|        return NULL;
  327|       |
  328|      8|    if (kwds == NULL)
  ------------------
  |  Branch (328:9): [True: 2, False: 6]
  ------------------
  329|      2|        return ns;
  330|      6|    if (PyDict_Update(((_PyNamespaceObject *)ns)->ns_dict, kwds) != 0) {
  ------------------
  |  Branch (330:9): [True: 0, False: 6]
  ------------------
  331|      0|        Py_DECREF(ns);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  332|      0|        return NULL;
  333|      0|    }
  334|       |
  335|      6|    return (PyObject *)ns;
  336|      6|}
namespaceobject.c:namespace_dealloc:
   84|      2|{
   85|      2|    _PyNamespaceObject *ns = _PyNamespace_CAST(op);
  ------------------
  |  |   15|      2|#define _PyNamespace_CAST(op) _Py_CAST(_PyNamespaceObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   86|      2|    PyObject_GC_UnTrack(ns);
   87|      2|    Py_CLEAR(ns->ns_dict);
  ------------------
  |  |  484|      2|    do { \
  |  |  485|      2|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      2|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      2|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  488|      2|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      2|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      2|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      2|        } \
  |  |  491|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
   88|      2|    Py_TYPE(ns)->tp_free((PyObject *)ns);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   89|      2|}
namespaceobject.c:namespace_traverse:
  179|     32|{
  180|     32|    _PyNamespaceObject *ns = _PyNamespace_CAST(op);
  ------------------
  |  |   15|     32|#define _PyNamespace_CAST(op) _Py_CAST(_PyNamespaceObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  181|     32|    Py_VISIT(ns->ns_dict);
  ------------------
  |  |  194|     32|    do {                                                                \
  |  |  195|     32|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 32, False: 0]
  |  |  ------------------
  |  |  196|     32|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     32|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 32]
  |  |  ------------------
  |  |  198|     32|                return vret;                                            \
  |  |  199|     32|        }                                                               \
  |  |  200|     32|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 32]
  |  |  ------------------
  ------------------
  182|     32|    return 0;
  183|     32|}
namespaceobject.c:namespace_init:
   48|     30|{
   49|     30|    _PyNamespaceObject *ns = _PyNamespace_CAST(op);
  ------------------
  |  |   15|     30|#define _PyNamespace_CAST(op) _Py_CAST(_PyNamespaceObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   50|     30|    PyObject *arg = NULL;
   51|     30|    if (!PyArg_UnpackTuple(args, _PyType_Name(Py_TYPE(ns)), 0, 1, &arg)) {
  ------------------
  |  |  213|     30|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (51:9): [True: 0, False: 30]
  ------------------
   52|      0|        return -1;
   53|      0|    }
   54|     30|    if (arg != NULL) {
  ------------------
  |  Branch (54:9): [True: 0, False: 30]
  ------------------
   55|      0|        PyObject *dict;
   56|      0|        if (PyDict_CheckExact(arg)) {
  ------------------
  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   57|      0|            dict = Py_NewRef(arg);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   58|      0|        }
   59|      0|        else {
   60|      0|            dict = PyObject_CallOneArg((PyObject *)&PyDict_Type, arg);
   61|      0|            if (dict == NULL) {
  ------------------
  |  Branch (61:17): [True: 0, False: 0]
  ------------------
   62|      0|                return -1;
   63|      0|            }
   64|      0|        }
   65|      0|        int err = (!PyArg_ValidateKeywordArguments(dict) ||
  ------------------
  |  Branch (65:20): [True: 0, False: 0]
  ------------------
   66|      0|                   PyDict_Update(ns->ns_dict, dict) < 0);
  ------------------
  |  Branch (66:20): [True: 0, False: 0]
  ------------------
   67|      0|        Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   68|      0|        if (err) {
  ------------------
  |  Branch (68:13): [True: 0, False: 0]
  ------------------
   69|      0|            return -1;
   70|      0|        }
   71|      0|    }
   72|     30|    if (kwds == NULL) {
  ------------------
  |  Branch (72:9): [True: 0, False: 30]
  ------------------
   73|      0|        return 0;
   74|      0|    }
   75|     30|    if (!PyArg_ValidateKeywordArguments(kwds)) {
  ------------------
  |  Branch (75:9): [True: 0, False: 30]
  ------------------
   76|      0|        return -1;
   77|      0|    }
   78|     30|    return PyDict_Update(ns->ns_dict, kwds);
   79|     30|}
namespaceobject.c:namespace_new:
   29|     38|{
   30|     38|    PyObject *self;
   31|       |
   32|     38|    assert(type != NULL && type->tp_alloc != NULL);
  ------------------
  |  Branch (32:5): [True: 38, False: 0]
  |  Branch (32:5): [True: 38, False: 0]
  ------------------
   33|     38|    self = type->tp_alloc(type, 0);
   34|     38|    if (self != NULL) {
  ------------------
  |  Branch (34:9): [True: 38, False: 0]
  ------------------
   35|     38|        _PyNamespaceObject *ns = (_PyNamespaceObject *)self;
   36|     38|        ns->ns_dict = PyDict_New();
   37|     38|        if (ns->ns_dict == NULL) {
  ------------------
  |  Branch (37:13): [True: 0, False: 38]
  ------------------
   38|      0|            Py_DECREF(ns);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   39|      0|            return NULL;
   40|      0|        }
   41|     38|    }
   42|     38|    return self;
   43|     38|}

_Py_DecRef:
  356|    550|{
  357|    550|    Py_DECREF(o);
  ------------------
  |  |  430|    550|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    550|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    550|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  358|    550|}
_PyObject_New:
  555|    170|{
  556|    170|    PyObject *op = (PyObject *) PyObject_Malloc(_PyObject_SIZE(tp));
  557|    170|    if (op == NULL) {
  ------------------
  |  Branch (557:9): [True: 0, False: 170]
  ------------------
  558|      0|        return PyErr_NoMemory();
  559|      0|    }
  560|    170|    _PyObject_Init(op, tp);
  561|    170|    return op;
  562|    170|}
_PyObject_NewVar:
  566|  1.48k|{
  567|  1.48k|    PyVarObject *op;
  568|  1.48k|    const size_t size = _PyObject_VAR_SIZE(tp, nitems);
  569|  1.48k|    op = (PyVarObject *) PyObject_Malloc(size);
  570|  1.48k|    if (op == NULL) {
  ------------------
  |  Branch (570:9): [True: 0, False: 1.48k]
  ------------------
  571|      0|        return (PyVarObject *)PyErr_NoMemory();
  572|      0|    }
  573|  1.48k|    _PyObject_InitVar(op, tp, nitems);
  574|  1.48k|    return op;
  575|  1.48k|}
PyObject_CallFinalizer:
  579|     42|{
  580|     42|    PyTypeObject *tp = Py_TYPE(self);
  ------------------
  |  |  213|     42|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  581|       |
  582|     42|    if (tp->tp_finalize == NULL)
  ------------------
  |  Branch (582:9): [True: 0, False: 42]
  ------------------
  583|      0|        return;
  584|       |    /* tp_finalize should only be called once. */
  585|     42|    if (_PyType_IS_GC(tp) && _PyGC_FINALIZED(self))
  ------------------
  |  |  828|     84|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|     42|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  |  |  |  Branch (828:26): [True: 42, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (585:30): [True: 0, False: 42]
  ------------------
  586|      0|        return;
  587|       |
  588|     42|    tp->tp_finalize(self);
  589|     42|    if (_PyType_IS_GC(tp)) {
  ------------------
  |  |  828|     42|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|     42|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  |  |  |  Branch (828:26): [True: 42, False: 0]
  |  |  ------------------
  ------------------
  590|     42|        _PyGC_SET_FINALIZED(self);
  591|     42|    }
  592|     42|}
PyObject_CallFinalizerFromDealloc:
  596|     42|{
  597|     42|    if (Py_REFCNT(self) != 0) {
  ------------------
  |  |  119|     42|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (597:9): [True: 0, False: 42]
  ------------------
  598|      0|        _PyObject_ASSERT_FAILED_MSG(self,
  ------------------
  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  ------------------
  599|      0|                                    "PyObject_CallFinalizerFromDealloc called "
  600|      0|                                    "on object with a non-zero refcount");
  601|      0|    }
  602|       |
  603|       |    /* Temporarily resurrect the object. */
  604|     42|    _PyObject_ResurrectStart(self);
  605|       |
  606|     42|    PyObject_CallFinalizer(self);
  607|       |
  608|     42|    _PyObject_ASSERT_WITH_MSG(self,
  ------------------
  |  |  421|     42|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  |  414|     42|    ((expr) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (414:6): [True: 42, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  415|     42|      ? (void)(0) \
  |  |  |  |  416|     42|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  ------------------
  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  ------------------
  ------------------
  609|     42|                              Py_REFCNT(self) > 0,
  610|     42|                              "refcount is too small");
  611|       |
  612|     42|    _PyObject_ASSERT(self,
  ------------------
  |  |  423|     42|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|     42|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|     84|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:7): [True: 0, False: 42]
  |  |  |  |  |  |  |  Branch (414:7): [True: 42, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|     42|      ? (void)(0) \
  |  |  |  |  |  |  416|     42|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  613|     42|                    (!_PyType_IS_GC(Py_TYPE(self))
  614|     42|                    || _PyObject_GC_IS_TRACKED(self)));
  615|       |
  616|       |    /* Undo the temporary resurrection; can't use DECREF here, it would
  617|       |     * cause a recursive call. */
  618|     42|    if (_PyObject_ResurrectEnd(self)) {
  ------------------
  |  Branch (618:9): [True: 0, False: 42]
  ------------------
  619|       |        /* tp_finalize resurrected it!
  620|       |           gh-130202: Note that the object may still be dead in the free
  621|       |           threaded build in some circumstances, so it's not safe to access
  622|       |           `self` after this point. For example, the last reference to the
  623|       |           resurrected `self` may be held by another thread, which can
  624|       |           concurrently deallocate it. */
  625|      0|        return -1;
  626|      0|    }
  627|       |
  628|       |    /* this is the normal path out, the caller continues with deallocation. */
  629|     42|    return 0;
  630|     42|}
_PyObject_IsFreed:
  711|  34.1k|{
  712|  34.1k|    if (_PyMem_IsPtrFreed(op) || _PyMem_IsPtrFreed(Py_TYPE(op))) {
  ------------------
  |  |  213|  34.1k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  34.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  34.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (712:9): [True: 0, False: 34.1k]
  |  Branch (712:34): [True: 0, False: 34.1k]
  ------------------
  713|      0|        return 1;
  714|      0|    }
  715|  34.1k|    return 0;
  716|  34.1k|}
PyObject_Repr:
  760|  1.94k|{
  761|  1.94k|    PyObject *res;
  762|  1.94k|    if (PyErr_CheckSignals())
  ------------------
  |  Branch (762:9): [True: 0, False: 1.94k]
  ------------------
  763|      0|        return NULL;
  764|  1.94k|    if (v == NULL)
  ------------------
  |  Branch (764:9): [True: 0, False: 1.94k]
  ------------------
  765|      0|        return PyUnicode_FromString("<NULL>");
  766|  1.94k|    if (Py_TYPE(v)->tp_repr == NULL)
  ------------------
  |  |  213|  1.94k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.94k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.94k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (766:9): [True: 0, False: 1.94k]
  ------------------
  767|      0|        return PyUnicode_FromFormat("<%s object at %p>",
  768|      0|                                    Py_TYPE(v)->tp_name, v);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  769|       |
  770|  1.94k|    PyThreadState *tstate = _PyThreadState_GET();
  771|       |#ifdef Py_DEBUG
  772|       |    /* PyObject_Repr() must not be called with an exception set,
  773|       |       because it can clear it (directly or indirectly) and so the
  774|       |       caller loses its exception */
  775|       |    assert(!_PyErr_Occurred(tstate));
  776|       |#endif
  777|       |
  778|       |    /* It is possible for a type to have a tp_repr representation that loops
  779|       |       infinitely. */
  780|  1.94k|    if (_Py_EnterRecursiveCallTstate(tstate,
  ------------------
  |  Branch (780:9): [True: 0, False: 1.94k]
  ------------------
  781|  1.94k|                                     " while getting the repr of an object")) {
  782|      0|        return NULL;
  783|      0|    }
  784|  1.94k|    res = (*Py_TYPE(v)->tp_repr)(v);
  ------------------
  |  |  213|  1.94k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.94k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.94k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  785|  1.94k|    _Py_LeaveRecursiveCallTstate(tstate);
  786|       |
  787|  1.94k|    if (res == NULL) {
  ------------------
  |  Branch (787:9): [True: 0, False: 1.94k]
  ------------------
  788|      0|        return NULL;
  789|      0|    }
  790|  1.94k|    if (!PyUnicode_Check(res)) {
  ------------------
  |  |  103|  1.94k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  1.94k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (790:9): [True: 0, False: 1.94k]
  ------------------
  791|      0|        _PyErr_Format(tstate, PyExc_TypeError,
  792|      0|                      "%T.__repr__() must return a str, not %T", v, res);
  793|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  794|      0|        return NULL;
  795|      0|    }
  796|  1.94k|    return res;
  797|  1.94k|}
PyObject_Str:
  801|     28|{
  802|     28|    PyObject *res;
  803|     28|    if (PyErr_CheckSignals())
  ------------------
  |  Branch (803:9): [True: 0, False: 28]
  ------------------
  804|      0|        return NULL;
  805|     28|    if (v == NULL)
  ------------------
  |  Branch (805:9): [True: 0, False: 28]
  ------------------
  806|      0|        return PyUnicode_FromString("<NULL>");
  807|     28|    if (PyUnicode_CheckExact(v)) {
  ------------------
  |  |  104|     28|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     28|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 6, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  808|      6|        return Py_NewRef(v);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  809|      6|    }
  810|     22|    if (Py_TYPE(v)->tp_str == NULL)
  ------------------
  |  |  213|     22|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (810:9): [True: 0, False: 22]
  ------------------
  811|      0|        return PyObject_Repr(v);
  812|       |
  813|     22|    PyThreadState *tstate = _PyThreadState_GET();
  814|       |#ifdef Py_DEBUG
  815|       |    /* PyObject_Str() must not be called with an exception set,
  816|       |       because it can clear it (directly or indirectly) and so the
  817|       |       caller loses its exception */
  818|       |    assert(!_PyErr_Occurred(tstate));
  819|       |#endif
  820|       |
  821|       |    /* It is possible for a type to have a tp_str representation that loops
  822|       |       infinitely. */
  823|     22|    if (_Py_EnterRecursiveCallTstate(tstate, " while getting the str of an object")) {
  ------------------
  |  Branch (823:9): [True: 0, False: 22]
  ------------------
  824|      0|        return NULL;
  825|      0|    }
  826|     22|    res = (*Py_TYPE(v)->tp_str)(v);
  ------------------
  |  |  213|     22|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  827|     22|    _Py_LeaveRecursiveCallTstate(tstate);
  828|       |
  829|     22|    if (res == NULL) {
  ------------------
  |  Branch (829:9): [True: 0, False: 22]
  ------------------
  830|      0|        return NULL;
  831|      0|    }
  832|     22|    if (!PyUnicode_Check(res)) {
  ------------------
  |  |  103|     22|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     22|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (832:9): [True: 0, False: 22]
  ------------------
  833|      0|        _PyErr_Format(tstate, PyExc_TypeError,
  834|      0|                      "%T.__str__() must return a str, not %T", v, res);
  835|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  836|      0|        return NULL;
  837|      0|    }
  838|     22|    assert(_PyUnicode_CheckConsistency(res, 1));
  ------------------
  |  Branch (838:5): [True: 22, False: 0]
  ------------------
  839|     22|    return res;
  840|     22|}
PyObject_RichCompare:
 1100|  8.13k|{
 1101|  8.13k|    PyThreadState *tstate = _PyThreadState_GET();
 1102|       |
 1103|  8.13k|    assert(Py_LT <= op && op <= Py_GE);
  ------------------
  |  Branch (1103:5): [True: 8.13k, False: 0]
  |  Branch (1103:5): [True: 8.13k, False: 0]
  ------------------
 1104|  8.13k|    if (v == NULL || w == NULL) {
  ------------------
  |  Branch (1104:9): [True: 0, False: 8.13k]
  |  Branch (1104:22): [True: 0, False: 8.13k]
  ------------------
 1105|      0|        if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (1105:13): [True: 0, False: 0]
  ------------------
 1106|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1107|      0|        }
 1108|      0|        return NULL;
 1109|      0|    }
 1110|  8.13k|    if (_Py_EnterRecursiveCallTstate(tstate, " in comparison")) {
  ------------------
  |  Branch (1110:9): [True: 0, False: 8.13k]
  ------------------
 1111|      0|        return NULL;
 1112|      0|    }
 1113|  8.13k|    PyObject *res = do_richcompare(tstate, v, w, op);
 1114|  8.13k|    _Py_LeaveRecursiveCallTstate(tstate);
 1115|  8.13k|    return res;
 1116|  8.13k|}
PyObject_RichCompareBool:
 1122|  7.94k|{
 1123|  7.94k|    PyObject *res;
 1124|  7.94k|    int ok;
 1125|       |
 1126|       |    /* Quick result when objects are the same.
 1127|       |       Guarantees that identity implies equality. */
 1128|  7.94k|    if (v == w) {
  ------------------
  |  Branch (1128:9): [True: 64, False: 7.88k]
  ------------------
 1129|     64|        if (op == Py_EQ)
  ------------------
  |  |  654|     64|#define Py_EQ 2
  ------------------
  |  Branch (1129:13): [True: 64, False: 0]
  ------------------
 1130|     64|            return 1;
 1131|      0|        else if (op == Py_NE)
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (1131:18): [True: 0, False: 0]
  ------------------
 1132|      0|            return 0;
 1133|     64|    }
 1134|       |
 1135|  7.88k|    res = PyObject_RichCompare(v, w, op);
 1136|  7.88k|    if (res == NULL)
  ------------------
  |  Branch (1136:9): [True: 0, False: 7.88k]
  ------------------
 1137|      0|        return -1;
 1138|  7.88k|    if (PyBool_Check(res)) {
  ------------------
  |  |   12|  7.88k|#define PyBool_Check(x) Py_IS_TYPE((x), &PyBool_Type)
  |  |  ------------------
  |  |  |  |  215|  7.88k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  7.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  7.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 7.88k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1139|  7.88k|        ok = (res == Py_True);
  ------------------
  |  |   26|  7.88k|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|  7.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1140|  7.88k|        assert(_Py_IsImmortal(res));
  ------------------
  |  Branch (1140:9): [True: 7.88k, False: 0]
  ------------------
 1141|  7.88k|    }
 1142|      0|    else {
 1143|      0|        ok = PyObject_IsTrue(res);
 1144|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1145|      0|    }
 1146|  7.88k|    return ok;
 1147|  7.88k|}
PyObject_Hash:
 1159|  3.53k|{
 1160|  3.53k|    PyTypeObject *tp = Py_TYPE(v);
  ------------------
  |  |  213|  3.53k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  3.53k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.53k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1161|  3.53k|    if (tp->tp_hash != NULL)
  ------------------
  |  Branch (1161:9): [True: 3.53k, False: 0]
  ------------------
 1162|  3.53k|        return (*tp->tp_hash)(v);
 1163|       |    /* To keep to the general practice that inheriting
 1164|       |     * solely from object in C code should work without
 1165|       |     * an explicit call to PyType_Ready, we implicitly call
 1166|       |     * PyType_Ready here and then check the tp_hash slot again
 1167|       |     */
 1168|      0|    if (!_PyType_IsReady(tp)) {
  ------------------
  |  Branch (1168:9): [True: 0, False: 0]
  ------------------
 1169|      0|        if (PyType_Ready(tp) < 0)
  ------------------
  |  Branch (1169:13): [True: 0, False: 0]
  ------------------
 1170|      0|            return -1;
 1171|      0|        if (tp->tp_hash != NULL)
  ------------------
  |  Branch (1171:13): [True: 0, False: 0]
  ------------------
 1172|      0|            return (*tp->tp_hash)(v);
 1173|      0|    }
 1174|       |    /* Otherwise, the object can't be hashed */
 1175|      0|    return PyObject_HashNotImplemented(v);
 1176|      0|}
PyObject_GetAttrString:
 1180|    100|{
 1181|    100|    PyObject *w, *res;
 1182|       |
 1183|    100|    if (Py_TYPE(v)->tp_getattr != NULL)
  ------------------
  |  |  213|    100|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    100|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    100|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1183:9): [True: 0, False: 100]
  ------------------
 1184|      0|        return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1185|    100|    w = PyUnicode_FromString(name);
 1186|    100|    if (w == NULL)
  ------------------
  |  Branch (1186:9): [True: 0, False: 100]
  ------------------
 1187|      0|        return NULL;
 1188|    100|    res = PyObject_GetAttr(v, w);
 1189|    100|    Py_DECREF(w);
  ------------------
  |  |  430|    100|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    100|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    100|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1190|    100|    return res;
 1191|    100|}
PyObject_SetAttrString:
 1219|    946|{
 1220|    946|    PyThreadState *tstate = _PyThreadState_GET();
 1221|    946|    if (w == NULL && _PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (1221:9): [True: 0, False: 946]
  |  Branch (1221:22): [True: 0, False: 0]
  ------------------
 1222|      0|        PyObject *exc = _PyErr_GetRaisedException(tstate);
 1223|      0|        _PyErr_SetString(tstate, PyExc_SystemError,
 1224|      0|            "PyObject_SetAttrString() must not be called with NULL value "
 1225|      0|            "and an exception set");
 1226|      0|        _PyErr_ChainExceptions1Tstate(tstate, exc);
 1227|      0|        return -1;
 1228|      0|    }
 1229|       |
 1230|    946|    if (Py_TYPE(v)->tp_setattr != NULL) {
  ------------------
  |  |  213|    946|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    946|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    946|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1230:9): [True: 0, False: 946]
  ------------------
 1231|      0|        return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1232|      0|    }
 1233|       |
 1234|    946|    PyObject *s = PyUnicode_InternFromString(name);
 1235|    946|    if (s == NULL) {
  ------------------
  |  Branch (1235:9): [True: 0, False: 946]
  ------------------
 1236|      0|        return -1;
 1237|      0|    }
 1238|       |
 1239|    946|    int res = PyObject_SetAttr(v, s, w);
 1240|    946|    Py_DECREF(s);
  ------------------
  |  |  430|    946|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    946|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    946|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1241|    946|    return res;
 1242|    946|}
_PyObject_IsAbstract:
 1252|    702|{
 1253|    702|    int res;
 1254|    702|    PyObject* isabstract;
 1255|       |
 1256|    702|    if (obj == NULL)
  ------------------
  |  Branch (1256:9): [True: 0, False: 702]
  ------------------
 1257|      0|        return 0;
 1258|       |
 1259|    702|    res = PyObject_GetOptionalAttr(obj, &_Py_ID(__isabstractmethod__), &isabstract);
  ------------------
  |  |  917|    702|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    702|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    702|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1260|    702|    if (res > 0) {
  ------------------
  |  Branch (1260:9): [True: 148, False: 554]
  ------------------
 1261|    148|        res = PyObject_IsTrue(isabstract);
 1262|    148|        Py_DECREF(isabstract);
  ------------------
  |  |  430|    148|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1263|    148|    }
 1264|    702|    return res;
 1265|    702|}
_PyObject_SetAttributeErrorContext:
 1283|     42|{
 1284|     42|    assert(PyErr_Occurred());
  ------------------
  |  Branch (1284:5): [True: 42, False: 0]
  ------------------
 1285|     42|    if (!PyErr_ExceptionMatches(PyExc_AttributeError)){
  ------------------
  |  Branch (1285:9): [True: 0, False: 42]
  ------------------
 1286|      0|        return 0;
 1287|      0|    }
 1288|       |    // Intercept AttributeError exceptions and augment them to offer suggestions later.
 1289|     42|    PyObject *exc = PyErr_GetRaisedException();
 1290|     42|    if (!PyErr_GivenExceptionMatches(exc, PyExc_AttributeError)) {
  ------------------
  |  Branch (1290:9): [True: 0, False: 42]
  ------------------
 1291|      0|        goto restore;
 1292|      0|    }
 1293|     42|    PyAttributeErrorObject* the_exc = (PyAttributeErrorObject*) exc;
 1294|       |    // Check if this exception was already augmented
 1295|     42|    if (the_exc->name || the_exc->obj) {
  ------------------
  |  Branch (1295:9): [True: 0, False: 42]
  |  Branch (1295:26): [True: 0, False: 42]
  ------------------
 1296|      0|        goto restore;
 1297|      0|    }
 1298|       |    // Augment the exception with the name and object
 1299|     42|    if (PyObject_SetAttr(exc, &_Py_ID(name), name) ||
  ------------------
  |  |  917|     42|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     42|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     42|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1299:9): [True: 0, False: 42]
  ------------------
 1300|     42|        PyObject_SetAttr(exc, &_Py_ID(obj), v)) {
  ------------------
  |  |  917|     42|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     42|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     42|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1300:9): [True: 0, False: 42]
  ------------------
 1301|      0|        Py_DECREF(exc);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1302|      0|        return 1;
 1303|      0|    }
 1304|     42|restore:
 1305|     42|    PyErr_SetRaisedException(exc);
 1306|     42|    return 0;
 1307|     42|}
PyObject_GetAttr:
 1311|  2.09k|{
 1312|  2.09k|    PyTypeObject *tp = Py_TYPE(v);
  ------------------
  |  |  213|  2.09k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.09k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.09k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1313|  2.09k|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|  2.09k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.09k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1313:9): [True: 0, False: 2.09k]
  ------------------
 1314|      0|        PyErr_Format(PyExc_TypeError,
 1315|      0|                     "attribute name must be string, not '%.200s'",
 1316|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1317|      0|        return NULL;
 1318|      0|    }
 1319|       |
 1320|  2.09k|    PyObject* result = NULL;
 1321|  2.09k|    if (tp->tp_getattro != NULL) {
  ------------------
  |  Branch (1321:9): [True: 2.09k, False: 0]
  ------------------
 1322|  2.09k|        result = (*tp->tp_getattro)(v, name);
 1323|  2.09k|    }
 1324|      0|    else if (tp->tp_getattr != NULL) {
  ------------------
  |  Branch (1324:14): [True: 0, False: 0]
  ------------------
 1325|      0|        const char *name_str = PyUnicode_AsUTF8(name);
 1326|      0|        if (name_str == NULL) {
  ------------------
  |  Branch (1326:13): [True: 0, False: 0]
  ------------------
 1327|      0|            return NULL;
 1328|      0|        }
 1329|      0|        result = (*tp->tp_getattr)(v, (char *)name_str);
 1330|      0|    }
 1331|      0|    else {
 1332|      0|        PyErr_Format(PyExc_AttributeError,
 1333|      0|                    "'%.100s' object has no attribute '%U'",
 1334|      0|                    tp->tp_name, name);
 1335|      0|    }
 1336|       |
 1337|  2.09k|    if (result == NULL) {
  ------------------
  |  Branch (1337:9): [True: 2, False: 2.09k]
  ------------------
 1338|      2|        _PyObject_SetAttributeErrorContext(v, name);
 1339|      2|    }
 1340|  2.09k|    return result;
 1341|  2.09k|}
_PyObject_GetAttrStackRef:
 1348|  1.59k|{
 1349|  1.59k|    PyTypeObject *tp = Py_TYPE(v);
  ------------------
  |  |  213|  1.59k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.59k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.59k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1350|  1.59k|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|  1.59k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  1.59k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1350:9): [True: 0, False: 1.59k]
  ------------------
 1351|      0|        PyErr_Format(PyExc_TypeError,
 1352|      0|                     "attribute name must be string, not '%.200s'",
 1353|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1354|      0|        return PyStackRef_NULL;
 1355|      0|    }
 1356|       |
 1357|       |    /* Fast path for types - can return deferred references */
 1358|  1.59k|    if (tp->tp_getattro == _Py_type_getattro) {
  ------------------
  |  Branch (1358:9): [True: 470, False: 1.12k]
  ------------------
 1359|    470|        _PyStackRef result = _Py_type_getattro_stackref((PyTypeObject *)v, name, NULL);
 1360|    470|        if (PyStackRef_IsNull(result)) {
  ------------------
  |  |  470|    470|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|    470|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    470|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 2, False: 468]
  |  |  ------------------
  ------------------
 1361|      2|            _PyObject_SetAttributeErrorContext(v, name);
 1362|      2|        }
 1363|    470|        return result;
 1364|    470|    }
 1365|       |
 1366|       |    /* Fall back to regular PyObject_GetAttr and convert to stackref */
 1367|  1.12k|    PyObject *result = NULL;
 1368|  1.12k|    if (tp->tp_getattro != NULL) {
  ------------------
  |  Branch (1368:9): [True: 1.12k, False: 0]
  ------------------
 1369|  1.12k|        result = (*tp->tp_getattro)(v, name);
 1370|  1.12k|    }
 1371|      0|    else if (tp->tp_getattr != NULL) {
  ------------------
  |  Branch (1371:14): [True: 0, False: 0]
  ------------------
 1372|      0|        const char *name_str = PyUnicode_AsUTF8(name);
 1373|      0|        if (name_str == NULL) {
  ------------------
  |  Branch (1373:13): [True: 0, False: 0]
  ------------------
 1374|      0|            return PyStackRef_NULL;
 1375|      0|        }
 1376|      0|        result = (*tp->tp_getattr)(v, (char *)name_str);
 1377|      0|    }
 1378|      0|    else {
 1379|      0|        PyErr_Format(PyExc_AttributeError,
 1380|      0|                    "'%.100s' object has no attribute '%U'",
 1381|      0|                    tp->tp_name, name);
 1382|      0|    }
 1383|       |
 1384|  1.12k|    if (result == NULL) {
  ------------------
  |  Branch (1384:9): [True: 18, False: 1.11k]
  ------------------
 1385|     18|        _PyObject_SetAttributeErrorContext(v, name);
 1386|     18|        return PyStackRef_NULL;
 1387|     18|    }
 1388|  1.11k|    return PyStackRef_FromPyObjectSteal(result);
 1389|  1.12k|}
PyObject_GetOptionalAttr:
 1393|  2.59k|{
 1394|  2.59k|    PyTypeObject *tp = Py_TYPE(v);
  ------------------
  |  |  213|  2.59k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.59k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.59k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1395|       |
 1396|  2.59k|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|  2.59k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.59k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1396:9): [True: 0, False: 2.59k]
  ------------------
 1397|      0|        PyErr_Format(PyExc_TypeError,
 1398|      0|                     "attribute name must be string, not '%.200s'",
 1399|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1400|      0|        *result = NULL;
 1401|      0|        return -1;
 1402|      0|    }
 1403|       |
 1404|  2.59k|    if (tp->tp_getattro == PyObject_GenericGetAttr) {
  ------------------
  |  Branch (1404:9): [True: 1.44k, False: 1.14k]
  ------------------
 1405|  1.44k|        *result = _PyObject_GenericGetAttrWithDict(v, name, NULL, 1);
 1406|  1.44k|        if (*result != NULL) {
  ------------------
  |  Branch (1406:13): [True: 816, False: 632]
  ------------------
 1407|    816|            return 1;
 1408|    816|        }
 1409|    632|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (1409:13): [True: 0, False: 632]
  ------------------
 1410|      0|            return -1;
 1411|      0|        }
 1412|    632|        return 0;
 1413|    632|    }
 1414|  1.14k|    if (tp->tp_getattro == _Py_type_getattro) {
  ------------------
  |  Branch (1414:9): [True: 482, False: 662]
  ------------------
 1415|    482|        int suppress_missing_attribute_exception = 0;
 1416|    482|        *result = _Py_type_getattro_impl((PyTypeObject*)v, name, &suppress_missing_attribute_exception);
 1417|    482|        if (suppress_missing_attribute_exception) {
  ------------------
  |  Branch (1417:13): [True: 14, False: 468]
  ------------------
 1418|       |            // return 0 without having to clear the exception
 1419|     14|            return 0;
 1420|     14|        }
 1421|    482|    }
 1422|    662|    else if (tp->tp_getattro == (getattrofunc)_Py_module_getattro) {
  ------------------
  |  Branch (1422:14): [True: 662, False: 0]
  ------------------
 1423|       |        // optimization: suppress attribute error from module getattro method
 1424|    662|        *result = _Py_module_getattro_impl((PyModuleObject*)v, name, 1);
 1425|    662|        if (*result != NULL) {
  ------------------
  |  Branch (1425:13): [True: 554, False: 108]
  ------------------
 1426|    554|            return 1;
 1427|    554|        }
 1428|    108|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (1428:13): [True: 0, False: 108]
  ------------------
 1429|      0|            return -1;
 1430|      0|        }
 1431|    108|        return 0;
 1432|    108|    }
 1433|      0|    else if (tp->tp_getattro != NULL) {
  ------------------
  |  Branch (1433:14): [True: 0, False: 0]
  ------------------
 1434|      0|        *result = (*tp->tp_getattro)(v, name);
 1435|      0|    }
 1436|      0|    else if (tp->tp_getattr != NULL) {
  ------------------
  |  Branch (1436:14): [True: 0, False: 0]
  ------------------
 1437|      0|        const char *name_str = PyUnicode_AsUTF8(name);
 1438|      0|        if (name_str == NULL) {
  ------------------
  |  Branch (1438:13): [True: 0, False: 0]
  ------------------
 1439|      0|            *result = NULL;
 1440|      0|            return -1;
 1441|      0|        }
 1442|      0|        *result = (*tp->tp_getattr)(v, (char *)name_str);
 1443|      0|    }
 1444|      0|    else {
 1445|      0|        *result = NULL;
 1446|      0|        return 0;
 1447|      0|    }
 1448|       |
 1449|    468|    if (*result != NULL) {
  ------------------
  |  Branch (1449:9): [True: 450, False: 18]
  ------------------
 1450|    450|        return 1;
 1451|    450|    }
 1452|     18|    if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (1452:9): [True: 0, False: 18]
  ------------------
 1453|      0|        return -1;
 1454|      0|    }
 1455|     18|    PyErr_Clear();
 1456|     18|    return 0;
 1457|     18|}
PyObject_HasAttrWithError:
 1486|     44|{
 1487|     44|    PyObject *res;
 1488|     44|    int rc = PyObject_GetOptionalAttr(obj, name, &res);
 1489|     44|    Py_XDECREF(res);
  ------------------
  |  |  524|     44|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1490|     44|    return rc;
 1491|     44|}
PyObject_SetAttr:
 1509|  2.18k|{
 1510|  2.18k|    PyThreadState *tstate = _PyThreadState_GET();
 1511|  2.18k|    if (value == NULL && _PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (1511:9): [True: 0, False: 2.18k]
  |  Branch (1511:26): [True: 0, False: 0]
  ------------------
 1512|      0|        PyObject *exc = _PyErr_GetRaisedException(tstate);
 1513|      0|        _PyErr_SetString(tstate, PyExc_SystemError,
 1514|      0|            "PyObject_SetAttr() must not be called with NULL value "
 1515|      0|            "and an exception set");
 1516|      0|        _PyErr_ChainExceptions1Tstate(tstate, exc);
 1517|      0|        return -1;
 1518|      0|    }
 1519|       |
 1520|  2.18k|    PyTypeObject *tp = Py_TYPE(v);
  ------------------
  |  |  213|  2.18k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.18k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.18k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1521|  2.18k|    int err;
 1522|       |
 1523|  2.18k|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|  2.18k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.18k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1523:9): [True: 0, False: 2.18k]
  ------------------
 1524|      0|        PyErr_Format(PyExc_TypeError,
 1525|      0|                     "attribute name must be string, not '%.200s'",
 1526|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1527|      0|        return -1;
 1528|      0|    }
 1529|  2.18k|    Py_INCREF(name);
  ------------------
  |  |  310|  2.18k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.18k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.18k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1530|       |
 1531|  2.18k|    _PyUnicode_InternMortal(tstate->interp, &name);
 1532|  2.18k|    if (tp->tp_setattro != NULL) {
  ------------------
  |  Branch (1532:9): [True: 2.18k, False: 0]
  ------------------
 1533|  2.18k|        err = (*tp->tp_setattro)(v, name, value);
 1534|  2.18k|        Py_DECREF(name);
  ------------------
  |  |  430|  2.18k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.18k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.18k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1535|  2.18k|        return err;
 1536|  2.18k|    }
 1537|      0|    if (tp->tp_setattr != NULL) {
  ------------------
  |  Branch (1537:9): [True: 0, False: 0]
  ------------------
 1538|      0|        const char *name_str = PyUnicode_AsUTF8(name);
 1539|      0|        if (name_str == NULL) {
  ------------------
  |  Branch (1539:13): [True: 0, False: 0]
  ------------------
 1540|      0|            Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1541|      0|            return -1;
 1542|      0|        }
 1543|      0|        err = (*tp->tp_setattr)(v, (char *)name_str, value);
 1544|      0|        Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1545|      0|        return err;
 1546|      0|    }
 1547|      0|    Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1548|      0|    _PyObject_ASSERT(name, Py_REFCNT(name) >= 1);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1549|      0|    if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
  ------------------
  |  Branch (1549:9): [True: 0, False: 0]
  |  Branch (1549:35): [True: 0, False: 0]
  ------------------
 1550|      0|        PyErr_Format(PyExc_TypeError,
 1551|      0|                     "'%.100s' object has no attributes "
 1552|      0|                     "(%s .%U)",
 1553|      0|                     tp->tp_name,
 1554|      0|                     value==NULL ? "del" : "assign to",
  ------------------
  |  Branch (1554:22): [True: 0, False: 0]
  ------------------
 1555|      0|                     name);
 1556|      0|    else
 1557|      0|        PyErr_Format(PyExc_TypeError,
 1558|      0|                     "'%.100s' object has only read-only attributes "
 1559|      0|                     "(%s .%U)",
 1560|      0|                     tp->tp_name,
 1561|      0|                     value==NULL ? "del" : "assign to",
  ------------------
  |  Branch (1561:22): [True: 0, False: 0]
  ------------------
 1562|      0|                     name);
 1563|      0|    return -1;
 1564|      0|}
_PyObject_ComputedDictPointer:
 1574|  5.62k|{
 1575|  5.62k|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|  5.62k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  5.62k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.62k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1576|  5.62k|    assert((tp->tp_flags & Py_TPFLAGS_MANAGED_DICT) == 0);
  ------------------
  |  Branch (1576:5): [True: 5.62k, False: 0]
  ------------------
 1577|       |
 1578|  5.62k|    Py_ssize_t dictoffset = tp->tp_dictoffset;
 1579|  5.62k|    if (dictoffset == 0) {
  ------------------
  |  Branch (1579:9): [True: 782, False: 4.84k]
  ------------------
 1580|    782|        return NULL;
 1581|    782|    }
 1582|       |
 1583|  4.84k|    if (dictoffset < 0) {
  ------------------
  |  Branch (1583:9): [True: 0, False: 4.84k]
  ------------------
 1584|      0|        assert(dictoffset != -1);
  ------------------
  |  Branch (1584:9): [True: 0, False: 0]
  ------------------
 1585|       |
 1586|      0|        Py_ssize_t tsize = Py_SIZE(obj);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1587|      0|        if (tsize < 0) {
  ------------------
  |  Branch (1587:13): [True: 0, False: 0]
  ------------------
 1588|      0|            tsize = -tsize;
 1589|      0|        }
 1590|      0|        size_t size = _PyObject_VAR_SIZE(tp, tsize);
 1591|      0|        assert(size <= (size_t)PY_SSIZE_T_MAX);
  ------------------
  |  Branch (1591:9): [True: 0, False: 0]
  ------------------
 1592|      0|        dictoffset += (Py_ssize_t)size;
 1593|       |
 1594|      0|        _PyObject_ASSERT(obj, dictoffset > 0);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1595|      0|        _PyObject_ASSERT(obj, dictoffset % SIZEOF_VOID_P == 0);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1596|      0|    }
 1597|  4.84k|    return (PyObject **) ((char *)obj + dictoffset);
 1598|  4.84k|}
PyObject_SelfIter:
 1626|     86|{
 1627|     86|    return Py_NewRef(obj);
  ------------------
  |  |  550|     86|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     86|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     86|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1628|     86|}
_PyObject_GetMethodStackRef:
 1758|    938|{
 1759|    938|    int meth_found = 0;
 1760|    938|    PyObject *obj = PyStackRef_AsPyObjectBorrow(*self);
 1761|       |
 1762|    938|    assert(PyStackRef_IsNull(*method));
  ------------------
  |  Branch (1762:5): [True: 938, False: 0]
  ------------------
 1763|       |
 1764|    938|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|    938|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    938|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    938|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1765|    938|    if (!_PyType_IsReady(tp)) {
  ------------------
  |  Branch (1765:9): [True: 0, False: 938]
  ------------------
 1766|      0|        if (PyType_Ready(tp) < 0) {
  ------------------
  |  Branch (1766:13): [True: 0, False: 0]
  ------------------
 1767|      0|            PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1768|      0|            return -1;
 1769|      0|        }
 1770|      0|    }
 1771|       |
 1772|    938|    if (tp->tp_getattro != PyObject_GenericGetAttr || !PyUnicode_CheckExact(name)) {
  ------------------
  |  |  104|    452|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    452|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    452|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    452|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1772:9): [True: 486, False: 452]
  |  Branch (1772:55): [True: 0, False: 452]
  ------------------
 1773|    486|        PyObject *res = PyObject_GetAttr(obj, name);
 1774|    486|        PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|    486|    do { \
  |  |  712|    486|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|    486|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|    486|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|    486|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|    486|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 486]
  |  |  ------------------
  ------------------
 1775|    486|        if (res != NULL) {
  ------------------
  |  Branch (1775:13): [True: 484, False: 2]
  ------------------
 1776|    484|            *method = PyStackRef_FromPyObjectSteal(res);
 1777|    484|            return 0;
 1778|    484|        }
 1779|      2|        return -1;
 1780|    486|    }
 1781|       |
 1782|    452|    _PyType_LookupStackRefAndVersion(tp, name, method);
 1783|    452|    PyObject *descr = PyStackRef_AsPyObjectBorrow(*method);
 1784|    452|    descrgetfunc f = NULL;
 1785|    452|    if (descr != NULL) {
  ------------------
  |  Branch (1785:9): [True: 446, False: 6]
  ------------------
 1786|    446|        if (_PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  213|    446|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    446|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    446|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (_PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  534|    446|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
  |  Branch (1786:13): [True: 446, False: 0]
  ------------------
 1787|    446|            meth_found = 1;
 1788|    446|        }
 1789|      0|        else {
 1790|      0|            f = Py_TYPE(descr)->tp_descr_get;
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1791|      0|            if (f != NULL && PyDescr_IsData(descr)) {
  ------------------
  |  Branch (1791:17): [True: 0, False: 0]
  |  Branch (1791:30): [True: 0, False: 0]
  ------------------
 1792|      0|                PyObject *value = f(descr, obj, (PyObject *)Py_TYPE(obj));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1793|      0|                PyStackRef_CLEAR(*method);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1794|      0|                PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1795|      0|                if (value != NULL) {
  ------------------
  |  Branch (1795:21): [True: 0, False: 0]
  ------------------
 1796|      0|                    *method = PyStackRef_FromPyObjectSteal(value);
 1797|      0|                    return 0;
 1798|      0|                }
 1799|      0|                return -1;
 1800|      0|            }
 1801|      0|        }
 1802|    446|    }
 1803|    452|    PyObject *dict, *attr;
 1804|    452|    if ((tp->tp_flags & Py_TPFLAGS_INLINE_VALUES) &&
  ------------------
  |  |  472|    452|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (1804:9): [True: 30, False: 422]
  ------------------
 1805|     30|         _PyObject_TryGetInstanceAttribute(obj, name, &attr)) {
  ------------------
  |  Branch (1805:10): [True: 30, False: 0]
  ------------------
 1806|     30|        if (attr != NULL) {
  ------------------
  |  Branch (1806:13): [True: 6, False: 24]
  ------------------
 1807|      6|            PyStackRef_XSETREF(*method, PyStackRef_FromPyObjectSteal(attr));
  ------------------
  |  |  834|      6|    do { \
  |  |  835|      6|        _PyStackRef _tmp_dst_ref = (dst); \
  |  |  836|      6|        (dst) = (src); \
  |  |  837|      6|        PyStackRef_XCLOSE(_tmp_dst_ref); \
  |  |  838|      6|    } while(0)
  |  |  ------------------
  |  |  |  Branch (838:13): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1808|      6|            PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      6|    do { \
  |  |  712|      6|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      6|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      6|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      6|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1809|      6|            return 0;
 1810|      6|        }
 1811|     24|        dict = NULL;
 1812|     24|    }
 1813|    422|    else if ((tp->tp_flags & Py_TPFLAGS_MANAGED_DICT)) {
  ------------------
  |  |  482|    422|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (1813:14): [True: 0, False: 422]
  ------------------
 1814|      0|        dict = (PyObject *)_PyObject_GetManagedDict(obj);
 1815|      0|    }
 1816|    422|    else {
 1817|    422|        PyObject **dictptr = _PyObject_ComputedDictPointer(obj);
 1818|    422|        if (dictptr != NULL) {
  ------------------
  |  Branch (1818:13): [True: 62, False: 360]
  ------------------
 1819|     62|            dict = FT_ATOMIC_LOAD_PTR_ACQUIRE(*dictptr);
  ------------------
  |  |  150|     62|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
 1820|     62|        }
 1821|    360|        else {
 1822|    360|            dict = NULL;
 1823|    360|        }
 1824|    422|    }
 1825|    446|    if (dict != NULL) {
  ------------------
  |  Branch (1825:9): [True: 40, False: 406]
  ------------------
 1826|     40|        assert(PyUnicode_CheckExact(name));
  ------------------
  |  Branch (1826:9): [True: 40, False: 0]
  ------------------
 1827|     40|        int found = _PyDict_GetMethodStackRef((PyDictObject *)dict, name, method);
 1828|     40|        if (found < 0) {
  ------------------
  |  Branch (1828:13): [True: 0, False: 40]
  ------------------
 1829|      0|            assert(PyStackRef_IsNull(*method));
  ------------------
  |  Branch (1829:13): [True: 0, False: 0]
  ------------------
 1830|      0|            PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1831|      0|            return -1;
 1832|      0|        }
 1833|     40|        else if (found) {
  ------------------
  |  Branch (1833:18): [True: 0, False: 40]
  ------------------
 1834|      0|            PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1835|      0|            return 0;
 1836|      0|        }
 1837|     40|    }
 1838|       |
 1839|    446|    if (meth_found) {
  ------------------
  |  Branch (1839:9): [True: 446, False: 0]
  ------------------
 1840|    446|        assert(!PyStackRef_IsNull(*method));
  ------------------
  |  Branch (1840:9): [True: 446, False: 0]
  ------------------
 1841|    446|        return 1;
 1842|    446|    }
 1843|       |
 1844|      0|    if (f != NULL) {
  ------------------
  |  Branch (1844:9): [True: 0, False: 0]
  ------------------
 1845|      0|        if (Py_IS_TYPE(descr, &PyClassMethod_Type)) {
  ------------------
  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1846|      0|            PyObject *callable = _PyClassMethod_GetFunc(descr);
 1847|      0|            PyStackRef_XSETREF(*method, PyStackRef_FromPyObjectNew(callable));
  ------------------
  |  |  834|      0|    do { \
  |  |  835|      0|        _PyStackRef _tmp_dst_ref = (dst); \
  |  |  836|      0|        (dst) = (src); \
  |  |  837|      0|        PyStackRef_XCLOSE(_tmp_dst_ref); \
  |  |  838|      0|    } while(0)
  |  |  ------------------
  |  |  |  Branch (838:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1848|      0|            PyStackRef_XSETREF(*self, PyStackRef_FromPyObjectNew((PyObject *)tp));
  ------------------
  |  |  834|      0|    do { \
  |  |  835|      0|        _PyStackRef _tmp_dst_ref = (dst); \
  |  |  836|      0|        (dst) = (src); \
  |  |  837|      0|        PyStackRef_XCLOSE(_tmp_dst_ref); \
  |  |  838|      0|    } while(0)
  |  |  ------------------
  |  |  |  Branch (838:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1849|      0|            return 1;
 1850|      0|        }
 1851|      0|        else if (Py_IS_TYPE(descr, &PyStaticMethod_Type)) {
  ------------------
  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1852|      0|            PyObject *callable = _PyStaticMethod_GetFunc(descr);
 1853|      0|            PyStackRef_XSETREF(*method, PyStackRef_FromPyObjectNew(callable));
  ------------------
  |  |  834|      0|    do { \
  |  |  835|      0|        _PyStackRef _tmp_dst_ref = (dst); \
  |  |  836|      0|        (dst) = (src); \
  |  |  837|      0|        PyStackRef_XCLOSE(_tmp_dst_ref); \
  |  |  838|      0|    } while(0)
  |  |  ------------------
  |  |  |  Branch (838:13): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1854|      0|            PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1855|      0|            return 0;
 1856|      0|        }
 1857|      0|        PyObject *value = f(descr, obj, (PyObject *)tp);
 1858|      0|        PyStackRef_CLEAR(*method);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1859|      0|        PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1860|      0|        if (value) {
  ------------------
  |  Branch (1860:13): [True: 0, False: 0]
  ------------------
 1861|      0|            *method = PyStackRef_FromPyObjectSteal(value);
 1862|      0|            return 0;
 1863|      0|        }
 1864|      0|        return -1;
 1865|      0|    }
 1866|       |
 1867|      0|    if (descr != NULL) {
  ------------------
  |  Branch (1867:9): [True: 0, False: 0]
  ------------------
 1868|      0|        assert(!PyStackRef_IsNull(*method));
  ------------------
  |  Branch (1868:9): [True: 0, False: 0]
  ------------------
 1869|      0|        PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1870|      0|        return 0;
 1871|      0|    }
 1872|       |
 1873|      0|    PyErr_Format(PyExc_AttributeError,
 1874|      0|                 "'%.100s' object has no attribute '%U'",
 1875|      0|                 tp->tp_name, name);
 1876|       |
 1877|      0|    _PyObject_SetAttributeErrorContext(obj, name);
 1878|      0|    assert(PyStackRef_IsNull(*method));
  ------------------
  |  Branch (1878:5): [True: 0, False: 0]
  ------------------
 1879|      0|    PyStackRef_CLEAR(*self);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1880|      0|    return -1;
 1881|      0|}
_PyObject_GenericGetAttrWithDict:
 1889|  4.55k|{
 1890|       |    /* Make sure the logic of _PyObject_GetMethod is in sync with
 1891|       |       this method.
 1892|       |
 1893|       |       When suppress=1, this function suppresses AttributeError.
 1894|       |    */
 1895|       |
 1896|  4.55k|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|  4.55k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  4.55k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.55k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1897|  4.55k|    PyObject *descr = NULL;
 1898|  4.55k|    PyObject *res = NULL;
 1899|  4.55k|    descrgetfunc f;
 1900|       |
 1901|  4.55k|    if (!PyUnicode_Check(name)){
  ------------------
  |  |  103|  4.55k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  4.55k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1901:9): [True: 0, False: 4.55k]
  ------------------
 1902|      0|        PyErr_Format(PyExc_TypeError,
 1903|      0|                     "attribute name must be string, not '%.200s'",
 1904|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1905|      0|        return NULL;
 1906|      0|    }
 1907|       |
 1908|  4.55k|    if (!_PyType_IsReady(tp)) {
  ------------------
  |  Branch (1908:9): [True: 0, False: 4.55k]
  ------------------
 1909|      0|        if (PyType_Ready(tp) < 0)
  ------------------
  |  Branch (1909:13): [True: 0, False: 0]
  ------------------
 1910|      0|            return NULL;
 1911|      0|    }
 1912|       |
 1913|  4.55k|    Py_INCREF(name);
  ------------------
  |  |  310|  4.55k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.55k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.55k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1914|       |
 1915|  4.55k|    PyThreadState *tstate = _PyThreadState_GET();
 1916|  4.55k|    _PyCStackRef cref;
 1917|  4.55k|    _PyThreadState_PushCStackRef(tstate, &cref);
 1918|       |
 1919|  4.55k|    _PyType_LookupStackRefAndVersion(tp, name, &cref.ref);
 1920|  4.55k|    descr = PyStackRef_AsPyObjectBorrow(cref.ref);
 1921|       |
 1922|  4.55k|    f = NULL;
 1923|  4.55k|    if (descr != NULL) {
  ------------------
  |  Branch (1923:9): [True: 904, False: 3.65k]
  ------------------
 1924|    904|        f = Py_TYPE(descr)->tp_descr_get;
  ------------------
  |  |  213|    904|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    904|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    904|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1925|    904|        if (f != NULL && PyDescr_IsData(descr)) {
  ------------------
  |  Branch (1925:13): [True: 898, False: 6]
  |  Branch (1925:26): [True: 824, False: 74]
  ------------------
 1926|    824|            res = f(descr, obj, (PyObject *)Py_TYPE(obj));
  ------------------
  |  |  213|    824|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    824|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    824|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1927|    824|            if (res == NULL && suppress &&
  ------------------
  |  Branch (1927:17): [True: 0, False: 824]
  |  Branch (1927:32): [True: 0, False: 0]
  ------------------
 1928|      0|                    PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (1928:21): [True: 0, False: 0]
  ------------------
 1929|      0|                PyErr_Clear();
 1930|      0|            }
 1931|    824|            goto done;
 1932|    824|        }
 1933|    904|    }
 1934|  3.73k|    if (dict == NULL) {
  ------------------
  |  Branch (1934:9): [True: 3.73k, False: 0]
  ------------------
 1935|  3.73k|        if ((tp->tp_flags & Py_TPFLAGS_INLINE_VALUES)) {
  ------------------
  |  |  472|  3.73k|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (1935:13): [True: 298, False: 3.43k]
  ------------------
 1936|    298|            if (PyUnicode_CheckExact(name) &&
  ------------------
  |  |  104|    298|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    596|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    298|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    298|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 298, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1937|    298|                _PyObject_TryGetInstanceAttribute(obj, name, &res)) {
  ------------------
  |  Branch (1937:17): [True: 298, False: 0]
  ------------------
 1938|    298|                if (res != NULL) {
  ------------------
  |  Branch (1938:21): [True: 254, False: 44]
  ------------------
 1939|    254|                    goto done;
 1940|    254|                }
 1941|    298|            }
 1942|      0|            else {
 1943|      0|                dict = (PyObject *)_PyObject_MaterializeManagedDict(obj);
 1944|      0|                if (dict == NULL) {
  ------------------
  |  Branch (1944:21): [True: 0, False: 0]
  ------------------
 1945|      0|                    res = NULL;
 1946|      0|                    goto done;
 1947|      0|                }
 1948|      0|            }
 1949|    298|        }
 1950|  3.43k|        else if ((tp->tp_flags & Py_TPFLAGS_MANAGED_DICT)) {
  ------------------
  |  |  482|  3.43k|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (1950:18): [True: 20, False: 3.41k]
  ------------------
 1951|     20|            dict = (PyObject *)_PyObject_GetManagedDict(obj);
 1952|     20|        }
 1953|  3.41k|        else {
 1954|  3.41k|            PyObject **dictptr = _PyObject_ComputedDictPointer(obj);
 1955|  3.41k|            if (dictptr) {
  ------------------
  |  Branch (1955:17): [True: 2.99k, False: 422]
  ------------------
 1956|       |#ifdef Py_GIL_DISABLED
 1957|       |                dict = _Py_atomic_load_ptr_acquire(dictptr);
 1958|       |#else
 1959|  2.99k|                dict = *dictptr;
 1960|  2.99k|#endif
 1961|  2.99k|            }
 1962|  3.41k|        }
 1963|  3.73k|    }
 1964|  3.48k|    if (dict != NULL) {
  ------------------
  |  Branch (1964:9): [True: 2.77k, False: 706]
  ------------------
 1965|  2.77k|        Py_INCREF(dict);
  ------------------
  |  |  310|  2.77k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.77k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.77k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1966|  2.77k|        int rc = PyDict_GetItemRef(dict, name, &res);
 1967|  2.77k|        Py_DECREF(dict);
  ------------------
  |  |  430|  2.77k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.77k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.77k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1968|  2.77k|        if (res != NULL) {
  ------------------
  |  Branch (1968:13): [True: 2.64k, False: 134]
  ------------------
 1969|  2.64k|            goto done;
 1970|  2.64k|        }
 1971|    134|        else if (rc < 0) {
  ------------------
  |  Branch (1971:18): [True: 0, False: 134]
  ------------------
 1972|      0|            if (suppress && PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (1972:17): [True: 0, False: 0]
  |  Branch (1972:29): [True: 0, False: 0]
  ------------------
 1973|      0|                PyErr_Clear();
 1974|      0|            }
 1975|      0|            else {
 1976|      0|                goto done;
 1977|      0|            }
 1978|      0|        }
 1979|  2.77k|    }
 1980|       |
 1981|    840|    if (f != NULL) {
  ------------------
  |  Branch (1981:9): [True: 74, False: 766]
  ------------------
 1982|     74|        res = f(descr, obj, (PyObject *)Py_TYPE(obj));
  ------------------
  |  |  213|     74|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     74|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1983|     74|        if (res == NULL && suppress &&
  ------------------
  |  Branch (1983:13): [True: 0, False: 74]
  |  Branch (1983:28): [True: 0, False: 0]
  ------------------
 1984|      0|                PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (1984:17): [True: 0, False: 0]
  ------------------
 1985|      0|            PyErr_Clear();
 1986|      0|        }
 1987|     74|        goto done;
 1988|     74|    }
 1989|       |
 1990|    766|    if (descr != NULL) {
  ------------------
  |  Branch (1990:9): [True: 6, False: 760]
  ------------------
 1991|      6|        res = PyStackRef_AsPyObjectSteal(cref.ref);
 1992|      6|        cref.ref = PyStackRef_NULL;
 1993|      6|        goto done;
 1994|      6|    }
 1995|       |
 1996|    760|    if (!suppress) {
  ------------------
  |  Branch (1996:9): [True: 20, False: 740]
  ------------------
 1997|     20|        PyErr_Format(PyExc_AttributeError,
 1998|     20|                     "'%.100s' object has no attribute '%U'",
 1999|     20|                     tp->tp_name, name);
 2000|       |
 2001|     20|        _PyObject_SetAttributeErrorContext(obj, name);
 2002|     20|    }
 2003|  4.55k|  done:
 2004|  4.55k|    _PyThreadState_PopCStackRef(tstate, &cref);
 2005|  4.55k|    Py_DECREF(name);
  ------------------
  |  |  430|  4.55k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.55k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.55k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2006|  4.55k|    return res;
 2007|    760|}
PyObject_GenericGetAttr:
 2011|    446|{
 2012|       |    return _PyObject_GenericGetAttrWithDict(obj, name, NULL, 0);
 2013|    446|}
_PyObject_GenericSetAttrWithDict:
 2018|  2.06k|{
 2019|  2.06k|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|  2.06k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.06k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.06k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2020|  2.06k|    PyObject *descr;
 2021|  2.06k|    descrsetfunc f;
 2022|  2.06k|    int res = -1;
 2023|       |
 2024|  2.06k|    assert(!PyType_IsSubtype(tp, &PyType_Type));
  ------------------
  |  Branch (2024:5): [True: 2.06k, False: 0]
  ------------------
 2025|  2.06k|    if (!PyUnicode_Check(name)){
  ------------------
  |  |  103|  2.06k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.06k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2025:9): [True: 0, False: 2.06k]
  ------------------
 2026|      0|        PyErr_Format(PyExc_TypeError,
 2027|      0|                     "attribute name must be string, not '%.200s'",
 2028|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2029|      0|        return -1;
 2030|      0|    }
 2031|       |
 2032|  2.06k|    if (!_PyType_IsReady(tp) && PyType_Ready(tp) < 0) {
  ------------------
  |  Branch (2032:9): [True: 0, False: 2.06k]
  |  Branch (2032:33): [True: 0, False: 0]
  ------------------
 2033|      0|        return -1;
 2034|      0|    }
 2035|       |
 2036|  2.06k|    Py_INCREF(name);
  ------------------
  |  |  310|  2.06k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.06k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.06k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2037|  2.06k|    _Py_INCREF_TYPE(tp);
  ------------------
  |  |  315|  2.06k|#  define _Py_INCREF_TYPE Py_INCREF
  |  |  ------------------
  |  |  |  |  310|  2.06k|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.06k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.06k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2038|       |
 2039|  2.06k|    PyThreadState *tstate = _PyThreadState_GET();
 2040|  2.06k|    _PyCStackRef cref;
 2041|  2.06k|    _PyThreadState_PushCStackRef(tstate, &cref);
 2042|       |
 2043|  2.06k|    _PyType_LookupStackRefAndVersion(tp, name, &cref.ref);
 2044|  2.06k|    descr = PyStackRef_AsPyObjectBorrow(cref.ref);
 2045|       |
 2046|  2.06k|    if (descr != NULL) {
  ------------------
  |  Branch (2046:9): [True: 322, False: 1.73k]
  ------------------
 2047|    322|        f = Py_TYPE(descr)->tp_descr_set;
  ------------------
  |  |  213|    322|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    322|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    322|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2048|    322|        if (f != NULL) {
  ------------------
  |  Branch (2048:13): [True: 174, False: 148]
  ------------------
 2049|    174|            res = f(descr, obj, value);
 2050|    174|            goto done;
 2051|    174|        }
 2052|    322|    }
 2053|       |
 2054|  1.88k|    if (dict == NULL) {
  ------------------
  |  Branch (2054:9): [True: 1.88k, False: 0]
  ------------------
 2055|  1.88k|        PyObject **dictptr;
 2056|       |
 2057|  1.88k|        if ((tp->tp_flags & Py_TPFLAGS_INLINE_VALUES)) {
  ------------------
  |  |  472|  1.88k|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (2057:13): [True: 118, False: 1.76k]
  ------------------
 2058|    118|            res = _PyObject_StoreInstanceAttribute(obj, name, value);
 2059|    118|            goto error_check;
 2060|    118|        }
 2061|       |
 2062|  1.76k|        if ((tp->tp_flags & Py_TPFLAGS_MANAGED_DICT)) {
  ------------------
  |  |  482|  1.76k|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (2062:13): [True: 14, False: 1.75k]
  ------------------
 2063|     14|            PyManagedDictPointer *managed_dict = _PyObject_ManagedDictPointer(obj);
 2064|     14|            dictptr = (PyObject **)&managed_dict->dict;
 2065|     14|        }
 2066|  1.75k|        else {
 2067|  1.75k|            dictptr = _PyObject_ComputedDictPointer(obj);
 2068|  1.75k|        }
 2069|  1.76k|        if (dictptr == NULL) {
  ------------------
  |  Branch (2069:13): [True: 0, False: 1.76k]
  ------------------
 2070|      0|            if (descr == NULL) {
  ------------------
  |  Branch (2070:17): [True: 0, False: 0]
  ------------------
 2071|      0|                if (tp->tp_setattro == PyObject_GenericSetAttr) {
  ------------------
  |  Branch (2071:21): [True: 0, False: 0]
  ------------------
 2072|      0|                    PyErr_Format(PyExc_AttributeError,
 2073|      0|                                "'%.100s' object has no attribute '%U' and no "
 2074|      0|                                "__dict__ for setting new attributes",
 2075|      0|                                tp->tp_name, name);
 2076|      0|                }
 2077|      0|                else {
 2078|      0|                    PyErr_Format(PyExc_AttributeError,
 2079|      0|                                "'%.100s' object has no attribute '%U'",
 2080|      0|                                tp->tp_name, name);
 2081|      0|                }
 2082|      0|                _PyObject_SetAttributeErrorContext(obj, name);
 2083|      0|            }
 2084|      0|            else {
 2085|      0|                PyErr_Format(PyExc_AttributeError,
 2086|      0|                            "'%.100s' object attribute '%U' is read-only",
 2087|      0|                            tp->tp_name, name);
 2088|      0|            }
 2089|      0|            goto done;
 2090|      0|        }
 2091|  1.76k|        else {
 2092|  1.76k|            res = _PyObjectDict_SetItem(tp, obj, dictptr, name, value);
 2093|  1.76k|        }
 2094|  1.76k|    }
 2095|      0|    else {
 2096|      0|        Py_INCREF(dict);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2097|      0|        if (value == NULL)
  ------------------
  |  Branch (2097:13): [True: 0, False: 0]
  ------------------
 2098|      0|            res = PyDict_DelItem(dict, name);
 2099|      0|        else
 2100|      0|            res = PyDict_SetItem(dict, name, value);
 2101|      0|        Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2102|      0|    }
 2103|  1.88k|  error_check:
 2104|  1.88k|    if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) {
  ------------------
  |  Branch (2104:9): [True: 0, False: 1.88k]
  |  Branch (2104:20): [True: 0, False: 0]
  ------------------
 2105|      0|        PyErr_Format(PyExc_AttributeError,
 2106|      0|                        "'%.100s' object has no attribute '%U'",
 2107|      0|                        tp->tp_name, name);
 2108|      0|        _PyObject_SetAttributeErrorContext(obj, name);
 2109|      0|    }
 2110|  2.06k|  done:
 2111|  2.06k|    _PyThreadState_PopCStackRef(tstate, &cref);
 2112|  2.06k|    _Py_DECREF_TYPE(tp);
  ------------------
  |  |  316|  2.06k|#  define _Py_DECREF_TYPE Py_DECREF
  |  |  ------------------
  |  |  |  |  430|  2.06k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.06k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.06k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2113|  2.06k|    Py_DECREF(name);
  ------------------
  |  |  430|  2.06k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.06k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.06k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2114|  2.06k|    return res;
 2115|  1.88k|}
PyObject_GenericSetAttr:
 2119|  2.06k|{
 2120|       |    return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL);
 2121|  2.06k|}
PyObject_IsTrue:
 2139|  1.26k|{
 2140|  1.26k|    Py_ssize_t res;
 2141|  1.26k|    if (v == Py_True)
  ------------------
  |  |   26|  1.26k|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|  1.26k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2141:9): [True: 366, False: 902]
  ------------------
 2142|    366|        return 1;
 2143|    902|    if (v == Py_False)
  ------------------
  |  |   25|    902|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|    902|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    902|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2143:9): [True: 482, False: 420]
  ------------------
 2144|    482|        return 0;
 2145|    420|    if (v == Py_None)
  ------------------
  |  |  616|    420|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (2145:9): [True: 102, False: 318]
  ------------------
 2146|    102|        return 0;
 2147|    318|    else if (Py_TYPE(v)->tp_as_number != NULL &&
  ------------------
  |  |  213|    318|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    318|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    318|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2147:14): [True: 256, False: 62]
  ------------------
 2148|    256|             Py_TYPE(v)->tp_as_number->nb_bool != NULL)
  ------------------
  |  |  213|    256|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    256|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    256|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2148:14): [True: 14, False: 242]
  ------------------
 2149|     14|        res = (*Py_TYPE(v)->tp_as_number->nb_bool)(v);
  ------------------
  |  |  213|     14|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2150|    304|    else if (Py_TYPE(v)->tp_as_mapping != NULL &&
  ------------------
  |  |  213|    304|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    304|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    304|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2150:14): [True: 186, False: 118]
  ------------------
 2151|    186|             Py_TYPE(v)->tp_as_mapping->mp_length != NULL)
  ------------------
  |  |  213|    186|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    186|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    186|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2151:14): [True: 178, False: 8]
  ------------------
 2152|    178|        res = (*Py_TYPE(v)->tp_as_mapping->mp_length)(v);
  ------------------
  |  |  213|    178|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    178|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    178|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2153|    126|    else if (Py_TYPE(v)->tp_as_sequence != NULL &&
  ------------------
  |  |  213|    126|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    126|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    126|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2153:14): [True: 126, False: 0]
  ------------------
 2154|    126|             Py_TYPE(v)->tp_as_sequence->sq_length != NULL)
  ------------------
  |  |  213|    126|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    126|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    126|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2154:14): [True: 118, False: 8]
  ------------------
 2155|    118|        res = (*Py_TYPE(v)->tp_as_sequence->sq_length)(v);
  ------------------
  |  |  213|    118|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2156|      8|    else
 2157|      8|        return 1;
 2158|       |    /* if it is negative, it should be either -1 or -2 */
 2159|    310|    return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
  ------------------
  |  |  247|    108|#  define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) _Py_STATIC_CAST(NARROW, (VALUE))
  |  |  ------------------
  |  |  |  |   34|    108|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (2159:12): [True: 202, False: 108]
  ------------------
 2160|    420|}
PyCallable_Check:
 2179|  8.18k|{
 2180|  8.18k|    if (x == NULL)
  ------------------
  |  Branch (2180:9): [True: 0, False: 8.18k]
  ------------------
 2181|      0|        return 0;
 2182|  8.18k|    return Py_TYPE(x)->tp_call != NULL;
  ------------------
  |  |  213|  8.18k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  8.18k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.18k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2183|  8.18k|}
PyObject_Dir:
 2268|      2|{
 2269|      2|    return (obj == NULL) ? _dir_locals() : _dir_object(obj);
  ------------------
  |  Branch (2269:12): [True: 0, False: 2]
  ------------------
 2270|      2|}
_PyObject_InitState:
 2504|      2|{
 2505|       |#ifdef Py_TRACE_REFS
 2506|       |    if (refchain_init(interp) < 0) {
 2507|       |        return _PyStatus_NO_MEMORY();
 2508|       |    }
 2509|       |#endif
 2510|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2511|      2|}
_PyTypes_InitTypes:
 2670|      2|{
 2671|       |    // All other static types (unless initialized elsewhere)
 2672|    242|    for (size_t i=0; i < Py_ARRAY_LENGTH(static_types); i++) {
  ------------------
  |  |  196|    242|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (2672:22): [True: 240, False: 2]
  ------------------
 2673|    240|        PyTypeObject *type = static_types[i];
 2674|    240|        if (type == NULL) {
  ------------------
  |  Branch (2674:13): [True: 2, False: 238]
  ------------------
 2675|      2|            continue;
 2676|      2|        }
 2677|    238|        if (_PyStaticType_InitBuiltin(interp, type) < 0) {
  ------------------
  |  Branch (2677:13): [True: 0, False: 238]
  ------------------
 2678|      0|            return _PyStatus_ERR("Can't initialize builtin type");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2679|      0|        }
 2680|    238|        if (type == &PyType_Type) {
  ------------------
  |  Branch (2680:13): [True: 2, False: 236]
  ------------------
 2681|       |            // Sanitify checks of the two most important types
 2682|      2|            assert(PyBaseObject_Type.tp_base == NULL);
  ------------------
  |  Branch (2682:13): [True: 2, False: 0]
  ------------------
 2683|      2|            assert(PyType_Type.tp_base == &PyBaseObject_Type);
  ------------------
  |  Branch (2683:13): [True: 2, False: 0]
  ------------------
 2684|      2|        }
 2685|    238|    }
 2686|       |
 2687|       |    // Cache __reduce__ from PyBaseObject_Type object
 2688|      2|    PyObject *baseobj_dict = _PyType_GetDict(&PyBaseObject_Type);
 2689|      2|    PyObject *baseobj_reduce = PyDict_GetItemWithError(baseobj_dict, &_Py_ID(__reduce__));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2690|      2|    if (baseobj_reduce == NULL && PyErr_Occurred()) {
  ------------------
  |  Branch (2690:9): [True: 0, False: 2]
  |  Branch (2690:35): [True: 0, False: 0]
  ------------------
 2691|      0|        return _PyStatus_ERR("Can't get __reduce__ from base object");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2692|      0|    }
 2693|      2|    _Py_INTERP_CACHED_OBJECT(interp, objreduce) = baseobj_reduce;
  ------------------
  |  |   22|      2|    (interp)->cached_objects.NAME
  ------------------
 2694|       |
 2695|       |    // Must be after static types are initialized
 2696|      2|    if (_Py_initialize_generic(interp) < 0) {
  ------------------
  |  Branch (2696:9): [True: 0, False: 2]
  ------------------
 2697|      0|        return _PyStatus_ERR("Can't initialize generic types");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2698|      0|    }
 2699|       |
 2700|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2701|      2|}
_Py_NewReference:
 2760|  71.1k|{
 2761|       |#ifdef Py_REF_DEBUG
 2762|       |    _Py_IncRefTotal(_PyThreadState_GET());
 2763|       |#endif
 2764|  71.1k|    new_reference(op);
 2765|  71.1k|}
_Py_NewReferenceNoTotal:
 2769|  3.84k|{
 2770|  3.84k|    new_reference(op);
 2771|  3.84k|}
_Py_SetImmortalUntracked:
 2775|  6.61k|{
 2776|       |    // Check if already immortal to avoid degrading from static immortal to plain immortal
 2777|  6.61k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  6.61k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.61k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.61k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 6, False: 6.61k]
  |  |  ------------------
  ------------------
 2778|      6|        return;
 2779|      6|    }
 2780|       |#ifdef Py_GIL_DISABLED
 2781|       |    _Py_atomic_store_uintptr_relaxed(&op->ob_tid, _Py_UNOWNED_TID);
 2782|       |    _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, _Py_IMMORTAL_REFCNT_LOCAL);
 2783|       |    _Py_atomic_store_ssize_relaxed(&op->ob_ref_shared, 0);
 2784|       |    _Py_atomic_or_uint8(&op->ob_gc_bits, _PyGC_BITS_DEFERRED);
 2785|       |#elif SIZEOF_VOID_P > 4
 2786|  6.61k|    op->ob_flags = _Py_IMMORTAL_FLAGS;
  ------------------
  |  |  581|  6.61k|#define _Py_IMMORTAL_FLAGS (1 << 0)
  ------------------
 2787|  6.61k|    op->ob_refcnt = _Py_IMMORTAL_INITIAL_REFCNT;
  ------------------
  |  |   47|  6.61k|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  ------------------
 2788|       |#else
 2789|       |    op->ob_refcnt = _Py_IMMORTAL_INITIAL_REFCNT;
 2790|       |#endif
 2791|  6.61k|}
_Py_SetImmortal:
 2795|  6.61k|{
 2796|  6.61k|    if (PyObject_IS_GC(op) && _PyObject_GC_IS_TRACKED(op)) {
  ------------------
  |  |   81|    828|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|    828|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 826, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (2796:9): [True: 828, False: 5.78k]
  ------------------
 2797|    826|        _PyObject_GC_UNTRACK(op);
  ------------------
  |  |  515|    826|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    826|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    826|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2798|    826|    }
 2799|  6.61k|    _Py_SetImmortalUntracked(op);
 2800|  6.61k|}
_PyObject_SetDeferredRefcount:
 2804|  7.45k|{
 2805|       |#ifdef Py_GIL_DISABLED
 2806|       |    assert(PyType_IS_GC(Py_TYPE(op)));
 2807|       |    assert(_Py_IsOwnedByCurrentThread(op));
 2808|       |    assert(op->ob_ref_shared == 0);
 2809|       |    _PyObject_SET_GC_BITS(op, _PyGC_BITS_DEFERRED);
 2810|       |    op->ob_ref_shared = _Py_REF_SHARED(_Py_REF_DEFERRED, 0);
 2811|       |#endif
 2812|  7.45k|}
PyUnstable_Object_EnableDeferredRefcount:
 2816|    252|{
 2817|       |#ifdef Py_GIL_DISABLED
 2818|       |    if (!PyType_IS_GC(Py_TYPE(op))) {
 2819|       |        // Deferred reference counting doesn't work
 2820|       |        // on untracked types.
 2821|       |        return 0;
 2822|       |    }
 2823|       |
 2824|       |    uint8_t bits = _Py_atomic_load_uint8(&op->ob_gc_bits);
 2825|       |    if ((bits & _PyGC_BITS_DEFERRED) != 0)
 2826|       |    {
 2827|       |        // Nothing to do.
 2828|       |        return 0;
 2829|       |    }
 2830|       |
 2831|       |    if (_Py_atomic_compare_exchange_uint8(&op->ob_gc_bits, &bits, bits | _PyGC_BITS_DEFERRED) == 0)
 2832|       |    {
 2833|       |        // Someone beat us to it!
 2834|       |        return 0;
 2835|       |    }
 2836|       |    _Py_atomic_add_ssize(&op->ob_ref_shared, _Py_REF_SHARED(_Py_REF_DEFERRED, 0));
 2837|       |    return 1;
 2838|       |#else
 2839|    252|    return 0;
 2840|    252|#endif
 2841|    252|}
_Py_Dealloc:
 3284|  40.2k|{
 3285|  40.2k|    PyTypeObject *type = Py_TYPE(op);
  ------------------
  |  |  213|  40.2k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  40.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  40.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3286|  40.2k|    unsigned long gc_flag = type->tp_flags & Py_TPFLAGS_HAVE_GC;
  ------------------
  |  |  524|  40.2k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
 3287|  40.2k|    destructor dealloc = type->tp_dealloc;
 3288|  40.2k|    PyThreadState *tstate = _PyThreadState_GET();
 3289|  40.2k|    intptr_t margin = _Py_RecursionLimit_GetMargin(tstate);
 3290|  40.2k|    if (margin < 2 && gc_flag) {
  ------------------
  |  Branch (3290:9): [True: 0, False: 40.2k]
  |  Branch (3290:23): [True: 0, False: 0]
  ------------------
 3291|      0|        _PyTrash_thread_deposit_object(tstate, (PyObject *)op);
 3292|      0|        return;
 3293|      0|    }
 3294|       |#ifdef Py_DEBUG
 3295|       |#if !defined(Py_GIL_DISABLED) && !defined(Py_STACKREF_DEBUG)
 3296|       |    /* This assertion doesn't hold for the free-threading build, as
 3297|       |     * PyStackRef_CLOSE_SPECIALIZED is not implemented */
 3298|       |    assert(tstate->current_frame == NULL || tstate->current_frame->stackpointer != NULL);
 3299|       |#endif
 3300|       |    PyObject *old_exc = tstate != NULL ? tstate->current_exception : NULL;
 3301|       |    // Keep the old exception type alive to prevent undefined behavior
 3302|       |    // on (tstate->curexc_type != old_exc_type) below
 3303|       |    Py_XINCREF(old_exc);
 3304|       |    // Make sure that type->tp_name remains valid
 3305|       |    Py_INCREF(type);
 3306|       |#endif
 3307|       |
 3308|       |#ifdef Py_TRACE_REFS
 3309|       |    _Py_ForgetReference(op);
 3310|       |#endif
 3311|  40.2k|    _PyReftracerTrack(op, PyRefTracer_DESTROY);
  ------------------
  |  |  112|  40.2k|    do { \
  |  |  113|  40.2k|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  114|  40.2k|        if (tracer->tracer_func != NULL) { \
  |  |  ------------------
  |  |  |  Branch (114:13): [True: 0, False: 40.2k]
  |  |  ------------------
  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  117|      0|        } \
  |  |  118|  40.2k|    } while(0)
  |  |  ------------------
  |  |  |  Branch (118:13): [Folded, False: 40.2k]
  |  |  ------------------
  ------------------
 3312|  40.2k|    (*dealloc)(op);
 3313|       |
 3314|       |#ifdef Py_DEBUG
 3315|       |    // gh-89373: The tp_dealloc function must leave the current exception
 3316|       |    // unchanged.
 3317|       |    if (tstate != NULL && tstate->current_exception != old_exc) {
 3318|       |        const char *err;
 3319|       |        if (old_exc == NULL) {
 3320|       |            err = "Deallocator of type '%s' raised an exception";
 3321|       |        }
 3322|       |        else if (tstate->current_exception == NULL) {
 3323|       |            err = "Deallocator of type '%s' cleared the current exception";
 3324|       |        }
 3325|       |        else {
 3326|       |            // It can happen if dealloc() normalized the current exception.
 3327|       |            // A deallocator function must not change the current exception,
 3328|       |            // not even normalize it.
 3329|       |            err = "Deallocator of type '%s' overrode the current exception";
 3330|       |        }
 3331|       |        _Py_FatalErrorFormat(__func__, err, type->tp_name);
 3332|       |    }
 3333|       |    Py_XDECREF(old_exc);
 3334|       |    Py_DECREF(type);
 3335|       |#endif
 3336|  40.2k|    if (tstate->delete_later && margin >= 4 && gc_flag) {
  ------------------
  |  Branch (3336:9): [True: 0, False: 40.2k]
  |  Branch (3336:33): [True: 0, False: 0]
  |  Branch (3336:48): [True: 0, False: 0]
  ------------------
 3337|      0|        _PyTrash_thread_destroy_chain(tstate);
 3338|      0|    }
 3339|  40.2k|}
_Py_GetConstant_Init:
 3442|      2|{
 3443|      2|    constants[Py_CONSTANT_ZERO] = _PyLong_GetZero();
  ------------------
  |  |  595|      2|#define Py_CONSTANT_ZERO 5
  ------------------
 3444|      2|    constants[Py_CONSTANT_ONE] = _PyLong_GetOne();
  ------------------
  |  |  596|      2|#define Py_CONSTANT_ONE 6
  ------------------
 3445|      2|    constants[Py_CONSTANT_EMPTY_STR] = PyUnicode_New(0, 0);
  ------------------
  |  |  597|      2|#define Py_CONSTANT_EMPTY_STR 7
  ------------------
 3446|      2|    constants[Py_CONSTANT_EMPTY_BYTES] = PyBytes_FromStringAndSize(NULL, 0);
  ------------------
  |  |  598|      2|#define Py_CONSTANT_EMPTY_BYTES 8
  ------------------
 3447|      2|    constants[Py_CONSTANT_EMPTY_TUPLE] = PyTuple_New(0);
  ------------------
  |  |  599|      2|#define Py_CONSTANT_EMPTY_TUPLE 9
  ------------------
 3448|      2|#ifndef NDEBUG
 3449|     22|    for (size_t i=0; i < Py_ARRAY_LENGTH(constants); i++) {
  ------------------
  |  |  196|     22|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (3449:22): [True: 20, False: 2]
  ------------------
 3450|     20|        assert(constants[i] != NULL);
  ------------------
  |  Branch (3450:9): [True: 20, False: 0]
  ------------------
 3451|     20|        assert(_Py_IsImmortal(constants[i]));
  ------------------
  |  Branch (3451:9): [True: 20, False: 0]
  ------------------
 3452|     20|    }
 3453|      2|#endif
 3454|      2|}
Py_GetConstant:
 3458|      6|{
 3459|      6|    if (constant_id < Py_ARRAY_LENGTH(constants)) {
  ------------------
  |  |  196|      6|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (3459:9): [True: 6, False: 0]
  ------------------
 3460|      6|        return constants[constant_id];
 3461|      6|    }
 3462|      0|    else {
 3463|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3464|       |        return NULL;
 3465|      0|    }
 3466|      6|}
Py_GetConstantBorrowed:
 3471|      4|{
 3472|       |    // All constants are immortal
 3473|      4|    return Py_GetConstant(constant_id);
 3474|      4|}
PyUnstable_IsImmortal:
 3478|      2|{
 3479|       |    /* Checking a reference count requires a thread state */
 3480|      2|    _Py_AssertHoldsTstate();
  ------------------
  |  |  306|      2|#define _Py_AssertHoldsTstate() _Py_AssertHoldsTstateFunc(__func__)
  ------------------
 3481|      2|    assert(op != NULL);
  ------------------
  |  Branch (3481:5): [True: 2, False: 0]
  ------------------
 3482|      2|    return _Py_IsImmortal(op);
  ------------------
  |  |  137|      2|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3483|      2|}
_PyObject_VisitType:
 3495|     16|{
 3496|     16|    assert(op != NULL);
  ------------------
  |  Branch (3496:5): [True: 16, False: 0]
  ------------------
 3497|     16|    PyTypeObject *tp = Py_TYPE(op);
  ------------------
  |  |  213|     16|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3498|     16|    _PyObject_ASSERT((PyObject *)tp, PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE));
  ------------------
  |  |  423|     16|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|     16|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|     16|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 16, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|     16|      ? (void)(0) \
  |  |  |  |  |  |  416|     16|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3499|     16|    Py_VISIT(tp);
  ------------------
  |  |  194|     16|    do {                                                                \
  |  |  195|     16|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 16, False: 0]
  |  |  ------------------
  |  |  196|     16|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     16|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 16]
  |  |  ------------------
  |  |  198|     16|                return vret;                                            \
  |  |  199|     16|        }                                                               \
  |  |  200|     16|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 16]
  |  |  ------------------
  ------------------
 3500|     16|    return 0;
 3501|     16|}
object.c:do_richcompare:
 1049|  8.13k|{
 1050|  8.13k|    richcmpfunc f;
 1051|  8.13k|    PyObject *res;
 1052|  8.13k|    int checked_reverse_op = 0;
 1053|       |
 1054|  8.13k|    if (!Py_IS_TYPE(v, Py_TYPE(w)) &&
  ------------------
  |  |  215|  16.2k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  8.13k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.13k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1054:9): [True: 6, False: 8.13k]
  ------------------
 1055|      6|        PyType_IsSubtype(Py_TYPE(w), Py_TYPE(v)) &&
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      PyType_IsSubtype(Py_TYPE(w), Py_TYPE(v)) &&
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1055:9): [True: 0, False: 6]
  ------------------
 1056|      0|        (f = Py_TYPE(w)->tp_richcompare) != NULL) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1056:9): [True: 0, False: 0]
  ------------------
 1057|      0|        checked_reverse_op = 1;
 1058|      0|        res = (*f)(w, v, _Py_SwappedOp[op]);
 1059|      0|        if (res != Py_NotImplemented)
  ------------------
  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1059:13): [True: 0, False: 0]
  ------------------
 1060|      0|            return res;
 1061|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1062|      0|    }
 1063|  8.13k|    if ((f = Py_TYPE(v)->tp_richcompare) != NULL) {
  ------------------
  |  |  213|  8.13k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  8.13k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.13k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1063:9): [True: 8.13k, False: 0]
  ------------------
 1064|  8.13k|        res = (*f)(v, w, op);
 1065|  8.13k|        if (res != Py_NotImplemented)
  ------------------
  |  |  640|  8.13k|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1065:13): [True: 8.13k, False: 0]
  ------------------
 1066|  8.13k|            return res;
 1067|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1068|      0|    }
 1069|      0|    if (!checked_reverse_op && (f = Py_TYPE(w)->tp_richcompare) != NULL) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1069:9): [True: 0, False: 0]
  |  Branch (1069:32): [True: 0, False: 0]
  ------------------
 1070|      0|        res = (*f)(w, v, _Py_SwappedOp[op]);
 1071|      0|        if (res != Py_NotImplemented)
  ------------------
  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  ------------------
  |  Branch (1071:13): [True: 0, False: 0]
  ------------------
 1072|      0|            return res;
 1073|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1074|      0|    }
 1075|       |    /* If neither object implements it, provide a sensible default
 1076|       |       for == and !=, but raise an exception for ordering. */
 1077|      0|    switch (op) {
 1078|      0|    case Py_EQ:
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  |  Branch (1078:5): [True: 0, False: 0]
  ------------------
 1079|      0|        res = (v == w) ? Py_True : Py_False;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      res = (v == w) ? Py_True : Py_False;
  ------------------
  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1079:15): [True: 0, False: 0]
  ------------------
 1080|      0|        break;
 1081|      0|    case Py_NE:
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (1081:5): [True: 0, False: 0]
  ------------------
 1082|      0|        res = (v != w) ? Py_True : Py_False;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      res = (v != w) ? Py_True : Py_False;
  ------------------
  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1082:15): [True: 0, False: 0]
  ------------------
 1083|      0|        break;
 1084|      0|    default:
  ------------------
  |  Branch (1084:5): [True: 0, False: 0]
  ------------------
 1085|      0|        _PyErr_Format(tstate, PyExc_TypeError,
 1086|      0|                      "'%s' not supported between instances of '%.100s' and '%.100s'",
 1087|      0|                      opstrings[op],
 1088|      0|                      Py_TYPE(v)->tp_name,
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1089|      0|                      Py_TYPE(w)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1090|      0|        return NULL;
 1091|      0|    }
 1092|      0|    return Py_NewRef(res);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1093|      0|}
object.c:_dir_object:
 2235|      2|{
 2236|      2|    PyObject *result, *sorted;
 2237|      2|    PyObject *dirfunc = _PyObject_LookupSpecial(obj, &_Py_ID(__dir__));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2238|       |
 2239|      2|    assert(obj != NULL);
  ------------------
  |  Branch (2239:5): [True: 2, False: 0]
  ------------------
 2240|      2|    if (dirfunc == NULL) {
  ------------------
  |  Branch (2240:9): [True: 0, False: 2]
  ------------------
 2241|      0|        if (!PyErr_Occurred())
  ------------------
  |  Branch (2241:13): [True: 0, False: 0]
  ------------------
 2242|      0|            PyErr_SetString(PyExc_TypeError, "object does not provide __dir__");
 2243|      0|        return NULL;
 2244|      0|    }
 2245|       |    /* use __dir__ */
 2246|      2|    result = _PyObject_CallNoArgs(dirfunc);
 2247|      2|    Py_DECREF(dirfunc);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2248|      2|    if (result == NULL)
  ------------------
  |  Branch (2248:9): [True: 0, False: 2]
  ------------------
 2249|      0|        return NULL;
 2250|       |    /* return sorted(result) */
 2251|      2|    sorted = PySequence_List(result);
 2252|      2|    Py_DECREF(result);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2253|      2|    if (sorted == NULL)
  ------------------
  |  Branch (2253:9): [True: 0, False: 2]
  ------------------
 2254|      0|        return NULL;
 2255|      2|    if (PyList_Sort(sorted)) {
  ------------------
  |  Branch (2255:9): [True: 0, False: 2]
  ------------------
 2256|      0|        Py_DECREF(sorted);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2257|      0|        return NULL;
 2258|      0|    }
 2259|      2|    return sorted;
 2260|      2|}
object.c:none_repr:
 2281|      2|{
 2282|      2|    return PyUnicode_FromString("None");
 2283|      2|}
object.c:new_reference:
 2727|  75.0k|{
 2728|       |    // Skip the immortal object check in Py_SET_REFCNT; always set refcnt to 1
 2729|  75.0k|#if !defined(Py_GIL_DISABLED)
 2730|  75.0k|#if SIZEOF_VOID_P > 4
 2731|  75.0k|    op->ob_refcnt_full = 1;
 2732|  75.0k|    assert(op->ob_refcnt == 1);
  ------------------
  |  Branch (2732:5): [True: 75.0k, False: 0]
  ------------------
 2733|  75.0k|    assert(op->ob_flags == 0);
  ------------------
  |  Branch (2733:5): [True: 75.0k, False: 0]
  ------------------
 2734|       |#else
 2735|       |    op->ob_refcnt = 1;
 2736|       |#endif
 2737|       |#else
 2738|       |    op->ob_flags = 0;
 2739|       |    op->ob_mutex = (PyMutex){ 0 };
 2740|       |#ifdef _Py_THREAD_SANITIZER
 2741|       |    _Py_atomic_store_uintptr_relaxed(&op->ob_tid, _Py_ThreadId());
 2742|       |    _Py_atomic_store_uint8_relaxed(&op->ob_gc_bits, 0);
 2743|       |    _Py_atomic_store_uint32_relaxed(&op->ob_ref_local, 1);
 2744|       |    _Py_atomic_store_ssize_relaxed(&op->ob_ref_shared, 0);
 2745|       |#else
 2746|       |    op->ob_tid = _Py_ThreadId();
 2747|       |    op->ob_gc_bits = 0;
 2748|       |    op->ob_ref_local = 1;
 2749|       |    op->ob_ref_shared = 0;
 2750|       |#endif
 2751|       |#endif
 2752|       |#ifdef Py_TRACE_REFS
 2753|       |    _Py_AddToAllObjects(op);
 2754|       |#endif
 2755|  75.0k|    _PyReftracerTrack(op, PyRefTracer_CREATE);
  ------------------
  |  |  112|  75.0k|    do { \
  |  |  113|  75.0k|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  114|  75.0k|        if (tracer->tracer_func != NULL) { \
  |  |  ------------------
  |  |  |  Branch (114:13): [True: 0, False: 75.0k]
  |  |  ------------------
  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  117|      0|        } \
  |  |  118|  75.0k|    } while(0)
  |  |  ------------------
  |  |  |  Branch (118:13): [Folded, False: 75.0k]
  |  |  ------------------
  ------------------
 2756|  75.0k|}

_PyMem_RawMalloc:
   59|  5.42k|{
   60|       |    /* PyMem_RawMalloc(0) means malloc(1). Some systems would return NULL
   61|       |       for malloc(0), which would be treated as an error. Some platforms would
   62|       |       return a pointer with no memory behind it, which would break pymalloc.
   63|       |       To solve these problems, allocate an extra byte. */
   64|  5.42k|    if (size == 0)
  ------------------
  |  Branch (64:9): [True: 18, False: 5.40k]
  ------------------
   65|     18|        size = 1;
   66|  5.42k|    return malloc(size);
   67|  5.42k|}
_PyMem_RawCalloc:
   71|     12|{
   72|       |    /* PyMem_RawCalloc(0, 0) means calloc(1, 1). Some systems would return NULL
   73|       |       for calloc(0, 0), which would be treated as an error. Some platforms
   74|       |       would return a pointer with no memory behind it, which would break
   75|       |       pymalloc.  To solve these problems, allocate an extra byte. */
   76|     12|    if (nelem == 0 || elsize == 0) {
  ------------------
  |  Branch (76:9): [True: 0, False: 12]
  |  Branch (76:23): [True: 0, False: 12]
  ------------------
   77|      0|        nelem = 1;
   78|      0|        elsize = 1;
   79|      0|    }
   80|     12|    return calloc(nelem, elsize);
   81|     12|}
_PyMem_RawRealloc:
   85|    998|{
   86|    998|    if (size == 0)
  ------------------
  |  Branch (86:9): [True: 0, False: 998]
  ------------------
   87|      0|        size = 1;
   88|    998|    return realloc(ptr, size);
   89|    998|}
_PyMem_RawFree:
   93|  2.60k|{
   94|  2.60k|    free(ptr);
   95|  2.60k|}
_PyMem_DefaultRawMalloc:
  469|     14|{
  470|       |#ifdef Py_DEBUG
  471|       |    return _PyMem_DebugRawMalloc(&_PyRuntime.allocators.debug.raw, size);
  472|       |#else
  473|       |    return _PyMem_RawMalloc(NULL, size);
  474|     14|#endif
  475|     14|}
_PyMem_DefaultRawFree:
  499|     16|{
  500|       |#ifdef Py_DEBUG
  501|       |    _PyMem_DebugRawFree(&_PyRuntime.allocators.debug.raw, ptr);
  502|       |#else
  503|       |    _PyMem_RawFree(NULL, ptr);
  504|     16|#endif
  505|     16|}
_PyMem_DefaultRawWcsdup:
  509|     10|{
  510|     10|    assert(str != NULL);
  ------------------
  |  Branch (510:5): [True: 10, False: 0]
  ------------------
  511|       |
  512|     10|    size_t len = wcslen(str);
  513|     10|    if (len > (size_t)PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) {
  ------------------
  |  |  137|     10|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (513:9): [True: 0, False: 10]
  ------------------
  514|      0|        return NULL;
  515|      0|    }
  516|       |
  517|     10|    size_t size = (len + 1) * sizeof(wchar_t);
  518|     10|    wchar_t *str2 = _PyMem_DefaultRawMalloc(size);
  519|     10|    if (str2 == NULL) {
  ------------------
  |  Branch (519:9): [True: 0, False: 10]
  ------------------
  520|      0|        return NULL;
  521|      0|    }
  522|       |
  523|     10|    memcpy(str2, str, size);
  524|     10|    return str2;
  525|     10|}
_PyMem_ArenaAlloc:
  621|      6|{
  622|       |#ifdef MS_WINDOWS
  623|       |#  ifdef PYMALLOC_USE_HUGEPAGES
  624|       |    if (_PyRuntime.allocators.use_hugepages) {
  625|       |        SIZE_T lp_size = GetLargePageMinimum();
  626|       |        if (lp_size > 0 && size % lp_size == 0) {
  627|       |            void *ptr = VirtualAlloc(NULL, size,
  628|       |                            MEM_COMMIT | MEM_RESERVE | MEM_LARGE_PAGES,
  629|       |                            PAGE_READWRITE);
  630|       |            if (ptr != NULL)
  631|       |                return ptr;
  632|       |        }
  633|       |    }
  634|       |    /* Fall back to regular pages */
  635|       |#  endif
  636|       |    return VirtualAlloc(NULL, size,
  637|       |                        MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE);
  638|       |#elif defined(ARENAS_USE_MMAP)
  639|       |    void *ptr;
  640|       |#  ifdef PYMALLOC_USE_HUGEPAGES
  641|       |#    ifdef MAP_HUGETLB
  642|       |    if (_PyRuntime.allocators.use_hugepages) {
  643|       |        size_t hp_size = _pymalloc_system_hugepage_size();
  644|       |        /* Only use huge pages if the arena size is a multiple of the
  645|       |         * system's default huge page size.  When the arena is smaller
  646|       |         * than the huge page, mmap still succeeds but silently
  647|       |         * allocates an entire huge page; the subsequent munmap with
  648|       |         * the smaller arena size then fails with EINVAL, leaking
  649|       |         * all of that memory. */
  650|       |        if (hp_size > 0 && size % hp_size == 0) {
  651|       |            ptr = mmap(NULL, size, PROT_READ|PROT_WRITE,
  652|       |                       MAP_PRIVATE|MAP_ANONYMOUS|MAP_HUGETLB, -1, 0);
  653|       |            if (ptr != MAP_FAILED) {
  654|       |                assert(ptr != NULL);
  655|       |                (void)_PyAnnotateMemoryMap(ptr, size, "cpython:pymalloc:hugepage");
  656|       |                return ptr;
  657|       |            }
  658|       |        }
  659|       |    }
  660|       |    /* Fall back to regular pages */
  661|       |#    endif
  662|       |#  endif
  663|      6|    ptr = mmap(NULL, size, PROT_READ|PROT_WRITE,
  664|      6|               MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
  665|      6|    if (ptr == MAP_FAILED)
  ------------------
  |  Branch (665:9): [True: 0, False: 6]
  ------------------
  666|      0|        return NULL;
  667|      6|    assert(ptr != NULL);
  ------------------
  |  Branch (667:5): [True: 6, False: 0]
  ------------------
  668|      6|#ifdef MADV_HUGEPAGE
  669|      6|    (void)madvise(ptr, size, MADV_HUGEPAGE);
  670|      6|#endif
  671|      6|    (void)_PyAnnotateMemoryMap(ptr, size, "cpython:pymalloc");
  672|      6|    return ptr;
  673|       |#else
  674|       |    return malloc(size);
  675|       |#endif
  676|      6|}
PyMem_GetAllocator:
 1130|      2|{
 1131|      2|    PyMutex_Lock(&ALLOCATORS_MUTEX);
  ------------------
  |  |   59|      2|#define PyMutex_Lock _PyMutex_Lock
  ------------------
                  PyMutex_Lock(&ALLOCATORS_MUTEX);
  ------------------
  |  |  713|      2|#define ALLOCATORS_MUTEX (_PyRuntime.allocators.mutex)
  ------------------
 1132|      2|    get_allocator_unlocked(domain, allocator);
 1133|      2|    PyMutex_Unlock(&ALLOCATORS_MUTEX);
  ------------------
  |  |   70|      2|#define PyMutex_Unlock _PyMutex_Unlock
  ------------------
                  PyMutex_Unlock(&ALLOCATORS_MUTEX);
  ------------------
  |  |  713|      2|#define ALLOCATORS_MUTEX (_PyRuntime.allocators.mutex)
  ------------------
 1134|      2|}
_PyObject_VirtualAlloc:
 1181|      2|{
 1182|      2|    size_t alloc_size = _pymalloc_virtual_alloc_size(size);
 1183|      2|    if (alloc_size == 0 && size != 0) {
  ------------------
  |  Branch (1183:9): [True: 0, False: 2]
  |  Branch (1183:28): [True: 0, False: 0]
  ------------------
 1184|      0|        return NULL;
 1185|      0|    }
 1186|      2|    return _PyObject_Arena.alloc(_PyObject_Arena.ctx, alloc_size);
  ------------------
  |  |  718|      2|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
                  return _PyObject_Arena.alloc(_PyObject_Arena.ctx, alloc_size);
  ------------------
  |  |  718|      2|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
 1187|      2|}
PyMem_RawMalloc:
 1204|  5.40k|{
 1205|       |    /*
 1206|       |     * Limit ourselves to PY_SSIZE_T_MAX bytes to prevent security holes.
 1207|       |     * Most python internals blindly use a signed Py_ssize_t to track
 1208|       |     * things without checking for overflows or negatives.
 1209|       |     * As size_t is unsigned, checking for size < 0 is not required.
 1210|       |     */
 1211|  5.40k|    if (size > (size_t)PY_SSIZE_T_MAX)
  ------------------
  |  |  137|  5.40k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1211:9): [True: 0, False: 5.40k]
  ------------------
 1212|      0|        return NULL;
 1213|  5.40k|    return _PyMem_Raw.malloc(_PyMem_Raw.ctx, size);
  ------------------
  |  |  714|  5.40k|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
                  return _PyMem_Raw.malloc(_PyMem_Raw.ctx, size);
  ------------------
  |  |  714|  5.40k|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
 1214|  5.40k|}
PyMem_RawCalloc:
 1218|     12|{
 1219|       |    /* see PyMem_RawMalloc() */
 1220|     12|    if (elsize != 0 && nelem > (size_t)PY_SSIZE_T_MAX / elsize)
  ------------------
  |  |  137|     12|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1220:9): [True: 12, False: 0]
  |  Branch (1220:24): [True: 0, False: 12]
  ------------------
 1221|      0|        return NULL;
 1222|     12|    return _PyMem_Raw.calloc(_PyMem_Raw.ctx, nelem, elsize);
  ------------------
  |  |  714|     12|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
                  return _PyMem_Raw.calloc(_PyMem_Raw.ctx, nelem, elsize);
  ------------------
  |  |  714|     12|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
 1223|     12|}
PyMem_RawRealloc:
 1227|    998|{
 1228|       |    /* see PyMem_RawMalloc() */
 1229|    998|    if (new_size > (size_t)PY_SSIZE_T_MAX)
  ------------------
  |  |  137|    998|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1229:9): [True: 0, False: 998]
  ------------------
 1230|      0|        return NULL;
 1231|    998|    return _PyMem_Raw.realloc(_PyMem_Raw.ctx, ptr, new_size);
  ------------------
  |  |  714|    998|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
                  return _PyMem_Raw.realloc(_PyMem_Raw.ctx, ptr, new_size);
  ------------------
  |  |  714|    998|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
 1232|    998|}
PyMem_RawFree:
 1235|  2.59k|{
 1236|  2.59k|    _PyMem_Raw.free(_PyMem_Raw.ctx, ptr);
  ------------------
  |  |  714|  2.59k|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
                  _PyMem_Raw.free(_PyMem_Raw.ctx, ptr);
  ------------------
  |  |  714|  2.59k|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
 1237|  2.59k|}
PyMem_Malloc:
 1246|  3.33k|{
 1247|       |    /* see PyMem_RawMalloc() */
 1248|  3.33k|    if (size > (size_t)PY_SSIZE_T_MAX)
  ------------------
  |  |  137|  3.33k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1248:9): [True: 0, False: 3.33k]
  ------------------
 1249|      0|        return NULL;
 1250|  3.33k|    OBJECT_STAT_INC_COND(allocations512, size < 512);
  ------------------
  |  |   78|  3.33k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1251|  3.33k|    OBJECT_STAT_INC_COND(allocations4k, size >= 512 && size < 4094);
  ------------------
  |  |   78|  3.33k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1252|  3.33k|    OBJECT_STAT_INC_COND(allocations_big, size >= 4094);
  ------------------
  |  |   78|  3.33k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1253|  3.33k|    OBJECT_STAT_INC(allocations);
  ------------------
  |  |   77|  3.33k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
 1254|  3.33k|    return _PyMem.malloc(_PyMem.ctx, size);
  ------------------
  |  |  715|  3.33k|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
                  return _PyMem.malloc(_PyMem.ctx, size);
  ------------------
  |  |  715|  3.33k|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
 1255|  3.33k|}
PyMem_Calloc:
 1259|     88|{
 1260|       |    /* see PyMem_RawMalloc() */
 1261|     88|    if (elsize != 0 && nelem > (size_t)PY_SSIZE_T_MAX / elsize)
  ------------------
  |  |  137|     88|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1261:9): [True: 88, False: 0]
  |  Branch (1261:24): [True: 0, False: 88]
  ------------------
 1262|      0|        return NULL;
 1263|     88|    OBJECT_STAT_INC_COND(allocations512, elsize < 512);
  ------------------
  |  |   78|     88|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1264|     88|    OBJECT_STAT_INC_COND(allocations4k, elsize >= 512 && elsize < 4094);
  ------------------
  |  |   78|     88|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1265|     88|    OBJECT_STAT_INC_COND(allocations_big, elsize >= 4094);
  ------------------
  |  |   78|     88|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1266|     88|    OBJECT_STAT_INC(allocations);
  ------------------
  |  |   77|     88|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
 1267|     88|    return _PyMem.calloc(_PyMem.ctx, nelem, elsize);
  ------------------
  |  |  715|     88|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
                  return _PyMem.calloc(_PyMem.ctx, nelem, elsize);
  ------------------
  |  |  715|     88|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
 1268|     88|}
PyMem_Realloc:
 1272|    980|{
 1273|       |    /* see PyMem_RawMalloc() */
 1274|    980|    if (new_size > (size_t)PY_SSIZE_T_MAX)
  ------------------
  |  |  137|    980|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1274:9): [True: 0, False: 980]
  ------------------
 1275|      0|        return NULL;
 1276|    980|    return _PyMem.realloc(_PyMem.ctx, ptr, new_size);
  ------------------
  |  |  715|    980|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
                  return _PyMem.realloc(_PyMem.ctx, ptr, new_size);
  ------------------
  |  |  715|    980|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
 1277|    980|}
PyMem_Free:
 1281|  2.26k|{
 1282|  2.26k|    OBJECT_STAT_INC(frees);
  ------------------
  |  |   77|  2.26k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
 1283|  2.26k|    _PyMem.free(_PyMem.ctx, ptr);
  ------------------
  |  |  715|  2.26k|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
                  _PyMem.free(_PyMem.ctx, ptr);
  ------------------
  |  |  715|  2.26k|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
 1284|  2.26k|}
_PyMem_RawWcsdup:
 1293|     82|{
 1294|     82|    assert(str != NULL);
  ------------------
  |  Branch (1294:5): [True: 82, False: 0]
  ------------------
 1295|       |
 1296|     82|    size_t len = wcslen(str);
 1297|     82|    if (len > (size_t)PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) {
  ------------------
  |  |  137|     82|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1297:9): [True: 0, False: 82]
  ------------------
 1298|      0|        return NULL;
 1299|      0|    }
 1300|       |
 1301|     82|    size_t size = (len + 1) * sizeof(wchar_t);
 1302|     82|    wchar_t *str2 = PyMem_RawMalloc(size);
 1303|     82|    if (str2 == NULL) {
  ------------------
  |  Branch (1303:9): [True: 0, False: 82]
  ------------------
 1304|      0|        return NULL;
 1305|      0|    }
 1306|       |
 1307|     82|    memcpy(str2, str, size);
 1308|     82|    return str2;
 1309|     82|}
_PyMem_RawStrdup:
 1313|      8|{
 1314|      8|    assert(str != NULL);
  ------------------
  |  Branch (1314:5): [True: 8, False: 0]
  ------------------
 1315|      8|    size_t size = strlen(str) + 1;
 1316|      8|    char *copy = PyMem_RawMalloc(size);
 1317|      8|    if (copy == NULL) {
  ------------------
  |  Branch (1317:9): [True: 0, False: 8]
  ------------------
 1318|      0|        return NULL;
 1319|      0|    }
 1320|      8|    memcpy(copy, str, size);
 1321|      8|    return copy;
 1322|      8|}
PyObject_Malloc:
 1698|  59.7k|{
 1699|       |    /* see PyMem_RawMalloc() */
 1700|  59.7k|    if (size > (size_t)PY_SSIZE_T_MAX)
  ------------------
  |  |  137|  59.7k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1700:9): [True: 0, False: 59.7k]
  ------------------
 1701|      0|        return NULL;
 1702|  59.7k|    OBJECT_STAT_INC_COND(allocations512, size < 512);
  ------------------
  |  |   78|  59.7k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1703|  59.7k|    OBJECT_STAT_INC_COND(allocations4k, size >= 512 && size < 4094);
  ------------------
  |  |   78|  59.7k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1704|  59.7k|    OBJECT_STAT_INC_COND(allocations_big, size >= 4094);
  ------------------
  |  |   78|  59.7k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 1705|  59.7k|    OBJECT_STAT_INC(allocations);
  ------------------
  |  |   77|  59.7k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
 1706|  59.7k|    return _PyObject.malloc(_PyObject.ctx, size);
  ------------------
  |  |  716|  59.7k|#define _PyObject (_PyRuntime.allocators.standard.obj)
  ------------------
                  return _PyObject.malloc(_PyObject.ctx, size);
  ------------------
  |  |  716|  59.7k|#define _PyObject (_PyRuntime.allocators.standard.obj)
  ------------------
 1707|  59.7k|}
PyObject_Realloc:
 1724|  3.84k|{
 1725|       |    /* see PyMem_RawMalloc() */
 1726|  3.84k|    if (new_size > (size_t)PY_SSIZE_T_MAX)
  ------------------
  |  |  137|  3.84k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1726:9): [True: 0, False: 3.84k]
  ------------------
 1727|      0|        return NULL;
 1728|  3.84k|    return _PyObject.realloc(_PyObject.ctx, ptr, new_size);
  ------------------
  |  |  716|  3.84k|#define _PyObject (_PyRuntime.allocators.standard.obj)
  ------------------
                  return _PyObject.realloc(_PyObject.ctx, ptr, new_size);
  ------------------
  |  |  716|  3.84k|#define _PyObject (_PyRuntime.allocators.standard.obj)
  ------------------
 1729|  3.84k|}
PyObject_Free:
 1733|  29.0k|{
 1734|  29.0k|    OBJECT_STAT_INC(frees);
  ------------------
  |  |   77|  29.0k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
 1735|  29.0k|    _PyObject.free(_PyObject.ctx, ptr);
  ------------------
  |  |  716|  29.0k|#define _PyObject (_PyRuntime.allocators.standard.obj)
  ------------------
                  _PyObject.free(_PyObject.ctx, ptr);
  ------------------
  |  |  716|  29.0k|#define _PyObject (_PyRuntime.allocators.standard.obj)
  ------------------
 1736|  29.0k|}
_PyObject_Malloc:
 2539|  66.7k|{
 2540|  66.7k|    OMState *state = get_state();
 2541|  66.7k|    void* ptr = pymalloc_alloc(state, ctx, nbytes);
 2542|  66.7k|    if (LIKELY(ptr != NULL)) {
  ------------------
  |  | 1743|  66.7k|#  define LIKELY(value) __builtin_expect((value), 1)
  |  |  ------------------
  |  |  |  Branch (1743:25): [True: 63.8k, False: 2.91k]
  |  |  ------------------
  ------------------
 2543|  63.8k|        return ptr;
 2544|  63.8k|    }
 2545|       |
 2546|  2.91k|    ptr = PyMem_RawMalloc(nbytes);
 2547|  2.91k|    if (ptr != NULL) {
  ------------------
  |  Branch (2547:9): [True: 2.91k, False: 0]
  ------------------
 2548|  2.91k|        raw_allocated_blocks++;
  ------------------
  |  | 1793|  2.91k|#define raw_allocated_blocks (state->mgmt.raw_allocated_blocks)
  ------------------
 2549|  2.91k|    }
 2550|  2.91k|    return ptr;
 2551|  66.7k|}
_PyObject_Calloc:
 2556|     88|{
 2557|     88|    assert(elsize == 0 || nelem <= (size_t)PY_SSIZE_T_MAX / elsize);
  ------------------
  |  Branch (2557:5): [True: 0, False: 88]
  |  Branch (2557:5): [True: 88, False: 0]
  ------------------
 2558|     88|    size_t nbytes = nelem * elsize;
 2559|       |
 2560|     88|    OMState *state = get_state();
 2561|     88|    void* ptr = pymalloc_alloc(state, ctx, nbytes);
 2562|     88|    if (LIKELY(ptr != NULL)) {
  ------------------
  |  | 1743|     88|#  define LIKELY(value) __builtin_expect((value), 1)
  |  |  ------------------
  |  |  |  Branch (1743:25): [True: 82, False: 6]
  |  |  ------------------
  ------------------
 2563|     82|        memset(ptr, 0, nbytes);
 2564|     82|        return ptr;
 2565|     82|    }
 2566|       |
 2567|      6|    ptr = PyMem_RawCalloc(nelem, elsize);
 2568|      6|    if (ptr != NULL) {
  ------------------
  |  Branch (2568:9): [True: 6, False: 0]
  ------------------
 2569|      6|        raw_allocated_blocks++;
  ------------------
  |  | 1793|      6|#define raw_allocated_blocks (state->mgmt.raw_allocated_blocks)
  ------------------
 2570|      6|    }
 2571|      6|    return ptr;
 2572|     88|}
_PyObject_Free:
 2821|  34.7k|{
 2822|       |    /* PyObject_Free(NULL) has no effect */
 2823|  34.7k|    if (p == NULL) {
  ------------------
  |  Branch (2823:9): [True: 208, False: 34.5k]
  ------------------
 2824|    208|        return;
 2825|    208|    }
 2826|       |
 2827|  34.5k|    OMState *state = get_state();
 2828|  34.5k|    if (UNLIKELY(!pymalloc_free(state, ctx, p))) {
  ------------------
  |  | 1742|  34.5k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 2.03k, False: 32.4k]
  |  |  ------------------
  ------------------
 2829|       |        /* pymalloc didn't allocate this address */
 2830|  2.03k|        PyMem_RawFree(p);
 2831|  2.03k|        raw_allocated_blocks--;
  ------------------
  |  | 1793|  2.03k|#define raw_allocated_blocks (state->mgmt.raw_allocated_blocks)
  ------------------
 2832|  2.03k|    }
 2833|  34.5k|}
_PyObject_Realloc:
 2909|  4.82k|{
 2910|  4.82k|    void *ptr2;
 2911|       |
 2912|  4.82k|    if (ptr == NULL) {
  ------------------
  |  Branch (2912:9): [True: 266, False: 4.55k]
  ------------------
 2913|    266|        return _PyObject_Malloc(ctx, nbytes);
 2914|    266|    }
 2915|       |
 2916|  4.55k|    OMState *state = get_state();
 2917|  4.55k|    if (pymalloc_realloc(state, ctx, &ptr2, ptr, nbytes)) {
  ------------------
  |  Branch (2917:9): [True: 3.60k, False: 946]
  ------------------
 2918|  3.60k|        return ptr2;
 2919|  3.60k|    }
 2920|       |
 2921|    946|    return PyMem_RawRealloc(ptr, nbytes);
 2922|  4.55k|}
_PyMem_init_obmalloc:
 3561|      2|{
 3562|      2|#ifdef WITH_PYMALLOC
 3563|       |    /* Initialize obmalloc, but only for subinterpreters,
 3564|       |       since the main interpreter is initialized statically. */
 3565|      2|    if (_Py_IsMainInterpreter(interp)
  ------------------
  |  Branch (3565:9): [True: 2, False: 0]
  ------------------
 3566|      0|            || _PyInterpreterState_HasFeature(interp,
  ------------------
  |  Branch (3566:16): [True: 0, False: 0]
  ------------------
 3567|      2|                                              Py_RTFLAGS_USE_MAIN_OBMALLOC)) {
  ------------------
  |  |   79|      0|#define Py_RTFLAGS_USE_MAIN_OBMALLOC (1UL << 5)
  ------------------
 3568|      2|        interp->obmalloc = &obmalloc_state_main;
 3569|      2|        if (!obmalloc_state_initialized) {
  ------------------
  |  Branch (3569:13): [True: 2, False: 0]
  ------------------
 3570|      2|            init_obmalloc_pools(interp);
 3571|      2|            obmalloc_state_initialized = true;
 3572|      2|        }
 3573|      2|    } else {
 3574|      0|        interp->obmalloc = PyMem_RawCalloc(1, sizeof(struct _obmalloc_state));
 3575|      0|        if (interp->obmalloc == NULL) {
  ------------------
  |  Branch (3575:13): [True: 0, False: 0]
  ------------------
 3576|      0|            return -1;
 3577|      0|        }
 3578|      0|        init_obmalloc_pools(interp);
 3579|      0|    }
 3580|      2|#endif /* WITH_PYMALLOC */
 3581|      2|    return 0; // success
 3582|      2|}
obmalloc.c:get_allocator_unlocked:
 1100|      2|{
 1101|      2|    switch(domain)
 1102|      2|    {
 1103|      2|    case PYMEM_DOMAIN_RAW: *allocator = _PyMem_Raw; break;
  ------------------
  |  |  714|      2|#define _PyMem_Raw (_PyRuntime.allocators.standard.raw)
  ------------------
  |  Branch (1103:5): [True: 2, False: 0]
  ------------------
 1104|      0|    case PYMEM_DOMAIN_MEM: *allocator = _PyMem; break;
  ------------------
  |  |  715|      0|#define _PyMem (_PyRuntime.allocators.standard.mem)
  ------------------
  |  Branch (1104:5): [True: 0, False: 2]
  ------------------
 1105|      0|    case PYMEM_DOMAIN_OBJ: *allocator = _PyObject; break;
  ------------------
  |  |  716|      0|#define _PyObject (_PyRuntime.allocators.standard.obj)
  ------------------
  |  Branch (1105:5): [True: 0, False: 2]
  ------------------
 1106|      0|    default:
  ------------------
  |  Branch (1106:5): [True: 0, False: 2]
  ------------------
 1107|       |        /* unknown domain: set all attributes to NULL */
 1108|      0|        allocator->ctx = NULL;
 1109|      0|        allocator->malloc = NULL;
 1110|      0|        allocator->calloc = NULL;
 1111|      0|        allocator->realloc = NULL;
 1112|       |        allocator->free = NULL;
 1113|      2|    }
 1114|      2|}
obmalloc.c:_pymalloc_virtual_alloc_size:
  600|      2|{
  601|       |#if defined(MS_WINDOWS) && defined(PYMALLOC_USE_HUGEPAGES)
  602|       |    if (_PyRuntime.allocators.use_hugepages) {
  603|       |        SIZE_T large_page_size = GetLargePageMinimum();
  604|       |        if (large_page_size > 0) {
  605|       |            return _pymalloc_round_up_to_multiple(size, (size_t)large_page_size);
  606|       |        }
  607|       |    }
  608|       |#elif defined(PYMALLOC_USE_HUGEPAGES) && defined(ARENAS_USE_MMAP) && defined(MAP_HUGETLB)
  609|       |    if (_PyRuntime.allocators.use_hugepages) {
  610|       |        size_t hp_size = _pymalloc_system_hugepage_size();
  611|       |        if (hp_size > 0) {
  612|       |            return _pymalloc_round_up_to_multiple(size, hp_size);
  613|       |        }
  614|       |    }
  615|       |#endif
  616|      2|    return size;
  617|      2|}
obmalloc.c:get_state:
 1777|   105k|{
 1778|   105k|    PyInterpreterState *interp = _PyInterpreterState_GET();
 1779|   105k|    assert(interp->obmalloc != NULL); // otherwise not initialized or freed
  ------------------
  |  Branch (1779:5): [True: 105k, False: 0]
  ------------------
 1780|   105k|    return interp->obmalloc;
 1781|   105k|}
obmalloc.c:pymalloc_alloc:
 2491|  66.8k|{
 2492|       |#ifdef WITH_VALGRIND
 2493|       |    if (UNLIKELY(running_on_valgrind == -1)) {
 2494|       |        running_on_valgrind = RUNNING_ON_VALGRIND;
 2495|       |    }
 2496|       |    if (UNLIKELY(running_on_valgrind)) {
 2497|       |        return NULL;
 2498|       |    }
 2499|       |#endif
 2500|       |
 2501|  66.8k|    if (UNLIKELY(nbytes == 0)) {
  ------------------
  |  | 1742|  66.8k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 18, False: 66.8k]
  |  |  ------------------
  ------------------
 2502|     18|        return NULL;
 2503|     18|    }
 2504|  66.8k|    if (UNLIKELY(nbytes > SMALL_REQUEST_THRESHOLD)) {
  ------------------
  |  | 1742|  66.8k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 2.90k, False: 63.9k]
  |  |  ------------------
  ------------------
 2505|  2.90k|        return NULL;
 2506|  2.90k|    }
 2507|       |
 2508|  63.9k|    uint size = (uint)(nbytes - 1) >> ALIGNMENT_SHIFT;
  ------------------
  |  |   35|  63.9k|#define uint pymem_uint
  ------------------
                  uint size = (uint)(nbytes - 1) >> ALIGNMENT_SHIFT;
  ------------------
  |  |  139|  63.9k|#define ALIGNMENT_SHIFT         4
  ------------------
 2509|  63.9k|    poolp pool = usedpools[size + size];
  ------------------
  |  | 1784|  63.9k|#define usedpools (state->pools.used)
  ------------------
 2510|  63.9k|    pymem_block *bp;
 2511|       |
 2512|  63.9k|    if (LIKELY(pool != pool->nextpool)) {
  ------------------
  |  | 1743|  63.9k|#  define LIKELY(value) __builtin_expect((value), 1)
  |  |  ------------------
  |  |  |  Branch (1743:25): [True: 62.8k, False: 1.09k]
  |  |  ------------------
  ------------------
 2513|       |        /*
 2514|       |         * There is a used pool for this size class.
 2515|       |         * Pick up the head block of its free list.
 2516|       |         */
 2517|  62.8k|        ++pool->ref.count;
 2518|  62.8k|        bp = pool->freeblock;
 2519|  62.8k|        assert(bp != NULL);
  ------------------
  |  Branch (2519:9): [True: 62.8k, False: 0]
  ------------------
 2520|       |
 2521|  62.8k|        if (UNLIKELY((pool->freeblock = *(pymem_block **)bp) == NULL)) {
  ------------------
  |  | 1742|  62.8k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 37.4k, False: 25.4k]
  |  |  ------------------
  ------------------
 2522|       |            // Reached the end of the free list, try to extend it.
 2523|  37.4k|            pymalloc_pool_extend(pool, size);
 2524|  37.4k|        }
 2525|  62.8k|    }
 2526|  1.09k|    else {
 2527|       |        /* There isn't a pool of the right size class immediately
 2528|       |         * available:  use a free pool.
 2529|       |         */
 2530|  1.09k|        bp = allocate_from_new_pool(state, size);
 2531|  1.09k|    }
 2532|       |
 2533|  63.9k|    return (void *)bp;
 2534|  63.9k|}
obmalloc.c:pymalloc_pool_extend:
 2333|  37.4k|{
 2334|  37.4k|    if (UNLIKELY(pool->nextoffset <= pool->maxnextoffset)) {
  ------------------
  |  | 1742|  37.4k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 31.2k, False: 6.15k]
  |  |  ------------------
  ------------------
 2335|       |        /* There is room for another block. */
 2336|  31.2k|        pool->freeblock = (pymem_block*)pool + pool->nextoffset;
 2337|  31.2k|        pool->nextoffset += INDEX2SIZE(size);
  ------------------
  |  |  146|  31.2k|#define INDEX2SIZE(I) (((pymem_uint)(I) + 1) << ALIGNMENT_SHIFT)
  |  |  ------------------
  |  |  |  |  139|  31.2k|#define ALIGNMENT_SHIFT         4
  |  |  ------------------
  ------------------
 2338|  31.2k|        *(pymem_block **)(pool->freeblock) = NULL;
 2339|  31.2k|        return;
 2340|  31.2k|    }
 2341|       |
 2342|       |    /* Pool is full, unlink from used pools. */
 2343|  6.15k|    poolp next;
 2344|  6.15k|    next = pool->nextpool;
 2345|  6.15k|    pool = pool->prevpool;
 2346|  6.15k|    next->prevpool = pool;
 2347|  6.15k|    pool->nextpool = next;
 2348|  6.15k|}
obmalloc.c:allocate_from_new_pool:
 2355|  1.09k|{
 2356|       |    /* There isn't a pool of the right size class immediately
 2357|       |     * available:  use a free pool.
 2358|       |     */
 2359|  1.09k|    if (UNLIKELY(usable_arenas == NULL)) {
  ------------------
  |  | 1742|  1.09k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 4, False: 1.09k]
  |  |  ------------------
  ------------------
 2360|       |        /* No arena has a free pool:  allocate a new arena. */
 2361|       |#ifdef WITH_MEMORY_LIMITS
 2362|       |        if (narenas_currently_allocated >= MAX_ARENAS) {
 2363|       |            return NULL;
 2364|       |        }
 2365|       |#endif
 2366|      4|        usable_arenas = new_arena(state);
  ------------------
  |  | 1788|      4|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2367|      4|        if (usable_arenas == NULL) {
  ------------------
  |  | 1788|      4|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
  |  Branch (2367:13): [True: 0, False: 4]
  ------------------
 2368|      0|            return NULL;
 2369|      0|        }
 2370|      4|        usable_arenas->nextarena = usable_arenas->prevarena = NULL;
  ------------------
  |  | 1788|      4|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                      usable_arenas->nextarena = usable_arenas->prevarena = NULL;
  ------------------
  |  | 1788|      4|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2371|      4|        assert(nfp2lasta[usable_arenas->nfreepools] == NULL);
  ------------------
  |  Branch (2371:9): [True: 4, False: 0]
  ------------------
 2372|      4|        nfp2lasta[usable_arenas->nfreepools] = usable_arenas;
  ------------------
  |  | 1789|      4|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
                      nfp2lasta[usable_arenas->nfreepools] = usable_arenas;
  ------------------
  |  | 1788|      4|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                      nfp2lasta[usable_arenas->nfreepools] = usable_arenas;
  ------------------
  |  | 1788|      4|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2373|      4|    }
 2374|  1.09k|    assert(usable_arenas->address != 0);
  ------------------
  |  Branch (2374:5): [True: 1.09k, False: 0]
  ------------------
 2375|       |
 2376|       |    /* This arena already had the smallest nfreepools value, so decreasing
 2377|       |     * nfreepools doesn't change that, and we don't need to rearrange the
 2378|       |     * usable_arenas list.  However, if the arena becomes wholly allocated,
 2379|       |     * we need to remove its arena_object from usable_arenas.
 2380|       |     */
 2381|  1.09k|    assert(usable_arenas->nfreepools > 0);
  ------------------
  |  Branch (2381:5): [True: 1.09k, False: 0]
  ------------------
 2382|  1.09k|    if (nfp2lasta[usable_arenas->nfreepools] == usable_arenas) {
  ------------------
  |  | 1789|  1.09k|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
                  if (nfp2lasta[usable_arenas->nfreepools] == usable_arenas) {
  ------------------
  |  | 1788|  1.09k|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                  if (nfp2lasta[usable_arenas->nfreepools] == usable_arenas) {
  ------------------
  |  | 1788|  1.09k|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
  |  Branch (2382:9): [True: 1.09k, False: 0]
  ------------------
 2383|       |        /* It's the last of this size, so there won't be any. */
 2384|  1.09k|        nfp2lasta[usable_arenas->nfreepools] = NULL;
  ------------------
  |  | 1789|  1.09k|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
                      nfp2lasta[usable_arenas->nfreepools] = NULL;
  ------------------
  |  | 1788|  1.09k|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2385|  1.09k|    }
 2386|       |    /* If any free pools will remain, it will be the new smallest. */
 2387|  1.09k|    if (usable_arenas->nfreepools > 1) {
  ------------------
  |  | 1788|  1.09k|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
  |  Branch (2387:9): [True: 1.09k, False: 2]
  ------------------
 2388|  1.09k|        assert(nfp2lasta[usable_arenas->nfreepools - 1] == NULL);
  ------------------
  |  Branch (2388:9): [True: 1.09k, False: 0]
  ------------------
 2389|  1.09k|        nfp2lasta[usable_arenas->nfreepools - 1] = usable_arenas;
  ------------------
  |  | 1789|  1.09k|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
                      nfp2lasta[usable_arenas->nfreepools - 1] = usable_arenas;
  ------------------
  |  | 1788|  1.09k|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                      nfp2lasta[usable_arenas->nfreepools - 1] = usable_arenas;
  ------------------
  |  | 1788|  1.09k|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2390|  1.09k|    }
 2391|       |
 2392|       |    /* Try to get a cached free pool. */
 2393|  1.09k|    poolp pool = usable_arenas->freepools;
  ------------------
  |  | 1788|  1.09k|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2394|  1.09k|    if (LIKELY(pool != NULL)) {
  ------------------
  |  | 1743|  1.09k|#  define LIKELY(value) __builtin_expect((value), 1)
  |  |  ------------------
  |  |  |  Branch (1743:25): [True: 884, False: 211]
  |  |  ------------------
  ------------------
 2395|       |        /* Unlink from cached pools. */
 2396|    884|        usable_arenas->freepools = pool->nextpool;
  ------------------
  |  | 1788|    884|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2397|    884|        usable_arenas->nfreepools--;
  ------------------
  |  | 1788|    884|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2398|    884|        if (UNLIKELY(usable_arenas->nfreepools == 0)) {
  ------------------
  |  | 1742|    884|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 0, False: 884]
  |  |  ------------------
  ------------------
 2399|       |            /* Wholly allocated:  remove. */
 2400|      0|            assert(usable_arenas->freepools == NULL);
  ------------------
  |  Branch (2400:13): [True: 0, False: 0]
  ------------------
 2401|      0|            assert(usable_arenas->nextarena == NULL ||
  ------------------
  |  Branch (2401:13): [True: 0, False: 0]
  |  Branch (2401:13): [True: 0, False: 0]
  ------------------
 2402|      0|                   usable_arenas->nextarena->prevarena ==
 2403|      0|                   usable_arenas);
 2404|      0|            usable_arenas = usable_arenas->nextarena;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                          usable_arenas = usable_arenas->nextarena;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2405|      0|            if (usable_arenas != NULL) {
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
  |  Branch (2405:17): [True: 0, False: 0]
  ------------------
 2406|      0|                usable_arenas->prevarena = NULL;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2407|      0|                assert(usable_arenas->address != 0);
  ------------------
  |  Branch (2407:17): [True: 0, False: 0]
  ------------------
 2408|      0|            }
 2409|      0|        }
 2410|    884|        else {
 2411|       |            /* nfreepools > 0:  it must be that freepools
 2412|       |             * isn't NULL, or that we haven't yet carved
 2413|       |             * off all the arena's pools for the first
 2414|       |             * time.
 2415|       |             */
 2416|    884|            assert(usable_arenas->freepools != NULL ||
  ------------------
  |  Branch (2416:13): [True: 2, False: 882]
  |  Branch (2416:13): [True: 882, False: 0]
  ------------------
 2417|    884|                   usable_arenas->pool_address <=
 2418|    884|                   (pymem_block*)usable_arenas->address +
 2419|    884|                       ARENA_SIZE - POOL_SIZE);
 2420|    884|        }
 2421|    884|    }
 2422|    211|    else {
 2423|       |        /* Carve off a new pool. */
 2424|    211|        assert(usable_arenas->nfreepools > 0);
  ------------------
  |  Branch (2424:9): [True: 211, False: 0]
  ------------------
 2425|    211|        assert(usable_arenas->freepools == NULL);
  ------------------
  |  Branch (2425:9): [True: 211, False: 0]
  ------------------
 2426|    211|        pool = (poolp)usable_arenas->pool_address;
  ------------------
  |  | 1788|    211|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2427|    211|        assert((pymem_block*)pool <= (pymem_block*)usable_arenas->address +
  ------------------
  |  Branch (2427:9): [True: 211, False: 0]
  ------------------
 2428|    211|                                 ARENA_SIZE - POOL_SIZE);
 2429|    211|        pool->arenaindex = (uint)(usable_arenas - allarenas);
  ------------------
  |  | 1788|    211|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                      pool->arenaindex = (uint)(usable_arenas - allarenas);
  ------------------
  |  | 1785|    211|#define allarenas (state->mgmt.arenas)
  ------------------
 2430|    211|        assert(&allarenas[pool->arenaindex] == usable_arenas);
  ------------------
  |  Branch (2430:9): [True: 211, False: 0]
  ------------------
 2431|    211|        pool->szidx = DUMMY_SIZE_IDX;
  ------------------
  |  |  321|    211|#define DUMMY_SIZE_IDX          0xffff  /* size class of newly cached pools */
  ------------------
 2432|    211|        usable_arenas->pool_address += POOL_SIZE;
  ------------------
  |  | 1788|    211|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                      usable_arenas->pool_address += POOL_SIZE;
  ------------------
  |  |  240|    211|#define POOL_SIZE               (1 << POOL_BITS)
  |  |  ------------------
  |  |  |  |  236|    211|#define POOL_BITS               14                  /* 16 KiB */
  |  |  ------------------
  ------------------
 2433|    211|        --usable_arenas->nfreepools;
  ------------------
  |  | 1788|    211|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2434|       |
 2435|    211|        if (usable_arenas->nfreepools == 0) {
  ------------------
  |  | 1788|    211|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
  |  Branch (2435:13): [True: 2, False: 209]
  ------------------
 2436|      2|            assert(usable_arenas->nextarena == NULL ||
  ------------------
  |  Branch (2436:13): [True: 2, False: 0]
  |  Branch (2436:13): [True: 0, False: 0]
  ------------------
 2437|      2|                   usable_arenas->nextarena->prevarena ==
 2438|      2|                   usable_arenas);
 2439|       |            /* Unlink the arena:  it is completely allocated. */
 2440|      2|            usable_arenas = usable_arenas->nextarena;
  ------------------
  |  | 1788|      2|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
                          usable_arenas = usable_arenas->nextarena;
  ------------------
  |  | 1788|      2|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2441|      2|            if (usable_arenas != NULL) {
  ------------------
  |  | 1788|      2|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
  |  Branch (2441:17): [True: 0, False: 2]
  ------------------
 2442|      0|                usable_arenas->prevarena = NULL;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2443|      0|                assert(usable_arenas->address != 0);
  ------------------
  |  Branch (2443:17): [True: 0, False: 0]
  ------------------
 2444|      0|            }
 2445|      2|        }
 2446|    211|    }
 2447|       |
 2448|       |    /* Frontlink to used pools. */
 2449|  1.09k|    pymem_block *bp;
 2450|  1.09k|    poolp next = usedpools[size + size]; /* == prev */
  ------------------
  |  | 1784|  1.09k|#define usedpools (state->pools.used)
  ------------------
 2451|  1.09k|    pool->nextpool = next;
 2452|  1.09k|    pool->prevpool = next;
 2453|  1.09k|    next->nextpool = pool;
 2454|  1.09k|    next->prevpool = pool;
 2455|  1.09k|    pool->ref.count = 1;
 2456|  1.09k|    if (pool->szidx == size) {
  ------------------
  |  Branch (2456:9): [True: 852, False: 243]
  ------------------
 2457|       |        /* Luckily, this pool last contained blocks
 2458|       |         * of the same size class, so its header
 2459|       |         * and free list are already initialized.
 2460|       |         */
 2461|    852|        bp = pool->freeblock;
 2462|    852|        assert(bp != NULL);
  ------------------
  |  Branch (2462:9): [True: 852, False: 0]
  ------------------
 2463|    852|        pool->freeblock = *(pymem_block **)bp;
 2464|    852|        return bp;
 2465|    852|    }
 2466|       |    /*
 2467|       |     * Initialize the pool header, set up the free list to
 2468|       |     * contain just the second block, and return the first
 2469|       |     * block.
 2470|       |     */
 2471|    243|    pool->szidx = size;
 2472|    243|    size = INDEX2SIZE(size);
  ------------------
  |  |  146|    243|#define INDEX2SIZE(I) (((pymem_uint)(I) + 1) << ALIGNMENT_SHIFT)
  |  |  ------------------
  |  |  |  |  139|    243|#define ALIGNMENT_SHIFT         4
  |  |  ------------------
  ------------------
 2473|    243|    bp = (pymem_block *)pool + POOL_OVERHEAD;
  ------------------
  |  |  319|    243|#define POOL_OVERHEAD   _Py_SIZE_ROUND_UP(sizeof(struct pool_header), ALIGNMENT)
  |  |  ------------------
  |  |  |  |  213|    243|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  |  |  214|    243|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  |  |  ------------------
  ------------------
 2474|    243|    pool->nextoffset = POOL_OVERHEAD + (size << 1);
  ------------------
  |  |  319|    243|#define POOL_OVERHEAD   _Py_SIZE_ROUND_UP(sizeof(struct pool_header), ALIGNMENT)
  |  |  ------------------
  |  |  |  |  213|    243|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  |  |  214|    243|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  |  |  ------------------
  ------------------
 2475|    243|    pool->maxnextoffset = POOL_SIZE - size;
  ------------------
  |  |  240|    243|#define POOL_SIZE               (1 << POOL_BITS)
  |  |  ------------------
  |  |  |  |  236|    243|#define POOL_BITS               14                  /* 16 KiB */
  |  |  ------------------
  ------------------
 2476|    243|    pool->freeblock = bp + size;
 2477|       |    *(pymem_block **)(pool->freeblock) = NULL;
 2478|    243|    return bp;
 2479|  1.09k|}
obmalloc.c:new_arena:
 2121|      4|{
 2122|      4|    struct arena_object* arenaobj;
 2123|      4|    uint excess;        /* number of bytes above pool alignment */
  ------------------
  |  |   35|      4|#define uint pymem_uint
  ------------------
 2124|      4|    void *address;
 2125|       |
 2126|      4|    int debug_stats = _PyRuntime.obmalloc.dump_debug_stats;
 2127|      4|    if (debug_stats == -1) {
  ------------------
  |  Branch (2127:9): [True: 2, False: 2]
  ------------------
 2128|      2|        const char *opt = Py_GETENV("PYTHONMALLOCSTATS");
 2129|      2|        debug_stats = (opt != NULL && *opt != '\0');
  ------------------
  |  Branch (2129:24): [True: 0, False: 2]
  |  Branch (2129:39): [True: 0, False: 0]
  ------------------
 2130|      2|        _PyRuntime.obmalloc.dump_debug_stats = debug_stats;
 2131|      2|    }
 2132|      4|    if (debug_stats) {
  ------------------
  |  Branch (2132:9): [True: 0, False: 4]
  ------------------
 2133|      0|        _PyObject_DebugMallocStats(stderr);
 2134|      0|    }
 2135|       |
 2136|      4|    if (unused_arena_objects == NULL) {
  ------------------
  |  | 1787|      4|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
  |  Branch (2136:9): [True: 2, False: 2]
  ------------------
 2137|      2|        uint i;
  ------------------
  |  |   35|      2|#define uint pymem_uint
  ------------------
 2138|      2|        uint numarenas;
  ------------------
  |  |   35|      2|#define uint pymem_uint
  ------------------
 2139|      2|        size_t nbytes;
 2140|       |
 2141|       |        /* Double the number of arena objects on each allocation.
 2142|       |         * Note that it's possible for `numarenas` to overflow.
 2143|       |         */
 2144|      2|        numarenas = maxarenas ? maxarenas << 1 : INITIAL_ARENA_OBJECTS;
  ------------------
  |  | 1786|      2|#define maxarenas (state->mgmt.maxarenas)
  |  |  ------------------
  |  |  |  Branch (1786:19): [True: 0, False: 2]
  |  |  ------------------
  ------------------
                      numarenas = maxarenas ? maxarenas << 1 : INITIAL_ARENA_OBJECTS;
  ------------------
  |  | 1786|      0|#define maxarenas (state->mgmt.maxarenas)
  ------------------
                      numarenas = maxarenas ? maxarenas << 1 : INITIAL_ARENA_OBJECTS;
  ------------------
  |  |  485|      4|#define INITIAL_ARENA_OBJECTS 16
  ------------------
 2145|      2|        if (numarenas <= maxarenas)
  ------------------
  |  | 1786|      2|#define maxarenas (state->mgmt.maxarenas)
  ------------------
  |  Branch (2145:13): [True: 0, False: 2]
  ------------------
 2146|      0|            return NULL;                /* overflow */
 2147|       |#if SIZEOF_SIZE_T <= SIZEOF_INT
 2148|       |        if (numarenas > SIZE_MAX / sizeof(*allarenas))
 2149|       |            return NULL;                /* overflow */
 2150|       |#endif
 2151|      2|        nbytes = numarenas * sizeof(*allarenas);
  ------------------
  |  | 1785|      2|#define allarenas (state->mgmt.arenas)
  ------------------
 2152|      2|        arenaobj = (struct arena_object *)PyMem_RawRealloc(allarenas, nbytes);
  ------------------
  |  | 1785|      2|#define allarenas (state->mgmt.arenas)
  ------------------
 2153|      2|        if (arenaobj == NULL)
  ------------------
  |  Branch (2153:13): [True: 0, False: 2]
  ------------------
 2154|      0|            return NULL;
 2155|      2|        allarenas = arenaobj;
  ------------------
  |  | 1785|      2|#define allarenas (state->mgmt.arenas)
  ------------------
 2156|       |
 2157|       |        /* We might need to fix pointers that were copied.  However,
 2158|       |         * new_arena only gets called when all the pages in the
 2159|       |         * previous arenas are full.  Thus, there are *no* pointers
 2160|       |         * into the old array. Thus, we don't have to worry about
 2161|       |         * invalid pointers.  Just to be sure, some asserts:
 2162|       |         */
 2163|      2|        assert(usable_arenas == NULL);
  ------------------
  |  Branch (2163:9): [True: 2, False: 0]
  ------------------
 2164|      2|        assert(unused_arena_objects == NULL);
  ------------------
  |  Branch (2164:9): [True: 2, False: 0]
  ------------------
 2165|       |
 2166|       |        /* Put the new arenas on the unused_arena_objects list. */
 2167|     34|        for (i = maxarenas; i < numarenas; ++i) {
  ------------------
  |  | 1786|      2|#define maxarenas (state->mgmt.maxarenas)
  ------------------
  |  Branch (2167:29): [True: 32, False: 2]
  ------------------
 2168|     32|            allarenas[i].address = 0;              /* mark as unassociated */
  ------------------
  |  | 1785|     32|#define allarenas (state->mgmt.arenas)
  ------------------
 2169|     32|            allarenas[i].nextarena = i < numarenas - 1 ?
  ------------------
  |  | 1785|     32|#define allarenas (state->mgmt.arenas)
  ------------------
  |  Branch (2169:38): [True: 30, False: 2]
  ------------------
 2170|     32|                                        &allarenas[i+1] : NULL;
  ------------------
  |  | 1785|     30|#define allarenas (state->mgmt.arenas)
  ------------------
 2171|     32|        }
 2172|       |
 2173|       |        /* Update globals. */
 2174|      2|        unused_arena_objects = &allarenas[maxarenas];
  ------------------
  |  | 1787|      2|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
                      unused_arena_objects = &allarenas[maxarenas];
  ------------------
  |  | 1785|      2|#define allarenas (state->mgmt.arenas)
  ------------------
                      unused_arena_objects = &allarenas[maxarenas];
  ------------------
  |  | 1786|      2|#define maxarenas (state->mgmt.maxarenas)
  ------------------
 2175|      2|        maxarenas = numarenas;
  ------------------
  |  | 1786|      2|#define maxarenas (state->mgmt.maxarenas)
  ------------------
 2176|      2|    }
 2177|       |
 2178|       |    /* Take the next available arena object off the head of the list. */
 2179|      4|    assert(unused_arena_objects != NULL);
  ------------------
  |  Branch (2179:5): [True: 4, False: 0]
  ------------------
 2180|      4|    arenaobj = unused_arena_objects;
  ------------------
  |  | 1787|      4|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
 2181|      4|    unused_arena_objects = arenaobj->nextarena;
  ------------------
  |  | 1787|      4|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
 2182|      4|    assert(arenaobj->address == 0);
  ------------------
  |  Branch (2182:5): [True: 4, False: 0]
  ------------------
 2183|      4|    address = _PyObject_Arena.alloc(_PyObject_Arena.ctx, ARENA_SIZE);
  ------------------
  |  |  718|      4|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
                  address = _PyObject_Arena.alloc(_PyObject_Arena.ctx, ARENA_SIZE);
  ------------------
  |  |  718|      4|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
                  address = _PyObject_Arena.alloc(_PyObject_Arena.ctx, ARENA_SIZE);
  ------------------
  |  |  225|      4|#define ARENA_SIZE              (1 << ARENA_BITS)
  |  |  ------------------
  |  |  |  |  220|      4|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  ------------------
  ------------------
 2184|      4|#if WITH_PYMALLOC_RADIX_TREE
 2185|      4|    if (address != NULL) {
  ------------------
  |  Branch (2185:9): [True: 4, False: 0]
  ------------------
 2186|      4|        if (!arena_map_mark_used(state, (uintptr_t)address, 1)) {
  ------------------
  |  Branch (2186:13): [True: 0, False: 4]
  ------------------
 2187|       |            /* marking arena in radix tree failed, abort */
 2188|      0|            _PyObject_Arena.free(_PyObject_Arena.ctx, address, ARENA_SIZE);
  ------------------
  |  |  718|      0|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
                          _PyObject_Arena.free(_PyObject_Arena.ctx, address, ARENA_SIZE);
  ------------------
  |  |  718|      0|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
                          _PyObject_Arena.free(_PyObject_Arena.ctx, address, ARENA_SIZE);
  ------------------
  |  |  225|      0|#define ARENA_SIZE              (1 << ARENA_BITS)
  |  |  ------------------
  |  |  |  |  220|      0|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  ------------------
  ------------------
 2189|      0|            address = NULL;
 2190|      0|        }
 2191|      4|    }
 2192|      4|#endif
 2193|      4|    if (address == NULL) {
  ------------------
  |  Branch (2193:9): [True: 0, False: 4]
  ------------------
 2194|       |        /* The allocation failed: return NULL after putting the
 2195|       |         * arenaobj back.
 2196|       |         */
 2197|      0|        arenaobj->nextarena = unused_arena_objects;
  ------------------
  |  | 1787|      0|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
 2198|      0|        unused_arena_objects = arenaobj;
  ------------------
  |  | 1787|      0|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
 2199|      0|        return NULL;
 2200|      0|    }
 2201|      4|    arenaobj->address = (uintptr_t)address;
 2202|       |
 2203|      4|    ++narenas_currently_allocated;
  ------------------
  |  | 1790|      4|#define narenas_currently_allocated (state->mgmt.narenas_currently_allocated)
  ------------------
 2204|      4|    ++ntimes_arena_allocated;
  ------------------
  |  | 1791|      4|#define ntimes_arena_allocated (state->mgmt.ntimes_arena_allocated)
  ------------------
 2205|      4|    if (narenas_currently_allocated > narenas_highwater)
  ------------------
  |  | 1790|      4|#define narenas_currently_allocated (state->mgmt.narenas_currently_allocated)
  ------------------
                  if (narenas_currently_allocated > narenas_highwater)
  ------------------
  |  | 1792|      4|#define narenas_highwater (state->mgmt.narenas_highwater)
  ------------------
  |  Branch (2205:9): [True: 4, False: 0]
  ------------------
 2206|      4|        narenas_highwater = narenas_currently_allocated;
  ------------------
  |  | 1792|      4|#define narenas_highwater (state->mgmt.narenas_highwater)
  ------------------
                      narenas_highwater = narenas_currently_allocated;
  ------------------
  |  | 1790|      4|#define narenas_currently_allocated (state->mgmt.narenas_currently_allocated)
  ------------------
 2207|      4|    arenaobj->freepools = NULL;
 2208|       |    /* pool_address <- first pool-aligned address in the arena
 2209|       |       nfreepools <- number of whole pools that fit after alignment */
 2210|      4|    arenaobj->pool_address = (pymem_block*)arenaobj->address;
 2211|      4|    arenaobj->nfreepools = MAX_POOLS_IN_ARENA;
  ------------------
  |  |  249|      4|#define MAX_POOLS_IN_ARENA  (ARENA_SIZE / POOL_SIZE)
  |  |  ------------------
  |  |  |  |  225|      4|#define ARENA_SIZE              (1 << ARENA_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  220|      4|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MAX_POOLS_IN_ARENA  (ARENA_SIZE / POOL_SIZE)
  |  |  ------------------
  |  |  |  |  240|      4|#define POOL_SIZE               (1 << POOL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  236|      4|#define POOL_BITS               14                  /* 16 KiB */
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2212|      4|    excess = (uint)(arenaobj->address & POOL_SIZE_MASK);
  ------------------
  |  |  241|      4|#define POOL_SIZE_MASK          (POOL_SIZE - 1)
  |  |  ------------------
  |  |  |  |  240|      4|#define POOL_SIZE               (1 << POOL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  236|      4|#define POOL_BITS               14                  /* 16 KiB */
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2213|      4|    if (excess != 0) {
  ------------------
  |  Branch (2213:9): [True: 0, False: 4]
  ------------------
 2214|      0|        --arenaobj->nfreepools;
 2215|      0|        arenaobj->pool_address += POOL_SIZE - excess;
  ------------------
  |  |  240|      0|#define POOL_SIZE               (1 << POOL_BITS)
  |  |  ------------------
  |  |  |  |  236|      0|#define POOL_BITS               14                  /* 16 KiB */
  |  |  ------------------
  ------------------
 2216|      0|    }
 2217|      4|    arenaobj->ntotalpools = arenaobj->nfreepools;
 2218|       |
 2219|      4|    return arenaobj;
 2220|      4|}
obmalloc.c:arena_map_mark_used:
 2050|      4|{
 2051|       |    /* sanity check that IGNORE_BITS is correct */
 2052|      4|    assert(HIGH_BITS(arena_base) == HIGH_BITS(&arena_map_root));
  ------------------
  |  Branch (2052:5): [True: 4, Folded]
  ------------------
 2053|      4|    arena_map_bot_t *n_hi = arena_map_get(
 2054|      4|            state, (pymem_block *)arena_base, is_used);
 2055|      4|    if (n_hi == NULL) {
  ------------------
  |  Branch (2055:9): [True: 0, False: 4]
  ------------------
 2056|      0|        assert(is_used); /* otherwise node should already exist */
  ------------------
  |  Branch (2056:9): [True: 0, False: 0]
  ------------------
 2057|      0|        return 0; /* failed to allocate space for node */
 2058|      0|    }
 2059|      4|    int i3 = MAP_BOT_INDEX((pymem_block *)arena_base);
  ------------------
  |  |  625|      4|#define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  624|      4|#define AS_UINT(p) ((uintptr_t)(p))
  |  |  ------------------
  |  |               #define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  620|      4|#define MAP_BOT_SHIFT ARENA_BITS
  |  |  |  |  ------------------
  |  |  |  |  |  |  220|      4|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  618|      4|#define MAP_BOT_MASK (MAP_BOT_LENGTH - 1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  617|      4|#define MAP_BOT_LENGTH (1 << MAP_BOT_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  616|      4|#define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  599|      4|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  565|      4|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  576|      4|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  220|      4|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  603|      4|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  599|      4|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  565|      4|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  576|      4|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  220|      4|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2060|      4|    int32_t tail = (int32_t)(arena_base & ARENA_SIZE_MASK);
  ------------------
  |  |  226|      4|#define ARENA_SIZE_MASK         (ARENA_SIZE - 1)
  |  |  ------------------
  |  |  |  |  225|      4|#define ARENA_SIZE              (1 << ARENA_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  220|      4|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2061|      4|    if (tail == 0) {
  ------------------
  |  Branch (2061:9): [True: 4, False: 0]
  ------------------
 2062|       |        /* is ideal arena address */
 2063|      4|        n_hi->arenas[i3].tail_hi = is_used ? -1 : 0;
  ------------------
  |  Branch (2063:36): [True: 4, False: 0]
  ------------------
 2064|      4|    }
 2065|      0|    else {
 2066|       |        /* arena_base address is not ideal (aligned to arena size) and
 2067|       |         * so it potentially covers two MAP_BOT nodes.  Get the MAP_BOT node
 2068|       |         * for the next arena.  Note that it might be in different MAP_TOP
 2069|       |         * and MAP_MID nodes as well so we need to call arena_map_get()
 2070|       |         * again (do the full tree traversal).
 2071|       |         */
 2072|      0|        n_hi->arenas[i3].tail_hi = is_used ? tail : 0;
  ------------------
  |  Branch (2072:36): [True: 0, False: 0]
  ------------------
 2073|      0|        uintptr_t arena_base_next = arena_base + ARENA_SIZE;
  ------------------
  |  |  225|      0|#define ARENA_SIZE              (1 << ARENA_BITS)
  |  |  ------------------
  |  |  |  |  220|      0|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  ------------------
  ------------------
 2074|       |        /* If arena_base is a legit arena address, so is arena_base_next - 1
 2075|       |         * (last address in arena).  If arena_base_next overflows then it
 2076|       |         * must overflow to 0.  However, that would mean arena_base was
 2077|       |         * "ideal" and we should not be in this case. */
 2078|      0|        assert(arena_base < arena_base_next);
  ------------------
  |  Branch (2078:9): [True: 0, False: 0]
  ------------------
 2079|      0|        arena_map_bot_t *n_lo = arena_map_get(
 2080|      0|                state, (pymem_block *)arena_base_next, is_used);
 2081|      0|        if (n_lo == NULL) {
  ------------------
  |  Branch (2081:13): [True: 0, False: 0]
  ------------------
 2082|      0|            assert(is_used); /* otherwise should already exist */
  ------------------
  |  Branch (2082:13): [True: 0, False: 0]
  ------------------
 2083|      0|            n_hi->arenas[i3].tail_hi = 0;
 2084|      0|            return 0; /* failed to allocate space for node */
 2085|      0|        }
 2086|      0|        int i3_next = MAP_BOT_INDEX(arena_base_next);
  ------------------
  |  |  625|      0|#define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  624|      0|#define AS_UINT(p) ((uintptr_t)(p))
  |  |  ------------------
  |  |               #define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  620|      0|#define MAP_BOT_SHIFT ARENA_BITS
  |  |  |  |  ------------------
  |  |  |  |  |  |  220|      0|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  618|      0|#define MAP_BOT_MASK (MAP_BOT_LENGTH - 1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  617|      0|#define MAP_BOT_LENGTH (1 << MAP_BOT_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  616|      0|#define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  599|      0|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  565|      0|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  576|      0|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  220|      0|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  603|      0|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  599|      0|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  565|      0|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  576|      0|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  220|      0|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2087|      0|        n_lo->arenas[i3_next].tail_lo = is_used ? tail : 0;
  ------------------
  |  Branch (2087:41): [True: 0, False: 0]
  ------------------
 2088|      0|    }
 2089|      4|    return 1;
 2090|      4|}
obmalloc.c:arena_map_get:
 1989|  39.0k|{
 1990|  39.0k|#ifdef USE_INTERIOR_NODES
 1991|       |    /* sanity check that IGNORE_BITS is correct */
 1992|  39.0k|    assert(HIGH_BITS(p) == HIGH_BITS(&arena_map_root));
  ------------------
  |  Branch (1992:5): [True: 39.0k, Folded]
  ------------------
 1993|  39.0k|    int i1 = MAP_TOP_INDEX(p);
  ------------------
  |  |  627|  39.0k|#define MAP_TOP_INDEX(p) ((AS_UINT(p) >> MAP_TOP_SHIFT) & MAP_TOP_MASK)
  |  |  ------------------
  |  |  |  |  624|  39.0k|#define AS_UINT(p) ((uintptr_t)(p))
  |  |  ------------------
  |  |               #define MAP_TOP_INDEX(p) ((AS_UINT(p) >> MAP_TOP_SHIFT) & MAP_TOP_MASK)
  |  |  ------------------
  |  |  |  |  622|  39.0k|#define MAP_TOP_SHIFT (MAP_MID_BITS + MAP_MID_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |  612|  39.0k|#define MAP_MID_BITS INTERIOR_BITS
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  603|  39.0k|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  599|  39.0k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  565|  39.0k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  576|  39.0k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define MAP_TOP_SHIFT (MAP_MID_BITS + MAP_MID_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |  621|  39.0k|#define MAP_MID_SHIFT (MAP_BOT_BITS + MAP_BOT_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  616|  39.0k|#define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  599|  39.0k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  565|  39.0k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  576|  39.0k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  603|  39.0k|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  599|  39.0k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  565|  39.0k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  576|  39.0k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define MAP_MID_SHIFT (MAP_BOT_BITS + MAP_BOT_SHIFT)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  620|  39.0k|#define MAP_BOT_SHIFT ARENA_BITS
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MAP_TOP_INDEX(p) ((AS_UINT(p) >> MAP_TOP_SHIFT) & MAP_TOP_MASK)
  |  |  ------------------
  |  |  |  |  610|  39.0k|#define MAP_TOP_MASK (MAP_TOP_LENGTH - 1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  609|  39.0k|#define MAP_TOP_LENGTH (1 << MAP_TOP_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  608|  39.0k|#define MAP_TOP_BITS INTERIOR_BITS
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  603|  39.0k|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  599|  39.0k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  565|  39.0k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  576|  39.0k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1994|  39.0k|    if (arena_map_root.ptrs[i1] == NULL) {
  ------------------
  |  | 1979|  39.0k|#define arena_map_root (state->usage.arena_map_root)
  ------------------
  |  Branch (1994:9): [True: 2, False: 39.0k]
  ------------------
 1995|      2|        if (!create) {
  ------------------
  |  Branch (1995:13): [True: 0, False: 2]
  ------------------
 1996|      0|            return NULL;
 1997|      0|        }
 1998|      2|        arena_map_mid_t *n = PyMem_RawCalloc(1, sizeof(arena_map_mid_t));
 1999|      2|        if (n == NULL) {
  ------------------
  |  Branch (1999:13): [True: 0, False: 2]
  ------------------
 2000|      0|            return NULL;
 2001|      0|        }
 2002|      2|        arena_map_root.ptrs[i1] = n;
  ------------------
  |  | 1979|      2|#define arena_map_root (state->usage.arena_map_root)
  ------------------
 2003|      2|        arena_map_mid_count++;
  ------------------
  |  | 1981|      2|#define arena_map_mid_count (state->usage.arena_map_mid_count)
  ------------------
 2004|      2|    }
 2005|  39.0k|    int i2 = MAP_MID_INDEX(p);
  ------------------
  |  |  626|  39.0k|#define MAP_MID_INDEX(p) ((AS_UINT(p) >> MAP_MID_SHIFT) & MAP_MID_MASK)
  |  |  ------------------
  |  |  |  |  624|  39.0k|#define AS_UINT(p) ((uintptr_t)(p))
  |  |  ------------------
  |  |               #define MAP_MID_INDEX(p) ((AS_UINT(p) >> MAP_MID_SHIFT) & MAP_MID_MASK)
  |  |  ------------------
  |  |  |  |  621|  39.0k|#define MAP_MID_SHIFT (MAP_BOT_BITS + MAP_BOT_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |  616|  39.0k|#define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  599|  39.0k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  565|  39.0k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  576|  39.0k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  603|  39.0k|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  599|  39.0k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  565|  39.0k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  576|  39.0k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define MAP_MID_SHIFT (MAP_BOT_BITS + MAP_BOT_SHIFT)
  |  |  |  |  ------------------
  |  |  |  |  |  |  620|  39.0k|#define MAP_BOT_SHIFT ARENA_BITS
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MAP_MID_INDEX(p) ((AS_UINT(p) >> MAP_MID_SHIFT) & MAP_MID_MASK)
  |  |  ------------------
  |  |  |  |  614|  39.0k|#define MAP_MID_MASK (MAP_MID_LENGTH - 1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  613|  39.0k|#define MAP_MID_LENGTH (1 << MAP_MID_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  612|  39.0k|#define MAP_MID_BITS INTERIOR_BITS
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  603|  39.0k|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  599|  39.0k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  565|  39.0k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  576|  39.0k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  220|  39.0k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2006|  39.0k|    if (arena_map_root.ptrs[i1]->ptrs[i2] == NULL) {
  ------------------
  |  | 1979|  39.0k|#define arena_map_root (state->usage.arena_map_root)
  ------------------
  |  Branch (2006:9): [True: 2.96k, False: 36.1k]
  ------------------
 2007|  2.96k|        if (!create) {
  ------------------
  |  Branch (2007:13): [True: 2.96k, False: 2]
  ------------------
 2008|  2.96k|            return NULL;
 2009|  2.96k|        }
 2010|      2|        arena_map_bot_t *n = PyMem_RawCalloc(1, sizeof(arena_map_bot_t));
 2011|      2|        if (n == NULL) {
  ------------------
  |  Branch (2011:13): [True: 0, False: 2]
  ------------------
 2012|      0|            return NULL;
 2013|      0|        }
 2014|      2|        arena_map_root.ptrs[i1]->ptrs[i2] = n;
  ------------------
  |  | 1979|      2|#define arena_map_root (state->usage.arena_map_root)
  ------------------
 2015|      2|        arena_map_bot_count++;
  ------------------
  |  | 1982|      2|#define arena_map_bot_count (state->usage.arena_map_bot_count)
  ------------------
 2016|      2|    }
 2017|  36.1k|    return arena_map_root.ptrs[i1]->ptrs[i2];
  ------------------
  |  | 1979|  36.1k|#define arena_map_root (state->usage.arena_map_root)
  ------------------
 2018|       |#else
 2019|       |    return &arena_map_root;
 2020|       |#endif
 2021|  39.0k|}
obmalloc.c:pymalloc_free:
 2763|  34.5k|{
 2764|  34.5k|    assert(p != NULL);
  ------------------
  |  Branch (2764:5): [True: 34.5k, False: 0]
  ------------------
 2765|       |
 2766|       |#ifdef WITH_VALGRIND
 2767|       |    if (UNLIKELY(running_on_valgrind > 0)) {
 2768|       |        return 0;
 2769|       |    }
 2770|       |#endif
 2771|       |
 2772|  34.5k|    poolp pool = POOL_ADDR(p);
  ------------------
  |  |  324|  34.5k|#define POOL_ADDR(P) ((poolp)_Py_ALIGN_DOWN((P), POOL_SIZE))
  |  |  ------------------
  |  |  |  |  216|  34.5k|#define _Py_ALIGN_DOWN(p, a) ((void *)((uintptr_t)(p) & ~(uintptr_t)((a) - 1)))
  |  |  ------------------
  ------------------
 2773|  34.5k|    if (UNLIKELY(!address_in_range(state, p, pool))) {
  ------------------
  |  | 1742|  34.5k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 2.03k, False: 32.4k]
  |  |  ------------------
  ------------------
 2774|  2.03k|        return 0;
 2775|  2.03k|    }
 2776|       |    /* We allocated this address. */
 2777|       |
 2778|       |    /* Link p to the start of the pool's freeblock list.  Since
 2779|       |     * the pool had at least the p block outstanding, the pool
 2780|       |     * wasn't empty (so it's already in a usedpools[] list, or
 2781|       |     * was full and is in no list -- it's not in the freeblocks
 2782|       |     * list in any case).
 2783|       |     */
 2784|  34.5k|    assert(pool->ref.count > 0);            /* else it was empty */
  ------------------
  |  Branch (2784:5): [True: 32.4k, False: 0]
  ------------------
 2785|  32.4k|    pymem_block *lastfree = pool->freeblock;
 2786|  32.4k|    *(pymem_block **)p = lastfree;
 2787|  32.4k|    pool->freeblock = (pymem_block *)p;
 2788|  32.4k|    pool->ref.count--;
 2789|       |
 2790|  32.4k|    if (UNLIKELY(lastfree == NULL)) {
  ------------------
  |  | 1742|  32.4k|#  define UNLIKELY(value) __builtin_expect((value), 0)
  |  |  ------------------
  |  |  |  Branch (1742:27): [True: 6.02k, False: 26.4k]
  |  |  ------------------
  ------------------
 2791|       |        /* Pool was full, so doesn't currently live in any list:
 2792|       |         * link it to the front of the appropriate usedpools[] list.
 2793|       |         * This mimics LRU pool usage for new allocations and
 2794|       |         * targets optimal filling when several pools contain
 2795|       |         * blocks of the same size class.
 2796|       |         */
 2797|  6.02k|        insert_to_usedpool(state, pool);
 2798|  6.02k|        return 1;
 2799|  6.02k|    }
 2800|       |
 2801|       |    /* freeblock wasn't NULL, so the pool wasn't full,
 2802|       |     * and the pool is in a usedpools[] list.
 2803|       |     */
 2804|  26.4k|    if (LIKELY(pool->ref.count != 0)) {
  ------------------
  |  | 1743|  26.4k|#  define LIKELY(value) __builtin_expect((value), 1)
  |  |  ------------------
  |  |  |  Branch (1743:25): [True: 25.5k, False: 885]
  |  |  ------------------
  ------------------
 2805|       |        /* pool isn't empty:  leave it in usedpools */
 2806|  25.5k|        return 1;
 2807|  25.5k|    }
 2808|       |
 2809|       |    /* Pool is now empty:  unlink from usedpools, and
 2810|       |     * link to the front of freepools.  This ensures that
 2811|       |     * previously freed pools will be allocated later
 2812|       |     * (being not referenced, they are perhaps paged out).
 2813|       |     */
 2814|    885|    insert_to_freepool(state, pool);
 2815|    885|    return 1;
 2816|  26.4k|}
obmalloc.c:address_in_range:
 2230|  39.0k|{
 2231|  39.0k|    return arena_map_is_used(state, p);
 2232|  39.0k|}
obmalloc.c:arena_map_is_used:
 2096|  39.0k|{
 2097|  39.0k|    arena_map_bot_t *n = arena_map_get(state, p, 0);
 2098|  39.0k|    if (n == NULL) {
  ------------------
  |  Branch (2098:9): [True: 2.96k, False: 36.1k]
  ------------------
 2099|  2.96k|        return 0;
 2100|  2.96k|    }
 2101|  36.1k|    int i3 = MAP_BOT_INDEX(p);
  ------------------
  |  |  625|  36.1k|#define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  624|  36.1k|#define AS_UINT(p) ((uintptr_t)(p))
  |  |  ------------------
  |  |               #define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  620|  36.1k|#define MAP_BOT_SHIFT ARENA_BITS
  |  |  |  |  ------------------
  |  |  |  |  |  |  220|  36.1k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define MAP_BOT_INDEX(p) ((AS_UINT(p) >> MAP_BOT_SHIFT) & MAP_BOT_MASK)
  |  |  ------------------
  |  |  |  |  618|  36.1k|#define MAP_BOT_MASK (MAP_BOT_LENGTH - 1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  617|  36.1k|#define MAP_BOT_LENGTH (1 << MAP_BOT_BITS)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  616|  36.1k|#define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  599|  36.1k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  565|  36.1k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  576|  36.1k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  220|  36.1k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define MAP_BOT_BITS (ADDRESS_BITS - ARENA_BITS - 2*INTERIOR_BITS)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  603|  36.1k|#define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  599|  36.1k|#define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  565|  36.1k|#define POINTER_BITS 64
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |               #define ADDRESS_BITS (POINTER_BITS - IGNORE_BITS)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  576|  36.1k|#define IGNORE_BITS 0
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |               #define INTERIOR_BITS ((ADDRESS_BITS - ARENA_BITS + 2) / 3)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  220|  36.1k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2102|       |    /* ARENA_BITS must be < 32 so that the tail is a non-negative int32_t. */
 2103|  36.1k|    int32_t hi = n->arenas[i3].tail_hi;
 2104|  36.1k|    int32_t lo = n->arenas[i3].tail_lo;
 2105|  36.1k|    int32_t tail = (int32_t)(AS_UINT(p) & ARENA_SIZE_MASK);
  ------------------
  |  |  624|  36.1k|#define AS_UINT(p) ((uintptr_t)(p))
  ------------------
                  int32_t tail = (int32_t)(AS_UINT(p) & ARENA_SIZE_MASK);
  ------------------
  |  |  226|  36.1k|#define ARENA_SIZE_MASK         (ARENA_SIZE - 1)
  |  |  ------------------
  |  |  |  |  225|  36.1k|#define ARENA_SIZE              (1 << ARENA_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  220|  36.1k|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2106|  36.1k|    return (tail < lo) || (tail >= hi && hi != 0);
  ------------------
  |  Branch (2106:12): [True: 0, False: 36.1k]
  |  Branch (2106:28): [True: 36.1k, False: 0]
  |  Branch (2106:42): [True: 36.1k, False: 18]
  ------------------
 2107|  39.0k|}
obmalloc.c:insert_to_usedpool:
 2577|  6.02k|{
 2578|  6.02k|    assert(pool->ref.count > 0);            /* else the pool is empty */
  ------------------
  |  Branch (2578:5): [True: 6.02k, False: 0]
  ------------------
 2579|       |
 2580|  6.02k|    uint size = pool->szidx;
  ------------------
  |  |   35|  6.02k|#define uint pymem_uint
  ------------------
 2581|  6.02k|    poolp next = usedpools[size + size];
  ------------------
  |  | 1784|  6.02k|#define usedpools (state->pools.used)
  ------------------
 2582|  6.02k|    poolp prev = next->prevpool;
 2583|       |
 2584|       |    /* insert pool before next:   prev <-> pool <-> next */
 2585|  6.02k|    pool->nextpool = next;
 2586|  6.02k|    pool->prevpool = prev;
 2587|  6.02k|    next->prevpool = pool;
 2588|  6.02k|    prev->nextpool = pool;
 2589|  6.02k|}
obmalloc.c:insert_to_freepool:
 2593|    885|{
 2594|    885|    poolp next = pool->nextpool;
 2595|    885|    poolp prev = pool->prevpool;
 2596|    885|    next->prevpool = prev;
 2597|    885|    prev->nextpool = next;
 2598|       |
 2599|       |    /* Link the pool to freepools.  This is a singly-linked
 2600|       |     * list, and pool->prevpool isn't used there.
 2601|       |     */
 2602|    885|    struct arena_object *ao = &allarenas[pool->arenaindex];
  ------------------
  |  | 1785|    885|#define allarenas (state->mgmt.arenas)
  ------------------
 2603|    885|    pool->nextpool = ao->freepools;
 2604|    885|    ao->freepools = pool;
 2605|    885|    uint nf = ao->nfreepools;
  ------------------
  |  |   35|    885|#define uint pymem_uint
  ------------------
 2606|       |    /* If this is the rightmost arena with this number of free pools,
 2607|       |     * nfp2lasta[nf] needs to change.  Caution:  if nf is 0, there
 2608|       |     * are no arenas in usable_arenas with that value.
 2609|       |     */
 2610|    885|    struct arena_object* lastnf = nfp2lasta[nf];
  ------------------
  |  | 1789|    885|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
 2611|    885|    assert((nf == 0 && lastnf == NULL) ||
  ------------------
  |  Branch (2611:5): [True: 0, False: 885]
  |  Branch (2611:5): [True: 0, False: 0]
  |  Branch (2611:5): [True: 885, False: 0]
  |  Branch (2611:5): [True: 885, False: 0]
  |  Branch (2611:5): [True: 885, False: 0]
  |  Branch (2611:5): [True: 885, False: 0]
  |  Branch (2611:5): [True: 0, False: 0]
  ------------------
 2612|    885|           (nf > 0 &&
 2613|    885|            lastnf != NULL &&
 2614|    885|            lastnf->nfreepools == nf &&
 2615|    885|            (lastnf->nextarena == NULL ||
 2616|    885|             nf < lastnf->nextarena->nfreepools)));
 2617|    885|    if (lastnf == ao) {  /* it is the rightmost */
  ------------------
  |  Branch (2617:9): [True: 885, False: 0]
  ------------------
 2618|    885|        struct arena_object* p = ao->prevarena;
 2619|    885|        nfp2lasta[nf] = (p != NULL && p->nfreepools == nf) ? p : NULL;
  ------------------
  |  | 1789|    885|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
  |  Branch (2619:26): [True: 0, False: 885]
  |  Branch (2619:39): [True: 0, False: 0]
  ------------------
 2620|    885|    }
 2621|    885|    ao->nfreepools = ++nf;
 2622|       |
 2623|       |    /* All the rest is arena management.  We just freed
 2624|       |     * a pool, and there are 4 cases for arena mgmt:
 2625|       |     * 1. If all the pools are free, return the arena to
 2626|       |     *    the system free().  Except if this is the last
 2627|       |     *    arena in the list, keep it to avoid thrashing:
 2628|       |     *    keeping one wholly free arena in the list avoids
 2629|       |     *    pathological cases where a simple loop would
 2630|       |     *    otherwise provoke needing to allocate and free an
 2631|       |     *    arena on every iteration.  See bpo-37257.
 2632|       |     * 2. If this is the only free pool in the arena,
 2633|       |     *    add the arena back to the `usable_arenas` list.
 2634|       |     * 3. If the "next" arena has a smaller count of free
 2635|       |     *    pools, we have to "slide this arena right" to
 2636|       |     *    restore that usable_arenas is sorted in order of
 2637|       |     *    nfreepools.
 2638|       |     * 4. Else there's nothing more to do.
 2639|       |     */
 2640|    885|    if (nf == ao->ntotalpools && ao->nextarena != NULL) {
  ------------------
  |  Branch (2640:9): [True: 0, False: 885]
  |  Branch (2640:34): [True: 0, False: 0]
  ------------------
 2641|       |        /* Case 1.  First unlink ao from usable_arenas.
 2642|       |         */
 2643|      0|        assert(ao->prevarena == NULL ||
  ------------------
  |  Branch (2643:9): [True: 0, False: 0]
  |  Branch (2643:9): [True: 0, False: 0]
  ------------------
 2644|      0|               ao->prevarena->address != 0);
 2645|      0|        assert(ao ->nextarena == NULL ||
  ------------------
  |  Branch (2645:9): [True: 0, False: 0]
  |  Branch (2645:9): [True: 0, False: 0]
  ------------------
 2646|      0|               ao->nextarena->address != 0);
 2647|       |
 2648|       |        /* Fix the pointer in the prevarena, or the
 2649|       |         * usable_arenas pointer.
 2650|       |         */
 2651|      0|        if (ao->prevarena == NULL) {
  ------------------
  |  Branch (2651:13): [True: 0, False: 0]
  ------------------
 2652|      0|            usable_arenas = ao->nextarena;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2653|      0|            assert(usable_arenas == NULL ||
  ------------------
  |  Branch (2653:13): [True: 0, False: 0]
  |  Branch (2653:13): [True: 0, False: 0]
  ------------------
 2654|      0|                   usable_arenas->address != 0);
 2655|      0|        }
 2656|      0|        else {
 2657|      0|            assert(ao->prevarena->nextarena == ao);
  ------------------
  |  Branch (2657:13): [True: 0, False: 0]
  ------------------
 2658|      0|            ao->prevarena->nextarena =
 2659|      0|                ao->nextarena;
 2660|      0|        }
 2661|       |        /* Fix the pointer in the nextarena. */
 2662|      0|        if (ao->nextarena != NULL) {
  ------------------
  |  Branch (2662:13): [True: 0, False: 0]
  ------------------
 2663|      0|            assert(ao->nextarena->prevarena == ao);
  ------------------
  |  Branch (2663:13): [True: 0, False: 0]
  ------------------
 2664|      0|            ao->nextarena->prevarena =
 2665|      0|                ao->prevarena;
 2666|      0|        }
 2667|       |        /* Record that this arena_object slot is
 2668|       |         * available to be reused.
 2669|       |         */
 2670|      0|        ao->nextarena = unused_arena_objects;
  ------------------
  |  | 1787|      0|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
 2671|      0|        unused_arena_objects = ao;
  ------------------
  |  | 1787|      0|#define unused_arena_objects (state->mgmt.unused_arena_objects)
  ------------------
 2672|       |
 2673|      0|#if WITH_PYMALLOC_RADIX_TREE
 2674|       |        /* mark arena region as not under control of obmalloc */
 2675|      0|        arena_map_mark_used(state, ao->address, 0);
 2676|      0|#endif
 2677|       |
 2678|       |        /* Free the entire arena. */
 2679|      0|        _PyObject_Arena.free(_PyObject_Arena.ctx,
  ------------------
  |  |  718|      0|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
                      _PyObject_Arena.free(_PyObject_Arena.ctx,
  ------------------
  |  |  718|      0|#define _PyObject_Arena (_PyRuntime.allocators.obj_arena)
  ------------------
 2680|      0|                             (void *)ao->address, ARENA_SIZE);
  ------------------
  |  |  225|      0|#define ARENA_SIZE              (1 << ARENA_BITS)
  |  |  ------------------
  |  |  |  |  220|      0|#    define ARENA_BITS            20                    /* 1 MiB */
  |  |  ------------------
  ------------------
 2681|      0|        ao->address = 0;                        /* mark unassociated */
 2682|      0|        --narenas_currently_allocated;
  ------------------
  |  | 1790|      0|#define narenas_currently_allocated (state->mgmt.narenas_currently_allocated)
  ------------------
 2683|       |
 2684|      0|        return;
 2685|      0|    }
 2686|       |
 2687|    885|    if (nf == 1) {
  ------------------
  |  Branch (2687:9): [True: 0, False: 885]
  ------------------
 2688|       |        /* Case 2.  Put ao at the head of
 2689|       |         * usable_arenas.  Note that because
 2690|       |         * ao->nfreepools was 0 before, ao isn't
 2691|       |         * currently on the usable_arenas list.
 2692|       |         */
 2693|      0|        ao->nextarena = usable_arenas;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2694|      0|        ao->prevarena = NULL;
 2695|      0|        if (usable_arenas)
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  |  |  ------------------
  |  |  |  Branch (1788:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2696|      0|            usable_arenas->prevarena = ao;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2697|      0|        usable_arenas = ao;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2698|      0|        assert(usable_arenas->address != 0);
  ------------------
  |  Branch (2698:9): [True: 0, False: 0]
  ------------------
 2699|      0|        if (nfp2lasta[1] == NULL) {
  ------------------
  |  | 1789|      0|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
  |  Branch (2699:13): [True: 0, False: 0]
  ------------------
 2700|      0|            nfp2lasta[1] = ao;
  ------------------
  |  | 1789|      0|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
 2701|      0|        }
 2702|       |
 2703|      0|        return;
 2704|      0|    }
 2705|       |
 2706|       |    /* If this arena is now out of order, we need to keep
 2707|       |     * the list sorted.  The list is kept sorted so that
 2708|       |     * the "most full" arenas are used first, which allows
 2709|       |     * the nearly empty arenas to be completely freed.  In
 2710|       |     * a few un-scientific tests, it seems like this
 2711|       |     * approach allowed a lot more memory to be freed.
 2712|       |     */
 2713|       |    /* If this is the only arena with nf, record that. */
 2714|    885|    if (nfp2lasta[nf] == NULL) {
  ------------------
  |  | 1789|    885|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
  |  Branch (2714:9): [True: 885, False: 0]
  ------------------
 2715|    885|        nfp2lasta[nf] = ao;
  ------------------
  |  | 1789|    885|#define nfp2lasta (state->mgmt.nfp2lasta)
  ------------------
 2716|    885|    } /* else the rightmost with nf doesn't change */
 2717|       |    /* If this was the rightmost of the old size, it remains in place. */
 2718|    885|    if (ao == lastnf) {
  ------------------
  |  Branch (2718:9): [True: 885, False: 0]
  ------------------
 2719|       |        /* Case 4.  Nothing to do. */
 2720|    885|        return;
 2721|    885|    }
 2722|       |    /* If ao were the only arena in the list, the last block would have
 2723|       |     * gotten us out.
 2724|       |     */
 2725|    885|    assert(ao->nextarena != NULL);
  ------------------
  |  Branch (2725:5): [True: 0, False: 0]
  ------------------
 2726|       |
 2727|       |    /* Case 3:  We have to move the arena towards the end of the list,
 2728|       |     * because it has more free pools than the arena to its right.  It needs
 2729|       |     * to move to follow lastnf.
 2730|       |     * First unlink ao from usable_arenas.
 2731|       |     */
 2732|      0|    if (ao->prevarena != NULL) {
  ------------------
  |  Branch (2732:9): [True: 0, False: 0]
  ------------------
 2733|       |        /* ao isn't at the head of the list */
 2734|      0|        assert(ao->prevarena->nextarena == ao);
  ------------------
  |  Branch (2734:9): [True: 0, False: 0]
  ------------------
 2735|      0|        ao->prevarena->nextarena = ao->nextarena;
 2736|      0|    }
 2737|      0|    else {
 2738|       |        /* ao is at the head of the list */
 2739|      0|        assert(usable_arenas == ao);
  ------------------
  |  Branch (2739:9): [True: 0, False: 0]
  ------------------
 2740|      0|        usable_arenas = ao->nextarena;
  ------------------
  |  | 1788|      0|#define usable_arenas (state->mgmt.usable_arenas)
  ------------------
 2741|      0|    }
 2742|      0|    ao->nextarena->prevarena = ao->prevarena;
 2743|       |    /* And insert after lastnf. */
 2744|      0|    ao->prevarena = lastnf;
 2745|      0|    ao->nextarena = lastnf->nextarena;
 2746|      0|    if (ao->nextarena != NULL) {
  ------------------
  |  Branch (2746:9): [True: 0, False: 0]
  ------------------
 2747|      0|        ao->nextarena->prevarena = ao;
 2748|      0|    }
 2749|      0|    lastnf->nextarena = ao;
 2750|       |    /* Verify that the swaps worked. */
 2751|      0|    assert(ao->nextarena == NULL || nf <= ao->nextarena->nfreepools);
  ------------------
  |  Branch (2751:5): [True: 0, False: 0]
  |  Branch (2751:5): [True: 0, False: 0]
  ------------------
 2752|      0|    assert(ao->prevarena == NULL || nf > ao->prevarena->nfreepools);
  ------------------
  |  Branch (2752:5): [True: 0, False: 0]
  |  Branch (2752:5): [True: 0, False: 0]
  ------------------
 2753|      0|    assert(ao->nextarena == NULL || ao->nextarena->prevarena == ao);
  ------------------
  |  Branch (2753:5): [True: 0, False: 0]
  |  Branch (2753:5): [True: 0, False: 0]
  ------------------
 2754|      0|    assert((usable_arenas == ao && ao->prevarena == NULL)
  ------------------
  |  Branch (2754:5): [True: 0, False: 0]
  |  Branch (2754:5): [True: 0, False: 0]
  |  Branch (2754:5): [True: 0, False: 0]
  ------------------
 2755|      0|           || ao->prevarena->nextarena == ao);
 2756|      0|}
obmalloc.c:pymalloc_realloc:
 2848|  4.55k|{
 2849|  4.55k|    void *bp;
 2850|  4.55k|    poolp pool;
 2851|  4.55k|    size_t size;
 2852|       |
 2853|  4.55k|    assert(p != NULL);
  ------------------
  |  Branch (2853:5): [True: 4.55k, False: 0]
  ------------------
 2854|       |
 2855|       |#ifdef WITH_VALGRIND
 2856|       |    /* Treat running_on_valgrind == -1 the same as 0 */
 2857|       |    if (UNLIKELY(running_on_valgrind > 0)) {
 2858|       |        return 0;
 2859|       |    }
 2860|       |#endif
 2861|       |
 2862|  4.55k|    pool = POOL_ADDR(p);
  ------------------
  |  |  324|  4.55k|#define POOL_ADDR(P) ((poolp)_Py_ALIGN_DOWN((P), POOL_SIZE))
  |  |  ------------------
  |  |  |  |  216|  4.55k|#define _Py_ALIGN_DOWN(p, a) ((void *)((uintptr_t)(p) & ~(uintptr_t)((a) - 1)))
  |  |  ------------------
  ------------------
 2863|  4.55k|    if (!address_in_range(state, p, pool)) {
  ------------------
  |  Branch (2863:9): [True: 946, False: 3.60k]
  ------------------
 2864|       |        /* pymalloc is not managing this block.
 2865|       |
 2866|       |           If nbytes <= SMALL_REQUEST_THRESHOLD, it's tempting to try to take
 2867|       |           over this block.  However, if we do, we need to copy the valid data
 2868|       |           from the C-managed block to one of our blocks, and there's no
 2869|       |           portable way to know how much of the memory space starting at p is
 2870|       |           valid.
 2871|       |
 2872|       |           As bug 1185883 pointed out the hard way, it's possible that the
 2873|       |           C-managed block is "at the end" of allocated VM space, so that a
 2874|       |           memory fault can occur if we try to copy nbytes bytes starting at p.
 2875|       |           Instead we punt: let C continue to manage this block. */
 2876|    946|        return 0;
 2877|    946|    }
 2878|       |
 2879|       |    /* pymalloc is in charge of this block */
 2880|  3.60k|    size = INDEX2SIZE(pool->szidx);
  ------------------
  |  |  146|  3.60k|#define INDEX2SIZE(I) (((pymem_uint)(I) + 1) << ALIGNMENT_SHIFT)
  |  |  ------------------
  |  |  |  |  139|  3.60k|#define ALIGNMENT_SHIFT         4
  |  |  ------------------
  ------------------
 2881|  3.60k|    if (nbytes <= size) {
  ------------------
  |  Branch (2881:9): [True: 2.57k, False: 1.03k]
  ------------------
 2882|       |        /* The block is staying the same or shrinking.
 2883|       |
 2884|       |           If it's shrinking, there's a tradeoff: it costs cycles to copy the
 2885|       |           block to a smaller size class, but it wastes memory not to copy it.
 2886|       |
 2887|       |           The compromise here is to copy on shrink only if at least 25% of
 2888|       |           size can be shaved off. */
 2889|  2.57k|        if (4 * nbytes > 3 * size) {
  ------------------
  |  Branch (2889:13): [True: 171, False: 2.40k]
  ------------------
 2890|       |            /* It's the same, or shrinking and new/old > 3/4. */
 2891|    171|            *newptr_p = p;
 2892|    171|            return 1;
 2893|    171|        }
 2894|  2.40k|        size = nbytes;
 2895|  2.40k|    }
 2896|       |
 2897|  3.43k|    bp = _PyObject_Malloc(ctx, nbytes);
 2898|  3.43k|    if (bp != NULL) {
  ------------------
  |  Branch (2898:9): [True: 3.43k, False: 0]
  ------------------
 2899|  3.43k|        memcpy(bp, p, size);
 2900|  3.43k|        _PyObject_Free(ctx, p);
 2901|  3.43k|    }
 2902|  3.43k|    *newptr_p = bp;
 2903|  3.43k|    return 1;
 2904|  3.60k|}
obmalloc.c:init_obmalloc_pools:
 3551|      2|{
 3552|       |    // initialize the obmalloc->pools structure.  This must be done
 3553|       |    // before the obmalloc alloc/free functions can be called.
 3554|      2|    poolp temp[OBMALLOC_USED_POOLS_SIZE] =
 3555|      2|        _obmalloc_pools_INIT(interp->obmalloc->pools);
  ------------------
  |  |   40|      2|    { PT_8(p, 0), PT_8(p, 8), PT_8(p, 16), PT_8(p, 24) }
  |  |  ------------------
  |  |  |  |   20|      2|    PT(p, start), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   21|      2|    PT(p, start+1), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   22|      2|    PT(p, start+2), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   23|      2|    PT(p, start+3), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      2|    PT(p, start+4), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   25|      2|    PT(p, start+5), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   26|      2|    PT(p, start+6), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   27|      2|    PT(p, start+7)
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   { PT_8(p, 0), PT_8(p, 8), PT_8(p, 16), PT_8(p, 24) }
  |  |  ------------------
  |  |  |  |   20|      2|    PT(p, start), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   21|      2|    PT(p, start+1), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   22|      2|    PT(p, start+2), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   23|      2|    PT(p, start+3), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      2|    PT(p, start+4), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   25|      2|    PT(p, start+5), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   26|      2|    PT(p, start+6), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   27|      2|    PT(p, start+7)
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   { PT_8(p, 0), PT_8(p, 8), PT_8(p, 16), PT_8(p, 24) }
  |  |  ------------------
  |  |  |  |   20|      2|    PT(p, start), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   21|      2|    PT(p, start+1), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   22|      2|    PT(p, start+2), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   23|      2|    PT(p, start+3), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      2|    PT(p, start+4), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   25|      2|    PT(p, start+5), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   26|      2|    PT(p, start+6), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   27|      2|    PT(p, start+7)
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   { PT_8(p, 0), PT_8(p, 8), PT_8(p, 16), PT_8(p, 24) }
  |  |  ------------------
  |  |  |  |   20|      2|    PT(p, start), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   21|      2|    PT(p, start+1), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   22|      2|    PT(p, start+2), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   23|      2|    PT(p, start+3), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      2|    PT(p, start+4), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   25|      2|    PT(p, start+5), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   26|      2|    PT(p, start+6), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   27|      2|    PT(p, start+7)
  |  |  |  |  ------------------
  |  |  |  |  |  |   17|      2|#define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PT(p, x)   PTA(p, x), PTA(p, x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      2|    ((poolp )((uint8_t *)&(pools.used[2*(x)]) - 2*sizeof(pymem_block *)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3556|      2|    memcpy(&interp->obmalloc->pools.used, temp, sizeof(temp));
 3557|      2|}

rangeobject.c:range_dealloc:
  186|      8|{
  187|      8|    rangeobject *r = (rangeobject*)op;
  188|      8|    Py_DECREF(r->start);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  189|      8|    Py_DECREF(r->stop);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  190|      8|    Py_DECREF(r->step);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  191|      8|    Py_DECREF(r->length);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  192|      8|    _Py_FREELIST_FREE(ranges, r, PyObject_Free);
  ------------------
  |  |   35|      8|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|      8|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   22|      8|#  define Py_ranges_MAXFREELIST 6
  |  |  ------------------
  ------------------
  193|      8|}
rangeobject.c:make_range_object:
   69|      8|{
   70|      8|    PyObject *length;
   71|      8|    length = compute_range_length(start, stop, step);
   72|      8|    if (length == NULL) {
  ------------------
  |  Branch (72:9): [True: 0, False: 8]
  ------------------
   73|      0|        return NULL;
   74|      0|    }
   75|      8|    rangeobject *obj = _Py_FREELIST_POP(rangeobject, ranges);
  ------------------
  |  |   43|      8|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   76|      8|    if (obj == NULL) {
  ------------------
  |  Branch (76:9): [True: 2, False: 6]
  ------------------
   77|      2|        obj = PyObject_New(rangeobject, type);
  ------------------
  |  |  130|      2|#define PyObject_New(type, typeobj) ((type *)_PyObject_New(typeobj))
  ------------------
   78|      2|        if (obj == NULL) {
  ------------------
  |  Branch (78:13): [True: 0, False: 2]
  ------------------
   79|      0|            Py_DECREF(length);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   80|      0|            return NULL;
   81|      0|        }
   82|      2|    }
   83|      8|    obj->start = start;
   84|      8|    obj->stop = stop;
   85|      8|    obj->step = step;
   86|      8|    obj->length = length;
   87|      8|    return obj;
   88|      8|}
rangeobject.c:compute_range_length:
  244|      8|{
  245|       |    /* -------------------------------------------------------------
  246|       |    Algorithm is equal to that of get_len_of_range(), but it operates
  247|       |    on PyObjects (which are assumed to be PyLong objects).
  248|       |    ---------------------------------------------------------------*/
  249|      8|    int cmp_result;
  250|      8|    PyObject *lo, *hi;
  251|      8|    PyObject *diff = NULL;
  252|      8|    PyObject *tmp1 = NULL, *tmp2 = NULL, *result;
  253|       |                /* holds sub-expression evaluations */
  254|       |
  255|      8|    PyObject *zero = _PyLong_GetZero();  // borrowed reference
  256|      8|    PyObject *one = _PyLong_GetOne();  // borrowed reference
  257|       |
  258|      8|    assert(PyLong_Check(start));
  ------------------
  |  Branch (258:5): [True: 8, False: 0]
  ------------------
  259|      8|    assert(PyLong_Check(stop));
  ------------------
  |  Branch (259:5): [True: 8, False: 0]
  ------------------
  260|      8|    assert(PyLong_Check(step));
  ------------------
  |  Branch (260:5): [True: 8, False: 0]
  ------------------
  261|       |
  262|       |    /* fast path when all arguments fit into a long integer */
  263|      8|    long len = compute_range_length_long(start, stop, step);
  264|      8|    if (len >= 0) {
  ------------------
  |  Branch (264:9): [True: 6, False: 2]
  ------------------
  265|      6|        return PyLong_FromLong(len);
  266|      6|    }
  267|      2|    else if (len == -1) {
  ------------------
  |  Branch (267:14): [True: 0, False: 2]
  ------------------
  268|       |        /* unexpected error from compute_range_length_long, we propagate to the caller */
  269|      0|        return NULL;
  270|      0|    }
  271|      8|    assert(len == -2);
  ------------------
  |  Branch (271:5): [True: 2, False: 0]
  ------------------
  272|       |
  273|      2|    cmp_result = PyObject_RichCompareBool(step, zero, Py_GT);
  ------------------
  |  |  656|      2|#define Py_GT 4
  ------------------
  274|      2|    if (cmp_result == -1)
  ------------------
  |  Branch (274:9): [True: 0, False: 2]
  ------------------
  275|      0|        return NULL;
  276|       |
  277|      2|    if (cmp_result == 1) {
  ------------------
  |  Branch (277:9): [True: 2, False: 0]
  ------------------
  278|      2|        lo = start;
  279|      2|        hi = stop;
  280|      2|        Py_INCREF(step);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  281|      2|    } else {
  282|      0|        lo = stop;
  283|      0|        hi = start;
  284|      0|        step = PyNumber_Negative(step);
  285|      0|        if (!step)
  ------------------
  |  Branch (285:13): [True: 0, False: 0]
  ------------------
  286|      0|            return NULL;
  287|      0|    }
  288|       |
  289|       |    /* if (lo >= hi), return length of 0. */
  290|      2|    cmp_result = PyObject_RichCompareBool(lo, hi, Py_GE);
  ------------------
  |  |  657|      2|#define Py_GE 5
  ------------------
  291|      2|    if (cmp_result != 0) {
  ------------------
  |  Branch (291:9): [True: 0, False: 2]
  ------------------
  292|      0|        Py_DECREF(step);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  293|      0|        if (cmp_result < 0)
  ------------------
  |  Branch (293:13): [True: 0, False: 0]
  ------------------
  294|      0|            return NULL;
  295|      0|        result = zero;
  296|      0|        return Py_NewRef(result);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  297|      0|    }
  298|       |
  299|      2|    if ((tmp1 = PyNumber_Subtract(hi, lo)) == NULL)
  ------------------
  |  Branch (299:9): [True: 0, False: 2]
  ------------------
  300|      0|        goto Fail;
  301|       |
  302|      2|    if ((diff = PyNumber_Subtract(tmp1, one)) == NULL)
  ------------------
  |  Branch (302:9): [True: 0, False: 2]
  ------------------
  303|      0|        goto Fail;
  304|       |
  305|      2|    if ((tmp2 = PyNumber_FloorDivide(diff, step)) == NULL)
  ------------------
  |  Branch (305:9): [True: 0, False: 2]
  ------------------
  306|      0|        goto Fail;
  307|       |
  308|      2|    if ((result = PyNumber_Add(tmp2, one)) == NULL)
  ------------------
  |  Branch (308:9): [True: 0, False: 2]
  ------------------
  309|      0|        goto Fail;
  310|       |
  311|      2|    Py_DECREF(tmp2);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  312|      2|    Py_DECREF(diff);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  313|      2|    Py_DECREF(step);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  314|      2|    Py_DECREF(tmp1);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  315|      2|    return result;
  316|       |
  317|      0|  Fail:
  318|      0|    Py_DECREF(step);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  319|      0|    Py_XDECREF(tmp2);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  320|      0|    Py_XDECREF(diff);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  321|      0|    Py_XDECREF(tmp1);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  322|       |    return NULL;
  323|      2|}
rangeobject.c:compute_range_length_long:
  203|      8|                PyObject *stop, PyObject *step) {
  204|      8|    int overflow = 0;
  205|       |
  206|      8|    long long_start = PyLong_AsLongAndOverflow(start, &overflow);
  207|      8|    if (overflow) {
  ------------------
  |  Branch (207:9): [True: 0, False: 8]
  ------------------
  208|      0|        return -2;
  209|      0|    }
  210|      8|    if (long_start == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (210:9): [True: 0, False: 8]
  |  Branch (210:29): [True: 0, False: 0]
  ------------------
  211|      0|        return -1;
  212|      0|    }
  213|      8|    long long_stop = PyLong_AsLongAndOverflow(stop, &overflow);
  214|      8|    if (overflow) {
  ------------------
  |  Branch (214:9): [True: 2, False: 6]
  ------------------
  215|      2|        return -2;
  216|      2|    }
  217|      6|    if (long_stop == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (217:9): [True: 0, False: 6]
  |  Branch (217:28): [True: 0, False: 0]
  ------------------
  218|      0|        return -1;
  219|      0|    }
  220|      6|    long long_step = PyLong_AsLongAndOverflow(step, &overflow);
  221|      6|    if (overflow) {
  ------------------
  |  Branch (221:9): [True: 0, False: 6]
  ------------------
  222|      0|        return -2;
  223|      0|    }
  224|      6|    if (long_step == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (224:9): [True: 0, False: 6]
  |  Branch (224:28): [True: 0, False: 0]
  ------------------
  225|      0|        return -1;
  226|      0|    }
  227|       |
  228|      6|    unsigned long ulen = get_len_of_range(long_start, long_stop, long_step);
  229|      6|    if (ulen > (unsigned long)LONG_MAX) {
  ------------------
  |  Branch (229:9): [True: 0, False: 6]
  ------------------
  230|       |        /* length too large for a long */
  231|      0|        return -2;
  232|      0|    }
  233|      6|    else {
  234|      6|        return (long)ulen;
  235|      6|    }
  236|      6|}
rangeobject.c:get_len_of_range:
  993|     12|{
  994|       |    /* -------------------------------------------------------------
  995|       |    If step > 0 and lo >= hi, or step < 0 and lo <= hi, the range is empty.
  996|       |    Else for step > 0, if n values are in the range, the last one is
  997|       |    lo + (n-1)*step, which must be <= hi-1.  Rearranging,
  998|       |    n <= (hi - lo - 1)/step + 1, so taking the floor of the RHS gives
  999|       |    the proper value.  Since lo < hi in this case, hi-lo-1 >= 0, so
 1000|       |    the RHS is non-negative and so truncation is the same as the
 1001|       |    floor.  Letting M be the largest positive long, the worst case
 1002|       |    for the RHS numerator is hi=M, lo=-M-1, and then
 1003|       |    hi-lo-1 = M-(-M-1)-1 = 2*M.  Therefore unsigned long has enough
 1004|       |    precision to compute the RHS exactly.  The analysis for step < 0
 1005|       |    is similar.
 1006|       |    ---------------------------------------------------------------*/
 1007|     12|    assert(step != 0);
  ------------------
  |  Branch (1007:5): [True: 12, False: 0]
  ------------------
 1008|     12|    if (step > 0 && lo < hi)
  ------------------
  |  Branch (1008:9): [True: 12, False: 0]
  |  Branch (1008:21): [True: 8, False: 4]
  ------------------
 1009|      8|        return 1UL + (hi - 1UL - lo) / step;
 1010|      4|    else if (step < 0 && lo > hi)
  ------------------
  |  Branch (1010:14): [True: 0, False: 4]
  |  Branch (1010:26): [True: 0, False: 0]
  ------------------
 1011|      0|        return 1UL + (lo - 1UL - hi) / (0UL - step);
 1012|      4|    else
 1013|      4|        return 0UL;
 1014|     12|}
rangeobject.c:fast_range_iter:
 1021|      6|{
 1022|      6|    _PyRangeIterObject *it = _Py_FREELIST_POP(_PyRangeIterObject, range_iters);
  ------------------
  |  |   43|      6|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1023|      6|    if (it == NULL) {
  ------------------
  |  Branch (1023:9): [True: 2, False: 4]
  ------------------
 1024|      2|        it = PyObject_New(_PyRangeIterObject, &PyRangeIter_Type);
  ------------------
  |  |  130|      2|#define PyObject_New(type, typeobj) ((type *)_PyObject_New(typeobj))
  ------------------
 1025|      2|        if (it == NULL) {
  ------------------
  |  Branch (1025:13): [True: 0, False: 2]
  ------------------
 1026|      0|            return NULL;
 1027|      0|        }
 1028|      2|    }
 1029|      6|    assert(Py_IS_TYPE(it, &PyRangeIter_Type));
  ------------------
  |  Branch (1029:5): [True: 6, False: 0]
  ------------------
 1030|      6|    it->start = start;
 1031|      6|    it->step = step;
 1032|      6|    it->len = len;
 1033|      6|    return (PyObject *)it;
 1034|      6|}
rangeobject.c:range_from_array:
   97|      8|{
   98|      8|    rangeobject *obj;
   99|      8|    PyObject *start = NULL, *stop = NULL, *step = NULL;
  100|       |
  101|      8|    switch (num_args) {
  102|      0|        case 3:
  ------------------
  |  Branch (102:9): [True: 0, False: 8]
  ------------------
  103|      0|            step = args[2];
  104|      0|            _Py_FALLTHROUGH;
  ------------------
  |  |  644|      0|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
  105|      0|        case 2:
  ------------------
  |  Branch (105:9): [True: 0, False: 8]
  ------------------
  106|       |            /* Convert borrowed refs to owned refs */
  107|      0|            start = PyNumber_Index(args[0]);
  108|      0|            if (!start) {
  ------------------
  |  Branch (108:17): [True: 0, False: 0]
  ------------------
  109|      0|                return NULL;
  110|      0|            }
  111|      0|            stop = PyNumber_Index(args[1]);
  112|      0|            if (!stop) {
  ------------------
  |  Branch (112:17): [True: 0, False: 0]
  ------------------
  113|      0|                Py_DECREF(start);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  114|      0|                return NULL;
  115|      0|            }
  116|      0|            step = validate_step(step);  /* Caution, this can clear exceptions */
  117|      0|            if (!step) {
  ------------------
  |  Branch (117:17): [True: 0, False: 0]
  ------------------
  118|      0|                Py_DECREF(start);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  119|      0|                Py_DECREF(stop);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  120|      0|                return NULL;
  121|      0|            }
  122|      0|            break;
  123|      8|        case 1:
  ------------------
  |  Branch (123:9): [True: 8, False: 0]
  ------------------
  124|      8|            stop = PyNumber_Index(args[0]);
  125|      8|            if (!stop) {
  ------------------
  |  Branch (125:17): [True: 0, False: 8]
  ------------------
  126|      0|                return NULL;
  127|      0|            }
  128|      8|            start = _PyLong_GetZero();
  129|      8|            step = _PyLong_GetOne();
  130|      8|            break;
  131|      0|        case 0:
  ------------------
  |  Branch (131:9): [True: 0, False: 8]
  ------------------
  132|      0|            PyErr_SetString(PyExc_TypeError,
  133|      0|                            "range expected at least 1 argument, got 0");
  134|      0|            return NULL;
  135|      0|        default:
  ------------------
  |  Branch (135:9): [True: 0, False: 8]
  ------------------
  136|      0|            PyErr_Format(PyExc_TypeError,
  137|      0|                         "range expected at most 3 arguments, got %zd",
  138|      0|                         num_args);
  139|      0|            return NULL;
  140|      8|    }
  141|      8|    obj = make_range_object(type, start, stop, step);
  142|      8|    if (obj != NULL) {
  ------------------
  |  Branch (142:9): [True: 8, False: 0]
  ------------------
  143|      8|        return (PyObject *) obj;
  144|      8|    }
  145|       |
  146|       |    /* Failed to create object, release attributes */
  147|      0|    Py_DECREF(start);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  148|      0|    Py_DECREF(stop);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  149|      0|    Py_DECREF(step);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  150|       |    return NULL;
  151|      8|}
rangeobject.c:range_vectorcall:
  166|      8|{
  167|      8|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      8|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  168|      8|    if (!_PyArg_NoKwnames("range", kwnames)) {
  ------------------
  |  |   15|      8|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 8, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  169|      0|        return NULL;
  170|      0|    }
  171|      8|    return range_from_array((PyTypeObject *)rangetype, args, nargs);
  172|      8|}
rangeobject.c:rangeiter_dealloc:
  944|      6|{
  945|      6|    _Py_FREELIST_FREE(range_iters, (_PyRangeIterObject *)self, PyObject_Free);
  ------------------
  |  |   35|      6|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|      6|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   23|      6|#  define Py_range_iters_MAXFREELIST 6
  |  |  ------------------
  ------------------
  946|      6|}
rangeobject.c:rangeiter_next:
  847|      2|{
  848|      2|    PyObject *ret = NULL;
  849|      2|    Py_BEGIN_CRITICAL_SECTION(op);
  ------------------
  |  |   51|      2|    {
  ------------------
  850|      2|    _PyRangeIterObject *r = (_PyRangeIterObject*)op;
  851|      2|    if (r->len > 0) {
  ------------------
  |  Branch (851:9): [True: 2, False: 0]
  ------------------
  852|      2|        long result = r->start;
  853|      2|        r->start = result + r->step;
  854|      2|        r->len--;
  855|      2|        ret = PyLong_FromLong(result);
  856|      2|    }
  857|      2|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      2|    }
  ------------------
  858|      2|    return ret;
  859|      2|}
rangeobject.c:longrangeiter_dealloc:
 1153|      2|{
 1154|      2|    longrangeiterobject *r = (longrangeiterobject*)op;
 1155|      2|    Py_XDECREF(r->start);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1156|      2|    Py_XDECREF(r->step);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1157|      2|    Py_XDECREF(r->len);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1158|      2|    PyObject_Free(r);
 1159|      2|}
rangeobject.c:range_iter:
 1228|      8|{
 1229|      8|    rangeobject *r = (rangeobject *)seq;
 1230|      8|    longrangeiterobject *it;
 1231|      8|    long lstart, lstop, lstep;
 1232|      8|    unsigned long ulen;
 1233|       |
 1234|      8|    assert(PyRange_Check(seq));
  ------------------
  |  Branch (1234:5): [True: 8, False: 0]
  ------------------
 1235|       |
 1236|       |    /* If all three fields and the length convert to long, use the int
 1237|       |     * version */
 1238|      8|    lstart = PyLong_AsLong(r->start);
 1239|      8|    if (lstart == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1239:9): [True: 0, False: 8]
  |  Branch (1239:25): [True: 0, False: 0]
  ------------------
 1240|      0|        PyErr_Clear();
 1241|      0|        goto long_range;
 1242|      0|    }
 1243|      8|    lstop = PyLong_AsLong(r->stop);
 1244|      8|    if (lstop == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1244:9): [True: 2, False: 6]
  |  Branch (1244:24): [True: 2, False: 0]
  ------------------
 1245|      2|        PyErr_Clear();
 1246|      2|        goto long_range;
 1247|      2|    }
 1248|      6|    lstep = PyLong_AsLong(r->step);
 1249|      6|    if (lstep == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1249:9): [True: 0, False: 6]
  |  Branch (1249:24): [True: 0, False: 0]
  ------------------
 1250|      0|        PyErr_Clear();
 1251|      0|        goto long_range;
 1252|      0|    }
 1253|      6|    ulen = get_len_of_range(lstart, lstop, lstep);
 1254|      6|    if (ulen > (unsigned long)LONG_MAX) {
  ------------------
  |  Branch (1254:9): [True: 0, False: 6]
  ------------------
 1255|      0|        goto long_range;
 1256|      0|    }
 1257|       |    /* check for potential overflow of lstart + ulen * lstep */
 1258|      6|    if (ulen) {
  ------------------
  |  Branch (1258:9): [True: 4, False: 2]
  ------------------
 1259|      4|        if (lstep > 0) {
  ------------------
  |  Branch (1259:13): [True: 4, False: 0]
  ------------------
 1260|      4|            if (lstop > LONG_MAX - (lstep - 1))
  ------------------
  |  Branch (1260:17): [True: 0, False: 4]
  ------------------
 1261|      0|                goto long_range;
 1262|      4|        }
 1263|      0|        else {
 1264|      0|            if (lstop < LONG_MIN + (-1 - lstep))
  ------------------
  |  Branch (1264:17): [True: 0, False: 0]
  ------------------
 1265|      0|                goto long_range;
 1266|      0|        }
 1267|      4|    }
 1268|      6|    return fast_range_iter(lstart, lstop, lstep, (long)ulen);
 1269|       |
 1270|      2|  long_range:
 1271|      2|    it = PyObject_New(longrangeiterobject, &PyLongRangeIter_Type);
  ------------------
  |  |  130|      2|#define PyObject_New(type, typeobj) ((type *)_PyObject_New(typeobj))
  ------------------
 1272|      2|    if (it == NULL)
  ------------------
  |  Branch (1272:9): [True: 0, False: 2]
  ------------------
 1273|      0|        return NULL;
 1274|       |
 1275|      2|    it->start = Py_NewRef(r->start);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1276|      2|    it->step = Py_NewRef(r->step);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1277|      2|    it->len = Py_NewRef(r->length);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1278|      2|    return (PyObject *)it;
 1279|      2|}

_PySet_AddTakeRef:
  363|     10|{
  364|     10|    Py_hash_t hash = _PyObject_HashFast(key);
  365|     10|    if (hash == -1) {
  ------------------
  |  Branch (365:9): [True: 0, False: 10]
  ------------------
  366|      0|        set_unhashable_type(key);
  367|      0|        Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  368|      0|        return -1;
  369|      0|    }
  370|       |    // We don't pre-increment here, the caller holds a strong
  371|       |    // reference to the object which we are stealing.
  372|     10|    return set_add_entry_takeref(so, key, hash);
  373|     10|}
_PySet_Contains:
 2502|    100|{
 2503|    100|    assert(so);
  ------------------
  |  Branch (2503:5): [True: 100, False: 0]
  ------------------
 2504|       |
 2505|    100|    Py_hash_t hash = _PyObject_HashFast(key);
 2506|    100|    if (hash == -1) {
  ------------------
  |  Branch (2506:9): [True: 0, False: 100]
  ------------------
 2507|      0|        if (!PySet_Check(key) || !PyErr_ExceptionMatches(PyExc_TypeError)) {
  ------------------
  |  |   37|      0|    (Py_IS_TYPE((ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   38|      0|    PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (38:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2507:34): [True: 0, False: 0]
  ------------------
 2508|      0|            set_unhashable_type(key);
 2509|      0|            return -1;
 2510|      0|        }
 2511|      0|        PyErr_Clear();
 2512|       |        // Note that 'key' could be a set() or frozenset() object.  Unlike most
 2513|       |        // container types, set allows membership testing with a set key, even
 2514|       |        // though it is not hashable.
 2515|      0|        Py_BEGIN_CRITICAL_SECTION(key);
  ------------------
  |  |   51|      0|    {
  ------------------
 2516|      0|        hash = frozenset_hash_impl(key);
 2517|      0|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 2518|      0|    }
 2519|    100|    return set_contains_entry(so, key, hash);
 2520|    100|}
PySet_New:
 2978|     62|{
 2979|     62|    return make_new_set(&PySet_Type, iterable);
 2980|     62|}
PyFrozenSet_New:
 2984|     82|{
 2985|     82|    PyObject *result = make_new_set(&PyFrozenSet_Type, iterable);
 2986|     82|    if (result != NULL) {
  ------------------
  |  Branch (2986:9): [True: 82, False: 0]
  ------------------
 2987|     82|        _PyFrozenSet_MaybeUntrack(result);
 2988|     82|    }
 2989|     82|    return result;
 2990|     82|}
PySet_Clear:
 3004|     16|{
 3005|     16|    if (!PySet_Check(set)) {
  ------------------
  |  |   37|     16|    (Py_IS_TYPE((ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  215|     32|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 16, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   38|     16|    PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (38:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3006|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3007|      0|        return -1;
 3008|      0|    }
 3009|     16|    (void)set_clear(set, NULL);
 3010|     16|    return 0;
 3011|     16|}
PySet_Contains:
 3021|     40|{
 3022|     40|    if (!PyAnySet_Check(anyset)) {
  ------------------
  |  |   31|     40|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|     80|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 40, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|     40|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   32|     40|      PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (32:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   33|     40|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (33:7): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3023|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3024|      0|        return -1;
 3025|      0|    }
 3026|       |
 3027|     40|    PySetObject *so = (PySetObject *)anyset;
 3028|     40|    Py_hash_t hash = _PyObject_HashFast(key);
 3029|     40|    if (hash == -1) {
  ------------------
  |  Branch (3029:9): [True: 0, False: 40]
  ------------------
 3030|      0|        set_unhashable_type(key);
 3031|      0|        return -1;
 3032|      0|    }
 3033|     40|    return set_contains_entry(so, key, hash);
 3034|     40|}
PySet_Add:
 3053|    226|{
 3054|    226|    if (PySet_Check(anyset)) {
  ------------------
  |  |   37|    226|    (Py_IS_TYPE((ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  215|    452|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    226|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    226|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 104, False: 122]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   38|    226|    PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
  |  |  ------------------
  |  |  |  |  213|    122|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (38:5): [True: 0, False: 122]
  |  |  ------------------
  ------------------
 3055|    104|        int rv;
 3056|    104|        Py_BEGIN_CRITICAL_SECTION(anyset);
  ------------------
  |  |   51|    104|    {
  ------------------
 3057|    104|        rv = set_add_key((PySetObject *)anyset, key);
 3058|    104|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    104|    }
  ------------------
 3059|    104|        return rv;
 3060|    104|    }
 3061|       |
 3062|    122|    if (PyFrozenSet_Check(anyset) && _PyObject_IsUniquelyReferenced(anyset)) {
  ------------------
  |  |   25|    244|    (Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|    244|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 122, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   26|    244|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (26:7): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (3062:38): [True: 122, False: 0]
  ------------------
 3063|       |        // We can only change frozensets if they are uniquely referenced. The
 3064|       |        // API limits the usage of `PySet_Add` to "fill in the values of brand
 3065|       |        // new frozensets before they are exposed to other code". In this case,
 3066|       |        // this can be done without a lock.
 3067|       |        // Since another key is added to the set, we must track the frozenset
 3068|       |        // if needed.
 3069|    122|        if (PyFrozenSet_CheckExact(anyset) && !PyObject_GC_IsTracked(anyset) && PyObject_GC_IsTracked(key)) {
  ------------------
  |  |   23|    122|#define PyFrozenSet_CheckExact(ob) Py_IS_TYPE((ob), &PyFrozenSet_Type)
  |  |  ------------------
  |  |  |  |  215|    244|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 122, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3069:47): [True: 122, False: 0]
  |  Branch (3069:81): [True: 0, False: 122]
  ------------------
 3070|      0|            _PyObject_GC_TRACK(anyset);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3071|      0|        }
 3072|    122|        return set_add_key((PySetObject *)anyset, key);
 3073|    122|    }
 3074|       |
 3075|      0|    PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3076|      0|    return -1;
 3077|    122|}
_PySet_NextEntry:
 3081|     46|{
 3082|     46|    setentry *entry;
 3083|       |
 3084|     46|    if (!PyAnySet_Check(set)) {
  ------------------
  |  |   31|     46|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|     92|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 46]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|     92|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 46, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   32|     46|      PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (32:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   33|     46|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (33:7): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3085|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3086|      0|        return -1;
 3087|      0|    }
 3088|     46|    if (set_next((PySetObject *)set, pos, &entry) == 0)
  ------------------
  |  Branch (3088:9): [True: 16, False: 30]
  ------------------
 3089|     16|        return 0;
 3090|     30|    *key = entry->key;
 3091|     30|    *hash = entry->hash;
 3092|     30|    return 1;
 3093|     46|}
setobject.c:set_add_entry_takeref:
  254|  1.46k|{
  255|  1.46k|    setentry *table;
  256|  1.46k|    setentry *freeslot;
  257|  1.46k|    setentry *entry;
  258|  1.46k|    size_t perturb;
  259|  1.46k|    size_t mask;
  260|  1.46k|    size_t i;                       /* Unsigned for defined overflow behavior */
  261|  1.46k|    int probes;
  262|  1.46k|    int cmp;
  263|       |
  264|  1.46k|  restart:
  265|       |
  266|  1.46k|    mask = so->mask;
  267|  1.46k|    i = (size_t)hash & mask;
  268|  1.46k|    freeslot = NULL;
  269|  1.46k|    perturb = hash;
  270|       |
  271|  1.57k|    while (1) {
  ------------------
  |  Branch (271:12): [True: 1.57k, Folded]
  ------------------
  272|  1.57k|        entry = &so->table[i];
  273|  1.57k|        probes = (i + LINEAR_PROBES <= mask) ? LINEAR_PROBES: 0;
  ------------------
  |  |  214|  1.57k|#define LINEAR_PROBES 9
  ------------------
                      probes = (i + LINEAR_PROBES <= mask) ? LINEAR_PROBES: 0;
  ------------------
  |  |  214|  1.13k|#define LINEAR_PROBES 9
  ------------------
  |  Branch (273:18): [True: 1.13k, False: 437]
  ------------------
  274|  2.45k|        do {
  275|  2.45k|            if (entry->hash == 0 && entry->key == NULL)
  ------------------
  |  Branch (275:17): [True: 1.45k, False: 997]
  |  Branch (275:37): [True: 1.45k, False: 0]
  ------------------
  276|  1.45k|                goto found_unused_or_dummy;
  277|    997|            if (entry->hash == hash) {
  ------------------
  |  Branch (277:17): [True: 12, False: 985]
  ------------------
  278|     12|                PyObject *startkey = entry->key;
  279|     12|                assert(startkey != dummy);
  ------------------
  |  Branch (279:17): [True: 12, False: 0]
  ------------------
  280|     12|                if (startkey == key)
  ------------------
  |  Branch (280:21): [True: 12, False: 0]
  ------------------
  281|     12|                    goto found_active;
  282|      0|                if (PyUnicode_CheckExact(startkey)
  ------------------
  |  |  104|      0|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  283|      0|                    && PyUnicode_CheckExact(key)
  ------------------
  |  |  104|      0|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  284|      0|                    && unicode_eq(startkey, key))
  ------------------
  |  Branch (284:24): [True: 0, False: 0]
  ------------------
  285|      0|                    goto found_active;
  286|      0|                table = so->table;
  287|      0|                Py_INCREF(startkey);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  288|      0|                cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  289|      0|                Py_DECREF(startkey);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  290|      0|                if (cmp > 0)
  ------------------
  |  Branch (290:21): [True: 0, False: 0]
  ------------------
  291|      0|                    goto found_active;
  292|      0|                if (cmp < 0)
  ------------------
  |  Branch (292:21): [True: 0, False: 0]
  ------------------
  293|      0|                    goto comparison_error;
  294|      0|                if (table != so->table || entry->key != startkey)
  ------------------
  |  Branch (294:21): [True: 0, False: 0]
  |  Branch (294:43): [True: 0, False: 0]
  ------------------
  295|      0|                    goto restart;
  296|      0|                mask = so->mask;
  297|      0|            }
  298|    985|            else if (entry->hash == -1) {
  ------------------
  |  Branch (298:22): [True: 0, False: 985]
  ------------------
  299|      0|                assert (entry->key == dummy);
  ------------------
  |  Branch (299:17): [True: 0, False: 0]
  ------------------
  300|      0|                freeslot = entry;
  301|      0|            }
  302|    985|            entry++;
  303|    985|        } while (probes--);
  ------------------
  |  Branch (303:18): [True: 881, False: 104]
  ------------------
  304|    104|        perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  218|    104|#define PERTURB_SHIFT 5
  ------------------
  305|    104|        i = (i * 5 + 1 + perturb) & mask;
  306|    104|    }
  307|       |
  308|  1.45k|  found_unused_or_dummy:
  309|  1.45k|    if (freeslot == NULL)
  ------------------
  |  Branch (309:9): [True: 1.45k, False: 0]
  ------------------
  310|  1.45k|        goto found_unused;
  311|      0|    if (freeslot->hash != -1) {
  ------------------
  |  Branch (311:9): [True: 0, False: 0]
  ------------------
  312|      0|        goto restart;
  313|      0|    }
  314|      0|    FT_ATOMIC_STORE_SSIZE_RELAXED(so->used, so->used + 1);
  ------------------
  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  315|      0|    FT_ATOMIC_STORE_SSIZE_RELAXED(freeslot->hash, hash);
  ------------------
  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  316|      0|    FT_ATOMIC_STORE_PTR_RELEASE(freeslot->key, key);
  ------------------
  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  317|      0|    return 0;
  318|       |
  319|  1.45k|  found_unused:
  320|  1.45k|    so->fill++;
  321|  1.45k|    FT_ATOMIC_STORE_SSIZE_RELAXED(so->used, so->used + 1);
  ------------------
  |  |  194|  1.45k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  322|  1.45k|    FT_ATOMIC_STORE_SSIZE_RELAXED(entry->hash, hash);
  ------------------
  |  |  194|  1.45k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  323|  1.45k|    FT_ATOMIC_STORE_PTR_RELEASE(entry->key, key);
  ------------------
  |  |  164|  1.45k|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  324|  1.45k|    if ((size_t)so->fill*5 < mask*3)
  ------------------
  |  Branch (324:9): [True: 1.42k, False: 34]
  ------------------
  325|  1.42k|        return 0;
  326|     34|    return set_table_resize(so, so->used>50000 ? so->used*2 : so->used*4);
  ------------------
  |  Branch (326:33): [True: 0, False: 34]
  ------------------
  327|       |
  328|     12|  found_active:
  329|     12|    Py_DECREF(key);
  ------------------
  |  |  430|     12|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  330|     12|    return 0;
  331|       |
  332|      0|  comparison_error:
  333|      0|    Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  334|      0|    return -1;
  335|  1.45k|}
setobject.c:set_table_resize:
  485|     34|{
  486|     34|    setentry *oldtable, *newtable, *entry;
  487|     34|    Py_ssize_t oldmask = so->mask;
  488|     34|    Py_ssize_t oldsize = (size_t)oldmask + 1;
  489|     34|    size_t newmask;
  490|     34|    int is_oldtable_malloced;
  491|     34|    setentry small_copy[PySet_MINSIZE];
  492|       |
  493|     34|    assert(minused >= 0);
  ------------------
  |  Branch (493:5): [True: 34, False: 0]
  ------------------
  494|       |
  495|       |    /* Find the smallest table size > minused. */
  496|       |    /* XXX speed-up with intrinsics */
  497|     34|    size_t newsize = PySet_MINSIZE;
  ------------------
  |  |   18|     34|#define PySet_MINSIZE 8
  ------------------
  498|    130|    while (newsize <= (size_t)minused) {
  ------------------
  |  Branch (498:12): [True: 96, False: 34]
  ------------------
  499|     96|        newsize <<= 1; // The largest possible value is PY_SSIZE_T_MAX + 1.
  500|     96|    }
  501|       |
  502|       |    /* Get space for a new table. */
  503|     34|    oldtable = so->table;
  504|     34|    assert(oldtable != NULL);
  ------------------
  |  Branch (504:5): [True: 34, False: 0]
  ------------------
  505|     34|    is_oldtable_malloced = oldtable != so->smalltable;
  506|       |
  507|     34|    if (newsize == PySet_MINSIZE) {
  ------------------
  |  |   18|     34|#define PySet_MINSIZE 8
  ------------------
  |  Branch (507:9): [True: 0, False: 34]
  ------------------
  508|       |        /* A large table is shrinking, or we can't get any smaller. */
  509|      0|        newtable = so->smalltable;
  510|      0|        if (newtable == oldtable) {
  ------------------
  |  Branch (510:13): [True: 0, False: 0]
  ------------------
  511|      0|            if (so->fill == so->used) {
  ------------------
  |  Branch (511:17): [True: 0, False: 0]
  ------------------
  512|       |                /* No dummies, so no point doing anything. */
  513|      0|                return 0;
  514|      0|            }
  515|       |            /* We're not going to resize it, but rebuild the
  516|       |               table anyway to purge old dummy entries.
  517|       |               Subtle:  This is *necessary* if fill==size,
  518|       |               as set_lookkey needs at least one virgin slot to
  519|       |               terminate failing searches.  If fill < size, it's
  520|       |               merely desirable, as dummies slow searches. */
  521|      0|            assert(so->fill > so->used);
  ------------------
  |  Branch (521:13): [True: 0, False: 0]
  ------------------
  522|      0|            memcpy(small_copy, oldtable, sizeof(small_copy));
  523|      0|            oldtable = small_copy;
  524|      0|        }
  525|      0|    }
  526|     34|    else {
  527|     34|        newtable = PyMem_NEW(setentry, newsize);
  ------------------
  |  |   82|     34|#define PyMem_NEW(type, n)        PyMem_New(type, (n))
  |  |  ------------------
  |  |  |  |   64|     34|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|     34|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:5): [True: 0, False: 34]
  |  |  |  |  ------------------
  |  |  |  |   65|     34|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  |  |  ------------------
  ------------------
  528|     34|        if (newtable == NULL) {
  ------------------
  |  Branch (528:13): [True: 0, False: 34]
  ------------------
  529|      0|            PyErr_NoMemory();
  530|      0|            return -1;
  531|      0|        }
  532|     34|    }
  533|       |
  534|       |    /* Make the set empty, using the new table. */
  535|     34|    assert(newtable != oldtable);
  ------------------
  |  Branch (535:5): [True: 34, False: 0]
  ------------------
  536|     34|    set_zero_table(newtable, newsize);
  537|     34|    FT_ATOMIC_STORE_PTR_RELEASE(so->table, NULL);
  ------------------
  |  |  164|     34|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  538|     34|    FT_ATOMIC_STORE_SSIZE_RELEASE(so->mask, newsize - 1);
  ------------------
  |  |  169|     34|#define FT_ATOMIC_STORE_SSIZE_RELEASE(value, new_value) value = new_value
  ------------------
  539|       |
  540|       |    /* Copy the data over; this is refcount-neutral for active entries;
  541|       |       dummy entries aren't copied over, of course */
  542|     34|    newmask = (size_t)so->mask;
  543|     34|    if (so->fill == so->used) {
  ------------------
  |  Branch (543:9): [True: 34, False: 0]
  ------------------
  544|    930|        for (entry = oldtable; entry <= oldtable + oldmask; entry++) {
  ------------------
  |  Branch (544:32): [True: 896, False: 34]
  ------------------
  545|    896|            if (entry->key != NULL) {
  ------------------
  |  Branch (545:17): [True: 542, False: 354]
  ------------------
  546|    542|                set_insert_clean(newtable, newmask, entry->key, entry->hash);
  547|    542|            }
  548|    896|        }
  549|     34|    } else {
  550|      0|        so->fill = so->used;
  551|      0|        for (entry = oldtable; entry <= oldtable + oldmask; entry++) {
  ------------------
  |  Branch (551:32): [True: 0, False: 0]
  ------------------
  552|      0|            if (entry->key != NULL && entry->key != dummy) {
  ------------------
  |  |   64|      0|#define dummy (&_dummy_struct)
  ------------------
  |  Branch (552:17): [True: 0, False: 0]
  |  Branch (552:39): [True: 0, False: 0]
  ------------------
  553|      0|                set_insert_clean(newtable, newmask, entry->key, entry->hash);
  554|      0|            }
  555|      0|        }
  556|      0|    }
  557|       |
  558|     34|    FT_ATOMIC_STORE_PTR_RELEASE(so->table, newtable);
  ------------------
  |  |  164|     34|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  559|       |
  560|     34|    if (is_oldtable_malloced)
  ------------------
  |  Branch (560:9): [True: 10, False: 24]
  ------------------
  561|     10|        free_entries(oldtable, oldsize, SET_IS_SHARED(so));
  ------------------
  |  |  132|     10|#define SET_IS_SHARED(so) 0
  ------------------
  562|     34|    return 0;
  563|     34|}
setobject.c:set_zero_table:
  197|     50|{
  198|       |#ifdef Py_GIL_DISABLED
  199|       |    for (size_t i = 0; i < size; i++) {
  200|       |        setentry *entry = &table[i];
  201|       |        FT_ATOMIC_STORE_SSIZE_RELAXED(entry->hash, 0);
  202|       |        FT_ATOMIC_STORE_PTR_RELEASE(entry->key, NULL);
  203|       |    }
  204|       |#else
  205|     50|    memset(table, 0, sizeof(setentry)*size);
  206|     50|#endif
  207|     50|}
setobject.c:set_insert_clean:
  385|    542|{
  386|    542|    setentry *entry;
  387|    542|    size_t perturb = hash;
  388|    542|    size_t i = (size_t)hash & mask;
  389|    542|    size_t j;
  390|       |
  391|    546|    while (1) {
  ------------------
  |  Branch (391:12): [True: 546, Folded]
  ------------------
  392|    546|        entry = &table[i];
  393|    546|        if (entry->key == NULL)
  ------------------
  |  Branch (393:13): [True: 511, False: 35]
  ------------------
  394|    511|            goto found_null;
  395|     35|        if (i + LINEAR_PROBES <= mask) {
  ------------------
  |  |  214|     35|#define LINEAR_PROBES 9
  ------------------
  |  Branch (395:13): [True: 31, False: 4]
  ------------------
  396|     34|            for (j = 0; j < LINEAR_PROBES; j++) {
  ------------------
  |  |  214|     34|#define LINEAR_PROBES 9
  ------------------
  |  Branch (396:25): [True: 34, False: 0]
  ------------------
  397|     34|                entry++;
  398|     34|                if (entry->key == NULL)
  ------------------
  |  Branch (398:21): [True: 31, False: 3]
  ------------------
  399|     31|                    goto found_null;
  400|     34|            }
  401|     31|        }
  402|      4|        perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  218|      4|#define PERTURB_SHIFT 5
  ------------------
  403|      4|        i = (i * 5 + 1 + perturb) & mask;
  404|      4|    }
  405|    542|  found_null:
  406|    542|    FT_ATOMIC_STORE_SSIZE_RELAXED(entry->hash, hash);
  ------------------
  |  |  194|    542|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  407|    542|    FT_ATOMIC_STORE_PTR_RELEASE(entry->key, key);
  ------------------
  |  |  164|    542|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  408|    542|}
setobject.c:free_entries:
  468|     10|{
  469|       |#ifdef Py_GIL_DISABLED
  470|       |    if (use_qsbr) {
  471|       |        _PyMem_FreeDelayed(entries, size * sizeof(setentry));
  472|       |        return;
  473|       |    }
  474|       |#endif
  475|     10|    PyMem_Free(entries);
  476|     10|}
setobject.c:setiter_dealloc:
 1041|     62|{
 1042|     62|    setiterobject *si = (setiterobject*)self;
 1043|       |    /* bpo-31095: UnTrack is needed before calling any callbacks */
 1044|     62|    _PyObject_GC_UNTRACK(si);
  ------------------
  |  |  515|     62|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1045|     62|    Py_XDECREF(si->si_set);
  ------------------
  |  |  524|     62|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1046|     62|    PyObject_GC_Del(si);
 1047|     62|}
setobject.c:setiter_iternext:
 1096|    176|{
 1097|    176|    setiterobject *si = (setiterobject*)self;
 1098|    176|    PyObject *key = NULL;
 1099|    176|    Py_ssize_t i, mask;
 1100|    176|    setentry *entry;
 1101|    176|    PySetObject *so = si->si_set;
 1102|       |
 1103|    176|    if (so == NULL)
  ------------------
  |  Branch (1103:9): [True: 0, False: 176]
  ------------------
 1104|      0|        return NULL;
 1105|    176|    assert (PyAnySet_Check(so));
  ------------------
  |  Branch (1105:5): [True: 0, False: 176]
  |  Branch (1105:5): [True: 176, False: 0]
  |  Branch (1105:5): [True: 0, False: 0]
  |  Branch (1105:5): [True: 0, False: 0]
  ------------------
 1106|       |
 1107|    176|    Py_ssize_t so_used = FT_ATOMIC_LOAD_SSIZE_RELAXED(so->used);
  ------------------
  |  |  149|    176|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 1108|    176|    Py_ssize_t si_used = FT_ATOMIC_LOAD_SSIZE_RELAXED(si->si_used);
  ------------------
  |  |  149|    176|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 1109|    176|    if (si_used != so_used) {
  ------------------
  |  Branch (1109:9): [True: 0, False: 176]
  ------------------
 1110|      0|        PyErr_SetString(PyExc_RuntimeError,
 1111|      0|                        "Set changed size during iteration");
 1112|      0|        si->si_used = -1; /* Make this state sticky */
 1113|      0|        return NULL;
 1114|      0|    }
 1115|       |
 1116|    176|    Py_BEGIN_CRITICAL_SECTION(so);
  ------------------
  |  |   51|    176|    {
  ------------------
 1117|    176|    i = si->si_pos;
 1118|    176|    assert(i>=0);
  ------------------
  |  Branch (1118:5): [True: 176, False: 0]
  ------------------
 1119|    176|    entry = so->table;
 1120|    176|    mask = so->mask;
 1121|    636|    while (i <= mask && (entry[i].key == NULL || entry[i].key == dummy)) {
  ------------------
  |  |   64|    116|#define dummy (&_dummy_struct)
  ------------------
  |  Branch (1121:12): [True: 576, False: 60]
  |  Branch (1121:26): [True: 460, False: 116]
  |  Branch (1121:50): [True: 0, False: 116]
  ------------------
 1122|    460|        i++;
 1123|    460|    }
 1124|    176|    if (i <= mask) {
  ------------------
  |  Branch (1124:9): [True: 116, False: 60]
  ------------------
 1125|    116|        key = Py_NewRef(entry[i].key);
  ------------------
  |  |  550|    116|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1126|    116|    }
 1127|    176|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    176|    }
  ------------------
 1128|    176|    si->si_pos = i+1;
 1129|    176|    if (key == NULL) {
  ------------------
  |  Branch (1129:9): [True: 60, False: 116]
  ------------------
 1130|     60|        si->si_set = NULL;
 1131|     60|        Py_DECREF(so);
  ------------------
  |  |  430|     60|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1132|     60|        return NULL;
 1133|     60|    }
 1134|    116|    si->len--;
 1135|    116|    return key;
 1136|    176|}
setobject.c:set_contains_entry:
  567|    148|{
  568|       |#ifdef Py_GIL_DISABLED
  569|       |    return set_lookkey_threadsafe(so, key, hash);
  570|       |#else
  571|    148|    setentry *entry; // unused
  572|    148|    return set_lookkey(so, key, hash, &entry);
  573|    148|#endif
  574|    148|}
setobject.c:set_lookkey:
  415|    148|{
  416|    148|    int status;
  417|    148|    if (PyFrozenSet_CheckExact(so)) {
  ------------------
  |  |   23|    148|#define PyFrozenSet_CheckExact(ob) Py_IS_TYPE((ob), &PyFrozenSet_Type)
  |  |  ------------------
  |  |  |  |  215|    148|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 4, False: 144]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  418|      4|        status = set_do_lookup(so, so->table, so->mask, key, hash, epp,
  419|      4|                               set_compare_frozenset);
  420|      4|    }
  421|    144|    else {
  422|    144|        Py_BEGIN_CRITICAL_SECTION(so);
  ------------------
  |  |   51|    144|    {
  ------------------
  423|    144|        do {
  424|    144|            status = set_do_lookup(so, so->table, so->mask, key, hash, epp,
  425|    144|                                   set_compare_entry_lock_held);
  426|    144|        } while (status == SET_LOOKKEY_CHANGED);
  ------------------
  |  |   69|    144|#define SET_LOOKKEY_CHANGED (-2)
  ------------------
  |  Branch (426:18): [True: 0, False: 144]
  ------------------
  427|    144|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    144|    }
  ------------------
  428|    144|    }
  429|    148|    assert(status == SET_LOOKKEY_FOUND ||
  ------------------
  |  Branch (429:5): [True: 10, False: 138]
  |  Branch (429:5): [True: 138, False: 0]
  |  Branch (429:5): [True: 0, False: 0]
  ------------------
  430|    148|           status == SET_LOOKKEY_NO_MATCH ||
  431|    148|           status == SET_LOOKKEY_ERROR);
  432|    148|    return status;
  433|    148|}
setobject.c:set_do_lookup:
  223|    148|{
  224|    148|    setentry *entry;
  225|    148|    size_t perturb = hash;
  226|    148|    size_t i = (size_t)hash & mask; /* Unsigned for defined overflow behavior */
  227|    148|    int probes;
  228|    148|    int status;
  229|       |
  230|    197|    while (1) {
  ------------------
  |  Branch (230:12): [True: 197, Folded]
  ------------------
  231|    197|        entry = &table[i];
  232|    197|        probes = (i + LINEAR_PROBES <= mask) ? LINEAR_PROBES: 0;
  ------------------
  |  |  214|    197|#define LINEAR_PROBES 9
  ------------------
                      probes = (i + LINEAR_PROBES <= mask) ? LINEAR_PROBES: 0;
  ------------------
  |  |  214|     74|#define LINEAR_PROBES 9
  ------------------
  |  Branch (232:18): [True: 74, False: 123]
  ------------------
  233|    296|        do {
  234|    296|            status = compare_entry(so, table, entry, key, hash);
  235|    296|            if (status != SET_LOOKKEY_NO_MATCH) {
  ------------------
  |  |   67|    296|#define SET_LOOKKEY_NO_MATCH 0
  ------------------
  |  Branch (235:17): [True: 148, False: 148]
  ------------------
  236|    148|                if (status == SET_LOOKKEY_EMPTY) {
  ------------------
  |  |   70|    148|#define SET_LOOKKEY_EMPTY (-3)
  ------------------
  |  Branch (236:21): [True: 138, False: 10]
  ------------------
  237|    138|                    return SET_LOOKKEY_NO_MATCH;
  ------------------
  |  |   67|    138|#define SET_LOOKKEY_NO_MATCH 0
  ------------------
  238|    138|                }
  239|     10|                *epp = entry;
  240|     10|                return status;
  241|    148|            }
  242|    148|            entry++;
  243|    148|        } while (probes--);
  ------------------
  |  Branch (243:18): [True: 99, False: 49]
  ------------------
  244|     49|        perturb >>= PERTURB_SHIFT;
  ------------------
  |  |  218|     49|#define PERTURB_SHIFT 5
  ------------------
  245|     49|        i = (i * 5 + 1 + perturb) & mask;
  246|     49|    }
  247|      0|    Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  248|    148|}
setobject.c:set_compare_frozenset:
  174|      4|{
  175|      4|    assert(PyFrozenSet_Check(so));
  ------------------
  |  Branch (175:5): [True: 4, False: 0]
  |  Branch (175:5): [True: 0, False: 0]
  ------------------
  176|      4|    PyObject *startkey = ep->key;
  177|      4|    if (startkey == NULL) {
  ------------------
  |  Branch (177:9): [True: 4, False: 0]
  ------------------
  178|      4|        return SET_LOOKKEY_EMPTY;
  ------------------
  |  |   70|      4|#define SET_LOOKKEY_EMPTY (-3)
  ------------------
  179|      4|    }
  180|      0|    if (startkey == key) {
  ------------------
  |  Branch (180:9): [True: 0, False: 0]
  ------------------
  181|      0|        return SET_LOOKKEY_FOUND;
  ------------------
  |  |   66|      0|#define SET_LOOKKEY_FOUND 1
  ------------------
  182|      0|    }
  183|      0|    Py_ssize_t ep_hash = ep->hash;
  184|      0|    if (ep_hash == hash) {
  ------------------
  |  Branch (184:9): [True: 0, False: 0]
  ------------------
  185|      0|        int cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  186|      0|        if (cmp < 0) {
  ------------------
  |  Branch (186:13): [True: 0, False: 0]
  ------------------
  187|      0|            return SET_LOOKKEY_ERROR;
  ------------------
  |  |   68|      0|#define SET_LOOKKEY_ERROR (-1)
  ------------------
  188|      0|        }
  189|      0|        assert(cmp == SET_LOOKKEY_FOUND || cmp == SET_LOOKKEY_NO_MATCH);
  ------------------
  |  Branch (189:9): [True: 0, False: 0]
  |  Branch (189:9): [True: 0, False: 0]
  ------------------
  190|      0|        return cmp;
  191|      0|    }
  192|      0|    return SET_LOOKKEY_NO_MATCH;
  ------------------
  |  |   67|      0|#define SET_LOOKKEY_NO_MATCH 0
  ------------------
  193|      0|}
setobject.c:set_compare_entry_lock_held:
  140|    292|{
  141|    292|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(so);
  142|    292|    if (entry->hash == 0 && entry->key == NULL)
  ------------------
  |  Branch (142:9): [True: 134, False: 158]
  |  Branch (142:29): [True: 134, False: 0]
  ------------------
  143|    134|        return SET_LOOKKEY_EMPTY;
  ------------------
  |  |   70|    134|#define SET_LOOKKEY_EMPTY (-3)
  ------------------
  144|    158|    if (entry->hash == hash) {
  ------------------
  |  Branch (144:9): [True: 10, False: 148]
  ------------------
  145|     10|        PyObject *startkey = entry->key;
  146|     10|        assert(startkey != dummy);
  ------------------
  |  Branch (146:9): [True: 10, False: 0]
  ------------------
  147|     10|        if (startkey == key)
  ------------------
  |  Branch (147:13): [True: 8, False: 2]
  ------------------
  148|      8|            return SET_LOOKKEY_FOUND;
  ------------------
  |  |   66|      8|#define SET_LOOKKEY_FOUND 1
  ------------------
  149|      2|        if (PyUnicode_CheckExact(startkey)
  ------------------
  |  |  104|      2|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  150|      2|            && PyUnicode_CheckExact(key)
  ------------------
  |  |  104|      2|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  151|      2|            && unicode_eq(startkey, key))
  ------------------
  |  Branch (151:16): [True: 2, False: 0]
  ------------------
  152|      2|            return SET_LOOKKEY_FOUND;
  ------------------
  |  |   66|      2|#define SET_LOOKKEY_FOUND 1
  ------------------
  153|      0|        table = so->table;
  154|      0|        Py_INCREF(startkey);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  155|      0|        int cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  156|      0|        Py_DECREF(startkey);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  157|      0|        if (cmp < 0)
  ------------------
  |  Branch (157:13): [True: 0, False: 0]
  ------------------
  158|      0|            return SET_LOOKKEY_ERROR;
  ------------------
  |  |   68|      0|#define SET_LOOKKEY_ERROR (-1)
  ------------------
  159|      0|        if (table != so->table || entry->key != startkey)
  ------------------
  |  Branch (159:13): [True: 0, False: 0]
  |  Branch (159:35): [True: 0, False: 0]
  ------------------
  160|      0|            return SET_LOOKKEY_CHANGED;
  ------------------
  |  |   69|      0|#define SET_LOOKKEY_CHANGED (-2)
  ------------------
  161|      0|        if (cmp > 0)
  ------------------
  |  Branch (161:13): [True: 0, False: 0]
  ------------------
  162|      0|            return SET_LOOKKEY_FOUND;
  ------------------
  |  |   66|      0|#define SET_LOOKKEY_FOUND 1
  ------------------
  163|      0|    }
  164|    148|    return SET_LOOKKEY_NO_MATCH;
  ------------------
  |  |   67|    148|#define SET_LOOKKEY_NO_MATCH 0
  ------------------
  165|    158|}
setobject.c:set_dealloc:
  735|     32|{
  736|     32|    PySetObject *so = _PySet_CAST(self);
  ------------------
  |  |   62|     32|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (736:23): [True: 16, False: 16]
  |  Branch (736:23): [True: 16, False: 0]
  |  Branch (736:23): [True: 0, False: 0]
  |  Branch (736:23): [True: 0, False: 0]
  ------------------
  737|      0|    setentry *entry;
  738|     32|    Py_ssize_t used = so->used;
  739|     32|    Py_ssize_t oldsize = (size_t)so->mask + 1;
  740|       |
  741|       |    /* bpo-31095: UnTrack is needed before calling any callbacks */
  742|     32|    PyObject_GC_UnTrack(so);
  743|     32|    FT_CLEAR_WEAKREFS(self, so->weakreflist);
  ------------------
  |  |   47|     32|    do {                                            \
  |  |   48|     32|        assert(Py_REFCNT(obj) == 0);                \
  |  |   49|     32|        if (weakref_list != NULL) {                 \
  |  |  ------------------
  |  |  |  Branch (49:13): [True: 0, False: 32]
  |  |  ------------------
  |  |   50|      0|            PyObject_ClearWeakRefs(obj);            \
  |  |   51|      0|        }                                           \
  |  |   52|     32|    } while (0)
  |  |  ------------------
  |  |  |  Branch (52:14): [Folded, False: 32]
  |  |  ------------------
  ------------------
  |  Branch (743:5): [True: 32, False: 0]
  ------------------
  744|       |
  745|    153|    for (entry = so->table; used > 0; entry++) {
  ------------------
  |  Branch (745:29): [True: 121, False: 32]
  ------------------
  746|    121|        if (entry->key && entry->key != dummy) {
  ------------------
  |  |   64|     48|#define dummy (&_dummy_struct)
  ------------------
  |  Branch (746:13): [True: 48, False: 73]
  |  Branch (746:27): [True: 48, False: 0]
  ------------------
  747|     48|                used--;
  748|     48|                Py_DECREF(entry->key);
  ------------------
  |  |  430|     48|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  749|     48|        }
  750|    121|    }
  751|     32|    if (so->table != so->smalltable)
  ------------------
  |  Branch (751:9): [True: 0, False: 32]
  ------------------
  752|      0|        free_entries(so->table, oldsize, SET_IS_SHARED(so));
  ------------------
  |  |  132|      0|#define SET_IS_SHARED(so) 0
  ------------------
  753|     32|    Py_TYPE(so)->tp_free(so);
  ------------------
  |  |  213|     32|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  754|     32|}
setobject.c:set_merge_lock_held:
  830|     16|{
  831|     16|    PySetObject *other;
  832|     16|    PyObject *key;
  833|     16|    Py_ssize_t i;
  834|     16|    setentry *so_entry;
  835|     16|    setentry *other_entry;
  836|       |
  837|     16|    assert (PyAnySet_Check(so));
  ------------------
  |  Branch (837:5): [True: 0, False: 16]
  |  Branch (837:5): [True: 16, False: 0]
  |  Branch (837:5): [True: 0, False: 0]
  |  Branch (837:5): [True: 0, False: 0]
  ------------------
  838|     16|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(so);
  839|     16|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(otherset);
  840|       |
  841|     16|    other = _PySet_CAST(otherset);
  ------------------
  |  |   62|     16|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (841:13): [True: 16, False: 0]
  |  Branch (841:13): [True: 0, False: 0]
  |  Branch (841:13): [True: 0, False: 0]
  |  Branch (841:13): [True: 0, False: 0]
  ------------------
  842|     16|    if (other == so || other->used == 0)
  ------------------
  |  Branch (842:9): [True: 0, False: 16]
  |  Branch (842:24): [True: 0, False: 16]
  ------------------
  843|       |        /* a.update(a) or a.update(set()); nothing to do */
  844|      0|        return 0;
  845|       |    /* Do one big resize at the start, rather than
  846|       |     * incrementally resizing as we insert new keys.  Expect
  847|       |     * that there will be no (or few) overlapping keys.
  848|       |     */
  849|     16|    if ((so->fill + other->used)*5 >= so->mask*3) {
  ------------------
  |  Branch (849:9): [True: 0, False: 16]
  ------------------
  850|      0|        if (set_table_resize(so, (so->used + other->used)*2) != 0)
  ------------------
  |  Branch (850:13): [True: 0, False: 0]
  ------------------
  851|      0|            return -1;
  852|      0|    }
  853|     16|    so_entry = so->table;
  854|     16|    other_entry = other->table;
  855|       |
  856|       |    /* If our table is empty, and both tables have the same size, and
  857|       |       there are no dummies to eliminate, then just copy the pointers. */
  858|     16|    if (so->fill == 0 && so->mask == other->mask && other->fill == other->used) {
  ------------------
  |  Branch (858:9): [True: 16, False: 0]
  |  Branch (858:26): [True: 16, False: 0]
  |  Branch (858:53): [True: 16, False: 0]
  ------------------
  859|    144|        for (i = 0; i <= other->mask; i++, so_entry++, other_entry++) {
  ------------------
  |  Branch (859:21): [True: 128, False: 16]
  ------------------
  860|    128|            key = other_entry->key;
  861|    128|            if (key != NULL) {
  ------------------
  |  Branch (861:17): [True: 30, False: 98]
  ------------------
  862|     30|                assert(so_entry->key == NULL);
  ------------------
  |  Branch (862:17): [True: 30, False: 0]
  ------------------
  863|     30|                FT_ATOMIC_STORE_SSIZE_RELAXED(so_entry->hash, other_entry->hash);
  ------------------
  |  |  194|     30|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  864|     30|                FT_ATOMIC_STORE_PTR_RELEASE(so_entry->key, Py_NewRef(key));
  ------------------
  |  |  164|     30|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  865|     30|            }
  866|    128|        }
  867|     16|        so->fill = other->fill;
  868|     16|        FT_ATOMIC_STORE_SSIZE_RELAXED(so->used, other->used);
  ------------------
  |  |  194|     16|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  869|     16|        return 0;
  870|     16|    }
  871|       |
  872|       |    /* If our table is empty, we can use set_insert_clean() */
  873|      0|    if (so->fill == 0) {
  ------------------
  |  Branch (873:9): [True: 0, False: 0]
  ------------------
  874|      0|        setentry *newtable = so->table;
  875|      0|        size_t newmask = (size_t)so->mask;
  876|      0|        so->fill = other->used;
  877|      0|        FT_ATOMIC_STORE_SSIZE_RELAXED(so->used, other->used);
  ------------------
  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  878|      0|        for (i = other->mask + 1; i > 0 ; i--, other_entry++) {
  ------------------
  |  Branch (878:35): [True: 0, False: 0]
  ------------------
  879|      0|            key = other_entry->key;
  880|      0|            if (key != NULL && key != dummy) {
  ------------------
  |  |   64|      0|#define dummy (&_dummy_struct)
  ------------------
  |  Branch (880:17): [True: 0, False: 0]
  |  Branch (880:32): [True: 0, False: 0]
  ------------------
  881|      0|                set_insert_clean(newtable, newmask, Py_NewRef(key),
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  882|      0|                                 other_entry->hash);
  883|      0|            }
  884|      0|        }
  885|      0|        return 0;
  886|      0|    }
  887|       |
  888|       |    /* We can't assure there are no duplicates, so do normal insertions */
  889|      0|    for (i = 0; i <= other->mask; i++) {
  ------------------
  |  Branch (889:17): [True: 0, False: 0]
  ------------------
  890|      0|        other_entry = &other->table[i];
  891|      0|        key = other_entry->key;
  892|      0|        if (key != NULL && key != dummy) {
  ------------------
  |  |   64|      0|#define dummy (&_dummy_struct)
  ------------------
  |  Branch (892:13): [True: 0, False: 0]
  |  Branch (892:28): [True: 0, False: 0]
  ------------------
  893|      0|            if (set_add_entry(so, key, other_entry->hash))
  ------------------
  |  Branch (893:17): [True: 0, False: 0]
  ------------------
  894|      0|                return -1;
  895|      0|        }
  896|      0|    }
  897|      0|    return 0;
  898|      0|}
setobject.c:set_add_entry:
  339|  1.45k|{
  340|  1.45k|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(so);
  341|       |
  342|  1.45k|    return set_add_entry_takeref(so, Py_NewRef(key), hash);
  ------------------
  |  |  550|  1.45k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.45k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.45k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  343|  1.45k|}
setobject.c:set_update_iterable_lock_held:
 1223|      8|{
 1224|      8|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(so);
 1225|       |
 1226|      8|    PyObject *it = PyObject_GetIter(other);
 1227|      8|    if (it == NULL) {
  ------------------
  |  Branch (1227:9): [True: 0, False: 8]
  ------------------
 1228|      0|        return -1;
 1229|      0|    }
 1230|       |
 1231|      8|    PyObject *key;
 1232|  1.14k|    while ((key = PyIter_Next(it)) != NULL) {
  ------------------
  |  Branch (1232:12): [True: 1.13k, False: 8]
  ------------------
 1233|  1.13k|        if (set_add_key(so, key)) {
  ------------------
  |  Branch (1233:13): [True: 0, False: 1.13k]
  ------------------
 1234|      0|            Py_DECREF(it);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1235|      0|            Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1236|      0|            return -1;
 1237|      0|        }
 1238|  1.13k|        Py_DECREF(key);
  ------------------
  |  |  430|  1.13k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.13k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.13k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1239|  1.13k|    }
 1240|      8|    Py_DECREF(it);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1241|      8|    if (PyErr_Occurred())
  ------------------
  |  Branch (1241:9): [True: 0, False: 8]
  ------------------
 1242|      0|        return -1;
 1243|      8|    return 0;
 1244|      8|}
setobject.c:set_update_local:
 1261|     24|{
 1262|     24|    assert(Py_REFCNT(so) == 1);
  ------------------
  |  Branch (1262:5): [True: 24, False: 0]
  ------------------
 1263|     24|    if (PyAnySet_Check(other)) {
  ------------------
  |  |   31|     24|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|     48|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 16, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|     32|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   32|     24|      PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  213|      8|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (32:7): [True: 0, False: 8]
  |  |  ------------------
  |  |   33|     24|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      8|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (33:7): [True: 0, False: 8]
  |  |  ------------------
  ------------------
 1264|     16|        int rv;
 1265|     16|        Py_BEGIN_CRITICAL_SECTION(other);
  ------------------
  |  |   51|     16|    {
  ------------------
 1266|     16|        rv = set_merge_lock_held(so, other);
 1267|     16|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     16|    }
  ------------------
 1268|     16|        return rv;
 1269|     16|    }
 1270|      8|    else if (PyDict_CheckExact(other)) {
  ------------------
  |  |   19|      8|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1271|      0|        int rv;
 1272|      0|        Py_BEGIN_CRITICAL_SECTION(other);
  ------------------
  |  |   51|      0|    {
  ------------------
 1273|      0|        rv = set_update_dict_lock_held(so, other);
 1274|      0|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 1275|      0|        return rv;
 1276|      0|    }
 1277|      8|    else if (PyFrozenDict_CheckExact(other)) {
  ------------------
  |  |   38|      8|#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1278|      0|        return set_update_dict_lock_held(so, other);
 1279|      0|    }
 1280|      8|    return set_update_iterable_lock_held(so, other);
 1281|     24|}
setobject.c:set_contains:
 2524|     14|{
 2525|     14|    PySetObject *so = _PySet_CAST(self);
  ------------------
  |  |   62|     14|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (2525:23): [True: 10, False: 4]
  |  Branch (2525:23): [True: 4, False: 0]
  |  Branch (2525:23): [True: 0, False: 0]
  |  Branch (2525:23): [True: 0, False: 0]
  ------------------
 2526|      0|    return _PySet_Contains(so, key);
 2527|     14|}
setobject.c:set_traverse:
  938|      8|{
  939|      8|    PySetObject *so = _PySet_CAST(self);
  ------------------
  |  |   62|      8|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (939:23): [True: 8, False: 0]
  |  Branch (939:23): [True: 0, False: 0]
  |  Branch (939:23): [True: 0, False: 0]
  |  Branch (939:23): [True: 0, False: 0]
  ------------------
  940|      0|    Py_ssize_t pos = 0;
  941|      8|    setentry *entry;
  942|       |
  943|     12|    while (set_next(so, &pos, &entry))
  ------------------
  |  Branch (943:12): [True: 4, False: 8]
  ------------------
  944|      4|        Py_VISIT(entry->key);
  ------------------
  |  |  194|     12|    do {                                                                \
  |  |  195|      4|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  196|      4|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      4|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 4]
  |  |  ------------------
  |  |  198|      4|                return vret;                                            \
  |  |  199|      4|        }                                                               \
  |  |  200|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  945|      8|    return 0;
  946|      8|}
setobject.c:set_clear_internal:
  647|     16|{
  648|     16|    PySetObject *so = _PySet_CAST(self);
  ------------------
  |  |   62|     16|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (648:23): [True: 16, False: 0]
  |  Branch (648:23): [True: 0, False: 0]
  |  Branch (648:23): [True: 0, False: 0]
  |  Branch (648:23): [True: 0, False: 0]
  ------------------
  649|      0|    setentry *entry;
  650|     16|    setentry *table = so->table;
  651|     16|    Py_ssize_t fill = so->fill;
  652|     16|    Py_ssize_t used = so->used;
  653|     16|    Py_ssize_t oldsize = (size_t)so->mask + 1;
  654|     16|    int table_is_malloced = table != so->smalltable;
  655|     16|    setentry small_copy[PySet_MINSIZE];
  656|       |
  657|     16|    assert (PyAnySet_Check(so));
  ------------------
  |  Branch (657:5): [True: 16, False: 0]
  |  Branch (657:5): [True: 0, False: 0]
  |  Branch (657:5): [True: 0, False: 0]
  |  Branch (657:5): [True: 0, False: 0]
  ------------------
  658|     16|    assert(table != NULL);
  ------------------
  |  Branch (658:5): [True: 16, False: 0]
  ------------------
  659|       |
  660|       |    /* This is delicate.  During the process of clearing the set,
  661|       |     * decrefs can cause the set to mutate.  To avoid fatal confusion
  662|       |     * (voice of experience), we have to make the set empty before
  663|       |     * clearing the slots, and never refer to anything via so->ref while
  664|       |     * clearing.
  665|       |     */
  666|     16|    if (table_is_malloced)
  ------------------
  |  Branch (666:9): [True: 0, False: 16]
  ------------------
  667|      0|        set_empty_to_minsize(so);
  668|       |
  669|     16|    else if (fill > 0) {
  ------------------
  |  Branch (669:14): [True: 16, False: 0]
  ------------------
  670|       |        /* It's a small table with something that needs to be cleared.
  671|       |         * Afraid the only safe way is to copy the set entries into
  672|       |         * another small table first.
  673|       |         */
  674|     16|        memcpy(small_copy, table, sizeof(small_copy));
  675|     16|        table = small_copy;
  676|     16|        set_empty_to_minsize(so);
  677|     16|    }
  678|       |    /* else it's a small table that's already empty */
  679|       |
  680|       |    /* Now we can finally clear things.  If C had refcounts, we could
  681|       |     * assert that the refcount on table is 1 now, i.e. that this function
  682|       |     * has unique access to it, so decref side-effects can't alter it.
  683|       |     */
  684|     94|    for (entry = table; used > 0; entry++) {
  ------------------
  |  Branch (684:25): [True: 78, False: 16]
  ------------------
  685|     78|        if (entry->key && entry->key != dummy) {
  ------------------
  |  |   64|     16|#define dummy (&_dummy_struct)
  ------------------
  |  Branch (685:13): [True: 16, False: 62]
  |  Branch (685:27): [True: 16, False: 0]
  ------------------
  686|     16|            used--;
  687|     16|            Py_DECREF(entry->key);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  688|     16|        }
  689|     78|    }
  690|       |
  691|     16|    if (table_is_malloced)
  ------------------
  |  Branch (691:9): [True: 0, False: 16]
  ------------------
  692|      0|        free_entries(table, oldsize, SET_IS_SHARED(so));
  ------------------
  |  |  132|      0|#define SET_IS_SHARED(so) 0
  ------------------
  693|     16|    return 0;
  694|     16|}
setobject.c:set_empty_to_minsize:
  635|     16|{
  636|     16|    FT_ATOMIC_STORE_PTR_RELEASE(so->table, NULL);
  ------------------
  |  |  164|     16|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  637|     16|    set_zero_table(so->smalltable, PySet_MINSIZE);
  ------------------
  |  |   18|     16|#define PySet_MINSIZE 8
  ------------------
  638|     16|    so->fill = 0;
  639|     16|    FT_ATOMIC_STORE_SSIZE_RELAXED(so->used, 0);
  ------------------
  |  |  194|     16|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  640|     16|    FT_ATOMIC_STORE_SSIZE_RELEASE(so->mask, PySet_MINSIZE - 1);
  ------------------
  |  |  169|     16|#define FT_ATOMIC_STORE_SSIZE_RELEASE(value, new_value) value = new_value
  ------------------
  641|     16|    FT_ATOMIC_STORE_SSIZE_RELAXED(so->hash, -1);
  ------------------
  |  |  194|     16|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  642|     16|    FT_ATOMIC_STORE_PTR_RELEASE(so->table, so->smalltable);
  ------------------
  |  |  164|     16|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  643|     16|}
setobject.c:set_richcompare:
 2437|      4|{
 2438|      4|    PySetObject *v = _PySet_CAST(self);
  ------------------
  |  |   62|      4|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (2438:22): [True: 4, False: 0]
  |  Branch (2438:22): [True: 0, False: 0]
  |  Branch (2438:22): [True: 0, False: 0]
  |  Branch (2438:22): [True: 0, False: 0]
  ------------------
 2439|      0|    PyObject *r1;
 2440|      4|    int r2;
 2441|       |
 2442|      4|    if(!PyAnySet_Check(w))
  ------------------
  |  |   31|      4|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   32|      4|      PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (32:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   33|      4|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (33:7): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2443|      0|        Py_RETURN_NOTIMPLEMENTED;
  ------------------
  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  ------------------
  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  ------------------
  ------------------
 2444|       |
 2445|      4|    switch (op) {
  ------------------
  |  Branch (2445:13): [True: 4, False: 0]
  ------------------
 2446|      0|    case Py_EQ:
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
  |  Branch (2446:5): [True: 0, False: 4]
  ------------------
 2447|      0|        if (PySet_GET_SIZE(v) != PySet_GET_SIZE(w))
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (PySet_GET_SIZE(v) != PySet_GET_SIZE(w))
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2447:13): [True: 0, False: 0]
  ------------------
 2448|      0|            Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2449|      0|        Py_hash_t v_hash = FT_ATOMIC_LOAD_SSIZE_RELAXED(v->hash);
  ------------------
  |  |  149|      0|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 2450|      0|        Py_hash_t w_hash = FT_ATOMIC_LOAD_SSIZE_RELAXED(((PySetObject *)w)->hash);
  ------------------
  |  |  149|      0|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 2451|      0|        if (v_hash != -1 && w_hash != -1 && v_hash != w_hash)
  ------------------
  |  Branch (2451:13): [True: 0, False: 0]
  |  Branch (2451:29): [True: 0, False: 0]
  |  Branch (2451:45): [True: 0, False: 0]
  ------------------
 2452|      0|            Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2453|      0|        return set_issubset((PyObject*)v, w);
 2454|      0|    case Py_NE:
  ------------------
  |  |  655|      0|#define Py_NE 3
  ------------------
  |  Branch (2454:5): [True: 0, False: 4]
  ------------------
 2455|      0|        r1 = set_richcompare((PyObject*)v, w, Py_EQ);
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
 2456|      0|        if (r1 == NULL)
  ------------------
  |  Branch (2456:13): [True: 0, False: 0]
  ------------------
 2457|      0|            return NULL;
 2458|      0|        r2 = PyObject_IsTrue(r1);
 2459|      0|        Py_DECREF(r1);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2460|      0|        if (r2 < 0)
  ------------------
  |  Branch (2460:13): [True: 0, False: 0]
  ------------------
 2461|      0|            return NULL;
 2462|      0|        return PyBool_FromLong(!r2);
 2463|      4|    case Py_LE:
  ------------------
  |  |  653|      4|#define Py_LE 1
  ------------------
  |  Branch (2463:5): [True: 4, False: 0]
  ------------------
 2464|      4|        return set_issubset((PyObject*)v, w);
 2465|      0|    case Py_GE:
  ------------------
  |  |  657|      0|#define Py_GE 5
  ------------------
  |  Branch (2465:5): [True: 0, False: 4]
  ------------------
 2466|      0|        return set_issuperset((PyObject*)v, w);
 2467|      0|    case Py_LT:
  ------------------
  |  |  652|      0|#define Py_LT 0
  ------------------
  |  Branch (2467:5): [True: 0, False: 4]
  ------------------
 2468|      0|        if (PySet_GET_SIZE(v) >= PySet_GET_SIZE(w))
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (PySet_GET_SIZE(v) >= PySet_GET_SIZE(w))
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2468:13): [True: 0, False: 0]
  ------------------
 2469|      0|            Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2470|      0|        return set_issubset((PyObject*)v, w);
 2471|      0|    case Py_GT:
  ------------------
  |  |  656|      0|#define Py_GT 4
  ------------------
  |  Branch (2471:5): [True: 0, False: 4]
  ------------------
 2472|      0|        if (PySet_GET_SIZE(v) <= PySet_GET_SIZE(w))
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (PySet_GET_SIZE(v) <= PySet_GET_SIZE(w))
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2472:13): [True: 0, False: 0]
  ------------------
 2473|      0|            Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2474|      0|        return set_issuperset((PyObject*)v, w);
 2475|      4|    }
 2476|      0|    Py_RETURN_NOTIMPLEMENTED;
  ------------------
  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  ------------------
  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  ------------------
  ------------------
 2477|      4|}
setobject.c:set_issubset_impl:
 2362|      4|{
 2363|      4|    setentry *entry;
 2364|      4|    Py_ssize_t pos = 0;
 2365|      4|    int rv;
 2366|       |
 2367|      4|    if (!PyAnySet_Check(other)) {
  ------------------
  |  |   31|      4|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   32|      4|      PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (32:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   33|      4|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (33:7): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2368|      0|        PyObject *tmp = set_intersection(so, other);
 2369|      0|        if (tmp == NULL) {
  ------------------
  |  Branch (2369:13): [True: 0, False: 0]
  ------------------
 2370|      0|            return NULL;
 2371|      0|        }
 2372|      0|        int result = (PySet_GET_SIZE(tmp) == PySet_GET_SIZE(so));
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      int result = (PySet_GET_SIZE(tmp) == PySet_GET_SIZE(so));
  ------------------
  |  |   71|      0|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2373|      0|        Py_DECREF(tmp);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2374|      0|        return PyBool_FromLong(result);
 2375|      0|    }
 2376|      4|    if (PySet_GET_SIZE(so) > PySet_GET_SIZE(other))
  ------------------
  |  |   71|      4|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PySet_GET_SIZE(so) > PySet_GET_SIZE(other))
  ------------------
  |  |   71|      4|#define PySet_GET_SIZE(so) PySet_GET_SIZE(_PyObject_CAST(so))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2376:9): [True: 0, False: 4]
  ------------------
 2377|      0|        Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2378|       |
 2379|     12|    while (set_next(so, &pos, &entry)) {
  ------------------
  |  Branch (2379:12): [True: 8, False: 4]
  ------------------
 2380|      8|        PyObject *key = entry->key;
 2381|      8|        Py_INCREF(key);
  ------------------
  |  |  310|      8|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2382|      8|        rv = set_contains_entry((PySetObject *)other, key, entry->hash);
 2383|      8|        Py_DECREF(key);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2384|      8|        if (rv < 0) {
  ------------------
  |  Branch (2384:13): [True: 0, False: 8]
  ------------------
 2385|      0|            return NULL;
 2386|      0|        }
 2387|      8|        if (!rv) {
  ------------------
  |  Branch (2387:13): [True: 0, False: 8]
  ------------------
 2388|      0|            Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2389|      0|        }
 2390|      8|    }
 2391|      4|    Py_RETURN_TRUE;
  ------------------
  |  |   44|      4|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      4|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2392|      4|}
setobject.c:set_iter:
 1173|     62|{
 1174|     62|    Py_ssize_t size = set_len(so);
 1175|     62|    setiterobject *si = PyObject_GC_New(setiterobject, &PySetIter_Type);
  ------------------
  |  |  181|     62|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1176|     62|    if (si == NULL)
  ------------------
  |  Branch (1176:9): [True: 0, False: 62]
  ------------------
 1177|      0|        return NULL;
 1178|     62|    si->si_set = (PySetObject*)Py_NewRef(so);
  ------------------
  |  |  550|     62|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1179|     62|    si->si_used = size;
 1180|     62|    si->si_pos = 0;
 1181|     62|    si->len = size;
 1182|     62|    _PyObject_GC_TRACK(si);
  ------------------
  |  |  513|     62|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1183|     62|    return (PyObject *)si;
 1184|     62|}
setobject.c:set_add_impl:
 2494|     94|{
 2495|     94|    if (set_add_key(so, key))
  ------------------
  |  Branch (2495:9): [True: 0, False: 94]
  ------------------
 2496|      0|        return NULL;
 2497|     94|    Py_RETURN_NONE;
  ------------------
  |  |  628|     94|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     94|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 2498|     94|}
setobject.c:set_vectorcall:
 2740|     34|{
 2741|     34|    assert(PyType_Check(type));
  ------------------
  |  Branch (2741:5): [True: 34, False: 0]
  ------------------
 2742|       |
 2743|     34|    if (!_PyArg_NoKwnames("set", kwnames)) {
  ------------------
  |  |   15|     34|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 34, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2744|      0|        return NULL;
 2745|      0|    }
 2746|       |
 2747|     34|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|     34|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
 2748|     34|    if (!_PyArg_CheckPositional("set", nargs, 0, 1)) {
  ------------------
  |  |   31|     34|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 34, False: 0]
  |  |  |  Branch (31:27): [True: 34, False: 0]
  |  |  ------------------
  |  |   32|     34|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2749|      0|        return NULL;
 2750|      0|    }
 2751|       |
 2752|     34|    if (nargs) {
  ------------------
  |  Branch (2752:9): [True: 6, False: 28]
  ------------------
 2753|      6|        return make_new_set(_PyType_CAST(type), args[0]);
  ------------------
  |  |  770|      6|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (2753:29): [True: 6, False: 0]
  ------------------
 2754|      6|    }
 2755|       |
 2756|     28|    return make_new_set(_PyType_CAST(type), NULL);
  ------------------
  |  |  770|     28|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (2756:25): [True: 28, False: 0]
  ------------------
 2757|     28|}
setobject.c:make_new_frozenset:
 1410|      2|{
 1411|      2|    if (type != &PyFrozenSet_Type) {
  ------------------
  |  Branch (1411:9): [True: 0, False: 2]
  ------------------
 1412|      0|        return make_new_set(type, iterable);
 1413|      0|    }
 1414|       |
 1415|      2|    if (iterable != NULL && PyFrozenSet_CheckExact(iterable)) {
  ------------------
  |  |   23|      2|#define PyFrozenSet_CheckExact(ob) Py_IS_TYPE((ob), &PyFrozenSet_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1415:9): [True: 2, False: 0]
  ------------------
 1416|       |        /* frozenset(f) is idempotent */
 1417|      0|        return Py_NewRef(iterable);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1418|      0|    }
 1419|      2|    PyObject *obj = make_new_set(type, iterable);
 1420|      2|    if (obj != NULL) {
  ------------------
  |  Branch (1420:9): [True: 2, False: 0]
  ------------------
 1421|      2|        _PyFrozenSet_MaybeUntrack(obj);
 1422|      2|    }
 1423|      2|    return obj;
 1424|      2|}
setobject.c:frozenset_vectorcall:
 1447|      2|{
 1448|      2|    if (!_PyArg_NoKwnames("frozenset", kwnames)) {
  ------------------
  |  |   15|      2|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 2, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1449|      0|        return NULL;
 1450|      0|    }
 1451|       |
 1452|      2|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      2|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
 1453|      2|    if (!_PyArg_CheckPositional("frozenset", nargs, 0, 1)) {
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1454|      0|        return NULL;
 1455|      0|    }
 1456|       |
 1457|      2|    PyObject *iterable = (nargs ? args[0] : NULL);
  ------------------
  |  Branch (1457:27): [True: 2, False: 0]
  ------------------
 1458|      2|    return make_new_frozenset(_PyType_CAST(type), iterable);
  ------------------
  |  |  770|      2|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1458:31): [True: 2, False: 0]
  ------------------
 1459|      2|}
setobject.c:make_new_set:
 1350|    180|{
 1351|    180|    assert(PyType_Check(type));
  ------------------
  |  Branch (1351:5): [True: 180, False: 0]
  ------------------
 1352|    180|    PySetObject *so;
 1353|       |
 1354|    180|    so = (PySetObject *)type->tp_alloc(type, 0);
 1355|    180|    if (so == NULL)
  ------------------
  |  Branch (1355:9): [True: 0, False: 180]
  ------------------
 1356|      0|        return NULL;
 1357|       |
 1358|    180|    so->fill = 0;
 1359|    180|    so->used = 0;
 1360|    180|    so->mask = PySet_MINSIZE - 1;
  ------------------
  |  |   18|    180|#define PySet_MINSIZE 8
  ------------------
 1361|    180|    so->table = so->smalltable;
 1362|    180|    so->hash = -1;
 1363|    180|    so->finger = 0;
 1364|    180|    so->weakreflist = NULL;
 1365|       |
 1366|    180|    if (iterable != NULL) {
  ------------------
  |  Branch (1366:9): [True: 24, False: 156]
  ------------------
 1367|     24|        if (set_update_local(so, iterable)) {
  ------------------
  |  Branch (1367:13): [True: 0, False: 24]
  ------------------
 1368|      0|            Py_DECREF(so);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1369|      0|            return NULL;
 1370|      0|        }
 1371|     24|    }
 1372|       |
 1373|    180|    return (PyObject *)so;
 1374|    180|}
setobject.c:_PyFrozenSet_MaybeUntrack:
 1391|     84|{
 1392|     84|    assert(op != NULL);
  ------------------
  |  Branch (1392:5): [True: 84, False: 0]
  ------------------
 1393|       |    // subclasses of a frozenset can generate reference cycles, so do not untrack
 1394|     84|    if (!PyFrozenSet_CheckExact(op)) {
  ------------------
  |  |   23|     84|#define PyFrozenSet_CheckExact(ob) Py_IS_TYPE((ob), &PyFrozenSet_Type)
  |  |  ------------------
  |  |  |  |  215|     84|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     84|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     84|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1394:9): [True: 0, False: 84]
  ------------------
 1395|      0|        return;
 1396|      0|    }
 1397|       |    // if no elements of a frozenset are tracked by the GC, we untrack the object
 1398|     84|    Py_ssize_t pos = 0;
 1399|     84|    setentry *entry;
 1400|    676|    while (set_next((PySetObject *)op, &pos, &entry)) {
  ------------------
  |  Branch (1400:12): [True: 608, False: 68]
  ------------------
 1401|    608|        if (_PyObject_GC_MAY_BE_TRACKED(entry->key)) {
  ------------------
  |  Branch (1401:13): [True: 16, False: 592]
  ------------------
 1402|     16|            return;
 1403|     16|        }
 1404|    608|    }
 1405|     68|    _PyObject_GC_UNTRACK(op);
  ------------------
  |  |  515|     68|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1406|     68|}
setobject.c:set_len:
  823|    180|{
  824|    180|    PySetObject *so = _PySet_CAST(self);
  ------------------
  |  |   62|    180|    (assert(PyAnySet_Check(so)), _Py_CAST(PySetObject*, so))
  |  |  ------------------
  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (824:23): [True: 62, False: 118]
  |  Branch (824:23): [True: 118, False: 0]
  |  Branch (824:23): [True: 0, False: 0]
  |  Branch (824:23): [True: 0, False: 0]
  ------------------
  825|    180|    return FT_ATOMIC_LOAD_SSIZE_RELAXED(so->used);
  ------------------
  |  |  149|    180|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
  826|    180|}
setobject.c:set_clear_impl:
 1601|     16|{
 1602|     16|    set_clear_internal((PyObject*)so);
 1603|     16|    Py_RETURN_NONE;
  ------------------
  |  |  628|     16|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     16|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1604|     16|}
setobject.c:set_add_key:
  602|  1.45k|{
  603|  1.45k|    Py_hash_t hash = _PyObject_HashFast(key);
  604|  1.45k|    if (hash == -1) {
  ------------------
  |  Branch (604:9): [True: 0, False: 1.45k]
  ------------------
  605|      0|        set_unhashable_type(key);
  606|      0|        return -1;
  607|      0|    }
  608|  1.45k|    return set_add_entry(so, key, hash);
  609|  1.45k|}
setobject.c:set_next:
  711|    746|{
  712|    746|    Py_ssize_t i;
  713|    746|    Py_ssize_t mask;
  714|    746|    setentry *entry;
  715|       |
  716|    746|    assert (PyAnySet_Check(so));
  ------------------
  |  Branch (716:5): [True: 24, False: 722]
  |  Branch (716:5): [True: 722, False: 0]
  |  Branch (716:5): [True: 0, False: 0]
  |  Branch (716:5): [True: 0, False: 0]
  ------------------
  717|    746|    i = *pos_ptr;
  718|    746|    assert(i >= 0);
  ------------------
  |  Branch (718:5): [True: 746, False: 0]
  ------------------
  719|    746|    mask = so->mask;
  720|    746|    entry = &so->table[i];
  721|  1.93k|    while (i <= mask && (entry->key == NULL || entry->key == dummy)) {
  ------------------
  |  |   64|    650|#define dummy (&_dummy_struct)
  ------------------
  |  Branch (721:12): [True: 1.83k, False: 96]
  |  Branch (721:26): [True: 1.18k, False: 650]
  |  Branch (721:48): [True: 0, False: 650]
  ------------------
  722|  1.18k|        i++;
  723|  1.18k|        entry++;
  724|  1.18k|    }
  725|    746|    *pos_ptr = i+1;
  726|    746|    if (i > mask)
  ------------------
  |  Branch (726:9): [True: 96, False: 650]
  ------------------
  727|     96|        return 0;
  728|    746|    assert(entry != NULL);
  ------------------
  |  Branch (728:5): [True: 650, False: 0]
  ------------------
  729|    650|    *entry_ptr = entry;
  730|    650|    return 1;
  731|    650|}

PySlice_New:
  146|     94|{
  147|     94|    if (step == NULL) {
  ------------------
  |  Branch (147:9): [True: 0, False: 94]
  ------------------
  148|      0|        step = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  149|      0|    }
  150|     94|    if (start == NULL) {
  ------------------
  |  Branch (150:9): [True: 0, False: 94]
  ------------------
  151|      0|        start = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  152|      0|    }
  153|     94|    if (stop == NULL) {
  ------------------
  |  Branch (153:9): [True: 0, False: 94]
  ------------------
  154|      0|        stop = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  155|      0|    }
  156|     94|    return (PyObject *)_PyBuildSlice_Consume2(Py_NewRef(start),
  ------------------
  |  |  550|     94|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  157|     94|                                              Py_NewRef(stop), step);
  ------------------
  |  |  550|     94|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  158|     94|}
PySlice_Unpack:
  221|      6|{
  222|      6|    PySliceObject *r = (PySliceObject*)_r;
  223|       |    /* this is harder to get right than you might think */
  224|       |
  225|      6|    static_assert(PY_SSIZE_T_MIN + 1 <= -PY_SSIZE_T_MAX,
  226|      6|                  "-PY_SSIZE_T_MAX < PY_SSIZE_T_MIN + 1");
  227|       |
  228|      6|    if (r->step == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (228:9): [True: 6, False: 0]
  ------------------
  229|      6|        *step = 1;
  230|      6|    }
  231|      0|    else {
  232|      0|        if (!_PyEval_SliceIndex(r->step, step)) return -1;
  ------------------
  |  Branch (232:13): [True: 0, False: 0]
  ------------------
  233|      0|        if (*step == 0) {
  ------------------
  |  Branch (233:13): [True: 0, False: 0]
  ------------------
  234|      0|            PyErr_SetString(PyExc_ValueError,
  235|      0|                            "slice step cannot be zero");
  236|      0|            return -1;
  237|      0|        }
  238|       |        /* Here *step might be -PY_SSIZE_T_MAX-1; in this case we replace it
  239|       |         * with -PY_SSIZE_T_MAX.  This doesn't affect the semantics, and it
  240|       |         * guards against later undefined behaviour resulting from code that
  241|       |         * does "step = -step" as part of a slice reversal.
  242|       |         */
  243|      0|        if (*step < -PY_SSIZE_T_MAX)
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (243:13): [True: 0, False: 0]
  ------------------
  244|      0|            *step = -PY_SSIZE_T_MAX;
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  245|      0|    }
  246|       |
  247|      6|    if (r->start == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (247:9): [True: 4, False: 2]
  ------------------
  248|      4|        *start = *step < 0 ? PY_SSIZE_T_MAX : 0;
  ------------------
  |  |  137|      4|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (248:18): [True: 0, False: 4]
  ------------------
  249|      4|    }
  250|      2|    else {
  251|      2|        if (!_PyEval_SliceIndex(r->start, start)) return -1;
  ------------------
  |  Branch (251:13): [True: 0, False: 2]
  ------------------
  252|      2|    }
  253|       |
  254|      6|    if (r->stop == Py_None) {
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (254:9): [True: 6, False: 0]
  ------------------
  255|      6|        *stop = *step < 0 ? PY_SSIZE_T_MIN : PY_SSIZE_T_MAX;
  ------------------
  |  |  146|      0|#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
  |  |  ------------------
  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  ------------------
                      *stop = *step < 0 ? PY_SSIZE_T_MIN : PY_SSIZE_T_MAX;
  ------------------
  |  |  137|      6|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (255:17): [True: 0, False: 6]
  ------------------
  256|      6|    }
  257|      0|    else {
  258|      0|        if (!_PyEval_SliceIndex(r->stop, stop)) return -1;
  ------------------
  |  Branch (258:13): [True: 0, False: 0]
  ------------------
  259|      0|    }
  260|       |
  261|      6|    return 0;
  262|      6|}
PySlice_AdjustIndices:
  267|     24|{
  268|       |    /* this is harder to get right than you might think */
  269|       |
  270|     24|    assert(step != 0);
  ------------------
  |  Branch (270:5): [True: 24, False: 0]
  ------------------
  271|     24|    assert(step >= -PY_SSIZE_T_MAX);
  ------------------
  |  Branch (271:5): [True: 24, False: 0]
  ------------------
  272|       |
  273|     24|    if (*start < 0) {
  ------------------
  |  Branch (273:9): [True: 0, False: 24]
  ------------------
  274|      0|        *start += length;
  275|      0|        if (*start < 0) {
  ------------------
  |  Branch (275:13): [True: 0, False: 0]
  ------------------
  276|      0|            *start = (step < 0) ? -1 : 0;
  ------------------
  |  Branch (276:22): [True: 0, False: 0]
  ------------------
  277|      0|        }
  278|      0|    }
  279|     24|    else if (*start >= length) {
  ------------------
  |  Branch (279:14): [True: 2, False: 22]
  ------------------
  280|      2|        *start = (step < 0) ? length - 1 : length;
  ------------------
  |  Branch (280:18): [True: 0, False: 2]
  ------------------
  281|      2|    }
  282|       |
  283|     24|    if (*stop < 0) {
  ------------------
  |  Branch (283:9): [True: 0, False: 24]
  ------------------
  284|      0|        *stop += length;
  285|      0|        if (*stop < 0) {
  ------------------
  |  Branch (285:13): [True: 0, False: 0]
  ------------------
  286|      0|            *stop = (step < 0) ? -1 : 0;
  ------------------
  |  Branch (286:21): [True: 0, False: 0]
  ------------------
  287|      0|        }
  288|      0|    }
  289|     24|    else if (*stop >= length) {
  ------------------
  |  Branch (289:14): [True: 14, False: 10]
  ------------------
  290|     14|        *stop = (step < 0) ? length - 1 : length;
  ------------------
  |  Branch (290:17): [True: 0, False: 14]
  ------------------
  291|     14|    }
  292|       |
  293|     24|    if (step < 0) {
  ------------------
  |  Branch (293:9): [True: 0, False: 24]
  ------------------
  294|      0|        if (*stop < *start) {
  ------------------
  |  Branch (294:13): [True: 0, False: 0]
  ------------------
  295|      0|            return (*start - *stop - 1) / (-step) + 1;
  296|      0|        }
  297|      0|    }
  298|     24|    else {
  299|     24|        if (*start < *stop) {
  ------------------
  |  Branch (299:13): [True: 22, False: 2]
  ------------------
  300|     22|            return (*stop - *start - 1) / step + 1;
  301|     22|        }
  302|     24|    }
  303|      2|    return 0;
  304|     24|}
sliceobject.c:_PyBuildSlice_Consume2:
  122|     94|{
  123|     94|    assert(start != NULL && stop != NULL && step != NULL);
  ------------------
  |  Branch (123:5): [True: 94, False: 0]
  |  Branch (123:5): [True: 94, False: 0]
  |  Branch (123:5): [True: 94, False: 0]
  ------------------
  124|     94|    PySliceObject *obj = _Py_FREELIST_POP(PySliceObject, slices);
  ------------------
  |  |   43|     94|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  125|     94|    if (obj == NULL) {
  ------------------
  |  Branch (125:9): [True: 90, False: 4]
  ------------------
  126|     90|        obj = PyObject_GC_New(PySliceObject, &PySlice_Type);
  ------------------
  |  |  181|     90|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|     90|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  127|     90|        if (obj == NULL) {
  ------------------
  |  Branch (127:13): [True: 0, False: 90]
  ------------------
  128|      0|            goto error;
  129|      0|        }
  130|     90|    }
  131|       |
  132|     94|    obj->start = start;
  133|     94|    obj->stop = stop;
  134|     94|    obj->step = Py_NewRef(step);
  ------------------
  |  |  550|     94|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  135|       |
  136|     94|    _PyObject_GC_TRACK(obj);
  ------------------
  |  |  513|     94|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  137|     94|    return obj;
  138|      0|error:
  139|      0|    Py_DECREF(start);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  140|      0|    Py_DECREF(stop);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  141|       |    return NULL;
  142|     94|}
sliceobject.c:slice_dealloc:
  349|     16|{
  350|     16|    PySliceObject *r = _PySlice_CAST(op);
  ------------------
  |  |   25|     16|#define _PySlice_CAST(op) _Py_CAST(PySliceObject*, (op))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  351|     16|    PyObject_GC_UnTrack(r);
  352|     16|    Py_DECREF(r->step);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  353|     16|    Py_DECREF(r->start);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  354|     16|    Py_DECREF(r->stop);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  355|     16|    _Py_FREELIST_FREE(slices, r, PyObject_GC_Del);
  ------------------
  |  |   35|     16|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|     16|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   21|     16|#  define Py_slices_MAXFREELIST 1
  |  |  ------------------
  ------------------
  356|     16|}
sliceobject.c:slice_traverse:
  626|    136|{
  627|    136|    PySliceObject *v = _PySlice_CAST(op);
  ------------------
  |  |   25|    136|#define _PySlice_CAST(op) _Py_CAST(PySliceObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  628|    136|    Py_VISIT(v->start);
  ------------------
  |  |  194|    136|    do {                                                                \
  |  |  195|    136|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 136, False: 0]
  |  |  ------------------
  |  |  196|    136|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    136|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    136|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 136]
  |  |  ------------------
  |  |  198|    136|                return vret;                                            \
  |  |  199|    136|        }                                                               \
  |  |  200|    136|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 136]
  |  |  ------------------
  ------------------
  629|    136|    Py_VISIT(v->stop);
  ------------------
  |  |  194|    136|    do {                                                                \
  |  |  195|    136|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 136, False: 0]
  |  |  ------------------
  |  |  196|    136|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    136|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    136|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 136]
  |  |  ------------------
  |  |  198|    136|                return vret;                                            \
  |  |  199|    136|        }                                                               \
  |  |  200|    136|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 136]
  |  |  ------------------
  ------------------
  630|    136|    Py_VISIT(v->step);
  ------------------
  |  |  194|    136|    do {                                                                \
  |  |  195|    136|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 136, False: 0]
  |  |  ------------------
  |  |  196|    136|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    136|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    136|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 136]
  |  |  ------------------
  |  |  198|    136|                return vret;                                            \
  |  |  199|    136|        }                                                               \
  |  |  200|    136|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 136]
  |  |  ------------------
  ------------------
  631|    136|    return 0;
  632|    136|}

unicodeobject.c:asciilib_utf8_decode:
   26|  1.60k|{
   27|  1.60k|    Py_UCS4 ch;
   28|  1.60k|    const char *s = *inptr;
   29|  1.60k|    STRINGLIB_CHAR *p = dest + *outpos;
  ------------------
  |  |   11|  1.60k|#define STRINGLIB_CHAR           Py_UCS1
  ------------------
   30|       |
   31|  1.60k|    while (s < end) {
  ------------------
  |  Branch (31:12): [True: 1.60k, False: 0]
  ------------------
   32|  1.60k|        ch = (unsigned char)*s;
   33|       |
   34|  1.60k|        if (ch < 0x80) {
  ------------------
  |  Branch (34:13): [True: 0, False: 1.60k]
  ------------------
   35|       |            /* Fast path for runs of ASCII characters. Given that common UTF-8
   36|       |               input will consist of an overwhelming majority of ASCII
   37|       |               characters, we try to optimize for this case by checking
   38|       |               as many characters as a C 'size_t' can contain.
   39|       |               First, check if we can do an aligned read, as most CPUs have
   40|       |               a penalty for unaligned reads.
   41|       |            */
   42|      0|            if (_Py_IS_ALIGNED(s, ALIGNOF_SIZE_T)) {
  ------------------
  |  |  221|      0|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   43|       |                /* Help register allocation */
   44|      0|                const char *_s = s;
   45|      0|                STRINGLIB_CHAR *_p = p;
  ------------------
  |  |   11|      0|#define STRINGLIB_CHAR           Py_UCS1
  ------------------
   46|      0|                while (_s + SIZEOF_SIZE_T <= end) {
  ------------------
  |  | 1838|      0|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (46:24): [True: 0, False: 0]
  ------------------
   47|       |                    /* Read a whole size_t at a time (either 4 or 8 bytes),
   48|       |                       and do a fast unrolled copy if it only contains ASCII
   49|       |                       characters. */
   50|      0|                    size_t value = *(const size_t *) _s;
   51|      0|                    if (value & ASCII_CHAR_MASK)
  ------------------
  |  |   12|      0|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
  |  Branch (51:25): [True: 0, False: 0]
  ------------------
   52|      0|                        break;
   53|      0|#if PY_LITTLE_ENDIAN
   54|      0|                    _p[0] = (STRINGLIB_CHAR)(value & 0xFFu);
   55|      0|                    _p[1] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   56|      0|                    _p[2] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   57|      0|                    _p[3] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   58|      0|# if SIZEOF_SIZE_T == 8
   59|      0|                    _p[4] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   60|      0|                    _p[5] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   61|      0|                    _p[6] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   62|      0|                    _p[7] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   63|      0|# endif
   64|       |#else
   65|       |# if SIZEOF_SIZE_T == 8
   66|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   67|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   68|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   69|       |                    _p[3] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   70|       |                    _p[4] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   71|       |                    _p[5] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   72|       |                    _p[6] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   73|       |                    _p[7] = (STRINGLIB_CHAR)(value & 0xFFu);
   74|       |# else
   75|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   76|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   77|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   78|       |                    _p[3] = (STRINGLIB_CHAR)(value & 0xFFu);
   79|       |# endif
   80|       |#endif
   81|      0|                    _s += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|      0|#define SIZEOF_SIZE_T 8
  ------------------
   82|      0|                    _p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|      0|#define SIZEOF_SIZE_T 8
  ------------------
   83|      0|                }
   84|      0|                s = _s;
   85|      0|                p = _p;
   86|      0|                if (s == end)
  ------------------
  |  Branch (86:21): [True: 0, False: 0]
  ------------------
   87|      0|                    break;
   88|      0|                ch = (unsigned char)*s;
   89|      0|            }
   90|      0|            if (ch < 0x80) {
  ------------------
  |  Branch (90:17): [True: 0, False: 0]
  ------------------
   91|      0|                s++;
   92|      0|                *p++ = ch;
   93|      0|                continue;
   94|      0|            }
   95|      0|        }
   96|       |
   97|  1.60k|        if (ch < 0xE0) {
  ------------------
  |  Branch (97:13): [True: 646, False: 956]
  ------------------
   98|       |            /* \xC2\x80-\xDF\xBF -- 0080-07FF */
   99|    646|            Py_UCS4 ch2;
  100|    646|            if (ch < 0xC2) {
  ------------------
  |  Branch (100:17): [True: 214, False: 432]
  ------------------
  101|       |                /* invalid sequence
  102|       |                \x80-\xBF -- continuation byte
  103|       |                \xC0-\xC1 -- fake 0000-007F */
  104|    214|                goto InvalidStart;
  105|    214|            }
  106|    432|            if (end - s < 2) {
  ------------------
  |  Branch (106:17): [True: 21, False: 411]
  ------------------
  107|       |                /* unexpected end of data: the caller will decide whether
  108|       |                   it's an error or not */
  109|     21|                break;
  110|     21|            }
  111|    411|            ch2 = (unsigned char)s[1];
  112|    411|            if (!IS_CONTINUATION_BYTE(ch2))
  ------------------
  |  |   20|    411|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 398, False: 13]
  |  |  |  Branch (20:51): [True: 331, False: 67]
  |  |  ------------------
  ------------------
  113|       |                /* invalid continuation byte */
  114|     80|                goto InvalidContinuation1;
  115|    331|            ch = (ch << 6) + ch2 -
  116|    331|                 ((0xC0 << 6) + 0x80);
  117|    331|            assert ((ch > 0x007F) && (ch <= 0x07FF));
  ------------------
  |  Branch (117:13): [True: 331, False: 0]
  |  Branch (117:13): [True: 331, False: 0]
  ------------------
  118|    331|            s += 2;
  119|    331|            if (STRINGLIB_MAX_CHAR <= 0x007F ||
  ------------------
  |  |   10|    331|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
  |  Branch (119:17): [True: 331, Folded]
  ------------------
  120|      0|                (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
  |  Branch (120:18): [True: 0, Folded]
  |  Branch (120:49): [True: 0, False: 0]
  ------------------
  121|       |                /* Out-of-range */
  122|    331|                goto Return;
  123|      0|            *p++ = ch;
  124|      0|            continue;
  125|    331|        }
  126|       |
  127|    956|        if (ch < 0xF0) {
  ------------------
  |  Branch (127:13): [True: 187, False: 769]
  ------------------
  128|       |            /* \xE0\xA0\x80-\xEF\xBF\xBF -- 0800-FFFF */
  129|    187|            Py_UCS4 ch2, ch3;
  130|    187|            if (end - s < 3) {
  ------------------
  |  Branch (130:17): [True: 38, False: 149]
  ------------------
  131|       |                /* unexpected end of data: the caller will decide whether
  132|       |                   it's an error or not */
  133|     38|                if (end - s < 2)
  ------------------
  |  Branch (133:21): [True: 6, False: 32]
  ------------------
  134|      6|                    break;
  135|     32|                ch2 = (unsigned char)s[1];
  136|     32|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|     64|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 30, False: 2]
  |  |  |  Branch (20:51): [True: 20, False: 10]
  |  |  ------------------
  ------------------
  137|     20|                    (ch2 < 0xA0 ? ch == 0xE0 : ch == 0xED))
  ------------------
  |  Branch (137:21): [True: 8, False: 12]
  |  Branch (137:22): [True: 8, False: 12]
  ------------------
  138|       |                    /* for clarification see comments below */
  139|     20|                    goto InvalidContinuation1;
  140|     12|                break;
  141|     32|            }
  142|    149|            ch2 = (unsigned char)s[1];
  143|    149|            ch3 = (unsigned char)s[2];
  144|    149|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|    149|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 143, False: 6]
  |  |  |  Branch (20:51): [True: 64, False: 79]
  |  |  ------------------
  ------------------
  145|       |                /* invalid continuation byte */
  146|     85|                goto InvalidContinuation1;
  147|     85|            }
  148|     64|            if (ch == 0xE0) {
  ------------------
  |  Branch (148:17): [True: 16, False: 48]
  ------------------
  149|     16|                if (ch2 < 0xA0)
  ------------------
  |  Branch (149:21): [True: 9, False: 7]
  ------------------
  150|       |                    /* invalid sequence
  151|       |                       \xE0\x80\x80-\xE0\x9F\xBF -- fake 0000-0800 */
  152|      9|                    goto InvalidContinuation1;
  153|     48|            } else if (ch == 0xED && ch2 >= 0xA0) {
  ------------------
  |  Branch (153:24): [True: 15, False: 33]
  |  Branch (153:38): [True: 5, False: 10]
  ------------------
  154|       |                /* Decoding UTF-8 sequences in range \xED\xA0\x80-\xED\xBF\xBF
  155|       |                   will result in surrogates in range D800-DFFF. Surrogates are
  156|       |                   not valid UTF-8 so they are rejected.
  157|       |                   See https://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
  158|       |                   (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */
  159|      5|                goto InvalidContinuation1;
  160|      5|            }
  161|     50|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|     50|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 42, False: 8]
  |  |  |  Branch (20:51): [True: 36, False: 6]
  |  |  ------------------
  ------------------
  162|       |                /* invalid continuation byte */
  163|     14|                goto InvalidContinuation2;
  164|     14|            }
  165|     36|            ch = (ch << 12) + (ch2 << 6) + ch3 -
  166|     36|                 ((0xE0 << 12) + (0x80 << 6) + 0x80);
  167|     36|            assert ((ch > 0x07FF) && (ch <= 0xFFFF));
  ------------------
  |  Branch (167:13): [True: 36, False: 0]
  |  Branch (167:13): [True: 36, False: 0]
  ------------------
  168|     36|            s += 3;
  169|     36|            if (STRINGLIB_MAX_CHAR <= 0x07FF ||
  ------------------
  |  |   10|     36|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
  |  Branch (169:17): [True: 36, Folded]
  ------------------
  170|      0|                (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
  |  Branch (170:18): [True: 0, Folded]
  |  Branch (170:49): [True: 0, False: 0]
  ------------------
  171|       |                /* Out-of-range */
  172|     36|                goto Return;
  173|      0|            *p++ = ch;
  174|      0|            continue;
  175|     36|        }
  176|       |
  177|    769|        if (ch < 0xF5) {
  ------------------
  |  Branch (177:13): [True: 689, False: 80]
  ------------------
  178|       |            /* \xF0\x90\x80\x80-\xF4\x8F\xBF\xBF -- 10000-10FFFF */
  179|    689|            Py_UCS4 ch2, ch3, ch4;
  180|    689|            if (end - s < 4) {
  ------------------
  |  Branch (180:17): [True: 88, False: 601]
  ------------------
  181|       |                /* unexpected end of data: the caller will decide whether
  182|       |                   it's an error or not */
  183|     88|                if (end - s < 2)
  ------------------
  |  Branch (183:21): [True: 44, False: 44]
  ------------------
  184|     44|                    break;
  185|     44|                ch2 = (unsigned char)s[1];
  186|     44|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|     88|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 40, False: 4]
  |  |  |  Branch (20:51): [True: 26, False: 14]
  |  |  ------------------
  ------------------
  187|     26|                    (ch2 < 0x90 ? ch == 0xF0 : ch == 0xF4))
  ------------------
  |  Branch (187:21): [True: 6, False: 20]
  |  Branch (187:22): [True: 10, False: 16]
  ------------------
  188|       |                    /* for clarification see comments below */
  189|     24|                    goto InvalidContinuation1;
  190|     20|                if (end - s < 3)
  ------------------
  |  Branch (190:21): [True: 11, False: 9]
  ------------------
  191|     11|                    break;
  192|      9|                ch3 = (unsigned char)s[2];
  193|      9|                if (!IS_CONTINUATION_BYTE(ch3))
  ------------------
  |  |   20|      9|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 8, False: 1]
  |  |  |  Branch (20:51): [True: 7, False: 1]
  |  |  ------------------
  ------------------
  194|      2|                    goto InvalidContinuation2;
  195|      7|                break;
  196|      9|            }
  197|    601|            ch2 = (unsigned char)s[1];
  198|    601|            ch3 = (unsigned char)s[2];
  199|    601|            ch4 = (unsigned char)s[3];
  200|    601|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|    601|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 591, False: 10]
  |  |  |  Branch (20:51): [True: 520, False: 71]
  |  |  ------------------
  ------------------
  201|       |                /* invalid continuation byte */
  202|     81|                goto InvalidContinuation1;
  203|     81|            }
  204|    520|            if (ch == 0xF0) {
  ------------------
  |  Branch (204:17): [True: 116, False: 404]
  ------------------
  205|    116|                if (ch2 < 0x90)
  ------------------
  |  Branch (205:21): [True: 7, False: 109]
  ------------------
  206|       |                    /* invalid sequence
  207|       |                       \xF0\x80\x80\x80-\xF0\x8F\xBF\xBF -- fake 0000-FFFF */
  208|      7|                    goto InvalidContinuation1;
  209|    404|            } else if (ch == 0xF4 && ch2 >= 0x90) {
  ------------------
  |  Branch (209:24): [True: 125, False: 279]
  |  Branch (209:38): [True: 5, False: 120]
  ------------------
  210|       |                /* invalid sequence
  211|       |                   \xF4\x90\x80\x80- -- 110000- overflow */
  212|      5|                goto InvalidContinuation1;
  213|      5|            }
  214|    508|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|    508|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 504, False: 4]
  |  |  |  Branch (20:51): [True: 491, False: 13]
  |  |  ------------------
  ------------------
  215|       |                /* invalid continuation byte */
  216|     17|                goto InvalidContinuation2;
  217|     17|            }
  218|    491|            if (!IS_CONTINUATION_BYTE(ch4)) {
  ------------------
  |  |   20|    491|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 487, False: 4]
  |  |  |  Branch (20:51): [True: 470, False: 17]
  |  |  ------------------
  ------------------
  219|       |                /* invalid continuation byte */
  220|     21|                goto InvalidContinuation3;
  221|     21|            }
  222|    470|            ch = (ch << 18) + (ch2 << 12) + (ch3 << 6) + ch4 -
  223|    470|                 ((0xF0 << 18) + (0x80 << 12) + (0x80 << 6) + 0x80);
  224|    470|            assert ((ch > 0xFFFF) && (ch <= 0x10FFFF));
  ------------------
  |  Branch (224:13): [True: 470, False: 0]
  |  Branch (224:13): [True: 470, False: 0]
  ------------------
  225|    470|            s += 4;
  226|    470|            if (STRINGLIB_MAX_CHAR <= 0xFFFF ||
  ------------------
  |  |   10|    470|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
  |  Branch (226:17): [True: 470, Folded]
  ------------------
  227|      0|                (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x7Fu
  ------------------
  |  Branch (227:18): [True: 0, Folded]
  |  Branch (227:51): [True: 0, False: 0]
  ------------------
  228|       |                /* Out-of-range */
  229|    470|                goto Return;
  230|      0|            *p++ = ch;
  231|      0|            continue;
  232|    470|        }
  233|     80|        goto InvalidStart;
  234|    769|    }
  235|    101|    ch = 0;
  236|  1.60k|Return:
  237|  1.60k|    *inptr = s;
  238|  1.60k|    *outpos = p - dest;
  239|  1.60k|    return ch;
  240|    294|InvalidStart:
  241|    294|    ch = 1;
  242|    294|    goto Return;
  243|    316|InvalidContinuation1:
  244|    316|    ch = 2;
  245|    316|    goto Return;
  246|     33|InvalidContinuation2:
  247|     33|    ch = 3;
  248|     33|    goto Return;
  249|     21|InvalidContinuation3:
  250|     21|    ch = 4;
  251|     21|    goto Return;
  252|    101|}
unicodeobject.c:ucs1lib_utf8_decode:
   26|    293|{
   27|    293|    Py_UCS4 ch;
   28|    293|    const char *s = *inptr;
   29|    293|    STRINGLIB_CHAR *p = dest + *outpos;
  ------------------
  |  |   11|    293|#define STRINGLIB_CHAR           Py_UCS1
  ------------------
   30|       |
   31|  1.88k|    while (s < end) {
  ------------------
  |  Branch (31:12): [True: 1.84k, False: 42]
  ------------------
   32|  1.84k|        ch = (unsigned char)*s;
   33|       |
   34|  1.84k|        if (ch < 0x80) {
  ------------------
  |  Branch (34:13): [True: 1.14k, False: 702]
  ------------------
   35|       |            /* Fast path for runs of ASCII characters. Given that common UTF-8
   36|       |               input will consist of an overwhelming majority of ASCII
   37|       |               characters, we try to optimize for this case by checking
   38|       |               as many characters as a C 'size_t' can contain.
   39|       |               First, check if we can do an aligned read, as most CPUs have
   40|       |               a penalty for unaligned reads.
   41|       |            */
   42|  1.14k|            if (_Py_IS_ALIGNED(s, ALIGNOF_SIZE_T)) {
  ------------------
  |  |  221|  1.14k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 138, False: 1.00k]
  |  |  ------------------
  ------------------
   43|       |                /* Help register allocation */
   44|    138|                const char *_s = s;
   45|    138|                STRINGLIB_CHAR *_p = p;
  ------------------
  |  |   11|    138|#define STRINGLIB_CHAR           Py_UCS1
  ------------------
   46|    193|                while (_s + SIZEOF_SIZE_T <= end) {
  ------------------
  |  | 1838|    193|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (46:24): [True: 165, False: 28]
  ------------------
   47|       |                    /* Read a whole size_t at a time (either 4 or 8 bytes),
   48|       |                       and do a fast unrolled copy if it only contains ASCII
   49|       |                       characters. */
   50|    165|                    size_t value = *(const size_t *) _s;
   51|    165|                    if (value & ASCII_CHAR_MASK)
  ------------------
  |  |   12|    165|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
  |  Branch (51:25): [True: 110, False: 55]
  ------------------
   52|    110|                        break;
   53|     55|#if PY_LITTLE_ENDIAN
   54|     55|                    _p[0] = (STRINGLIB_CHAR)(value & 0xFFu);
   55|     55|                    _p[1] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   56|     55|                    _p[2] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   57|     55|                    _p[3] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   58|     55|# if SIZEOF_SIZE_T == 8
   59|     55|                    _p[4] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   60|     55|                    _p[5] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   61|     55|                    _p[6] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   62|     55|                    _p[7] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   63|     55|# endif
   64|       |#else
   65|       |# if SIZEOF_SIZE_T == 8
   66|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   67|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   68|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   69|       |                    _p[3] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   70|       |                    _p[4] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   71|       |                    _p[5] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   72|       |                    _p[6] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   73|       |                    _p[7] = (STRINGLIB_CHAR)(value & 0xFFu);
   74|       |# else
   75|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   76|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   77|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   78|       |                    _p[3] = (STRINGLIB_CHAR)(value & 0xFFu);
   79|       |# endif
   80|       |#endif
   81|     55|                    _s += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|     55|#define SIZEOF_SIZE_T 8
  ------------------
   82|     55|                    _p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|     55|#define SIZEOF_SIZE_T 8
  ------------------
   83|     55|                }
   84|    138|                s = _s;
   85|    138|                p = _p;
   86|    138|                if (s == end)
  ------------------
  |  Branch (86:21): [True: 6, False: 132]
  ------------------
   87|      6|                    break;
   88|    132|                ch = (unsigned char)*s;
   89|    132|            }
   90|  1.13k|            if (ch < 0x80) {
  ------------------
  |  Branch (90:17): [True: 1.11k, False: 20]
  ------------------
   91|  1.11k|                s++;
   92|  1.11k|                *p++ = ch;
   93|  1.11k|                continue;
   94|  1.11k|            }
   95|  1.13k|        }
   96|       |
   97|    722|        if (ch < 0xE0) {
  ------------------
  |  Branch (97:13): [True: 519, False: 203]
  ------------------
   98|       |            /* \xC2\x80-\xDF\xBF -- 0080-07FF */
   99|    519|            Py_UCS4 ch2;
  100|    519|            if (ch < 0xC2) {
  ------------------
  |  Branch (100:17): [True: 14, False: 505]
  ------------------
  101|       |                /* invalid sequence
  102|       |                \x80-\xBF -- continuation byte
  103|       |                \xC0-\xC1 -- fake 0000-007F */
  104|     14|                goto InvalidStart;
  105|     14|            }
  106|    505|            if (end - s < 2) {
  ------------------
  |  Branch (106:17): [True: 12, False: 493]
  ------------------
  107|       |                /* unexpected end of data: the caller will decide whether
  108|       |                   it's an error or not */
  109|     12|                break;
  110|     12|            }
  111|    493|            ch2 = (unsigned char)s[1];
  112|    493|            if (!IS_CONTINUATION_BYTE(ch2))
  ------------------
  |  |   20|    493|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 491, False: 2]
  |  |  |  Branch (20:51): [True: 488, False: 3]
  |  |  ------------------
  ------------------
  113|       |                /* invalid continuation byte */
  114|      5|                goto InvalidContinuation1;
  115|    488|            ch = (ch << 6) + ch2 -
  116|    488|                 ((0xC0 << 6) + 0x80);
  117|    488|            assert ((ch > 0x007F) && (ch <= 0x07FF));
  ------------------
  |  Branch (117:13): [True: 488, False: 0]
  |  Branch (117:13): [True: 488, False: 0]
  ------------------
  118|    488|            s += 2;
  119|    488|            if (STRINGLIB_MAX_CHAR <= 0x007F ||
  ------------------
  |  |   10|    488|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
  |  Branch (119:17): [Folded, False: 488]
  ------------------
  120|    488|                (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|    488|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|    488|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
  |  Branch (120:18): [True: 488, Folded]
  |  Branch (120:49): [True: 11, False: 477]
  ------------------
  121|       |                /* Out-of-range */
  122|     11|                goto Return;
  123|    477|            *p++ = ch;
  124|    477|            continue;
  125|    488|        }
  126|       |
  127|    203|        if (ch < 0xF0) {
  ------------------
  |  Branch (127:13): [True: 75, False: 128]
  ------------------
  128|       |            /* \xE0\xA0\x80-\xEF\xBF\xBF -- 0800-FFFF */
  129|     75|            Py_UCS4 ch2, ch3;
  130|     75|            if (end - s < 3) {
  ------------------
  |  Branch (130:17): [True: 27, False: 48]
  ------------------
  131|       |                /* unexpected end of data: the caller will decide whether
  132|       |                   it's an error or not */
  133|     27|                if (end - s < 2)
  ------------------
  |  Branch (133:21): [True: 5, False: 22]
  ------------------
  134|      5|                    break;
  135|     22|                ch2 = (unsigned char)s[1];
  136|     22|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|     44|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 21, False: 1]
  |  |  |  Branch (20:51): [True: 18, False: 3]
  |  |  ------------------
  ------------------
  137|     18|                    (ch2 < 0xA0 ? ch == 0xE0 : ch == 0xED))
  ------------------
  |  Branch (137:21): [True: 6, False: 12]
  |  Branch (137:22): [True: 9, False: 9]
  ------------------
  138|       |                    /* for clarification see comments below */
  139|     10|                    goto InvalidContinuation1;
  140|     12|                break;
  141|     22|            }
  142|     48|            ch2 = (unsigned char)s[1];
  143|     48|            ch3 = (unsigned char)s[2];
  144|     48|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|     48|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 47, False: 1]
  |  |  |  Branch (20:51): [True: 40, False: 7]
  |  |  ------------------
  ------------------
  145|       |                /* invalid continuation byte */
  146|      8|                goto InvalidContinuation1;
  147|      8|            }
  148|     40|            if (ch == 0xE0) {
  ------------------
  |  Branch (148:17): [True: 15, False: 25]
  ------------------
  149|     15|                if (ch2 < 0xA0)
  ------------------
  |  Branch (149:21): [True: 7, False: 8]
  ------------------
  150|       |                    /* invalid sequence
  151|       |                       \xE0\x80\x80-\xE0\x9F\xBF -- fake 0000-0800 */
  152|      7|                    goto InvalidContinuation1;
  153|     25|            } else if (ch == 0xED && ch2 >= 0xA0) {
  ------------------
  |  Branch (153:24): [True: 14, False: 11]
  |  Branch (153:38): [True: 5, False: 9]
  ------------------
  154|       |                /* Decoding UTF-8 sequences in range \xED\xA0\x80-\xED\xBF\xBF
  155|       |                   will result in surrogates in range D800-DFFF. Surrogates are
  156|       |                   not valid UTF-8 so they are rejected.
  157|       |                   See https://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
  158|       |                   (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */
  159|      5|                goto InvalidContinuation1;
  160|      5|            }
  161|     28|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|     28|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 23, False: 5]
  |  |  |  Branch (20:51): [True: 21, False: 2]
  |  |  ------------------
  ------------------
  162|       |                /* invalid continuation byte */
  163|      7|                goto InvalidContinuation2;
  164|      7|            }
  165|     21|            ch = (ch << 12) + (ch2 << 6) + ch3 -
  166|     21|                 ((0xE0 << 12) + (0x80 << 6) + 0x80);
  167|     21|            assert ((ch > 0x07FF) && (ch <= 0xFFFF));
  ------------------
  |  Branch (167:13): [True: 21, False: 0]
  |  Branch (167:13): [True: 21, False: 0]
  ------------------
  168|     21|            s += 3;
  169|     21|            if (STRINGLIB_MAX_CHAR <= 0x07FF ||
  ------------------
  |  |   10|     21|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
  |  Branch (169:17): [True: 21, Folded]
  ------------------
  170|      0|                (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
  |  Branch (170:18): [True: 0, Folded]
  |  Branch (170:49): [True: 0, False: 0]
  ------------------
  171|       |                /* Out-of-range */
  172|     21|                goto Return;
  173|      0|            *p++ = ch;
  174|      0|            continue;
  175|     21|        }
  176|       |
  177|    128|        if (ch < 0xF5) {
  ------------------
  |  Branch (177:13): [True: 113, False: 15]
  ------------------
  178|       |            /* \xF0\x90\x80\x80-\xF4\x8F\xBF\xBF -- 10000-10FFFF */
  179|    113|            Py_UCS4 ch2, ch3, ch4;
  180|    113|            if (end - s < 4) {
  ------------------
  |  Branch (180:17): [True: 42, False: 71]
  ------------------
  181|       |                /* unexpected end of data: the caller will decide whether
  182|       |                   it's an error or not */
  183|     42|                if (end - s < 2)
  ------------------
  |  Branch (183:21): [True: 19, False: 23]
  ------------------
  184|     19|                    break;
  185|     23|                ch2 = (unsigned char)s[1];
  186|     23|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|     46|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 21, False: 2]
  |  |  |  Branch (20:51): [True: 19, False: 2]
  |  |  ------------------
  ------------------
  187|     19|                    (ch2 < 0x90 ? ch == 0xF0 : ch == 0xF4))
  ------------------
  |  Branch (187:21): [True: 4, False: 15]
  |  Branch (187:22): [True: 7, False: 12]
  ------------------
  188|       |                    /* for clarification see comments below */
  189|      8|                    goto InvalidContinuation1;
  190|     15|                if (end - s < 3)
  ------------------
  |  Branch (190:21): [True: 11, False: 4]
  ------------------
  191|     11|                    break;
  192|      4|                ch3 = (unsigned char)s[2];
  193|      4|                if (!IS_CONTINUATION_BYTE(ch3))
  ------------------
  |  |   20|      4|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 3, False: 1]
  |  |  |  Branch (20:51): [True: 1, False: 2]
  |  |  ------------------
  ------------------
  194|      3|                    goto InvalidContinuation2;
  195|      1|                break;
  196|      4|            }
  197|     71|            ch2 = (unsigned char)s[1];
  198|     71|            ch3 = (unsigned char)s[2];
  199|     71|            ch4 = (unsigned char)s[3];
  200|     71|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|     71|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 70, False: 1]
  |  |  |  Branch (20:51): [True: 66, False: 4]
  |  |  ------------------
  ------------------
  201|       |                /* invalid continuation byte */
  202|      5|                goto InvalidContinuation1;
  203|      5|            }
  204|     66|            if (ch == 0xF0) {
  ------------------
  |  Branch (204:17): [True: 12, False: 54]
  ------------------
  205|     12|                if (ch2 < 0x90)
  ------------------
  |  Branch (205:21): [True: 7, False: 5]
  ------------------
  206|       |                    /* invalid sequence
  207|       |                       \xF0\x80\x80\x80-\xF0\x8F\xBF\xBF -- fake 0000-FFFF */
  208|      7|                    goto InvalidContinuation1;
  209|     54|            } else if (ch == 0xF4 && ch2 >= 0x90) {
  ------------------
  |  Branch (209:24): [True: 29, False: 25]
  |  Branch (209:38): [True: 3, False: 26]
  ------------------
  210|       |                /* invalid sequence
  211|       |                   \xF4\x90\x80\x80- -- 110000- overflow */
  212|      3|                goto InvalidContinuation1;
  213|      3|            }
  214|     56|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|     56|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 54, False: 2]
  |  |  |  Branch (20:51): [True: 50, False: 4]
  |  |  ------------------
  ------------------
  215|       |                /* invalid continuation byte */
  216|      6|                goto InvalidContinuation2;
  217|      6|            }
  218|     50|            if (!IS_CONTINUATION_BYTE(ch4)) {
  ------------------
  |  |   20|     50|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 45, False: 5]
  |  |  |  Branch (20:51): [True: 41, False: 4]
  |  |  ------------------
  ------------------
  219|       |                /* invalid continuation byte */
  220|      9|                goto InvalidContinuation3;
  221|      9|            }
  222|     41|            ch = (ch << 18) + (ch2 << 12) + (ch3 << 6) + ch4 -
  223|     41|                 ((0xF0 << 18) + (0x80 << 12) + (0x80 << 6) + 0x80);
  224|     41|            assert ((ch > 0xFFFF) && (ch <= 0x10FFFF));
  ------------------
  |  Branch (224:13): [True: 41, False: 0]
  |  Branch (224:13): [True: 41, False: 0]
  ------------------
  225|     41|            s += 4;
  226|     41|            if (STRINGLIB_MAX_CHAR <= 0xFFFF ||
  ------------------
  |  |   10|     41|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
  |  Branch (226:17): [True: 41, Folded]
  ------------------
  227|      0|                (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFu
  ------------------
  |  Branch (227:18): [True: 0, Folded]
  |  Branch (227:51): [True: 0, False: 0]
  ------------------
  228|       |                /* Out-of-range */
  229|     41|                goto Return;
  230|      0|            *p++ = ch;
  231|      0|            continue;
  232|     41|        }
  233|     15|        goto InvalidStart;
  234|    128|    }
  235|    108|    ch = 0;
  236|    293|Return:
  237|    293|    *inptr = s;
  238|    293|    *outpos = p - dest;
  239|    293|    return ch;
  240|     29|InvalidStart:
  241|     29|    ch = 1;
  242|     29|    goto Return;
  243|     58|InvalidContinuation1:
  244|     58|    ch = 2;
  245|     58|    goto Return;
  246|     16|InvalidContinuation2:
  247|     16|    ch = 3;
  248|     16|    goto Return;
  249|      9|InvalidContinuation3:
  250|      9|    ch = 4;
  251|      9|    goto Return;
  252|    108|}
unicodeobject.c:ucs2lib_utf8_decode:
   26|  10.3k|{
   27|  10.3k|    Py_UCS4 ch;
   28|  10.3k|    const char *s = *inptr;
   29|  10.3k|    STRINGLIB_CHAR *p = dest + *outpos;
  ------------------
  |  |   11|  10.3k|#define STRINGLIB_CHAR           Py_UCS2
  ------------------
   30|       |
   31|  13.6k|    while (s < end) {
  ------------------
  |  Branch (31:12): [True: 13.3k, False: 251]
  ------------------
   32|  13.3k|        ch = (unsigned char)*s;
   33|       |
   34|  13.3k|        if (ch < 0x80) {
  ------------------
  |  Branch (34:13): [True: 2.71k, False: 10.6k]
  ------------------
   35|       |            /* Fast path for runs of ASCII characters. Given that common UTF-8
   36|       |               input will consist of an overwhelming majority of ASCII
   37|       |               characters, we try to optimize for this case by checking
   38|       |               as many characters as a C 'size_t' can contain.
   39|       |               First, check if we can do an aligned read, as most CPUs have
   40|       |               a penalty for unaligned reads.
   41|       |            */
   42|  2.71k|            if (_Py_IS_ALIGNED(s, ALIGNOF_SIZE_T)) {
  ------------------
  |  |  221|  2.71k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 314, False: 2.40k]
  |  |  ------------------
  ------------------
   43|       |                /* Help register allocation */
   44|    314|                const char *_s = s;
   45|    314|                STRINGLIB_CHAR *_p = p;
  ------------------
  |  |   11|    314|#define STRINGLIB_CHAR           Py_UCS2
  ------------------
   46|    497|                while (_s + SIZEOF_SIZE_T <= end) {
  ------------------
  |  | 1838|    497|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (46:24): [True: 417, False: 80]
  ------------------
   47|       |                    /* Read a whole size_t at a time (either 4 or 8 bytes),
   48|       |                       and do a fast unrolled copy if it only contains ASCII
   49|       |                       characters. */
   50|    417|                    size_t value = *(const size_t *) _s;
   51|    417|                    if (value & ASCII_CHAR_MASK)
  ------------------
  |  |   12|    417|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
  |  Branch (51:25): [True: 234, False: 183]
  ------------------
   52|    234|                        break;
   53|    183|#if PY_LITTLE_ENDIAN
   54|    183|                    _p[0] = (STRINGLIB_CHAR)(value & 0xFFu);
   55|    183|                    _p[1] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   56|    183|                    _p[2] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   57|    183|                    _p[3] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   58|    183|# if SIZEOF_SIZE_T == 8
   59|    183|                    _p[4] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   60|    183|                    _p[5] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   61|    183|                    _p[6] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   62|    183|                    _p[7] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   63|    183|# endif
   64|       |#else
   65|       |# if SIZEOF_SIZE_T == 8
   66|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   67|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   68|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   69|       |                    _p[3] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   70|       |                    _p[4] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   71|       |                    _p[5] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   72|       |                    _p[6] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   73|       |                    _p[7] = (STRINGLIB_CHAR)(value & 0xFFu);
   74|       |# else
   75|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   76|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   77|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   78|       |                    _p[3] = (STRINGLIB_CHAR)(value & 0xFFu);
   79|       |# endif
   80|       |#endif
   81|    183|                    _s += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|    183|#define SIZEOF_SIZE_T 8
  ------------------
   82|    183|                    _p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|    183|#define SIZEOF_SIZE_T 8
  ------------------
   83|    183|                }
   84|    314|                s = _s;
   85|    314|                p = _p;
   86|    314|                if (s == end)
  ------------------
  |  Branch (86:21): [True: 9, False: 305]
  ------------------
   87|      9|                    break;
   88|    305|                ch = (unsigned char)*s;
   89|    305|            }
   90|  2.70k|            if (ch < 0x80) {
  ------------------
  |  Branch (90:17): [True: 2.67k, False: 29]
  ------------------
   91|  2.67k|                s++;
   92|  2.67k|                *p++ = ch;
   93|  2.67k|                continue;
   94|  2.67k|            }
   95|  2.70k|        }
   96|       |
   97|  10.7k|        if (ch < 0xE0) {
  ------------------
  |  Branch (97:13): [True: 3.20k, False: 7.51k]
  ------------------
   98|       |            /* \xC2\x80-\xDF\xBF -- 0080-07FF */
   99|  3.20k|            Py_UCS4 ch2;
  100|  3.20k|            if (ch < 0xC2) {
  ------------------
  |  Branch (100:17): [True: 1.77k, False: 1.42k]
  ------------------
  101|       |                /* invalid sequence
  102|       |                \x80-\xBF -- continuation byte
  103|       |                \xC0-\xC1 -- fake 0000-007F */
  104|  1.77k|                goto InvalidStart;
  105|  1.77k|            }
  106|  1.42k|            if (end - s < 2) {
  ------------------
  |  Branch (106:17): [True: 39, False: 1.38k]
  ------------------
  107|       |                /* unexpected end of data: the caller will decide whether
  108|       |                   it's an error or not */
  109|     39|                break;
  110|     39|            }
  111|  1.38k|            ch2 = (unsigned char)s[1];
  112|  1.38k|            if (!IS_CONTINUATION_BYTE(ch2))
  ------------------
  |  |   20|  1.38k|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 1.20k, False: 180]
  |  |  |  Branch (20:51): [True: 404, False: 800]
  |  |  ------------------
  ------------------
  113|       |                /* invalid continuation byte */
  114|    980|                goto InvalidContinuation1;
  115|    404|            ch = (ch << 6) + ch2 -
  116|    404|                 ((0xC0 << 6) + 0x80);
  117|    404|            assert ((ch > 0x007F) && (ch <= 0x07FF));
  ------------------
  |  Branch (117:13): [True: 404, False: 0]
  |  Branch (117:13): [True: 404, False: 0]
  ------------------
  118|    404|            s += 2;
  119|    404|            if (STRINGLIB_MAX_CHAR <= 0x007F ||
  ------------------
  |  |   10|    404|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
  |  Branch (119:17): [Folded, False: 0]
  ------------------
  120|      0|                (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
  |  Branch (120:18): [Folded, False: 0]
  |  Branch (120:49): [True: 0, False: 0]
  ------------------
  121|       |                /* Out-of-range */
  122|      0|                goto Return;
  123|    404|            *p++ = ch;
  124|    404|            continue;
  125|    404|        }
  126|       |
  127|  7.51k|        if (ch < 0xF0) {
  ------------------
  |  Branch (127:13): [True: 2.54k, False: 4.96k]
  ------------------
  128|       |            /* \xE0\xA0\x80-\xEF\xBF\xBF -- 0800-FFFF */
  129|  2.54k|            Py_UCS4 ch2, ch3;
  130|  2.54k|            if (end - s < 3) {
  ------------------
  |  Branch (130:17): [True: 90, False: 2.45k]
  ------------------
  131|       |                /* unexpected end of data: the caller will decide whether
  132|       |                   it's an error or not */
  133|     90|                if (end - s < 2)
  ------------------
  |  Branch (133:21): [True: 48, False: 42]
  ------------------
  134|     48|                    break;
  135|     42|                ch2 = (unsigned char)s[1];
  136|     42|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|     84|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 32, False: 10]
  |  |  |  Branch (20:51): [True: 18, False: 14]
  |  |  ------------------
  ------------------
  137|     18|                    (ch2 < 0xA0 ? ch == 0xE0 : ch == 0xED))
  ------------------
  |  Branch (137:21): [True: 5, False: 13]
  |  Branch (137:22): [True: 9, False: 9]
  ------------------
  138|       |                    /* for clarification see comments below */
  139|     29|                    goto InvalidContinuation1;
  140|     13|                break;
  141|     42|            }
  142|  2.45k|            ch2 = (unsigned char)s[1];
  143|  2.45k|            ch3 = (unsigned char)s[2];
  144|  2.45k|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|  2.45k|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 2.31k, False: 141]
  |  |  |  Branch (20:51): [True: 963, False: 1.35k]
  |  |  ------------------
  ------------------
  145|       |                /* invalid continuation byte */
  146|  1.49k|                goto InvalidContinuation1;
  147|  1.49k|            }
  148|    963|            if (ch == 0xE0) {
  ------------------
  |  Branch (148:17): [True: 285, False: 678]
  ------------------
  149|    285|                if (ch2 < 0xA0)
  ------------------
  |  Branch (149:21): [True: 177, False: 108]
  ------------------
  150|       |                    /* invalid sequence
  151|       |                       \xE0\x80\x80-\xE0\x9F\xBF -- fake 0000-0800 */
  152|    177|                    goto InvalidContinuation1;
  153|    678|            } else if (ch == 0xED && ch2 >= 0xA0) {
  ------------------
  |  Branch (153:24): [True: 359, False: 319]
  |  Branch (153:38): [True: 164, False: 195]
  ------------------
  154|       |                /* Decoding UTF-8 sequences in range \xED\xA0\x80-\xED\xBF\xBF
  155|       |                   will result in surrogates in range D800-DFFF. Surrogates are
  156|       |                   not valid UTF-8 so they are rejected.
  157|       |                   See https://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
  158|       |                   (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */
  159|    164|                goto InvalidContinuation1;
  160|    164|            }
  161|    622|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|    622|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 536, False: 86]
  |  |  |  Branch (20:51): [True: 214, False: 322]
  |  |  ------------------
  ------------------
  162|       |                /* invalid continuation byte */
  163|    408|                goto InvalidContinuation2;
  164|    408|            }
  165|    214|            ch = (ch << 12) + (ch2 << 6) + ch3 -
  166|    214|                 ((0xE0 << 12) + (0x80 << 6) + 0x80);
  167|    214|            assert ((ch > 0x07FF) && (ch <= 0xFFFF));
  ------------------
  |  Branch (167:13): [True: 214, False: 0]
  |  Branch (167:13): [True: 214, False: 0]
  ------------------
  168|    214|            s += 3;
  169|    214|            if (STRINGLIB_MAX_CHAR <= 0x07FF ||
  ------------------
  |  |   10|    214|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
  |  Branch (169:17): [Folded, False: 0]
  ------------------
  170|      0|                (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
  |  Branch (170:18): [Folded, False: 0]
  |  Branch (170:49): [True: 0, False: 0]
  ------------------
  171|       |                /* Out-of-range */
  172|      0|                goto Return;
  173|    214|            *p++ = ch;
  174|    214|            continue;
  175|    214|        }
  176|       |
  177|  4.96k|        if (ch < 0xF5) {
  ------------------
  |  Branch (177:13): [True: 2.73k, False: 2.23k]
  ------------------
  178|       |            /* \xF0\x90\x80\x80-\xF4\x8F\xBF\xBF -- 10000-10FFFF */
  179|  2.73k|            Py_UCS4 ch2, ch3, ch4;
  180|  2.73k|            if (end - s < 4) {
  ------------------
  |  Branch (180:17): [True: 161, False: 2.57k]
  ------------------
  181|       |                /* unexpected end of data: the caller will decide whether
  182|       |                   it's an error or not */
  183|    161|                if (end - s < 2)
  ------------------
  |  Branch (183:21): [True: 62, False: 99]
  ------------------
  184|     62|                    break;
  185|     99|                ch2 = (unsigned char)s[1];
  186|     99|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|    198|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 84, False: 15]
  |  |  |  Branch (20:51): [True: 46, False: 38]
  |  |  ------------------
  ------------------
  187|     46|                    (ch2 < 0x90 ? ch == 0xF0 : ch == 0xF4))
  ------------------
  |  Branch (187:21): [True: 14, False: 32]
  |  Branch (187:22): [True: 20, False: 26]
  ------------------
  188|       |                    /* for clarification see comments below */
  189|     67|                    goto InvalidContinuation1;
  190|     32|                if (end - s < 3)
  ------------------
  |  Branch (190:21): [True: 13, False: 19]
  ------------------
  191|     13|                    break;
  192|     19|                ch3 = (unsigned char)s[2];
  193|     19|                if (!IS_CONTINUATION_BYTE(ch3))
  ------------------
  |  |   20|     19|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 13, False: 6]
  |  |  |  Branch (20:51): [True: 4, False: 9]
  |  |  ------------------
  ------------------
  194|     15|                    goto InvalidContinuation2;
  195|      4|                break;
  196|     19|            }
  197|  2.57k|            ch2 = (unsigned char)s[1];
  198|  2.57k|            ch3 = (unsigned char)s[2];
  199|  2.57k|            ch4 = (unsigned char)s[3];
  200|  2.57k|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|  2.57k|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 2.46k, False: 113]
  |  |  |  Branch (20:51): [True: 1.25k, False: 1.21k]
  |  |  ------------------
  ------------------
  201|       |                /* invalid continuation byte */
  202|  1.32k|                goto InvalidContinuation1;
  203|  1.32k|            }
  204|  1.25k|            if (ch == 0xF0) {
  ------------------
  |  Branch (204:17): [True: 460, False: 790]
  ------------------
  205|    460|                if (ch2 < 0x90)
  ------------------
  |  Branch (205:21): [True: 157, False: 303]
  ------------------
  206|       |                    /* invalid sequence
  207|       |                       \xF0\x80\x80\x80-\xF0\x8F\xBF\xBF -- fake 0000-FFFF */
  208|    157|                    goto InvalidContinuation1;
  209|    790|            } else if (ch == 0xF4 && ch2 >= 0x90) {
  ------------------
  |  Branch (209:24): [True: 461, False: 329]
  |  Branch (209:38): [True: 141, False: 320]
  ------------------
  210|       |                /* invalid sequence
  211|       |                   \xF4\x90\x80\x80- -- 110000- overflow */
  212|    141|                goto InvalidContinuation1;
  213|    141|            }
  214|    952|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|    952|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 832, False: 120]
  |  |  |  Branch (20:51): [True: 447, False: 385]
  |  |  ------------------
  ------------------
  215|       |                /* invalid continuation byte */
  216|    505|                goto InvalidContinuation2;
  217|    505|            }
  218|    447|            if (!IS_CONTINUATION_BYTE(ch4)) {
  ------------------
  |  |   20|    447|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 369, False: 78]
  |  |  |  Branch (20:51): [True: 112, False: 257]
  |  |  ------------------
  ------------------
  219|       |                /* invalid continuation byte */
  220|    335|                goto InvalidContinuation3;
  221|    335|            }
  222|    112|            ch = (ch << 18) + (ch2 << 12) + (ch3 << 6) + ch4 -
  223|    112|                 ((0xF0 << 18) + (0x80 << 12) + (0x80 << 6) + 0x80);
  224|    112|            assert ((ch > 0xFFFF) && (ch <= 0x10FFFF));
  ------------------
  |  Branch (224:13): [True: 112, False: 0]
  |  Branch (224:13): [True: 112, False: 0]
  ------------------
  225|    112|            s += 4;
  226|    112|            if (STRINGLIB_MAX_CHAR <= 0xFFFF ||
  ------------------
  |  |   10|    112|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
  |  Branch (226:17): [True: 112, Folded]
  ------------------
  227|      0|                (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0xFFFFu
  ------------------
  |  Branch (227:18): [True: 0, Folded]
  |  Branch (227:51): [True: 0, False: 0]
  ------------------
  228|       |                /* Out-of-range */
  229|    112|                goto Return;
  230|      0|            *p++ = ch;
  231|      0|            continue;
  232|    112|        }
  233|  2.23k|        goto InvalidStart;
  234|  4.96k|    }
  235|    439|    ch = 0;
  236|  10.3k|Return:
  237|  10.3k|    *inptr = s;
  238|  10.3k|    *outpos = p - dest;
  239|  10.3k|    return ch;
  240|  4.00k|InvalidStart:
  241|  4.00k|    ch = 1;
  242|  4.00k|    goto Return;
  243|  4.53k|InvalidContinuation1:
  244|  4.53k|    ch = 2;
  245|  4.53k|    goto Return;
  246|    928|InvalidContinuation2:
  247|    928|    ch = 3;
  248|    928|    goto Return;
  249|    335|InvalidContinuation3:
  250|    335|    ch = 4;
  251|    335|    goto Return;
  252|    439|}
unicodeobject.c:ucs4lib_utf8_decode:
   26|  9.13k|{
   27|  9.13k|    Py_UCS4 ch;
   28|  9.13k|    const char *s = *inptr;
   29|  9.13k|    STRINGLIB_CHAR *p = dest + *outpos;
  ------------------
  |  |   11|  9.13k|#define STRINGLIB_CHAR           Py_UCS4
  ------------------
   30|       |
   31|  11.7k|    while (s < end) {
  ------------------
  |  Branch (31:12): [True: 11.5k, False: 223]
  ------------------
   32|  11.5k|        ch = (unsigned char)*s;
   33|       |
   34|  11.5k|        if (ch < 0x80) {
  ------------------
  |  Branch (34:13): [True: 2.04k, False: 9.48k]
  ------------------
   35|       |            /* Fast path for runs of ASCII characters. Given that common UTF-8
   36|       |               input will consist of an overwhelming majority of ASCII
   37|       |               characters, we try to optimize for this case by checking
   38|       |               as many characters as a C 'size_t' can contain.
   39|       |               First, check if we can do an aligned read, as most CPUs have
   40|       |               a penalty for unaligned reads.
   41|       |            */
   42|  2.04k|            if (_Py_IS_ALIGNED(s, ALIGNOF_SIZE_T)) {
  ------------------
  |  |  221|  2.04k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 233, False: 1.81k]
  |  |  ------------------
  ------------------
   43|       |                /* Help register allocation */
   44|    233|                const char *_s = s;
   45|    233|                STRINGLIB_CHAR *_p = p;
  ------------------
  |  |   11|    233|#define STRINGLIB_CHAR           Py_UCS4
  ------------------
   46|    387|                while (_s + SIZEOF_SIZE_T <= end) {
  ------------------
  |  | 1838|    387|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (46:24): [True: 327, False: 60]
  ------------------
   47|       |                    /* Read a whole size_t at a time (either 4 or 8 bytes),
   48|       |                       and do a fast unrolled copy if it only contains ASCII
   49|       |                       characters. */
   50|    327|                    size_t value = *(const size_t *) _s;
   51|    327|                    if (value & ASCII_CHAR_MASK)
  ------------------
  |  |   12|    327|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
  |  Branch (51:25): [True: 173, False: 154]
  ------------------
   52|    173|                        break;
   53|    154|#if PY_LITTLE_ENDIAN
   54|    154|                    _p[0] = (STRINGLIB_CHAR)(value & 0xFFu);
   55|    154|                    _p[1] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   56|    154|                    _p[2] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   57|    154|                    _p[3] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   58|    154|# if SIZEOF_SIZE_T == 8
   59|    154|                    _p[4] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   60|    154|                    _p[5] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   61|    154|                    _p[6] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   62|    154|                    _p[7] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   63|    154|# endif
   64|       |#else
   65|       |# if SIZEOF_SIZE_T == 8
   66|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu);
   67|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu);
   68|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu);
   69|       |                    _p[3] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu);
   70|       |                    _p[4] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   71|       |                    _p[5] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   72|       |                    _p[6] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   73|       |                    _p[7] = (STRINGLIB_CHAR)(value & 0xFFu);
   74|       |# else
   75|       |                    _p[0] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu);
   76|       |                    _p[1] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu);
   77|       |                    _p[2] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu);
   78|       |                    _p[3] = (STRINGLIB_CHAR)(value & 0xFFu);
   79|       |# endif
   80|       |#endif
   81|    154|                    _s += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|    154|#define SIZEOF_SIZE_T 8
  ------------------
   82|    154|                    _p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|    154|#define SIZEOF_SIZE_T 8
  ------------------
   83|    154|                }
   84|    233|                s = _s;
   85|    233|                p = _p;
   86|    233|                if (s == end)
  ------------------
  |  Branch (86:21): [True: 7, False: 226]
  ------------------
   87|      7|                    break;
   88|    226|                ch = (unsigned char)*s;
   89|    226|            }
   90|  2.03k|            if (ch < 0x80) {
  ------------------
  |  Branch (90:17): [True: 2.01k, False: 23]
  ------------------
   91|  2.01k|                s++;
   92|  2.01k|                *p++ = ch;
   93|  2.01k|                continue;
   94|  2.01k|            }
   95|  2.03k|        }
   96|       |
   97|  9.50k|        if (ch < 0xE0) {
  ------------------
  |  Branch (97:13): [True: 3.97k, False: 5.53k]
  ------------------
   98|       |            /* \xC2\x80-\xDF\xBF -- 0080-07FF */
   99|  3.97k|            Py_UCS4 ch2;
  100|  3.97k|            if (ch < 0xC2) {
  ------------------
  |  Branch (100:17): [True: 2.32k, False: 1.65k]
  ------------------
  101|       |                /* invalid sequence
  102|       |                \x80-\xBF -- continuation byte
  103|       |                \xC0-\xC1 -- fake 0000-007F */
  104|  2.32k|                goto InvalidStart;
  105|  2.32k|            }
  106|  1.65k|            if (end - s < 2) {
  ------------------
  |  Branch (106:17): [True: 33, False: 1.61k]
  ------------------
  107|       |                /* unexpected end of data: the caller will decide whether
  108|       |                   it's an error or not */
  109|     33|                break;
  110|     33|            }
  111|  1.61k|            ch2 = (unsigned char)s[1];
  112|  1.61k|            if (!IS_CONTINUATION_BYTE(ch2))
  ------------------
  |  |   20|  1.61k|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 1.46k, False: 151]
  |  |  |  Branch (20:51): [True: 204, False: 1.26k]
  |  |  ------------------
  ------------------
  113|       |                /* invalid continuation byte */
  114|  1.41k|                goto InvalidContinuation1;
  115|    204|            ch = (ch << 6) + ch2 -
  116|    204|                 ((0xC0 << 6) + 0x80);
  117|    204|            assert ((ch > 0x007F) && (ch <= 0x07FF));
  ------------------
  |  Branch (117:13): [True: 204, False: 0]
  |  Branch (117:13): [True: 204, False: 0]
  ------------------
  118|    204|            s += 2;
  119|    204|            if (STRINGLIB_MAX_CHAR <= 0x007F ||
  ------------------
  |  |   10|    204|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
  |  Branch (119:17): [Folded, False: 0]
  ------------------
  120|      0|                (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x07FF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
  |  Branch (120:18): [Folded, False: 0]
  |  Branch (120:49): [True: 0, False: 0]
  ------------------
  121|       |                /* Out-of-range */
  122|      0|                goto Return;
  123|    204|            *p++ = ch;
  124|    204|            continue;
  125|    204|        }
  126|       |
  127|  5.53k|        if (ch < 0xF0) {
  ------------------
  |  Branch (127:13): [True: 1.69k, False: 3.83k]
  ------------------
  128|       |            /* \xE0\xA0\x80-\xEF\xBF\xBF -- 0800-FFFF */
  129|  1.69k|            Py_UCS4 ch2, ch3;
  130|  1.69k|            if (end - s < 3) {
  ------------------
  |  Branch (130:17): [True: 88, False: 1.60k]
  ------------------
  131|       |                /* unexpected end of data: the caller will decide whether
  132|       |                   it's an error or not */
  133|     88|                if (end - s < 2)
  ------------------
  |  Branch (133:21): [True: 42, False: 46]
  ------------------
  134|     42|                    break;
  135|     46|                ch2 = (unsigned char)s[1];
  136|     46|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|     92|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 39, False: 7]
  |  |  |  Branch (20:51): [True: 30, False: 9]
  |  |  ------------------
  ------------------
  137|     30|                    (ch2 < 0xA0 ? ch == 0xE0 : ch == 0xED))
  ------------------
  |  Branch (137:21): [True: 11, False: 19]
  |  Branch (137:22): [True: 16, False: 14]
  ------------------
  138|       |                    /* for clarification see comments below */
  139|     27|                    goto InvalidContinuation1;
  140|     19|                break;
  141|     46|            }
  142|  1.60k|            ch2 = (unsigned char)s[1];
  143|  1.60k|            ch3 = (unsigned char)s[2];
  144|  1.60k|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|  1.60k|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 1.49k, False: 110]
  |  |  |  Branch (20:51): [True: 819, False: 677]
  |  |  ------------------
  ------------------
  145|       |                /* invalid continuation byte */
  146|    787|                goto InvalidContinuation1;
  147|    787|            }
  148|    819|            if (ch == 0xE0) {
  ------------------
  |  Branch (148:17): [True: 293, False: 526]
  ------------------
  149|    293|                if (ch2 < 0xA0)
  ------------------
  |  Branch (149:21): [True: 114, False: 179]
  ------------------
  150|       |                    /* invalid sequence
  151|       |                       \xE0\x80\x80-\xE0\x9F\xBF -- fake 0000-0800 */
  152|    114|                    goto InvalidContinuation1;
  153|    526|            } else if (ch == 0xED && ch2 >= 0xA0) {
  ------------------
  |  Branch (153:24): [True: 216, False: 310]
  |  Branch (153:38): [True: 75, False: 141]
  ------------------
  154|       |                /* Decoding UTF-8 sequences in range \xED\xA0\x80-\xED\xBF\xBF
  155|       |                   will result in surrogates in range D800-DFFF. Surrogates are
  156|       |                   not valid UTF-8 so they are rejected.
  157|       |                   See https://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
  158|       |                   (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */
  159|     75|                goto InvalidContinuation1;
  160|     75|            }
  161|    630|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|    630|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 545, False: 85]
  |  |  |  Branch (20:51): [True: 164, False: 381]
  |  |  ------------------
  ------------------
  162|       |                /* invalid continuation byte */
  163|    466|                goto InvalidContinuation2;
  164|    466|            }
  165|    164|            ch = (ch << 12) + (ch2 << 6) + ch3 -
  166|    164|                 ((0xE0 << 12) + (0x80 << 6) + 0x80);
  167|    164|            assert ((ch > 0x07FF) && (ch <= 0xFFFF));
  ------------------
  |  Branch (167:13): [True: 164, False: 0]
  |  Branch (167:13): [True: 164, False: 0]
  ------------------
  168|    164|            s += 3;
  169|    164|            if (STRINGLIB_MAX_CHAR <= 0x07FF ||
  ------------------
  |  |   10|    164|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
  |  Branch (169:17): [Folded, False: 0]
  ------------------
  170|      0|                (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0xFFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
  |  Branch (170:18): [Folded, False: 0]
  |  Branch (170:49): [True: 0, False: 0]
  ------------------
  171|       |                /* Out-of-range */
  172|      0|                goto Return;
  173|    164|            *p++ = ch;
  174|    164|            continue;
  175|    164|        }
  176|       |
  177|  3.83k|        if (ch < 0xF5) {
  ------------------
  |  Branch (177:13): [True: 2.39k, False: 1.44k]
  ------------------
  178|       |            /* \xF0\x90\x80\x80-\xF4\x8F\xBF\xBF -- 10000-10FFFF */
  179|  2.39k|            Py_UCS4 ch2, ch3, ch4;
  180|  2.39k|            if (end - s < 4) {
  ------------------
  |  Branch (180:17): [True: 140, False: 2.25k]
  ------------------
  181|       |                /* unexpected end of data: the caller will decide whether
  182|       |                   it's an error or not */
  183|    140|                if (end - s < 2)
  ------------------
  |  Branch (183:21): [True: 51, False: 89]
  ------------------
  184|     51|                    break;
  185|     89|                ch2 = (unsigned char)s[1];
  186|     89|                if (!IS_CONTINUATION_BYTE(ch2) ||
  ------------------
  |  |   20|    178|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 80, False: 9]
  |  |  |  Branch (20:51): [True: 53, False: 27]
  |  |  ------------------
  ------------------
  187|     53|                    (ch2 < 0x90 ? ch == 0xF0 : ch == 0xF4))
  ------------------
  |  Branch (187:21): [True: 10, False: 43]
  |  Branch (187:22): [True: 25, False: 28]
  ------------------
  188|       |                    /* for clarification see comments below */
  189|     46|                    goto InvalidContinuation1;
  190|     43|                if (end - s < 3)
  ------------------
  |  Branch (190:21): [True: 17, False: 26]
  ------------------
  191|     17|                    break;
  192|     26|                ch3 = (unsigned char)s[2];
  193|     26|                if (!IS_CONTINUATION_BYTE(ch3))
  ------------------
  |  |   20|     26|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 19, False: 7]
  |  |  |  Branch (20:51): [True: 11, False: 8]
  |  |  ------------------
  ------------------
  194|     15|                    goto InvalidContinuation2;
  195|     11|                break;
  196|     26|            }
  197|  2.25k|            ch2 = (unsigned char)s[1];
  198|  2.25k|            ch3 = (unsigned char)s[2];
  199|  2.25k|            ch4 = (unsigned char)s[3];
  200|  2.25k|            if (!IS_CONTINUATION_BYTE(ch2)) {
  ------------------
  |  |   20|  2.25k|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 2.13k, False: 118]
  |  |  |  Branch (20:51): [True: 1.40k, False: 730]
  |  |  ------------------
  ------------------
  201|       |                /* invalid continuation byte */
  202|    848|                goto InvalidContinuation1;
  203|    848|            }
  204|  1.40k|            if (ch == 0xF0) {
  ------------------
  |  Branch (204:17): [True: 445, False: 962]
  ------------------
  205|    445|                if (ch2 < 0x90)
  ------------------
  |  Branch (205:21): [True: 163, False: 282]
  ------------------
  206|       |                    /* invalid sequence
  207|       |                       \xF0\x80\x80\x80-\xF0\x8F\xBF\xBF -- fake 0000-FFFF */
  208|    163|                    goto InvalidContinuation1;
  209|    962|            } else if (ch == 0xF4 && ch2 >= 0x90) {
  ------------------
  |  Branch (209:24): [True: 377, False: 585]
  |  Branch (209:38): [True: 88, False: 289]
  ------------------
  210|       |                /* invalid sequence
  211|       |                   \xF4\x90\x80\x80- -- 110000- overflow */
  212|     88|                goto InvalidContinuation1;
  213|     88|            }
  214|  1.15k|            if (!IS_CONTINUATION_BYTE(ch3)) {
  ------------------
  |  |   20|  1.15k|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 1.06k, False: 91]
  |  |  |  Branch (20:51): [True: 499, False: 566]
  |  |  ------------------
  ------------------
  215|       |                /* invalid continuation byte */
  216|    657|                goto InvalidContinuation2;
  217|    657|            }
  218|    499|            if (!IS_CONTINUATION_BYTE(ch4)) {
  ------------------
  |  |   20|    499|#define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
  |  |  ------------------
  |  |  |  Branch (20:35): [True: 427, False: 72]
  |  |  |  Branch (20:51): [True: 239, False: 188]
  |  |  ------------------
  ------------------
  219|       |                /* invalid continuation byte */
  220|    260|                goto InvalidContinuation3;
  221|    260|            }
  222|    239|            ch = (ch << 18) + (ch2 << 12) + (ch3 << 6) + ch4 -
  223|    239|                 ((0xF0 << 18) + (0x80 << 12) + (0x80 << 6) + 0x80);
  224|    239|            assert ((ch > 0xFFFF) && (ch <= 0x10FFFF));
  ------------------
  |  Branch (224:13): [True: 239, False: 0]
  |  Branch (224:13): [True: 239, False: 0]
  ------------------
  225|    239|            s += 4;
  226|    239|            if (STRINGLIB_MAX_CHAR <= 0xFFFF ||
  ------------------
  |  |   10|    239|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
  |  Branch (226:17): [Folded, False: 0]
  ------------------
  227|      0|                (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
                              (STRINGLIB_MAX_CHAR < 0x10FFFF && ch > STRINGLIB_MAX_CHAR))
  ------------------
  |  |   10|      0|#define STRINGLIB_MAX_CHAR       0x10FFFFu
  ------------------
  |  Branch (227:18): [Folded, False: 0]
  |  Branch (227:51): [True: 0, False: 0]
  ------------------
  228|       |                /* Out-of-range */
  229|      0|                goto Return;
  230|    239|            *p++ = ch;
  231|    239|            continue;
  232|    239|        }
  233|  1.44k|        goto InvalidStart;
  234|  3.83k|    }
  235|    403|    ch = 0;
  236|  9.13k|Return:
  237|  9.13k|    *inptr = s;
  238|  9.13k|    *outpos = p - dest;
  239|  9.13k|    return ch;
  240|  3.76k|InvalidStart:
  241|  3.76k|    ch = 1;
  242|  3.76k|    goto Return;
  243|  3.56k|InvalidContinuation1:
  244|  3.56k|    ch = 2;
  245|  3.56k|    goto Return;
  246|  1.13k|InvalidContinuation2:
  247|  1.13k|    ch = 3;
  248|  1.13k|    goto Return;
  249|    260|InvalidContinuation3:
  250|    260|    ch = 4;
  251|    260|    goto Return;
  252|    403|}

dictobject.c:unicode_eq:
    8|  2.70k|{
    9|  2.70k|    Py_ssize_t len = PyUnicode_GET_LENGTH(str1);
  ------------------
  |  |  299|  2.70k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.70k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.70k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   10|  2.70k|    if (PyUnicode_GET_LENGTH(str2) != len) {
  ------------------
  |  |  299|  2.70k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.70k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.70k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (10:9): [True: 0, False: 2.70k]
  ------------------
   11|      0|        return 0;
   12|      0|    }
   13|       |
   14|  2.70k|    int kind = PyUnicode_KIND(str1);
  ------------------
  |  |  258|  2.70k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  5.40k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 2.70k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   15|  5.40k|    if (PyUnicode_KIND(str2) != kind) {
  ------------------
  |  |  258|  2.70k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  5.40k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 2.70k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (15:9): [True: 0, False: 2.70k]
  ------------------
   16|      0|        return 0;
   17|      0|    }
   18|       |
   19|  2.70k|    const void *data1 = PyUnicode_DATA(str1);
  ------------------
  |  |  284|  2.70k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.70k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.70k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   20|  2.70k|    const void *data2 = PyUnicode_DATA(str2);
  ------------------
  |  |  284|  2.70k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.70k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.70k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   21|  2.70k|    return (memcmp(data1, data2, len * kind) == 0);
   22|  2.70k|}
setobject.c:unicode_eq:
    8|      2|{
    9|      2|    Py_ssize_t len = PyUnicode_GET_LENGTH(str1);
  ------------------
  |  |  299|      2|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   10|      2|    if (PyUnicode_GET_LENGTH(str2) != len) {
  ------------------
  |  |  299|      2|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (10:9): [True: 0, False: 2]
  ------------------
   11|      0|        return 0;
   12|      0|    }
   13|       |
   14|      2|    int kind = PyUnicode_KIND(str1);
  ------------------
  |  |  258|      2|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      4|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   15|      4|    if (PyUnicode_KIND(str2) != kind) {
  ------------------
  |  |  258|      2|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      4|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (15:9): [True: 0, False: 2]
  ------------------
   16|      0|        return 0;
   17|      0|    }
   18|       |
   19|      2|    const void *data1 = PyUnicode_DATA(str1);
  ------------------
  |  |  284|      2|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   20|      2|    const void *data2 = PyUnicode_DATA(str2);
  ------------------
  |  |  284|      2|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   21|      2|    return (memcmp(data1, data2, len * kind) == 0);
   22|      2|}
unicodeobject.c:unicode_eq:
    8|  9.11k|{
    9|  9.11k|    Py_ssize_t len = PyUnicode_GET_LENGTH(str1);
  ------------------
  |  |  299|  9.11k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  9.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   10|  9.11k|    if (PyUnicode_GET_LENGTH(str2) != len) {
  ------------------
  |  |  299|  9.11k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  9.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (10:9): [True: 2.40k, False: 6.71k]
  ------------------
   11|  2.40k|        return 0;
   12|  2.40k|    }
   13|       |
   14|  6.71k|    int kind = PyUnicode_KIND(str1);
  ------------------
  |  |  258|  6.71k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  13.4k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 6.71k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   15|  13.4k|    if (PyUnicode_KIND(str2) != kind) {
  ------------------
  |  |  258|  6.71k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  13.4k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 6.71k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (15:9): [True: 0, False: 6.71k]
  ------------------
   16|      0|        return 0;
   17|      0|    }
   18|       |
   19|  6.71k|    const void *data1 = PyUnicode_DATA(str1);
  ------------------
  |  |  284|  6.71k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.71k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.71k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   20|  6.71k|    const void *data2 = PyUnicode_DATA(str2);
  ------------------
  |  |  284|  6.71k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.71k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.71k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   21|  6.71k|    return (memcmp(data1, data2, len * kind) == 0);
   22|  6.71k|}

unicodeobject.c:ucs1lib_find_char:
   51|    254|{
   52|    254|    const STRINGLIB_CHAR *p, *e;
   53|       |
   54|    254|    p = s;
   55|    254|    e = s + n;
   56|    254|    if (n > MEMCHR_CUT_OFF) {
  ------------------
  |  |   44|    254|#  define MEMCHR_CUT_OFF 15
  ------------------
  |  Branch (56:9): [True: 22, False: 232]
  ------------------
   57|     22|#ifdef STRINGLIB_FAST_MEMCHR
   58|     22|        p = STRINGLIB_FAST_MEMCHR(s, ch, n);
  ------------------
  |  |   23|     22|#define STRINGLIB_FAST_MEMCHR    memchr
  ------------------
   59|     22|        if (p != NULL)
  ------------------
  |  Branch (59:13): [True: 10, False: 12]
  ------------------
   60|     10|            return (p - s);
   61|     12|        return -1;
   62|       |#else
   63|       |        /* use memchr if we can choose a needle without too many likely
   64|       |           false positives */
   65|       |        const STRINGLIB_CHAR *s1, *e1;
   66|       |        unsigned char needle = ch & 0xff;
   67|       |        /* If looking for a multiple of 256, we'd have too
   68|       |           many false positives looking for the '\0' byte in UCS2
   69|       |           and UCS4 representations. */
   70|       |        if (needle != 0) {
   71|       |            do {
   72|       |                const void *candidate = memchr(p, needle,
   73|       |                                               (e - p) * sizeof(STRINGLIB_CHAR));
   74|       |                if (candidate == NULL)
   75|       |                    return -1;
   76|       |                s1 = p;
   77|       |                p = (const STRINGLIB_CHAR *)
   78|       |                        _Py_ALIGN_DOWN(candidate, sizeof(STRINGLIB_CHAR));
   79|       |                if (*p == ch)
   80|       |                    return (p - s);
   81|       |                /* False positive */
   82|       |                p++;
   83|       |                if (p - s1 > MEMCHR_CUT_OFF)
   84|       |                    continue;
   85|       |                if (e - p <= MEMCHR_CUT_OFF)
   86|       |                    break;
   87|       |                e1 = p + MEMCHR_CUT_OFF;
   88|       |                while (p != e1) {
   89|       |                    if (*p == ch)
   90|       |                        return (p - s);
   91|       |                    p++;
   92|       |                }
   93|       |            }
   94|       |            while (e - p > MEMCHR_CUT_OFF);
   95|       |        }
   96|       |#endif
   97|     22|    }
   98|  1.34k|    while (p < e) {
  ------------------
  |  Branch (98:12): [True: 1.12k, False: 222]
  ------------------
   99|  1.12k|        if (*p == ch)
  ------------------
  |  Branch (99:13): [True: 10, False: 1.11k]
  ------------------
  100|     10|            return (p - s);
  101|  1.11k|        p++;
  102|  1.11k|    }
  103|    222|    return -1;
  104|    232|}
unicodeobject.c:ucs1lib_rfind_char:
  117|     26|{
  118|     26|    const STRINGLIB_CHAR *p;
  119|     26|#ifdef HAVE_MEMRCHR
  120|       |    /* memrchr() is a GNU extension, available since glibc 2.1.91.  it
  121|       |       doesn't seem as optimized as memchr(), but is still quite
  122|       |       faster than our hand-written loop below. There is no wmemrchr
  123|       |       for 4-byte chars. */
  124|       |
  125|     26|    if (n > MEMRCHR_CUT_OFF) {
  ------------------
  |  |  109|     26|#  define MEMRCHR_CUT_OFF 15
  ------------------
  |  Branch (125:9): [True: 14, False: 12]
  ------------------
  126|     14|#if STRINGLIB_SIZEOF_CHAR == 1
  127|     14|        p = memrchr(s, ch, n);
  128|     14|        if (p != NULL)
  ------------------
  |  Branch (128:13): [True: 14, False: 0]
  ------------------
  129|     14|            return (p - s);
  130|      0|        return -1;
  131|       |#else
  132|       |        /* use memrchr if we can choose a needle without too many likely
  133|       |           false positives */
  134|       |        const STRINGLIB_CHAR *s1;
  135|       |        Py_ssize_t n1;
  136|       |        unsigned char needle = ch & 0xff;
  137|       |        /* If looking for a multiple of 256, we'd have too
  138|       |           many false positives looking for the '\0' byte in UCS2
  139|       |           and UCS4 representations. */
  140|       |        if (needle != 0) {
  141|       |            do {
  142|       |                void *candidate = memrchr(s, needle,
  143|       |                                          n * sizeof(STRINGLIB_CHAR));
  144|       |                if (candidate == NULL)
  145|       |                    return -1;
  146|       |                n1 = n;
  147|       |                p = (const STRINGLIB_CHAR *)
  148|       |                        _Py_ALIGN_DOWN(candidate, sizeof(STRINGLIB_CHAR));
  149|       |                n = p - s;
  150|       |                if (*p == ch)
  151|       |                    return n;
  152|       |                /* False positive */
  153|       |                if (n1 - n > MEMRCHR_CUT_OFF)
  154|       |                    continue;
  155|       |                if (n <= MEMRCHR_CUT_OFF)
  156|       |                    break;
  157|       |                s1 = p - MEMRCHR_CUT_OFF;
  158|       |                while (p > s1) {
  159|       |                    p--;
  160|       |                    if (*p == ch)
  161|       |                        return (p - s);
  162|       |                }
  163|       |                n = p - s;
  164|       |            }
  165|       |            while (n > MEMRCHR_CUT_OFF);
  166|       |        }
  167|       |#endif
  168|     14|    }
  169|     12|#endif  /* HAVE_MEMRCHR */
  170|     12|    p = s + n;
  171|     96|    while (p > s) {
  ------------------
  |  Branch (171:12): [True: 88, False: 8]
  ------------------
  172|     88|        p--;
  173|     88|        if (*p == ch)
  ------------------
  |  Branch (173:13): [True: 4, False: 84]
  ------------------
  174|      4|            return (p - s);
  175|     88|    }
  176|      8|    return -1;
  177|     12|}
unicodeobject.c:asciilib_fastsearch:
  776|    120|{
  777|    120|    if (n < m || (mode == FAST_COUNT && maxcount == 0)) {
  ------------------
  |  |   24|    240|#define FAST_COUNT 0
  ------------------
  |  Branch (777:9): [True: 0, False: 120]
  |  Branch (777:19): [True: 0, False: 120]
  |  Branch (777:41): [True: 0, False: 0]
  ------------------
  778|      0|        return -1;
  779|      0|    }
  780|       |
  781|       |    /* look for special cases */
  782|    120|    if (m <= 1) {
  ------------------
  |  Branch (782:9): [True: 120, False: 0]
  ------------------
  783|    120|        if (m <= 0) {
  ------------------
  |  Branch (783:13): [True: 0, False: 120]
  ------------------
  784|      0|            return -1;
  785|      0|        }
  786|       |        /* use special case for 1-character strings */
  787|    120|        if (mode == FAST_SEARCH)
  ------------------
  |  |   25|    120|#define FAST_SEARCH 1
  ------------------
  |  Branch (787:13): [True: 0, False: 120]
  ------------------
  788|      0|            return STRINGLIB(find_char)(s, n, p[0]);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  789|    120|        else if (mode == FAST_RSEARCH)
  ------------------
  |  |   26|    120|#define FAST_RSEARCH 2
  ------------------
  |  Branch (789:18): [True: 120, False: 0]
  ------------------
  790|    120|            return STRINGLIB(rfind_char)(s, n, p[0]);
  ------------------
  |  |    7|    120|#define STRINGLIB(F)             asciilib_##F
  ------------------
  791|      0|        else {
  792|      0|            if (maxcount == PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (792:17): [True: 0, False: 0]
  ------------------
  793|      0|                return STRINGLIB(count_char_no_maxcount)(s, n, p[0]);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  794|      0|            }
  795|      0|            return STRINGLIB(count_char)(s, n, p[0], maxcount);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  796|      0|        }
  797|    120|    }
  798|       |
  799|      0|    if (mode != FAST_RSEARCH) {
  ------------------
  |  |   26|      0|#define FAST_RSEARCH 2
  ------------------
  |  Branch (799:9): [True: 0, False: 0]
  ------------------
  800|      0|        if (n < 2500 || (m < 100 && n < 30000) || m < 6) {
  ------------------
  |  Branch (800:13): [True: 0, False: 0]
  |  Branch (800:26): [True: 0, False: 0]
  |  Branch (800:37): [True: 0, False: 0]
  |  Branch (800:51): [True: 0, False: 0]
  ------------------
  801|      0|            return STRINGLIB(default_find)(s, n, p, m, maxcount, mode);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  802|      0|        }
  803|      0|        else if ((m >> 2) * 3 < (n >> 2)) {
  ------------------
  |  Branch (803:18): [True: 0, False: 0]
  ------------------
  804|       |            /* 33% threshold, but don't overflow. */
  805|       |            /* For larger problems where the needle isn't a huge
  806|       |               percentage of the size of the haystack, the relatively
  807|       |               expensive O(m) startup cost of the two-way algorithm
  808|       |               will surely pay off. */
  809|      0|            if (mode == FAST_SEARCH) {
  ------------------
  |  |   25|      0|#define FAST_SEARCH 1
  ------------------
  |  Branch (809:17): [True: 0, False: 0]
  ------------------
  810|      0|                return STRINGLIB(_two_way_find)(s, n, p, m);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  811|      0|            }
  812|      0|            else {
  813|      0|                return STRINGLIB(_two_way_count)(s, n, p, m, maxcount);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  814|      0|            }
  815|      0|        }
  816|      0|        else {
  817|       |            /* To ensure that we have good worst-case behavior,
  818|       |               here's an adaptive version of the algorithm, where if
  819|       |               we match O(m) characters without any matches of the
  820|       |               entire needle, then we predict that the startup cost of
  821|       |               the two-way algorithm will probably be worth it. */
  822|      0|            return STRINGLIB(adaptive_find)(s, n, p, m, maxcount, mode);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  823|      0|        }
  824|      0|    }
  825|      0|    else {
  826|       |        /* FAST_RSEARCH */
  827|      0|        return STRINGLIB(default_rfind)(s, n, p, m, maxcount, mode);
  ------------------
  |  |    7|      0|#define STRINGLIB(F)             asciilib_##F
  ------------------
  828|      0|    }
  829|      0|}
unicodeobject.c:asciilib_rfind_char:
  117|    120|{
  118|    120|    const STRINGLIB_CHAR *p;
  119|    120|#ifdef HAVE_MEMRCHR
  120|       |    /* memrchr() is a GNU extension, available since glibc 2.1.91.  it
  121|       |       doesn't seem as optimized as memchr(), but is still quite
  122|       |       faster than our hand-written loop below. There is no wmemrchr
  123|       |       for 4-byte chars. */
  124|       |
  125|    120|    if (n > MEMRCHR_CUT_OFF) {
  ------------------
  |  |  109|    120|#  define MEMRCHR_CUT_OFF 15
  ------------------
  |  Branch (125:9): [True: 16, False: 104]
  ------------------
  126|     16|#if STRINGLIB_SIZEOF_CHAR == 1
  127|     16|        p = memrchr(s, ch, n);
  128|     16|        if (p != NULL)
  ------------------
  |  Branch (128:13): [True: 6, False: 10]
  ------------------
  129|      6|            return (p - s);
  130|     10|        return -1;
  131|       |#else
  132|       |        /* use memrchr if we can choose a needle without too many likely
  133|       |           false positives */
  134|       |        const STRINGLIB_CHAR *s1;
  135|       |        Py_ssize_t n1;
  136|       |        unsigned char needle = ch & 0xff;
  137|       |        /* If looking for a multiple of 256, we'd have too
  138|       |           many false positives looking for the '\0' byte in UCS2
  139|       |           and UCS4 representations. */
  140|       |        if (needle != 0) {
  141|       |            do {
  142|       |                void *candidate = memrchr(s, needle,
  143|       |                                          n * sizeof(STRINGLIB_CHAR));
  144|       |                if (candidate == NULL)
  145|       |                    return -1;
  146|       |                n1 = n;
  147|       |                p = (const STRINGLIB_CHAR *)
  148|       |                        _Py_ALIGN_DOWN(candidate, sizeof(STRINGLIB_CHAR));
  149|       |                n = p - s;
  150|       |                if (*p == ch)
  151|       |                    return n;
  152|       |                /* False positive */
  153|       |                if (n1 - n > MEMRCHR_CUT_OFF)
  154|       |                    continue;
  155|       |                if (n <= MEMRCHR_CUT_OFF)
  156|       |                    break;
  157|       |                s1 = p - MEMRCHR_CUT_OFF;
  158|       |                while (p > s1) {
  159|       |                    p--;
  160|       |                    if (*p == ch)
  161|       |                        return (p - s);
  162|       |                }
  163|       |                n = p - s;
  164|       |            }
  165|       |            while (n > MEMRCHR_CUT_OFF);
  166|       |        }
  167|       |#endif
  168|     16|    }
  169|    104|#endif  /* HAVE_MEMRCHR */
  170|    104|    p = s + n;
  171|    842|    while (p > s) {
  ------------------
  |  Branch (171:12): [True: 744, False: 98]
  ------------------
  172|    744|        p--;
  173|    744|        if (*p == ch)
  ------------------
  |  Branch (173:13): [True: 6, False: 738]
  ------------------
  174|      6|            return (p - s);
  175|    744|    }
  176|     98|    return -1;
  177|    104|}

unicode_writer.c:ucs1lib_find_max_char:
   22|  5.57k|{
   23|  5.57k|    const unsigned char *p = (const unsigned char *) begin;
   24|  5.57k|    const unsigned char *_end = (const unsigned char *)end;
   25|       |
   26|  20.8k|    while (p < _end) {
  ------------------
  |  Branch (26:12): [True: 15.3k, False: 5.57k]
  ------------------
   27|  15.3k|        if (_Py_IS_ALIGNED(p, ALIGNOF_SIZE_T)) {
  ------------------
  |  |  221|  15.3k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 3.72k, False: 11.6k]
  |  |  ------------------
  ------------------
   28|       |            /* Help register allocation */
   29|  3.72k|            const unsigned char *_p = p;
   30|  18.3k|            while (_p + SIZEOF_SIZE_T <= _end) {
  ------------------
  |  | 1838|  18.3k|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (30:20): [True: 14.6k, False: 3.72k]
  ------------------
   31|  14.6k|                size_t value = *(const size_t *) _p;
   32|  14.6k|                if (value & UCS1_ASCII_CHAR_MASK)
  ------------------
  |  |   11|  14.6k|# define UCS1_ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
  |  Branch (32:21): [True: 0, False: 14.6k]
  ------------------
   33|      0|                    return 255;
   34|  14.6k|                _p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|  14.6k|#define SIZEOF_SIZE_T 8
  ------------------
   35|  14.6k|            }
   36|  3.72k|            p = _p;
   37|  3.72k|            if (p == _end)
  ------------------
  |  Branch (37:17): [True: 2, False: 3.71k]
  ------------------
   38|      2|                break;
   39|  3.72k|        }
   40|  15.3k|        if (*p++ & 0x80)
  ------------------
  |  Branch (40:13): [True: 0, False: 15.3k]
  ------------------
   41|      0|            return 255;
   42|  15.3k|    }
   43|  5.57k|    return 127;
   44|  5.57k|}
unicodeobject.c:ucs1lib_find_max_char:
   22|  12.3k|{
   23|  12.3k|    const unsigned char *p = (const unsigned char *) begin;
   24|  12.3k|    const unsigned char *_end = (const unsigned char *)end;
   25|       |
   26|  82.5k|    while (p < _end) {
  ------------------
  |  Branch (26:12): [True: 70.9k, False: 11.6k]
  ------------------
   27|  70.9k|        if (_Py_IS_ALIGNED(p, ALIGNOF_SIZE_T)) {
  ------------------
  |  |  221|  70.9k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 11.2k, False: 59.6k]
  |  |  ------------------
  ------------------
   28|       |            /* Help register allocation */
   29|  11.2k|            const unsigned char *_p = p;
   30|  48.8k|            while (_p + SIZEOF_SIZE_T <= _end) {
  ------------------
  |  | 1838|  48.8k|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (30:20): [True: 37.6k, False: 11.2k]
  ------------------
   31|  37.6k|                size_t value = *(const size_t *) _p;
   32|  37.6k|                if (value & UCS1_ASCII_CHAR_MASK)
  ------------------
  |  |   11|  37.6k|# define UCS1_ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
  |  Branch (32:21): [True: 0, False: 37.6k]
  ------------------
   33|      0|                    return 255;
   34|  37.6k|                _p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|  37.6k|#define SIZEOF_SIZE_T 8
  ------------------
   35|  37.6k|            }
   36|  11.2k|            p = _p;
   37|  11.2k|            if (p == _end)
  ------------------
  |  Branch (37:17): [True: 736, False: 10.5k]
  ------------------
   38|    736|                break;
   39|  11.2k|        }
   40|  70.1k|        if (*p++ & 0x80)
  ------------------
  |  Branch (40:13): [True: 0, False: 70.1k]
  ------------------
   41|      0|            return 255;
   42|  70.1k|    }
   43|  12.3k|    return 127;
   44|  12.3k|}

unicodeobject.c:asciilib_rpartition:
   74|    120|{
   75|    120|    PyObject* out;
   76|    120|    Py_ssize_t pos;
   77|       |
   78|    120|    if (sep_len == 0) {
  ------------------
  |  Branch (78:9): [True: 0, False: 120]
  ------------------
   79|      0|        PyErr_SetString(PyExc_ValueError, "empty separator");
   80|      0|        return NULL;
   81|      0|    }
   82|       |
   83|    120|    out = PyTuple_New(3);
   84|    120|    if (!out)
  ------------------
  |  Branch (84:9): [True: 0, False: 120]
  ------------------
   85|      0|        return NULL;
   86|       |
   87|    120|    pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_RSEARCH);
  ------------------
  |  |    6|    120|#define FASTSEARCH               asciilib_fastsearch
  ------------------
                  pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_RSEARCH);
  ------------------
  |  |   26|    120|#define FAST_RSEARCH 2
  ------------------
   88|       |
   89|    120|    if (pos < 0) {
  ------------------
  |  Branch (89:9): [True: 108, False: 12]
  ------------------
   90|       |#if STRINGLIB_MUTABLE
   91|       |        PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(NULL, 0));
   92|       |        PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0));
   93|       |        PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str, str_len));
   94|       |
   95|       |        if (PyErr_Occurred()) {
   96|       |            Py_DECREF(out);
   97|       |            return NULL;
   98|       |        }
   99|       |#else
  100|    108|        PyObject *empty = (PyObject*)STRINGLIB_GET_EMPTY();
  ------------------
  |  |  955|    108|#define STRINGLIB_GET_EMPTY() _PyUnicode_GetEmpty()
  ------------------
  101|    108|        assert(empty != NULL);
  ------------------
  |  Branch (101:9): [True: 108, False: 0]
  ------------------
  102|    108|        Py_INCREF(empty);
  ------------------
  |  |  310|    108|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  103|    108|        PyTuple_SET_ITEM(out, 0, empty);
  ------------------
  |  |   40|    108|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  104|    108|        Py_INCREF(empty);
  ------------------
  |  |  310|    108|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  105|    108|        PyTuple_SET_ITEM(out, 1, empty);
  ------------------
  |  |   40|    108|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  106|    108|        Py_INCREF(str_obj);
  ------------------
  |  |  310|    108|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  107|    108|        PyTuple_SET_ITEM(out, 2, (PyObject*) str_obj);
  ------------------
  |  |   40|    108|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  108|    108|#endif
  109|    108|        return out;
  110|    108|    }
  111|       |
  112|     12|    PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos));
  ------------------
  |  |   40|     12|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  113|     12|    Py_INCREF(sep_obj);
  ------------------
  |  |  310|     12|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  114|     12|    PyTuple_SET_ITEM(out, 1, sep_obj);
  ------------------
  |  |   40|     12|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  115|     12|    pos += sep_len;
  116|     12|    PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos));
  ------------------
  |  |   40|     12|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  117|       |
  118|     12|    if (PyErr_Occurred()) {
  ------------------
  |  Branch (118:9): [True: 0, False: 12]
  ------------------
  119|      0|        Py_DECREF(out);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  120|      0|        return NULL;
  121|      0|    }
  122|       |
  123|     12|    return out;
  124|     12|}

unicodeobject.c:ucs1lib_replace_1char_inplace:
   10|      6|{
   11|      6|    *s = u2;
   12|      6|    while (--maxcount && ++s != end) {
  ------------------
  |  Branch (12:12): [True: 6, False: 0]
  |  Branch (12:26): [True: 6, False: 0]
  ------------------
   13|       |        /* Find the next character to be replaced.
   14|       |
   15|       |           If it occurs often, it is faster to scan for it using an inline
   16|       |           loop.  If it occurs seldom, it is faster to scan for it using a
   17|       |           function call; the overhead of the function call is amortized
   18|       |           across the many characters that call covers.  We start with an
   19|       |           inline loop and use a heuristic to determine whether to fall back
   20|       |           to a function call. */
   21|      6|        if (*s != u1) {
  ------------------
  |  Branch (21:13): [True: 6, False: 0]
  ------------------
   22|      6|            int attempts = 10;
   23|       |            /* search u1 in a dummy loop */
   24|     44|            while (1) {
  ------------------
  |  Branch (24:20): [True: 44, Folded]
  ------------------
   25|     44|                if (++s == end)
  ------------------
  |  Branch (25:21): [True: 4, False: 40]
  ------------------
   26|      4|                    return;
   27|     40|                if (*s == u1)
  ------------------
  |  Branch (27:21): [True: 0, False: 40]
  ------------------
   28|      0|                    break;
   29|     40|                if (!--attempts) {
  ------------------
  |  Branch (29:21): [True: 2, False: 38]
  ------------------
   30|       |                    /* if u1 was not found for attempts iterations,
   31|       |                       use FASTSEARCH() or memchr() */
   32|      2|#ifdef STRINGLIB_FAST_MEMCHR
   33|      2|                    s++;
   34|      2|                    s = STRINGLIB_FAST_MEMCHR(s, u1, end - s);
  ------------------
  |  |   23|      2|#define STRINGLIB_FAST_MEMCHR    memchr
  ------------------
   35|      2|                    if (s == NULL)
  ------------------
  |  Branch (35:25): [True: 2, False: 0]
  ------------------
   36|      2|                        return;
   37|       |#else
   38|       |                    Py_ssize_t i;
   39|       |                    STRINGLIB_CHAR ch1 = (STRINGLIB_CHAR) u1;
   40|       |                    s++;
   41|       |                    i = FASTSEARCH(s, end - s, &ch1, 1, 0, FAST_SEARCH);
   42|       |                    if (i < 0)
   43|       |                        return;
   44|       |                    s += i;
   45|       |#endif
   46|       |                    /* restart the dummy loop */
   47|      0|                    break;
   48|      2|                }
   49|     40|            }
   50|      6|        }
   51|      0|        *s = u2;
   52|      0|    }
   53|      6|}

unicodeobject.c:asciilib_split:
  149|      4|{
  150|      4|    Py_ssize_t i, j, pos, count=0;
  151|      4|    PyObject *list, *sub;
  152|       |
  153|      4|    if (sep_len == 0) {
  ------------------
  |  Branch (153:9): [True: 0, False: 4]
  ------------------
  154|      0|        PyErr_SetString(PyExc_ValueError, "empty separator");
  155|      0|        return NULL;
  156|      0|    }
  157|      4|    else if (sep_len == 1)
  ------------------
  |  Branch (157:14): [True: 4, False: 0]
  ------------------
  158|      4|        return STRINGLIB(split_char)(str_obj, str, str_len, sep[0], maxcount);
  ------------------
  |  |    7|      4|#define STRINGLIB(F)             asciilib_##F
  ------------------
  159|       |
  160|      0|    list = PyList_New(PREALLOC_SIZE(maxcount));
  ------------------
  |  |   18|      0|    (maxsplit >= MAX_PREALLOC ? MAX_PREALLOC : maxsplit+1)
  |  |  ------------------
  |  |  |  |   14|      0|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |                   (maxsplit >= MAX_PREALLOC ? MAX_PREALLOC : maxsplit+1)
  |  |  ------------------
  |  |  |  |   14|      0|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |  |  Branch (18:6): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  161|      0|    if (list == NULL)
  ------------------
  |  Branch (161:9): [True: 0, False: 0]
  ------------------
  162|      0|        return NULL;
  163|       |
  164|      0|    i = j = 0;
  165|      0|    while (maxcount-- > 0) {
  ------------------
  |  Branch (165:12): [True: 0, False: 0]
  ------------------
  166|      0|        pos = FASTSEARCH(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH);
  ------------------
  |  |    6|      0|#define FASTSEARCH               asciilib_fastsearch
  ------------------
                      pos = FASTSEARCH(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH);
  ------------------
  |  |   25|      0|#define FAST_SEARCH 1
  ------------------
  167|      0|        if (pos < 0)
  ------------------
  |  Branch (167:13): [True: 0, False: 0]
  ------------------
  168|      0|            break;
  169|      0|        j = i + pos;
  170|      0|        SPLIT_ADD(str, i, j);
  ------------------
  |  |   32|      0|#define SPLIT_ADD(data, left, right) {          \
  |  |   33|      0|    sub = STRINGLIB_NEW((data) + (left),        \
  |  |  ------------------
  |  |  |  |   20|      0|#define STRINGLIB_NEW(STR,LEN)   _PyUnicode_FromASCII((const char*)(STR),(LEN))
  |  |  ------------------
  |  |   34|      0|                        (right) - (left));      \
  |  |   35|      0|    if (sub == NULL)                            \
  |  |  ------------------
  |  |  |  Branch (35:9): [True: 0, False: 0]
  |  |  ------------------
  |  |   36|      0|        goto onError;                           \
  |  |   37|      0|    if (count < MAX_PREALLOC) {                 \
  |  |  ------------------
  |  |  |  |   14|      0|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |  |  Branch (37:9): [True: 0, False: 0]
  |  |  ------------------
  |  |   38|      0|        PyList_SET_ITEM(list, count, sub);      \
  |  |  ------------------
  |  |  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   39|      0|    } else {                                    \
  |  |   40|      0|        if (PyList_Append(list, sub)) {         \
  |  |  ------------------
  |  |  |  Branch (40:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   41|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   42|      0|            goto onError;                       \
  |  |   43|      0|        }                                       \
  |  |   44|      0|        else                                    \
  |  |   45|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   46|      0|    }                                           \
  |  |   47|      0|    count++; }
  ------------------
  171|      0|        i = j + sep_len;
  172|      0|    }
  173|      0|#if !STRINGLIB_MUTABLE
  174|      0|    if (count == 0 && STRINGLIB_CHECK_EXACT(str_obj)) {
  ------------------
  |  |   22|      0|#define STRINGLIB_CHECK_EXACT    PyUnicode_CheckExact
  |  |  ------------------
  |  |  |  |  104|      0|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (174:9): [True: 0, False: 0]
  ------------------
  175|       |        /* No match in str_obj, so just use it as list[0] */
  176|      0|        Py_INCREF(str_obj);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  177|      0|        PyList_SET_ITEM(list, 0, (PyObject *)str_obj);
  ------------------
  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  178|      0|        count++;
  179|      0|    } else
  180|      0|#endif
  181|      0|    {
  182|      0|        SPLIT_ADD(str, i, str_len);
  ------------------
  |  |   32|      0|#define SPLIT_ADD(data, left, right) {          \
  |  |   33|      0|    sub = STRINGLIB_NEW((data) + (left),        \
  |  |  ------------------
  |  |  |  |   20|      0|#define STRINGLIB_NEW(STR,LEN)   _PyUnicode_FromASCII((const char*)(STR),(LEN))
  |  |  ------------------
  |  |   34|      0|                        (right) - (left));      \
  |  |   35|      0|    if (sub == NULL)                            \
  |  |  ------------------
  |  |  |  Branch (35:9): [True: 0, False: 0]
  |  |  ------------------
  |  |   36|      0|        goto onError;                           \
  |  |   37|      0|    if (count < MAX_PREALLOC) {                 \
  |  |  ------------------
  |  |  |  |   14|      0|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |  |  Branch (37:9): [True: 0, False: 0]
  |  |  ------------------
  |  |   38|      0|        PyList_SET_ITEM(list, count, sub);      \
  |  |  ------------------
  |  |  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   39|      0|    } else {                                    \
  |  |   40|      0|        if (PyList_Append(list, sub)) {         \
  |  |  ------------------
  |  |  |  Branch (40:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   41|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   42|      0|            goto onError;                       \
  |  |   43|      0|        }                                       \
  |  |   44|      0|        else                                    \
  |  |   45|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   46|      0|    }                                           \
  |  |   47|      0|    count++; }
  ------------------
  183|      0|    }
  184|      0|    FIX_PREALLOC_SIZE(list);
  ------------------
  |  |   51|      0|#define FIX_PREALLOC_SIZE(list) Py_SET_SIZE(list, count)
  |  |  ------------------
  |  |  |  |  216|      0|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  |  |  ------------------
  |  |  |  |  |  |  182|      0|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  185|      0|    return list;
  186|       |
  187|      0|  onError:
  188|      0|    Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  189|       |    return NULL;
  190|      0|}
unicodeobject.c:asciilib_split_char:
  106|      4|{
  107|      4|    Py_ssize_t i, j, count=0;
  108|      4|    PyObject *list = PyList_New(PREALLOC_SIZE(maxcount));
  ------------------
  |  |   18|      4|    (maxsplit >= MAX_PREALLOC ? MAX_PREALLOC : maxsplit+1)
  |  |  ------------------
  |  |  |  |   14|      8|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |                   (maxsplit >= MAX_PREALLOC ? MAX_PREALLOC : maxsplit+1)
  |  |  ------------------
  |  |  |  |   14|      4|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |  |  Branch (18:6): [True: 4, False: 0]
  |  |  ------------------
  ------------------
  109|      4|    PyObject *sub;
  110|       |
  111|      4|    if (list == NULL)
  ------------------
  |  Branch (111:9): [True: 0, False: 4]
  ------------------
  112|      0|        return NULL;
  113|       |
  114|      4|    i = j = 0;
  115|     12|    while ((j < str_len) && (maxcount-- > 0)) {
  ------------------
  |  Branch (115:12): [True: 8, False: 4]
  |  Branch (115:29): [True: 8, False: 0]
  ------------------
  116|     68|        for(; j < str_len; j++) {
  ------------------
  |  Branch (116:15): [True: 64, False: 4]
  ------------------
  117|       |            /* I found that using memchr makes no difference */
  118|     64|            if (str[j] == ch) {
  ------------------
  |  Branch (118:17): [True: 4, False: 60]
  ------------------
  119|      4|                SPLIT_ADD(str, i, j);
  ------------------
  |  |   32|      4|#define SPLIT_ADD(data, left, right) {          \
  |  |   33|      4|    sub = STRINGLIB_NEW((data) + (left),        \
  |  |  ------------------
  |  |  |  |   20|      4|#define STRINGLIB_NEW(STR,LEN)   _PyUnicode_FromASCII((const char*)(STR),(LEN))
  |  |  ------------------
  |  |   34|      4|                        (right) - (left));      \
  |  |   35|      4|    if (sub == NULL)                            \
  |  |  ------------------
  |  |  |  Branch (35:9): [True: 0, False: 4]
  |  |  ------------------
  |  |   36|      4|        goto onError;                           \
  |  |   37|      4|    if (count < MAX_PREALLOC) {                 \
  |  |  ------------------
  |  |  |  |   14|      4|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |  |  Branch (37:9): [True: 4, False: 0]
  |  |  ------------------
  |  |   38|      4|        PyList_SET_ITEM(list, count, sub);      \
  |  |  ------------------
  |  |  |  |   50|      4|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   39|      4|    } else {                                    \
  |  |   40|      0|        if (PyList_Append(list, sub)) {         \
  |  |  ------------------
  |  |  |  Branch (40:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   41|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   42|      0|            goto onError;                       \
  |  |   43|      0|        }                                       \
  |  |   44|      0|        else                                    \
  |  |   45|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   46|      0|    }                                           \
  |  |   47|      4|    count++; }
  ------------------
  120|      4|                i = j = j + 1;
  121|      4|                break;
  122|      4|            }
  123|     64|        }
  124|      8|    }
  125|      4|#if !STRINGLIB_MUTABLE
  126|      4|    if (count == 0 && STRINGLIB_CHECK_EXACT(str_obj)) {
  ------------------
  |  |   22|      0|#define STRINGLIB_CHECK_EXACT    PyUnicode_CheckExact
  |  |  ------------------
  |  |  |  |  104|      0|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (126:9): [True: 0, False: 4]
  ------------------
  127|       |        /* ch not in str_obj, so just use str_obj as list[0] */
  128|      0|        Py_INCREF(str_obj);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  129|      0|        PyList_SET_ITEM(list, 0, (PyObject *)str_obj);
  ------------------
  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  130|      0|        count++;
  131|      0|    } else
  132|      4|#endif
  133|      4|    if (i <= str_len) {
  ------------------
  |  Branch (133:9): [True: 4, False: 0]
  ------------------
  134|      8|        SPLIT_ADD(str, i, str_len);
  ------------------
  |  |   32|      4|#define SPLIT_ADD(data, left, right) {          \
  |  |   33|      4|    sub = STRINGLIB_NEW((data) + (left),        \
  |  |  ------------------
  |  |  |  |   20|      4|#define STRINGLIB_NEW(STR,LEN)   _PyUnicode_FromASCII((const char*)(STR),(LEN))
  |  |  ------------------
  |  |   34|      4|                        (right) - (left));      \
  |  |   35|      4|    if (sub == NULL)                            \
  |  |  ------------------
  |  |  |  Branch (35:9): [True: 0, False: 4]
  |  |  ------------------
  |  |   36|      4|        goto onError;                           \
  |  |   37|      4|    if (count < MAX_PREALLOC) {                 \
  |  |  ------------------
  |  |  |  |   14|      4|#define MAX_PREALLOC 12
  |  |  ------------------
  |  |  |  Branch (37:9): [True: 4, False: 0]
  |  |  ------------------
  |  |   38|      4|        PyList_SET_ITEM(list, count, sub);      \
  |  |  ------------------
  |  |  |  |   50|      4|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   39|      4|    } else {                                    \
  |  |   40|      0|        if (PyList_Append(list, sub)) {         \
  |  |  ------------------
  |  |  |  Branch (40:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   41|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   42|      0|            goto onError;                       \
  |  |   43|      0|        }                                       \
  |  |   44|      0|        else                                    \
  |  |   45|      0|            Py_DECREF(sub);                     \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   46|      0|    }                                           \
  |  |   47|      4|    count++; }
  ------------------
  135|      8|    }
  136|      4|    FIX_PREALLOC_SIZE(list);
  ------------------
  |  |   51|      4|#define FIX_PREALLOC_SIZE(list) Py_SET_SIZE(list, count)
  |  |  ------------------
  |  |  |  |  216|      4|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  |  |  ------------------
  |  |  |  |  |  |  182|      4|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  137|      4|    return list;
  138|       |
  139|      0|  onError:
  140|      0|    Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  141|       |    return NULL;
  142|      4|}

PyStructSequence_New:
   66|     40|{
   67|     40|    PyStructSequence *obj;
   68|     40|    Py_ssize_t size = REAL_SIZE_TP(type), i;
  ------------------
  |  |   48|     40|    get_type_attr_as_size(tp, &_Py_ID(n_fields))
  |  |  ------------------
  |  |  |  |  917|     40|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|     40|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|     40|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   69|     40|    if (size < 0) {
  ------------------
  |  Branch (69:9): [True: 0, False: 40]
  ------------------
   70|      0|        return NULL;
   71|      0|    }
   72|     40|    Py_ssize_t vsize = VISIBLE_SIZE_TP(type);
  ------------------
  |  |   46|     40|    get_type_attr_as_size(tp, &_Py_ID(n_sequence_fields))
  |  |  ------------------
  |  |  |  |  917|     40|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|     40|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|     40|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   73|     40|    if (vsize < 0) {
  ------------------
  |  Branch (73:9): [True: 0, False: 40]
  ------------------
   74|      0|        return NULL;
   75|      0|    }
   76|       |
   77|     40|    obj = PyObject_GC_NewVar(PyStructSequence, type, size);
  ------------------
  |  |  183|     40|    _Py_CAST(type*, _PyObject_GC_NewVar((typeobj), (n)))
  |  |  ------------------
  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   78|     40|    if (obj == NULL)
  ------------------
  |  Branch (78:9): [True: 0, False: 40]
  ------------------
   79|      0|        return NULL;
   80|     40|    _PyTuple_RESET_HASH_CACHE(obj);
  ------------------
  |  |   44|     40|    do {                                    \
  |  |   45|     40|        assert(op != NULL);                 \
  |  |   46|     80|        _PyTuple_CAST(op)->ob_hash = -1;    \
  |  |  ------------------
  |  |  |  |   19|     40|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   47|     80|    } while (0)
  |  |  ------------------
  |  |  |  Branch (47:14): [Folded, False: 40]
  |  |  ------------------
  ------------------
  |  Branch (80:5): [True: 40, False: 0]
  |  Branch (80:5): [True: 40, False: 0]
  ------------------
   81|       |    /* Hack the size of the variable object, so invisible fields don't appear
   82|       |     to Python code. */
   83|     40|    Py_SET_SIZE(obj, vsize);
  ------------------
  |  |  216|     40|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|     40|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   84|    680|    for (i = 0; i < size; i++)
  ------------------
  |  Branch (84:17): [True: 640, False: 40]
  ------------------
   85|    640|        obj->ob_item[i] = NULL;
   86|       |
   87|     40|    return (PyObject*)obj;
   88|     40|}
PyStructSequence_SetItem:
   92|    684|{
   93|    684|    PyTupleObject *tuple = _PyTuple_CAST(op);
  ------------------
  |  |   19|    684|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    684|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (93:28): [True: 684, False: 0]
  ------------------
   94|    684|    assert(0 <= index);
  ------------------
  |  Branch (94:5): [True: 684, False: 0]
  ------------------
   95|    684|#ifndef NDEBUG
   96|    684|    Py_ssize_t n_fields = REAL_SIZE(op);
  ------------------
  |  |   49|    684|#define REAL_SIZE(op) get_real_size((PyObject *)op)
  ------------------
   97|    684|    assert(n_fields >= 0);
  ------------------
  |  Branch (97:5): [True: 684, False: 0]
  ------------------
   98|    684|    assert(index < n_fields);
  ------------------
  |  Branch (98:5): [True: 684, False: 0]
  ------------------
   99|    684|#endif
  100|    684|    tuple->ob_item[index] = value;
  101|    684|}
PyStructSequence_GetItem:
  105|     88|{
  106|     88|    assert(0 <= index);
  ------------------
  |  Branch (106:5): [True: 88, False: 0]
  ------------------
  107|     88|#ifndef NDEBUG
  108|     88|    Py_ssize_t n_fields = REAL_SIZE(op);
  ------------------
  |  |   49|     88|#define REAL_SIZE(op) get_real_size((PyObject *)op)
  ------------------
  109|     88|    assert(n_fields >= 0);
  ------------------
  |  Branch (109:5): [True: 88, False: 0]
  ------------------
  110|     88|    assert(index < n_fields);
  ------------------
  |  Branch (110:5): [True: 88, False: 0]
  ------------------
  111|     88|#endif
  112|     88|    return PyTuple_GET_ITEM(op, index);
  ------------------
  |  |   29|     88|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     88|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     88|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (112:12): [True: 88, False: 0]
  ------------------
  113|     88|}
_PyStructSequence_InitBuiltinWithFlags:
  618|     16|{
  619|     16|    if (Py_TYPE(type) == NULL) {
  ------------------
  |  |  213|     16|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (619:9): [True: 16, False: 0]
  ------------------
  620|     16|        Py_SET_TYPE(type, &PyType_Type);
  ------------------
  |  |  217|     16|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  621|     16|    }
  622|     16|    Py_ssize_t n_unnamed_members;
  623|     16|    Py_ssize_t n_members = count_members(desc, &n_unnamed_members);
  624|     16|    PyMemberDef *members = NULL;
  625|       |
  626|     16|    if ((type->tp_flags & Py_TPFLAGS_READY) == 0) {
  ------------------
  |  |  518|     16|#define Py_TPFLAGS_READY (1UL << 12)
  ------------------
  |  Branch (626:9): [True: 16, False: 0]
  ------------------
  627|     16|        assert(type->tp_name == NULL);
  ------------------
  |  Branch (627:9): [True: 16, False: 0]
  ------------------
  628|     16|        assert(type->tp_members == NULL);
  ------------------
  |  Branch (628:9): [True: 16, False: 0]
  ------------------
  629|     16|        assert(type->tp_base == NULL);
  ------------------
  |  Branch (629:9): [True: 16, False: 0]
  ------------------
  630|       |
  631|     16|        members = initialize_members(desc, n_members, n_unnamed_members);
  632|     16|        if (members == NULL) {
  ------------------
  |  Branch (632:13): [True: 0, False: 16]
  ------------------
  633|      0|            goto error;
  634|      0|        }
  635|     16|        initialize_static_fields(type, desc, members, n_members, tp_flags);
  636|       |
  637|     16|        _Py_SetImmortal((PyObject *)type);
  638|     16|    }
  639|      0|#ifndef NDEBUG
  640|      0|    else {
  641|       |        // Ensure that the type was initialized.
  642|      0|        assert(type->tp_name != NULL);
  ------------------
  |  Branch (642:9): [True: 0, False: 0]
  ------------------
  643|      0|        assert(type->tp_members != NULL);
  ------------------
  |  Branch (643:9): [True: 0, False: 0]
  ------------------
  644|      0|        assert(type->tp_base == &PyTuple_Type);
  ------------------
  |  Branch (644:9): [True: 0, False: 0]
  ------------------
  645|      0|        assert((type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN));
  ------------------
  |  Branch (645:9): [True: 0, False: 0]
  ------------------
  646|      0|        assert(_Py_IsImmortal(type));
  ------------------
  |  Branch (646:9): [True: 0, False: 0]
  ------------------
  647|      0|    }
  648|     16|#endif
  649|       |
  650|     16|    if (_PyStaticType_InitBuiltin(interp, type) < 0) {
  ------------------
  |  Branch (650:9): [True: 0, False: 16]
  ------------------
  651|      0|        PyErr_Format(PyExc_RuntimeError,
  652|      0|                     "Can't initialize builtin type %s",
  653|      0|                     desc->name);
  654|      0|        goto error;
  655|      0|    }
  656|       |
  657|     16|    if (initialize_structseq_dict(
  ------------------
  |  Branch (657:9): [True: 0, False: 16]
  ------------------
  658|     16|            desc, _PyType_GetDict(type), n_members, n_unnamed_members) < 0)
  659|      0|    {
  660|      0|        goto error;
  661|      0|    }
  662|       |
  663|     16|    return 0;
  664|       |
  665|      0|error:
  666|      0|    if (members != NULL) {
  ------------------
  |  Branch (666:9): [True: 0, False: 0]
  ------------------
  667|      0|        PyMem_Free(members);
  668|      0|    }
  669|      0|    return -1;
  670|     16|}
_PyStructSequence_NewType:
  746|     18|{
  747|     18|    PyMemberDef *members;
  748|     18|    PyTypeObject *type;
  749|     18|    PyType_Slot slots[8];
  750|     18|    PyType_Spec spec;
  751|     18|    Py_ssize_t n_members, n_unnamed_members;
  752|       |
  753|       |    /* Initialize MemberDefs */
  754|     18|    n_members = count_members(desc, &n_unnamed_members);
  755|     18|    members = initialize_members(desc, n_members, n_unnamed_members);
  756|     18|    if (members == NULL) {
  ------------------
  |  Branch (756:9): [True: 0, False: 18]
  ------------------
  757|      0|        return NULL;
  758|      0|    }
  759|       |
  760|       |    /* Initialize Slots */
  761|     18|    slots[0] = (PyType_Slot){Py_tp_dealloc, structseq_dealloc};
  ------------------
  |  |   60|     18|#define Py_tp_dealloc 52
  ------------------
  762|     18|    slots[1] = (PyType_Slot){Py_tp_repr, structseq_repr};
  ------------------
  |  |   74|     18|#define Py_tp_repr 66
  ------------------
  763|     18|    slots[2] = (PyType_Slot){Py_tp_doc, (void *)desc->doc};
  ------------------
  |  |   64|     18|#define Py_tp_doc 56
  ------------------
  764|     18|    slots[3] = (PyType_Slot){Py_tp_methods, structseq_methods};
  ------------------
  |  |   72|     18|#define Py_tp_methods 64
  ------------------
  765|     18|    slots[4] = (PyType_Slot){Py_tp_new, structseq_new};
  ------------------
  |  |   73|     18|#define Py_tp_new 65
  ------------------
  766|     18|    slots[5] = (PyType_Slot){Py_tp_members, members};
  ------------------
  |  |   80|     18|#define Py_tp_members 72
  ------------------
  767|     18|    slots[6] = (PyType_Slot){Py_tp_traverse, structseq_traverse};
  ------------------
  |  |   79|     18|#define Py_tp_traverse 71
  ------------------
  768|     18|    slots[7] = (PyType_Slot){0, 0};
  769|       |
  770|       |    /* Initialize Spec */
  771|       |    /* The name in this PyType_Spec is statically allocated so it is */
  772|       |    /* expected that it'll outlive the PyType_Spec */
  773|     18|    spec.name = desc->name;
  774|     18|    Py_ssize_t hidden = n_members - desc->n_in_sequence;
  775|     18|    spec.basicsize = (int)(sizeof(PyStructSequence) + (hidden - 1) * sizeof(PyObject *));
  776|     18|    spec.itemsize = sizeof(PyObject *);
  777|     18|    spec.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | tp_flags;
  ------------------
  |  |  560|     18|#define Py_TPFLAGS_DEFAULT  ( \
  |  |  561|     18|                 Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | \
  |  |  ------------------
  |  |  |  |  530|     18|#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0
  |  |  ------------------
  |  |  562|     18|                0)
  ------------------
                  spec.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | tp_flags;
  ------------------
  |  |  524|     18|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  778|     18|    spec.slots = slots;
  779|       |
  780|     18|    type = (PyTypeObject *)PyType_FromSpecWithBases(&spec, (PyObject *)&PyTuple_Type);
  781|     18|    PyMem_Free(members);
  782|     18|    if (type == NULL) {
  ------------------
  |  Branch (782:9): [True: 0, False: 18]
  ------------------
  783|      0|        return NULL;
  784|      0|    }
  785|       |
  786|     18|    if (initialize_structseq_dict(
  ------------------
  |  Branch (786:9): [True: 0, False: 18]
  ------------------
  787|     18|            desc, _PyType_GetDict(type), n_members, n_unnamed_members) < 0) {
  788|      0|        Py_DECREF(type);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  789|      0|        return NULL;
  790|      0|    }
  791|       |
  792|     18|    return type;
  793|     18|}
PyStructSequence_NewType:
  798|     18|{
  799|     18|    return _PyStructSequence_NewType(desc, 0);
  800|     18|}
structseq.c:get_type_attr_as_size:
   29|     80|{
   30|     80|    PyObject *v = PyDict_GetItemWithError(_PyType_GetDict(tp), name);
   31|       |
   32|     80|    if (v == NULL) {
  ------------------
  |  Branch (32:9): [True: 0, False: 80]
  ------------------
   33|      0|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (33:13): [True: 0, False: 0]
  ------------------
   34|      0|            return -1;
   35|      0|        }
   36|      0|        PyErr_Format(PyExc_TypeError,
   37|      0|                     "Missed attribute '%U' of type %s",
   38|      0|                     name, tp->tp_name);
   39|      0|        return -1;
   40|      0|    }
   41|     80|    return PyLong_AsSsize_t(v);
   42|     80|}
structseq.c:get_real_size:
   57|    800|{
   58|       |    // Compute the real size from the visible size (i.e., Py_SIZE()) and the
   59|       |    // number of non-sequence fields accounted for in tp_basicsize.
   60|    800|    Py_ssize_t hidden = Py_TYPE(op)->tp_basicsize - offsetof(PyStructSequence, ob_item);
  ------------------
  |  |  213|    800|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    800|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    800|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   61|    800|    return Py_SIZE(op) + hidden / sizeof(PyObject *);
  ------------------
  |  |  214|    800|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    800|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    800|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   62|    800|}
structseq.c:count_members:
  469|     34|count_members(PyStructSequence_Desc *desc, Py_ssize_t *n_unnamed_members) {
  470|     34|    Py_ssize_t i;
  471|       |
  472|     34|    *n_unnamed_members = 0;
  473|    282|    for (i = 0; desc->fields[i].name != NULL; ++i) {
  ------------------
  |  Branch (473:17): [True: 248, False: 34]
  ------------------
  474|    248|        if (desc->fields[i].name == PyStructSequence_UnnamedField) {
  ------------------
  |  Branch (474:13): [True: 6, False: 242]
  ------------------
  475|      6|            (*n_unnamed_members)++;
  476|      6|        }
  477|    248|    }
  478|     34|    return i;
  479|     34|}
structseq.c:initialize_members:
  542|     34|{
  543|     34|    PyMemberDef *members;
  544|       |
  545|     34|    members = PyMem_NEW(PyMemberDef, n_members - n_unnamed_members + 1);
  ------------------
  |  |   82|     34|#define PyMem_NEW(type, n)        PyMem_New(type, (n))
  |  |  ------------------
  |  |  |  |   64|     34|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|     34|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:5): [True: 0, False: 34]
  |  |  |  |  ------------------
  |  |  |  |   65|     34|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  |  |  ------------------
  ------------------
  546|     34|    if (members == NULL) {
  ------------------
  |  Branch (546:9): [True: 0, False: 34]
  ------------------
  547|      0|        PyErr_NoMemory();
  548|      0|        return NULL;
  549|      0|    }
  550|       |
  551|     34|    Py_ssize_t i, k;
  552|    282|    for (i = k = 0; i < n_members; ++i) {
  ------------------
  |  Branch (552:21): [True: 248, False: 34]
  ------------------
  553|    248|        if (desc->fields[i].name == PyStructSequence_UnnamedField) {
  ------------------
  |  Branch (553:13): [True: 6, False: 242]
  ------------------
  554|      6|            continue;
  555|      6|        }
  556|       |
  557|       |        /* The names and docstrings in these MemberDefs are statically */
  558|       |        /* allocated so it is expected that they'll outlive the MemberDef */
  559|    242|        members[k].name = desc->fields[i].name;
  560|    242|        members[k].type = _Py_T_OBJECT;
  ------------------
  |  |   59|    242|#define _Py_T_OBJECT   6  // Deprecated, use Py_T_OBJECT_EX instead
  ------------------
  561|    242|        members[k].offset = offsetof(PyStructSequence, ob_item)
  562|    242|          + i * sizeof(PyObject*);
  563|    242|        members[k].flags = Py_READONLY;
  ------------------
  |  |   83|    242|#define Py_READONLY            (1 << 0)
  ------------------
  564|    242|        members[k].doc = desc->fields[i].doc;
  565|    242|        k++;
  566|    242|    }
  567|     34|    members[k].name = NULL;
  568|       |
  569|     34|    return members;
  570|     34|}
structseq.c:initialize_static_fields:
  577|     16|{
  578|     16|    type->tp_name = desc->name;
  579|       |    // Account for hidden members in tp_basicsize because they are not
  580|       |    // included in the variable size.
  581|     16|    Py_ssize_t n_hidden = n_members - desc->n_in_sequence;
  582|     16|    type->tp_basicsize = sizeof(PyStructSequence) + (n_hidden - 1) * sizeof(PyObject *);
  583|     16|    type->tp_itemsize = sizeof(PyObject *);
  584|     16|    type->tp_dealloc = structseq_dealloc;
  585|     16|    type->tp_repr = structseq_repr;
  586|     16|    type->tp_doc = desc->doc;
  587|     16|    type->tp_base = &PyTuple_Type;
  588|     16|    type->tp_methods = structseq_methods;
  589|     16|    type->tp_new = structseq_new;
  590|     16|    type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | tp_flags;
  ------------------
  |  |  560|     16|#define Py_TPFLAGS_DEFAULT  ( \
  |  |  561|     16|                 Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | \
  |  |  ------------------
  |  |  |  |  530|     16|#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0
  |  |  ------------------
  |  |  562|     16|                0)
  ------------------
                  type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | tp_flags;
  ------------------
  |  |  524|     16|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  591|     16|    type->tp_traverse = structseq_traverse;
  592|     16|    type->tp_members = tp_members;
  593|     16|}
structseq.c:initialize_structseq_dict:
  483|     34|                          Py_ssize_t n_members, Py_ssize_t n_unnamed_members) {
  484|     34|    PyObject *v;
  485|       |
  486|     34|#define SET_DICT_FROM_SIZE(key, value)                                         \
  487|     34|    do {                                                                       \
  488|     34|        v = PyLong_FromSsize_t(value);                                         \
  489|     34|        if (v == NULL) {                                                       \
  490|     34|            return -1;                                                         \
  491|     34|        }                                                                      \
  492|     34|        if (PyDict_SetItemString(dict, key, v) < 0) {                          \
  493|     34|            Py_DECREF(v);                                                      \
  494|     34|            return -1;                                                         \
  495|     34|        }                                                                      \
  496|     34|        Py_DECREF(v);                                                          \
  497|     34|    } while (0)
  498|       |
  499|     34|    SET_DICT_FROM_SIZE(visible_length_key, desc->n_in_sequence);
  ------------------
  |  |  487|     34|    do {                                                                       \
  |  |  488|     34|        v = PyLong_FromSsize_t(value);                                         \
  |  |  489|     34|        if (v == NULL) {                                                       \
  |  |  ------------------
  |  |  |  Branch (489:13): [True: 0, False: 34]
  |  |  ------------------
  |  |  490|      0|            return -1;                                                         \
  |  |  491|      0|        }                                                                      \
  |  |  492|     34|        if (PyDict_SetItemString(dict, key, v) < 0) {                          \
  |  |  ------------------
  |  |  |  Branch (492:13): [True: 0, False: 34]
  |  |  ------------------
  |  |  493|      0|            Py_DECREF(v);                                                      \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  494|      0|            return -1;                                                         \
  |  |  495|      0|        }                                                                      \
  |  |  496|     34|        Py_DECREF(v);                                                          \
  |  |  ------------------
  |  |  |  |  430|     34|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  497|     34|    } while (0)
  |  |  ------------------
  |  |  |  Branch (497:14): [Folded, False: 34]
  |  |  ------------------
  ------------------
  500|     34|    SET_DICT_FROM_SIZE(real_length_key, n_members);
  ------------------
  |  |  487|     34|    do {                                                                       \
  |  |  488|     34|        v = PyLong_FromSsize_t(value);                                         \
  |  |  489|     34|        if (v == NULL) {                                                       \
  |  |  ------------------
  |  |  |  Branch (489:13): [True: 0, False: 34]
  |  |  ------------------
  |  |  490|      0|            return -1;                                                         \
  |  |  491|      0|        }                                                                      \
  |  |  492|     34|        if (PyDict_SetItemString(dict, key, v) < 0) {                          \
  |  |  ------------------
  |  |  |  Branch (492:13): [True: 0, False: 34]
  |  |  ------------------
  |  |  493|      0|            Py_DECREF(v);                                                      \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  494|      0|            return -1;                                                         \
  |  |  495|      0|        }                                                                      \
  |  |  496|     34|        Py_DECREF(v);                                                          \
  |  |  ------------------
  |  |  |  |  430|     34|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  497|     34|    } while (0)
  |  |  ------------------
  |  |  |  Branch (497:14): [Folded, False: 34]
  |  |  ------------------
  ------------------
  501|     34|    SET_DICT_FROM_SIZE(unnamed_fields_key, n_unnamed_members);
  ------------------
  |  |  487|     34|    do {                                                                       \
  |  |  488|     34|        v = PyLong_FromSsize_t(value);                                         \
  |  |  489|     34|        if (v == NULL) {                                                       \
  |  |  ------------------
  |  |  |  Branch (489:13): [True: 0, False: 34]
  |  |  ------------------
  |  |  490|      0|            return -1;                                                         \
  |  |  491|      0|        }                                                                      \
  |  |  492|     34|        if (PyDict_SetItemString(dict, key, v) < 0) {                          \
  |  |  ------------------
  |  |  |  Branch (492:13): [True: 0, False: 34]
  |  |  ------------------
  |  |  493|      0|            Py_DECREF(v);                                                      \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  494|      0|            return -1;                                                         \
  |  |  495|      0|        }                                                                      \
  |  |  496|     34|        Py_DECREF(v);                                                          \
  |  |  ------------------
  |  |  |  |  430|     34|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  497|     34|    } while (0)
  |  |  ------------------
  |  |  |  Branch (497:14): [Folded, False: 34]
  |  |  ------------------
  ------------------
  502|       |
  503|       |    // Prepare and set __match_args__
  504|     34|    Py_ssize_t i, k;
  505|     34|    PyObject* keys = PyTuple_New(desc->n_in_sequence);
  506|     34|    if (keys == NULL) {
  ------------------
  |  Branch (506:9): [True: 0, False: 34]
  ------------------
  507|      0|        return -1;
  508|      0|    }
  509|       |
  510|    250|    for (i = k = 0; i < desc->n_in_sequence; ++i) {
  ------------------
  |  Branch (510:21): [True: 216, False: 34]
  ------------------
  511|    216|        if (desc->fields[i].name == PyStructSequence_UnnamedField) {
  ------------------
  |  Branch (511:13): [True: 6, False: 210]
  ------------------
  512|      6|            continue;
  513|      6|        }
  514|    210|        PyObject* new_member = PyUnicode_FromString(desc->fields[i].name);
  515|    210|        if (new_member == NULL) {
  ------------------
  |  Branch (515:13): [True: 0, False: 210]
  ------------------
  516|      0|            goto error;
  517|      0|        }
  518|    210|        PyTuple_SET_ITEM(keys, k, new_member);
  ------------------
  |  |   40|    210|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    210|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    210|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  519|    210|        k++;
  520|    210|    }
  521|       |
  522|     34|    if (_PyTuple_Resize(&keys, k) == -1) {
  ------------------
  |  Branch (522:9): [True: 0, False: 34]
  ------------------
  523|      0|        assert(keys == NULL);
  ------------------
  |  Branch (523:9): [True: 0, False: 0]
  ------------------
  524|      0|        return -1;
  525|      0|    }
  526|       |
  527|     34|    if (PyDict_SetItemString(dict, match_args_key, keys) < 0) {
  ------------------
  |  Branch (527:9): [True: 0, False: 34]
  ------------------
  528|      0|        goto error;
  529|      0|    }
  530|       |
  531|     34|    Py_DECREF(keys);
  ------------------
  |  |  430|     34|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  532|     34|    return 0;
  533|       |
  534|      0|error:
  535|      0|    Py_DECREF(keys);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  536|      0|    return -1;
  537|     34|}
structseq.c:structseq_dealloc:
  133|     28|{
  134|     28|    PyStructSequence *obj = (PyStructSequence *)op;
  135|     28|    Py_ssize_t i, size;
  136|     28|    PyObject_GC_UnTrack(obj);
  137|       |
  138|     28|    PyTypeObject *tp = Py_TYPE(obj);
  ------------------
  |  |  213|     28|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  139|       |    // gh-122527: We can't use REAL_SIZE_TP() or any macros that access the
  140|       |    // type's dictionary here, because the dictionary may have already been
  141|       |    // cleared by the garbage collector.
  142|     28|    size = REAL_SIZE(obj);
  ------------------
  |  |   49|     28|#define REAL_SIZE(op) get_real_size((PyObject *)op)
  ------------------
  143|    560|    for (i = 0; i < size; ++i) {
  ------------------
  |  Branch (143:17): [True: 532, False: 28]
  ------------------
  144|    532|        Py_XDECREF(obj->ob_item[i]);
  ------------------
  |  |  524|    532|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    532|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    532|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  145|    532|    }
  146|     28|    PyObject_GC_Del(obj);
  147|     28|    if (_PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|     28|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (147:9): [True: 28, False: 0]
  ------------------
  148|     28|        Py_DECREF(tp);
  ------------------
  |  |  430|     28|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  149|     28|    }
  150|     28|}

PyTuple_New:
   76|  4.63k|{
   77|  4.63k|    PyTupleObject *op;
   78|  4.63k|    if (size == 0) {
  ------------------
  |  Branch (78:9): [True: 156, False: 4.48k]
  ------------------
   79|    156|        return tuple_get_empty();
   80|    156|    }
   81|  4.48k|    op = tuple_alloc(size);
   82|  4.48k|    if (op == NULL) {
  ------------------
  |  Branch (82:9): [True: 0, False: 4.48k]
  ------------------
   83|      0|        return NULL;
   84|      0|    }
   85|  27.8k|    for (Py_ssize_t i = 0; i < size; i++) {
  ------------------
  |  Branch (85:28): [True: 23.3k, False: 4.48k]
  ------------------
   86|  23.3k|        op->ob_item[i] = NULL;
   87|  23.3k|    }
   88|  4.48k|    _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|  4.48k|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   89|  4.48k|    return (PyObject *) op;
   90|  4.48k|}
PyTuple_Size:
   94|    622|{
   95|    622|    if (!PyTuple_Check(op)) {
  ------------------
  |  |   27|    622|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    622|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (95:9): [True: 0, False: 622]
  ------------------
   96|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
   97|      0|        return -1;
   98|      0|    }
   99|    622|    else
  100|    622|        return Py_SIZE(op);
  ------------------
  |  |  214|    622|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    622|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    622|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  101|    622|}
PyTuple_GetItem:
  105|    608|{
  106|    608|    if (!PyTuple_Check(op)) {
  ------------------
  |  |   27|    608|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    608|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (106:9): [True: 0, False: 608]
  ------------------
  107|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  108|      0|        return NULL;
  109|      0|    }
  110|    608|    if (i < 0 || i >= Py_SIZE(op)) {
  ------------------
  |  |  214|    608|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    608|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    608|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (110:9): [True: 0, False: 608]
  |  Branch (110:18): [True: 0, False: 608]
  ------------------
  111|      0|        PyErr_SetString(PyExc_IndexError, "tuple index out of range");
  112|      0|        return NULL;
  113|      0|    }
  114|    608|    return ((PyTupleObject *)op) -> ob_item[i];
  115|    608|}
_PyTuple_MaybeUntrack:
  139|  2.04k|{
  140|  2.04k|    PyTupleObject *t;
  141|  2.04k|    Py_ssize_t i, n;
  142|       |
  143|  2.04k|    if (!PyTuple_CheckExact(op) || !_PyObject_GC_IS_TRACKED(op))
  ------------------
  |  |   28|  2.04k|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|  4.08k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.04k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.04k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (!PyTuple_CheckExact(op) || !_PyObject_GC_IS_TRACKED(op))
  ------------------
  |  |   81|  2.04k|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|  2.04k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (143:9): [True: 0, False: 2.04k]
  |  Branch (143:36): [True: 0, False: 2.04k]
  ------------------
  144|      0|        return;
  145|  2.04k|    t = (PyTupleObject *) op;
  146|  2.04k|    n = Py_SIZE(t);
  ------------------
  |  |  214|  2.04k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  2.04k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.04k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  147|  10.0k|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (147:17): [True: 8.33k, False: 1.67k]
  ------------------
  148|  8.33k|        PyObject *elt = PyTuple_GET_ITEM(t, i);
  ------------------
  |  |   29|  8.33k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  8.33k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  8.33k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (148:25): [True: 8.33k, False: 0]
  ------------------
  149|       |        /* Tuple with NULL elements aren't
  150|       |           fully constructed, don't untrack
  151|       |           them yet. */
  152|  8.33k|        if (!elt ||
  ------------------
  |  Branch (152:13): [True: 0, False: 8.33k]
  ------------------
  153|  8.33k|            _PyObject_GC_MAY_BE_TRACKED(elt))
  ------------------
  |  Branch (153:13): [True: 364, False: 7.97k]
  ------------------
  154|    364|            return;
  155|  8.33k|    }
  156|  1.67k|    _PyObject_GC_UNTRACK(op);
  ------------------
  |  |  515|  1.67k|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.67k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.67k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  157|  1.67k|}
PyTuple_Pack:
  173|    602|{
  174|    602|    Py_ssize_t i;
  175|    602|    PyObject *o;
  176|    602|    PyObject **items;
  177|    602|    va_list vargs;
  178|    602|    bool track = false;
  179|       |
  180|    602|    if (n == 0) {
  ------------------
  |  Branch (180:9): [True: 0, False: 602]
  ------------------
  181|      0|        return tuple_get_empty();
  182|      0|    }
  183|       |
  184|    602|    va_start(vargs, n);
  185|    602|    PyTupleObject *result = tuple_alloc(n);
  186|    602|    if (result == NULL) {
  ------------------
  |  Branch (186:9): [True: 0, False: 602]
  ------------------
  187|      0|        va_end(vargs);
  188|      0|        return NULL;
  189|      0|    }
  190|    602|    items = result->ob_item;
  191|  1.30k|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (191:17): [True: 698, False: 602]
  ------------------
  192|    698|        o = va_arg(vargs, PyObject *);
  193|    698|        if (!track && maybe_tracked(o)) {
  ------------------
  |  Branch (193:13): [True: 678, False: 20]
  |  Branch (193:23): [True: 574, False: 104]
  ------------------
  194|    574|            track = true;
  195|    574|        }
  196|    698|        items[i] = Py_NewRef(o);
  ------------------
  |  |  550|    698|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    698|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    698|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  197|    698|    }
  198|    602|    va_end(vargs);
  199|    602|    if (track) {
  ------------------
  |  Branch (199:9): [True: 574, False: 28]
  ------------------
  200|    574|        _PyObject_GC_TRACK(result);
  ------------------
  |  |  513|    574|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    574|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    574|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  201|    574|    }
  202|    602|    return (PyObject *)result;
  203|    602|}
_PyTuple_FromPair:
  207|      2|{
  208|      2|    assert(first != NULL);
  ------------------
  |  Branch (208:5): [True: 2, False: 0]
  ------------------
  209|      2|    assert(second != NULL);
  ------------------
  |  Branch (209:5): [True: 2, False: 0]
  ------------------
  210|       |
  211|      2|    return _PyTuple_FromPairSteal(Py_NewRef(first), Py_NewRef(second));
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  return _PyTuple_FromPairSteal(Py_NewRef(first), Py_NewRef(second));
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  212|      2|}
_PyTuple_FromPairSteal:
  216|    572|{
  217|    572|    assert(first != NULL);
  ------------------
  |  Branch (217:5): [True: 572, False: 0]
  ------------------
  218|    572|    assert(second != NULL);
  ------------------
  |  Branch (218:5): [True: 572, False: 0]
  ------------------
  219|       |
  220|    572|    PyTupleObject *op = tuple_alloc(2);
  221|    572|    if (op == NULL) {
  ------------------
  |  Branch (221:9): [True: 0, False: 572]
  ------------------
  222|      0|        Py_DECREF(first);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  223|      0|        Py_DECREF(second);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  224|      0|        return NULL;
  225|      0|    }
  226|    572|    PyObject **items = op->ob_item;
  227|    572|    items[0] = first;
  228|    572|    items[1] = second;
  229|    572|    if (maybe_tracked(first) || maybe_tracked(second)) {
  ------------------
  |  Branch (229:9): [True: 2, False: 570]
  |  Branch (229:33): [True: 374, False: 196]
  ------------------
  230|    376|        _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|    376|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    376|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    376|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  231|    376|    }
  232|    572|    return (PyObject *)op;
  233|    572|}
PyTuple_FromArray:
  434|  5.35k|{
  435|  5.35k|    if (n == 0) {
  ------------------
  |  Branch (435:9): [True: 370, False: 4.98k]
  ------------------
  436|    370|        return tuple_get_empty();
  437|    370|    }
  438|       |
  439|  4.98k|    PyTupleObject *tuple = tuple_alloc(n);
  440|  4.98k|    if (tuple == NULL) {
  ------------------
  |  Branch (440:9): [True: 0, False: 4.98k]
  ------------------
  441|      0|        return NULL;
  442|      0|    }
  443|  4.98k|    PyObject **dst = tuple->ob_item;
  444|  4.98k|    bool track = false;
  445|  11.5k|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (445:28): [True: 6.54k, False: 4.98k]
  ------------------
  446|  6.54k|        PyObject *item = src[i];
  447|  6.54k|        if (!track && maybe_tracked(item)) {
  ------------------
  |  Branch (447:13): [True: 5.52k, False: 1.01k]
  |  Branch (447:23): [True: 966, False: 4.55k]
  ------------------
  448|    966|            track = true;
  449|    966|        }
  450|  6.54k|        dst[i] = Py_NewRef(item);
  ------------------
  |  |  550|  6.54k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  6.54k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.54k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  451|  6.54k|    }
  452|  4.98k|    if (track) {
  ------------------
  |  Branch (452:9): [True: 966, False: 4.02k]
  ------------------
  453|    966|        _PyObject_GC_TRACK(tuple);
  ------------------
  |  |  513|    966|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    966|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    966|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  454|    966|    }
  455|  4.98k|    return (PyObject *)tuple;
  456|  4.98k|}
_PyTuple_FromStackRefStealOnSuccess:
  460|    866|{
  461|    866|    if (n == 0) {
  ------------------
  |  Branch (461:9): [True: 0, False: 866]
  ------------------
  462|      0|        return tuple_get_empty();
  463|      0|    }
  464|    866|    PyTupleObject *tuple = tuple_alloc(n);
  465|    866|    if (tuple == NULL) {
  ------------------
  |  Branch (465:9): [True: 0, False: 866]
  ------------------
  466|      0|        return NULL;
  467|      0|    }
  468|    866|    PyObject **dst = tuple->ob_item;
  469|    866|    bool track = false;
  470|  2.55k|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (470:28): [True: 1.68k, False: 866]
  ------------------
  471|  1.68k|        PyObject *item = PyStackRef_AsPyObjectSteal(src[i]);
  472|  1.68k|        if (!track && maybe_tracked(item)) {
  ------------------
  |  Branch (472:13): [True: 1.39k, False: 294]
  |  Branch (472:23): [True: 346, False: 1.04k]
  ------------------
  473|    346|            track = true;
  474|    346|        }
  475|  1.68k|        dst[i] = item;
  476|  1.68k|    }
  477|    866|    if (track) {
  ------------------
  |  Branch (477:9): [True: 346, False: 520]
  ------------------
  478|    346|        _PyObject_GC_TRACK(tuple);
  ------------------
  |  |  513|    346|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    346|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    346|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  479|    346|    }
  480|    866|    return (PyObject *)tuple;
  481|    866|}
_PyTuple_FromArraySteal:
  485|     16|{
  486|     16|    if (n == 0) {
  ------------------
  |  Branch (486:9): [True: 0, False: 16]
  ------------------
  487|      0|        return tuple_get_empty();
  488|      0|    }
  489|     16|    PyTupleObject *tuple = tuple_alloc(n);
  490|     16|    if (tuple == NULL) {
  ------------------
  |  Branch (490:9): [True: 0, False: 16]
  ------------------
  491|      0|        for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (491:32): [True: 0, False: 0]
  ------------------
  492|      0|            Py_DECREF(src[i]);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  493|      0|        }
  494|      0|        return NULL;
  495|      0|    }
  496|     16|    PyObject **dst = tuple->ob_item;
  497|     72|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (497:28): [True: 56, False: 16]
  ------------------
  498|     56|        PyObject *item = src[i];
  499|     56|        dst[i] = item;
  500|     56|    }
  501|     16|    _PyObject_GC_TRACK(tuple);
  ------------------
  |  |  513|     16|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  502|     16|    return (PyObject *)tuple;
  503|     16|}
PyTuple_GetSlice:
  542|     68|{
  543|     68|    if (op == NULL || !PyTuple_Check(op)) {
  ------------------
  |  |   27|     68|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     68|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (543:9): [True: 0, False: 68]
  |  Branch (543:23): [True: 0, False: 68]
  ------------------
  544|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  545|      0|        return NULL;
  546|      0|    }
  547|     68|    return tuple_slice((PyTupleObject *)op, i, j);
  548|     68|}
_PyTuple_Concat:
  552|      2|{
  553|      2|    PyTupleObject *a = _PyTuple_CAST(aa);
  ------------------
  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (553:24): [True: 2, False: 0]
  ------------------
  554|      2|    if (Py_SIZE(a) == 0 && PyTuple_CheckExact(bb)) {
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_SIZE(a) == 0 && PyTuple_CheckExact(bb)) {
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (554:9): [True: 0, False: 2]
  ------------------
  555|      0|        return Py_NewRef(bb);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  556|      0|    }
  557|      2|    if (!PyTuple_Check(bb)) {
  ------------------
  |  |   27|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (557:9): [True: 0, False: 2]
  ------------------
  558|      0|        PyErr_Format(PyExc_TypeError,
  559|      0|             "can only concatenate tuple (not \"%.200s\") to tuple",
  560|      0|                 Py_TYPE(bb)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  561|      0|        return NULL;
  562|      0|    }
  563|      2|    PyTupleObject *b = (PyTupleObject *)bb;
  564|       |
  565|      2|    if (Py_SIZE(b) == 0 && PyTuple_CheckExact(a)) {
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_SIZE(b) == 0 && PyTuple_CheckExact(a)) {
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (565:9): [True: 0, False: 2]
  ------------------
  566|      0|        return Py_NewRef(a);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  567|      0|    }
  568|      2|    assert((size_t)Py_SIZE(a) + (size_t)Py_SIZE(b) < PY_SSIZE_T_MAX);
  ------------------
  |  Branch (568:5): [True: 2, False: 0]
  ------------------
  569|      2|    Py_ssize_t size = Py_SIZE(a) + Py_SIZE(b);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  Py_ssize_t size = Py_SIZE(a) + Py_SIZE(b);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  570|      2|    if (size == 0) {
  ------------------
  |  Branch (570:9): [True: 0, False: 2]
  ------------------
  571|      0|        return tuple_get_empty();
  572|      0|    }
  573|       |
  574|      2|    PyTupleObject *np = tuple_alloc(size);
  575|      2|    if (np == NULL) {
  ------------------
  |  Branch (575:9): [True: 0, False: 2]
  ------------------
  576|      0|        return NULL;
  577|      0|    }
  578|       |
  579|      2|    PyObject **src = a->ob_item;
  580|      2|    PyObject **dest = np->ob_item;
  581|     12|    for (Py_ssize_t i = 0; i < Py_SIZE(a); i++) {
  ------------------
  |  |  214|     12|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (581:28): [True: 10, False: 2]
  ------------------
  582|     10|        PyObject *v = src[i];
  583|     10|        dest[i] = Py_NewRef(v);
  ------------------
  |  |  550|     10|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  584|     10|    }
  585|       |
  586|      2|    src = b->ob_item;
  587|      2|    dest = np->ob_item + Py_SIZE(a);
  ------------------
  |  |  214|      2|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  588|      4|    for (Py_ssize_t i = 0; i < Py_SIZE(b); i++) {
  ------------------
  |  |  214|      4|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (588:28): [True: 2, False: 2]
  ------------------
  589|      2|        PyObject *v = src[i];
  590|      2|        dest[i] = Py_NewRef(v);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  591|      2|    }
  592|       |
  593|      2|    _PyObject_GC_TRACK(np);
  ------------------
  |  |  513|      2|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  594|      2|    return (PyObject *)np;
  595|      2|}
_PyTuple_Resize:
 1026|     34|{
 1027|     34|    PyTupleObject *v;
 1028|     34|    PyTupleObject *sv;
 1029|     34|    Py_ssize_t i;
 1030|     34|    Py_ssize_t oldsize;
 1031|       |
 1032|     34|    v = (PyTupleObject *) *pv;
 1033|     34|    if (v == NULL || !Py_IS_TYPE(v, &PyTuple_Type) ||
  ------------------
  |  |  215|     68|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1033:9): [True: 0, False: 34]
  |  Branch (1033:22): [True: 0, False: 34]
  ------------------
 1034|     34|        (Py_SIZE(v) != 0 && !_PyObject_IsUniquelyReferenced(*pv))) {
  ------------------
  |  |  214|     34|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1034:10): [True: 34, False: 0]
  |  Branch (1034:29): [True: 0, False: 34]
  ------------------
 1035|      0|        *pv = 0;
 1036|      0|        Py_XDECREF(v);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1037|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1038|      0|        return -1;
 1039|      0|    }
 1040|       |
 1041|     34|    oldsize = Py_SIZE(v);
  ------------------
  |  |  214|     34|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1042|     34|    if (oldsize == newsize) {
  ------------------
  |  Branch (1042:9): [True: 32, False: 2]
  ------------------
 1043|     32|        return 0;
 1044|     32|    }
 1045|      2|    if (newsize == 0) {
  ------------------
  |  Branch (1045:9): [True: 0, False: 2]
  ------------------
 1046|      0|        Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1047|      0|        *pv = tuple_get_empty();
 1048|      0|        return 0;
 1049|      0|    }
 1050|      2|    if (oldsize == 0) {
  ------------------
  |  Branch (1050:9): [True: 0, False: 2]
  ------------------
 1051|       |#ifdef Py_DEBUG
 1052|       |        assert(v == &_Py_SINGLETON(tuple_empty));
 1053|       |#endif
 1054|       |        /* The empty tuple is statically allocated so we never
 1055|       |           resize it in-place. */
 1056|      0|        Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1057|      0|        *pv = PyTuple_New(newsize);
 1058|      0|        return *pv == NULL ? -1 : 0;
  ------------------
  |  Branch (1058:16): [True: 0, False: 0]
  ------------------
 1059|      0|    }
 1060|       |
 1061|      2|    if (_PyObject_GC_IS_TRACKED(v)) {
  ------------------
  |  |   81|      2|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 2, False: 0]
  |  |  ------------------
  ------------------
 1062|      2|        _PyObject_GC_UNTRACK(v);
  ------------------
  |  |  515|      2|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1063|      2|    }
 1064|       |#ifdef Py_TRACE_REFS
 1065|       |    _Py_ForgetReference((PyObject *) v);
 1066|       |#endif
 1067|       |    /* DECREF items deleted by shrinkage */
 1068|      8|    for (i = newsize; i < oldsize; i++) {
  ------------------
  |  Branch (1068:23): [True: 6, False: 2]
  ------------------
 1069|      6|        Py_CLEAR(v->ob_item[i]);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 6]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 1070|      6|    }
 1071|      2|    _PyReftracerTrack((PyObject *)v, PyRefTracer_DESTROY);
  ------------------
  |  |  112|      2|    do { \
  |  |  113|      2|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  114|      2|        if (tracer->tracer_func != NULL) { \
  |  |  ------------------
  |  |  |  Branch (114:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  117|      0|        } \
  |  |  118|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (118:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1072|      2|    sv = PyObject_GC_Resize(PyTupleObject, v, newsize);
  ------------------
  |  |  161|      2|                ( (type *) _PyObject_GC_Resize(_PyVarObject_CAST(op), (n)) )
  |  |  ------------------
  |  |  |  |  182|      2|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1073|      2|    if (sv == NULL) {
  ------------------
  |  Branch (1073:9): [True: 0, False: 2]
  ------------------
 1074|      0|        *pv = NULL;
 1075|       |#ifdef Py_REF_DEBUG
 1076|       |        _Py_DecRefTotal(_PyThreadState_GET());
 1077|       |#endif
 1078|      0|        PyObject_GC_Del(v);
 1079|      0|        return -1;
 1080|      0|    }
 1081|      2|    _Py_NewReferenceNoTotal((PyObject *) sv);
 1082|       |    /* Zero out items added by growing */
 1083|      2|    if (newsize > oldsize)
  ------------------
  |  Branch (1083:9): [True: 0, False: 2]
  ------------------
 1084|      0|        memset(&sv->ob_item[oldsize], 0,
 1085|      0|               sizeof(*sv->ob_item) * (newsize - oldsize));
 1086|      2|    *pv = (PyObject *) sv;
 1087|      2|    _PyObject_GC_TRACK(sv);
  ------------------
  |  |  513|      2|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1088|      2|    return 0;
 1089|      2|}
tupleobject.c:tuple_get_empty:
   70|    526|{
   71|    526|    return (PyObject *)&_Py_SINGLETON(tuple_empty);
  ------------------
  |  |   18|    526|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  ------------------
  |  |  |  |   16|    526|    _PyRuntime.static_objects.NAME
  |  |  ------------------
  ------------------
   72|    526|}
tupleobject.c:tuple_alloc:
   38|  11.5k|{
   39|  11.5k|    if (size < 0) {
  ------------------
  |  Branch (39:9): [True: 0, False: 11.5k]
  ------------------
   40|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
   41|      0|        return NULL;
   42|      0|    }
   43|  11.5k|    assert(size != 0);    // The empty tuple is statically allocated.
  ------------------
  |  Branch (43:5): [True: 11.5k, False: 0]
  ------------------
   44|  11.5k|    Py_ssize_t index = size - 1;
   45|  11.5k|    if (index < PyTuple_MAXSAVESIZE) {
  ------------------
  |  |   11|  11.5k|#  define PyTuple_MAXSAVESIZE 20     // Largest tuple to save on freelist
  ------------------
  |  Branch (45:9): [True: 11.4k, False: 100]
  ------------------
   46|  11.4k|        PyTupleObject *op = _Py_FREELIST_POP(PyTupleObject, tuples[index]);
  ------------------
  |  |   43|  11.4k|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|  11.4k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   47|  11.4k|        if (op != NULL) {
  ------------------
  |  Branch (47:13): [True: 6.92k, False: 4.50k]
  ------------------
   48|  6.92k|            _PyTuple_RESET_HASH_CACHE(op);
  ------------------
  |  |   44|  6.92k|    do {                                    \
  |  |   45|  6.92k|        assert(op != NULL);                 \
  |  |   46|  13.8k|        _PyTuple_CAST(op)->ob_hash = -1;    \
  |  |  ------------------
  |  |  |  |   19|  6.92k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.92k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   47|  13.8k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (47:14): [Folded, False: 6.92k]
  |  |  ------------------
  ------------------
  |  Branch (48:13): [True: 6.92k, False: 0]
  |  Branch (48:13): [True: 6.92k, False: 0]
  ------------------
   49|  6.92k|            return op;
   50|  6.92k|        }
   51|  11.4k|    }
   52|       |    /* Check for overflow */
   53|  4.60k|    if ((size_t)size > ((size_t)PY_SSIZE_T_MAX - (sizeof(PyTupleObject) -
  ------------------
  |  |  137|  4.60k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (53:9): [True: 0, False: 4.60k]
  ------------------
   54|  4.60k|                sizeof(PyObject *))) / sizeof(PyObject *)) {
   55|      0|        return (PyTupleObject *)PyErr_NoMemory();
   56|      0|    }
   57|  4.60k|    PyTupleObject *result = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size);
  ------------------
  |  |  183|  4.60k|    _Py_CAST(type*, _PyObject_GC_NewVar((typeobj), (n)))
  |  |  ------------------
  |  |  |  |   37|  4.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   58|  4.60k|    if (result != NULL) {
  ------------------
  |  Branch (58:9): [True: 4.60k, False: 0]
  ------------------
   59|  4.60k|        _PyTuple_RESET_HASH_CACHE(result);
  ------------------
  |  |   44|  4.60k|    do {                                    \
  |  |   45|  4.60k|        assert(op != NULL);                 \
  |  |   46|  9.21k|        _PyTuple_CAST(op)->ob_hash = -1;    \
  |  |  ------------------
  |  |  |  |   19|  4.60k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   47|  9.21k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (47:14): [Folded, False: 4.60k]
  |  |  ------------------
  ------------------
  |  Branch (59:9): [True: 4.60k, False: 0]
  |  Branch (59:9): [True: 4.60k, False: 0]
  ------------------
   60|  4.60k|    }
   61|  4.60k|    return result;
   62|  4.60k|}
tupleobject.c:maybe_tracked:
  167|  8.73k|{
  168|  8.73k|    return _PyType_IS_GC(Py_TYPE(ob));
  ------------------
  |  |  828|  8.73k|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|  8.73k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  ------------------
  169|  8.73k|}
tupleobject.c:tuple_slice:
  508|     68|{
  509|     68|    if (ilow < 0)
  ------------------
  |  Branch (509:9): [True: 0, False: 68]
  ------------------
  510|      0|        ilow = 0;
  511|     68|    if (ihigh > Py_SIZE(a))
  ------------------
  |  |  214|     68|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (511:9): [True: 0, False: 68]
  ------------------
  512|      0|        ihigh = Py_SIZE(a);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  513|     68|    if (ihigh < ilow)
  ------------------
  |  Branch (513:9): [True: 0, False: 68]
  ------------------
  514|      0|        ihigh = ilow;
  515|     68|    if (ilow == 0 && ihigh == Py_SIZE(a) && PyTuple_CheckExact(a)) {
  ------------------
  |  |  214|     78|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (ilow == 0 && ihigh == Py_SIZE(a) && PyTuple_CheckExact(a)) {
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (515:9): [True: 10, False: 58]
  |  Branch (515:22): [True: 0, False: 10]
  ------------------
  516|      0|        return Py_NewRef(a);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  517|      0|    }
  518|     68|    return PyTuple_FromArray(a->ob_item + ilow, ihigh - ilow);
  519|     68|}
tupleobject.c:tuple_dealloc:
  256|  7.09k|{
  257|  7.09k|    PyTupleObject *op = _PyTuple_CAST(self);
  ------------------
  |  |   19|  7.09k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  7.09k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (257:25): [True: 7.09k, False: 0]
  ------------------
  258|  7.09k|    if (Py_SIZE(op) == 0) {
  ------------------
  |  |  214|  7.09k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  7.09k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.09k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (258:9): [True: 0, False: 7.09k]
  ------------------
  259|       |        /* The empty tuple is statically allocated. */
  260|      0|        if (op == &_Py_SINGLETON(tuple_empty)) {
  ------------------
  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  ------------------
  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  ------------------
  ------------------
  |  Branch (260:13): [True: 0, False: 0]
  ------------------
  261|       |#ifdef Py_DEBUG
  262|       |            _Py_FatalRefcountError("deallocating the empty tuple singleton");
  263|       |#else
  264|      0|            return;
  265|      0|#endif
  266|      0|        }
  267|       |#ifdef Py_DEBUG
  268|       |        /* tuple subclasses have their own empty instances. */
  269|       |        assert(!PyTuple_CheckExact(op));
  270|       |#endif
  271|      0|    }
  272|       |
  273|  7.09k|    PyObject_GC_UnTrack(op);
  274|       |
  275|  7.09k|    Py_ssize_t i = Py_SIZE(op);
  ------------------
  |  |  214|  7.09k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  7.09k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.09k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  276|  25.4k|    while (--i >= 0) {
  ------------------
  |  Branch (276:12): [True: 18.3k, False: 7.09k]
  ------------------
  277|  18.3k|        Py_XDECREF(op->ob_item[i]);
  ------------------
  |  |  524|  18.3k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  18.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  18.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  278|  18.3k|    }
  279|       |    // This will abort on the empty singleton (if there is one).
  280|  7.09k|    if (!maybe_freelist_push(op)) {
  ------------------
  |  Branch (280:9): [True: 62, False: 7.03k]
  ------------------
  281|     62|        Py_TYPE(op)->tp_free((PyObject *)op);
  ------------------
  |  |  213|     62|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  282|     62|    }
  283|  7.09k|}
tupleobject.c:tuple_length:
  405|     36|{
  406|     36|    PyTupleObject *a = _PyTuple_CAST(self);
  ------------------
  |  |   19|     36|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (406:24): [True: 36, False: 0]
  ------------------
  407|     36|    return Py_SIZE(a);
  ------------------
  |  |  214|     36|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  408|     36|}
tupleobject.c:tuple_item:
  423|     16|{
  424|     16|    PyTupleObject *a = _PyTuple_CAST(op);
  ------------------
  |  |   19|     16|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (424:24): [True: 16, False: 0]
  ------------------
  425|     16|    if (i < 0 || i >= Py_SIZE(a)) {
  ------------------
  |  |  214|     16|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (425:9): [True: 0, False: 16]
  |  Branch (425:18): [True: 0, False: 16]
  ------------------
  426|      0|        PyErr_SetString(PyExc_IndexError, "tuple index out of range");
  427|      0|        return NULL;
  428|      0|    }
  429|     16|    return Py_NewRef(a->ob_item[i]);
  ------------------
  |  |  550|     16|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  430|     16|}
tupleobject.c:tuple_contains:
  412|     54|{
  413|     54|    PyTupleObject *a = _PyTuple_CAST(self);
  ------------------
  |  |   19|     54|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     54|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (413:24): [True: 54, False: 0]
  ------------------
  414|      0|    int cmp = 0;
  415|  1.31k|    for (Py_ssize_t i = 0; cmp == 0 && i < Py_SIZE(a); ++i) {
  ------------------
  |  |  214|  1.26k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.26k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (415:28): [True: 1.26k, False: 52]
  |  Branch (415:40): [True: 1.26k, False: 2]
  ------------------
  416|  1.26k|        cmp = PyObject_RichCompareBool(PyTuple_GET_ITEM(a, i), el, Py_EQ);
  ------------------
  |  |   29|  1.26k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  1.26k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      cmp = PyObject_RichCompareBool(PyTuple_GET_ITEM(a, i), el, Py_EQ);
  ------------------
  |  |  654|  1.26k|#define Py_EQ 2
  ------------------
  |  Branch (416:40): [True: 1.26k, False: 0]
  ------------------
  417|  1.26k|    }
  418|     54|    return cmp;
  419|     54|}
tupleobject.c:tuple_subscript:
  889|     16|{
  890|     16|    PyTupleObject *self = _PyTuple_CAST(op);
  ------------------
  |  |   19|     16|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (890:27): [True: 16, False: 0]
  ------------------
  891|     16|    if (_PyIndex_Check(item)) {
  ------------------
  |  Branch (891:9): [True: 16, False: 0]
  ------------------
  892|     16|        Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
  893|     16|        if (i == -1 && PyErr_Occurred())
  ------------------
  |  Branch (893:13): [True: 0, False: 16]
  |  Branch (893:24): [True: 0, False: 0]
  ------------------
  894|      0|            return NULL;
  895|     16|        if (i < 0)
  ------------------
  |  Branch (895:13): [True: 0, False: 16]
  ------------------
  896|      0|            i += PyTuple_GET_SIZE(self);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  897|     16|        return tuple_item(op, i);
  898|     16|    }
  899|      0|    else if (PySlice_Check(item)) {
  ------------------
  |  |   22|      0|#define PySlice_Check(op) Py_IS_TYPE((op), &PySlice_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  900|      0|        Py_ssize_t start, stop, step, slicelength, i;
  901|      0|        size_t cur;
  902|      0|        PyObject* it;
  903|      0|        PyObject **src, **dest;
  904|       |
  905|      0|        if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
  ------------------
  |  Branch (905:13): [True: 0, False: 0]
  ------------------
  906|      0|            return NULL;
  907|      0|        }
  908|      0|        slicelength = PySlice_AdjustIndices(PyTuple_GET_SIZE(self), &start,
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  909|      0|                                            &stop, step);
  910|       |
  911|      0|        if (slicelength <= 0) {
  ------------------
  |  Branch (911:13): [True: 0, False: 0]
  ------------------
  912|      0|            return tuple_get_empty();
  913|      0|        }
  914|      0|        else if (start == 0 && step == 1 &&
  ------------------
  |  Branch (914:18): [True: 0, False: 0]
  |  Branch (914:32): [True: 0, False: 0]
  ------------------
  915|      0|                 slicelength == PyTuple_GET_SIZE(self) &&
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (915:18): [True: 0, False: 0]
  ------------------
  916|      0|                 PyTuple_CheckExact(self)) {
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  917|      0|            return Py_NewRef(self);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  918|      0|        }
  919|      0|        else {
  920|      0|            PyTupleObject* result = tuple_alloc(slicelength);
  921|      0|            if (!result) return NULL;
  ------------------
  |  Branch (921:17): [True: 0, False: 0]
  ------------------
  922|       |
  923|      0|            src = self->ob_item;
  924|      0|            dest = result->ob_item;
  925|      0|            for (cur = start, i = 0; i < slicelength;
  ------------------
  |  Branch (925:38): [True: 0, False: 0]
  ------------------
  926|      0|                 cur += step, i++) {
  927|      0|                it = Py_NewRef(src[cur]);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  928|      0|                dest[i] = it;
  929|      0|            }
  930|       |
  931|      0|            _PyObject_GC_TRACK(result);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  932|      0|            return (PyObject *)result;
  933|      0|        }
  934|      0|    }
  935|      0|    else {
  936|      0|        PyErr_Format(PyExc_TypeError,
  937|      0|                     "tuple indices must be integers or slices, not %.200s",
  938|      0|                     Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  939|       |        return NULL;
  940|      0|    }
  941|     16|}
tupleobject.c:tuple_traverse:
  716|  4.08k|{
  717|  4.08k|    PyTupleObject *o = _PyTuple_CAST(self);
  ------------------
  |  |   19|  4.08k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  4.08k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (717:24): [True: 4.08k, False: 0]
  ------------------
  718|  22.2k|    for (Py_ssize_t i = Py_SIZE(o); --i >= 0; ) {
  ------------------
  |  |  214|  4.08k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  4.08k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.08k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (718:37): [True: 18.2k, False: 4.08k]
  ------------------
  719|  18.2k|        Py_VISIT(o->ob_item[i]);
  ------------------
  |  |  194|  18.2k|    do {                                                                \
  |  |  195|  18.2k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 18.2k, False: 0]
  |  |  ------------------
  |  |  196|  18.2k|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|  18.2k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  18.2k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|  18.2k|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 18.2k]
  |  |  ------------------
  |  |  198|  18.2k|                return vret;                                            \
  |  |  199|  18.2k|        }                                                               \
  |  |  200|  18.2k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 18.2k]
  |  |  ------------------
  ------------------
  720|  18.2k|    }
  721|  4.08k|    return 0;
  722|  4.08k|}
tupleobject.c:tuple_new_impl:
  797|      6|{
  798|      6|    if (type != &PyTuple_Type)
  ------------------
  |  Branch (798:9): [True: 2, False: 4]
  ------------------
  799|      2|        return tuple_subtype_new(type, iterable);
  800|       |
  801|      4|    if (iterable == NULL) {
  ------------------
  |  Branch (801:9): [True: 0, False: 4]
  ------------------
  802|      0|        return tuple_get_empty();
  803|      0|    }
  804|      4|    else {
  805|      4|        return PySequence_Tuple(iterable);
  806|      4|    }
  807|      4|}
tupleobject.c:tuple_subtype_new:
  832|      2|{
  833|      2|    PyObject *tmp, *newobj, *item;
  834|      2|    Py_ssize_t i, n;
  835|       |
  836|      2|    assert(PyType_IsSubtype(type, &PyTuple_Type));
  ------------------
  |  Branch (836:5): [True: 2, False: 0]
  ------------------
  837|       |    // tuple subclasses must implement the GC protocol
  838|      2|    assert(_PyType_IS_GC(type));
  ------------------
  |  Branch (838:5): [True: 2, False: 0]
  ------------------
  839|       |
  840|      2|    tmp = tuple_new_impl(&PyTuple_Type, iterable);
  841|      2|    if (tmp == NULL)
  ------------------
  |  Branch (841:9): [True: 0, False: 2]
  ------------------
  842|      0|        return NULL;
  843|      2|    assert(PyTuple_Check(tmp));
  ------------------
  |  Branch (843:5): [True: 2, False: 0]
  ------------------
  844|       |    /* This may allocate an empty tuple that is not the global one. */
  845|      2|    newobj = type->tp_alloc(type, n = PyTuple_GET_SIZE(tmp));
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  846|      2|    if (newobj == NULL) {
  ------------------
  |  Branch (846:9): [True: 0, False: 2]
  ------------------
  847|      0|        Py_DECREF(tmp);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  848|      0|        return NULL;
  849|      0|    }
  850|     10|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (850:17): [True: 8, False: 2]
  ------------------
  851|      8|        item = PyTuple_GET_ITEM(tmp, i);
  ------------------
  |  |   29|      8|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      8|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (851:16): [True: 8, False: 0]
  ------------------
  852|      8|        PyTuple_SET_ITEM(newobj, i, Py_NewRef(item));
  ------------------
  |  |   40|      8|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  853|      8|    }
  854|      2|    Py_DECREF(tmp);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  855|       |
  856|      2|    _PyTuple_RESET_HASH_CACHE(newobj);
  ------------------
  |  |   44|      2|    do {                                    \
  |  |   45|      2|        assert(op != NULL);                 \
  |  |   46|      4|        _PyTuple_CAST(op)->ob_hash = -1;    \
  |  |  ------------------
  |  |  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   47|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (47:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (856:5): [True: 2, False: 0]
  |  Branch (856:5): [True: 2, False: 0]
  ------------------
  857|       |
  858|       |    // Don't track if a subclass tp_alloc is PyType_GenericAlloc()
  859|      2|    if (!_PyObject_GC_IS_TRACKED(newobj)) {
  ------------------
  |  |   81|      2|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (859:9): [True: 0, False: 2]
  ------------------
  860|      0|        _PyObject_GC_TRACK(newobj);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  861|      0|    }
  862|      2|    return newobj;
  863|      2|}
tupleobject.c:tuple_vectorcall:
  812|      2|{
  813|      2|    if (!_PyArg_NoKwnames("tuple", kwnames)) {
  ------------------
  |  |   15|      2|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 2, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  814|      0|        return NULL;
  815|      0|    }
  816|       |
  817|      2|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|      2|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  818|      2|    if (!_PyArg_CheckPositional("tuple", nargs, 0, 1)) {
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  819|      0|        return NULL;
  820|      0|    }
  821|       |
  822|      2|    if (nargs) {
  ------------------
  |  Branch (822:9): [True: 2, False: 0]
  ------------------
  823|      2|        return tuple_new_impl(_PyType_CAST(type), args[0]);
  ------------------
  |  |  770|      2|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (823:31): [True: 2, False: 0]
  ------------------
  824|      2|    }
  825|      0|    else {
  826|      0|        return tuple_get_empty();
  827|      0|    }
  828|      2|}
tupleobject.c:tuple_iteritem:
  878|     26|{
  879|     26|    if (index >= PyTuple_GET_SIZE(obj)) {
  ------------------
  |  |   27|     26|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (879:9): [True: 4, False: 22]
  ------------------
  880|      4|        return (_PyObjectIndexPair) { .object = NULL, .index = index };
  881|      4|    }
  882|     22|    PyObject *result = PyTuple_GET_ITEM(obj, index);
  ------------------
  |  |   29|     22|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     22|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (882:24): [True: 22, False: 0]
  ------------------
  883|     22|    Py_INCREF(result);
  ------------------
  |  |  310|     22|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  884|     22|    return (_PyObjectIndexPair) { .object = result, .index = index + 1 };
  885|     22|}
tupleobject.c:tupleiter_dealloc:
 1097|     26|{
 1098|     26|    _PyTupleIterObject *it = _PyTupleIterObject_CAST(self);
  ------------------
  |  | 1093|     26|#define _PyTupleIterObject_CAST(op) ((_PyTupleIterObject *)(op))
  ------------------
 1099|     26|    _PyObject_GC_UNTRACK(it);
  ------------------
  |  |  515|     26|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1100|     26|    Py_XDECREF(it->it_seq);
  ------------------
  |  |  524|     26|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1101|     26|    assert(Py_IS_TYPE(self, &PyTupleIter_Type));
  ------------------
  |  Branch (1101:5): [True: 26, False: 0]
  ------------------
 1102|     26|    _Py_FREELIST_FREE(tuple_iters, it, PyObject_GC_Del);
  ------------------
  |  |   35|     26|    _PyFreeList_Free(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), \
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|     26|                     Py_ ## NAME ## _MAXFREELIST, freefunc)
  |  |  ------------------
  |  |  |  |   15|     26|#  define Py_tuple_iters_MAXFREELIST 10
  |  |  ------------------
  ------------------
 1103|     26|}
tupleobject.c:tupleiter_next:
 1115|    662|{
 1116|    662|    _PyTupleIterObject *it = _PyTupleIterObject_CAST(self);
  ------------------
  |  | 1093|    662|#define _PyTupleIterObject_CAST(op) ((_PyTupleIterObject *)(op))
  ------------------
 1117|    662|    PyTupleObject *seq;
 1118|    662|    PyObject *item;
 1119|       |
 1120|    662|    assert(it != NULL);
  ------------------
  |  Branch (1120:5): [True: 662, False: 0]
  ------------------
 1121|    662|    seq = it->it_seq;
 1122|    662|#ifndef Py_GIL_DISABLED
 1123|    662|    if (seq == NULL)
  ------------------
  |  Branch (1123:9): [True: 0, False: 662]
  ------------------
 1124|      0|        return NULL;
 1125|    662|#endif
 1126|    662|    assert(PyTuple_Check(seq));
  ------------------
  |  Branch (1126:5): [True: 662, False: 0]
  ------------------
 1127|       |
 1128|    662|    Py_ssize_t index = FT_ATOMIC_LOAD_SSIZE_RELAXED(it->it_index);
  ------------------
  |  |  149|    662|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
 1129|    662|    if (index < PyTuple_GET_SIZE(seq)) {
  ------------------
  |  |   27|    662|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    662|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    662|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1129:9): [True: 638, False: 24]
  ------------------
 1130|    638|        FT_ATOMIC_STORE_SSIZE_RELAXED(it->it_index, index + 1);
  ------------------
  |  |  194|    638|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
 1131|    638|        item = PyTuple_GET_ITEM(seq, index);
  ------------------
  |  |   29|    638|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    638|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    638|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1131:16): [True: 638, False: 0]
  ------------------
 1132|    638|        return Py_NewRef(item);
  ------------------
  |  |  550|    638|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    638|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    638|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1133|    638|    }
 1134|       |
 1135|     24|#ifndef Py_GIL_DISABLED
 1136|     24|    it->it_seq = NULL;
 1137|     24|    Py_DECREF(seq);
  ------------------
  |  |  430|     24|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1138|     24|#endif
 1139|       |    return NULL;
 1140|    662|}
tupleobject.c:tuple_iter:
 1244|     26|{
 1245|     26|    if (!PyTuple_Check(seq)) {
  ------------------
  |  |   27|     26|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     26|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1245:9): [True: 0, False: 26]
  ------------------
 1246|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1247|      0|        return NULL;
 1248|      0|    }
 1249|     26|    _PyTupleIterObject *it = _Py_FREELIST_POP(_PyTupleIterObject, tuple_iters);
  ------------------
  |  |   43|     26|    _Py_CAST(TYPE*, _PyFreeList_Pop(&_Py_freelists_GET()->NAME))
  |  |  ------------------
  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1250|     26|    if (it == NULL) {
  ------------------
  |  Branch (1250:9): [True: 2, False: 24]
  ------------------
 1251|      2|        it = PyObject_GC_New(_PyTupleIterObject, &PyTupleIter_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1252|      2|        if (it == NULL)
  ------------------
  |  Branch (1252:13): [True: 0, False: 2]
  ------------------
 1253|      0|            return NULL;
 1254|      2|    }
 1255|     26|    it->it_index = 0;
 1256|     26|    it->it_seq = (PyTupleObject *)Py_NewRef(seq);
  ------------------
  |  |  550|     26|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1257|     26|    _PyObject_GC_TRACK(it);
  ------------------
  |  |  513|     26|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1258|     26|    return (PyObject *)it;
 1259|     26|}
tupleobject.c:maybe_freelist_push:
 1268|  7.09k|{
 1269|  7.09k|    if (!Py_IS_TYPE(op, &PyTuple_Type)) {
  ------------------
  |  |  215|  7.09k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  7.09k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.09k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1269:9): [True: 0, False: 7.09k]
  ------------------
 1270|      0|        return 0;
 1271|      0|    }
 1272|  7.09k|    Py_ssize_t index = Py_SIZE(op) - 1;
  ------------------
  |  |  214|  7.09k|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  7.09k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.09k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1273|  7.09k|    if (index < PyTuple_MAXSAVESIZE) {
  ------------------
  |  |   11|  7.09k|#  define PyTuple_MAXSAVESIZE 20     // Largest tuple to save on freelist
  ------------------
  |  Branch (1273:9): [True: 7.03k, False: 62]
  ------------------
 1274|  7.03k|        return _Py_FREELIST_PUSH(tuples[index], op, Py_tuple_MAXFREELIST);
  ------------------
  |  |   39|  7.03k|    _PyFreeList_Push(&_Py_freelists_GET()->NAME, _PyObject_CAST(op), limit)
  |  |  ------------------
  |  |  |  |  171|  7.03k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  7.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1275|  7.03k|    }
 1276|     62|    return 0;
 1277|  7.09k|}

_PyStaticType_GetState:
  303|  39.8k|{
  304|  39.8k|    assert(self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN);
  ------------------
  |  Branch (304:5): [True: 39.8k, False: 0]
  ------------------
  305|  39.8k|    return managed_static_type_state_get(interp, self);
  306|  39.8k|}
_PyType_GetDict:
  540|  11.4k|{
  541|       |    /* It returns a borrowed reference. */
  542|  11.4k|    return lookup_tp_dict(self);
  543|  11.4k|}
_PyType_GetBases:
  587|     58|{
  588|     58|    PyObject *res;
  589|       |
  590|     58|    BEGIN_TYPE_LOCK();
  591|     58|    res = lookup_tp_bases(self);
  592|     58|    Py_INCREF(res);
  ------------------
  |  |  310|     58|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  593|     58|    END_TYPE_LOCK();
  594|       |
  595|     58|    return res;
  596|     58|}
_PyType_GetSubclasses:
  777|     36|{
  778|     36|    PyObject *list = PyList_New(0);
  779|     36|    if (list == NULL) {
  ------------------
  |  Branch (779:9): [True: 0, False: 36]
  ------------------
  780|      0|        return NULL;
  781|      0|    }
  782|       |
  783|     36|    PyObject *subclasses = lookup_tp_subclasses(self);  // borrowed ref
  784|     36|    if (subclasses == NULL) {
  ------------------
  |  Branch (784:9): [True: 36, False: 0]
  ------------------
  785|     36|        return list;
  786|     36|    }
  787|     36|    assert(PyDict_CheckExact(subclasses));
  ------------------
  |  Branch (787:5): [True: 0, False: 0]
  ------------------
  788|       |    // The loop cannot modify tp_subclasses, there is no need
  789|       |    // to hold a strong reference (use a borrowed reference).
  790|       |
  791|      0|    Py_ssize_t i = 0;
  792|      0|    PyObject *ref;  // borrowed ref
  793|      0|    while (PyDict_Next(subclasses, &i, NULL, &ref)) {
  ------------------
  |  Branch (793:12): [True: 0, False: 0]
  ------------------
  794|      0|        PyTypeObject *subclass = type_from_ref(ref);
  795|      0|        if (subclass == NULL) {
  ------------------
  |  Branch (795:13): [True: 0, False: 0]
  ------------------
  796|      0|            continue;
  797|      0|        }
  798|       |
  799|      0|        if (PyList_Append(list, _PyObject_CAST(subclass)) < 0) {
  ------------------
  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (799:13): [True: 0, False: 0]
  ------------------
  800|      0|            Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  801|      0|            Py_DECREF(subclass);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  802|      0|            return NULL;
  803|      0|        }
  804|      0|        Py_DECREF(subclass);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  805|      0|    }
  806|      0|    return list;
  807|      0|}
_PyType_CheckConsistency:
  867|    978|{
  868|    978|#define CHECK(expr) \
  869|    978|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  870|       |
  871|    978|    CHECK(!_PyObject_IsFreed((PyObject *)type));
  ------------------
  |  |  869|    978|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 978]
  |  |  |  Branch (869:103): [Folded, False: 978]
  |  |  ------------------
  ------------------
  872|       |
  873|    978|    if (!(type->tp_flags & Py_TPFLAGS_READY)) {
  ------------------
  |  |  518|    978|#define Py_TPFLAGS_READY (1UL << 12)
  ------------------
  |  Branch (873:9): [True: 0, False: 978]
  ------------------
  874|       |        /* don't check static types before PyType_Ready() */
  875|      0|        return 1;
  876|      0|    }
  877|       |
  878|    978|    CHECK(Py_REFCNT(type) >= 1);
  ------------------
  |  |  869|    978|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 978]
  |  |  |  Branch (869:103): [Folded, False: 978]
  |  |  ------------------
  ------------------
  879|    978|    CHECK(PyType_Check(type));
  ------------------
  |  |  869|    978|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 978]
  |  |  |  Branch (869:103): [Folded, False: 978]
  |  |  ------------------
  ------------------
  880|       |
  881|    978|    CHECK(!is_readying(type));
  ------------------
  |  |  869|    978|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 978]
  |  |  |  Branch (869:103): [Folded, False: 978]
  |  |  ------------------
  ------------------
  882|    978|    CHECK(lookup_tp_dict(type) != NULL);
  ------------------
  |  |  869|    978|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 978]
  |  |  |  Branch (869:103): [Folded, False: 978]
  |  |  ------------------
  ------------------
  883|       |
  884|    978|    if (type->tp_flags & Py_TPFLAGS_HAVE_GC) {
  ------------------
  |  |  524|    978|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (884:9): [True: 902, False: 76]
  ------------------
  885|       |        // bpo-44263: tp_traverse is required if Py_TPFLAGS_HAVE_GC is set.
  886|       |        // Note: tp_clear is optional.
  887|    902|        CHECK(type->tp_traverse != NULL);
  ------------------
  |  |  869|    902|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 902]
  |  |  |  Branch (869:103): [Folded, False: 902]
  |  |  ------------------
  ------------------
  888|    902|    }
  889|       |
  890|    978|    if (type->tp_flags & Py_TPFLAGS_DISALLOW_INSTANTIATION) {
  ------------------
  |  |  497|    978|#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
  ------------------
  |  Branch (890:9): [True: 156, False: 822]
  ------------------
  891|    156|        CHECK(type->tp_new == NULL);
  ------------------
  |  |  869|    156|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 156]
  |  |  |  Branch (869:103): [Folded, False: 156]
  |  |  ------------------
  ------------------
  892|    156|        CHECK(PyDict_Contains(lookup_tp_dict(type), &_Py_ID(__new__)) == 0);
  ------------------
  |  |  869|    156|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (869:14): [True: 0, False: 156]
  |  |  |  Branch (869:103): [Folded, False: 156]
  |  |  ------------------
  ------------------
  893|    156|    }
  894|       |
  895|    978|    return 1;
  896|    978|#undef CHECK
  897|    978|}
_PyType_GetDocFromInternalDoc:
  914|     18|{
  915|     18|    const char *doc = _PyType_DocWithoutSignature(name, internal_doc);
  916|       |
  917|     18|    if (!doc || *doc == '\0') {
  ------------------
  |  Branch (917:9): [True: 0, False: 18]
  |  Branch (917:17): [True: 0, False: 18]
  ------------------
  918|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  919|      0|    }
  920|       |
  921|     18|    return PyUnicode_FromString(doc);
  922|     18|}
_PyType_InitCache:
 1000|      2|{
 1001|      2|    struct type_cache *cache = &interp->types.type_cache;
 1002|  8.19k|    for (Py_ssize_t i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
  ------------------
  |  |  562|  8.19k|#define MCACHE_SIZE_EXP 12
  ------------------
  |  Branch (1002:28): [True: 8.19k, False: 2]
  ------------------
 1003|  8.19k|        struct type_cache_entry *entry = &cache->hashtable[i];
 1004|  8.19k|        assert(entry->name == NULL);
  ------------------
  |  Branch (1004:9): [True: 8.19k, False: 0]
  ------------------
 1005|       |
 1006|  8.19k|        entry->version = 0;
 1007|       |        // Set to None so _PyType_LookupRef() can use Py_SETREF(),
 1008|       |        // rather than using slower Py_XSETREF().
 1009|  8.19k|        entry->name = Py_None;
  ------------------
  |  |  616|  8.19k|#  define Py_None (&_Py_NoneStruct)
  ------------------
 1010|       |        entry->value = NULL;
 1011|  8.19k|    }
 1012|      2|}
PyType_Modified:
 1244|      4|{
 1245|       |    // Quick check without the lock held
 1246|      4|    if (FT_ATOMIC_LOAD_UINT_RELAXED(type->tp_version_tag) == 0) {
  ------------------
  |  |  189|      4|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  ------------------
  |  Branch (1246:9): [True: 4, False: 0]
  ------------------
 1247|      4|        return;
 1248|      4|    }
 1249|       |
 1250|      0|    BEGIN_TYPE_LOCK();
 1251|      0|    type_modified_unlocked(type);
 1252|      0|    END_TYPE_LOCK();
 1253|      0|}
_PyType_SetVersion:
 1337|    392|{
 1338|    392|    BEGIN_TYPE_LOCK();
 1339|    392|    set_version_unlocked(tp, version);
 1340|    392|    END_TYPE_LOCK();
 1341|    392|}
_PyType_Name:
 1508|     98|{
 1509|     98|    assert(type->tp_name != NULL);
  ------------------
  |  Branch (1509:5): [True: 98, False: 0]
  ------------------
 1510|     98|    const char *s = strrchr(type->tp_name, '.');
 1511|     98|    if (s == NULL) {
  ------------------
  |  Branch (1511:9): [True: 6, False: 92]
  ------------------
 1512|      6|        s = type->tp_name;
 1513|      6|    }
 1514|     92|    else {
 1515|     92|        s++;
 1516|     92|    }
 1517|     98|    return s;
 1518|     98|}
_PyType_AllocNoTrack:
 2508|  11.1k|{
 2509|  11.1k|    PyObject *obj;
 2510|       |    /* The +1 on nitems is needed for most types but not all. We could save a
 2511|       |     * bit of space by allocating one less item in certain cases, depending on
 2512|       |     * the type. However, given the extra complexity (e.g. an additional type
 2513|       |     * flag to indicate when that is safe) it does not seem worth the memory
 2514|       |     * savings. An example type that doesn't need the +1 is a subclass of
 2515|       |     * tuple. See GH-100659 and GH-81381. */
 2516|  11.1k|    size_t size = _PyObject_VAR_SIZE(type, nitems+1);
 2517|       |
 2518|  11.1k|    const size_t presize = _PyType_PreHeaderSize(type);
 2519|  11.1k|    if (type->tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  472|  11.1k|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (2519:9): [True: 344, False: 10.8k]
  ------------------
 2520|    344|        assert(type->tp_itemsize == 0);
  ------------------
  |  Branch (2520:9): [True: 344, False: 0]
  ------------------
 2521|    344|        size += _PyInlineValuesSize(type);
 2522|    344|    }
 2523|  11.1k|    char *alloc = _PyObject_MallocWithType(type, size + presize);
 2524|  11.1k|    if (alloc  == NULL) {
  ------------------
  |  Branch (2524:9): [True: 0, False: 11.1k]
  ------------------
 2525|      0|        return PyErr_NoMemory();
 2526|      0|    }
 2527|  11.1k|    obj = (PyObject *)(alloc + presize);
 2528|  11.1k|    if (presize) {
  ------------------
  |  Branch (2528:9): [True: 11.1k, False: 34]
  ------------------
 2529|  11.1k|        ((PyObject **)alloc)[0] = NULL;
 2530|  11.1k|        ((PyObject **)alloc)[1] = NULL;
 2531|  11.1k|    }
 2532|  11.1k|    if (PyType_IS_GC(type)) {
  ------------------
  |  |  157|  11.1k|#define PyType_IS_GC(t) PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|  11.1k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  |  |  |  Branch (157:25): [True: 11.1k, False: 34]
  |  |  ------------------
  ------------------
 2533|  11.1k|        _PyObject_GC_Link(obj);
 2534|  11.1k|    }
 2535|       |    // Zero out the object after the PyObject header. The header fields are
 2536|       |    // initialized by _PyObject_Init[Var]().
 2537|  11.1k|    memset((char *)obj + sizeof(PyObject), 0, size - sizeof(PyObject));
 2538|       |
 2539|  11.1k|    if (type->tp_itemsize == 0) {
  ------------------
  |  Branch (2539:9): [True: 10.8k, False: 254]
  ------------------
 2540|  10.8k|        _PyObject_Init(obj, type);
 2541|  10.8k|    }
 2542|    254|    else {
 2543|    254|        _PyObject_InitVar((PyVarObject *)obj, type, nitems);
 2544|    254|    }
 2545|  11.1k|    if (type->tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  472|  11.1k|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (2545:9): [True: 344, False: 10.8k]
  ------------------
 2546|    344|        _PyObject_InitInlineValues(obj, type);
 2547|    344|    }
 2548|  11.1k|    return obj;
 2549|  11.1k|}
PyType_GenericAlloc:
 2553|  11.0k|{
 2554|  11.0k|    PyObject *obj = _PyType_AllocNoTrack(type, nitems);
 2555|  11.0k|    if (obj == NULL) {
  ------------------
  |  Branch (2555:9): [True: 0, False: 11.0k]
  ------------------
 2556|      0|        return NULL;
 2557|      0|    }
 2558|       |
 2559|  11.0k|    if (_PyType_IS_GC(type)) {
  ------------------
  |  |  828|  11.0k|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|  11.0k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  |  |  |  Branch (828:26): [True: 11.0k, False: 34]
  |  |  ------------------
  ------------------
 2560|  11.0k|        _PyObject_GC_TRACK(obj);
  ------------------
  |  |  513|  11.0k|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  11.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  11.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2561|  11.0k|    }
 2562|  11.0k|    return obj;
 2563|  11.0k|}
PyType_GenericNew:
 2567|     72|{
 2568|     72|    return type->tp_alloc(type, 0);
 2569|     72|}
PyType_IsSubtype:
 2925|  52.8k|{
 2926|  52.8k|    return is_subtype_with_mro(a->tp_mro, a, b);
 2927|  52.8k|}
_PyObject_LookupSpecial:
 2946|  1.85k|{
 2947|  1.85k|    PyObject *res;
 2948|       |
 2949|  1.85k|    res = _PyType_LookupRef(Py_TYPE(self), attr);
  ------------------
  |  |  213|  1.85k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.85k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.85k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2950|  1.85k|    if (res != NULL) {
  ------------------
  |  Branch (2950:9): [True: 140, False: 1.71k]
  ------------------
 2951|    140|        descrgetfunc f;
 2952|    140|        if ((f = Py_TYPE(res)->tp_descr_get) != NULL) {
  ------------------
  |  |  213|    140|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    140|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    140|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2952:13): [True: 140, False: 0]
  ------------------
 2953|    140|            Py_SETREF(res, f(res, self, (PyObject *)(Py_TYPE(self))));
  ------------------
  |  |  352|    140|    do { \
  |  |  353|    140|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    140|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|    140|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    140|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|    140|        *_tmp_dst_ptr = (src); \
  |  |  356|    140|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|    140|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    140|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    140|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|    140|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 140]
  |  |  ------------------
  ------------------
 2954|    140|        }
 2955|    140|    }
 2956|  1.85k|    return res;
 2957|  1.85k|}
_PyObject_LookupSpecialMethod:
 2966|    624|{
 2967|    624|    PyObject *self = PyStackRef_AsPyObjectBorrow(method_and_self[1]);
 2968|    624|    _PyType_LookupStackRefAndVersion(Py_TYPE(self), attr, &method_and_self[0]);
  ------------------
  |  |  213|    624|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    624|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    624|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2969|    624|    PyObject *method_o = PyStackRef_AsPyObjectBorrow(method_and_self[0]);
 2970|    624|    if (method_o == NULL) {
  ------------------
  |  Branch (2970:9): [True: 0, False: 624]
  ------------------
 2971|      0|        return 0;
 2972|      0|    }
 2973|       |
 2974|    624|    if (_PyType_HasFeature(Py_TYPE(method_o), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  213|    624|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    624|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    624|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (_PyType_HasFeature(Py_TYPE(method_o), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  534|    624|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
  |  Branch (2974:9): [True: 624, False: 0]
  ------------------
 2975|       |        /* Avoid temporary PyMethodObject */
 2976|    624|        return 1;
 2977|    624|    }
 2978|       |
 2979|      0|    descrgetfunc f = Py_TYPE(method_o)->tp_descr_get;
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2980|      0|    if (f != NULL) {
  ------------------
  |  Branch (2980:9): [True: 0, False: 0]
  ------------------
 2981|      0|        PyObject *func = f(method_o, self, (PyObject *)(Py_TYPE(self)));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2982|      0|        if (func == NULL) {
  ------------------
  |  Branch (2982:13): [True: 0, False: 0]
  ------------------
 2983|      0|            return -1;
 2984|      0|        }
 2985|      0|        PyStackRef_CLEAR(method_and_self[0]); // clear method
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2986|      0|        method_and_self[0] = PyStackRef_FromPyObjectSteal(func);
 2987|      0|    }
 2988|      0|    PyStackRef_CLEAR(method_and_self[1]); // clear self
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2989|      0|    return 1;
 2990|      0|}
PyType_GetFlags:
 4134|    152|{
 4135|    152|    return type->tp_flags;
 4136|    152|}
_PyType_CalculateMetaclass:
 4149|    354|{
 4150|    354|    Py_ssize_t i, nbases;
 4151|    354|    PyTypeObject *winner;
 4152|    354|    PyObject *tmp;
 4153|    354|    PyTypeObject *tmptype;
 4154|       |
 4155|       |    /* Determine the proper metatype to deal with this,
 4156|       |       and check for metatype conflicts while we're at it.
 4157|       |       Note that if some other metatype wins to contract,
 4158|       |       it's possible that its instances are not types. */
 4159|       |
 4160|    354|    nbases = PyTuple_GET_SIZE(bases);
  ------------------
  |  |   27|    354|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    354|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    354|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4161|    354|    winner = metatype;
 4162|    686|    for (i = 0; i < nbases; i++) {
  ------------------
  |  Branch (4162:17): [True: 332, False: 354]
  ------------------
 4163|    332|        tmp = PyTuple_GET_ITEM(bases, i);
  ------------------
  |  |   29|    332|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    332|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    332|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4163:15): [True: 332, False: 0]
  ------------------
 4164|    332|        tmptype = Py_TYPE(tmp);
  ------------------
  |  |  213|    332|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    332|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    332|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4165|    332|        if (PyType_IsSubtype(winner, tmptype))
  ------------------
  |  Branch (4165:13): [True: 332, False: 0]
  ------------------
 4166|    332|            continue;
 4167|      0|        if (PyType_IsSubtype(tmptype, winner)) {
  ------------------
  |  Branch (4167:13): [True: 0, False: 0]
  ------------------
 4168|      0|            winner = tmptype;
 4169|      0|            continue;
 4170|      0|        }
 4171|       |        /* else: */
 4172|      0|        PyErr_SetString(PyExc_TypeError,
 4173|      0|                        "metaclass conflict: "
 4174|      0|                        "the metaclass of a derived class "
 4175|      0|                        "must be a (non-strict) subclass "
 4176|      0|                        "of the metaclasses of all its bases");
 4177|      0|        return NULL;
 4178|      0|    }
 4179|    354|    return winner;
 4180|    354|}
PyType_FromModuleAndSpec:
 5802|     42|{
 5803|     42|    return type_from_slots_or_spec(NULL, spec, NULL, module, bases);
 5804|     42|}
PyType_FromSpecWithBases:
 5808|     18|{
 5809|     18|    return type_from_slots_or_spec(NULL, spec, NULL, NULL, bases);
 5810|     18|}
PyType_FromSpec:
 5814|     18|{
 5815|     18|    return type_from_slots_or_spec(NULL, spec, NULL, NULL, NULL);
 5816|     18|}
PyType_GetModuleByToken_DuringGC:
 5902|     60|{
 5903|     60|    assert(PyType_Check(type));
  ------------------
  |  Branch (5903:5): [True: 60, False: 0]
  ------------------
 5904|       |
 5905|     60|    if (!_PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|     60|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (5905:9): [True: 0, False: 60]
  ------------------
 5906|       |        // type_ready_mro() ensures that no heap type is
 5907|       |        // contained in a static type MRO.
 5908|      0|        return NULL;
 5909|      0|    }
 5910|     60|    else {
 5911|     60|        PyHeapTypeObject *ht = (PyHeapTypeObject*)type;
 5912|     60|        PyObject *module = ht->ht_module;
 5913|     60|        if (module && _PyModule_GetToken(module) == token) {
  ------------------
  |  Branch (5913:13): [True: 60, False: 0]
  |  Branch (5913:23): [True: 60, False: 0]
  ------------------
 5914|     60|            return module;
 5915|     60|        }
 5916|     60|    }
 5917|       |
 5918|      0|    PyObject *res = NULL;
 5919|      0|    BEGIN_TYPE_LOCK();
 5920|       |
 5921|      0|    PyObject *mro = lookup_tp_mro(type);
 5922|       |    // The type must be ready
 5923|      0|    assert(mro != NULL);
  ------------------
  |  Branch (5923:5): [True: 0, False: 0]
  ------------------
 5924|      0|    assert(PyTuple_Check(mro));
  ------------------
  |  Branch (5924:5): [True: 0, False: 0]
  ------------------
 5925|       |    // mro_invoke() ensures that the type MRO cannot be empty.
 5926|      0|    assert(PyTuple_GET_SIZE(mro) >= 1);
  ------------------
  |  Branch (5926:5): [True: 0, False: 0]
  ------------------
 5927|       |    // Also, the first item in the MRO is the type itself, which
 5928|       |    // we already checked above. We skip it in the loop.
 5929|      0|    assert(PyTuple_GET_ITEM(mro, 0) == (PyObject *)type);
  ------------------
  |  Branch (5929:5): [True: 0, False: 0]
  |  Branch (5929:5): [True: 0, False: 0]
  ------------------
 5930|       |
 5931|      0|    Py_ssize_t n = PyTuple_GET_SIZE(mro);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5932|      0|    for (Py_ssize_t i = 1; i < n; i++) {
  ------------------
  |  Branch (5932:28): [True: 0, False: 0]
  ------------------
 5933|      0|        PyObject *super = PyTuple_GET_ITEM(mro, i);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5933:27): [True: 0, False: 0]
  ------------------
 5934|      0|        if (!_PyType_HasFeature((PyTypeObject *)super, Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|      0|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (5934:13): [True: 0, False: 0]
  ------------------
 5935|       |            // Static types in the MRO need to be skipped
 5936|      0|            continue;
 5937|      0|        }
 5938|       |
 5939|      0|        PyHeapTypeObject *ht = (PyHeapTypeObject*)super;
 5940|      0|        PyObject *module = ht->ht_module;
 5941|      0|        if (module && _PyModule_GetToken(module) == token) {
  ------------------
  |  Branch (5941:13): [True: 0, False: 0]
  |  Branch (5941:23): [True: 0, False: 0]
  ------------------
 5942|      0|            res = module;
 5943|      0|            break;
 5944|      0|        }
 5945|      0|    }
 5946|      0|    END_TYPE_LOCK();
 5947|       |
 5948|      0|    return res;
 5949|      0|}
PyType_GetModuleByDef:
 5959|     60|{
 5960|     60|    PyObject *mod = PyType_GetModuleByToken_DuringGC(type, def);
 5961|     60|    if (!mod) {
  ------------------
  |  Branch (5961:9): [True: 0, False: 60]
  ------------------
 5962|      0|        PyErr_Format(
 5963|      0|            PyExc_TypeError,
 5964|      0|            "PyType_GetModuleByDef: No superclass of '%s' has the given module",
 5965|      0|            type->tp_name);
 5966|      0|        return NULL;
 5967|      0|    }
 5968|     60|    return mod;
 5969|     60|}
PyObject_GetItemData:
 6121|    404|{
 6122|       |    return getitemdata(obj, true);
 6123|    404|}
_PyType_LookupRefAndVersion:
 6270|  2.45k|{
 6271|  2.45k|    _PyStackRef out;
 6272|  2.45k|    unsigned int ver = _PyType_LookupStackRefAndVersion(type, name, &out);
 6273|  2.45k|    if (version) {
  ------------------
  |  Branch (6273:9): [True: 482, False: 1.97k]
  ------------------
 6274|    482|        *version = ver;
 6275|    482|    }
 6276|  2.45k|    if (PyStackRef_IsNull(out)) {
  ------------------
  |  |  470|  2.45k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|  2.45k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.45k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 2.04k, False: 414]
  |  |  ------------------
  ------------------
 6277|  2.04k|        return NULL;
 6278|  2.04k|    }
 6279|    414|    return PyStackRef_AsPyObjectSteal(out);
 6280|  2.45k|}
_PyType_LookupStackRefAndVersion:
 6292|  13.2k|{
 6293|  13.2k|    unsigned int h = MCACHE_HASH_METHOD(type, name);
  ------------------
  |  |   54|  13.2k|    MCACHE_HASH(FT_ATOMIC_LOAD_UINT_RELAXED((type)->tp_version_tag),   \
  |  |  ------------------
  |  |  |  |   50|  13.2k|        (((unsigned int)(version) ^ (unsigned int)(name_hash))          \
  |  |  |  |   51|  13.2k|         & ((1 << MCACHE_SIZE_EXP) - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |  562|  13.2k|#define MCACHE_SIZE_EXP 12
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   55|  13.2k|                ((Py_ssize_t)(name)) >> 3)
  ------------------
 6294|  13.2k|    struct type_cache *cache = get_type_cache();
 6295|  13.2k|    struct type_cache_entry *entry = &cache->hashtable[h];
 6296|       |#ifdef Py_GIL_DISABLED
 6297|       |    // synchronize-with other writing threads by doing an acquire load on the sequence
 6298|       |    while (1) {
 6299|       |        uint32_t sequence = _PySeqLock_BeginRead(&entry->sequence);
 6300|       |        uint32_t entry_version = _Py_atomic_load_uint32_acquire(&entry->version);
 6301|       |        uint32_t type_version = _Py_atomic_load_uint32_acquire(&type->tp_version_tag);
 6302|       |        if (entry_version == type_version &&
 6303|       |            _Py_atomic_load_ptr_relaxed(&entry->name) == name) {
 6304|       |            OBJECT_STAT_INC_COND(type_cache_hits, !is_dunder_name(name));
 6305|       |            OBJECT_STAT_INC_COND(type_cache_dunder_hits, is_dunder_name(name));
 6306|       |            if (_Py_TryXGetStackRef(&entry->value, out)) {
 6307|       |                // If the sequence is still valid then we're done
 6308|       |                if (_PySeqLock_EndRead(&entry->sequence, sequence)) {
 6309|       |                    return entry_version;
 6310|       |                }
 6311|       |                PyStackRef_XCLOSE(*out);
 6312|       |            }
 6313|       |            else {
 6314|       |                // If we can't incref the object we need to fallback to locking
 6315|       |                break;
 6316|       |            }
 6317|       |        }
 6318|       |        else {
 6319|       |            // cache miss
 6320|       |            break;
 6321|       |        }
 6322|       |    }
 6323|       |#else
 6324|  13.2k|    if (entry->version == type->tp_version_tag && entry->name == name) {
  ------------------
  |  Branch (6324:9): [True: 11.0k, False: 2.25k]
  |  Branch (6324:51): [True: 10.4k, False: 579]
  ------------------
 6325|  10.4k|        assert(type->tp_version_tag);
  ------------------
  |  Branch (6325:9): [True: 10.4k, False: 0]
  ------------------
 6326|  10.4k|        OBJECT_STAT_INC_COND(type_cache_hits, !is_dunder_name(name));
  ------------------
  |  |   78|  10.4k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 6327|  10.4k|        OBJECT_STAT_INC_COND(type_cache_dunder_hits, is_dunder_name(name));
  ------------------
  |  |   78|  10.4k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 6328|  10.4k|        *out = entry->value ? PyStackRef_FromPyObjectNew(entry->value) : PyStackRef_NULL;
  ------------------
  |  |  599|  4.41k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  4.41k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.41k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6328:16): [True: 4.41k, False: 6.00k]
  ------------------
 6329|  10.4k|        return entry->version;
 6330|  10.4k|    }
 6331|  2.83k|#endif
 6332|  2.83k|    OBJECT_STAT_INC_COND(type_cache_misses, !is_dunder_name(name));
  ------------------
  |  |   78|  2.83k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 6333|  2.83k|    OBJECT_STAT_INC_COND(type_cache_dunder_misses, is_dunder_name(name));
  ------------------
  |  |   78|  2.83k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 6334|       |
 6335|       |    /* We may end up clearing live exceptions below, so make sure it's ours. */
 6336|  2.83k|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (6336:5): [True: 2.83k, False: 0]
  ------------------
 6337|       |
 6338|  2.83k|    int res;
 6339|  2.83k|    PyInterpreterState *interp = _PyInterpreterState_GET();
 6340|       |
 6341|  2.83k|    unsigned int version_tag = FT_ATOMIC_LOAD_UINT(type->tp_version_tag);
  ------------------
  |  |  188|  2.83k|#define FT_ATOMIC_LOAD_UINT(value) value
  ------------------
 6342|  2.83k|    if (should_assign_version_tag(type, name, version_tag)) {
  ------------------
  |  Branch (6342:9): [True: 128, False: 2.70k]
  ------------------
 6343|    128|        BEGIN_TYPE_LOCK();
 6344|    128|        assign_version_tag(interp, type);
 6345|    128|        version_tag = type->tp_version_tag;
 6346|    128|        res = find_name_in_mro(type, name, out);
 6347|    128|        END_TYPE_LOCK();
 6348|    128|    }
 6349|  2.70k|    else {
 6350|  2.70k|        res = find_name_in_mro(type, name, out);
 6351|  2.70k|    }
 6352|       |
 6353|       |    /* Only put NULL results into cache if there was no error. */
 6354|  2.83k|    if (res < 0) {
  ------------------
  |  Branch (6354:9): [True: 0, False: 2.83k]
  ------------------
 6355|      0|        *out = PyStackRef_NULL;
 6356|      0|        return 0;
 6357|      0|    }
 6358|       |
 6359|  2.83k|    if (version_tag == 0 || !MCACHE_CACHEABLE_NAME(name)) {
  ------------------
  |  |   57|  2.83k|        (PyUnicode_CheckExact(name) &&                           \
  |  |  ------------------
  |  |  |  |  104|  2.83k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|  5.67k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  2.83k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  2.83k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 2.83k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   58|  2.83k|         (PyUnicode_GET_LENGTH(name) <= MCACHE_MAX_ATTR_SIZE))
  |  |  ------------------
  |  |  |  |  299|  2.83k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.83k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.83k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                        (PyUnicode_GET_LENGTH(name) <= MCACHE_MAX_ATTR_SIZE))
  |  |  ------------------
  |  |  |  |   48|  2.83k|#define MCACHE_MAX_ATTR_SIZE    100
  |  |  ------------------
  |  |  |  Branch (58:10): [True: 2.83k, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (6359:9): [True: 0, False: 2.83k]
  ------------------
 6360|      0|        return 0;
 6361|      0|    }
 6362|       |
 6363|  2.83k|    PyObject *res_obj = PyStackRef_AsPyObjectBorrow(*out);
 6364|       |#if Py_GIL_DISABLED
 6365|       |    update_cache_gil_disabled(entry, name, version_tag, res_obj);
 6366|       |#else
 6367|  2.83k|    PyObject *old_value = update_cache(entry, name, version_tag, res_obj);
 6368|  2.83k|    Py_DECREF(old_value);
  ------------------
  |  |  430|  2.83k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.83k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.83k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6369|  2.83k|#endif
 6370|  2.83k|    return version_tag;
 6371|  2.83k|}
_PyType_LookupRef:
 6378|  1.97k|{
 6379|       |    return _PyType_LookupRefAndVersion(type, name, NULL);
 6380|  1.97k|}
_PyType_Lookup:
 6386|      4|{
 6387|      4|    PyObject *res = _PyType_LookupRefAndVersion(type, name, NULL);
 6388|      4|    Py_XDECREF(res);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6389|      4|    return res;
 6390|      4|}
_PyType_CacheInitForSpecialization:
 6395|      8|{
 6396|      8|    if (!init || !tp_version) {
  ------------------
  |  Branch (6396:9): [True: 0, False: 8]
  |  Branch (6396:18): [True: 0, False: 8]
  ------------------
 6397|      0|        return 0;
 6398|      0|    }
 6399|      8|    int can_cache;
 6400|      8|    BEGIN_TYPE_LOCK();
 6401|      8|    can_cache = ((PyTypeObject*)type)->tp_version_tag == tp_version;
 6402|       |    #ifdef Py_GIL_DISABLED
 6403|       |    can_cache = can_cache && _PyObject_HasDeferredRefcount(init);
 6404|       |    #endif
 6405|      8|    if (can_cache) {
  ------------------
  |  Branch (6405:9): [True: 8, False: 0]
  ------------------
 6406|      8|        FT_ATOMIC_STORE_PTR_RELEASE(type->_spec_cache.init, init);
  ------------------
  |  |  164|      8|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
 6407|      8|    }
 6408|      8|    END_TYPE_LOCK();
 6409|      8|    return can_cache;
 6410|      8|}
_PyType_SetFlags:
 6439|      4|{
 6440|      4|    unsigned long new_flags = (self->tp_flags & ~mask) | flags;
 6441|      4|    if (new_flags != self->tp_flags) {
  ------------------
  |  Branch (6441:9): [True: 4, False: 0]
  ------------------
 6442|      4|        types_stop_world();
 6443|       |        // can't use new_flags here since they could be out-of-date
 6444|      4|        self->tp_flags = (self->tp_flags & ~mask) | flags;
 6445|      4|        types_start_world();
 6446|      4|    }
 6447|      4|}
_PyType_SetFlagsRecursive:
 6492|     26|{
 6493|     26|    types_stop_world();
 6494|     26|    set_flags_recursive(self, mask, flags);
 6495|     26|    types_start_world();
 6496|     26|}
_Py_type_getattro_impl:
 6512|  1.07k|{
 6513|  1.07k|    _PyStackRef ref = _Py_type_getattro_stackref(type, name, suppress_missing_attribute);
 6514|  1.07k|    if (PyStackRef_IsNull(ref)) {
  ------------------
  |  |  470|  1.07k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|  1.07k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.07k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 32, False: 1.04k]
  |  |  ------------------
  ------------------
 6515|     32|        return NULL;
 6516|     32|    }
 6517|  1.04k|    return PyStackRef_AsPyObjectSteal(ref);
 6518|  1.07k|}
_Py_type_getattro:
 6524|    590|{
 6525|    590|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|    590|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 6526|       |    return _Py_type_getattro_impl(type, name, NULL);
 6527|    590|}
_Py_type_getattro_stackref:
 6542|  1.54k|{
 6543|  1.54k|    PyTypeObject *metatype = Py_TYPE(type);
  ------------------
  |  |  213|  1.54k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.54k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.54k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6544|  1.54k|    descrgetfunc meta_get = NULL;
 6545|       |
 6546|  1.54k|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|  1.54k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  1.54k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (6546:9): [True: 0, False: 1.54k]
  ------------------
 6547|      0|        PyErr_Format(PyExc_TypeError,
 6548|      0|                     "attribute name must be string, not '%.200s'",
 6549|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6550|      0|        return PyStackRef_NULL;
 6551|      0|    }
 6552|       |
 6553|       |    /* Initialize this type (we'll assume the metatype is initialized) */
 6554|  1.54k|    if (!_PyType_IsReady(type)) {
  ------------------
  |  Branch (6554:9): [True: 0, False: 1.54k]
  ------------------
 6555|      0|        if (PyType_Ready(type) < 0)
  ------------------
  |  Branch (6555:13): [True: 0, False: 0]
  ------------------
 6556|      0|            return PyStackRef_NULL;
 6557|      0|    }
 6558|       |
 6559|       |    /* Set up GC-visible stack refs */
 6560|  1.54k|    _PyCStackRef result_ref, meta_attribute_ref, attribute_ref;
 6561|  1.54k|    PyThreadState *tstate = _PyThreadState_GET();
 6562|  1.54k|    _PyThreadState_PushCStackRef(tstate, &result_ref);
 6563|  1.54k|    _PyThreadState_PushCStackRef(tstate, &meta_attribute_ref);
 6564|  1.54k|    _PyThreadState_PushCStackRef(tstate, &attribute_ref);
 6565|       |
 6566|       |    /* Look for the attribute in the metatype */
 6567|  1.54k|    _PyType_LookupStackRefAndVersion(metatype, name, &meta_attribute_ref.ref);
 6568|       |
 6569|  1.54k|    if (!PyStackRef_IsNull(meta_attribute_ref.ref)) {
  ------------------
  |  |  470|  1.54k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|  1.54k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.54k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6569:9): [True: 910, False: 632]
  ------------------
 6570|    910|        PyObject *meta_attr_obj = PyStackRef_AsPyObjectBorrow(meta_attribute_ref.ref);
 6571|    910|        meta_get = Py_TYPE(meta_attr_obj)->tp_descr_get;
  ------------------
  |  |  213|    910|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    910|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    910|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6572|       |
 6573|    910|        if (meta_get != NULL && PyDescr_IsData(meta_attr_obj)) {
  ------------------
  |  Branch (6573:13): [True: 784, False: 126]
  |  Branch (6573:33): [True: 442, False: 342]
  ------------------
 6574|       |            /* Data descriptors implement tp_descr_set to intercept
 6575|       |             * writes. Assume the attribute is not overridden in
 6576|       |             * type's tp_dict (and bases): call the descriptor now.
 6577|       |             */
 6578|    442|            PyObject *res = meta_get(meta_attr_obj, (PyObject *)type,
 6579|    442|                                     (PyObject *)metatype);
 6580|    442|            if (res != NULL) {
  ------------------
  |  Branch (6580:17): [True: 424, False: 18]
  ------------------
 6581|    424|                result_ref.ref = PyStackRef_FromPyObjectSteal(res);
 6582|    424|            }
 6583|    442|            goto done;
 6584|    442|        }
 6585|    910|    }
 6586|       |
 6587|       |    /* No data descriptor found on metatype. Look in tp_dict of this
 6588|       |     * type and its bases */
 6589|  1.10k|    _PyType_LookupStackRefAndVersion(type, name, &attribute_ref.ref);
 6590|  1.10k|    if (!PyStackRef_IsNull(attribute_ref.ref)) {
  ------------------
  |  |  470|  1.10k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|  1.10k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.10k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6590:9): [True: 980, False: 120]
  ------------------
 6591|       |        /* Implement descriptor functionality, if any */
 6592|    980|        PyObject *attr_obj = PyStackRef_AsPyObjectBorrow(attribute_ref.ref);
 6593|    980|        descrgetfunc local_get = Py_TYPE(attr_obj)->tp_descr_get;
  ------------------
  |  |  213|    980|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    980|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    980|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6594|       |
 6595|       |        /* Release meta_attribute early since we found in local dict */
 6596|    980|        PyStackRef_CLEAR(meta_attribute_ref.ref);
  ------------------
  |  |  711|    980|    do { \
  |  |  712|    980|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|    980|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|    980|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|    980|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|    980|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 980]
  |  |  ------------------
  ------------------
 6597|       |
 6598|    980|        if (local_get != NULL) {
  ------------------
  |  Branch (6598:13): [True: 858, False: 122]
  ------------------
 6599|       |            /* Special case staticmethod to avoid descriptor call overhead.
 6600|       |             * staticmethod.__get__ just returns the wrapped callable. */
 6601|    858|            if (Py_TYPE(attr_obj) == &PyStaticMethod_Type) {
  ------------------
  |  |  213|    858|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    858|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    858|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6601:17): [True: 338, False: 520]
  ------------------
 6602|    338|                PyObject *callable = _PyStaticMethod_GetFunc(attr_obj);
 6603|    338|                if (callable) {
  ------------------
  |  Branch (6603:21): [True: 338, False: 0]
  ------------------
 6604|    338|                    result_ref.ref = PyStackRef_FromPyObjectNew(callable);
  ------------------
  |  |  599|    338|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    338|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    338|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6605|    338|                    goto done;
 6606|    338|                }
 6607|    338|            }
 6608|       |            /* NULL 2nd argument indicates the descriptor was
 6609|       |             * found on the target object itself (or a base)  */
 6610|    520|            PyObject *res = local_get(attr_obj, (PyObject *)NULL,
 6611|    520|                                      (PyObject *)type);
 6612|    520|            if (res != NULL) {
  ------------------
  |  Branch (6612:17): [True: 520, False: 0]
  ------------------
 6613|    520|                result_ref.ref = PyStackRef_FromPyObjectSteal(res);
 6614|    520|            }
 6615|    520|            goto done;
 6616|    858|        }
 6617|       |
 6618|       |        /* No descriptor, return the attribute directly */
 6619|    122|        result_ref.ref = attribute_ref.ref;
 6620|    122|        attribute_ref.ref = PyStackRef_NULL;
 6621|    122|        goto done;
 6622|    980|    }
 6623|       |
 6624|       |    /* No attribute found in local __dict__ (or bases): use the
 6625|       |     * descriptor from the metatype, if any */
 6626|    120|    if (meta_get != NULL) {
  ------------------
  |  Branch (6626:9): [True: 104, False: 16]
  ------------------
 6627|    104|        PyObject *meta_attr_obj = PyStackRef_AsPyObjectBorrow(meta_attribute_ref.ref);
 6628|    104|        PyObject *res = meta_get(meta_attr_obj, (PyObject *)type,
 6629|    104|                                 (PyObject *)metatype);
 6630|    104|        if (res != NULL) {
  ------------------
  |  Branch (6630:13): [True: 104, False: 0]
  ------------------
 6631|    104|            result_ref.ref = PyStackRef_FromPyObjectSteal(res);
 6632|    104|        }
 6633|    104|        goto done;
 6634|    104|    }
 6635|       |
 6636|       |    /* If an ordinary attribute was found on the metatype, return it now */
 6637|     16|    if (!PyStackRef_IsNull(meta_attribute_ref.ref)) {
  ------------------
  |  |  470|     16|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|     16|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     16|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6637:9): [True: 0, False: 16]
  ------------------
 6638|      0|        result_ref.ref = meta_attribute_ref.ref;
 6639|      0|        meta_attribute_ref.ref = PyStackRef_NULL;
 6640|      0|        goto done;
 6641|      0|    }
 6642|       |
 6643|       |    /* Give up */
 6644|     16|    if (suppress_missing_attribute == NULL) {
  ------------------
  |  Branch (6644:9): [True: 2, False: 14]
  ------------------
 6645|      2|        PyErr_Format(PyExc_AttributeError,
 6646|      2|                     "type object '%.100s' has no attribute '%U'",
 6647|      2|                     type->tp_name, name);
 6648|      2|    }
 6649|     14|    else {
 6650|       |        // signal the caller we have not set an PyExc_AttributeError and gave up
 6651|     14|        *suppress_missing_attribute = 1;
 6652|     14|    }
 6653|       |
 6654|  1.54k|done:
 6655|  1.54k|    _PyThreadState_PopCStackRef(tstate, &attribute_ref);
 6656|  1.54k|    _PyThreadState_PopCStackRef(tstate, &meta_attribute_ref);
 6657|  1.54k|    return _PyThreadState_PopCStackRefSteal(tstate, &result_ref);
 6658|     16|}
_PyType_AddMethod:
 8638|      2|{
 8639|      2|    return type_add_method(type, meth);
 8640|      2|}
PyType_Ready:
 9581|    252|{
 9582|    252|    if (type->tp_flags & Py_TPFLAGS_READY) {
  ------------------
  |  |  518|    252|#define Py_TPFLAGS_READY (1UL << 12)
  ------------------
  |  Branch (9582:9): [True: 0, False: 252]
  ------------------
 9583|      0|        assert(_PyType_CheckConsistency(type));
  ------------------
  |  Branch (9583:9): [True: 0, False: 0]
  ------------------
 9584|      0|        return 0;
 9585|      0|    }
 9586|    252|    assert(!(type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN));
  ------------------
  |  Branch (9586:5): [True: 252, False: 0]
  ------------------
 9587|       |
 9588|       |    /* Historically, all static types were immutable. See bpo-43908 */
 9589|    252|    if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|    252|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (9589:9): [True: 0, False: 252]
  ------------------
 9590|      0|        type_add_flags(type, Py_TPFLAGS_IMMUTABLETYPE);
  ------------------
  |  |  500|      0|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
 9591|       |        /* Static types must be immortal */
 9592|      0|        _Py_SetImmortalUntracked((PyObject *)type);
 9593|      0|    }
 9594|       |
 9595|    252|    int res;
 9596|    252|    BEGIN_TYPE_LOCK();
 9597|    252|    if (!(type->tp_flags & Py_TPFLAGS_READY)) {
  ------------------
  |  |  518|    252|#define Py_TPFLAGS_READY (1UL << 12)
  ------------------
  |  Branch (9597:9): [True: 252, False: 0]
  ------------------
 9598|    252|        res = type_ready(type, 1);
 9599|    252|    } else {
 9600|      0|        res = 0;
 9601|      0|        assert(_PyType_CheckConsistency(type));
  ------------------
  |  Branch (9601:9): [True: 0, False: 0]
  ------------------
 9602|      0|    }
 9603|    252|    END_TYPE_LOCK();
 9604|    252|    return res;
 9605|    252|}
_PyStaticType_InitForExtension:
 9650|     12|{
 9651|     12|    return init_static_type(interp, self, 0, ((self->tp_flags & Py_TPFLAGS_READY) == 0));
  ------------------
  |  |  518|     12|#define Py_TPFLAGS_READY (1UL << 12)
  ------------------
 9652|     12|}
_PyStaticType_InitBuiltin:
 9656|    402|{
 9657|    402|    return init_static_type(interp, self, 1, _Py_IsMainInterpreter(interp));
 9658|    402|}
_PyType_InitSlotDefs:
12154|      2|{
12155|      2|    if (!_Py_IsMainInterpreter(interp)) {
  ------------------
  |  Branch (12155:9): [True: 0, False: 2]
  ------------------
12156|      0|        return 0;
12157|      0|    }
12158|      2|    PyObject *bytearray = NULL;
12159|      2|    PyObject *cache = PyDict_New();
12160|      2|    if (!cache) {
  ------------------
  |  Branch (12160:9): [True: 0, False: 2]
  ------------------
12161|      0|        return -1;
12162|      0|    }
12163|       |
12164|      2|    pytype_slotdef *p;
12165|      2|    Py_ssize_t idx = 0;
12166|    190|    for (p = slotdefs; p->name_strobj; p++, idx++) {
  ------------------
  |  Branch (12166:24): [True: 188, False: 2]
  ------------------
12167|    188|        assert(idx < 255);
  ------------------
  |  Branch (12167:9): [True: 188, False: 0]
  ------------------
12168|       |
12169|    188|        if (PyDict_GetItemRef(cache, p->name_strobj, &bytearray) < 0) {
  ------------------
  |  Branch (12169:13): [True: 0, False: 188]
  ------------------
12170|      0|            goto error;
12171|      0|        }
12172|       |
12173|    188|        if (!bytearray) {
  ------------------
  |  Branch (12173:13): [True: 162, False: 26]
  ------------------
12174|    162|            Py_ssize_t size = sizeof(uint8_t) * (1 + MAX_EQUIV);
  ------------------
  |  |  729|    162|#define MAX_EQUIV 10
  ------------------
12175|    162|            bytearray = PyByteArray_FromStringAndSize(NULL, size);
12176|    162|            if (!bytearray) {
  ------------------
  |  Branch (12176:17): [True: 0, False: 162]
  ------------------
12177|      0|                goto error;
12178|      0|            }
12179|       |
12180|    162|            uint8_t *data = (uint8_t *)PyByteArray_AS_STRING(bytearray);
  ------------------
  |  |   28|    162|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|    162|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    162|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12181|    162|            data[0] = 0;
12182|       |
12183|    162|            if (PyDict_SetItem(cache, p->name_strobj, bytearray) < 0) {
  ------------------
  |  Branch (12183:17): [True: 0, False: 162]
  ------------------
12184|      0|                goto error;
12185|      0|            }
12186|    162|        }
12187|       |
12188|    188|        assert(PyByteArray_CheckExact(bytearray));
  ------------------
  |  Branch (12188:9): [True: 188, False: 0]
  ------------------
12189|    188|        uint8_t *data = (uint8_t *)PyByteArray_AS_STRING(bytearray);
  ------------------
  |  |   28|    188|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|    188|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    188|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12190|       |
12191|    188|        data[0] += 1;
12192|    188|        assert(data[0] < MAX_EQUIV);
  ------------------
  |  Branch (12192:9): [True: 188, False: 0]
  ------------------
12193|       |
12194|    188|        data[data[0]] = (uint8_t)idx;
12195|       |
12196|    188|        Py_CLEAR(bytearray);
  ------------------
  |  |  484|    188|    do { \
  |  |  485|    188|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    188|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    188|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    188|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    188|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 188, False: 0]
  |  |  ------------------
  |  |  488|    188|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|    188|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|    188|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|    188|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    188|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    188|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|    188|        } \
  |  |  491|    188|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 188]
  |  |  ------------------
  ------------------
12197|    188|    }
12198|       |
12199|      2|    memset(slotdefs_dups, -1, sizeof(slotdefs_dups));
12200|       |
12201|      2|    Py_ssize_t pos = 0;
12202|      2|    PyObject *key = NULL;
12203|      2|    PyObject *value = NULL;
12204|    164|    while (PyDict_Next(cache, &pos, &key, &value)) {
  ------------------
  |  Branch (12204:12): [True: 162, False: 2]
  ------------------
12205|    162|        uint8_t *data = (uint8_t *)PyByteArray_AS_STRING(value);
  ------------------
  |  |   28|    162|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|    162|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    162|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12206|    162|        uint8_t n = data[0];
12207|    350|        for (uint8_t i = 0; i < n; i++) {
  ------------------
  |  Branch (12207:29): [True: 188, False: 162]
  ------------------
12208|    188|            uint8_t idx = data[i + 1];
12209|    188|            memcpy(&slotdefs_dups[idx], data, sizeof(uint8_t) * (n + 1));
12210|    188|        }
12211|    162|    }
12212|       |
12213|      2|    Py_DECREF(cache);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12214|      2|    return 0;
12215|       |
12216|      0|error:
12217|      0|    Py_XDECREF(bytearray);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12218|      0|    Py_DECREF(cache);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12219|      0|    return -1;
12220|      2|}
_PySuper_LookupDescr:
12557|    354|{
12558|    354|    PyObject *mro, *res;
12559|    354|    Py_ssize_t i, n;
12560|       |
12561|    354|    mro = lookup_tp_mro(su_obj_type);
12562|    354|    if (mro == NULL)
  ------------------
  |  Branch (12562:9): [True: 0, False: 354]
  ------------------
12563|      0|        return NULL;
12564|       |
12565|       |    /* Keep a strong reference to mro because su_obj_type->tp_mro can be
12566|       |       replaced during PyDict_GetItemRef(dict, name, &res). */
12567|    354|    PyThreadState *tstate = _PyThreadState_GET();
12568|    354|    _PyCStackRef mro_ref;
12569|    354|    _PyThreadState_PushCStackRefNew(tstate, &mro_ref, mro);
12570|       |
12571|    354|    assert(PyTuple_Check(mro));
  ------------------
  |  Branch (12571:5): [True: 354, False: 0]
  ------------------
12572|    354|    n = PyTuple_GET_SIZE(mro);
  ------------------
  |  |   27|    354|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    354|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    354|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12573|       |
12574|       |    /* No need to check the last one: it's gonna be skipped anyway.  */
12575|    356|    for (i = 0; i+1 < n; i++) {
  ------------------
  |  Branch (12575:17): [True: 356, False: 0]
  ------------------
12576|    356|        if ((PyObject *)(su_type) == PyTuple_GET_ITEM(mro, i))
  ------------------
  |  |   29|    356|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    356|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    356|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12576:13): [True: 354, False: 2]
  |  Branch (12576:38): [True: 356, False: 0]
  ------------------
12577|    354|            break;
12578|    356|    }
12579|    354|    i++;  /* skip su->type (if any)  */
12580|    354|    if (i >= n) {
  ------------------
  |  Branch (12580:9): [True: 0, False: 354]
  ------------------
12581|      0|        _PyThreadState_PopCStackRef(tstate, &mro_ref);
12582|      0|        return NULL;
12583|      0|    }
12584|       |
12585|    602|    do {
12586|    602|        PyObject *obj = PyTuple_GET_ITEM(mro, i);
  ------------------
  |  |   29|    602|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    602|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    602|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12586:25): [True: 602, False: 0]
  ------------------
12587|    602|        PyObject *dict = lookup_tp_dict(_PyType_CAST(obj));
  ------------------
  |  |  770|    602|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    602|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (12587:41): [True: 602, False: 0]
  ------------------
12588|    602|        assert(dict != NULL && PyDict_Check(dict));
  ------------------
  |  Branch (12588:9): [True: 602, False: 0]
  |  Branch (12588:9): [True: 602, False: 0]
  ------------------
12589|       |
12590|    602|        if (PyDict_GetItemRef(dict, name, &res) != 0) {
  ------------------
  |  Branch (12590:13): [True: 354, False: 248]
  ------------------
12591|       |            // found or error
12592|    354|            _PyThreadState_PopCStackRef(tstate, &mro_ref);
12593|    354|            return res;
12594|    354|        }
12595|       |
12596|    248|        i++;
12597|    248|    } while (i < n);
  ------------------
  |  Branch (12597:14): [True: 248, False: 0]
  ------------------
12598|      0|    _PyThreadState_PopCStackRef(tstate, &mro_ref);
12599|       |    return NULL;
12600|    354|}
_PySuper_Lookup:
12738|    172|{
12739|    172|    PyTypeObject *su_obj_type = supercheck(su_type, su_obj);
12740|    172|    if (su_obj_type == NULL) {
  ------------------
  |  Branch (12740:9): [True: 0, False: 172]
  ------------------
12741|      0|        return NULL;
12742|      0|    }
12743|    172|    PyObject *res = do_super_lookup(NULL, su_type, su_obj, su_obj_type, name, method);
12744|    172|    Py_DECREF(su_obj_type);
  ------------------
  |  |  430|    172|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    172|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    172|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12745|    172|    return res;
12746|    172|}
typeobject.c:managed_static_type_state_get:
  286|  41.5k|{
  287|       |    // It's probably a builtin type.
  288|  41.5k|    size_t index = managed_static_type_index_get(self);
  289|  41.5k|    managed_static_type_state *state =
  290|  41.5k|            &(interp->types.builtins.initialized[index]);
  291|  41.5k|    if (state->type == self) {
  ------------------
  |  Branch (291:9): [True: 41.2k, False: 306]
  ------------------
  292|  41.2k|        return state;
  293|  41.2k|    }
  294|    306|    if (index > _Py_MAX_MANAGED_STATIC_EXT_TYPES) {
  ------------------
  |  |  532|    306|#define _Py_MAX_MANAGED_STATIC_EXT_TYPES 10
  ------------------
  |  Branch (294:9): [True: 0, False: 306]
  ------------------
  295|      0|        return state;
  296|      0|    }
  297|    306|    return &(interp->types.for_extensions.initialized[index]);
  298|    306|}
typeobject.c:managed_static_type_index_get:
  240|  41.5k|{
  241|  41.5k|    assert(managed_static_type_index_is_set(self));
  ------------------
  |  Branch (241:5): [True: 41.5k, False: 0]
  ------------------
  242|       |    /* We store a 1-based index so 0 can mean "not initialized". */
  243|  41.5k|    return (size_t)self->tp_subclasses - 1;
  244|  41.5k|}
typeobject.c:managed_static_type_index_is_set:
  233|  41.9k|{
  234|       |    return self->tp_subclasses != NULL;
  235|  41.9k|}
typeobject.c:lookup_tp_dict:
  528|  78.5k|{
  529|  78.5k|    if (self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|  78.5k|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (529:9): [True: 38.2k, False: 40.3k]
  ------------------
  530|  38.2k|        PyInterpreterState *interp = _PyInterpreterState_GET();
  531|  38.2k|        managed_static_type_state *state = _PyStaticType_GetState(interp, self);
  532|  38.2k|        assert(state != NULL);
  ------------------
  |  Branch (532:9): [True: 38.2k, False: 0]
  ------------------
  533|  38.2k|        return state->tp_dict;
  534|  38.2k|    }
  535|  40.3k|    return self->tp_dict;
  536|  78.5k|}
typeobject.c:lookup_tp_bases:
  581|  3.29k|{
  582|  3.29k|    return self->tp_bases;
  583|  3.29k|}
typeobject.c:lookup_tp_subclasses:
  733|    764|{
  734|    764|    if (self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    764|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (734:9): [True: 578, False: 186]
  ------------------
  735|    578|        PyInterpreterState *interp = _PyInterpreterState_GET();
  736|    578|        managed_static_type_state *state = _PyStaticType_GetState(interp, self);
  737|    578|        assert(state != NULL);
  ------------------
  |  Branch (737:9): [True: 578, False: 0]
  ------------------
  738|    578|        return state->tp_subclasses;
  739|    578|    }
  740|    186|    return (PyObject *)self->tp_subclasses;
  741|    764|}
typeobject.c:init_tp_subclasses:
  701|    130|{
  702|    130|    PyObject *subclasses = PyDict_New();
  703|    130|    if (subclasses == NULL) {
  ------------------
  |  Branch (703:9): [True: 0, False: 130]
  ------------------
  704|      0|        return NULL;
  705|      0|    }
  706|    130|    if (self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    130|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (706:9): [True: 70, False: 60]
  ------------------
  707|     70|        PyInterpreterState *interp = _PyInterpreterState_GET();
  708|     70|        managed_static_type_state *state = _PyStaticType_GetState(interp, self);
  709|     70|        state->tp_subclasses = subclasses;
  710|     70|        return subclasses;
  711|     70|    }
  712|     60|    self->tp_subclasses = (void *)subclasses;
  713|     60|    return subclasses;
  714|    130|}
typeobject.c:is_readying:
  513|  1.64k|{
  514|  1.64k|    if (type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|  1.64k|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (514:9): [True: 828, False: 816]
  ------------------
  515|    828|        PyInterpreterState *interp = _PyInterpreterState_GET();
  516|    828|        managed_static_type_state *state = managed_static_type_state_get(interp, type);
  517|    828|        assert(state != NULL);
  ------------------
  |  Branch (517:9): [True: 828, False: 0]
  ------------------
  518|    828|        return state->readying;
  519|    828|    }
  520|    816|    return (type->tp_flags & Py_TPFLAGS_READYING) != 0;
  ------------------
  |  |  521|    816|#define Py_TPFLAGS_READYING (1UL << 13)
  ------------------
  521|  1.64k|}
typeobject.c:_PyType_DocWithoutSignature:
  901|    418|{
  902|    418|    const char *doc = find_signature(name, internal_doc);
  903|       |
  904|    418|    if (doc) {
  ------------------
  |  Branch (904:9): [True: 156, False: 262]
  ------------------
  905|    156|        doc = skip_signature(doc);
  906|    156|        if (doc)
  ------------------
  |  Branch (906:13): [True: 140, False: 16]
  ------------------
  907|    140|            return doc;
  908|    156|        }
  909|    278|    return internal_doc;
  910|    418|}
typeobject.c:find_signature:
  822|    418|{
  823|    418|    const char *dot;
  824|    418|    size_t length;
  825|       |
  826|    418|    if (!doc)
  ------------------
  |  Branch (826:9): [True: 0, False: 418]
  ------------------
  827|      0|        return NULL;
  828|       |
  829|    418|    assert(name != NULL);
  ------------------
  |  Branch (829:5): [True: 418, False: 0]
  ------------------
  830|       |
  831|       |    /* for dotted names like classes, only use the last component */
  832|    418|    dot = strrchr(name, '.');
  833|    418|    if (dot)
  ------------------
  |  Branch (833:9): [True: 190, False: 228]
  ------------------
  834|    190|        name = dot + 1;
  835|       |
  836|    418|    length = strlen(name);
  837|    418|    if (strncmp(doc, name, length))
  ------------------
  |  Branch (837:9): [True: 230, False: 188]
  ------------------
  838|    230|        return NULL;
  839|    188|    doc += length;
  840|    188|    if (*doc != '(')
  ------------------
  |  Branch (840:9): [True: 32, False: 156]
  ------------------
  841|     32|        return NULL;
  842|    156|    return doc;
  843|    188|}
typeobject.c:skip_signature:
  853|    156|{
  854|  7.12k|    while (*doc) {
  ------------------
  |  Branch (854:12): [True: 7.12k, False: 4]
  ------------------
  855|  7.12k|        if ((*doc == *SIGNATURE_END_MARKER) &&
  ------------------
  |  |  845|  7.12k|#define SIGNATURE_END_MARKER         ")\n--\n\n"
  ------------------
  |  Branch (855:13): [True: 232, False: 6.89k]
  ------------------
  856|    232|            !strncmp(doc, SIGNATURE_END_MARKER, SIGNATURE_END_MARKER_LENGTH))
  ------------------
  |  |  845|    232|#define SIGNATURE_END_MARKER         ")\n--\n\n"
  ------------------
                          !strncmp(doc, SIGNATURE_END_MARKER, SIGNATURE_END_MARKER_LENGTH))
  ------------------
  |  |  846|    232|#define SIGNATURE_END_MARKER_LENGTH  6
  ------------------
  |  Branch (856:13): [True: 140, False: 92]
  ------------------
  857|    140|            return doc + SIGNATURE_END_MARKER_LENGTH;
  ------------------
  |  |  846|    140|#define SIGNATURE_END_MARKER_LENGTH  6
  ------------------
  858|  6.98k|        if ((*doc == '\n') && (doc[1] == '\n'))
  ------------------
  |  Branch (858:13): [True: 92, False: 6.89k]
  |  Branch (858:31): [True: 12, False: 80]
  ------------------
  859|     12|            return NULL;
  860|  6.97k|        doc++;
  861|  6.97k|    }
  862|      4|    return NULL;
  863|    156|}
typeobject.c:type_modified_unlocked:
 1167|    370|{
 1168|       |    /* Invalidate any cached data for the specified type and all
 1169|       |       subclasses.  This function is called after the base
 1170|       |       classes, mro, or attributes of the type are altered.
 1171|       |
 1172|       |       Invariants:
 1173|       |
 1174|       |       - before tp_version_tag can be set on a type,
 1175|       |         it must first be set on all super types.
 1176|       |
 1177|       |       This function clears the tp_version_tag of a
 1178|       |       type (so it must first clear it on all subclasses).  The
 1179|       |       tp_version_tag value is meaningless when equal to zero.
 1180|       |       We don't assign new version tags eagerly, but only as
 1181|       |       needed.
 1182|       |     */
 1183|    370|    ASSERT_NEW_TYPE_OR_LOCKED(type);
 1184|       |#ifdef Py_GIL_DISABLED
 1185|       |    // This function is re-entrant and it's not safe to call it
 1186|       |    // with the world stopped.
 1187|       |    assert(!types_world_is_stopped());
 1188|       |#endif
 1189|    370|    if (type->tp_version_tag == 0) {
  ------------------
  |  Branch (1189:9): [True: 330, False: 40]
  ------------------
 1190|    330|        return;
 1191|    330|    }
 1192|       |    // Cannot modify static builtin types.
 1193|    370|    assert((type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) == 0);
  ------------------
  |  Branch (1193:5): [True: 40, False: 0]
  ------------------
 1194|       |
 1195|     40|    PyObject *subclasses = lookup_tp_subclasses(type);
 1196|     40|    if (subclasses != NULL) {
  ------------------
  |  Branch (1196:9): [True: 0, False: 40]
  ------------------
 1197|      0|        assert(PyDict_CheckExact(subclasses));
  ------------------
  |  Branch (1197:9): [True: 0, False: 0]
  ------------------
 1198|       |
 1199|      0|        Py_ssize_t i = 0;
 1200|      0|        PyObject *ref;
 1201|      0|        while (PyDict_Next(subclasses, &i, NULL, &ref)) {
  ------------------
  |  Branch (1201:16): [True: 0, False: 0]
  ------------------
 1202|      0|            PyTypeObject *subclass = type_from_ref(ref);
 1203|      0|            if (subclass == NULL) {
  ------------------
  |  Branch (1203:17): [True: 0, False: 0]
  ------------------
 1204|      0|                continue;
 1205|      0|            }
 1206|      0|            type_modified_unlocked(subclass);
 1207|      0|            Py_DECREF(subclass);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1208|      0|        }
 1209|      0|    }
 1210|       |
 1211|       |    // Notify registered type watchers, if any
 1212|     40|    if (type->tp_watched) {
  ------------------
  |  Branch (1212:9): [True: 0, False: 40]
  ------------------
 1213|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
 1214|      0|        int bits = type->tp_watched;
 1215|      0|        int i = 0;
 1216|      0|        while (bits) {
  ------------------
  |  Branch (1216:16): [True: 0, False: 0]
  ------------------
 1217|      0|            assert(i < TYPE_MAX_WATCHERS);
  ------------------
  |  Branch (1217:13): [True: 0, False: 0]
  ------------------
 1218|      0|            if (bits & 1) {
  ------------------
  |  Branch (1218:17): [True: 0, False: 0]
  ------------------
 1219|       |                // Note that PyErr_FormatUnraisable is potentially re-entrant
 1220|       |                // and the watcher callback might be too.
 1221|      0|                PyType_WatchCallback cb = interp->type_watchers[i];
 1222|      0|                if (cb && (cb(type) < 0)) {
  ------------------
  |  Branch (1222:21): [True: 0, False: 0]
  |  Branch (1222:27): [True: 0, False: 0]
  ------------------
 1223|      0|                    PyErr_FormatUnraisable(
 1224|      0|                        "Exception ignored in type watcher callback #%d for %R",
 1225|      0|                        i, type);
 1226|      0|                }
 1227|      0|            }
 1228|      0|            i++;
 1229|      0|            bits >>= 1;
 1230|      0|        }
 1231|      0|    }
 1232|       |
 1233|     40|    set_version_unlocked(type, 0); /* 0 is not a valid version tag */
 1234|     40|    if (PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|     40|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (1234:9): [True: 40, False: 0]
  ------------------
 1235|       |        // This field *must* be invalidated if the type is modified (see the
 1236|       |        // comment on struct _specialization_cache):
 1237|     40|        FT_ATOMIC_STORE_PTR_RELAXED(
  ------------------
  |  |  163|     40|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
 1238|     40|            ((PyHeapTypeObject *)type)->_spec_cache.getitem, NULL);
 1239|     40|    }
 1240|     40|}
typeobject.c:set_version_unlocked:
 1135|    594|{
 1136|    594|    assert(version == 0 || (tp->tp_versions_used != _Py_ATTR_CACHE_UNUSED));
  ------------------
  |  Branch (1136:5): [True: 40, False: 554]
  |  Branch (1136:5): [True: 554, False: 0]
  ------------------
 1137|    594|#ifndef Py_GIL_DISABLED
 1138|    594|    PyInterpreterState *interp = _PyInterpreterState_GET();
 1139|       |    // lookup the old version and set to null
 1140|    594|    if (tp->tp_version_tag != 0) {
  ------------------
  |  Branch (1140:9): [True: 40, False: 554]
  ------------------
 1141|     40|        PyTypeObject **slot =
 1142|     40|            interp->types.type_version_cache
 1143|     40|            + (tp->tp_version_tag % TYPE_VERSION_CACHE_SIZE);
  ------------------
  |  |  584|     40|#define TYPE_VERSION_CACHE_SIZE (1<<12)  /* Must be a power of 2 */
  ------------------
 1144|     40|        *slot = NULL;
 1145|     40|    }
 1146|    594|    if (version) {
  ------------------
  |  Branch (1146:9): [True: 554, False: 40]
  ------------------
 1147|    554|        tp->tp_versions_used++;
 1148|    554|    }
 1149|       |#else
 1150|       |    if (version) {
 1151|       |        _Py_atomic_add_uint16(&tp->tp_versions_used, 1);
 1152|       |    }
 1153|       |#endif
 1154|    594|    FT_ATOMIC_STORE_UINT_RELAXED(tp->tp_version_tag, version);
  ------------------
  |  |  190|    594|#define FT_ATOMIC_STORE_UINT_RELAXED(value, new_value) value = new_value
  ------------------
 1155|    594|#ifndef Py_GIL_DISABLED
 1156|    594|    if (version != 0) {
  ------------------
  |  Branch (1156:9): [True: 554, False: 40]
  ------------------
 1157|    554|        PyTypeObject **slot =
 1158|    554|            interp->types.type_version_cache
 1159|    554|            + (version % TYPE_VERSION_CACHE_SIZE);
  ------------------
  |  |  584|    554|#define TYPE_VERSION_CACHE_SIZE (1<<12)  /* Must be a power of 2 */
  ------------------
 1160|    554|        *slot = tp;
 1161|    554|    }
 1162|    594|#endif
 1163|    594|}
typeobject.c:assign_version_tag:
 1409|    314|{
 1410|    314|    ASSERT_TYPE_LOCK_HELD();
 1411|       |
 1412|       |    /* Ensure that the tp_version_tag is valid.
 1413|       |     * To respect the invariant, this must first be done on all super classes.
 1414|       |     * Return 0 if this cannot be done, 1 if tp_version_tag is set.
 1415|       |    */
 1416|    314|    if (type->tp_version_tag != 0) {
  ------------------
  |  Branch (1416:9): [True: 152, False: 162]
  ------------------
 1417|    152|        return 1;
 1418|    152|    }
 1419|    162|    if (!_PyType_HasFeature(type, Py_TPFLAGS_READY)) {
  ------------------
  |  |  518|    162|#define Py_TPFLAGS_READY (1UL << 12)
  ------------------
  |  Branch (1419:9): [True: 0, False: 162]
  ------------------
 1420|      0|        return 0;
 1421|      0|    }
 1422|    162|    if (type->tp_versions_used >= MAX_VERSIONS_PER_CLASS) {
  ------------------
  |  | 1389|    162|#define MAX_VERSIONS_PER_CLASS 1000
  ------------------
  |  Branch (1422:9): [True: 0, False: 162]
  ------------------
 1423|       |        /* (this includes `tp_versions_used == _Py_ATTR_CACHE_UNUSED`) */
 1424|      0|        return 0;
 1425|      0|    }
 1426|       |
 1427|    162|    PyObject *bases = lookup_tp_bases(type);
 1428|    162|    Py_ssize_t n = PyTuple_GET_SIZE(bases);
  ------------------
  |  |   27|    162|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    162|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    162|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1429|    348|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (1429:28): [True: 186, False: 162]
  ------------------
 1430|    186|        PyObject *b = PyTuple_GET_ITEM(bases, i);
  ------------------
  |  |   29|    186|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    186|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    186|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1430:23): [True: 186, False: 0]
  ------------------
 1431|    186|        if (!assign_version_tag(interp, _PyType_CAST(b))) {
  ------------------
  |  |  770|    186|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    186|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1431:13): [True: 0, False: 186]
  |  Branch (1431:41): [True: 186, False: 0]
  ------------------
 1432|      0|            return 0;
 1433|      0|        }
 1434|    186|    }
 1435|    162|    if (type->tp_flags & Py_TPFLAGS_IMMUTABLETYPE) {
  ------------------
  |  |  500|    162|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (1435:9): [True: 18, False: 144]
  ------------------
 1436|       |        /* static types */
 1437|     18|        unsigned int next_version_tag = next_global_version_tag();
 1438|     18|        if (next_version_tag == 0) {
  ------------------
  |  Branch (1438:13): [True: 0, False: 18]
  ------------------
 1439|       |            /* We have run out of version numbers */
 1440|      0|            return 0;
 1441|      0|        }
 1442|     18|        set_version_unlocked(type, next_version_tag);
 1443|     18|        assert (type->tp_version_tag <= _Py_MAX_GLOBAL_TYPE_VERSION_TAG);
  ------------------
  |  Branch (1443:9): [True: 18, False: 0]
  ------------------
 1444|     18|    }
 1445|    144|    else {
 1446|       |        /* heap types */
 1447|    144|        if (NEXT_VERSION_TAG(interp) == 0) {
  ------------------
  |  |   61|    144|    (interp)->types.next_version_tag
  ------------------
  |  Branch (1447:13): [True: 0, False: 144]
  ------------------
 1448|       |            /* We have run out of version numbers */
 1449|      0|            return 0;
 1450|      0|        }
 1451|    144|        set_version_unlocked(type, NEXT_VERSION_TAG(interp)++);
  ------------------
  |  |   61|    144|    (interp)->types.next_version_tag
  ------------------
 1452|    144|        assert (type->tp_version_tag != 0);
  ------------------
  |  Branch (1452:9): [True: 144, False: 0]
  ------------------
 1453|    144|    }
 1454|    162|    return 1;
 1455|    162|}
typeobject.c:next_global_version_tag:
 1396|    410|{
 1397|    410|    unsigned int old;
 1398|    410|    do {
 1399|    410|        old = _Py_atomic_load_uint_relaxed(&_PyRuntime.types.next_version_tag);
 1400|    410|        if (old >= _Py_MAX_GLOBAL_TYPE_VERSION_TAG) {
  ------------------
  |  |   35|    410|#define _Py_MAX_GLOBAL_TYPE_VERSION_TAG (_Py_TYPE_BASE_VERSION_TAG - 1)
  |  |  ------------------
  |  |  |  |   34|    410|#define _Py_TYPE_BASE_VERSION_TAG (2<<16)
  |  |  ------------------
  ------------------
  |  Branch (1400:13): [True: 0, False: 410]
  ------------------
 1401|      0|            return 0;
 1402|      0|        }
 1403|    410|    } while (!_Py_atomic_compare_exchange_uint(&_PyRuntime.types.next_version_tag, &old, old + 1));
  ------------------
  |  Branch (1403:14): [True: 0, False: 410]
  ------------------
 1404|    410|    return old + 1;
 1405|    410|}
typeobject.c:type_qualname:
 1535|     20|{
 1536|     20|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     20|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1537|     20|    if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
  ------------------
  |  |  503|     20|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (1537:9): [True: 2, False: 18]
  ------------------
 1538|      2|        PyHeapTypeObject* et = (PyHeapTypeObject*)type;
 1539|      2|        return Py_NewRef(et->ht_qualname);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1540|      2|    }
 1541|     18|    else {
 1542|     18|        return PyUnicode_FromString(_PyType_Name(type));
 1543|     18|    }
 1544|     20|}
typeobject.c:type_module:
 1603|     20|{
 1604|     20|    PyObject *mod;
 1605|     20|    if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
  ------------------
  |  |  503|     20|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (1605:9): [True: 2, False: 18]
  ------------------
 1606|      2|        PyObject *dict = lookup_tp_dict(type);
 1607|      2|        if (PyDict_GetItemRef(dict, &_Py_ID(__module__), &mod) == 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1607:13): [True: 0, False: 2]
  ------------------
 1608|      0|            PyErr_Format(PyExc_AttributeError, "__module__");
 1609|      0|        }
 1610|      2|    }
 1611|     18|    else {
 1612|     18|        const char *s = strrchr(type->tp_name, '.');
 1613|     18|        if (s != NULL) {
  ------------------
  |  Branch (1613:13): [True: 12, False: 6]
  ------------------
 1614|     12|            mod = PyUnicode_FromStringAndSize(
 1615|     12|                type->tp_name, (Py_ssize_t)(s - type->tp_name));
 1616|     12|            if (mod != NULL) {
  ------------------
  |  Branch (1616:17): [True: 12, False: 0]
  ------------------
 1617|     12|                PyInterpreterState *interp = _PyInterpreterState_GET();
 1618|     12|                _PyUnicode_InternMortal(interp, &mod);
 1619|     12|            }
 1620|     12|        }
 1621|      6|        else {
 1622|      6|            mod = &_Py_ID(builtins);
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1623|      6|        }
 1624|     18|    }
 1625|     20|    return mod;
 1626|     20|}
typeobject.c:is_subtype_with_mro:
 2900|  62.1k|{
 2901|  62.1k|    int res;
 2902|  62.1k|    if (a_mro != NULL) {
  ------------------
  |  Branch (2902:9): [True: 60.0k, False: 2.08k]
  ------------------
 2903|       |        /* Deal with multiple inheritance without recursion
 2904|       |           by walking the MRO tuple */
 2905|  60.0k|        Py_ssize_t i, n;
 2906|  60.0k|        assert(PyTuple_Check(a_mro));
  ------------------
  |  Branch (2906:9): [True: 60.0k, False: 0]
  ------------------
 2907|  60.0k|        n = PyTuple_GET_SIZE(a_mro);
  ------------------
  |  |   27|  60.0k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  60.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  60.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2908|  60.0k|        res = 0;
 2909|   169k|        for (i = 0; i < n; i++) {
  ------------------
  |  Branch (2909:21): [True: 118k, False: 50.2k]
  ------------------
 2910|   237k|            if (PyTuple_GET_ITEM(a_mro, i) == (PyObject *)b) {
  ------------------
  |  |   29|   118k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|   118k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|   118k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2910:17): [True: 118k, False: 0]
  |  Branch (2910:17): [True: 9.79k, False: 109k]
  ------------------
 2911|  9.79k|                res = 1;
 2912|  9.79k|                break;
 2913|  9.79k|            }
 2914|   118k|        }
 2915|  60.0k|    }
 2916|  2.08k|    else {
 2917|       |        /* a is not completely initialized yet; follow tp_base */
 2918|  2.08k|        res = type_is_subtype_base_chain(a, b);
 2919|  2.08k|    }
 2920|  62.1k|    return res;
 2921|  62.1k|}
typeobject.c:type_is_subtype_base_chain:
 2888|  2.08k|{
 2889|  2.09k|    do {
 2890|  2.09k|        if (a == b)
  ------------------
  |  Branch (2890:13): [True: 6, False: 2.09k]
  ------------------
 2891|      6|            return 1;
 2892|  2.09k|        a = a->tp_base;
 2893|  2.09k|    } while (a != NULL);
  ------------------
  |  Branch (2893:14): [True: 8, False: 2.08k]
  ------------------
 2894|       |
 2895|  2.08k|    return (b == &PyBaseObject_Type);
 2896|  2.08k|}
typeobject.c:lookup_maybe_method:
 3029|      2|{
 3030|      2|    return lookup_method_ex(self, attr, out, 0);
 3031|      2|}
typeobject.c:lookup_method_ex:
 2995|    234|{
 2996|    234|    _PyType_LookupStackRefAndVersion(Py_TYPE(self), attr, out);
  ------------------
  |  |  213|    234|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    234|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    234|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2997|    234|    if (PyStackRef_IsNull(*out)) {
  ------------------
  |  |  470|    234|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|    234|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    234|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 0, False: 234]
  |  |  ------------------
  ------------------
 2998|      0|        if (raise_attribute_error) {
  ------------------
  |  Branch (2998:13): [True: 0, False: 0]
  ------------------
 2999|      0|            PyErr_SetObject(PyExc_AttributeError, attr);
 3000|      0|        }
 3001|      0|        return -1;
 3002|      0|    }
 3003|       |
 3004|    234|    PyObject *value = PyStackRef_AsPyObjectBorrow(*out);
 3005|    234|    if (_PyType_HasFeature(Py_TYPE(value), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  213|    234|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    234|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    234|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (_PyType_HasFeature(Py_TYPE(value), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  534|    234|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
  |  Branch (3005:9): [True: 234, False: 0]
  ------------------
 3006|       |        /* Avoid temporary PyMethodObject */
 3007|    234|        return 1;
 3008|    234|    }
 3009|       |
 3010|      0|    descrgetfunc f = Py_TYPE(value)->tp_descr_get;
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3011|      0|    if (f != NULL) {
  ------------------
  |  Branch (3011:9): [True: 0, False: 0]
  ------------------
 3012|      0|        value = f(value, self, (PyObject *)(Py_TYPE(self)));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3013|      0|        PyStackRef_CLEAR(*out);
  ------------------
  |  |  711|      0|    do { \
  |  |  712|      0|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|      0|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|      0|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|      0|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3014|      0|        if (value == NULL) {
  ------------------
  |  Branch (3014:13): [True: 0, False: 0]
  ------------------
 3015|      0|            if (!raise_attribute_error &&
  ------------------
  |  Branch (3015:17): [True: 0, False: 0]
  ------------------
 3016|      0|                PyErr_ExceptionMatches(PyExc_AttributeError))
  ------------------
  |  Branch (3016:17): [True: 0, False: 0]
  ------------------
 3017|      0|            {
 3018|      0|                PyErr_Clear();
 3019|      0|            }
 3020|      0|            return -1;
 3021|      0|        }
 3022|      0|        *out = PyStackRef_FromPyObjectSteal(value);
 3023|      0|    }
 3024|      0|    return 0;
 3025|      0|}
typeobject.c:call_unbound_noarg:
 3057|     58|{
 3058|     58|    if (unbound) {
  ------------------
  |  Branch (3058:9): [True: 58, False: 0]
  ------------------
 3059|     58|        return PyObject_CallOneArg(func, self);
 3060|     58|    }
 3061|      0|    else {
 3062|      0|        return _PyObject_CallNoArgs(func);
 3063|      0|    }
 3064|     58|}
typeobject.c:maybe_call_special_one_arg:
 3181|      2|{
 3182|      2|    PyThreadState *tstate = _PyThreadState_GET();
 3183|      2|    _PyCStackRef cref;
 3184|      2|    _PyThreadState_PushCStackRef(tstate, &cref);
 3185|       |
 3186|      2|    PyObject *res = NULL;
 3187|      2|    int unbound = lookup_maybe_method(self, attr, &cref.ref);
 3188|      2|    PyObject *func = PyStackRef_AsPyObjectBorrow(cref.ref);
 3189|      2|    if (attr_is_none != NULL) {
  ------------------
  |  Branch (3189:9): [True: 2, False: 0]
  ------------------
 3190|      2|        *attr_is_none = (func == Py_None);
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
 3191|      2|    }
 3192|      2|    if (func != NULL && (func != Py_None || attr_is_none == NULL)) {
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (3192:9): [True: 2, False: 0]
  |  Branch (3192:26): [True: 2, False: 0]
  |  Branch (3192:45): [True: 0, False: 0]
  ------------------
 3193|      2|        PyObject *args[] = { self, arg };
 3194|      2|        res = vectorcall_unbound(tstate, unbound, func, args, 2);
 3195|      2|    }
 3196|      2|    _PyThreadState_PopCStackRef(tstate, &cref);
 3197|      2|    return res;
 3198|      2|}
typeobject.c:vectorcall_unbound:
 3043|      8|{
 3044|      8|    size_t nargsf = nargs;
 3045|      8|    if (!unbound) {
  ------------------
  |  Branch (3045:9): [True: 0, False: 8]
  ------------------
 3046|       |        /* Skip self argument, freeing up args[0] to use for
 3047|       |         * PY_VECTORCALL_ARGUMENTS_OFFSET */
 3048|      0|        args++;
 3049|      0|        nargsf = nargsf - 1 + PY_VECTORCALL_ARGUMENTS_OFFSET;
  ------------------
  |  |  287|      0|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 3050|      0|    }
 3051|      8|    EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_SLOT, func);
  ------------------
  |  |   80|      8|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  ------------------
 3052|       |    return _PyObject_VectorcallTstate(tstate, func, args, nargsf, NULL);
 3053|      8|}
typeobject.c:type_from_slots_or_spec:
 5238|     78|{
 5239|       |    /* Invariant: A non-NULL value in one of these means this function holds
 5240|       |     * a strong reference or owns allocated memory.
 5241|       |     * These get decrefed/freed/returned at the end, on both success and error.
 5242|       |     */
 5243|     78|    PyHeapTypeObject *res = NULL;
 5244|     78|    PyTypeObject *type;
 5245|     78|    PyObject *bases = NULL;
 5246|     78|    char *tp_doc = NULL;
 5247|     78|    PyObject *ht_name = NULL;
 5248|     78|    char *_ht_tpname = NULL;
 5249|       |
 5250|     78|    int r;
 5251|       |
 5252|       |    /* First pass of slots */
 5253|       |
 5254|     78|    Py_ssize_t nmembers = 0;
 5255|     78|    const PyMemberDef *weaklistoffset_member = NULL;
 5256|     78|    const PyMemberDef *dictoffset_member = NULL;
 5257|     78|    const PyMemberDef *vectorcalloffset_member = NULL;
 5258|     78|    Py_ssize_t basicsize = 0;
 5259|     78|    Py_ssize_t extra_basicsize = 0;
 5260|     78|    Py_ssize_t itemsize = 0;
 5261|     78|    int flags = 0;
 5262|     78|    void *token = NULL;
 5263|       |
 5264|     78|    bool have_relative_members = false;
 5265|     78|    Py_ssize_t max_relative_offset = 0;
 5266|       |
 5267|     78|    PyObject *bases_slot = NULL; /* borrowed from the slots */
 5268|       |
 5269|     78|    _PySlotIterator it;
 5270|       |
 5271|     78|    if (spec) {
  ------------------
  |  Branch (5271:9): [True: 78, False: 0]
  ------------------
 5272|     78|        assert(!slots);
  ------------------
  |  Branch (5272:9): [True: 78, False: 0]
  ------------------
 5273|     78|        if (spec->basicsize > 0) {
  ------------------
  |  Branch (5273:13): [True: 72, False: 6]
  ------------------
 5274|     72|            basicsize = spec->basicsize;
 5275|     72|        }
 5276|     78|        if (spec->basicsize < 0) {
  ------------------
  |  Branch (5276:13): [True: 0, False: 78]
  ------------------
 5277|      0|            extra_basicsize = -spec->basicsize;
 5278|      0|        }
 5279|     78|        itemsize = spec->itemsize;
 5280|     78|        flags = spec->flags;
 5281|     78|        _PySlotIterator_InitLegacy(&it, spec->slots, _PySlot_KIND_TYPE);
 5282|     78|        it.name = spec->name;
 5283|     78|    }
 5284|      0|    else {
 5285|      0|        assert(!spec);
  ------------------
  |  Branch (5285:9): [True: 0, False: 0]
  ------------------
 5286|      0|        assert(!metaclass);
  ------------------
  |  Branch (5286:9): [True: 0, False: 0]
  ------------------
 5287|      0|        assert(!module);
  ------------------
  |  Branch (5287:9): [True: 0, False: 0]
  ------------------
 5288|      0|        assert(!bases_in);
  ------------------
  |  Branch (5288:9): [True: 0, False: 0]
  ------------------
 5289|      0|        _PySlotIterator_Init(&it, slots, _PySlot_KIND_TYPE);
 5290|      0|    }
 5291|       |
 5292|     78|    #define NO_SPEC                                         \
 5293|     78|        if (spec) {                                         \
 5294|     78|            PyErr_Format(                                   \
 5295|     78|                PyExc_SystemError,                          \
 5296|     78|                "%s must not be used with PyType_Spec",     \
 5297|     78|                _PySlot_GetName(it.current.sl_id));         \
 5298|     78|            goto finally;                                   \
 5299|     78|        }                                                   \
 5300|       |        /////////////////////////////////////////////////////
 5301|       |
 5302|    656|    while (_PySlotIterator_Next(&it)) {
  ------------------
  |  Branch (5302:12): [True: 578, False: 78]
  ------------------
 5303|    578|        switch (it.current.sl_id) {
  ------------------
  |  Branch (5303:17): [True: 120, False: 458]
  ------------------
 5304|      0|        case Py_slot_invalid:
  ------------------
  |  |   25|      0|#define Py_slot_invalid 0xffff
  ------------------
  |  Branch (5304:9): [True: 0, False: 578]
  ------------------
 5305|      0|            goto finally;
 5306|      0|        case Py_tp_name:
  ------------------
  |  |  103|      0|#define Py_tp_name 95
  ------------------
  |  Branch (5306:9): [True: 0, False: 578]
  ------------------
 5307|      0|            NO_SPEC;
  ------------------
  |  | 5293|      0|        if (spec) {                                         \
  |  |  ------------------
  |  |  |  Branch (5293:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5294|      0|            PyErr_Format(                                   \
  |  | 5295|      0|                PyExc_SystemError,                          \
  |  | 5296|      0|                "%s must not be used with PyType_Spec",     \
  |  | 5297|      0|                _PySlot_GetName(it.current.sl_id));         \
  |  | 5298|      0|            goto finally;                                   \
  |  | 5299|      0|        }                                                   \
  ------------------
 5308|      0|            it.name = it.current.sl_ptr;
 5309|      0|            break;
 5310|      0|        case Py_tp_metaclass:
  ------------------
  |  |  115|      0|#define Py_tp_metaclass 107
  ------------------
  |  Branch (5310:9): [True: 0, False: 578]
  ------------------
 5311|      0|            NO_SPEC;
  ------------------
  |  | 5293|      0|        if (spec) {                                         \
  |  |  ------------------
  |  |  |  Branch (5293:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5294|      0|            PyErr_Format(                                   \
  |  | 5295|      0|                PyExc_SystemError,                          \
  |  | 5296|      0|                "%s must not be used with PyType_Spec",     \
  |  | 5297|      0|                _PySlot_GetName(it.current.sl_id));         \
  |  | 5298|      0|            goto finally;                                   \
  |  | 5299|      0|        }                                                   \
  ------------------
 5312|      0|            metaclass = it.current.sl_ptr;
 5313|      0|            break;
 5314|      0|        case Py_tp_module:
  ------------------
  |  |  116|      0|#define Py_tp_module 108
  ------------------
  |  Branch (5314:9): [True: 0, False: 578]
  ------------------
 5315|      0|            NO_SPEC;
  ------------------
  |  | 5293|      0|        if (spec) {                                         \
  |  |  ------------------
  |  |  |  Branch (5293:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5294|      0|            PyErr_Format(                                   \
  |  | 5295|      0|                PyExc_SystemError,                          \
  |  | 5296|      0|                "%s must not be used with PyType_Spec",     \
  |  | 5297|      0|                _PySlot_GetName(it.current.sl_id));         \
  |  | 5298|      0|            goto finally;                                   \
  |  | 5299|      0|        }                                                   \
  ------------------
 5316|      0|            module = it.current.sl_ptr;
 5317|      0|            break;
 5318|      0|        case Py_tp_bases:
  ------------------
  |  |   57|      0|#define Py_tp_bases 49
  ------------------
  |  Branch (5318:9): [True: 0, False: 578]
  ------------------
 5319|      0|            bases_slot = it.current.sl_ptr;
 5320|      0|            break;
 5321|      0|        case Py_tp_base:
  ------------------
  |  |   56|      0|#define Py_tp_base 48
  ------------------
  |  Branch (5321:9): [True: 0, False: 578]
  ------------------
 5322|      0|            if (!_PySlotIterator_SawSlot(&it, Py_tp_bases)) {
  ------------------
  |  |   57|      0|#define Py_tp_bases 49
  ------------------
  |  Branch (5322:17): [True: 0, False: 0]
  ------------------
 5323|      0|                bases_slot = it.current.sl_ptr;
 5324|      0|            }
 5325|      0|            break;
 5326|      0|        case Py_tp_basicsize:
  ------------------
  |  |  104|      0|#define Py_tp_basicsize 96
  ------------------
  |  Branch (5326:9): [True: 0, False: 578]
  ------------------
 5327|      0|            NO_SPEC;
  ------------------
  |  | 5293|      0|        if (spec) {                                         \
  |  |  ------------------
  |  |  |  Branch (5293:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5294|      0|            PyErr_Format(                                   \
  |  | 5295|      0|                PyExc_SystemError,                          \
  |  | 5296|      0|                "%s must not be used with PyType_Spec",     \
  |  | 5297|      0|                _PySlot_GetName(it.current.sl_id));         \
  |  | 5298|      0|            goto finally;                                   \
  |  | 5299|      0|        }                                                   \
  ------------------
 5328|      0|            basicsize = it.current.sl_size;
 5329|      0|            if (basicsize <= 0) {
  ------------------
  |  Branch (5329:17): [True: 0, False: 0]
  ------------------
 5330|      0|                PyErr_SetString(
 5331|      0|                    PyExc_SystemError,
 5332|      0|                    "Py_tp_basicsize must be positive");
 5333|      0|                goto finally;
 5334|      0|            }
 5335|      0|            break;
 5336|      0|        case Py_tp_extra_basicsize:
  ------------------
  |  |  105|      0|#define Py_tp_extra_basicsize 97
  ------------------
  |  Branch (5336:9): [True: 0, False: 578]
  ------------------
 5337|      0|            NO_SPEC;
  ------------------
  |  | 5293|      0|        if (spec) {                                         \
  |  |  ------------------
  |  |  |  Branch (5293:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5294|      0|            PyErr_Format(                                   \
  |  | 5295|      0|                PyExc_SystemError,                          \
  |  | 5296|      0|                "%s must not be used with PyType_Spec",     \
  |  | 5297|      0|                _PySlot_GetName(it.current.sl_id));         \
  |  | 5298|      0|            goto finally;                                   \
  |  | 5299|      0|        }                                                   \
  ------------------
 5338|      0|            extra_basicsize = it.current.sl_size;
 5339|      0|            if (extra_basicsize <= 0) {
  ------------------
  |  Branch (5339:17): [True: 0, False: 0]
  ------------------
 5340|      0|                PyErr_SetString(
 5341|      0|                    PyExc_SystemError,
 5342|      0|                    "Py_tp_extra_basicsize must be positive");
 5343|      0|                goto finally;
 5344|      0|            }
 5345|      0|            break;
 5346|      0|        case Py_tp_itemsize:
  ------------------
  |  |  106|      0|#define Py_tp_itemsize 98
  ------------------
  |  Branch (5346:9): [True: 0, False: 578]
  ------------------
 5347|      0|            NO_SPEC;
  ------------------
  |  | 5293|      0|        if (spec) {                                         \
  |  |  ------------------
  |  |  |  Branch (5293:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5294|      0|            PyErr_Format(                                   \
  |  | 5295|      0|                PyExc_SystemError,                          \
  |  | 5296|      0|                "%s must not be used with PyType_Spec",     \
  |  | 5297|      0|                _PySlot_GetName(it.current.sl_id));         \
  |  | 5298|      0|            goto finally;                                   \
  |  | 5299|      0|        }                                                   \
  ------------------
 5348|      0|            itemsize = it.current.sl_size;
 5349|      0|            if (itemsize <= 0) {
  ------------------
  |  Branch (5349:17): [True: 0, False: 0]
  ------------------
 5350|      0|                PyErr_SetString(
 5351|      0|                    PyExc_SystemError,
 5352|      0|                    "Py_tp_itemsize must be positive");
 5353|      0|                goto finally;
 5354|      0|            }
 5355|      0|            break;
 5356|      0|        case Py_tp_flags:
  ------------------
  |  |  107|      0|#define Py_tp_flags 99
  ------------------
  |  Branch (5356:9): [True: 0, False: 578]
  ------------------
 5357|      0|            NO_SPEC;
  ------------------
  |  | 5293|      0|        if (spec) {                                         \
  |  |  ------------------
  |  |  |  Branch (5293:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5294|      0|            PyErr_Format(                                   \
  |  | 5295|      0|                PyExc_SystemError,                          \
  |  | 5296|      0|                "%s must not be used with PyType_Spec",     \
  |  | 5297|      0|                _PySlot_GetName(it.current.sl_id));         \
  |  | 5298|      0|            goto finally;                                   \
  |  | 5299|      0|        }                                                   \
  ------------------
 5358|      0|            flags = (int)it.current.sl_uint64;
 5359|      0|            break;
 5360|     54|        case Py_tp_members:
  ------------------
  |  |   80|     54|#define Py_tp_members 72
  ------------------
  |  Branch (5360:9): [True: 54, False: 524]
  ------------------
 5361|     54|            for (const PyMemberDef *memb = it.current.sl_ptr;
 5362|    294|                 memb->name != NULL;
  ------------------
  |  Branch (5362:18): [True: 240, False: 54]
  ------------------
 5363|    240|                 memb++)
 5364|    240|            {
 5365|    240|                nmembers++;
 5366|    240|                if (memb->flags & Py_RELATIVE_OFFSET) {
  ------------------
  |  |   86|    240|#define Py_RELATIVE_OFFSET     (1 << 3)
  ------------------
  |  Branch (5366:21): [True: 0, False: 240]
  ------------------
 5367|      0|                    if (memb->offset < 0) {
  ------------------
  |  Branch (5367:25): [True: 0, False: 0]
  ------------------
 5368|      0|                        PyErr_SetString(
 5369|      0|                            PyExc_SystemError,
 5370|      0|                            "Member offset must not be negative");
 5371|      0|                        goto finally;
 5372|      0|                    }
 5373|      0|                    have_relative_members = true;
 5374|      0|                    max_relative_offset = Py_MAX(max_relative_offset,
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 5375|      0|                                                 memb->offset);
 5376|      0|                }
 5377|    240|                if (strcmp(memb->name, "__weaklistoffset__") == 0) {
  ------------------
  |  Branch (5377:21): [True: 22, False: 218]
  ------------------
 5378|     22|                    weaklistoffset_member = memb;
 5379|     22|                }
 5380|    218|                else if (strcmp(memb->name, "__dictoffset__") == 0) {
  ------------------
  |  Branch (5380:26): [True: 18, False: 200]
  ------------------
 5381|     18|                    dictoffset_member = memb;
 5382|     18|                }
 5383|    200|                else if (strcmp(memb->name, "__vectorcalloffset__") == 0) {
  ------------------
  |  Branch (5383:26): [True: 0, False: 200]
  ------------------
 5384|      0|                    vectorcalloffset_member = memb;
 5385|      0|                }
 5386|    240|            }
 5387|     54|            break;
 5388|     54|        case Py_tp_token:
  ------------------
  |  |   91|      0|#define Py_tp_token 83
  ------------------
  |  Branch (5388:9): [True: 0, False: 578]
  ------------------
 5389|      0|            token = it.current.sl_ptr;
 5390|      0|            if (token == Py_TP_USE_SPEC) {
  ------------------
  |  |  365|      0|#define Py_TP_USE_SPEC NULL
  ------------------
  |  Branch (5390:17): [True: 0, False: 0]
  ------------------
 5391|      0|                if (!spec) {
  ------------------
  |  Branch (5391:21): [True: 0, False: 0]
  ------------------
 5392|      0|                    PyErr_SetString(
 5393|      0|                        PyExc_SystemError,
 5394|      0|                        "Py_tp_token: Py_TP_USE_SPEC (NULL) can only be "
 5395|      0|                        "used with PyType_Spec");
 5396|      0|                    goto finally;
 5397|      0|                }
 5398|      0|                token = spec;
 5399|      0|            }
 5400|      0|            break;
 5401|     66|        case Py_tp_doc:
  ------------------
  |  |   64|     66|#define Py_tp_doc 56
  ------------------
  |  Branch (5401:9): [True: 66, False: 512]
  ------------------
 5402|       |            /* For the docstring slot, which usually points to a static string
 5403|       |               literal, we need to make a copy */
 5404|     66|            if (it.current.sl_ptr == NULL) {
  ------------------
  |  Branch (5404:17): [True: 0, False: 66]
  ------------------
 5405|      0|                PyMem_Free(tp_doc);
 5406|      0|                tp_doc = NULL;
 5407|      0|            }
 5408|     66|            else {
 5409|     66|                size_t len = strlen(it.current.sl_ptr)+1;
 5410|     66|                tp_doc = PyMem_Malloc(len);
 5411|     66|                if (tp_doc == NULL) {
  ------------------
  |  Branch (5411:21): [True: 0, False: 66]
  ------------------
 5412|      0|                    PyErr_NoMemory();
 5413|      0|                    goto finally;
 5414|      0|                }
 5415|     66|                memcpy(tp_doc, it.current.sl_ptr, len);
 5416|     66|            }
 5417|     66|            break;
 5418|    578|        }
 5419|    578|    }
 5420|     78|    #undef NO_SPEC
 5421|       |
 5422|       |    /* Required slots & bad combinations */
 5423|       |
 5424|     78|    if (it.name == NULL) {
  ------------------
  |  Branch (5424:9): [True: 0, False: 78]
  ------------------
 5425|      0|        if (spec) {
  ------------------
  |  Branch (5425:13): [True: 0, False: 0]
  ------------------
 5426|      0|            PyErr_SetString(PyExc_SystemError,
 5427|      0|                            "Type spec does not define the name field.");
 5428|      0|        }
 5429|      0|        else {
 5430|      0|            PyErr_SetString(PyExc_SystemError,
 5431|      0|                            "Py_tp_name slot is required.");
 5432|      0|        }
 5433|      0|        goto finally;
 5434|      0|    }
 5435|       |
 5436|     78|    if (_PySlotIterator_SawSlot(&it, Py_tp_basicsize)
  ------------------
  |  |  104|     78|#define Py_tp_basicsize 96
  ------------------
  |  Branch (5436:9): [True: 0, False: 78]
  ------------------
 5437|      0|        && _PySlotIterator_SawSlot(&it, Py_tp_extra_basicsize))
  ------------------
  |  |  105|      0|#define Py_tp_extra_basicsize 97
  ------------------
  |  Branch (5437:12): [True: 0, False: 0]
  ------------------
 5438|      0|    {
 5439|      0|        PyErr_Format(
 5440|      0|            PyExc_SystemError,
 5441|      0|            "type %s: Py_tp_basicsize and Py_tp_extra_basicsize are "
 5442|      0|            "mutually exclusive",
 5443|      0|            it.name);
 5444|      0|        goto finally;
 5445|      0|    }
 5446|       |
 5447|     78|    if (have_relative_members) {
  ------------------
  |  Branch (5447:9): [True: 0, False: 78]
  ------------------
 5448|      0|        if (!extra_basicsize) {
  ------------------
  |  Branch (5448:13): [True: 0, False: 0]
  ------------------
 5449|      0|            PyErr_SetString(
 5450|      0|                PyExc_SystemError,
 5451|      0|                "With Py_RELATIVE_OFFSET, basicsize must be extended");
 5452|      0|            goto finally;
 5453|      0|        }
 5454|      0|        if (max_relative_offset >= extra_basicsize) {
  ------------------
  |  Branch (5454:13): [True: 0, False: 0]
  ------------------
 5455|      0|            PyErr_SetString(
 5456|      0|                PyExc_SystemError,
 5457|      0|                "Member offset out of range (0..extra_basicsize)");
 5458|      0|            goto finally;
 5459|      0|        }
 5460|      0|    }
 5461|       |
 5462|       |    /* Prepare the type name and qualname */
 5463|       |
 5464|     78|    assert(it.name);
  ------------------
  |  Branch (5464:5): [True: 78, False: 0]
  ------------------
 5465|     78|    const char *s = strrchr(it.name, '.');
 5466|     78|    if (s == NULL) {
  ------------------
  |  Branch (5466:9): [True: 0, False: 78]
  ------------------
 5467|      0|        s = it.name;
 5468|      0|    }
 5469|     78|    else {
 5470|     78|        s++;
 5471|     78|    }
 5472|       |
 5473|     78|    ht_name = PyUnicode_FromString(s);
 5474|     78|    if (!ht_name) {
  ------------------
  |  Branch (5474:9): [True: 0, False: 78]
  ------------------
 5475|      0|        goto finally;
 5476|      0|    }
 5477|       |
 5478|       |    /* Copy the name to a buffer we own.
 5479|       |    *
 5480|       |    * Unfortunately, we can't use tp_name directly (with some
 5481|       |    * flag saying that it should be deallocated with the type),
 5482|       |    * because tp_name is public API and may be set independently
 5483|       |    * of any such flag.
 5484|       |    * So, we use a separate buffer, _ht_tpname, that's always
 5485|       |    * deallocated with the type (if it's non-NULL).
 5486|       |    */
 5487|     78|    Py_ssize_t name_buf_len = strlen(it.name) + 1;
 5488|     78|    _ht_tpname = PyMem_Malloc(name_buf_len);
 5489|     78|    if (_ht_tpname == NULL) {
  ------------------
  |  Branch (5489:9): [True: 0, False: 78]
  ------------------
 5490|      0|        goto finally;
 5491|      0|    }
 5492|     78|    memcpy(_ht_tpname, it.name, name_buf_len);
 5493|       |
 5494|       |    /* Get a tuple of bases.
 5495|       |     * bases is a strong reference (unlike bases_in).
 5496|       |     * (This is convoluted for backwards compatibility -- preserving priority
 5497|       |     * of the various ways to specify bases)
 5498|       |     */
 5499|     78|    if (!bases_in) {
  ------------------
  |  Branch (5499:9): [True: 38, False: 40]
  ------------------
 5500|     38|        bases_in = bases_slot;
 5501|     38|    }
 5502|     78|    if (bases_in) {
  ------------------
  |  Branch (5502:9): [True: 40, False: 38]
  ------------------
 5503|     40|        if (PyTuple_Check(bases_in)) {
  ------------------
  |  |   27|     40|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     40|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5504|      0|            bases = Py_NewRef(bases_in);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5505|      0|        }
 5506|     40|        else {
 5507|     40|            bases = PyTuple_Pack(1, bases_in);
 5508|     40|        }
 5509|     40|    }
 5510|     38|    else {
 5511|     38|        bases = PyTuple_Pack(1, &PyBaseObject_Type);
 5512|     38|    }
 5513|     78|    if (!bases) {
  ------------------
  |  Branch (5513:9): [True: 0, False: 78]
  ------------------
 5514|      0|        goto finally;
 5515|      0|    }
 5516|       |
 5517|       |    /* If this is an immutable type, check if all bases are also immutable.
 5518|       |     * (This isn't necessary for static types: those can't have heap bases,
 5519|       |     * and only heap types can be mutable.)
 5520|       |     */
 5521|     78|    if (flags & Py_TPFLAGS_IMMUTABLETYPE) {
  ------------------
  |  |  500|     78|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (5521:9): [True: 56, False: 22]
  ------------------
 5522|     56|        if (check_immutable_bases(it.name, bases, 0) < 0) {
  ------------------
  |  Branch (5522:13): [True: 0, False: 56]
  ------------------
 5523|      0|            goto finally;
 5524|      0|        }
 5525|     56|    }
 5526|       |
 5527|       |    /* Calculate the metaclass */
 5528|       |
 5529|     78|    if (!metaclass) {
  ------------------
  |  Branch (5529:9): [True: 78, False: 0]
  ------------------
 5530|     78|        metaclass = &PyType_Type;
 5531|     78|    }
 5532|     78|    metaclass = _PyType_CalculateMetaclass(metaclass, bases);
 5533|     78|    if (metaclass == NULL) {
  ------------------
  |  Branch (5533:9): [True: 0, False: 78]
  ------------------
 5534|      0|        goto finally;
 5535|      0|    }
 5536|     78|    if (!PyType_Check(metaclass)) {
  ------------------
  |  |  766|     78|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5536:9): [True: 0, False: 78]
  ------------------
 5537|      0|        PyErr_Format(PyExc_TypeError,
 5538|      0|                     "Metaclass '%R' is not a subclass of 'type'.",
 5539|      0|                     metaclass);
 5540|      0|        goto finally;
 5541|      0|    }
 5542|     78|    if (metaclass->tp_new && metaclass->tp_new != PyType_Type.tp_new) {
  ------------------
  |  Branch (5542:9): [True: 78, False: 0]
  |  Branch (5542:30): [True: 0, False: 78]
  ------------------
 5543|      0|        PyErr_SetString(
 5544|      0|            PyExc_TypeError,
 5545|      0|            "Metaclasses with custom tp_new are not supported.");
 5546|      0|        goto finally;
 5547|      0|    }
 5548|       |
 5549|       |    /* Calculate best base, and check that all bases are type objects */
 5550|     78|    PyTypeObject *base = find_best_base(bases);  // borrowed ref
 5551|     78|    if (base == NULL) {
  ------------------
  |  Branch (5551:9): [True: 0, False: 78]
  ------------------
 5552|      0|        goto finally;
 5553|      0|    }
 5554|       |    // find_best_base() should check Py_TPFLAGS_BASETYPE & raise a proper
 5555|       |    // exception, here we just check its work
 5556|     78|    assert(_PyType_HasFeature(base, Py_TPFLAGS_BASETYPE));
  ------------------
  |  Branch (5556:5): [True: 78, False: 0]
  ------------------
 5557|       |
 5558|       |    /* Calculate sizes */
 5559|       |
 5560|     78|    Py_ssize_t type_data_offset = basicsize;
 5561|     78|    if (extra_basicsize) {
  ------------------
  |  Branch (5561:9): [True: 0, False: 78]
  ------------------
 5562|       |        /* Extend */
 5563|      0|        assert(basicsize == 0);
  ------------------
  |  Branch (5563:9): [True: 0, False: 0]
  ------------------
 5564|      0|        type_data_offset = _align_up(base->tp_basicsize);
 5565|      0|        basicsize = type_data_offset + _align_up(extra_basicsize);
 5566|       |
 5567|       |        /* Inheriting variable-sized types is limited */
 5568|      0|        if (base->tp_itemsize
  ------------------
  |  Branch (5568:13): [True: 0, False: 0]
  ------------------
 5569|      0|            && !((base->tp_flags | flags) & Py_TPFLAGS_ITEMS_AT_END))
  ------------------
  |  |  548|      0|#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
  ------------------
  |  Branch (5569:16): [True: 0, False: 0]
  ------------------
 5570|      0|        {
 5571|      0|            PyErr_SetString(
 5572|      0|                PyExc_SystemError,
 5573|      0|                "Cannot extend variable-size class without Py_TPFLAGS_ITEMS_AT_END.");
 5574|      0|            goto finally;
 5575|      0|        }
 5576|      0|    }
 5577|     78|    if (basicsize == 0) {
  ------------------
  |  Branch (5577:9): [True: 6, False: 72]
  ------------------
 5578|       |        /* Inherit */
 5579|      6|        basicsize = base->tp_basicsize;
 5580|      6|    }
 5581|       |
 5582|       |    /* Compute special offsets */
 5583|       |
 5584|     78|    Py_ssize_t weaklistoffset = 0;
 5585|     78|    if (special_offset_from_member(weaklistoffset_member, type_data_offset,
  ------------------
  |  Branch (5585:9): [True: 0, False: 78]
  ------------------
 5586|     78|                                  &weaklistoffset) < 0) {
 5587|      0|        goto finally;
 5588|      0|    }
 5589|     78|    Py_ssize_t dictoffset = 0;
 5590|     78|    if (special_offset_from_member(dictoffset_member, type_data_offset,
  ------------------
  |  Branch (5590:9): [True: 0, False: 78]
  ------------------
 5591|     78|                                  &dictoffset) < 0) {
 5592|      0|        goto finally;
 5593|      0|    }
 5594|     78|    Py_ssize_t vectorcalloffset = 0;
 5595|     78|    if (special_offset_from_member(vectorcalloffset_member, type_data_offset,
  ------------------
  |  Branch (5595:9): [True: 0, False: 78]
  ------------------
 5596|     78|                                  &vectorcalloffset) < 0) {
 5597|      0|        goto finally;
 5598|      0|    }
 5599|       |
 5600|       |    /* Allocate the new type
 5601|       |     *
 5602|       |     * Between here and PyType_Ready, we should limit:
 5603|       |     * - calls to Python code
 5604|       |     * - raising exceptions
 5605|       |     * - memory allocations
 5606|       |     */
 5607|       |
 5608|     78|    res = (PyHeapTypeObject*)metaclass->tp_alloc(metaclass, nmembers);
 5609|     78|    if (res == NULL) {
  ------------------
  |  Branch (5609:9): [True: 0, False: 78]
  ------------------
 5610|      0|        goto finally;
 5611|      0|    }
 5612|       |
 5613|     78|    type = &res->ht_type;
 5614|       |    /* The flags must be initialized early, before the GC traverses us */
 5615|     78|    type_set_flags(type, flags | Py_TPFLAGS_HEAPTYPE);
  ------------------
  |  |  503|     78|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
 5616|       |
 5617|     78|    res->ht_module = Py_XNewRef(module);
  ------------------
  |  |  551|     78|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5618|       |
 5619|       |    /* Initialize essential fields */
 5620|       |
 5621|     78|    type->tp_as_async = &res->as_async;
 5622|     78|    type->tp_as_number = &res->as_number;
 5623|     78|    type->tp_as_sequence = &res->as_sequence;
 5624|     78|    type->tp_as_mapping = &res->as_mapping;
 5625|     78|    type->tp_as_buffer = &res->as_buffer;
 5626|       |
 5627|       |    /* Set slots we have prepared */
 5628|       |
 5629|     78|    type->tp_base = (PyTypeObject *)Py_NewRef(base);
  ------------------
  |  |  550|     78|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5630|     78|    set_tp_bases(type, bases, 1);
 5631|     78|    bases = NULL;  // We give our reference to bases to the type
 5632|       |
 5633|     78|    type->tp_doc = tp_doc;
 5634|     78|    tp_doc = NULL;  // Give ownership of the allocated memory to the type
 5635|       |
 5636|     78|    res->ht_qualname = Py_NewRef(ht_name);
  ------------------
  |  |  550|     78|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5637|     78|    res->ht_name = ht_name;
 5638|     78|    ht_name = NULL;  // Give our reference to the type
 5639|       |
 5640|     78|    type->tp_name = _ht_tpname;
 5641|     78|    res->_ht_tpname = _ht_tpname;
 5642|     78|    _ht_tpname = NULL;  // Give ownership to the type
 5643|       |
 5644|     78|    res->ht_token = token;
 5645|       |
 5646|       |    /* Copy the sizes */
 5647|       |
 5648|     78|    type->tp_basicsize = basicsize;
 5649|     78|    type->tp_itemsize = itemsize;
 5650|       |
 5651|       |    /* Second pass of slots: copy most of them into the type */
 5652|       |
 5653|     78|    _PySlotIterator_Rewind(&it, spec ? (void*)spec->slots : (void*)slots);
  ------------------
  |  Branch (5653:33): [True: 78, False: 0]
  ------------------
 5654|    656|    while (_PySlotIterator_Next(&it)) {
  ------------------
  |  Branch (5654:12): [True: 578, False: 78]
  ------------------
 5655|    578|        switch (it.current.sl_id) {
 5656|      0|        case Py_slot_invalid:
  ------------------
  |  |   25|      0|#define Py_slot_invalid 0xffff
  ------------------
  |  Branch (5656:9): [True: 0, False: 578]
  ------------------
 5657|      0|            goto finally;
 5658|      0|        case Py_tp_base:
  ------------------
  |  |   56|      0|#define Py_tp_base 48
  ------------------
  |  Branch (5658:9): [True: 0, False: 578]
  ------------------
 5659|      0|        case Py_tp_bases:
  ------------------
  |  |   57|      0|#define Py_tp_bases 49
  ------------------
  |  Branch (5659:9): [True: 0, False: 578]
  ------------------
 5660|     66|        case Py_tp_doc:
  ------------------
  |  |   64|     66|#define Py_tp_doc 56
  ------------------
  |  Branch (5660:9): [True: 66, False: 512]
  ------------------
 5661|       |            /* Processed above */
 5662|     66|            break;
 5663|     54|        case Py_tp_members:
  ------------------
  |  |   80|     54|#define Py_tp_members 72
  ------------------
  |  Branch (5663:9): [True: 54, False: 524]
  ------------------
 5664|     54|            {
 5665|       |                /* Move the slots to the heap type itself */
 5666|     54|                size_t len = Py_TYPE(type)->tp_itemsize * nmembers;
  ------------------
  |  |  213|     54|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     54|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     54|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5667|     54|                memcpy(_PyHeapType_GET_MEMBERS(res), it.current.sl_ptr, len);
 5668|     54|                type->tp_members = _PyHeapType_GET_MEMBERS(res);
 5669|     54|                PyMemberDef *memb;
 5670|     54|                Py_ssize_t i;
 5671|     54|                for (memb = _PyHeapType_GET_MEMBERS(res), i = nmembers;
 5672|    294|                     i > 0; ++memb, --i)
  ------------------
  |  Branch (5672:22): [True: 240, False: 54]
  ------------------
 5673|    240|                {
 5674|    240|                    if (memb->flags & Py_RELATIVE_OFFSET) {
  ------------------
  |  |   86|    240|#define Py_RELATIVE_OFFSET     (1 << 3)
  ------------------
  |  Branch (5674:25): [True: 0, False: 240]
  ------------------
 5675|      0|                        memb->flags &= ~Py_RELATIVE_OFFSET;
  ------------------
  |  |   86|      0|#define Py_RELATIVE_OFFSET     (1 << 3)
  ------------------
 5676|      0|                        memb->offset += type_data_offset;
 5677|      0|                    }
 5678|    240|                }
 5679|     54|            }
 5680|     54|            break;
 5681|    458|        default:
  ------------------
  |  Branch (5681:9): [True: 458, False: 120]
  ------------------
 5682|    458|            _PySlot_heaptype_apply_field_slot(res, it.current);
 5683|    458|            break;
 5684|    578|        }
 5685|    578|    }
 5686|     78|    if (type->tp_dealloc == NULL) {
  ------------------
  |  Branch (5686:9): [True: 6, False: 72]
  ------------------
 5687|       |        /* It's a heap type, so needs the heap types' dealloc.
 5688|       |           subtype_dealloc will call the base type's tp_dealloc, if
 5689|       |           necessary. */
 5690|      6|        type->tp_dealloc = subtype_dealloc;
 5691|      6|    }
 5692|       |
 5693|       |    /* Set up offsets */
 5694|       |
 5695|     78|    type->tp_vectorcall_offset = vectorcalloffset;
 5696|     78|    type->tp_weaklistoffset = weaklistoffset;
 5697|     78|    type->tp_dictoffset = dictoffset;
 5698|       |
 5699|       |#ifdef Py_GIL_DISABLED
 5700|       |    // Assign a unique id to enable per-thread refcounting
 5701|       |    res->unique_id = _PyObject_AssignUniqueId((PyObject *)res);
 5702|       |#endif
 5703|       |
 5704|       |    /* Ready the type (which includes inheritance).
 5705|       |     *
 5706|       |     * After this call we should generally only touch up what's
 5707|       |     * accessible to Python code, like __dict__.
 5708|       |     */
 5709|       |
 5710|     78|    if (PyType_Ready(type) < 0) {
  ------------------
  |  Branch (5710:9): [True: 0, False: 78]
  ------------------
 5711|      0|        goto finally;
 5712|      0|    }
 5713|       |
 5714|     78|    if (!check_basicsize_includes_size_and_offsets(type)) {
  ------------------
  |  Branch (5714:9): [True: 0, False: 78]
  ------------------
 5715|      0|        goto finally;
 5716|      0|    }
 5717|       |
 5718|     78|    PyObject *dict = lookup_tp_dict(type);
 5719|     78|    if (type->tp_doc) {
  ------------------
  |  Branch (5719:9): [True: 66, False: 12]
  ------------------
 5720|     66|        PyObject *__doc__ = PyUnicode_FromString(_PyType_DocWithoutSignature(type->tp_name, type->tp_doc));
 5721|     66|        if (!__doc__) {
  ------------------
  |  Branch (5721:13): [True: 0, False: 66]
  ------------------
 5722|      0|            goto finally;
 5723|      0|        }
 5724|     66|        r = PyDict_SetItem(dict, &_Py_ID(__doc__), __doc__);
  ------------------
  |  |  917|     66|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     66|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     66|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5725|     66|        Py_DECREF(__doc__);
  ------------------
  |  |  430|     66|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5726|     66|        if (r < 0) {
  ------------------
  |  Branch (5726:13): [True: 0, False: 66]
  ------------------
 5727|      0|            goto finally;
 5728|      0|        }
 5729|     66|    }
 5730|       |
 5731|     78|    if (weaklistoffset) {
  ------------------
  |  Branch (5731:9): [True: 22, False: 56]
  ------------------
 5732|     22|        if (PyDict_DelItem(dict, &_Py_ID(__weaklistoffset__)) < 0) {
  ------------------
  |  |  917|     22|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     22|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     22|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5732:13): [True: 0, False: 22]
  ------------------
 5733|      0|            goto finally;
 5734|      0|        }
 5735|     22|    }
 5736|     78|    if (dictoffset) {
  ------------------
  |  Branch (5736:9): [True: 18, False: 60]
  ------------------
 5737|     18|        if (PyDict_DelItem(dict, &_Py_ID(__dictoffset__)) < 0) {
  ------------------
  |  |  917|     18|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     18|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     18|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5737:13): [True: 0, False: 18]
  ------------------
 5738|      0|            goto finally;
 5739|      0|        }
 5740|     18|    }
 5741|       |
 5742|       |    /* Set type.__module__ */
 5743|     78|    r = PyDict_Contains(dict, &_Py_ID(__module__));
  ------------------
  |  |  917|     78|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     78|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     78|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5744|     78|    if (r < 0) {
  ------------------
  |  Branch (5744:9): [True: 0, False: 78]
  ------------------
 5745|      0|        goto finally;
 5746|      0|    }
 5747|     78|    if (r == 0) {
  ------------------
  |  Branch (5747:9): [True: 78, False: 0]
  ------------------
 5748|     78|        s = strrchr(it.name, '.');
 5749|     78|        if (s != NULL) {
  ------------------
  |  Branch (5749:13): [True: 78, False: 0]
  ------------------
 5750|     78|            PyObject *modname = PyUnicode_FromStringAndSize(
 5751|     78|                    it.name, (Py_ssize_t)(s - it.name));
 5752|     78|            if (modname == NULL) {
  ------------------
  |  Branch (5752:17): [True: 0, False: 78]
  ------------------
 5753|      0|                goto finally;
 5754|      0|            }
 5755|     78|            r = PyDict_SetItem(dict, &_Py_ID(__module__), modname);
  ------------------
  |  |  917|     78|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     78|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     78|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5756|     78|            Py_DECREF(modname);
  ------------------
  |  |  430|     78|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5757|     78|            if (r != 0) {
  ------------------
  |  Branch (5757:17): [True: 0, False: 78]
  ------------------
 5758|      0|                goto finally;
 5759|      0|            }
 5760|     78|        }
 5761|      0|        else {
 5762|      0|            if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1,
  ------------------
  |  Branch (5762:17): [True: 0, False: 0]
  ------------------
 5763|      0|                    "builtin type %.200s has no __module__ attribute",
 5764|      0|                    it.name))
 5765|      0|                goto finally;
 5766|      0|        }
 5767|     78|    }
 5768|       |
 5769|     78|    assert(_PyType_CheckConsistency(type));
  ------------------
  |  Branch (5769:5): [True: 78, False: 0]
  ------------------
 5770|       |#if defined(Py_GIL_DISABLED) && defined(Py_DEBUG) && SIZEOF_VOID_P > 4
 5771|       |    // After this point, other threads can potentally use this type.
 5772|       |    ((PyObject*)type)->ob_flags |= _Py_TYPE_REVEALED_FLAG;
 5773|       |#endif
 5774|       |
 5775|     78| finally:
 5776|     78|    if (PyErr_Occurred()) {
  ------------------
  |  Branch (5776:9): [True: 0, False: 78]
  ------------------
 5777|      0|        Py_CLEAR(res);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 5778|      0|    }
 5779|     78|    Py_XDECREF(bases);
  ------------------
  |  |  524|     78|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5780|     78|    PyMem_Free(tp_doc);
 5781|     78|    Py_XDECREF(ht_name);
  ------------------
  |  |  524|     78|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5782|     78|    PyMem_Free(_ht_tpname);
 5783|     78|    return (PyObject*)res;
 5784|     78|}
typeobject.c:find_best_base:
 3703|    186|{
 3704|    186|    Py_ssize_t i, n;
 3705|    186|    PyTypeObject *base, *winner, *candidate;
 3706|       |
 3707|    186|    assert(PyTuple_Check(bases));
  ------------------
  |  Branch (3707:5): [True: 186, False: 0]
  ------------------
 3708|    186|    n = PyTuple_GET_SIZE(bases);
  ------------------
  |  |   27|    186|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    186|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    186|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3709|    186|    assert(n > 0);
  ------------------
  |  Branch (3709:5): [True: 186, False: 0]
  ------------------
 3710|    186|    base = NULL;
 3711|    186|    winner = NULL;
 3712|    396|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (3712:17): [True: 210, False: 186]
  ------------------
 3713|    210|        PyObject *base_proto = PyTuple_GET_ITEM(bases, i);
  ------------------
  |  |   29|    210|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    210|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3713:32): [True: 210, False: 0]
  ------------------
 3714|    210|        if (!PyType_Check(base_proto)) {
  ------------------
  |  |  766|    210|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    210|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    210|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3714:13): [True: 0, False: 210]
  ------------------
 3715|      0|            PyErr_SetString(
 3716|      0|                PyExc_TypeError,
 3717|      0|                "bases must be types");
 3718|      0|            return NULL;
 3719|      0|        }
 3720|    210|        PyTypeObject *base_i = (PyTypeObject *)base_proto;
 3721|       |
 3722|    210|        if (!_PyType_IsReady(base_i)) {
  ------------------
  |  Branch (3722:13): [True: 0, False: 210]
  ------------------
 3723|      0|            if (PyType_Ready(base_i) < 0)
  ------------------
  |  Branch (3723:17): [True: 0, False: 0]
  ------------------
 3724|      0|                return NULL;
 3725|      0|        }
 3726|    210|        if (!_PyType_HasFeature(base_i, Py_TPFLAGS_BASETYPE)) {
  ------------------
  |  |  506|    210|#define Py_TPFLAGS_BASETYPE (1UL << 10)
  ------------------
  |  Branch (3726:13): [True: 0, False: 210]
  ------------------
 3727|      0|            PyErr_Format(PyExc_TypeError,
 3728|      0|                         "type '%.100s' is not an acceptable base type",
 3729|      0|                         base_i->tp_name);
 3730|      0|            return NULL;
 3731|      0|        }
 3732|    210|        candidate = solid_base(base_i);
 3733|    210|        if (winner == NULL) {
  ------------------
  |  Branch (3733:13): [True: 186, False: 24]
  ------------------
 3734|    186|            winner = candidate;
 3735|    186|            base = base_i;
 3736|    186|        }
 3737|     24|        else if (PyType_IsSubtype(winner, candidate))
  ------------------
  |  Branch (3737:18): [True: 24, False: 0]
  ------------------
 3738|     24|            ;
 3739|      0|        else if (PyType_IsSubtype(candidate, winner)) {
  ------------------
  |  Branch (3739:18): [True: 0, False: 0]
  ------------------
 3740|      0|            winner = candidate;
 3741|      0|            base = base_i;
 3742|      0|        }
 3743|      0|        else {
 3744|      0|            PyErr_SetString(
 3745|      0|                PyExc_TypeError,
 3746|      0|                "multiple bases have "
 3747|      0|                "instance lay-out conflict");
 3748|      0|            return NULL;
 3749|      0|        }
 3750|    210|    }
 3751|    186|    assert (base != NULL);
  ------------------
  |  Branch (3751:5): [True: 186, False: 0]
  ------------------
 3752|       |
 3753|    186|    return base;
 3754|    186|}
typeobject.c:solid_base:
 3767|  1.28k|{
 3768|  1.28k|    PyTypeObject *base;
 3769|       |
 3770|  1.28k|    if (type->tp_base) {
  ------------------
  |  Branch (3770:9): [True: 758, False: 526]
  ------------------
 3771|    758|        base = solid_base(type->tp_base);
 3772|    758|    }
 3773|    526|    else {
 3774|    526|        base = &PyBaseObject_Type;
 3775|    526|    }
 3776|  1.28k|    if (shape_differs(type, base)) {
  ------------------
  |  Branch (3776:9): [True: 110, False: 1.17k]
  ------------------
 3777|    110|        return type;
 3778|    110|    }
 3779|  1.17k|    else {
 3780|  1.17k|        return base;
 3781|  1.17k|    }
 3782|  1.28k|}
typeobject.c:shape_differs:
 3758|  1.28k|{
 3759|  1.28k|    return (
 3760|  1.28k|        t1->tp_basicsize != t2->tp_basicsize ||
  ------------------
  |  Branch (3760:9): [True: 110, False: 1.17k]
  ------------------
 3761|  1.17k|        t1->tp_itemsize != t2->tp_itemsize
  ------------------
  |  Branch (3761:9): [True: 0, False: 1.17k]
  ------------------
 3762|  1.28k|    );
 3763|  1.28k|}
typeobject.c:special_offset_from_member:
 5206|    234|{
 5207|    234|    if (memb == NULL) {
  ------------------
  |  Branch (5207:9): [True: 194, False: 40]
  ------------------
 5208|    194|        *dest = 0;
 5209|    194|        return 0;
 5210|    194|    }
 5211|     40|    if (memb->type != Py_T_PYSSIZET) {
  ------------------
  |  |   79|     40|#define Py_T_PYSSIZET  19      /* Py_ssize_t */
  ------------------
  |  Branch (5211:9): [True: 0, False: 40]
  ------------------
 5212|      0|        PyErr_Format(
 5213|      0|            PyExc_SystemError,
 5214|      0|            "type of %s must be Py_T_PYSSIZET",
 5215|      0|            memb->name);
 5216|      0|        return -1;
 5217|      0|    }
 5218|     40|    if (memb->flags == Py_READONLY) {
  ------------------
  |  |   83|     40|#define Py_READONLY            (1 << 0)
  ------------------
  |  Branch (5218:9): [True: 40, False: 0]
  ------------------
 5219|     40|        *dest = memb->offset;
 5220|     40|        return 0;
 5221|     40|    }
 5222|      0|    else if (memb->flags == (Py_READONLY | Py_RELATIVE_OFFSET)) {
  ------------------
  |  |   83|      0|#define Py_READONLY            (1 << 0)
  ------------------
                  else if (memb->flags == (Py_READONLY | Py_RELATIVE_OFFSET)) {
  ------------------
  |  |   86|      0|#define Py_RELATIVE_OFFSET     (1 << 3)
  ------------------
  |  Branch (5222:14): [True: 0, False: 0]
  ------------------
 5223|      0|        *dest = memb->offset + type_data_offset;
 5224|      0|        return 0;
 5225|      0|    }
 5226|      0|    PyErr_Format(
 5227|      0|        PyExc_SystemError,
 5228|      0|        "flags for %s must be Py_READONLY or (Py_READONLY | Py_RELATIVE_OFFSET)",
 5229|      0|        memb->name);
 5230|      0|    return -1;
 5231|     40|}
typeobject.c:type_set_flags:
  456|  5.30k|{
  457|  5.30k|    ASSERT_WORLD_STOPPED_OR_NEW_TYPE(tp);
  458|  5.30k|    tp->tp_flags = flags;
  459|  5.30k|}
typeobject.c:set_tp_bases:
  600|    666|{
  601|    666|    assert(PyTuple_Check(bases));
  ------------------
  |  Branch (601:5): [True: 666, False: 0]
  ------------------
  602|    666|    ASSERT_NEW_TYPE_OR_LOCKED(self);
  603|    666|    if (self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (603:9): [True: 414, False: 252]
  ------------------
  604|       |        // XXX tp_bases can probably be statically allocated for each
  605|       |        // static builtin type.
  606|    414|        assert(PyTuple_CheckExact(bases));
  ------------------
  |  Branch (606:9): [True: 414, False: 0]
  ------------------
  607|    414|        assert(initial);
  ------------------
  |  Branch (607:9): [True: 414, False: 0]
  ------------------
  608|    414|        assert(self->tp_bases == NULL);
  ------------------
  |  Branch (608:9): [True: 414, False: 0]
  ------------------
  609|    414|        if (PyTuple_GET_SIZE(bases) == 0) {
  ------------------
  |  |   27|    414|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    414|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    414|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (609:13): [True: 2, False: 412]
  ------------------
  610|      2|            assert(self->tp_base == NULL);
  ------------------
  |  Branch (610:13): [True: 2, False: 0]
  ------------------
  611|      2|        }
  612|    412|        else {
  613|    412|            assert(PyTuple_GET_SIZE(bases) == 1);
  ------------------
  |  Branch (613:13): [True: 412, False: 0]
  ------------------
  614|    412|            assert(PyTuple_GET_ITEM(bases, 0) == (PyObject *)self->tp_base);
  ------------------
  |  Branch (614:13): [True: 412, False: 0]
  |  Branch (614:13): [True: 412, False: 0]
  ------------------
  615|    412|            assert(self->tp_base->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN);
  ------------------
  |  Branch (615:13): [True: 412, False: 0]
  ------------------
  616|    412|            assert(_Py_IsImmortal(self->tp_base));
  ------------------
  |  Branch (616:13): [True: 412, False: 0]
  ------------------
  617|    412|        }
  618|    414|        _Py_SetImmortal(bases);
  619|    414|    }
  620|    666|    self->tp_bases = bases;
  621|    666|}
typeobject.c:_PyHeapType_GET_MEMBERS:
 2575|    404|{
 2576|    404|    return PyObject_GetItemData((PyObject *)type);
 2577|    404|}
typeobject.c:subtype_dealloc:
 2715|    382|{
 2716|    382|    PyTypeObject *type, *base;
 2717|    382|    destructor basedealloc;
 2718|    382|    int has_finalizer;
 2719|       |
 2720|       |    /* Extract the type; we expect it to be a heap type */
 2721|    382|    type = Py_TYPE(self);
  ------------------
  |  |  213|    382|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    382|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    382|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2722|    382|    _PyObject_ASSERT((PyObject *)type, type->tp_flags & Py_TPFLAGS_HEAPTYPE);
  ------------------
  |  |  423|    382|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|    382|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|    382|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 382, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|    382|      ? (void)(0) \
  |  |  |  |  |  |  416|    382|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2723|       |
 2724|       |    /* Test whether the type has GC exactly once */
 2725|       |
 2726|    382|    if (!_PyType_IS_GC(type)) {
  ------------------
  |  |  828|    382|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|    382|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  ------------------
  |  Branch (2726:9): [True: 0, False: 382]
  ------------------
 2727|       |        /* A non GC dynamic type allows certain simplifications:
 2728|       |           there's no need to call clear_slots(), or DECREF the dict,
 2729|       |           or clear weakrefs. */
 2730|       |
 2731|       |        /* Maybe call finalizer; exit early if resurrected */
 2732|      0|        if (type->tp_finalize) {
  ------------------
  |  Branch (2732:13): [True: 0, False: 0]
  ------------------
 2733|      0|            if (PyObject_CallFinalizerFromDealloc(self) < 0)
  ------------------
  |  Branch (2733:17): [True: 0, False: 0]
  ------------------
 2734|      0|                return;
 2735|      0|        }
 2736|      0|        if (type->tp_del) {
  ------------------
  |  Branch (2736:13): [True: 0, False: 0]
  ------------------
 2737|      0|            type->tp_del(self);
 2738|      0|            if (Py_REFCNT(self) > 0) {
  ------------------
  |  |  119|      0|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2738:17): [True: 0, False: 0]
  ------------------
 2739|      0|                return;
 2740|      0|            }
 2741|      0|        }
 2742|       |
 2743|       |        /* Find the nearest base with a different tp_dealloc */
 2744|      0|        base = type;
 2745|      0|        while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
  ------------------
  |  Branch (2745:16): [True: 0, False: 0]
  ------------------
 2746|      0|            base = base->tp_base;
 2747|      0|            assert(base);
  ------------------
  |  Branch (2747:13): [True: 0, False: 0]
  ------------------
 2748|      0|        }
 2749|       |
 2750|       |        /* Extract the type again; tp_del may have changed it */
 2751|      0|        type = Py_TYPE(self);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2752|       |
 2753|       |        // Don't read type memory after calling basedealloc() since basedealloc()
 2754|       |        // can deallocate the type and free its memory.
 2755|      0|        int type_needs_decref = (type->tp_flags & Py_TPFLAGS_HEAPTYPE
  ------------------
  |  |  503|      0|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2755:34): [True: 0, False: 0]
  ------------------
 2756|      0|                                 && !(base->tp_flags & Py_TPFLAGS_HEAPTYPE));
  ------------------
  |  |  503|      0|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2756:37): [True: 0, False: 0]
  ------------------
 2757|       |
 2758|      0|        assert((type->tp_flags & Py_TPFLAGS_MANAGED_DICT) == 0);
  ------------------
  |  Branch (2758:9): [True: 0, False: 0]
  ------------------
 2759|       |
 2760|       |        /* Call the base tp_dealloc() */
 2761|      0|        assert(basedealloc);
  ------------------
  |  Branch (2761:9): [True: 0, False: 0]
  ------------------
 2762|      0|        basedealloc(self);
 2763|       |
 2764|       |        /* Can't reference self beyond this point. It's possible tp_del switched
 2765|       |           our type from a HEAPTYPE to a non-HEAPTYPE, so be careful about
 2766|       |           reference counting. Only decref if the base type is not already a heap
 2767|       |           allocated type. Otherwise, basedealloc should have decref'd it already */
 2768|      0|        if (type_needs_decref) {
  ------------------
  |  Branch (2768:13): [True: 0, False: 0]
  ------------------
 2769|      0|            _Py_DECREF_TYPE(type);
  ------------------
  |  |  316|      0|#  define _Py_DECREF_TYPE Py_DECREF
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2770|      0|        }
 2771|       |
 2772|       |        /* Done */
 2773|      0|        return;
 2774|      0|    }
 2775|       |
 2776|       |    /* We get here only if the type has GC */
 2777|       |
 2778|       |    /* UnTrack and re-Track around the trashcan macro, alas */
 2779|       |    /* See explanation at end of function for full disclosure */
 2780|    382|    PyObject_GC_UnTrack(self);
 2781|       |
 2782|       |    /* Find the nearest base with a different tp_dealloc */
 2783|    382|    base = type;
 2784|    772|    while ((/*basedealloc =*/ base->tp_dealloc) == subtype_dealloc) {
  ------------------
  |  Branch (2784:12): [True: 390, False: 382]
  ------------------
 2785|    390|        base = base->tp_base;
 2786|    390|        assert(base);
  ------------------
  |  Branch (2786:9): [True: 390, False: 0]
  ------------------
 2787|    390|    }
 2788|       |
 2789|    382|    has_finalizer = type->tp_finalize || type->tp_del;
  ------------------
  |  Branch (2789:21): [True: 0, False: 382]
  |  Branch (2789:42): [True: 0, False: 382]
  ------------------
 2790|       |
 2791|    382|    if (type->tp_finalize) {
  ------------------
  |  Branch (2791:9): [True: 0, False: 382]
  ------------------
 2792|      0|        _PyObject_GC_TRACK(self);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2793|      0|        if (PyObject_CallFinalizerFromDealloc(self) < 0) {
  ------------------
  |  Branch (2793:13): [True: 0, False: 0]
  ------------------
 2794|       |            /* Resurrected */
 2795|      0|            return;
 2796|      0|        }
 2797|      0|        _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|      0|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2798|      0|    }
 2799|       |    /*
 2800|       |      If we added a weaklist, we clear it. Do this *before* calling tp_del,
 2801|       |      clearing slots, or clearing the instance dict.
 2802|       |
 2803|       |      GC tracking must be off at this point. weakref callbacks (if any, and
 2804|       |      whether directly here or indirectly in something we call) may trigger GC,
 2805|       |      and if self is tracked at that point, it will look like trash to GC and GC
 2806|       |      will try to delete self again.
 2807|       |    */
 2808|    382|    if (type->tp_weaklistoffset && !base->tp_weaklistoffset) {
  ------------------
  |  Branch (2808:9): [True: 320, False: 62]
  |  Branch (2808:36): [True: 320, False: 0]
  ------------------
 2809|    320|        PyObject_ClearWeakRefs(self);
 2810|    320|    }
 2811|       |
 2812|    382|    if (type->tp_del) {
  ------------------
  |  Branch (2812:9): [True: 0, False: 382]
  ------------------
 2813|      0|        _PyObject_GC_TRACK(self);
  ------------------
  |  |  513|      0|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2814|      0|        type->tp_del(self);
 2815|      0|        if (Py_REFCNT(self) > 0) {
  ------------------
  |  |  119|      0|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2815:13): [True: 0, False: 0]
  ------------------
 2816|       |            /* Resurrected */
 2817|      0|            return;
 2818|      0|        }
 2819|      0|        _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|      0|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2820|      0|    }
 2821|    382|    if (has_finalizer) {
  ------------------
  |  Branch (2821:9): [True: 0, False: 382]
  ------------------
 2822|       |        /* New weakrefs could be created during the finalizer call.
 2823|       |           If this occurs, clear them out without calling their
 2824|       |           finalizers since they might rely on part of the object
 2825|       |           being finalized that has already been destroyed. */
 2826|      0|        if (type->tp_weaklistoffset && !base->tp_weaklistoffset) {
  ------------------
  |  Branch (2826:13): [True: 0, False: 0]
  |  Branch (2826:40): [True: 0, False: 0]
  ------------------
 2827|      0|            _PyWeakref_ClearWeakRefsNoCallbacks(self);
 2828|      0|        }
 2829|      0|    }
 2830|       |
 2831|       |    /*  Clear slots up to the nearest base with a different tp_dealloc */
 2832|    382|    base = type;
 2833|    772|    while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
  ------------------
  |  Branch (2833:12): [True: 390, False: 382]
  ------------------
 2834|    390|        if (Py_SIZE(base))
  ------------------
  |  |  214|    390|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    390|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    390|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (214:23): [True: 62, False: 328]
  |  |  ------------------
  ------------------
 2835|     62|            clear_slots(base, self);
 2836|    390|        base = base->tp_base;
 2837|    390|        assert(base);
  ------------------
  |  Branch (2837:9): [True: 390, False: 0]
  ------------------
 2838|    390|    }
 2839|       |
 2840|       |    /* If we added a dict, DECREF it, or free inline values. */
 2841|    382|    if (type->tp_flags & Py_TPFLAGS_MANAGED_DICT) {
  ------------------
  |  |  482|    382|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (2841:9): [True: 252, False: 130]
  ------------------
 2842|    252|        PyObject_ClearManagedDict(self);
 2843|    252|    }
 2844|    130|    else if (type->tp_dictoffset && !base->tp_dictoffset) {
  ------------------
  |  Branch (2844:14): [True: 8, False: 122]
  |  Branch (2844:37): [True: 0, False: 8]
  ------------------
 2845|      0|        PyObject **dictptr = _PyObject_ComputedDictPointer(self);
 2846|      0|        if (dictptr != NULL) {
  ------------------
  |  Branch (2846:13): [True: 0, False: 0]
  ------------------
 2847|      0|            PyObject *dict = *dictptr;
 2848|      0|            if (dict != NULL) {
  ------------------
  |  Branch (2848:17): [True: 0, False: 0]
  ------------------
 2849|      0|                Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2850|      0|                *dictptr = NULL;
 2851|      0|            }
 2852|      0|        }
 2853|      0|    }
 2854|       |
 2855|       |    /* Extract the type again; tp_del may have changed it */
 2856|    382|    type = Py_TYPE(self);
  ------------------
  |  |  213|    382|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    382|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    382|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2857|       |
 2858|       |    /* Call the base tp_dealloc(); first retrack self if
 2859|       |     * basedealloc knows about gc.
 2860|       |     */
 2861|    382|    if (_PyType_IS_GC(base)) {
  ------------------
  |  |  828|    382|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|    382|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  |  |  |  Branch (828:26): [True: 128, False: 254]
  |  |  ------------------
  ------------------
 2862|    128|        _PyObject_GC_TRACK(self);
  ------------------
  |  |  513|    128|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2863|    128|    }
 2864|       |
 2865|       |    // Don't read type memory after calling basedealloc() since basedealloc()
 2866|       |    // can deallocate the type and free its memory.
 2867|    382|    int type_needs_decref = (type->tp_flags & Py_TPFLAGS_HEAPTYPE
  ------------------
  |  |  503|    764|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2867:30): [True: 382, False: 0]
  ------------------
 2868|    382|                             && !(base->tp_flags & Py_TPFLAGS_HEAPTYPE));
  ------------------
  |  |  503|    382|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2868:33): [True: 382, False: 0]
  ------------------
 2869|       |
 2870|    382|    assert(basedealloc);
  ------------------
  |  Branch (2870:5): [True: 382, False: 0]
  ------------------
 2871|    382|    basedealloc(self);
 2872|       |
 2873|       |    /* Can't reference self beyond this point. It's possible tp_del switched
 2874|       |       our type from a HEAPTYPE to a non-HEAPTYPE, so be careful about
 2875|       |       reference counting. Only decref if the base type is not already a heap
 2876|       |       allocated type. Otherwise, basedealloc should have decref'd it already */
 2877|    382|    if (type_needs_decref) {
  ------------------
  |  Branch (2877:9): [True: 382, False: 0]
  ------------------
 2878|    382|        _Py_DECREF_TYPE(type);
  ------------------
  |  |  316|    382|#  define _Py_DECREF_TYPE Py_DECREF
  |  |  ------------------
  |  |  |  |  430|    382|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    382|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    382|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2879|    382|    }
 2880|    382|}
typeobject.c:clear_slots:
 2656|     62|{
 2657|     62|    Py_ssize_t i, n;
 2658|     62|    PyMemberDef *mp;
 2659|       |
 2660|     62|    n = Py_SIZE(type);
  ------------------
  |  |  214|     62|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2661|     62|    mp = _PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type);
 2662|    128|    for (i = 0; i < n; i++, mp++) {
  ------------------
  |  Branch (2662:17): [True: 66, False: 62]
  ------------------
 2663|     66|        if (mp->type == Py_T_OBJECT_EX && !(mp->flags & Py_READONLY)) {
  ------------------
  |  |   75|    132|#define Py_T_OBJECT_EX 16
  ------------------
                      if (mp->type == Py_T_OBJECT_EX && !(mp->flags & Py_READONLY)) {
  ------------------
  |  |   83|     66|#define Py_READONLY            (1 << 0)
  ------------------
  |  Branch (2663:13): [True: 66, False: 0]
  |  Branch (2663:43): [True: 66, False: 0]
  ------------------
 2664|     66|            void *addr = _PyMember_GetOffset(self, mp);
 2665|     66|            PyObject *obj = *(PyObject **)addr;
 2666|     66|            if (obj != NULL) {
  ------------------
  |  Branch (2666:17): [True: 66, False: 0]
  ------------------
 2667|     66|                *(PyObject **)addr = NULL;
 2668|     66|                Py_DECREF(obj);
  ------------------
  |  |  430|     66|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2669|     66|            }
 2670|     66|        }
 2671|     66|    }
 2672|     62|}
typeobject.c:check_basicsize_includes_size_and_offsets:
 5134|     78|{
 5135|     78|    if (type->tp_alloc != PyType_GenericAlloc) {
  ------------------
  |  Branch (5135:9): [True: 0, False: 78]
  ------------------
 5136|       |        // Custom allocators can ignore tp_basicsize
 5137|      0|        return 1;
 5138|      0|    }
 5139|     78|    Py_ssize_t max = (Py_ssize_t)type->tp_basicsize;
 5140|       |
 5141|     78|    if (type->tp_base && type->tp_base->tp_basicsize > type->tp_basicsize) {
  ------------------
  |  Branch (5141:9): [True: 78, False: 0]
  |  Branch (5141:26): [True: 0, False: 78]
  ------------------
 5142|      0|        PyErr_Format(PyExc_TypeError,
 5143|      0|                     "tp_basicsize for type '%s' (%zd) is too small for base '%s' (%zd)",
 5144|      0|                     type->tp_name, type->tp_basicsize,
 5145|      0|                     type->tp_base->tp_name, type->tp_base->tp_basicsize);
 5146|      0|        return 0;
 5147|      0|    }
 5148|     78|    if (type->tp_weaklistoffset + (Py_ssize_t)sizeof(PyObject*) > max) {
  ------------------
  |  Branch (5148:9): [True: 0, False: 78]
  ------------------
 5149|      0|        PyErr_Format(PyExc_TypeError,
 5150|      0|                     "weaklist offset %zd is out of bounds for type '%s' (tp_basicsize = %zd)",
 5151|      0|                     type->tp_weaklistoffset,
 5152|      0|                     type->tp_name, type->tp_basicsize);
 5153|      0|        return 0;
 5154|      0|    }
 5155|     78|    if (type->tp_dictoffset + (Py_ssize_t)sizeof(PyObject*) > max) {
  ------------------
  |  Branch (5155:9): [True: 0, False: 78]
  ------------------
 5156|      0|        PyErr_Format(PyExc_TypeError,
 5157|      0|                     "dict offset %zd is out of bounds for type '%s' (tp_basicsize = %zd)",
 5158|      0|                     type->tp_dictoffset,
 5159|      0|                     type->tp_name, type->tp_basicsize);
 5160|      0|        return 0;
 5161|      0|    }
 5162|     78|    if (type->tp_vectorcall_offset + (Py_ssize_t)sizeof(vectorcallfunc*) > max) {
  ------------------
  |  Branch (5162:9): [True: 0, False: 78]
  ------------------
 5163|      0|        PyErr_Format(PyExc_TypeError,
 5164|      0|                     "vectorcall offset %zd is out of bounds for type '%s' (tp_basicsize = %zd)",
 5165|      0|                     type->tp_vectorcall_offset,
 5166|      0|                     type->tp_name, type->tp_basicsize);
 5167|      0|        return 0;
 5168|      0|    }
 5169|     78|    return 1;
 5170|     78|}
typeobject.c:type_name:
 1522|     14|{
 1523|     14|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     14|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1524|     14|    if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
  ------------------
  |  |  503|     14|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (1524:9): [True: 2, False: 12]
  ------------------
 1525|      2|        PyHeapTypeObject* et = (PyHeapTypeObject*)type;
 1526|      2|        return Py_NewRef(et->ht_name);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1527|      2|    }
 1528|     12|    else {
 1529|     12|        return PyUnicode_FromString(_PyType_Name(type));
 1530|     12|    }
 1531|     14|}
typeobject.c:lookup_tp_mro:
  646|  30.5k|{
  647|  30.5k|    return self->tp_mro;
  648|  30.5k|}
typeobject.c:getitemdata:
 6101|    404|{
 6102|    404|    if (!_PyType_HasFeature(Py_TYPE(obj), Py_TPFLAGS_ITEMS_AT_END)) {
  ------------------
  |  |  213|    404|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    404|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    404|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (!_PyType_HasFeature(Py_TYPE(obj), Py_TPFLAGS_ITEMS_AT_END)) {
  ------------------
  |  |  548|    404|#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
  ------------------
  |  Branch (6102:9): [True: 0, False: 404]
  ------------------
 6103|      0|        if (raise) {
  ------------------
  |  Branch (6103:13): [True: 0, False: 0]
  ------------------
 6104|      0|            PyErr_Format(PyExc_TypeError,
 6105|      0|                         "type '%T' does not have Py_TPFLAGS_ITEMS_AT_END",
 6106|      0|                         obj);
 6107|      0|        }
 6108|      0|        return NULL;
 6109|      0|    }
 6110|    404|    return (char *)obj + Py_TYPE(obj)->tp_basicsize;
  ------------------
  |  |  213|    404|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    404|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    404|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6111|    404|}
typeobject.c:get_type_cache:
  974|  13.2k|{
  975|  13.2k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  976|  13.2k|    return &interp->types.type_cache;
  977|  13.2k|}
typeobject.c:should_assign_version_tag:
 6284|  2.83k|{
 6285|  2.83k|    return (version_tag == 0
  ------------------
  |  Branch (6285:13): [True: 128, False: 2.70k]
  ------------------
 6286|    128|        && FT_ATOMIC_LOAD_UINT16_RELAXED(type->tp_versions_used) < MAX_VERSIONS_PER_CLASS
  ------------------
  |  |  158|    128|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  ------------------
                      && FT_ATOMIC_LOAD_UINT16_RELAXED(type->tp_versions_used) < MAX_VERSIONS_PER_CLASS
  ------------------
  |  | 1389|  2.96k|#define MAX_VERSIONS_PER_CLASS 1000
  ------------------
  |  Branch (6286:12): [True: 128, False: 0]
  ------------------
 6287|    128|        && MCACHE_CACHEABLE_NAME(name));
  ------------------
  |  |   57|    128|        (PyUnicode_CheckExact(name) &&                           \
  |  |  ------------------
  |  |  |  |  104|    128|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|    256|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 128, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   58|    128|         (PyUnicode_GET_LENGTH(name) <= MCACHE_MAX_ATTR_SIZE))
  |  |  ------------------
  |  |  |  |  299|    128|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                        (PyUnicode_GET_LENGTH(name) <= MCACHE_MAX_ATTR_SIZE))
  |  |  ------------------
  |  |  |  |   48|    128|#define MCACHE_MAX_ATTR_SIZE    100
  |  |  ------------------
  |  |  |  Branch (58:10): [True: 128, False: 0]
  |  |  ------------------
  ------------------
 6288|  2.83k|}
typeobject.c:find_name_in_mro:
 6131|  19.1k|{
 6132|  19.1k|    Py_hash_t hash = _PyObject_HashFast(name);
 6133|  19.1k|    if (hash == -1) {
  ------------------
  |  Branch (6133:9): [True: 0, False: 19.1k]
  ------------------
 6134|      0|        PyErr_Clear();
 6135|      0|        return -1;
 6136|      0|    }
 6137|       |
 6138|       |    /* Look in tp_dict of types in MRO */
 6139|  19.1k|    PyObject *mro = lookup_tp_mro(type);
 6140|  19.1k|    if (mro == NULL) {
  ------------------
  |  Branch (6140:9): [True: 0, False: 19.1k]
  ------------------
 6141|      0|        if (!is_readying(type)) {
  ------------------
  |  Branch (6141:13): [True: 0, False: 0]
  ------------------
 6142|      0|            if (PyType_Ready(type) < 0) {
  ------------------
  |  Branch (6142:17): [True: 0, False: 0]
  ------------------
 6143|      0|                PyErr_Clear();
 6144|      0|                return -1;
 6145|      0|            }
 6146|      0|            mro = lookup_tp_mro(type);
 6147|      0|        }
 6148|      0|        if (mro == NULL) {
  ------------------
  |  Branch (6148:13): [True: 0, False: 0]
  ------------------
 6149|      0|            return -1;
 6150|      0|        }
 6151|      0|    }
 6152|       |
 6153|  19.1k|    int res = 0;
 6154|  19.1k|    PyThreadState *tstate = _PyThreadState_GET();
 6155|       |    /* Keep a strong reference to mro because type->tp_mro can be replaced
 6156|       |       during dict lookup, e.g. when comparing to non-string keys. */
 6157|  19.1k|    _PyCStackRef mro_ref;
 6158|  19.1k|    _PyThreadState_PushCStackRef(tstate, &mro_ref);
 6159|  19.1k|    mro_ref.ref = PyStackRef_FromPyObjectNew(mro);
  ------------------
  |  |  599|  19.1k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  19.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  19.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6160|  19.1k|    Py_ssize_t n = PyTuple_GET_SIZE(mro);
  ------------------
  |  |   27|  19.1k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  19.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  19.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6161|  74.7k|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (6161:28): [True: 59.5k, False: 15.1k]
  ------------------
 6162|  59.5k|        PyObject *base = PyTuple_GET_ITEM(mro, i);
  ------------------
  |  |   29|  59.5k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  59.5k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  59.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6162:26): [True: 59.5k, False: 0]
  ------------------
 6163|  59.5k|        PyObject *dict = lookup_tp_dict(_PyType_CAST(base));
  ------------------
  |  |  770|  59.5k|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  59.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (6163:41): [True: 59.5k, False: 0]
  ------------------
 6164|  59.5k|        assert(dict && PyDict_Check(dict));
  ------------------
  |  Branch (6164:9): [True: 59.5k, False: 0]
  |  Branch (6164:9): [True: 59.5k, False: 0]
  ------------------
 6165|  59.5k|        Py_ssize_t ix = _Py_dict_lookup_threadsafe_stackref(
 6166|  59.5k|            (PyDictObject *)dict, name, hash, out);
 6167|  59.5k|        if (ix == DKIX_ERROR) {
  ------------------
  |  |  186|  59.5k|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (6167:13): [True: 0, False: 59.5k]
  ------------------
 6168|      0|            PyErr_Clear();
 6169|      0|            res = -1;
 6170|      0|            goto done;
 6171|      0|        }
 6172|  59.5k|        if (!PyStackRef_IsNull(*out)) {
  ------------------
  |  |  470|  59.5k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|  59.5k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  59.5k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6172:13): [True: 4.04k, False: 55.5k]
  ------------------
 6173|  4.04k|            res = 1;
 6174|  4.04k|            break;
 6175|  4.04k|        }
 6176|  59.5k|    }
 6177|  19.1k|done:
 6178|  19.1k|    _PyThreadState_PopCStackRef(tstate, &mro_ref);
 6179|  19.1k|    return res;
 6180|  19.1k|}
typeobject.c:update_cache:
 6202|  2.83k|{
 6203|  2.83k|    _Py_atomic_store_ptr_relaxed(&entry->value, value); /* borrowed */
 6204|  2.83k|    assert(PyUnstable_Unicode_GET_CACHED_HASH(name) != -1);
  ------------------
  |  Branch (6204:5): [True: 2.83k, False: 0]
  ------------------
 6205|  2.83k|    OBJECT_STAT_INC_COND(type_cache_collisions, entry->name != Py_None && entry->name != name);
  ------------------
  |  |   78|  2.83k|#define OBJECT_STAT_INC_COND(name, cond) ((void)0)
  ------------------
 6206|       |    // We're releasing this under the lock for simplicity sake because it's always a
 6207|       |    // exact unicode object or Py_None so it's safe to do so.
 6208|  2.83k|    PyObject *old_name = entry->name;
 6209|  2.83k|    _Py_atomic_store_ptr_relaxed(&entry->name, Py_NewRef(name));
  ------------------
  |  |  550|  2.83k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  2.83k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.83k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6210|       |    // We must write the version last to avoid _Py_TryXGetStackRef()
 6211|       |    // operating on an invalid (already deallocated) value inside
 6212|       |    // _PyType_LookupRefAndVersion().  If we write the version first then a
 6213|       |    // reader could pass the "entry_version == type_version" check but could
 6214|       |    // be using the old entry value.
 6215|  2.83k|    _Py_atomic_store_uint32_release(&entry->version, version_tag);
 6216|  2.83k|    return old_name;
 6217|  2.83k|}
typeobject.c:set_flags_recursive:
 6469|     26|{
 6470|     26|    if (PyType_HasFeature(self, Py_TPFLAGS_IMMUTABLETYPE) ||
  ------------------
  |  |  500|     26|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (6470:9): [True: 26, False: 0]
  ------------------
 6471|      0|        (self->tp_flags & mask) == flags)
  ------------------
  |  Branch (6471:9): [True: 0, False: 0]
  ------------------
 6472|     26|    {
 6473|     26|        return;
 6474|     26|    }
 6475|       |
 6476|      0|    type_set_flags_with_mask(self, mask, flags);
 6477|       |
 6478|      0|    PyObject *children = _PyType_GetSubclasses(self);
 6479|      0|    if (children == NULL) {
  ------------------
  |  Branch (6479:9): [True: 0, False: 0]
  ------------------
 6480|      0|        return;
 6481|      0|    }
 6482|       |
 6483|      0|    for (Py_ssize_t i = 0; i < PyList_GET_SIZE(children); i++) {
  ------------------
  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6483:28): [True: 0, False: 0]
  ------------------
 6484|      0|        PyObject *child = PyList_GET_ITEM(children, i);
  ------------------
  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6484:27): [True: 0, False: 0]
  ------------------
 6485|      0|        set_flags_recursive((PyTypeObject *)child, mask, flags);
 6486|      0|    }
 6487|      0|    Py_DECREF(children);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6488|      0|}
typeobject.c:type_clear_flags:
  477|    272|{
  478|    272|    type_set_flags(tp, tp->tp_flags & ~flag);
  479|    272|}
typeobject.c:type_call:
 2427|    888|{
 2428|    888|    PyTypeObject *type = PyTypeObject_CAST(self);
  ------------------
  |  |  200|    888|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 2429|    888|    PyObject *obj;
 2430|    888|    PyThreadState *tstate = _PyThreadState_GET();
 2431|       |
 2432|       |#ifdef Py_DEBUG
 2433|       |    /* type_call() must not be called with an exception set,
 2434|       |       because it can clear it (directly or indirectly) and so the
 2435|       |       caller loses its exception */
 2436|       |    assert(!_PyErr_Occurred(tstate));
 2437|       |#endif
 2438|       |
 2439|       |    /* Special case: type(x) should return Py_TYPE(x) */
 2440|       |    /* We only want type itself to accept the one-argument form (#27157) */
 2441|    888|    if (type == &PyType_Type) {
  ------------------
  |  Branch (2441:9): [True: 116, False: 772]
  ------------------
 2442|    116|        assert(args != NULL && PyTuple_Check(args));
  ------------------
  |  Branch (2442:9): [True: 116, False: 0]
  |  Branch (2442:9): [True: 116, False: 0]
  ------------------
 2443|    116|        assert(kwds == NULL || PyDict_Check(kwds));
  ------------------
  |  Branch (2443:9): [True: 116, False: 0]
  |  Branch (2443:9): [True: 0, False: 0]
  ------------------
 2444|    116|        Py_ssize_t nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|    116|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2445|       |
 2446|    116|        if (nargs == 1 && (kwds == NULL || !PyDict_GET_SIZE(kwds))) {
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2446:13): [True: 0, False: 116]
  |  Branch (2446:28): [True: 0, False: 0]
  |  Branch (2446:44): [True: 0, False: 0]
  ------------------
 2447|      0|            obj = (PyObject *) Py_TYPE(PyTuple_GET_ITEM(args, 0));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (37:38): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2448|      0|            return Py_NewRef(obj);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2449|      0|        }
 2450|       |
 2451|       |        /* SF bug 475327 -- if that didn't trigger, we need 3
 2452|       |           arguments. But PyArg_ParseTuple in type_new may give
 2453|       |           a msg saying type() needs exactly 3. */
 2454|    116|        if (nargs != 3) {
  ------------------
  |  Branch (2454:13): [True: 0, False: 116]
  ------------------
 2455|      0|            PyErr_SetString(PyExc_TypeError,
 2456|      0|                            "type() takes 1 or 3 arguments");
 2457|      0|            return NULL;
 2458|      0|        }
 2459|    116|    }
 2460|       |
 2461|    888|    if (type->tp_new == NULL) {
  ------------------
  |  Branch (2461:9): [True: 0, False: 888]
  ------------------
 2462|      0|        _PyErr_Format(tstate, PyExc_TypeError,
 2463|      0|                      "cannot create '%s' instances", type->tp_name);
 2464|      0|        return NULL;
 2465|      0|    }
 2466|       |
 2467|    888|    obj = type->tp_new(type, args, kwds);
 2468|    888|    obj = _Py_CheckFunctionResult(tstate, (PyObject*)type, obj, NULL);
 2469|    888|    if (obj == NULL)
  ------------------
  |  Branch (2469:9): [True: 0, False: 888]
  ------------------
 2470|      0|        return NULL;
 2471|       |
 2472|       |    /* If the returned object is not an instance of type,
 2473|       |       it won't be initialized. */
 2474|    888|    if (!PyObject_TypeCheck(obj, type))
  ------------------
  |  |  378|    888|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    888|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    888|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2474:9): [True: 0, False: 888]
  ------------------
 2475|      0|        return obj;
 2476|       |
 2477|    888|    type = Py_TYPE(obj);
  ------------------
  |  |  213|    888|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    888|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    888|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2478|    888|    if (type->tp_init != NULL) {
  ------------------
  |  Branch (2478:9): [True: 888, False: 0]
  ------------------
 2479|    888|        int res = type->tp_init(obj, args, kwds);
 2480|    888|        if (res < 0) {
  ------------------
  |  Branch (2480:13): [True: 8, False: 880]
  ------------------
 2481|      8|            assert(_PyErr_Occurred(tstate));
  ------------------
  |  Branch (2481:13): [True: 8, False: 0]
  ------------------
 2482|      8|            Py_SETREF(obj, NULL);
  ------------------
  |  |  352|      8|    do { \
  |  |  353|      8|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      8|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      8|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      8|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      8|        *_tmp_dst_ptr = (src); \
  |  |  356|      8|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 2483|      8|        }
 2484|    880|        else {
 2485|    880|            assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (2485:13): [True: 880, False: 0]
  ------------------
 2486|    880|        }
 2487|    888|    }
 2488|    888|    return obj;
 2489|    888|}
typeobject.c:type_setattro:
 6720|    120|{
 6721|    120|    PyTypeObject *type = PyTypeObject_CAST(self);
  ------------------
  |  |  200|    120|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 6722|    120|    int res;
 6723|    120|    if (type->tp_flags & Py_TPFLAGS_IMMUTABLETYPE) {
  ------------------
  |  |  500|    120|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (6723:9): [True: 0, False: 120]
  ------------------
 6724|      0|        PyErr_Format(
 6725|      0|            PyExc_TypeError,
 6726|      0|            "cannot set %R attribute of immutable type '%s'",
 6727|      0|            name, type->tp_name);
 6728|      0|        return -1;
 6729|      0|    }
 6730|    120|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|    120|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    120|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (6730:9): [True: 0, False: 120]
  ------------------
 6731|      0|        PyErr_Format(PyExc_TypeError,
 6732|      0|                     "attribute name must be string, not '%.200s'",
 6733|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6734|      0|        return -1;
 6735|      0|    }
 6736|       |
 6737|    120|    if (PyUnicode_CheckExact(name)) {
  ------------------
  |  |  104|    120|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    120|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 120, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6738|    120|        Py_INCREF(name);
  ------------------
  |  |  310|    120|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6739|    120|    }
 6740|      0|    else {
 6741|      0|        name = _PyUnicode_Copy(name);
 6742|      0|        if (name == NULL)
  ------------------
  |  Branch (6742:13): [True: 0, False: 0]
  ------------------
 6743|      0|            return -1;
 6744|      0|    }
 6745|    120|    if (!PyUnicode_CHECK_INTERNED(name)) {
  ------------------
  |  |  214|    120|#define PyUnicode_CHECK_INTERNED(op) PyUnicode_CHECK_INTERNED(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6745:9): [True: 0, False: 120]
  ------------------
 6746|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
 6747|      0|        _PyUnicode_InternMortal(interp, &name);
 6748|      0|        if (!PyUnicode_CHECK_INTERNED(name)) {
  ------------------
  |  |  214|      0|#define PyUnicode_CHECK_INTERNED(op) PyUnicode_CHECK_INTERNED(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (6748:13): [True: 0, False: 0]
  ------------------
 6749|      0|            PyErr_SetString(PyExc_MemoryError,
 6750|      0|                            "Out of memory interning an attribute name");
 6751|      0|            Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6752|      0|            return -1;
 6753|      0|        }
 6754|      0|    }
 6755|       |
 6756|    120|    PyTypeObject *metatype = Py_TYPE(type);
  ------------------
  |  |  213|    120|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6757|    120|    assert(!_PyType_HasFeature(metatype, Py_TPFLAGS_INLINE_VALUES));
  ------------------
  |  Branch (6757:5): [True: 120, False: 0]
  ------------------
 6758|    120|    assert(!_PyType_HasFeature(metatype, Py_TPFLAGS_MANAGED_DICT));
  ------------------
  |  Branch (6758:5): [True: 120, False: 0]
  ------------------
 6759|       |
 6760|       |#ifdef Py_GIL_DISABLED
 6761|       |    // gh-139103: Enable deferred refcounting for functions and descriptors
 6762|       |    // assigned to type objects.  This is important for `dataclass.__init__`,
 6763|       |    // which is generated dynamically, and for descriptor scaling on
 6764|       |    // free-threaded builds.
 6765|       |    if (value != NULL && (PyFunction_Check(value) || Py_TYPE(value)->tp_descr_get != NULL))
 6766|       |    {
 6767|       |        PyUnstable_Object_EnableDeferredRefcount(value);
 6768|       |    }
 6769|       |#endif
 6770|       |
 6771|    120|    PyObject *old_value = NULL;
 6772|    120|    PyObject *descr = _PyType_LookupRef(metatype, name);
 6773|    120|    if (descr != NULL) {
  ------------------
  |  Branch (6773:9): [True: 60, False: 60]
  ------------------
 6774|     60|        descrsetfunc f = Py_TYPE(descr)->tp_descr_set;
  ------------------
  |  |  213|     60|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6775|     60|        if (f != NULL) {
  ------------------
  |  Branch (6775:13): [True: 60, False: 0]
  ------------------
 6776|     60|            res = f(descr, (PyObject *)type, value);
 6777|     60|            goto done;
 6778|     60|        }
 6779|     60|    }
 6780|       |
 6781|     60|    PyObject *dict = type->tp_dict;
 6782|     60|    if (dict == NULL) {
  ------------------
  |  Branch (6782:9): [True: 0, False: 60]
  ------------------
 6783|       |        // This is an unlikely case.  PyType_Ready has not yet been done and
 6784|       |        // we need to initialize tp_dict.  We don't just do PyType_Ready
 6785|       |        // because we could already be readying.
 6786|      0|        BEGIN_TYPE_LOCK();
 6787|      0|        dict = type->tp_dict;
 6788|      0|        if (dict == NULL) {
  ------------------
  |  Branch (6788:13): [True: 0, False: 0]
  ------------------
 6789|      0|            dict = type->tp_dict = PyDict_New();
 6790|      0|        }
 6791|      0|        END_TYPE_LOCK();
 6792|      0|        if (dict == NULL) {
  ------------------
  |  Branch (6792:13): [True: 0, False: 0]
  ------------------
 6793|      0|            res = -1;
 6794|      0|            goto done;
 6795|      0|        }
 6796|      0|    }
 6797|       |
 6798|     60|    BEGIN_TYPE_DICT_LOCK(dict);
 6799|     60|    res = type_update_dict(type, (PyDictObject *)dict, name, value, &old_value);
 6800|     60|    assert(_PyType_CheckConsistency(type));
  ------------------
  |  Branch (6800:5): [True: 60, False: 0]
  ------------------
 6801|     60|    if (res == 0) {
  ------------------
  |  Branch (6801:9): [True: 60, False: 0]
  ------------------
 6802|     60|        if (is_dunder_name(name) && has_slotdef(name)) {
  ------------------
  |  Branch (6802:13): [True: 0, False: 60]
  |  Branch (6802:37): [True: 0, False: 0]
  ------------------
 6803|       |            // The name corresponds to a type slot.
 6804|      0|            res = update_slot_after_setattr(type, name);
 6805|      0|        }
 6806|     60|    }
 6807|     60|    END_TYPE_DICT_LOCK();
 6808|       |
 6809|    120|done:
 6810|    120|    Py_DECREF(name);
  ------------------
  |  |  430|    120|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6811|    120|    Py_XDECREF(descr);
  ------------------
  |  |  524|    120|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6812|    120|    Py_XDECREF(old_value);
  ------------------
  |  |  524|    120|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6813|    120|    return res;
 6814|     60|}
typeobject.c:type_update_dict:
 6665|     60|{
 6666|       |    // We don't want any re-entrancy between when we update the dict
 6667|       |    // and call type_modified_unlocked, including running the destructor
 6668|       |    // of the current value as it can observe the cache in an inconsistent
 6669|       |    // state.  Because we have an exact unicode and our dict has exact
 6670|       |    // unicodes we know that this will all complete without releasing
 6671|       |    // the locks.
 6672|     60|    if (_PyDict_GetItemRef_Unicode_LockHeld(dict, name, old_value) < 0) {
  ------------------
  |  Branch (6672:9): [True: 0, False: 60]
  ------------------
 6673|      0|        return -1;
 6674|      0|    }
 6675|       |
 6676|       |    /* Clear the VALID_VERSION flag of 'type' and all its
 6677|       |        subclasses.  This could possibly be unified with the
 6678|       |        update_subclasses() recursion in update_slot(), but carefully:
 6679|       |        they each have their own conditions on which to stop
 6680|       |        recursing into subclasses. */
 6681|     60|    type_modified_unlocked(type);
 6682|       |
 6683|     60|    if (_PyDict_SetItem_LockHeld(dict, name, value) < 0) {
  ------------------
  |  Branch (6683:9): [True: 0, False: 60]
  ------------------
 6684|      0|        PyErr_Format(PyExc_AttributeError,
 6685|      0|                     "type object '%.50s' has no attribute '%U'",
 6686|      0|                     ((PyTypeObject*)type)->tp_name, name);
 6687|      0|        _PyObject_SetAttributeErrorContext((PyObject *)type, name);
 6688|      0|        return -1;
 6689|      0|    }
 6690|       |
 6691|     60|    return 0;
 6692|     60|}
typeobject.c:is_dunder_name:
 6186|     60|{
 6187|     60|    Py_ssize_t length = PyUnicode_GET_LENGTH(name);
  ------------------
  |  |  299|     60|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6188|     60|    int kind = PyUnicode_KIND(name);
  ------------------
  |  |  258|     60|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    120|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 60, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 6189|       |    /* Special names contain at least "__x__" and are always ASCII. */
 6190|     60|    if (length > 4 && kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (6190:9): [True: 58, False: 2]
  |  Branch (6190:23): [True: 58, False: 0]
  ------------------
 6191|     58|        const Py_UCS1 *characters = PyUnicode_1BYTE_DATA(name);
  ------------------
  |  |  291|     58|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|     58|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 6192|     58|        return (
 6193|     58|            ((characters[length-2] == '_') && (characters[length-1] == '_')) &&
  ------------------
  |  Branch (6193:14): [True: 0, False: 58]
  |  Branch (6193:47): [True: 0, False: 0]
  ------------------
 6194|      0|            ((characters[0] == '_') && (characters[1] == '_'))
  ------------------
  |  Branch (6194:14): [True: 0, False: 0]
  |  Branch (6194:40): [True: 0, False: 0]
  ------------------
 6195|     58|        );
 6196|     58|    }
 6197|      2|    return 0;
 6198|     60|}
typeobject.c:update_one_slot:
11877|  11.6k|{
11878|  11.6k|    ASSERT_NEW_TYPE_OR_LOCKED(type);
11879|       |
11880|  11.6k|    PyObject *descr;
11881|  11.6k|    PyWrapperDescrObject *d;
11882|       |
11883|       |    // The correct specialized C function, like "tp_repr of str" in the
11884|       |    // example above
11885|  11.6k|    void *specific = NULL;
11886|       |
11887|       |    // A generic wrapper that uses method lookup (safe but slow)
11888|  11.6k|    void *generic = NULL;
11889|       |
11890|       |    // Set to 1 if the generic wrapper is necessary
11891|  11.6k|    int use_generic = 0;
11892|       |
11893|  11.6k|    int offset = p->offset;
11894|  11.6k|    void **ptr = slotptr(type, offset);
11895|       |
11896|  11.6k|    if (ptr == NULL) {
  ------------------
  |  Branch (11896:9): [True: 0, False: 11.6k]
  ------------------
11897|      0|        do {
11898|      0|            ++p;
11899|      0|        } while (p->offset == offset);
  ------------------
  |  Branch (11899:18): [True: 0, False: 0]
  ------------------
11900|      0|        if (next_p != NULL) {
  ------------------
  |  Branch (11900:13): [True: 0, False: 0]
  ------------------
11901|      0|            *next_p = p;
11902|      0|        }
11903|      0|        return 0;
11904|      0|    }
11905|       |    /* We may end up clearing live exceptions below, so make sure it's ours. */
11906|  11.6k|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (11906:5): [True: 11.6k, False: 0]
  ------------------
11907|  16.3k|    do {
11908|       |        /* Use faster uncached lookup as we won't get any cache hits during type setup. */
11909|  16.3k|        _PyStackRef descr_ref;
11910|  16.3k|        int res = find_name_in_mro(type, p->name_strobj, &descr_ref);
11911|  16.3k|        if (res <= 0) {
  ------------------
  |  Branch (11911:13): [True: 12.9k, False: 3.39k]
  ------------------
11912|  12.9k|            if (ptr == (void**)&type->tp_iternext) {
  ------------------
  |  Branch (11912:17): [True: 162, False: 12.8k]
  ------------------
11913|    162|                specific = (void *)_PyObject_NextNotImplemented;
11914|    162|            }
11915|  12.9k|            continue;
11916|  12.9k|        }
11917|  3.39k|        descr = PyStackRef_AsPyObjectBorrow(descr_ref);
11918|  3.39k|        if (Py_IS_TYPE(descr, &PyWrapperDescr_Type) &&
  ------------------
  |  |  215|  6.78k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  3.39k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.39k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 2.67k, False: 720]
  |  |  ------------------
  ------------------
11919|  2.67k|            ((PyWrapperDescrObject *)descr)->d_base->name_strobj == p->name_strobj) {
  ------------------
  |  Branch (11919:13): [True: 2.67k, False: 0]
  ------------------
11920|  2.67k|            void **tptr;
11921|  2.67k|            size_t index = (p - slotdefs);
11922|  2.67k|            if (slotdefs_dups[index][0] > 1) {
  ------------------
  |  Branch (11922:17): [True: 1.09k, False: 1.57k]
  ------------------
11923|  1.09k|                tptr = NULL;
11924|  3.26k|                for (size_t i = 1; i <= slotdefs_dups[index][0]; i++) {
  ------------------
  |  Branch (11924:36): [True: 2.19k, False: 1.07k]
  ------------------
11925|  2.19k|                    pytype_slotdef *q = &slotdefs[slotdefs_dups[index][i]];
11926|  2.19k|                    void **qptr = slotptr(type, q->offset);
11927|  2.19k|                    if (qptr == NULL || *qptr == NULL)
  ------------------
  |  Branch (11927:25): [True: 0, False: 2.19k]
  |  Branch (11927:41): [True: 1.07k, False: 1.11k]
  ------------------
11928|  1.07k|                        continue;
11929|  1.11k|                    if (tptr != NULL) {
  ------------------
  |  Branch (11929:25): [True: 22, False: 1.09k]
  ------------------
11930|     22|                        tptr = NULL;
11931|     22|                        break;
11932|     22|                    }
11933|  1.09k|                    tptr = qptr;
11934|  1.09k|                }
11935|  1.09k|            }
11936|  1.57k|            else {
11937|  1.57k|                tptr = slotptr(type, offset);
11938|  1.57k|            }
11939|       |
11940|  2.67k|            if (tptr == NULL || tptr == ptr)
  ------------------
  |  Branch (11940:17): [True: 22, False: 2.65k]
  |  Branch (11940:33): [True: 2.11k, False: 538]
  ------------------
11941|  2.13k|                generic = p->function;
11942|  2.67k|            d = (PyWrapperDescrObject *)descr;
11943|  2.67k|            if ((specific == NULL || specific == d->d_wrapped) &&
  ------------------
  |  Branch (11943:18): [True: 1.67k, False: 1.00k]
  |  Branch (11943:38): [True: 1.00k, False: 0]
  ------------------
11944|  2.67k|                d->d_base->wrapper == p->wrapper &&
  ------------------
  |  Branch (11944:17): [True: 2.13k, False: 542]
  ------------------
11945|  2.13k|                is_subtype_with_mro(lookup_tp_mro(type), type, PyDescr_TYPE(d)))
  ------------------
  |  |   35|  2.13k|#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  ------------------
  |  Branch (11945:17): [True: 2.13k, False: 0]
  ------------------
11946|  2.13k|            {
11947|  2.13k|                specific = d->d_wrapped;
11948|  2.13k|            }
11949|    542|            else {
11950|       |                /* We cannot use the specific slot function because either
11951|       |                   - it is not unique: there are multiple methods for this
11952|       |                     slot and they conflict
11953|       |                   - the signature is wrong (as checked by the ->wrapper
11954|       |                     comparison above)
11955|       |                   - it's wrapping the wrong class
11956|       |                 */
11957|    542|                use_generic = 1;
11958|    542|            }
11959|  2.67k|        }
11960|    720|        else if (Py_IS_TYPE(descr, &PyCFunction_Type) &&
  ------------------
  |  |  215|  1.44k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    720|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    720|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 164, False: 556]
  |  |  ------------------
  ------------------
11961|    164|                 PyCFunction_GET_FUNCTION(descr) ==
  ------------------
  |  |   43|    164|#define PyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    164|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (11961:18): [True: 164, False: 0]
  ------------------
11962|    720|                 _PyCFunction_CAST(tp_new_wrapper) &&
  ------------------
  |  |   53|    720|    _Py_FUNC_CAST(PyCFunction, func)
  |  |  ------------------
  |  |  |  |   47|    164|#define _Py_FUNC_CAST(T, func) _Py_CAST(T, _Py_CAST(void(*)(void), (func)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    884|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11963|    164|                 ptr == (void**)&type->tp_new)
  ------------------
  |  Branch (11963:18): [True: 164, False: 0]
  ------------------
11964|    164|        {
11965|       |            /* The __new__ wrapper is not a wrapper descriptor,
11966|       |               so must be special-cased differently.
11967|       |               If we don't do this, creating an instance will
11968|       |               always use slot_tp_new which will look up
11969|       |               __new__ in the MRO which will call tp_new_wrapper
11970|       |               which will look through the base classes looking
11971|       |               for a static base and call its tp_new (usually
11972|       |               PyType_GenericNew), after performing various
11973|       |               sanity checks and constructing a new argument
11974|       |               list.  Cut all that nonsense short -- this speeds
11975|       |               up instance creation tremendously. */
11976|    164|            specific = (void *)type->tp_new;
11977|       |            /* XXX I'm not 100% sure that there isn't a hole
11978|       |               in this reasoning that requires additional
11979|       |               sanity checks.  I'll buy the first person to
11980|       |               point out a bug in this reasoning a beer. */
11981|    164|        }
11982|    556|        else if (descr == Py_None &&
  ------------------
  |  |  616|  1.11k|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (11982:18): [True: 18, False: 538]
  ------------------
11983|     18|                 ptr == (void**)&type->tp_hash) {
  ------------------
  |  Branch (11983:18): [True: 18, False: 0]
  ------------------
11984|       |            /* We specifically allow __hash__ to be set to None
11985|       |               to prevent inheritance of the default
11986|       |               implementation from object.__hash__ */
11987|     18|            specific = (void *)PyObject_HashNotImplemented;
11988|     18|        }
11989|    538|        else {
11990|    538|            use_generic = 1;
11991|    538|            if (generic == NULL && Py_IS_TYPE(descr, &PyMethodDescr_Type) &&
  ------------------
  |  |  215|    966|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    428|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    428|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 4, False: 424]
  |  |  ------------------
  ------------------
  |  Branch (11991:17): [True: 428, False: 110]
  ------------------
11992|      4|                *ptr == ((PyMethodDescrObject *)descr)->d_method->ml_meth)
  ------------------
  |  Branch (11992:17): [True: 2, False: 2]
  ------------------
11993|      2|            {
11994|      2|                generic = *ptr;
11995|      2|            }
11996|    536|            else {
11997|    536|                generic = p->function;
11998|    536|            }
11999|    538|            if (p->function == slot_tp_call) {
  ------------------
  |  Branch (11999:17): [True: 8, False: 530]
  ------------------
12000|       |                /* A generic __call__ is incompatible with vectorcall */
12001|      8|                if (queued_updates == NULL) {
  ------------------
  |  Branch (12001:21): [True: 8, False: 0]
  ------------------
12002|      8|                    type_clear_flags(type, Py_TPFLAGS_HAVE_VECTORCALL);
  ------------------
  |  |  510|      8|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
12003|      8|                }
12004|      8|            }
12005|    538|        }
12006|  3.39k|        PyStackRef_CLOSE(descr_ref);
12007|  16.3k|    } while ((++p)->offset == offset);
  ------------------
  |  Branch (12007:14): [True: 4.69k, False: 11.6k]
  ------------------
12008|       |
12009|  11.6k|    void *slot_value;
12010|  11.6k|    if (specific && !use_generic) {
  ------------------
  |  Branch (12010:9): [True: 1.47k, False: 10.1k]
  |  Branch (12010:21): [True: 1.43k, False: 40]
  ------------------
12011|  1.43k|        slot_value = specific;
12012|  10.2k|    } else {
12013|  10.2k|        slot_value = generic;
12014|  10.2k|    }
12015|       |
12016|       |#ifdef Py_GIL_DISABLED
12017|       |    if (queued_updates != NULL) {
12018|       |        // queue the update to perform later, while world is stopped
12019|       |        if (queue_slot_update(queued_updates, type, ptr, slot_value) < 0) {
12020|       |            return -1;
12021|       |        }
12022|       |    } else {
12023|       |        // do the update to the type structure now
12024|       |        *ptr = slot_value;
12025|       |    }
12026|       |#else
12027|       |    // always do the update immediately
12028|  11.6k|    assert(queued_updates == NULL);
  ------------------
  |  Branch (12028:5): [True: 11.6k, False: 0]
  ------------------
12029|  11.6k|    *ptr = slot_value;
12030|  11.6k|#endif
12031|       |
12032|  11.6k|    if (next_p != NULL) {
  ------------------
  |  Branch (12032:9): [True: 11.6k, False: 0]
  ------------------
12033|  11.6k|        *next_p = p;
12034|  11.6k|    }
12035|  11.6k|    return 0;
12036|  11.6k|}
typeobject.c:slotptr:
11764|  76.2k|{
11765|  76.2k|    char *ptr;
11766|  76.2k|    long offset = ioffset;
11767|       |
11768|       |    /* Note: this depends on the order of the members of PyHeapTypeObject! */
11769|  76.2k|    assert(offset >= 0);
  ------------------
  |  Branch (11769:5): [True: 76.2k, False: 0]
  ------------------
11770|  76.2k|    assert((size_t)offset < offsetof(PyHeapTypeObject, ht_name));
  ------------------
  |  Branch (11770:5): [True: 76.2k, False: 0]
  ------------------
11771|  76.2k|    if ((size_t)offset >= offsetof(PyHeapTypeObject, as_buffer)) {
  ------------------
  |  Branch (11771:9): [True: 1.69k, False: 74.5k]
  ------------------
11772|  1.69k|        ptr = (char *)type->tp_as_buffer;
11773|  1.69k|        offset -= offsetof(PyHeapTypeObject, as_buffer);
11774|  1.69k|    }
11775|  74.5k|    else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_sequence)) {
  ------------------
  |  Branch (11775:14): [True: 8.23k, False: 66.3k]
  ------------------
11776|  8.23k|        ptr = (char *)type->tp_as_sequence;
11777|  8.23k|        offset -= offsetof(PyHeapTypeObject, as_sequence);
11778|  8.23k|    }
11779|  66.3k|    else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_mapping)) {
  ------------------
  |  Branch (11779:14): [True: 3.31k, False: 63.0k]
  ------------------
11780|  3.31k|        ptr = (char *)type->tp_as_mapping;
11781|  3.31k|        offset -= offsetof(PyHeapTypeObject, as_mapping);
11782|  3.31k|    }
11783|  63.0k|    else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_number)) {
  ------------------
  |  Branch (11783:14): [True: 39.3k, False: 23.7k]
  ------------------
11784|  39.3k|        ptr = (char *)type->tp_as_number;
11785|  39.3k|        offset -= offsetof(PyHeapTypeObject, as_number);
11786|  39.3k|    }
11787|  23.7k|    else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_async)) {
  ------------------
  |  Branch (11787:14): [True: 2.53k, False: 21.2k]
  ------------------
11788|  2.53k|        ptr = (char *)type->tp_as_async;
11789|  2.53k|        offset -= offsetof(PyHeapTypeObject, as_async);
11790|  2.53k|    }
11791|  21.2k|    else {
11792|  21.2k|        ptr = (char *)type;
11793|  21.2k|    }
11794|  76.2k|    if (ptr != NULL)
  ------------------
  |  Branch (11794:9): [True: 50.8k, False: 25.4k]
  ------------------
11795|  50.8k|        ptr += offset;
11796|  76.2k|    return (void **)ptr;
11797|  76.2k|}
typeobject.c:tp_new_wrapper:
10383|    124|{
10384|    124|    PyTypeObject *staticbase;
10385|    124|    PyObject *arg0, *res;
10386|       |
10387|    124|    if (self == NULL || !PyType_Check(self)) {
  ------------------
  |  |  766|    124|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (10387:9): [True: 0, False: 124]
  |  Branch (10387:25): [True: 0, False: 124]
  ------------------
10388|      0|        PyErr_Format(PyExc_SystemError,
10389|      0|                     "__new__() called with non-type 'self'");
10390|      0|        return NULL;
10391|      0|    }
10392|    124|    PyTypeObject *type = (PyTypeObject *)self;
10393|       |
10394|    124|    if (nargs < 1) {
  ------------------
  |  Branch (10394:9): [True: 0, False: 124]
  ------------------
10395|      0|        PyErr_Format(PyExc_TypeError,
10396|      0|                     "%s.__new__(): not enough arguments",
10397|      0|                     type->tp_name);
10398|      0|        return NULL;
10399|      0|    }
10400|    124|    arg0 = args[0];
10401|    124|    if (!PyType_Check(arg0)) {
  ------------------
  |  |  766|    124|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (10401:9): [True: 0, False: 124]
  ------------------
10402|      0|        PyErr_Format(PyExc_TypeError,
10403|      0|                     "%s.__new__(X): X is not a type object (%s)",
10404|      0|                     type->tp_name,
10405|      0|                     Py_TYPE(arg0)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10406|      0|        return NULL;
10407|      0|    }
10408|    124|    PyTypeObject *subtype = (PyTypeObject *)arg0;
10409|       |
10410|    124|    if (!PyType_IsSubtype(subtype, type)) {
  ------------------
  |  Branch (10410:9): [True: 0, False: 124]
  ------------------
10411|      0|        PyErr_Format(PyExc_TypeError,
10412|      0|                     "%s.__new__(%s): %s is not a subtype of %s",
10413|      0|                     type->tp_name,
10414|      0|                     subtype->tp_name,
10415|      0|                     subtype->tp_name,
10416|      0|                     type->tp_name);
10417|      0|        return NULL;
10418|      0|    }
10419|       |
10420|       |    /* Check that the use doesn't do something silly and unsafe like
10421|       |       object.__new__(dict).  To do this, we check that the
10422|       |       most derived base that's not a heap type is this type. */
10423|    124|    staticbase = subtype;
10424|    246|    while (staticbase && (staticbase->tp_new == slot_tp_new))
  ------------------
  |  Branch (10424:12): [True: 246, False: 0]
  |  Branch (10424:26): [True: 122, False: 124]
  ------------------
10425|    122|        staticbase = staticbase->tp_base;
10426|       |    /* If staticbase is NULL now, it is a really weird type.
10427|       |       In the spirit of backwards compatibility (?), just shut up. */
10428|    124|    if (staticbase && staticbase->tp_new != type->tp_new) {
  ------------------
  |  Branch (10428:9): [True: 124, False: 0]
  |  Branch (10428:23): [True: 0, False: 124]
  ------------------
10429|      0|        if (staticbase->tp_new == NULL) {
  ------------------
  |  Branch (10429:13): [True: 0, False: 0]
  ------------------
10430|      0|            PyErr_Format(PyExc_TypeError,
10431|      0|                         "cannot create '%s' instances", subtype->tp_name);
10432|      0|            return NULL;
10433|      0|        }
10434|      0|        PyErr_Format(PyExc_TypeError,
10435|      0|                     "%s.__new__(%s) is not safe, use %s.__new__()",
10436|      0|                     type->tp_name,
10437|      0|                     subtype->tp_name,
10438|      0|                     staticbase->tp_name);
10439|      0|        return NULL;
10440|      0|    }
10441|       |
10442|    124|    PyObject *args_tuple = PyTuple_FromArray(args + 1, nargs - 1);
10443|    124|    if (args_tuple == NULL) {
  ------------------
  |  Branch (10443:9): [True: 0, False: 124]
  ------------------
10444|      0|        return NULL;
10445|      0|    }
10446|    124|    PyObject *kwds = NULL;
10447|    124|    if (kwnames != NULL) {
  ------------------
  |  Branch (10447:9): [True: 0, False: 124]
  ------------------
10448|      0|        kwds = _PyStack_AsDict(args + nargs, kwnames);
10449|      0|        if (kwds == NULL) {
  ------------------
  |  Branch (10449:13): [True: 0, False: 0]
  ------------------
10450|      0|            Py_DECREF(args_tuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10451|      0|            return NULL;
10452|      0|        }
10453|      0|    }
10454|    124|    res = type->tp_new(subtype, args_tuple, kwds);
10455|    124|    Py_DECREF(args_tuple);
  ------------------
  |  |  430|    124|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10456|    124|    Py_XDECREF(kwds);
  ------------------
  |  |  524|    124|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10457|    124|    return res;
10458|    124|}
typeobject.c:slot_tp_new:
11167|    120|{
11168|    120|    PyThreadState *tstate = _PyThreadState_GET();
11169|    120|    PyObject *result;
11170|       |
11171|    120|    _PyCStackRef func_ref;
11172|    120|    _PyThreadState_PushCStackRef(tstate, &func_ref);
11173|    120|    func_ref.ref = _PyObject_GetAttrStackRef((PyObject *)type, &_Py_ID(__new__));
  ------------------
  |  |  917|    120|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    120|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    120|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11174|    120|    if (PyStackRef_IsNull(func_ref.ref)) {
  ------------------
  |  |  470|    120|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|    120|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    120|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 0, False: 120]
  |  |  ------------------
  ------------------
11175|      0|        _PyThreadState_PopCStackRef(tstate, &func_ref);
11176|      0|        return NULL;
11177|      0|    }
11178|       |
11179|    120|    PyObject *func = PyStackRef_AsPyObjectBorrow(func_ref.ref);
11180|    120|    result = _PyObject_Call_Prepend(tstate, func, (PyObject *)type, args, kwds);
11181|    120|    _PyThreadState_PopCStackRef(tstate, &func_ref);
11182|    120|    return result;
11183|    120|}
typeobject.c:call_method:
 3086|    168|{
 3087|    168|    PyThreadState *tstate = _PyThreadState_GET();
 3088|    168|    _PyCStackRef cref;
 3089|    168|    _PyThreadState_PushCStackRef(tstate, &cref);
 3090|    168|    PyObject *res = NULL;
 3091|    168|    int unbound = lookup_method(self, attr, &cref.ref);
 3092|    168|    if (unbound >= 0) {
  ------------------
  |  Branch (3092:9): [True: 168, False: 0]
  ------------------
 3093|    168|        PyObject *meth = PyStackRef_AsPyObjectBorrow(cref.ref);
 3094|    168|        if (unbound) {
  ------------------
  |  Branch (3094:13): [True: 168, False: 0]
  ------------------
 3095|    168|            res = _PyObject_Call_Prepend(tstate, meth, self, args, kwds);
 3096|    168|        }
 3097|      0|        else {
 3098|      0|            res = _PyObject_Call(tstate, meth, args, kwds);
 3099|      0|        }
 3100|    168|    }
 3101|    168|    _PyThreadState_PopCStackRef(tstate, &cref);
 3102|    168|    return res;
 3103|    168|}
typeobject.c:lookup_method:
 3035|    232|{
 3036|    232|    return lookup_method_ex(self, attr, out, 1);
 3037|    232|}
typeobject.c:type_traverse:
 7168|    272|{
 7169|    272|    PyTypeObject *type = PyTypeObject_CAST(self);
  ------------------
  |  |  200|    272|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 7170|       |
 7171|       |    /* Because of type_is_gc(), the collector only calls this
 7172|       |       for heaptypes. */
 7173|    272|    if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|    272|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (7173:9): [True: 0, False: 272]
  ------------------
 7174|      0|        char msg[200];
 7175|      0|        sprintf(msg, "type_traverse() called on non-heap type '%.100s'",
 7176|      0|                type->tp_name);
 7177|      0|        _PyObject_ASSERT_FAILED_MSG((PyObject *)type, msg);
  ------------------
  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  ------------------
 7178|      0|    }
 7179|       |
 7180|    272|    Py_VISIT(type->tp_dict);
  ------------------
  |  |  194|    272|    do {                                                                \
  |  |  195|    272|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 272, False: 0]
  |  |  ------------------
  |  |  196|    272|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    272|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    272|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    272|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 272]
  |  |  ------------------
  |  |  198|    272|                return vret;                                            \
  |  |  199|    272|        }                                                               \
  |  |  200|    272|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 272]
  |  |  ------------------
  ------------------
 7181|    272|    Py_VISIT(type->tp_cache);
  ------------------
  |  |  194|    272|    do {                                                                \
  |  |  195|    272|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 272]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|    272|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 272]
  |  |  ------------------
  ------------------
 7182|    272|    Py_VISIT(type->tp_mro);
  ------------------
  |  |  194|    272|    do {                                                                \
  |  |  195|    272|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 272, False: 0]
  |  |  ------------------
  |  |  196|    272|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    272|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    272|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    272|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 272]
  |  |  ------------------
  |  |  198|    272|                return vret;                                            \
  |  |  199|    272|        }                                                               \
  |  |  200|    272|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 272]
  |  |  ------------------
  ------------------
 7183|    272|    Py_VISIT(type->tp_bases);
  ------------------
  |  |  194|    272|    do {                                                                \
  |  |  195|    272|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 272, False: 0]
  |  |  ------------------
  |  |  196|    272|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    272|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    272|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    272|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 272]
  |  |  ------------------
  |  |  198|    272|                return vret;                                            \
  |  |  199|    272|        }                                                               \
  |  |  200|    272|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 272]
  |  |  ------------------
  ------------------
 7184|    272|    Py_VISIT(type->tp_base);
  ------------------
  |  |  194|    272|    do {                                                                \
  |  |  195|    272|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 272, False: 0]
  |  |  ------------------
  |  |  196|    272|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|    272|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    272|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|    272|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 272]
  |  |  ------------------
  |  |  198|    272|                return vret;                                            \
  |  |  199|    272|        }                                                               \
  |  |  200|    272|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 272]
  |  |  ------------------
  ------------------
 7185|    272|    Py_VISIT(((PyHeapTypeObject *)type)->ht_module);
  ------------------
  |  |  194|    272|    do {                                                                \
  |  |  195|    272|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 80, False: 192]
  |  |  ------------------
  |  |  196|     80|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     80|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 80]
  |  |  ------------------
  |  |  198|     80|                return vret;                                            \
  |  |  199|     80|        }                                                               \
  |  |  200|    272|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 272]
  |  |  ------------------
  ------------------
 7186|       |
 7187|       |    /* There's no need to visit others because they can't be involved
 7188|       |       in cycles:
 7189|       |       type->tp_subclasses is a list of weak references,
 7190|       |       ((PyHeapTypeObject *)type)->ht_slots is a tuple of strings,
 7191|       |       ((PyHeapTypeObject *)type)->ht_*name are strings.
 7192|       |       */
 7193|       |
 7194|    272|    return 0;
 7195|    272|}
typeobject.c:type_mro_impl:
 3532|     58|{
 3533|     58|    PyObject *seq;
 3534|     58|    seq = mro_implementation(self);
 3535|     58|    if (seq != NULL && !PyList_Check(seq)) {
  ------------------
  |  |   25|     58|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     58|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3535:9): [True: 58, False: 0]
  |  Branch (3535:24): [True: 48, False: 10]
  ------------------
 3536|     48|        Py_SETREF(seq, PySequence_List(seq));
  ------------------
  |  |  352|     48|    do { \
  |  |  353|     48|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     48|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|     48|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     48|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|     48|        *_tmp_dst_ptr = (src); \
  |  |  356|     48|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|     48|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|     48|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 48]
  |  |  ------------------
  ------------------
 3537|     48|    }
 3538|     58|    return seq;
 3539|     58|}
typeobject.c:mro_implementation:
 3515|     58|{
 3516|     58|    PyObject *mro;
 3517|     58|    BEGIN_TYPE_LOCK();
 3518|     58|    mro = mro_implementation_unlocked(type);
 3519|     58|    END_TYPE_LOCK();
 3520|     58|    return mro;
 3521|     58|}
typeobject.c:mro_implementation_unlocked:
 3427|    666|{
 3428|    666|    ASSERT_TYPE_LOCK_HELD();
 3429|       |
 3430|    666|    if (!_PyType_IsReady(type)) {
  ------------------
  |  Branch (3430:9): [True: 0, False: 666]
  ------------------
 3431|      0|        if (PyType_Ready(type) < 0)
  ------------------
  |  Branch (3431:13): [True: 0, False: 0]
  ------------------
 3432|      0|            return NULL;
 3433|      0|    }
 3434|       |
 3435|    666|    PyObject *bases = lookup_tp_bases(type);
 3436|    666|    Py_ssize_t n = PyTuple_GET_SIZE(bases);
  ------------------
  |  |   27|    666|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3437|  1.35k|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (3437:28): [True: 688, False: 666]
  ------------------
 3438|  1.37k|        PyTypeObject *base = _PyType_CAST(PyTuple_GET_ITEM(bases, i));
  ------------------
  |  |  770|    688|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.37k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:38): [True: 688, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3438:30): [True: 688, False: 0]
  |  Branch (3438:30): [True: 688, False: 0]
  ------------------
 3439|    688|        if (lookup_tp_mro(base) == NULL) {
  ------------------
  |  Branch (3439:13): [True: 0, False: 688]
  ------------------
 3440|      0|            PyErr_Format(PyExc_TypeError,
 3441|      0|                         "Cannot extend an incomplete type '%.100s'",
 3442|      0|                         base->tp_name);
 3443|      0|            return NULL;
 3444|      0|        }
 3445|  1.37k|        assert(PyTuple_Check(lookup_tp_mro(base)));
  ------------------
  |  Branch (3445:9): [True: 688, False: 0]
  ------------------
 3446|    688|    }
 3447|       |
 3448|    666|    if (n == 1) {
  ------------------
  |  Branch (3448:9): [True: 642, False: 24]
  ------------------
 3449|       |        /* Fast path: if there is a single base, constructing the MRO
 3450|       |         * is trivial.
 3451|       |         */
 3452|  1.28k|        PyTypeObject *base = _PyType_CAST(PyTuple_GET_ITEM(bases, 0));
  ------------------
  |  |  770|    642|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.28k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:38): [True: 642, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3452:30): [True: 642, False: 0]
  |  Branch (3452:30): [True: 642, False: 0]
  ------------------
 3453|      0|        PyObject *base_mro = lookup_tp_mro(base);
 3454|  1.28k|        assert(base_mro != NULL);
  ------------------
  |  Branch (3454:9): [True: 642, False: 0]
  ------------------
 3455|    642|        Py_ssize_t k = PyTuple_GET_SIZE(base_mro);
  ------------------
  |  |   27|    642|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    642|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    642|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3456|    642|        PyObject *result = PyTuple_New(k + 1);
 3457|    642|        if (result == NULL) {
  ------------------
  |  Branch (3457:13): [True: 0, False: 642]
  ------------------
 3458|      0|            return NULL;
 3459|      0|        }
 3460|       |
 3461|    642|        ;
 3462|    642|        PyTuple_SET_ITEM(result, 0, Py_NewRef(type));
  ------------------
  |  |   40|    642|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    642|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    642|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    642|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    642|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3463|  1.91k|        for (Py_ssize_t i = 0; i < k; i++) {
  ------------------
  |  Branch (3463:32): [True: 1.26k, False: 642]
  ------------------
 3464|  1.26k|            PyObject *cls = PyTuple_GET_ITEM(base_mro, i);
  ------------------
  |  |   29|  1.26k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  1.26k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3464:29): [True: 1.26k, False: 0]
  ------------------
 3465|  1.26k|            PyTuple_SET_ITEM(result, i + 1, Py_NewRef(cls));
  ------------------
  |  |   40|  1.26k|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  1.26k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  1.26k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.26k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3466|  1.26k|        }
 3467|    642|        return result;
 3468|    642|    }
 3469|       |
 3470|       |    /* This is just a basic sanity check. */
 3471|     24|    if (check_duplicates(bases) < 0) {
  ------------------
  |  Branch (3471:9): [True: 0, False: 24]
  ------------------
 3472|      0|        return NULL;
 3473|      0|    }
 3474|       |
 3475|       |    /* Find a superclass linearization that honors the constraints
 3476|       |       of the explicit tuples of bases and the constraints implied by
 3477|       |       each base class.
 3478|       |
 3479|       |       to_merge is an array of tuples, where each tuple is a superclass
 3480|       |       linearization implied by a base class.  The last element of
 3481|       |       to_merge is the declared tuple of bases.
 3482|       |    */
 3483|     24|    PyObject **to_merge = PyMem_New(PyObject *, n + 1);
  ------------------
  |  |   64|     24|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  ------------------
  |  |  |  |  137|     24|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  |  |  |  Branch (64:5): [True: 0, False: 24]
  |  |  ------------------
  |  |   65|     24|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  ------------------
 3484|     24|    if (to_merge == NULL) {
  ------------------
  |  Branch (3484:9): [True: 0, False: 24]
  ------------------
 3485|      0|        PyErr_NoMemory();
 3486|      0|        return NULL;
 3487|      0|    }
 3488|       |
 3489|     24|    PyObject *mro_to_merge;
 3490|     70|    for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (3490:28): [True: 46, False: 24]
  ------------------
 3491|     92|        PyTypeObject *base = _PyType_CAST(PyTuple_GET_ITEM(bases, i));
  ------------------
  |  |  770|     46|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     92|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:38): [True: 46, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3491:30): [True: 46, False: 0]
  |  Branch (3491:30): [True: 46, False: 0]
  ------------------
 3492|      0|        mro_to_merge = lookup_tp_mro(base);
 3493|     92|        assert(mro_to_merge != NULL);
  ------------------
  |  Branch (3493:9): [True: 46, False: 0]
  ------------------
 3494|     46|        to_merge[i] = mro_to_merge;
 3495|     46|    }
 3496|     24|    to_merge[n] = bases;
 3497|       |
 3498|     24|    PyObject *result = PyList_New(1);
 3499|     24|    if (result == NULL) {
  ------------------
  |  Branch (3499:9): [True: 0, False: 24]
  ------------------
 3500|      0|        PyMem_Free(to_merge);
 3501|      0|        return NULL;
 3502|      0|    }
 3503|       |
 3504|     24|    PyList_SET_ITEM(result, 0, Py_NewRef(type));
  ------------------
  |  |   50|     24|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3505|     24|    if (pmerge(result, to_merge, n + 1) < 0) {
  ------------------
  |  Branch (3505:9): [True: 0, False: 24]
  ------------------
 3506|      0|        Py_CLEAR(result);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3507|      0|    }
 3508|     24|    PyMem_Free(to_merge);
 3509|       |
 3510|     24|    return result;
 3511|     24|}
typeobject.c:check_duplicates:
 3266|     24|{
 3267|     24|    Py_ssize_t i, j, n;
 3268|       |    /* Let's use a quadratic time algorithm,
 3269|       |       assuming that the bases tuples is short.
 3270|       |    */
 3271|     24|    n = PyTuple_GET_SIZE(tuple);
  ------------------
  |  |   27|     24|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3272|     70|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (3272:17): [True: 46, False: 24]
  ------------------
 3273|     46|        PyObject *o = PyTuple_GET_ITEM(tuple, i);
  ------------------
  |  |   29|     46|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     46|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3273:23): [True: 46, False: 0]
  ------------------
 3274|     72|        for (j = i + 1; j < n; j++) {
  ------------------
  |  Branch (3274:25): [True: 26, False: 46]
  ------------------
 3275|     52|            if (PyTuple_GET_ITEM(tuple, j) == o) {
  ------------------
  |  |   29|     26|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     26|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3275:17): [True: 26, False: 0]
  |  Branch (3275:17): [True: 0, False: 26]
  ------------------
 3276|      0|                o = class_name(o);
 3277|      0|                if (o != NULL) {
  ------------------
  |  Branch (3277:21): [True: 0, False: 0]
  ------------------
 3278|      0|                    if (PyUnicode_Check(o)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3279|      0|                        PyErr_Format(PyExc_TypeError,
 3280|      0|                                     "duplicate base class %U", o);
 3281|      0|                    }
 3282|      0|                    else {
 3283|      0|                        PyErr_SetString(PyExc_TypeError,
 3284|      0|                                        "duplicate base class");
 3285|      0|                    }
 3286|      0|                    Py_DECREF(o);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3287|      0|                }
 3288|      0|                return -1;
 3289|      0|            }
 3290|     26|        }
 3291|     46|    }
 3292|     24|    return 0;
 3293|     24|}
typeobject.c:pmerge:
 3357|     24|{
 3358|     24|    int res = 0;
 3359|     24|    Py_ssize_t i, j, empty_cnt;
 3360|     24|    Py_ssize_t *remain;
 3361|       |
 3362|       |    /* remain stores an index into each sublist of to_merge.
 3363|       |       remain[i] is the index of the next base in to_merge[i]
 3364|       |       that is not included in acc.
 3365|       |    */
 3366|     24|    remain = PyMem_New(Py_ssize_t, to_merge_size);
  ------------------
  |  |   64|     24|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  ------------------
  |  |  |  |  137|     24|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  |  |  |  Branch (64:5): [True: 0, False: 24]
  |  |  ------------------
  |  |   65|     24|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  ------------------
 3367|     24|    if (remain == NULL) {
  ------------------
  |  Branch (3367:9): [True: 0, False: 24]
  ------------------
 3368|      0|        PyErr_NoMemory();
 3369|      0|        return -1;
 3370|      0|    }
 3371|     94|    for (i = 0; i < to_merge_size; i++)
  ------------------
  |  Branch (3371:17): [True: 70, False: 24]
  ------------------
 3372|     70|        remain[i] = 0;
 3373|       |
 3374|    132|  again:
 3375|    132|    empty_cnt = 0;
 3376|    250|    for (i = 0; i < to_merge_size; i++) {
  ------------------
  |  Branch (3376:17): [True: 226, False: 24]
  ------------------
 3377|    226|        PyObject *candidate;
 3378|       |
 3379|    226|        PyObject *cur_tuple = to_merge[i];
 3380|       |
 3381|    226|        if (remain[i] >= PyTuple_GET_SIZE(cur_tuple)) {
  ------------------
  |  |   27|    226|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    226|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    226|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3381:13): [True: 70, False: 156]
  ------------------
 3382|     70|            empty_cnt++;
 3383|     70|            continue;
 3384|     70|        }
 3385|       |
 3386|       |        /* Choose next candidate for MRO.
 3387|       |
 3388|       |           The input sequences alone can determine the choice.
 3389|       |           If not, choose the class which appears in the MRO
 3390|       |           of the earliest direct superclass of the new class.
 3391|       |        */
 3392|       |
 3393|    156|        candidate = PyTuple_GET_ITEM(cur_tuple, remain[i]);
  ------------------
  |  |   29|    156|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    156|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    156|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3393:21): [True: 156, False: 0]
  ------------------
 3394|    540|        for (j = 0; j < to_merge_size; j++) {
  ------------------
  |  Branch (3394:21): [True: 432, False: 108]
  ------------------
 3395|    432|            PyObject *j_lst = to_merge[j];
 3396|    432|            if (tail_contains(j_lst, remain[j], candidate))
  ------------------
  |  Branch (3396:17): [True: 48, False: 384]
  ------------------
 3397|     48|                goto skip; /* continue outer loop */
 3398|    432|        }
 3399|    108|        res = PyList_Append(acc, candidate);
 3400|    108|        if (res < 0)
  ------------------
  |  Branch (3400:13): [True: 0, False: 108]
  ------------------
 3401|      0|            goto out;
 3402|       |
 3403|    440|        for (j = 0; j < to_merge_size; j++) {
  ------------------
  |  Branch (3403:21): [True: 332, False: 108]
  ------------------
 3404|    332|            PyObject *j_lst = to_merge[j];
 3405|    332|            if (remain[j] < PyTuple_GET_SIZE(j_lst) &&
  ------------------
  |  |   27|    664|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    332|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    332|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3405:17): [True: 270, False: 62]
  ------------------
 3406|    540|                PyTuple_GET_ITEM(j_lst, remain[j]) == candidate) {
  ------------------
  |  |   29|    270|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    270|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    270|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3406:17): [True: 270, False: 0]
  |  Branch (3406:17): [True: 196, False: 74]
  ------------------
 3407|    196|                remain[j]++;
 3408|    196|            }
 3409|    332|        }
 3410|    108|        goto again;
 3411|     48|      skip: ;
 3412|     48|    }
 3413|       |
 3414|     24|    if (empty_cnt != to_merge_size) {
  ------------------
  |  Branch (3414:9): [True: 0, False: 24]
  ------------------
 3415|      0|        set_mro_error(to_merge, to_merge_size, remain);
 3416|      0|        res = -1;
 3417|      0|    }
 3418|       |
 3419|     24|  out:
 3420|     24|    PyMem_Free(remain);
 3421|       |
 3422|     24|    return res;
 3423|     24|}
typeobject.c:tail_contains:
 3242|    432|{
 3243|    432|    Py_ssize_t j, size;
 3244|    432|    size = PyTuple_GET_SIZE(tuple);
  ------------------
  |  |   27|    432|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    432|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    432|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3245|       |
 3246|    792|    for (j = whence+1; j < size; j++) {
  ------------------
  |  Branch (3246:24): [True: 408, False: 384]
  ------------------
 3247|    816|        if (PyTuple_GET_ITEM(tuple, j) == o)
  ------------------
  |  |   29|    408|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    408|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    408|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3247:13): [True: 408, False: 0]
  |  Branch (3247:13): [True: 48, False: 360]
  ------------------
 3248|     48|            return 1;
 3249|    408|    }
 3250|    384|    return 0;
 3251|    432|}
typeobject.c:type___subclasses___impl:
 7026|     36|{
 7027|     36|    return _PyType_GetSubclasses(self);
 7028|     36|}
typeobject.c:type_prepare:
 7033|    168|{
 7034|    168|    return PyDict_New();
 7035|    168|}
typeobject.c:check_set_special_type_attr:
 1484|      2|{
 1485|      2|    if (!value) {
  ------------------
  |  Branch (1485:9): [True: 0, False: 2]
  ------------------
 1486|      0|        PyErr_Format(PyExc_TypeError,
 1487|      0|                     "cannot delete '%s' attribute of type '%s'",
 1488|      0|                     name, type->tp_name);
 1489|      0|        return 0;
 1490|      0|    }
 1491|      2|    if (_PyType_HasFeature(type, Py_TPFLAGS_IMMUTABLETYPE)) {
  ------------------
  |  |  500|      2|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (1491:9): [True: 0, False: 2]
  ------------------
 1492|      0|        PyErr_Format(PyExc_TypeError,
 1493|      0|                     "cannot set '%s' attribute of immutable type '%s'",
 1494|      0|                     name, type->tp_name);
 1495|      0|        return 0;
 1496|      0|    }
 1497|       |
 1498|      2|    if (PySys_Audit("object.__setattr__", "OsO",
  ------------------
  |  Branch (1498:9): [True: 0, False: 2]
  ------------------
 1499|      2|                    type, name, value) < 0) {
 1500|      0|        return 0;
 1501|      0|    }
 1502|       |
 1503|      2|    return 1;
 1504|      2|}
typeobject.c:type_get_bases:
 1754|     58|{
 1755|     58|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     58|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1756|     58|    PyObject *bases = _PyType_GetBases(type);
 1757|     58|    if (bases == NULL) {
  ------------------
  |  Branch (1757:9): [True: 0, False: 58]
  ------------------
 1758|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1759|      0|    }
 1760|     58|    return bases;
 1761|     58|}
typeobject.c:mro_internal:
 3651|    666|{
 3652|    666|    ASSERT_TYPE_LOCK_HELD();
 3653|       |
 3654|    666|    PyObject *new_mro, *old_mro;
 3655|    666|    int reent;
 3656|       |
 3657|       |    /* Keep a reference to be able to do a reentrancy check below.
 3658|       |       Don't let old_mro be GC'ed and its address be reused for
 3659|       |       another object, like (suddenly!) a new tp_mro.  */
 3660|    666|    old_mro = Py_XNewRef(lookup_tp_mro(type));
  ------------------
  |  |  551|    666|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3661|    666|    new_mro = mro_invoke(type);  /* might cause reentrance */
 3662|    666|    reent = (lookup_tp_mro(type) != old_mro);
 3663|    666|    Py_XDECREF(old_mro);
  ------------------
  |  |  524|    666|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3664|    666|    if (new_mro == NULL) {
  ------------------
  |  Branch (3664:9): [True: 0, False: 666]
  ------------------
 3665|      0|        return -1;
 3666|      0|    }
 3667|       |
 3668|    666|    if (reent) {
  ------------------
  |  Branch (3668:9): [True: 0, False: 666]
  ------------------
 3669|      0|        Py_DECREF(new_mro);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3670|      0|        return 0;
 3671|      0|    }
 3672|       |
 3673|    666|    set_tp_mro(type, new_mro, initial);
 3674|       |
 3675|    666|    type_mro_modified(type, new_mro);
 3676|       |    /* corner case: the super class might have been hidden
 3677|       |       from the custom MRO */
 3678|    666|    type_mro_modified(type, lookup_tp_bases(type));
 3679|       |
 3680|       |    // XXX Expand this to Py_TPFLAGS_IMMUTABLETYPE?
 3681|    666|    if (!(type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN)) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (3681:9): [True: 252, False: 414]
  ------------------
 3682|    252|        type_modified_unlocked(type);
 3683|    252|    }
 3684|    414|    else {
 3685|       |        /* For static builtin types, this is only called during init
 3686|       |           before the method cache has been populated. */
 3687|    414|        assert(type->tp_version_tag);
  ------------------
  |  Branch (3687:9): [True: 414, False: 0]
  ------------------
 3688|    414|    }
 3689|       |
 3690|    666|    if (p_old_mro != NULL)
  ------------------
  |  Branch (3690:9): [True: 0, False: 666]
  ------------------
 3691|      0|        *p_old_mro = old_mro;  /* transfer the ownership */
 3692|    666|    else
 3693|    666|        Py_XDECREF(old_mro);
  ------------------
  |  |  524|    666|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3694|       |
 3695|    666|    return 1;
 3696|    666|}
typeobject.c:mro_invoke:
 3587|    666|{
 3588|    666|    PyObject *mro_result;
 3589|    666|    PyObject *new_mro;
 3590|       |
 3591|    666|    ASSERT_TYPE_LOCK_HELD();
 3592|       |
 3593|    666|    const int custom = !Py_IS_TYPE(type, &PyType_Type);
  ------------------
  |  |  215|    666|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3594|       |
 3595|    666|    if (custom) {
  ------------------
  |  Branch (3595:9): [True: 58, False: 608]
  ------------------
 3596|       |        // Custom mro() method on metaclass.  This is potentially re-entrant.
 3597|       |        // We are called either from type_ready() or from type_set_bases().
 3598|     58|        mro_result = call_method_noarg((PyObject *)type, &_Py_ID(mro));
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3599|     58|    }
 3600|    608|    else {
 3601|       |        // In this case, the mro() method on the type object is being used and
 3602|       |        // we know that these calls are not re-entrant.
 3603|    608|        mro_result = mro_implementation_unlocked(type);
 3604|    608|    }
 3605|    666|    if (mro_result == NULL)
  ------------------
  |  Branch (3605:9): [True: 0, False: 666]
  ------------------
 3606|      0|        return NULL;
 3607|       |
 3608|    666|    new_mro = PySequence_Tuple(mro_result);
 3609|    666|    Py_DECREF(mro_result);
  ------------------
  |  |  430|    666|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3610|    666|    if (new_mro == NULL) {
  ------------------
  |  Branch (3610:9): [True: 0, False: 666]
  ------------------
 3611|      0|        return NULL;
 3612|      0|    }
 3613|       |
 3614|    666|    if (PyTuple_GET_SIZE(new_mro) == 0) {
  ------------------
  |  |   27|    666|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3614:9): [True: 0, False: 666]
  ------------------
 3615|      0|        Py_DECREF(new_mro);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3616|      0|        PyErr_Format(PyExc_TypeError, "type MRO must not be empty");
 3617|      0|        return NULL;
 3618|      0|    }
 3619|       |
 3620|    666|    if (custom && mro_check(type, new_mro) < 0) {
  ------------------
  |  Branch (3620:9): [True: 58, False: 608]
  |  Branch (3620:19): [True: 0, False: 58]
  ------------------
 3621|      0|        Py_DECREF(new_mro);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3622|      0|        return NULL;
 3623|      0|    }
 3624|    666|    return new_mro;
 3625|    666|}
typeobject.c:call_method_noarg:
 3070|     58|{
 3071|     58|    PyThreadState *tstate = _PyThreadState_GET();
 3072|     58|    _PyCStackRef cref;
 3073|     58|    _PyThreadState_PushCStackRef(tstate, &cref);
 3074|     58|    PyObject *res = NULL;
 3075|     58|    int unbound = lookup_method(self, attr, &cref.ref);
 3076|     58|    if (unbound >= 0) {
  ------------------
  |  Branch (3076:9): [True: 58, False: 0]
  ------------------
 3077|     58|        PyObject *func = PyStackRef_AsPyObjectBorrow(cref.ref);
 3078|     58|        res = call_unbound_noarg(unbound, func, self);
 3079|     58|    }
 3080|     58|    _PyThreadState_PopCStackRef(tstate, &cref);
 3081|     58|    return res;
 3082|     58|}
typeobject.c:mro_check:
 3543|     58|{
 3544|     58|    PyTypeObject *solid;
 3545|     58|    Py_ssize_t i, n;
 3546|       |
 3547|     58|    solid = solid_base(type);
 3548|       |
 3549|     58|    n = PyTuple_GET_SIZE(mro);
  ------------------
  |  |   27|     58|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3550|    316|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (3550:17): [True: 258, False: 58]
  ------------------
 3551|    258|        PyObject *obj = PyTuple_GET_ITEM(mro, i);
  ------------------
  |  |   29|    258|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    258|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    258|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3551:25): [True: 258, False: 0]
  ------------------
 3552|    258|        if (!PyType_Check(obj)) {
  ------------------
  |  |  766|    258|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    258|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    258|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3552:13): [True: 0, False: 258]
  ------------------
 3553|      0|            PyErr_Format(PyExc_TypeError,
 3554|      0|                         "%N.mro() returned a non-class ('%T')", type, obj);
 3555|      0|            return -1;
 3556|      0|        }
 3557|    258|        PyTypeObject *base = (PyTypeObject*)obj;
 3558|       |
 3559|    258|        if (!is_subtype_with_mro(lookup_tp_mro(solid), solid, solid_base(base))) {
  ------------------
  |  Branch (3559:13): [True: 0, False: 258]
  ------------------
 3560|      0|            PyErr_Format(
 3561|      0|                PyExc_TypeError,
 3562|      0|                "%N.mro() returned base with unsuitable layout ('%N')",
 3563|      0|                type, base);
 3564|      0|            return -1;
 3565|      0|        }
 3566|    258|    }
 3567|       |
 3568|     58|    return 0;
 3569|     58|}
typeobject.c:type_mro_modified:
 1280|  1.33k|{
 1281|       |    /*
 1282|       |       Check that all base classes or elements of the MRO of type are
 1283|       |       able to be cached.  This function is called after the base
 1284|       |       classes or mro of the type are altered.
 1285|       |
 1286|       |       Unset HAVE_VERSION_TAG and VALID_VERSION_TAG if the type
 1287|       |       has a custom MRO that includes a type which is not officially
 1288|       |       super type, or if the type implements its own mro() method.
 1289|       |
 1290|       |       Called from mro_internal, which will subsequently be called on
 1291|       |       each subclass when their mro is recursively updated.
 1292|       |     */
 1293|  1.33k|    Py_ssize_t i, n;
 1294|       |
 1295|  1.33k|    ASSERT_TYPE_LOCK_HELD();
 1296|  1.33k|    if (!Py_IS_TYPE(type, &PyType_Type) && has_custom_mro(type)) {
  ------------------
  |  |  215|  2.66k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|  1.33k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.33k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1296:9): [True: 116, False: 1.21k]
  |  Branch (1296:44): [True: 0, False: 116]
  ------------------
 1297|      0|        goto clear;
 1298|      0|    }
 1299|  1.33k|    n = PyTuple_GET_SIZE(bases);
  ------------------
  |  |   27|  1.33k|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.33k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.33k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1300|  4.06k|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (1300:17): [True: 2.73k, False: 1.33k]
  ------------------
 1301|  2.73k|        PyObject *b = PyTuple_GET_ITEM(bases, i);
  ------------------
  |  |   29|  2.73k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  2.73k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.73k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1301:23): [True: 2.73k, False: 0]
  ------------------
 1302|  2.73k|        PyTypeObject *cls = _PyType_CAST(b);
  ------------------
  |  |  770|  2.73k|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  2.73k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1302:29): [True: 2.73k, False: 0]
  ------------------
 1303|       |
 1304|  2.73k|        if (cls->tp_versions_used >= _Py_ATTR_CACHE_UNUSED) {
  ------------------
  |  |  251|  2.73k|#define _Py_ATTR_CACHE_UNUSED (30000)  // (see tp_versions_used)
  ------------------
  |  Branch (1304:13): [True: 0, False: 2.73k]
  ------------------
 1305|      0|            goto clear;
 1306|      0|        }
 1307|       |
 1308|  2.73k|        if (!is_subtype_with_mro(lookup_tp_mro(type), type, cls)) {
  ------------------
  |  Branch (1308:13): [True: 0, False: 2.73k]
  ------------------
 1309|      0|            goto clear;
 1310|      0|        }
 1311|  2.73k|    }
 1312|  1.33k|    return;
 1313|       |
 1314|  1.33k| clear:
 1315|      0|    assert(!(type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN));
  ------------------
  |  Branch (1315:5): [True: 0, False: 0]
  ------------------
 1316|      0|    set_version_unlocked(type, 0);  /* 0 is not a valid version tag */
 1317|      0|    type->tp_versions_used = _Py_ATTR_CACHE_UNUSED;
  ------------------
  |  |  251|      0|#define _Py_ATTR_CACHE_UNUSED (30000)  // (see tp_versions_used)
  ------------------
 1318|      0|    if (PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|      0|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (1318:9): [True: 0, False: 0]
  ------------------
 1319|       |        // This field *must* be invalidated if the type is modified (see the
 1320|       |        // comment on struct _specialization_cache):
 1321|      0|        FT_ATOMIC_STORE_PTR_RELAXED(
  ------------------
  |  |  163|      0|#define FT_ATOMIC_STORE_PTR_RELAXED(value, new_value) value = new_value
  ------------------
 1322|      0|            ((PyHeapTypeObject *)type)->_spec_cache.getitem, NULL);
 1323|      0|    }
 1324|      0|}
typeobject.c:has_custom_mro:
 1262|    116|{
 1263|    116|    _PyCStackRef c_ref1, c_ref2;
 1264|    116|    PyThreadState *tstate = _PyThreadState_GET();
 1265|    116|    _PyThreadState_PushCStackRef(tstate, &c_ref1);
 1266|    116|    _PyThreadState_PushCStackRef(tstate, &c_ref2);
 1267|       |
 1268|    116|    _PyType_LookupStackRefAndVersion(Py_TYPE(tp), &_Py_ID(mro), &c_ref1.ref);
  ------------------
  |  |  213|    116|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  _PyType_LookupStackRefAndVersion(Py_TYPE(tp), &_Py_ID(mro), &c_ref1.ref);
  ------------------
  |  |  917|    116|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    116|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    116|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1269|    116|    _PyType_LookupStackRefAndVersion(&PyType_Type, &_Py_ID(mro), &c_ref2.ref);
  ------------------
  |  |  917|    116|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    116|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    116|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1270|       |
 1271|    116|    int custom = !PyStackRef_Is(c_ref1.ref, c_ref2.ref);
  ------------------
  |  |  721|    116|#define PyStackRef_Is(a, b) (((a).bits & (~Py_TAG_REFCNT)) == ((b).bits & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|    116|#define Py_TAG_REFCNT 1
  |  |  ------------------
  |  |               #define PyStackRef_Is(a, b) (((a).bits & (~Py_TAG_REFCNT)) == ((b).bits & (~Py_TAG_REFCNT)))
  |  |  ------------------
  |  |  |  |   55|    116|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
 1272|       |
 1273|    116|    _PyThreadState_PopCStackRef(tstate, &c_ref2);
 1274|    116|    _PyThreadState_PopCStackRef(tstate, &c_ref1);
 1275|    116|    return custom;
 1276|    116|}
typeobject.c:add_subclass:
 9663|    688|{
 9664|    688|    PyObject *key = PyLong_FromVoidPtr((void *) type);
 9665|    688|    if (key == NULL)
  ------------------
  |  Branch (9665:9): [True: 0, False: 688]
  ------------------
 9666|      0|        return -1;
 9667|       |
 9668|    688|    PyObject *ref = PyWeakref_NewRef((PyObject *)type, NULL);
 9669|    688|    if (ref == NULL) {
  ------------------
  |  Branch (9669:9): [True: 0, False: 688]
  ------------------
 9670|      0|        Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9671|      0|        return -1;
 9672|      0|    }
 9673|       |
 9674|       |    // Only get tp_subclasses after creating the key and value.
 9675|       |    // PyWeakref_NewRef() can trigger a garbage collection which can execute
 9676|       |    // arbitrary Python code and so modify base->tp_subclasses.
 9677|    688|    PyObject *subclasses = lookup_tp_subclasses(base);
 9678|    688|    if (subclasses == NULL) {
  ------------------
  |  Branch (9678:9): [True: 130, False: 558]
  ------------------
 9679|    130|        subclasses = init_tp_subclasses(base);
 9680|    130|        if (subclasses == NULL) {
  ------------------
  |  Branch (9680:13): [True: 0, False: 130]
  ------------------
 9681|      0|            Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9682|      0|            Py_DECREF(ref);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9683|      0|            return -1;
 9684|      0|        }
 9685|    130|    }
 9686|    688|    assert(PyDict_CheckExact(subclasses));
  ------------------
  |  Branch (9686:5): [True: 688, False: 0]
  ------------------
 9687|       |
 9688|    688|    int result = PyDict_SetItem(subclasses, key, ref);
 9689|    688|    Py_DECREF(ref);
  ------------------
  |  |  430|    688|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    688|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    688|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9690|    688|    Py_DECREF(key);
  ------------------
  |  |  430|    688|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    688|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    688|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9691|    688|    return result;
 9692|    688|}
typeobject.c:set_tp_mro:
  652|    666|{
  653|    666|    if (mro != NULL) {
  ------------------
  |  Branch (653:9): [True: 666, False: 0]
  ------------------
  654|    666|        assert(PyTuple_CheckExact(mro));
  ------------------
  |  Branch (654:9): [True: 666, False: 0]
  ------------------
  655|    666|        if (self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (655:13): [True: 414, False: 252]
  ------------------
  656|       |            // XXX tp_mro can probably be statically allocated for each
  657|       |            // static builtin type.
  658|    414|            assert(initial);
  ------------------
  |  Branch (658:13): [True: 414, False: 0]
  ------------------
  659|    414|            assert(self->tp_mro == NULL);
  ------------------
  |  Branch (659:13): [True: 414, False: 0]
  ------------------
  660|       |            /* Other checks are done via set_tp_bases. */
  661|    414|            _Py_SetImmortal(mro);
  662|    414|        }
  663|    252|        else {
  664|    252|            PyUnstable_Object_EnableDeferredRefcount(mro);
  665|    252|        }
  666|    666|    }
  667|    666|    if (!initial) {
  ------------------
  |  Branch (667:9): [True: 0, False: 666]
  ------------------
  668|      0|        type_lock_prevent_release();
  669|      0|        types_stop_world();
  670|      0|    }
  671|    666|    self->tp_mro = mro;
  672|    666|    if (!initial) {
  ------------------
  |  Branch (672:9): [True: 0, False: 666]
  ------------------
  673|      0|        types_start_world();
  674|      0|        type_lock_allow_release();
  675|      0|    }
  676|    666|}
typeobject.c:type_get_module:
 1630|     14|{
 1631|     14|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     14|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1632|     14|    return type_module(type);
 1633|     14|}
typeobject.c:type_set_module:
 1637|      2|{
 1638|      2|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|      2|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1639|      2|    if (!check_set_special_type_attr(type, value, "__module__"))
  ------------------
  |  Branch (1639:9): [True: 0, False: 2]
  ------------------
 1640|      0|        return -1;
 1641|       |
 1642|      2|    PyType_Modified(type);
 1643|       |
 1644|      2|    PyObject *dict = lookup_tp_dict(type);
 1645|      2|    if (PyDict_Pop(dict, &_Py_ID(__firstlineno__), NULL) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1645:9): [True: 0, False: 2]
  ------------------
 1646|      0|        return -1;
 1647|      0|    }
 1648|      2|    return PyDict_SetItem(dict, &_Py_ID(__module__), value);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1649|      2|}
typeobject.c:type_abstractmethods:
 1693|     70|{
 1694|     70|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     70|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1695|     70|    PyObject *res = NULL;
 1696|       |    /* type itself has an __abstractmethods__ descriptor (this). Don't return
 1697|       |       that. */
 1698|     70|    if (type == &PyType_Type) {
  ------------------
  |  Branch (1698:9): [True: 0, False: 70]
  ------------------
 1699|      0|        PyErr_SetObject(PyExc_AttributeError, &_Py_ID(__abstractmethods__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1700|      0|    }
 1701|     70|    else {
 1702|     70|        PyObject *dict = lookup_tp_dict(type);
 1703|     70|        if (PyDict_GetItemRef(dict, &_Py_ID(__abstractmethods__), &res) == 0) {
  ------------------
  |  |  917|     70|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     70|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     70|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1703:13): [True: 18, False: 52]
  ------------------
 1704|     18|            PyErr_SetObject(PyExc_AttributeError, &_Py_ID(__abstractmethods__));
  ------------------
  |  |  917|     18|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     18|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     18|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1705|     18|        }
 1706|     70|    }
 1707|     70|    return res;
 1708|     70|}
typeobject.c:type_set_abstractmethods:
 1712|     58|{
 1713|     58|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     58|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1714|       |    /* __abstractmethods__ should only be set once on a type, in
 1715|       |       abc.ABCMeta.__new__, so this function doesn't do anything
 1716|       |       special to update subclasses.
 1717|       |    */
 1718|     58|    int abstract, res;
 1719|     58|    PyObject *dict = lookup_tp_dict(type);
 1720|     58|    if (value != NULL) {
  ------------------
  |  Branch (1720:9): [True: 58, False: 0]
  ------------------
 1721|     58|        abstract = PyObject_IsTrue(value);
 1722|     58|        if (abstract < 0)
  ------------------
  |  Branch (1722:13): [True: 0, False: 58]
  ------------------
 1723|      0|            return -1;
 1724|     58|        res = PyDict_SetItem(dict, &_Py_ID(__abstractmethods__), value);
  ------------------
  |  |  917|     58|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     58|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     58|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1725|     58|    }
 1726|      0|    else {
 1727|      0|        abstract = 0;
 1728|      0|        res = PyDict_Pop(dict, &_Py_ID(__abstractmethods__), NULL);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1729|      0|        if (res == 0) {
  ------------------
  |  Branch (1729:13): [True: 0, False: 0]
  ------------------
 1730|      0|            PyErr_SetObject(PyExc_AttributeError, &_Py_ID(__abstractmethods__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1731|      0|            return -1;
 1732|      0|        }
 1733|      0|    }
 1734|     58|    if (res < 0) {
  ------------------
  |  Branch (1734:9): [True: 0, False: 58]
  ------------------
 1735|      0|        return -1;
 1736|      0|    }
 1737|       |
 1738|     58|    BEGIN_TYPE_LOCK();
 1739|     58|    type_modified_unlocked(type);
 1740|     58|    types_stop_world();
 1741|     58|    if (abstract)
  ------------------
  |  Branch (1741:9): [True: 46, False: 12]
  ------------------
 1742|     46|        type_add_flags(type, Py_TPFLAGS_IS_ABSTRACT);
  ------------------
  |  |  540|     46|#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
  ------------------
 1743|     12|    else
 1744|     12|        type_clear_flags(type, Py_TPFLAGS_IS_ABSTRACT);
  ------------------
  |  |  540|     12|#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
  ------------------
 1745|     58|    types_start_world();
 1746|     58|    ASSERT_TYPE_LOCK_HELD();
 1747|     58|    END_TYPE_LOCK();
 1748|       |
 1749|     58|    return 0;
 1750|     58|}
typeobject.c:type_dict:
 2035|    220|{
 2036|    220|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|    220|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 2037|    220|    PyObject *dict = lookup_tp_dict(type);
 2038|    220|    if (dict == NULL) {
  ------------------
  |  Branch (2038:9): [True: 0, False: 220]
  ------------------
 2039|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 2040|      0|    }
 2041|    220|    return PyDictProxy_New(dict);
 2042|    220|}
typeobject.c:type_get_doc:
 2046|     14|{
 2047|     14|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     14|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 2048|     14|    PyObject *result;
 2049|     14|    if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) {
  ------------------
  |  |  503|     14|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2049:9): [True: 12, False: 2]
  |  Branch (2049:52): [True: 12, False: 0]
  ------------------
 2050|     12|        return _PyType_GetDocFromInternalDoc(type->tp_name, type->tp_doc);
 2051|     12|    }
 2052|      2|    PyObject *dict = lookup_tp_dict(type);
 2053|      2|    if (PyDict_GetItemRef(dict, &_Py_ID(__doc__), &result) == 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2053:9): [True: 0, False: 2]
  ------------------
 2054|      0|        result = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2055|      0|    }
 2056|      2|    else if (result) {
  ------------------
  |  Branch (2056:14): [True: 2, False: 0]
  ------------------
 2057|      2|        descrgetfunc descr_get = Py_TYPE(result)->tp_descr_get;
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2058|      2|        if (descr_get) {
  ------------------
  |  Branch (2058:13): [True: 0, False: 2]
  ------------------
 2059|      0|            Py_SETREF(result, descr_get(result, NULL, (PyObject *)type));
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2060|      0|        }
 2061|      2|    }
 2062|      2|    return result;
 2063|     14|}
typeobject.c:type_init:
 4111|    174|{
 4112|    174|    assert(args != NULL && PyTuple_Check(args));
  ------------------
  |  Branch (4112:5): [True: 174, False: 0]
  |  Branch (4112:5): [True: 174, False: 0]
  ------------------
 4113|    174|    assert(kwds == NULL || PyDict_Check(kwds));
  ------------------
  |  Branch (4113:5): [True: 154, False: 20]
  |  Branch (4113:5): [True: 20, False: 0]
  ------------------
 4114|       |
 4115|    174|    if (kwds != NULL && PyTuple_GET_SIZE(args) == 1 &&
  ------------------
  |  |   27|     20|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4115:9): [True: 20, False: 154]
  |  Branch (4115:25): [True: 0, False: 20]
  ------------------
 4116|      0|        PyDict_GET_SIZE(kwds) != 0) {
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4116:9): [True: 0, False: 0]
  ------------------
 4117|      0|        PyErr_SetString(PyExc_TypeError,
 4118|      0|                        "type.__init__() takes no keyword arguments");
 4119|      0|        return -1;
 4120|      0|    }
 4121|       |
 4122|    174|    if ((PyTuple_GET_SIZE(args) != 1 && PyTuple_GET_SIZE(args) != 3)) {
  ------------------
  |  |   27|    174|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if ((PyTuple_GET_SIZE(args) != 1 && PyTuple_GET_SIZE(args) != 3)) {
  ------------------
  |  |   27|    174|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4122:10): [True: 174, False: 0]
  |  Branch (4122:41): [True: 0, False: 174]
  ------------------
 4123|      0|        PyErr_SetString(PyExc_TypeError,
 4124|      0|                        "type.__init__() takes 1 or 3 arguments");
 4125|      0|        return -1;
 4126|      0|    }
 4127|       |
 4128|    174|    return 0;
 4129|    174|}
typeobject.c:type_new:
 5053|    174|{
 5054|    174|    assert(args != NULL && PyTuple_Check(args));
  ------------------
  |  Branch (5054:5): [True: 174, False: 0]
  |  Branch (5054:5): [True: 174, False: 0]
  ------------------
 5055|    174|    assert(kwds == NULL || PyDict_Check(kwds));
  ------------------
  |  Branch (5055:5): [True: 174, False: 0]
  |  Branch (5055:5): [True: 0, False: 0]
  ------------------
 5056|       |
 5057|       |    /* Parse arguments: (name, bases, dict) */
 5058|    174|    PyObject *name, *bases, *orig_dict;
 5059|    174|    if (!PyArg_ParseTuple(args, "UO!O:type.__new__",
  ------------------
  |  Branch (5059:9): [True: 0, False: 174]
  ------------------
 5060|    174|                          &name,
 5061|    174|                          &PyTuple_Type, &bases,
 5062|    174|                          &orig_dict))
 5063|      0|    {
 5064|      0|        return NULL;
 5065|      0|    }
 5066|    174|    if (!PyAnyDict_Check(orig_dict)) {
  ------------------
  |  |   43|    174|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|    174|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|    348|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 174, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5067|      0|        PyErr_Format(PyExc_TypeError,
 5068|      0|                     "type.__new__() argument 3 must be dict or frozendict, not %T",
 5069|      0|                     orig_dict);
 5070|      0|        return NULL;
 5071|      0|    }
 5072|       |
 5073|    174|    type_new_ctx ctx = {
 5074|    174|        .metatype = metatype,
 5075|    174|        .args = args,
 5076|    174|        .kwds = kwds,
 5077|    174|        .orig_dict = orig_dict,
 5078|    174|        .name = name,
 5079|    174|        .bases = bases,
 5080|    174|        .base = NULL,
 5081|    174|        .slots = NULL,
 5082|    174|        .nslot = 0,
 5083|    174|        .add_dict = 0,
 5084|    174|        .add_weak = 0,
 5085|    174|        .may_add_dict = 0,
 5086|    174|        .may_add_weak = 0};
 5087|    174|    PyObject *type = NULL;
 5088|    174|    int res = type_new_get_bases(&ctx, &type);
 5089|    174|    if (res < 0) {
  ------------------
  |  Branch (5089:9): [True: 0, False: 174]
  ------------------
 5090|      0|        assert(PyErr_Occurred());
  ------------------
  |  Branch (5090:9): [True: 0, False: 0]
  ------------------
 5091|      0|        return NULL;
 5092|      0|    }
 5093|    174|    if (res == 1) {
  ------------------
  |  Branch (5093:9): [True: 0, False: 174]
  ------------------
 5094|      0|        assert(type != NULL);
  ------------------
  |  Branch (5094:9): [True: 0, False: 0]
  ------------------
 5095|      0|        return type;
 5096|      0|    }
 5097|    174|    assert(ctx.base != NULL);
  ------------------
  |  Branch (5097:5): [True: 174, False: 0]
  ------------------
 5098|    174|    assert(ctx.bases != NULL);
  ------------------
  |  Branch (5098:5): [True: 174, False: 0]
  ------------------
 5099|       |
 5100|    174|    type = type_new_impl(&ctx);
 5101|    174|    Py_DECREF(ctx.bases);
  ------------------
  |  |  430|    174|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5102|    174|    return type;
 5103|    174|}
typeobject.c:type_new_get_bases:
 4989|    174|{
 4990|    174|    Py_ssize_t nbases = PyTuple_GET_SIZE(ctx->bases);
  ------------------
  |  |   27|    174|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4991|    174|    if (nbases == 0) {
  ------------------
  |  Branch (4991:9): [True: 66, False: 108]
  ------------------
 4992|       |        // Adjust for empty tuple bases
 4993|     66|        ctx->base = &PyBaseObject_Type;
 4994|     66|        PyObject *new_bases = PyTuple_Pack(1, ctx->base);
 4995|     66|        if (new_bases == NULL) {
  ------------------
  |  Branch (4995:13): [True: 0, False: 66]
  ------------------
 4996|      0|            return -1;
 4997|      0|        }
 4998|     66|        ctx->bases = new_bases;
 4999|     66|        return 0;
 5000|     66|    }
 5001|       |
 5002|    240|    for (Py_ssize_t i = 0; i < nbases; i++) {
  ------------------
  |  Branch (5002:28): [True: 132, False: 108]
  ------------------
 5003|    132|        PyObject *base = PyTuple_GET_ITEM(ctx->bases, i);
  ------------------
  |  |   29|    132|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    132|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5003:26): [True: 132, False: 0]
  ------------------
 5004|    132|        if (PyType_Check(base)) {
  ------------------
  |  |  766|    132|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    132|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 132, False: 0]
  |  |  ------------------
  ------------------
 5005|    132|            continue;
 5006|    132|        }
 5007|      0|        int rc = PyObject_HasAttrWithError(base, &_Py_ID(__mro_entries__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5008|      0|        if (rc < 0) {
  ------------------
  |  Branch (5008:13): [True: 0, False: 0]
  ------------------
 5009|      0|            return -1;
 5010|      0|        }
 5011|      0|        if (rc) {
  ------------------
  |  Branch (5011:13): [True: 0, False: 0]
  ------------------
 5012|      0|            PyErr_SetString(PyExc_TypeError,
 5013|      0|                            "type() doesn't support MRO entry resolution; "
 5014|      0|                            "use types.new_class()");
 5015|      0|            return -1;
 5016|      0|        }
 5017|      0|    }
 5018|       |
 5019|       |    // Search the bases for the proper metatype to deal with this
 5020|    108|    PyTypeObject *winner;
 5021|    108|    winner = _PyType_CalculateMetaclass(ctx->metatype, ctx->bases);
 5022|    108|    if (winner == NULL) {
  ------------------
  |  Branch (5022:9): [True: 0, False: 108]
  ------------------
 5023|      0|        return -1;
 5024|      0|    }
 5025|       |
 5026|    108|    if (winner != ctx->metatype) {
  ------------------
  |  Branch (5026:9): [True: 0, False: 108]
  ------------------
 5027|      0|        if (winner->tp_new != type_new) {
  ------------------
  |  Branch (5027:13): [True: 0, False: 0]
  ------------------
 5028|       |            /* Pass it to the winner */
 5029|      0|            *type = winner->tp_new(winner, ctx->args, ctx->kwds);
 5030|      0|            if (*type == NULL) {
  ------------------
  |  Branch (5030:17): [True: 0, False: 0]
  ------------------
 5031|      0|                return -1;
 5032|      0|            }
 5033|      0|            return 1;
 5034|      0|        }
 5035|       |
 5036|      0|        ctx->metatype = winner;
 5037|      0|    }
 5038|       |
 5039|       |    /* Calculate best base, and check that all bases are type objects */
 5040|    108|    PyTypeObject *base = find_best_base(ctx->bases);
 5041|    108|    if (base == NULL) {
  ------------------
  |  Branch (5041:9): [True: 0, False: 108]
  ------------------
 5042|      0|        return -1;
 5043|      0|    }
 5044|       |
 5045|    108|    ctx->base = base;
 5046|    108|    ctx->bases = Py_NewRef(ctx->bases);
  ------------------
  |  |  550|    108|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5047|    108|    return 0;
 5048|    108|}
typeobject.c:type_new_impl:
 4936|    174|{
 4937|    174|    PyTypeObject *type = type_new_init(ctx);
 4938|    174|    if (type == NULL) {
  ------------------
  |  Branch (4938:9): [True: 0, False: 174]
  ------------------
 4939|      0|        return NULL;
 4940|      0|    }
 4941|       |
 4942|    174|    if (type_new_set_attrs(ctx, type) < 0) {
  ------------------
  |  Branch (4942:9): [True: 0, False: 174]
  ------------------
 4943|      0|        goto error;
 4944|      0|    }
 4945|       |
 4946|       |    /* Initialize the rest */
 4947|    174|    if (PyType_Ready(type) < 0) {
  ------------------
  |  Branch (4947:9): [True: 0, False: 174]
  ------------------
 4948|      0|        goto error;
 4949|      0|    }
 4950|       |
 4951|       |    // Put the proper slots in place
 4952|    174|    fixup_slot_dispatchers(type);
 4953|       |
 4954|    174|    if (!_PyDict_HasOnlyStringKeys(type->tp_dict)) {
  ------------------
  |  Branch (4954:9): [True: 0, False: 174]
  ------------------
 4955|      0|        if (PyErr_WarnFormat(
  ------------------
  |  Branch (4955:13): [True: 0, False: 0]
  ------------------
 4956|      0|                PyExc_RuntimeWarning,
 4957|      0|                1,
 4958|      0|                "non-string key in the __dict__ of class %.200s",
 4959|      0|                type->tp_name) == -1)
 4960|      0|        {
 4961|      0|            goto error;
 4962|      0|        }
 4963|      0|    }
 4964|       |
 4965|    174|    if (type_new_set_names(type) < 0) {
  ------------------
  |  Branch (4965:9): [True: 0, False: 174]
  ------------------
 4966|      0|        goto error;
 4967|      0|    }
 4968|       |
 4969|    174|    if (type_new_init_subclass(type, ctx->kwds) < 0) {
  ------------------
  |  Branch (4969:9): [True: 0, False: 174]
  ------------------
 4970|      0|        goto error;
 4971|      0|    }
 4972|       |
 4973|    174|    assert(_PyType_CheckConsistency(type));
  ------------------
  |  Branch (4973:5): [True: 174, False: 0]
  ------------------
 4974|       |#if defined(Py_GIL_DISABLED) && defined(Py_DEBUG) && SIZEOF_VOID_P > 4
 4975|       |    // After this point, other threads can potentally use this type.
 4976|       |    ((PyObject*)type)->ob_flags |= _Py_TYPE_REVEALED_FLAG;
 4977|       |#endif
 4978|       |
 4979|    174|    return (PyObject *)type;
 4980|       |
 4981|      0|error:
 4982|      0|    Py_DECREF(type);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4983|       |    return NULL;
 4984|    174|}
typeobject.c:type_new_init:
 4893|    174|{
 4894|    174|    PyObject *dict = _PyDict_CopyAsDict(ctx->orig_dict);
 4895|    174|    if (dict == NULL) {
  ------------------
  |  Branch (4895:9): [True: 0, False: 174]
  ------------------
 4896|      0|        goto error;
 4897|      0|    }
 4898|       |
 4899|    174|    if (type_new_get_slots(ctx, dict) < 0) {
  ------------------
  |  Branch (4899:9): [True: 0, False: 174]
  ------------------
 4900|      0|        goto error;
 4901|      0|    }
 4902|    174|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (4902:5): [True: 174, False: 0]
  ------------------
 4903|       |
 4904|    174|    if (type_new_slots(ctx, dict) < 0) {
  ------------------
  |  Branch (4904:9): [True: 0, False: 174]
  ------------------
 4905|      0|        goto error;
 4906|      0|    }
 4907|       |
 4908|    174|    PyTypeObject *type = type_new_alloc(ctx);
 4909|    174|    if (type == NULL) {
  ------------------
  |  Branch (4909:9): [True: 0, False: 174]
  ------------------
 4910|      0|        goto error;
 4911|      0|    }
 4912|       |
 4913|    174|    set_tp_dict(type, dict);
 4914|       |
 4915|    174|    PyHeapTypeObject *et = (PyHeapTypeObject*)type;
 4916|    174|    if (ctx->slots && PyTuple_GET_SIZE(ctx->slots)) {
  ------------------
  |  |   27|     64|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (27:30): [True: 6, False: 58]
  |  |  ------------------
  ------------------
  |  Branch (4916:9): [True: 64, False: 110]
  ------------------
 4917|      6|        et->ht_slots = ctx->slots;
 4918|      6|        ctx->slots = NULL;
 4919|      6|    }
 4920|    168|    else {
 4921|    168|        et->ht_slots = NULL;
 4922|    168|        Py_CLEAR(ctx->slots);
  ------------------
  |  |  484|    168|    do { \
  |  |  485|    168|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|    168|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|    168|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|    168|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|    168|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 58, False: 110]
  |  |  ------------------
  |  |  488|     58|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     58|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     58|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     58|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     58|        } \
  |  |  491|    168|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 168]
  |  |  ------------------
  ------------------
 4923|    168|    }
 4924|       |
 4925|    174|    return type;
 4926|       |
 4927|      0|error:
 4928|      0|    Py_CLEAR(ctx->slots);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4929|      0|    Py_XDECREF(dict);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4930|       |    return NULL;
 4931|    174|}
typeobject.c:type_new_get_slots:
 4862|    174|{
 4863|    174|    PyObject *slots = PyDict_GetItemWithError(dict, &_Py_ID(__slots__));
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4864|    174|    if (slots == NULL) {
  ------------------
  |  Branch (4864:9): [True: 110, False: 64]
  ------------------
 4865|    110|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (4865:13): [True: 0, False: 110]
  ------------------
 4866|      0|            return -1;
 4867|      0|        }
 4868|    110|        ctx->slots = NULL;
 4869|    110|        ctx->nslot = 0;
 4870|    110|        return 0;
 4871|    110|    }
 4872|       |
 4873|       |    // Make it into a tuple
 4874|     64|    PyObject *new_slots;
 4875|     64|    if (PyUnicode_Check(slots)) {
  ------------------
  |  |  103|     64|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     64|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 64]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4876|      0|        new_slots = PyTuple_Pack(1, slots);
 4877|      0|    }
 4878|     64|    else {
 4879|     64|        new_slots = PySequence_Tuple(slots);
 4880|     64|    }
 4881|     64|    if (new_slots == NULL) {
  ------------------
  |  Branch (4881:9): [True: 0, False: 64]
  ------------------
 4882|      0|        return -1;
 4883|      0|    }
 4884|     64|    assert(PyTuple_CheckExact(new_slots));
  ------------------
  |  Branch (4884:5): [True: 64, False: 0]
  ------------------
 4885|     64|    ctx->slots = new_slots;
 4886|     64|    ctx->nslot = PyTuple_GET_SIZE(new_slots);
  ------------------
  |  |   27|     64|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4887|     64|    return 0;
 4888|     64|}
typeobject.c:type_new_slots:
 4375|    174|{
 4376|       |    // Check for a __slots__ sequence variable in dict, and count it
 4377|    174|    ctx->add_dict = 0;
 4378|    174|    ctx->add_weak = 0;
 4379|    174|    ctx->may_add_dict = (ctx->base->tp_dictoffset == 0);
 4380|    174|    ctx->may_add_weak = (ctx->base->tp_weaklistoffset == 0);
 4381|       |
 4382|    174|    if (ctx->slots == NULL) {
  ------------------
  |  Branch (4382:9): [True: 110, False: 64]
  ------------------
 4383|    110|        if (ctx->may_add_dict) {
  ------------------
  |  Branch (4383:13): [True: 62, False: 48]
  ------------------
 4384|     62|            ctx->add_dict++;
 4385|     62|        }
 4386|    110|        if (ctx->may_add_weak && ctx->base->tp_itemsize == 0) {
  ------------------
  |  Branch (4386:13): [True: 78, False: 32]
  |  Branch (4386:34): [True: 76, False: 2]
  ------------------
 4387|     76|            ctx->add_weak++;
 4388|     76|        }
 4389|    110|    }
 4390|     64|    else {
 4391|       |        /* Have slots */
 4392|     64|        if (type_new_slots_impl(ctx, dict) < 0) {
  ------------------
  |  Branch (4392:13): [True: 0, False: 64]
  ------------------
 4393|      0|            return -1;
 4394|      0|        }
 4395|     64|    }
 4396|    174|    return 0;
 4397|    174|}
typeobject.c:type_new_slots_impl:
 4353|     64|{
 4354|     64|    if (type_new_visit_slots(ctx) < 0) {
  ------------------
  |  Branch (4354:9): [True: 0, False: 64]
  ------------------
 4355|      0|        return -1;
 4356|      0|    }
 4357|       |
 4358|     64|    PyObject *new_slots = type_new_copy_slots(ctx, dict);
 4359|     64|    if (new_slots == NULL) {
  ------------------
  |  Branch (4359:9): [True: 0, False: 64]
  ------------------
 4360|      0|        return -1;
 4361|      0|    }
 4362|     64|    assert(PyTuple_CheckExact(new_slots));
  ------------------
  |  Branch (4362:5): [True: 64, False: 0]
  ------------------
 4363|       |
 4364|     64|    Py_XSETREF(ctx->slots, new_slots);
  ------------------
  |  |  374|     64|    do { \
  |  |  375|     64|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|     64|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|     64|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|     64|        *_tmp_dst_ptr = (src); \
  |  |  378|     64|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|     64|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|     64|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 64]
  |  |  ------------------
  ------------------
 4365|     64|    ctx->nslot = PyTuple_GET_SIZE(new_slots);
  ------------------
  |  |   27|     64|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4366|       |
 4367|       |    /* Secondary bases may provide weakrefs or dict */
 4368|     64|    type_new_slots_bases(ctx);
 4369|     64|    return 0;
 4370|     64|}
typeobject.c:type_new_visit_slots:
 4207|     64|{
 4208|     64|    PyObject *slots = ctx->slots;
 4209|     64|    Py_ssize_t nslot = ctx->nslot;
 4210|     76|    for (Py_ssize_t i = 0; i < nslot; i++) {
  ------------------
  |  Branch (4210:28): [True: 12, False: 64]
  ------------------
 4211|     12|        PyObject *name = PyTuple_GET_ITEM(slots, i);
  ------------------
  |  |   29|     12|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     12|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4211:26): [True: 12, False: 0]
  ------------------
 4212|     12|        if (!valid_identifier(name)) {
  ------------------
  |  Branch (4212:13): [True: 0, False: 12]
  ------------------
 4213|      0|            return -1;
 4214|      0|        }
 4215|     12|        assert(PyUnicode_Check(name));
  ------------------
  |  Branch (4215:9): [True: 12, False: 0]
  ------------------
 4216|     12|        if (_PyUnicode_Equal(name, &_Py_ID(__dict__))) {
  ------------------
  |  |  917|     12|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     12|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     12|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4216:13): [True: 0, False: 12]
  ------------------
 4217|      0|            if (!ctx->may_add_dict || ctx->add_dict != 0) {
  ------------------
  |  Branch (4217:17): [True: 0, False: 0]
  |  Branch (4217:39): [True: 0, False: 0]
  ------------------
 4218|      0|                PyErr_SetString(PyExc_TypeError,
 4219|      0|                    "__dict__ slot disallowed: "
 4220|      0|                    "we already got one");
 4221|      0|                return -1;
 4222|      0|            }
 4223|      0|            ctx->add_dict++;
 4224|      0|        }
 4225|     12|        if (_PyUnicode_Equal(name, &_Py_ID(__weakref__))) {
  ------------------
  |  |  917|     12|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     12|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     12|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4225:13): [True: 2, False: 10]
  ------------------
 4226|      2|            if (!ctx->may_add_weak || ctx->add_weak != 0) {
  ------------------
  |  Branch (4226:17): [True: 0, False: 2]
  |  Branch (4226:39): [True: 0, False: 2]
  ------------------
 4227|      0|                PyErr_SetString(PyExc_TypeError,
 4228|      0|                    "__weakref__ slot disallowed: "
 4229|      0|                    "we already got one");
 4230|      0|                return -1;
 4231|      0|            }
 4232|      2|            ctx->add_weak++;
 4233|      2|        }
 4234|     12|    }
 4235|     64|    return 0;
 4236|     64|}
typeobject.c:valid_identifier:
 4094|     12|{
 4095|     12|    if (!PyUnicode_Check(s)) {
  ------------------
  |  |  103|     12|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     12|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4095:9): [True: 0, False: 12]
  ------------------
 4096|      0|        PyErr_Format(PyExc_TypeError,
 4097|      0|                     "__slots__ items must be strings, not '%.200s'",
 4098|      0|                     Py_TYPE(s)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4099|      0|        return 0;
 4100|      0|    }
 4101|     12|    if (!PyUnicode_IsIdentifier(s)) {
  ------------------
  |  Branch (4101:9): [True: 0, False: 12]
  ------------------
 4102|      0|        PyErr_SetString(PyExc_TypeError,
 4103|      0|                        "__slots__ must be identifiers");
 4104|      0|        return 0;
 4105|      0|    }
 4106|     12|    return 1;
 4107|     12|}
typeobject.c:type_new_copy_slots:
 4245|     64|{
 4246|     64|    PyObject *slots = ctx->slots;
 4247|     64|    Py_ssize_t nslot = ctx->nslot;
 4248|       |
 4249|     64|    Py_ssize_t new_nslot = nslot - ctx->add_dict - ctx->add_weak;
 4250|     64|    PyObject *new_slots = PyList_New(new_nslot);
 4251|     64|    if (new_slots == NULL) {
  ------------------
  |  Branch (4251:9): [True: 0, False: 64]
  ------------------
 4252|      0|        return NULL;
 4253|      0|    }
 4254|       |
 4255|     64|    Py_ssize_t j = 0;
 4256|     76|    for (Py_ssize_t i = 0; i < nslot; i++) {
  ------------------
  |  Branch (4256:28): [True: 12, False: 64]
  ------------------
 4257|     12|        PyObject *slot = PyTuple_GET_ITEM(slots, i);
  ------------------
  |  |   29|     12|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     12|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4257:26): [True: 12, False: 0]
  ------------------
 4258|     12|        if ((ctx->add_dict && _PyUnicode_Equal(slot, &_Py_ID(__dict__))) ||
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4258:14): [True: 0, False: 12]
  |  Branch (4258:31): [True: 0, False: 0]
  ------------------
 4259|     12|            (ctx->add_weak && _PyUnicode_Equal(slot, &_Py_ID(__weakref__))))
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4259:14): [True: 2, False: 10]
  |  Branch (4259:31): [True: 2, False: 0]
  ------------------
 4260|      2|        {
 4261|      2|            continue;
 4262|      2|        }
 4263|       |
 4264|     10|        slot =_Py_Mangle(ctx->name, slot);
 4265|     10|        if (!slot) {
  ------------------
  |  Branch (4265:13): [True: 0, False: 10]
  ------------------
 4266|      0|            goto error;
 4267|      0|        }
 4268|     10|        PyList_SET_ITEM(new_slots, j, slot);
  ------------------
  |  |   50|     10|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4269|       |
 4270|     10|        int r = PyDict_Contains(dict, slot);
 4271|     10|        if (r < 0) {
  ------------------
  |  Branch (4271:13): [True: 0, False: 10]
  ------------------
 4272|      0|            goto error;
 4273|      0|        }
 4274|     10|        if (r > 0) {
  ------------------
  |  Branch (4274:13): [True: 0, False: 10]
  ------------------
 4275|       |            /* CPython inserts these names (when needed)
 4276|       |               into the namespace when creating a class.  They will be deleted
 4277|       |               below so won't act as class variables. */
 4278|      0|            if (!_PyUnicode_Equal(slot, &_Py_ID(__qualname__)) &&
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4278:17): [True: 0, False: 0]
  ------------------
 4279|      0|                !_PyUnicode_Equal(slot, &_Py_ID(__classcell__)) &&
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4279:17): [True: 0, False: 0]
  ------------------
 4280|      0|                !_PyUnicode_Equal(slot, &_Py_ID(__classdictcell__)))
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4280:17): [True: 0, False: 0]
  ------------------
 4281|      0|            {
 4282|      0|                PyErr_Format(PyExc_ValueError,
 4283|      0|                             "%R in __slots__ conflicts with class variable",
 4284|      0|                             slot);
 4285|      0|                goto error;
 4286|      0|            }
 4287|      0|        }
 4288|       |
 4289|     10|        j++;
 4290|     10|    }
 4291|     64|    assert(j == new_nslot);
  ------------------
  |  Branch (4291:5): [True: 64, False: 0]
  ------------------
 4292|       |
 4293|     64|    if (PyList_Sort(new_slots) == -1) {
  ------------------
  |  Branch (4293:9): [True: 0, False: 64]
  ------------------
 4294|      0|        goto error;
 4295|      0|    }
 4296|       |
 4297|     64|    PyObject *tuple = PyList_AsTuple(new_slots);
 4298|     64|    Py_DECREF(new_slots);
  ------------------
  |  |  430|     64|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4299|     64|    if (tuple == NULL) {
  ------------------
  |  Branch (4299:9): [True: 0, False: 64]
  ------------------
 4300|      0|        return NULL;
 4301|      0|    }
 4302|       |
 4303|     64|    assert(PyTuple_GET_SIZE(tuple) == new_nslot);
  ------------------
  |  Branch (4303:5): [True: 64, False: 0]
  ------------------
 4304|     64|    return tuple;
 4305|       |
 4306|      0|error:
 4307|      0|    Py_DECREF(new_slots);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4308|       |    return NULL;
 4309|     64|}
typeobject.c:type_new_slots_bases:
 4314|     64|{
 4315|     64|    Py_ssize_t nbases = PyTuple_GET_SIZE(ctx->bases);
  ------------------
  |  |   27|     64|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4316|     64|    if (nbases > 1 &&
  ------------------
  |  Branch (4316:9): [True: 10, False: 54]
  ------------------
 4317|     10|        ((ctx->may_add_dict && ctx->add_dict == 0) ||
  ------------------
  |  Branch (4317:11): [True: 10, False: 0]
  |  Branch (4317:32): [True: 10, False: 0]
  ------------------
 4318|      0|         (ctx->may_add_weak && ctx->add_weak == 0)))
  ------------------
  |  Branch (4318:11): [True: 0, False: 0]
  |  Branch (4318:32): [True: 0, False: 0]
  ------------------
 4319|     10|    {
 4320|     32|        for (Py_ssize_t i = 0; i < nbases; i++) {
  ------------------
  |  Branch (4320:32): [True: 22, False: 10]
  ------------------
 4321|     22|            PyObject *obj = PyTuple_GET_ITEM(ctx->bases, i);
  ------------------
  |  |   29|     22|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     22|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4321:29): [True: 22, False: 0]
  ------------------
 4322|     22|            if (obj == (PyObject *)ctx->base) {
  ------------------
  |  Branch (4322:17): [True: 10, False: 12]
  ------------------
 4323|       |                /* Skip primary base */
 4324|     10|                continue;
 4325|     10|            }
 4326|     12|            PyTypeObject *base = _PyType_CAST(obj);
  ------------------
  |  |  770|     12|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (4326:34): [True: 12, False: 0]
  ------------------
 4327|       |
 4328|     12|            if (ctx->may_add_dict && ctx->add_dict == 0 &&
  ------------------
  |  Branch (4328:17): [True: 12, False: 0]
  |  Branch (4328:38): [True: 12, False: 0]
  ------------------
 4329|     12|                base->tp_dictoffset != 0)
  ------------------
  |  Branch (4329:17): [True: 0, False: 12]
  ------------------
 4330|      0|            {
 4331|      0|                ctx->add_dict++;
 4332|      0|            }
 4333|     12|            if (ctx->may_add_weak && ctx->add_weak == 0 &&
  ------------------
  |  Branch (4333:17): [True: 12, False: 0]
  |  Branch (4333:38): [True: 12, False: 0]
  ------------------
 4334|     12|                base->tp_weaklistoffset != 0)
  ------------------
  |  Branch (4334:17): [True: 0, False: 12]
  ------------------
 4335|      0|            {
 4336|      0|                ctx->add_weak++;
 4337|      0|            }
 4338|     12|            if (ctx->may_add_dict && ctx->add_dict == 0) {
  ------------------
  |  Branch (4338:17): [True: 12, False: 0]
  |  Branch (4338:38): [True: 12, False: 0]
  ------------------
 4339|     12|                continue;
 4340|     12|            }
 4341|      0|            if (ctx->may_add_weak && ctx->add_weak == 0) {
  ------------------
  |  Branch (4341:17): [True: 0, False: 0]
  |  Branch (4341:38): [True: 0, False: 0]
  ------------------
 4342|      0|                continue;
 4343|      0|            }
 4344|       |            /* Nothing more to check */
 4345|      0|            break;
 4346|      0|        }
 4347|     10|    }
 4348|     64|}
typeobject.c:type_new_alloc:
 4402|    174|{
 4403|    174|    PyTypeObject *metatype = ctx->metatype;
 4404|    174|    PyTypeObject *type;
 4405|       |
 4406|       |    // Allocate the type object
 4407|    174|    type = (PyTypeObject *)metatype->tp_alloc(metatype, ctx->nslot);
 4408|    174|    if (type == NULL) {
  ------------------
  |  Branch (4408:9): [True: 0, False: 174]
  ------------------
 4409|      0|        return NULL;
 4410|      0|    }
 4411|    174|    PyHeapTypeObject *et = (PyHeapTypeObject *)type;
 4412|       |
 4413|       |    // Initialize tp_flags.
 4414|       |    // All heap types need GC, since we can create a reference cycle by storing
 4415|       |    // an instance on one of its parents.
 4416|    174|    type_set_flags(type, Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE |
  ------------------
  |  |  560|    174|#define Py_TPFLAGS_DEFAULT  ( \
  |  |  561|    174|                 Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | \
  |  |  ------------------
  |  |  |  |  530|    174|#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0
  |  |  ------------------
  |  |  562|    174|                0)
  ------------------
                  type_set_flags(type, Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE |
  ------------------
  |  |  503|    174|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
 4417|    174|                   Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC);
  ------------------
  |  |  506|    174|#define Py_TPFLAGS_BASETYPE (1UL << 10)
  ------------------
                                 Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC);
  ------------------
  |  |  524|    174|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
 4418|       |
 4419|       |    // Initialize essential fields
 4420|    174|    type->tp_as_async = &et->as_async;
 4421|    174|    type->tp_as_number = &et->as_number;
 4422|    174|    type->tp_as_sequence = &et->as_sequence;
 4423|    174|    type->tp_as_mapping = &et->as_mapping;
 4424|    174|    type->tp_as_buffer = &et->as_buffer;
 4425|       |
 4426|    174|    set_tp_bases(type, Py_NewRef(ctx->bases), 1);
  ------------------
  |  |  550|    174|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4427|    174|    type->tp_base = (PyTypeObject *)Py_NewRef(ctx->base);
  ------------------
  |  |  550|    174|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4428|       |
 4429|    174|    type->tp_dealloc = subtype_dealloc;
 4430|       |    /* Always override allocation strategy to use regular heap */
 4431|    174|    type->tp_alloc = PyType_GenericAlloc;
 4432|    174|    type->tp_free = PyObject_GC_Del;
 4433|       |
 4434|    174|    type->tp_traverse = subtype_traverse;
 4435|    174|    type->tp_clear = subtype_clear;
 4436|       |
 4437|    174|    et->ht_name = Py_NewRef(ctx->name);
  ------------------
  |  |  550|    174|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4438|    174|    et->ht_module = NULL;
 4439|    174|    et->_ht_tpname = NULL;
 4440|    174|    et->ht_token = NULL;
 4441|       |
 4442|       |#ifdef Py_GIL_DISABLED
 4443|       |    et->unique_id = _PyObject_AssignUniqueId((PyObject *)et);
 4444|       |#endif
 4445|       |
 4446|    174|    return type;
 4447|    174|}
typeobject.c:subtype_traverse:
 2603|     80|{
 2604|     80|    PyTypeObject *type, *base;
 2605|     80|    traverseproc basetraverse;
 2606|       |
 2607|       |    /* Find the nearest base with a different tp_traverse,
 2608|       |       and traverse slots while we're at it */
 2609|     80|    type = Py_TYPE(self);
  ------------------
  |  |  213|     80|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2610|     80|    base = type;
 2611|    160|    while ((basetraverse = base->tp_traverse) == subtype_traverse) {
  ------------------
  |  Branch (2611:12): [True: 80, False: 80]
  ------------------
 2612|     80|        if (Py_SIZE(base)) {
  ------------------
  |  |  214|     80|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (214:23): [True: 0, False: 80]
  |  |  ------------------
  ------------------
 2613|      0|            int err = traverse_slots(base, self, visit, arg);
 2614|      0|            if (err)
  ------------------
  |  Branch (2614:17): [True: 0, False: 0]
  ------------------
 2615|      0|                return err;
 2616|      0|        }
 2617|     80|        base = base->tp_base;
 2618|     80|        assert(base);
  ------------------
  |  Branch (2618:9): [True: 80, False: 0]
  ------------------
 2619|     80|    }
 2620|       |
 2621|     80|    if (type->tp_dictoffset != base->tp_dictoffset) {
  ------------------
  |  Branch (2621:9): [True: 80, False: 0]
  ------------------
 2622|     80|        assert(base->tp_dictoffset == 0);
  ------------------
  |  Branch (2622:9): [True: 80, False: 0]
  ------------------
 2623|     80|        if (type->tp_flags & Py_TPFLAGS_MANAGED_DICT) {
  ------------------
  |  |  482|     80|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (2623:13): [True: 80, False: 0]
  ------------------
 2624|     80|            assert(type->tp_dictoffset == -1);
  ------------------
  |  Branch (2624:13): [True: 80, False: 0]
  ------------------
 2625|     80|            int err = PyObject_VisitManagedDict(self, visit, arg);
 2626|     80|            if (err) {
  ------------------
  |  Branch (2626:17): [True: 0, False: 80]
  ------------------
 2627|      0|                return err;
 2628|      0|            }
 2629|     80|        }
 2630|      0|        else {
 2631|      0|            PyObject **dictptr = _PyObject_ComputedDictPointer(self);
 2632|      0|            if (dictptr && *dictptr) {
  ------------------
  |  Branch (2632:17): [True: 0, False: 0]
  |  Branch (2632:28): [True: 0, False: 0]
  ------------------
 2633|      0|                Py_VISIT(*dictptr);
  ------------------
  |  |  194|      0|    do {                                                                \
  |  |  195|      0|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  196|      0|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      0|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  198|      0|                return vret;                                            \
  |  |  199|      0|        }                                                               \
  |  |  200|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2634|      0|            }
 2635|      0|        }
 2636|     80|    }
 2637|       |
 2638|     80|    if (type->tp_flags & Py_TPFLAGS_HEAPTYPE
  ------------------
  |  |  503|    160|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2638:9): [True: 80, False: 0]
  ------------------
 2639|     80|        && (!basetraverse || !(base->tp_flags & Py_TPFLAGS_HEAPTYPE))) {
  ------------------
  |  |  503|      0|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2639:13): [True: 80, False: 0]
  |  Branch (2639:30): [True: 0, False: 0]
  ------------------
 2640|       |        /* For a heaptype, the instances count as references
 2641|       |           to the type.          Traverse the type so the collector
 2642|       |           can find cycles involving this link.
 2643|       |           Skip this visit if basetraverse belongs to a heap type: in that
 2644|       |           case, basetraverse will visit the type when we call it later.
 2645|       |           */
 2646|     80|        Py_VISIT(type);
  ------------------
  |  |  194|     80|    do {                                                                \
  |  |  195|     80|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 80, False: 0]
  |  |  ------------------
  |  |  196|     80|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|     80|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     80|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|     80|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 80]
  |  |  ------------------
  |  |  198|     80|                return vret;                                            \
  |  |  199|     80|        }                                                               \
  |  |  200|     80|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 80]
  |  |  ------------------
  ------------------
 2647|     80|    }
 2648|       |
 2649|     80|    if (basetraverse)
  ------------------
  |  Branch (2649:9): [True: 0, False: 80]
  ------------------
 2650|      0|        return basetraverse(self, visit, arg);
 2651|     80|    return 0;
 2652|     80|}
typeobject.c:set_tp_dict:
  554|    666|{
  555|    666|    if (self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (555:9): [True: 414, False: 252]
  ------------------
  556|    414|        PyInterpreterState *interp = _PyInterpreterState_GET();
  557|    414|        managed_static_type_state *state = _PyStaticType_GetState(interp, self);
  558|    414|        assert(state != NULL);
  ------------------
  |  Branch (558:9): [True: 414, False: 0]
  ------------------
  559|    414|        state->tp_dict = dict;
  560|    414|        return;
  561|    414|    }
  562|    252|    self->tp_dict = dict;
  563|    252|}
typeobject.c:type_new_set_attrs:
 4797|    174|{
 4798|    174|    if (type_new_set_name(ctx, type) < 0) {
  ------------------
  |  Branch (4798:9): [True: 0, False: 174]
  ------------------
 4799|      0|        return -1;
 4800|      0|    }
 4801|       |
 4802|    174|    PyObject *dict = lookup_tp_dict(type);
 4803|    174|    assert(dict);
  ------------------
  |  Branch (4803:5): [True: 174, False: 0]
  ------------------
 4804|       |
 4805|    174|    if (type_new_set_module(dict) < 0) {
  ------------------
  |  Branch (4805:9): [True: 0, False: 174]
  ------------------
 4806|      0|        return -1;
 4807|      0|    }
 4808|       |
 4809|    174|    if (type_new_set_ht_name(type, dict) < 0) {
  ------------------
  |  Branch (4809:9): [True: 0, False: 174]
  ------------------
 4810|      0|        return -1;
 4811|      0|    }
 4812|       |
 4813|    174|    if (type_new_set_doc(type, dict) < 0) {
  ------------------
  |  Branch (4813:9): [True: 0, False: 174]
  ------------------
 4814|      0|        return -1;
 4815|      0|    }
 4816|       |
 4817|       |    /* Special-case __new__: if it's a plain function,
 4818|       |       make it a static function */
 4819|    174|    if (type_new_staticmethod(dict, &_Py_ID(__new__)) < 0) {
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4819:9): [True: 0, False: 174]
  ------------------
 4820|      0|        return -1;
 4821|      0|    }
 4822|       |
 4823|       |    /* Special-case __init_subclass__ and __class_getitem__:
 4824|       |       if they are plain functions, make them classmethods */
 4825|    174|    if (type_new_classmethod(dict, &_Py_ID(__init_subclass__)) < 0) {
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4825:9): [True: 0, False: 174]
  ------------------
 4826|      0|        return -1;
 4827|      0|    }
 4828|    174|    if (type_new_classmethod(dict, &_Py_ID(__class_getitem__)) < 0) {
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4828:9): [True: 0, False: 174]
  ------------------
 4829|      0|        return -1;
 4830|      0|    }
 4831|       |
 4832|    174|    if (type_new_descriptors(ctx, type, dict) < 0) {
  ------------------
  |  Branch (4832:9): [True: 0, False: 174]
  ------------------
 4833|      0|        return -1;
 4834|      0|    }
 4835|       |
 4836|    174|    type_new_set_slots(ctx, type);
 4837|       |
 4838|    174|    if (type_new_set_classcell(type, dict) < 0) {
  ------------------
  |  Branch (4838:9): [True: 0, False: 174]
  ------------------
 4839|      0|        return -1;
 4840|      0|    }
 4841|    174|    if (type_new_set_classdictcell(dict) < 0) {
  ------------------
  |  Branch (4841:9): [True: 0, False: 174]
  ------------------
 4842|      0|        return -1;
 4843|      0|    }
 4844|       |
 4845|       |#ifdef Py_GIL_DISABLED
 4846|       |    // enable deferred reference counting on functions and descriptors
 4847|       |    Py_ssize_t pos = 0;
 4848|       |    PyObject *key, *value;
 4849|       |    while (PyDict_Next(dict, &pos, &key, &value)) {
 4850|       |        if (PyFunction_Check(value) || Py_TYPE(value)->tp_descr_get != NULL) {
 4851|       |            PyUnstable_Object_EnableDeferredRefcount(value);
 4852|       |        }
 4853|       |    }
 4854|       |#endif
 4855|       |
 4856|    174|    return 0;
 4857|    174|}
typeobject.c:type_new_set_name:
 4452|    174|{
 4453|    174|    Py_ssize_t name_size;
 4454|    174|    type->tp_name = PyUnicode_AsUTF8AndSize(ctx->name, &name_size);
 4455|    174|    if (!type->tp_name) {
  ------------------
  |  Branch (4455:9): [True: 0, False: 174]
  ------------------
 4456|      0|        return -1;
 4457|      0|    }
 4458|    174|    if (strlen(type->tp_name) != (size_t)name_size) {
  ------------------
  |  Branch (4458:9): [True: 0, False: 174]
  ------------------
 4459|      0|        PyErr_SetString(PyExc_ValueError,
 4460|      0|                        "type name must not contain null characters");
 4461|      0|        return -1;
 4462|      0|    }
 4463|    174|    return 0;
 4464|    174|}
typeobject.c:type_new_set_module:
 4470|    174|{
 4471|    174|    int r = PyDict_Contains(dict, &_Py_ID(__module__));
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4472|    174|    if (r < 0) {
  ------------------
  |  Branch (4472:9): [True: 0, False: 174]
  ------------------
 4473|      0|        return -1;
 4474|      0|    }
 4475|    174|    if (r > 0) {
  ------------------
  |  Branch (4475:9): [True: 172, False: 2]
  ------------------
 4476|    172|        return 0;
 4477|    172|    }
 4478|       |
 4479|      2|    PyObject *globals = PyEval_GetGlobals();
 4480|      2|    if (globals == NULL) {
  ------------------
  |  Branch (4480:9): [True: 0, False: 2]
  ------------------
 4481|      0|        return 0;
 4482|      0|    }
 4483|       |
 4484|      2|    PyObject *module;
 4485|      2|    r = PyDict_GetItemRef(globals, &_Py_ID(__name__), &module);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4486|      2|    if (module) {
  ------------------
  |  Branch (4486:9): [True: 2, False: 0]
  ------------------
 4487|      2|        r = PyDict_SetItem(dict, &_Py_ID(__module__), module);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4488|      2|        Py_DECREF(module);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4489|      2|    }
 4490|      2|    return r;
 4491|      2|}
typeobject.c:type_new_set_ht_name:
 4498|    174|{
 4499|    174|    PyHeapTypeObject *et = (PyHeapTypeObject *)type;
 4500|    174|    PyObject *qualname;
 4501|    174|    if (PyDict_GetItemRef(dict, &_Py_ID(__qualname__), &qualname) < 0) {
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4501:9): [True: 0, False: 174]
  ------------------
 4502|      0|        return -1;
 4503|      0|    }
 4504|    174|    if (qualname != NULL) {
  ------------------
  |  Branch (4504:9): [True: 168, False: 6]
  ------------------
 4505|    168|        if (!PyUnicode_Check(qualname)) {
  ------------------
  |  |  103|    168|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    168|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4505:13): [True: 0, False: 168]
  ------------------
 4506|      0|            PyErr_Format(PyExc_TypeError,
 4507|      0|                    "type __qualname__ must be a str, not %s",
 4508|      0|                    Py_TYPE(qualname)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4509|      0|            Py_DECREF(qualname);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4510|      0|            return -1;
 4511|      0|        }
 4512|    168|        et->ht_qualname = qualname;
 4513|    168|        if (PyDict_DelItem(dict, &_Py_ID(__qualname__)) < 0) {
  ------------------
  |  |  917|    168|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    168|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    168|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4513:13): [True: 0, False: 168]
  ------------------
 4514|      0|            return -1;
 4515|      0|        }
 4516|    168|    }
 4517|      6|    else {
 4518|      6|        et->ht_qualname = Py_NewRef(et->ht_name);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4519|      6|    }
 4520|    174|    return 0;
 4521|    174|}
typeobject.c:type_new_set_doc:
 4529|    174|{
 4530|    174|    PyObject *doc = PyDict_GetItemWithError(dict, &_Py_ID(__doc__));
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4531|    174|    if (doc == NULL) {
  ------------------
  |  Branch (4531:9): [True: 82, False: 92]
  ------------------
 4532|     82|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (4532:13): [True: 0, False: 82]
  ------------------
 4533|      0|            return -1;
 4534|      0|        }
 4535|       |        // no __doc__ key
 4536|     82|        return 0;
 4537|     82|    }
 4538|     92|    if (!PyUnicode_Check(doc)) {
  ------------------
  |  |  103|     92|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     92|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4538:9): [True: 0, False: 92]
  ------------------
 4539|       |        // ignore non-string __doc__
 4540|      0|        return 0;
 4541|      0|    }
 4542|       |
 4543|     92|    const char *doc_str = PyUnicode_AsUTF8(doc);
 4544|     92|    if (doc_str == NULL) {
  ------------------
  |  Branch (4544:9): [True: 0, False: 92]
  ------------------
 4545|      0|        return -1;
 4546|      0|    }
 4547|       |
 4548|       |    // Silently truncate the docstring if it contains a null byte
 4549|     92|    Py_ssize_t size = strlen(doc_str) + 1;
 4550|     92|    char *tp_doc = (char *)PyMem_Malloc(size);
 4551|     92|    if (tp_doc == NULL) {
  ------------------
  |  Branch (4551:9): [True: 0, False: 92]
  ------------------
 4552|      0|        PyErr_NoMemory();
 4553|      0|        return -1;
 4554|      0|    }
 4555|       |
 4556|     92|    memcpy(tp_doc, doc_str, size);
 4557|     92|    type->tp_doc = tp_doc;
 4558|     92|    return 0;
 4559|     92|}
typeobject.c:type_new_staticmethod:
 4564|    174|{
 4565|    174|    PyObject *func = PyDict_GetItemWithError(dict, attr);
 4566|    174|    if (func == NULL) {
  ------------------
  |  Branch (4566:9): [True: 164, False: 10]
  ------------------
 4567|    164|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (4567:13): [True: 0, False: 164]
  ------------------
 4568|      0|            return -1;
 4569|      0|        }
 4570|    164|        return 0;
 4571|    164|    }
 4572|     10|    if (!PyFunction_Check(func)) {
  ------------------
  |  |   68|     10|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|     10|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4572:9): [True: 0, False: 10]
  ------------------
 4573|      0|        return 0;
 4574|      0|    }
 4575|       |
 4576|     10|    PyObject *static_func = PyStaticMethod_New(func);
 4577|     10|    if (static_func == NULL) {
  ------------------
  |  Branch (4577:9): [True: 0, False: 10]
  ------------------
 4578|      0|        return -1;
 4579|      0|    }
 4580|     10|    if (PyDict_SetItem(dict, attr, static_func) < 0) {
  ------------------
  |  Branch (4580:9): [True: 0, False: 10]
  ------------------
 4581|      0|        Py_DECREF(static_func);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4582|      0|        return -1;
 4583|      0|    }
 4584|     10|    Py_DECREF(static_func);
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4585|     10|    return 0;
 4586|     10|}
typeobject.c:type_new_classmethod:
 4591|    348|{
 4592|    348|    PyObject *func = PyDict_GetItemWithError(dict, attr);
 4593|    348|    if (func == NULL) {
  ------------------
  |  Branch (4593:9): [True: 334, False: 14]
  ------------------
 4594|    334|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (4594:13): [True: 0, False: 334]
  ------------------
 4595|      0|            return -1;
 4596|      0|        }
 4597|    334|        return 0;
 4598|    334|    }
 4599|     14|    if (!PyFunction_Check(func)) {
  ------------------
  |  |   68|     14|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|     14|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4599:9): [True: 14, False: 0]
  ------------------
 4600|     14|        return 0;
 4601|     14|    }
 4602|       |
 4603|      0|    PyObject *method = PyClassMethod_New(func);
 4604|      0|    if (method == NULL) {
  ------------------
  |  Branch (4604:9): [True: 0, False: 0]
  ------------------
 4605|      0|        return -1;
 4606|      0|    }
 4607|       |
 4608|      0|    if (PyDict_SetItem(dict, attr, method) < 0) {
  ------------------
  |  Branch (4608:9): [True: 0, False: 0]
  ------------------
 4609|      0|        Py_DECREF(method);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4610|      0|        return -1;
 4611|      0|    }
 4612|      0|    Py_DECREF(method);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4613|      0|    return 0;
 4614|      0|}
typeobject.c:type_new_descriptors:
 4646|    174|{
 4647|    174|    PyHeapTypeObject *et = (PyHeapTypeObject *)type;
 4648|    174|    Py_ssize_t slotoffset = ctx->base->tp_basicsize;
 4649|    174|    if (et->ht_slots != NULL) {
  ------------------
  |  Branch (4649:9): [True: 6, False: 168]
  ------------------
 4650|      6|        PyMemberDef *mp = _PyHeapType_GET_MEMBERS(et);
 4651|      6|        Py_ssize_t nslot = PyTuple_GET_SIZE(et->ht_slots);
  ------------------
  |  |   27|      6|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4652|      6|        int after_items = (ctx->base->tp_itemsize != 0 &&
  ------------------
  |  Branch (4652:28): [True: 0, False: 6]
  ------------------
 4653|      0|                           !(ctx->base->tp_flags & Py_TPFLAGS_ITEMS_AT_END));
  ------------------
  |  |  548|      0|#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
  ------------------
  |  Branch (4653:28): [True: 0, False: 0]
  ------------------
 4654|      6|        if (ctx->base->tp_itemsize != 0 &&
  ------------------
  |  Branch (4654:13): [True: 0, False: 6]
  ------------------
 4655|      0|            !(ctx->base->tp_flags & Py_TPFLAGS_TUPLE_SUBCLASS))
  ------------------
  |  |  553|      0|#define Py_TPFLAGS_TUPLE_SUBCLASS       (1UL << 26)
  ------------------
  |  Branch (4655:13): [True: 0, False: 0]
  ------------------
 4656|      0|        {
 4657|      0|            PyErr_Format(PyExc_TypeError,
 4658|      0|                         "arbitrary __slots__ not supported for subtype of '%s'",
 4659|      0|                         ctx->base->tp_name);
 4660|      0|            return -1;
 4661|      0|        }
 4662|     16|        for (Py_ssize_t i = 0; i < nslot; i++, mp++) {
  ------------------
  |  Branch (4662:32): [True: 10, False: 6]
  ------------------
 4663|     10|            mp->name = PyUnicode_AsUTF8(
 4664|     10|                PyTuple_GET_ITEM(et->ht_slots, i));
  ------------------
  |  |   29|     10|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     10|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4664:17): [True: 10, False: 0]
  ------------------
 4665|     10|            if (mp->name == NULL) {
  ------------------
  |  Branch (4665:17): [True: 0, False: 10]
  ------------------
 4666|      0|                return -1;
 4667|      0|            }
 4668|     10|            mp->type = Py_T_OBJECT_EX;
  ------------------
  |  |   75|     10|#define Py_T_OBJECT_EX 16
  ------------------
 4669|     10|            mp->offset = slotoffset;
 4670|     10|            if (after_items) {
  ------------------
  |  Branch (4670:17): [True: 0, False: 10]
  ------------------
 4671|      0|                mp->flags |= _Py_AFTER_ITEMS;
  ------------------
  |  |   89|      0|#  define _Py_AFTER_ITEMS      (1 << 4) // For internal use.
  ------------------
 4672|      0|            }
 4673|       |
 4674|       |            /* __dict__ and __weakref__ are already filtered out */
 4675|     10|            assert(strcmp(mp->name, "__dict__") != 0);
  ------------------
  |  Branch (4675:13): [True: 10, False: 0]
  ------------------
 4676|     10|            assert(strcmp(mp->name, "__weakref__") != 0);
  ------------------
  |  Branch (4676:13): [True: 10, False: 0]
  ------------------
 4677|       |
 4678|     10|            slotoffset += sizeof(PyObject *);
 4679|     10|        }
 4680|      6|    }
 4681|       |
 4682|    174|    if (ctx->add_weak) {
  ------------------
  |  Branch (4682:9): [True: 78, False: 96]
  ------------------
 4683|     78|        assert((type->tp_flags & Py_TPFLAGS_MANAGED_WEAKREF) == 0);
  ------------------
  |  Branch (4683:9): [True: 78, False: 0]
  ------------------
 4684|     78|        type_add_flags(type, Py_TPFLAGS_MANAGED_WEAKREF);
  ------------------
  |  |  477|     78|#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
  ------------------
 4685|     78|        type->tp_weaklistoffset = MANAGED_WEAKREF_OFFSET;
  ------------------
  |  |  926|     78|#  define MANAGED_WEAKREF_OFFSET (((Py_ssize_t)sizeof(PyObject *))*-4)
  ------------------
 4686|     78|    }
 4687|    174|    if (ctx->add_dict) {
  ------------------
  |  Branch (4687:9): [True: 62, False: 112]
  ------------------
 4688|     62|        assert((type->tp_flags & Py_TPFLAGS_MANAGED_DICT) == 0);
  ------------------
  |  Branch (4688:9): [True: 62, False: 0]
  ------------------
 4689|     62|        type_add_flags(type, Py_TPFLAGS_MANAGED_DICT);
  ------------------
  |  |  482|     62|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
 4690|     62|        type->tp_dictoffset = -1;
 4691|     62|    }
 4692|       |
 4693|    174|    type->tp_basicsize = slotoffset;
 4694|    174|    type->tp_itemsize = ctx->base->tp_itemsize;
 4695|    174|    type->tp_members = _PyHeapType_GET_MEMBERS(et);
 4696|       |
 4697|    174|    PyInterpreterState *interp = _PyInterpreterState_GET();
 4698|       |
 4699|    174|    if (type->tp_dictoffset) {
  ------------------
  |  Branch (4699:9): [True: 62, False: 112]
  ------------------
 4700|     62|        if (type_add_common_descriptor(
  ------------------
  |  Branch (4700:13): [True: 0, False: 62]
  ------------------
 4701|     62|            interp,
 4702|     62|            &interp->cached_objects.dict_descriptor,
 4703|     62|            &subtype_getset_dict,
 4704|     62|            dict) < 0)
 4705|      0|        {
 4706|      0|            return -1;
 4707|      0|        }
 4708|     62|    }
 4709|    174|    if (type->tp_weaklistoffset) {
  ------------------
  |  Branch (4709:9): [True: 78, False: 96]
  ------------------
 4710|     78|        if (type_add_common_descriptor(
  ------------------
  |  Branch (4710:13): [True: 0, False: 78]
  ------------------
 4711|     78|            interp,
 4712|     78|            &interp->cached_objects.weakref_descriptor,
 4713|     78|            &subtype_getset_weakref,
 4714|     78|            dict) < 0)
 4715|      0|        {
 4716|      0|            return -1;
 4717|      0|        }
 4718|     78|    }
 4719|       |
 4720|    174|    return 0;
 4721|    174|}
typeobject.c:type_add_common_descriptor:
 4622|    140|{
 4623|       |#ifdef Py_GIL_DISABLED
 4624|       |    PyMutex_Lock(&interp->cached_objects.descriptor_mutex);
 4625|       |#endif
 4626|    140|    PyObject *descr = *cache;
 4627|    140|    if (!descr) {
  ------------------
  |  Branch (4627:9): [True: 4, False: 136]
  ------------------
 4628|      4|        descr = PyDescr_NewGetSet(&PyBaseObject_Type, getset_def);
 4629|      4|        *cache = descr;
 4630|      4|    }
 4631|       |#ifdef Py_GIL_DISABLED
 4632|       |    PyMutex_Unlock(&interp->cached_objects.descriptor_mutex);
 4633|       |#endif
 4634|    140|    if (!descr) {
  ------------------
  |  Branch (4634:9): [True: 0, False: 140]
  ------------------
 4635|      0|        return -1;
 4636|      0|    }
 4637|    140|    if (PyDict_SetDefaultRef(dict, PyDescr_NAME(descr), descr, NULL) < 0) {
  ------------------
  |  |   36|    140|#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
  ------------------
  |  Branch (4637:9): [True: 0, False: 140]
  ------------------
 4638|      0|        return -1;
 4639|      0|    }
 4640|    140|    return 0;
 4641|    140|}
typeobject.c:type_new_set_slots:
 4726|    174|{
 4727|    174|    type->tp_getset = NULL;
 4728|       |
 4729|       |    /* Special case some slots */
 4730|    174|    if (type->tp_dictoffset != 0 || ctx->nslot > 0) {
  ------------------
  |  Branch (4730:9): [True: 62, False: 112]
  |  Branch (4730:37): [True: 6, False: 106]
  ------------------
 4731|     68|        PyTypeObject *base = ctx->base;
 4732|     68|        if (base->tp_getattr == NULL && base->tp_getattro == NULL) {
  ------------------
  |  Branch (4732:13): [True: 68, False: 0]
  |  Branch (4732:41): [True: 0, False: 68]
  ------------------
 4733|      0|            type->tp_getattro = PyObject_GenericGetAttr;
 4734|      0|        }
 4735|     68|        if (base->tp_setattr == NULL && base->tp_setattro == NULL) {
  ------------------
  |  Branch (4735:13): [True: 68, False: 0]
  |  Branch (4735:41): [True: 0, False: 68]
  ------------------
 4736|      0|            type->tp_setattro = PyObject_GenericSetAttr;
 4737|      0|        }
 4738|     68|    }
 4739|    174|}
typeobject.c:type_new_set_classcell:
 4745|    174|{
 4746|    174|    PyObject *cell = PyDict_GetItemWithError(dict, &_Py_ID(__classcell__));
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4747|    174|    if (cell == NULL) {
  ------------------
  |  Branch (4747:9): [True: 162, False: 12]
  ------------------
 4748|    162|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (4748:13): [True: 0, False: 162]
  ------------------
 4749|      0|            return -1;
 4750|      0|        }
 4751|    162|        return 0;
 4752|    162|    }
 4753|       |
 4754|       |    /* At least one method requires a reference to its defining class */
 4755|     12|    if (!PyCell_Check(cell)) {
  ------------------
  |  |   18|     12|#define PyCell_Check(op) Py_IS_TYPE((op), &PyCell_Type)
  |  |  ------------------
  |  |  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4755:9): [True: 0, False: 12]
  ------------------
 4756|      0|        PyErr_Format(PyExc_TypeError,
 4757|      0|                     "__classcell__ must be a nonlocal cell, not %.200R",
 4758|      0|                     Py_TYPE(cell));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4759|      0|        return -1;
 4760|      0|    }
 4761|       |
 4762|     12|    (void)PyCell_Set(cell, (PyObject *) type);
 4763|     12|    if (PyDict_DelItem(dict, &_Py_ID(__classcell__)) < 0) {
  ------------------
  |  |  917|     12|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     12|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     12|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4763:9): [True: 0, False: 12]
  ------------------
 4764|      0|        return -1;
 4765|      0|    }
 4766|     12|    return 0;
 4767|     12|}
typeobject.c:type_new_set_classdictcell:
 4771|    174|{
 4772|    174|    PyObject *cell = PyDict_GetItemWithError(dict, &_Py_ID(__classdictcell__));
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4773|    174|    if (cell == NULL) {
  ------------------
  |  Branch (4773:9): [True: 26, False: 148]
  ------------------
 4774|     26|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (4774:13): [True: 0, False: 26]
  ------------------
 4775|      0|            return -1;
 4776|      0|        }
 4777|     26|        return 0;
 4778|     26|    }
 4779|       |
 4780|       |    /* At least one method requires a reference to the dict of its defining class */
 4781|    148|    if (!PyCell_Check(cell)) {
  ------------------
  |  |   18|    148|#define PyCell_Check(op) Py_IS_TYPE((op), &PyCell_Type)
  |  |  ------------------
  |  |  |  |  215|    148|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4781:9): [True: 0, False: 148]
  ------------------
 4782|      0|        PyErr_Format(PyExc_TypeError,
 4783|      0|                     "__classdictcell__ must be a nonlocal cell, not %.200R",
 4784|      0|                     Py_TYPE(cell));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4785|      0|        return -1;
 4786|      0|    }
 4787|       |
 4788|    148|    (void)PyCell_Set(cell, (PyObject *)dict);
 4789|    148|    if (PyDict_DelItem(dict, &_Py_ID(__classdictcell__)) < 0) {
  ------------------
  |  |  917|    148|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    148|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    148|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4789:9): [True: 0, False: 148]
  ------------------
 4790|      0|        return -1;
 4791|      0|    }
 4792|    148|    return 0;
 4793|    148|}
typeobject.c:fixup_slot_dispatchers:
12101|    174|{
12102|    174|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (12102:5): [True: 174, False: 0]
  ------------------
12103|  11.8k|    for (pytype_slotdef *p = slotdefs; p->name; ) {
  ------------------
  |  Branch (12103:40): [True: 11.6k, False: 174]
  ------------------
12104|       |        update_one_slot(type, p, &p, NULL);
12105|  11.6k|    }
12106|    174|}
typeobject.c:type_new_set_names:
12245|    174|{
12246|    174|    PyObject *dict = lookup_tp_dict(type);
12247|    174|    PyObject *names_to_set = PyDict_Copy(dict);
12248|    174|    if (names_to_set == NULL) {
  ------------------
  |  Branch (12248:9): [True: 0, False: 174]
  ------------------
12249|      0|        return -1;
12250|      0|    }
12251|       |
12252|    174|    Py_ssize_t i = 0;
12253|    174|    PyObject *key, *value;
12254|  1.87k|    while (PyDict_Next(names_to_set, &i, &key, &value)) {
  ------------------
  |  Branch (12254:12): [True: 1.69k, False: 174]
  ------------------
12255|  1.69k|        PyObject *set_name = _PyObject_LookupSpecial(value,
12256|  1.69k|                                                     &_Py_ID(__set_name__));
  ------------------
  |  |  917|  1.69k|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|  1.69k|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|  1.69k|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12257|  1.69k|        if (set_name == NULL) {
  ------------------
  |  Branch (12257:13): [True: 1.69k, False: 6]
  ------------------
12258|  1.69k|            if (PyErr_Occurred()) {
  ------------------
  |  Branch (12258:17): [True: 0, False: 1.69k]
  ------------------
12259|      0|                goto error;
12260|      0|            }
12261|  1.69k|            continue;
12262|  1.69k|        }
12263|       |
12264|      6|        PyObject *res = PyObject_CallFunctionObjArgs(set_name, type, key, NULL);
12265|      6|        Py_DECREF(set_name);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12266|       |
12267|      6|        if (res == NULL) {
  ------------------
  |  Branch (12267:13): [True: 0, False: 6]
  ------------------
12268|      0|            _PyErr_FormatNote(
12269|      0|                "Error calling __set_name__ on '%.100s' instance %R "
12270|      0|                "in '%.100s'",
12271|      0|                Py_TYPE(value)->tp_name, key, type->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12272|      0|            goto error;
12273|      0|        }
12274|      6|        else {
12275|      6|            Py_DECREF(res);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12276|      6|        }
12277|      6|    }
12278|       |
12279|    174|    Py_DECREF(names_to_set);
  ------------------
  |  |  430|    174|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12280|    174|    return 0;
12281|       |
12282|      0|error:
12283|      0|    Py_DECREF(names_to_set);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12284|      0|    return -1;
12285|    174|}
typeobject.c:type_new_init_subclass:
12291|    174|{
12292|    174|    PyObject *args[2] = {(PyObject *)type, (PyObject *)type};
12293|    174|    PyObject *super = PyObject_Vectorcall((PyObject *)&PySuper_Type,
12294|    174|                                          args, 2, NULL);
12295|    174|    if (super == NULL) {
  ------------------
  |  Branch (12295:9): [True: 0, False: 174]
  ------------------
12296|      0|        return -1;
12297|      0|    }
12298|       |
12299|    174|    PyObject *func = PyObject_GetAttr(super, &_Py_ID(__init_subclass__));
  ------------------
  |  |  917|    174|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    174|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    174|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12300|    174|    Py_DECREF(super);
  ------------------
  |  |  430|    174|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12301|    174|    if (func == NULL) {
  ------------------
  |  Branch (12301:9): [True: 0, False: 174]
  ------------------
12302|      0|        return -1;
12303|      0|    }
12304|       |
12305|    174|    PyObject *result = PyObject_VectorcallDict(func, NULL, 0, kwds);
12306|    174|    Py_DECREF(func);
  ------------------
  |  |  430|    174|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12307|    174|    if (result == NULL) {
  ------------------
  |  Branch (12307:9): [True: 0, False: 174]
  ------------------
12308|      0|        return -1;
12309|      0|    }
12310|       |
12311|    174|    Py_DECREF(result);
  ------------------
  |  |  430|    174|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12312|    174|    return 0;
12313|    174|}
typeobject.c:type_is_gc:
 7249|  13.0k|{
 7250|  13.0k|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|  13.0k|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 7251|  13.0k|    return type->tp_flags & Py_TPFLAGS_HEAPTYPE;
  ------------------
  |  |  503|  13.0k|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
 7252|  13.0k|}
typeobject.c:type_vectorcall:
 5109|    178|{
 5110|    178|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    178|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
 5111|    178|    if (nargs == 1 && metatype == (PyObject *)&PyType_Type){
  ------------------
  |  Branch (5111:9): [True: 62, False: 116]
  |  Branch (5111:23): [True: 62, False: 0]
  ------------------
 5112|     62|        if (!_PyArg_NoKwnames("type", kwnames)) {
  ------------------
  |  |   15|     62|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 62, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 5113|      0|            return NULL;
 5114|      0|        }
 5115|     62|        return Py_NewRef(Py_TYPE(args[0]));
  ------------------
  |  |  550|     62|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5116|     62|    }
 5117|       |    /* In other (much less common) cases, fall back to
 5118|       |       more flexible calling conventions. */
 5119|    116|    PyThreadState *tstate = _PyThreadState_GET();
 5120|    116|    return _PyObject_MakeTpCall(tstate, metatype, args, nargs, kwnames);
 5121|    178|}
typeobject.c:object_dealloc:
 7446|  5.99k|{
 7447|  5.99k|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|  5.99k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  5.99k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.99k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7448|  5.99k|}
typeobject.c:object_str:
 7480|     22|{
 7481|     22|    unaryfunc f;
 7482|       |
 7483|     22|    f = Py_TYPE(self)->tp_repr;
  ------------------
  |  |  213|     22|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7484|     22|    if (f == NULL)
  ------------------
  |  Branch (7484:9): [True: 0, False: 22]
  ------------------
 7485|      0|        f = object_repr;
 7486|     22|    return f(self);
 7487|     22|}
typeobject.c:object_init_subclass:
 8392|    174|{
 8393|    174|    Py_RETURN_NONE;
  ------------------
  |  |  628|    174|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|    174|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 8394|    174|}
typeobject.c:object_get_class:
 7541|     52|{
 7542|     52|    return Py_NewRef(Py_TYPE(self));
  ------------------
  |  |  550|     52|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7543|     52|}
typeobject.c:object_init:
 7356|    146|{
 7357|    146|    PyTypeObject *type = Py_TYPE(self);
  ------------------
  |  |  213|    146|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    146|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    146|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7358|    146|    if (excess_args(args, kwds)) {
  ------------------
  |  Branch (7358:9): [True: 2, False: 144]
  ------------------
 7359|      2|        if (type->tp_init != object_init) {
  ------------------
  |  Branch (7359:13): [True: 0, False: 2]
  ------------------
 7360|      0|            PyErr_SetString(PyExc_TypeError,
 7361|      0|                            "object.__init__() takes exactly one argument (the instance to initialize)");
 7362|      0|            return -1;
 7363|      0|        }
 7364|      2|        if (type->tp_new == object_new) {
  ------------------
  |  Branch (7364:13): [True: 0, False: 2]
  ------------------
 7365|      0|            PyErr_Format(PyExc_TypeError,
 7366|      0|                         "%.200s.__init__() takes exactly one argument (the instance to initialize)",
 7367|      0|                         type->tp_name);
 7368|      0|            return -1;
 7369|      0|        }
 7370|      2|    }
 7371|    146|    return 0;
 7372|    146|}
typeobject.c:excess_args:
 7349|    364|{
 7350|    364|    return PyTuple_GET_SIZE(args) ||
  ------------------
  |  |   27|    728|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    364|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    364|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (27:30): [True: 116, False: 248]
  |  |  ------------------
  ------------------
 7351|    248|        (kwds && PyDict_Check(kwds) && PyDict_GET_SIZE(kwds));
  ------------------
  |  |   18|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    250|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      (kwds && PyDict_Check(kwds) && PyDict_GET_SIZE(kwds));
  ------------------
  |  |   63|      2|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (63:29): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (7351:10): [True: 2, False: 246]
  ------------------
 7352|    364|}
typeobject.c:object_new:
 7376|    218|{
 7377|    218|    if (excess_args(args, kwds)) {
  ------------------
  |  Branch (7377:9): [True: 116, False: 102]
  ------------------
 7378|    116|        if (type->tp_new != object_new) {
  ------------------
  |  Branch (7378:13): [True: 0, False: 116]
  ------------------
 7379|      0|            PyErr_SetString(PyExc_TypeError,
 7380|      0|                            "object.__new__() takes exactly one argument (the type to instantiate)");
 7381|      0|            return NULL;
 7382|      0|        }
 7383|    116|        if (type->tp_init == object_init) {
  ------------------
  |  Branch (7383:13): [True: 0, False: 116]
  ------------------
 7384|      0|            PyErr_Format(PyExc_TypeError, "%.200s() takes no arguments",
 7385|      0|                         type->tp_name);
 7386|      0|            return NULL;
 7387|      0|        }
 7388|    116|    }
 7389|       |
 7390|    218|    if (type->tp_flags & Py_TPFLAGS_IS_ABSTRACT) {
  ------------------
  |  |  540|    218|#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
  ------------------
  |  Branch (7390:9): [True: 0, False: 218]
  ------------------
 7391|      0|        PyObject *abstract_methods;
 7392|      0|        PyObject *sorted_methods;
 7393|      0|        PyObject *joined;
 7394|      0|        PyObject* comma_w_quotes_sep;
 7395|      0|        Py_ssize_t method_count;
 7396|       |
 7397|       |        /* Compute "', '".join(sorted(type.__abstractmethods__))
 7398|       |           into joined. */
 7399|      0|        abstract_methods = type_abstractmethods((PyObject *)type, NULL);
 7400|      0|        if (abstract_methods == NULL)
  ------------------
  |  Branch (7400:13): [True: 0, False: 0]
  ------------------
 7401|      0|            return NULL;
 7402|      0|        sorted_methods = PySequence_List(abstract_methods);
 7403|      0|        Py_DECREF(abstract_methods);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7404|      0|        if (sorted_methods == NULL)
  ------------------
  |  Branch (7404:13): [True: 0, False: 0]
  ------------------
 7405|      0|            return NULL;
 7406|      0|        if (PyList_Sort(sorted_methods)) {
  ------------------
  |  Branch (7406:13): [True: 0, False: 0]
  ------------------
 7407|      0|            Py_DECREF(sorted_methods);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7408|      0|            return NULL;
 7409|      0|        }
 7410|      0|        comma_w_quotes_sep = PyUnicode_FromString("', '");
 7411|      0|        if (!comma_w_quotes_sep) {
  ------------------
  |  Branch (7411:13): [True: 0, False: 0]
  ------------------
 7412|      0|            Py_DECREF(sorted_methods);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7413|      0|            return NULL;
 7414|      0|        }
 7415|      0|        joined = PyUnicode_Join(comma_w_quotes_sep, sorted_methods);
 7416|      0|        Py_DECREF(comma_w_quotes_sep);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7417|      0|        if (joined == NULL)  {
  ------------------
  |  Branch (7417:13): [True: 0, False: 0]
  ------------------
 7418|      0|            Py_DECREF(sorted_methods);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7419|      0|            return NULL;
 7420|      0|        }
 7421|      0|        method_count = PyObject_Length(sorted_methods);
  ------------------
  |  |  353|      0|#define PyObject_Length PyObject_Size
  ------------------
 7422|      0|        Py_DECREF(sorted_methods);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7423|      0|        if (method_count == -1) {
  ------------------
  |  Branch (7423:13): [True: 0, False: 0]
  ------------------
 7424|      0|            Py_DECREF(joined);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7425|      0|            return NULL;
 7426|      0|        }
 7427|       |
 7428|      0|        PyErr_Format(PyExc_TypeError,
 7429|      0|                     "Can't instantiate abstract class %s "
 7430|      0|                     "without an implementation for abstract method%s '%U'",
 7431|      0|                     type->tp_name,
 7432|      0|                     method_count > 1 ? "s" : "",
  ------------------
  |  Branch (7432:22): [True: 0, False: 0]
  ------------------
 7433|      0|                     joined);
 7434|      0|        Py_DECREF(joined);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7435|      0|        return NULL;
 7436|      0|    }
 7437|    218|    PyObject *obj = type->tp_alloc(type, 0);
 7438|    218|    if (obj == NULL) {
  ------------------
  |  Branch (7438:9): [True: 0, False: 218]
  ------------------
 7439|      0|        return NULL;
 7440|      0|    }
 7441|    218|    return obj;
 7442|    218|}
typeobject.c:type_add_method:
 8571|  1.66k|{
 8572|  1.66k|    PyObject *descr;
 8573|  1.66k|    int isdescr = 1;
 8574|  1.66k|    if (meth->ml_flags & METH_CLASS) {
  ------------------
  |  |  104|  1.66k|#define METH_CLASS    0x0010
  ------------------
  |  Branch (8574:9): [True: 108, False: 1.55k]
  ------------------
 8575|    108|        if (meth->ml_flags & METH_STATIC) {
  ------------------
  |  |  105|    108|#define METH_STATIC   0x0020
  ------------------
  |  Branch (8575:13): [True: 0, False: 108]
  ------------------
 8576|      0|            PyErr_SetString(PyExc_ValueError,
 8577|      0|                    "method cannot be both class and static");
 8578|      0|            return -1;
 8579|      0|        }
 8580|    108|        descr = PyDescr_NewClassMethod(type, meth);
 8581|    108|    }
 8582|  1.55k|    else if (meth->ml_flags & METH_STATIC) {
  ------------------
  |  |  105|  1.55k|#define METH_STATIC   0x0020
  ------------------
  |  Branch (8582:14): [True: 6, False: 1.55k]
  ------------------
 8583|      6|        PyObject *mod = type_module(type);
 8584|      6|        if (mod == NULL) {
  ------------------
  |  Branch (8584:13): [True: 0, False: 6]
  ------------------
 8585|      0|            if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
  ------------------
  |  Branch (8585:17): [True: 0, False: 0]
  ------------------
 8586|      0|                return -1;
 8587|      0|            }
 8588|      0|            PyErr_Clear();
 8589|      0|        }
 8590|      6|        PyObject *cfunc = PyCFunction_NewEx(meth, (PyObject*)type, mod);
  ------------------
  |  |   87|      6|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
 8591|      6|        Py_XDECREF(mod);
  ------------------
  |  |  524|      6|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8592|      6|        if (cfunc == NULL) {
  ------------------
  |  Branch (8592:13): [True: 0, False: 6]
  ------------------
 8593|      0|            return -1;
 8594|      0|        }
 8595|      6|        descr = PyStaticMethod_New(cfunc);
 8596|      6|        isdescr = 0;  // PyStaticMethod is not PyDescrObject
 8597|      6|        Py_DECREF(cfunc);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8598|      6|    }
 8599|  1.55k|    else {
 8600|  1.55k|        descr = PyDescr_NewMethod(type, meth);
 8601|  1.55k|    }
 8602|  1.66k|    if (descr == NULL) {
  ------------------
  |  Branch (8602:9): [True: 0, False: 1.66k]
  ------------------
 8603|      0|        return -1;
 8604|      0|    }
 8605|       |
 8606|  1.66k|    PyObject *name;
 8607|  1.66k|    if (isdescr) {
  ------------------
  |  Branch (8607:9): [True: 1.65k, False: 6]
  ------------------
 8608|  1.65k|        name = PyDescr_NAME(descr);
  ------------------
  |  |   36|  1.65k|#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
  ------------------
 8609|  1.65k|    }
 8610|      6|    else {
 8611|      6|        name = PyUnicode_FromString(meth->ml_name);
 8612|      6|        if (name == NULL) {
  ------------------
  |  Branch (8612:13): [True: 0, False: 6]
  ------------------
 8613|      0|            Py_DECREF(descr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8614|      0|            return -1;
 8615|      0|        }
 8616|      6|    }
 8617|       |
 8618|  1.66k|    int err;
 8619|  1.66k|    PyObject *dict = lookup_tp_dict(type);
 8620|  1.66k|    if (!(meth->ml_flags & METH_COEXIST)) {
  ------------------
  |  |  112|  1.66k|#define METH_COEXIST   0x0040
  ------------------
  |  Branch (8620:9): [True: 1.64k, False: 20]
  ------------------
 8621|  1.64k|        err = PyDict_SetDefaultRef(dict, name, descr, NULL) < 0;
 8622|  1.64k|    }
 8623|     20|    else {
 8624|     20|        err = PyDict_SetItem(dict, name, descr) < 0;
 8625|     20|    }
 8626|  1.66k|    if (!isdescr) {
  ------------------
  |  Branch (8626:9): [True: 6, False: 1.65k]
  ------------------
 8627|      6|        Py_DECREF(name);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8628|      6|    }
 8629|  1.66k|    Py_DECREF(descr);
  ------------------
  |  |  430|  1.66k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.66k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.66k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8630|  1.66k|    if (err) {
  ------------------
  |  Branch (8630:9): [True: 0, False: 1.66k]
  ------------------
 8631|      0|        return -1;
 8632|      0|    }
 8633|  1.66k|    return 0;
 8634|  1.66k|}
typeobject.c:type_add_flags:
  471|  4.78k|{
  472|  4.78k|    type_set_flags(tp, tp->tp_flags | flag);
  473|  4.78k|}
typeobject.c:type_ready:
 9498|    666|{
 9499|    666|    ASSERT_TYPE_LOCK_HELD();
 9500|       |
 9501|    666|    _PyObject_ASSERT((PyObject *)type, !is_readying(type));
  ------------------
  |  |  423|    666|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|    666|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|    666|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 666, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|    666|      ? (void)(0) \
  |  |  |  |  |  |  416|    666|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9502|    666|    start_readying(type);
 9503|       |
 9504|    666|    if (type_ready_pre_checks(type) < 0) {
  ------------------
  |  Branch (9504:9): [True: 0, False: 666]
  ------------------
 9505|      0|        goto error;
 9506|      0|    }
 9507|       |
 9508|       |#ifdef Py_TRACE_REFS
 9509|       |    /* PyType_Ready is the closest thing we have to a choke point
 9510|       |     * for type objects, so is the best place I can think of to try
 9511|       |     * to get type objects into the doubly-linked list of all objects.
 9512|       |     * Still, not all type objects go through PyType_Ready.
 9513|       |     */
 9514|       |    _Py_AddToAllObjects((PyObject *)type);
 9515|       |#endif
 9516|       |
 9517|       |    /* Initialize tp_dict: _PyType_IsReady() tests if tp_dict != NULL */
 9518|    666|    if (type_ready_set_dict(type) < 0) {
  ------------------
  |  Branch (9518:9): [True: 0, False: 666]
  ------------------
 9519|      0|        goto error;
 9520|      0|    }
 9521|    666|    if (type_ready_set_base(type) < 0) {
  ------------------
  |  Branch (9521:9): [True: 0, False: 666]
  ------------------
 9522|      0|        goto error;
 9523|      0|    }
 9524|    666|    if (type_ready_set_type(type) < 0) {
  ------------------
  |  Branch (9524:9): [True: 0, False: 666]
  ------------------
 9525|      0|        goto error;
 9526|      0|    }
 9527|    666|    if (type_ready_set_bases(type, initial) < 0) {
  ------------------
  |  Branch (9527:9): [True: 0, False: 666]
  ------------------
 9528|      0|        goto error;
 9529|      0|    }
 9530|    666|    if (type_ready_mro(type, initial) < 0) {
  ------------------
  |  Branch (9530:9): [True: 0, False: 666]
  ------------------
 9531|      0|        goto error;
 9532|      0|    }
 9533|    666|    if (type_ready_set_new(type, initial) < 0) {
  ------------------
  |  Branch (9533:9): [True: 0, False: 666]
  ------------------
 9534|      0|        goto error;
 9535|      0|    }
 9536|    666|    if (type_ready_fill_dict(type) < 0) {
  ------------------
  |  Branch (9536:9): [True: 0, False: 666]
  ------------------
 9537|      0|        goto error;
 9538|      0|    }
 9539|    666|    if (initial) {
  ------------------
  |  Branch (9539:9): [True: 666, False: 0]
  ------------------
 9540|    666|        if (type_ready_inherit(type) < 0) {
  ------------------
  |  Branch (9540:13): [True: 0, False: 666]
  ------------------
 9541|      0|            goto error;
 9542|      0|        }
 9543|    666|        if (type_ready_preheader(type) < 0) {
  ------------------
  |  Branch (9543:13): [True: 0, False: 666]
  ------------------
 9544|      0|            goto error;
 9545|      0|        }
 9546|    666|    }
 9547|    666|    if (type_ready_set_hash(type) < 0) {
  ------------------
  |  Branch (9547:9): [True: 0, False: 666]
  ------------------
 9548|      0|        goto error;
 9549|      0|    }
 9550|    666|    if (type_ready_add_subclasses(type) < 0) {
  ------------------
  |  Branch (9550:9): [True: 0, False: 666]
  ------------------
 9551|      0|        goto error;
 9552|      0|    }
 9553|    666|    if (initial) {
  ------------------
  |  Branch (9553:9): [True: 666, False: 0]
  ------------------
 9554|    666|        if (type_ready_managed_dict(type) < 0) {
  ------------------
  |  Branch (9554:13): [True: 0, False: 666]
  ------------------
 9555|      0|            goto error;
 9556|      0|        }
 9557|    666|        if (type_ready_post_checks(type) < 0) {
  ------------------
  |  Branch (9557:13): [True: 0, False: 666]
  ------------------
 9558|      0|            goto error;
 9559|      0|        }
 9560|    666|    }
 9561|       |
 9562|       |    /* All done -- set the ready flag */
 9563|    666|    if (initial) {
  ------------------
  |  Branch (9563:9): [True: 666, False: 0]
  ------------------
 9564|    666|        type_add_flags(type, Py_TPFLAGS_READY);
  ------------------
  |  |  518|    666|#define Py_TPFLAGS_READY (1UL << 12)
  ------------------
 9565|    666|    } else {
 9566|      0|        assert(type->tp_flags & Py_TPFLAGS_READY);
  ------------------
  |  Branch (9566:9): [True: 0, False: 0]
  ------------------
 9567|      0|    }
 9568|       |
 9569|    666|    stop_readying(type);
 9570|       |
 9571|    666|    assert(_PyType_CheckConsistency(type));
  ------------------
  |  Branch (9571:5): [True: 666, False: 0]
  ------------------
 9572|    666|    return 0;
 9573|       |
 9574|      0|error:
 9575|      0|    stop_readying(type);
 9576|      0|    return -1;
 9577|    666|}
typeobject.c:start_readying:
  483|    666|{
  484|    666|    if (type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (484:9): [True: 414, False: 252]
  ------------------
  485|    414|        PyInterpreterState *interp = _PyInterpreterState_GET();
  486|    414|        managed_static_type_state *state = managed_static_type_state_get(interp, type);
  487|    414|        assert(state != NULL);
  ------------------
  |  Branch (487:9): [True: 414, False: 0]
  ------------------
  488|    414|        assert(!state->readying);
  ------------------
  |  Branch (488:9): [True: 414, False: 0]
  ------------------
  489|    414|        state->readying = 1;
  490|    414|        return;
  491|    414|    }
  492|    666|    assert((type->tp_flags & Py_TPFLAGS_READYING) == 0);
  ------------------
  |  Branch (492:5): [True: 252, False: 0]
  ------------------
  493|    252|    type_add_flags(type, Py_TPFLAGS_READYING);
  ------------------
  |  |  521|    252|#define Py_TPFLAGS_READYING (1UL << 13)
  ------------------
  494|    252|}
typeobject.c:type_ready_pre_checks:
 8993|    666|{
 8994|       |    /* Consistency checks for PEP 590:
 8995|       |     * - Py_TPFLAGS_METHOD_DESCRIPTOR requires tp_descr_get
 8996|       |     * - Py_TPFLAGS_HAVE_VECTORCALL requires tp_call and
 8997|       |     *   tp_vectorcall_offset > 0
 8998|       |     * To avoid mistakes, we require this before inheriting.
 8999|       |     */
 9000|    666|    if (type->tp_flags & Py_TPFLAGS_METHOD_DESCRIPTOR) {
  ------------------
  |  |  534|    666|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
  |  Branch (9000:9): [True: 6, False: 660]
  ------------------
 9001|      6|        _PyObject_ASSERT((PyObject *)type, type->tp_descr_get != NULL);
  ------------------
  |  |  423|      6|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      6|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      6|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 6, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      6|      ? (void)(0) \
  |  |  |  |  |  |  416|      6|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9002|      6|    }
 9003|    666|    if (type->tp_flags & Py_TPFLAGS_HAVE_VECTORCALL) {
  ------------------
  |  |  510|    666|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
  |  Branch (9003:9): [True: 16, False: 650]
  ------------------
 9004|     16|        _PyObject_ASSERT((PyObject *)type, type->tp_vectorcall_offset > 0);
  ------------------
  |  |  423|     16|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|     16|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|     16|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 16, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|     16|      ? (void)(0) \
  |  |  |  |  |  |  416|     16|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9005|     16|        _PyObject_ASSERT((PyObject *)type, type->tp_call != NULL);
  ------------------
  |  |  423|     16|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|     16|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|     16|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 16, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|     16|      ? (void)(0) \
  |  |  |  |  |  |  416|     16|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9006|     16|    }
 9007|       |
 9008|       |    /* Consistency checks for pattern matching
 9009|       |     * Py_TPFLAGS_SEQUENCE and Py_TPFLAGS_MAPPING are mutually exclusive */
 9010|    666|    _PyObject_ASSERT((PyObject *)type, (type->tp_flags & COLLECTION_FLAGS) != COLLECTION_FLAGS);
  ------------------
  |  |  423|    666|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|    666|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|    666|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 666, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|    666|      ? (void)(0) \
  |  |  |  |  |  |  416|    666|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9011|       |
 9012|    666|    if (type->tp_name == NULL) {
  ------------------
  |  Branch (9012:9): [True: 0, False: 666]
  ------------------
 9013|      0|        PyErr_Format(PyExc_SystemError,
 9014|      0|                     "Type does not define the tp_name field.");
 9015|      0|        return -1;
 9016|      0|    }
 9017|    666|    return 0;
 9018|    666|}
typeobject.c:type_ready_set_dict:
 9099|    666|{
 9100|    666|    if (lookup_tp_dict(type) != NULL) {
  ------------------
  |  Branch (9100:9): [True: 174, False: 492]
  ------------------
 9101|    174|        return 0;
 9102|    174|    }
 9103|       |
 9104|    492|    PyObject *dict = PyDict_New();
 9105|    492|    if (dict == NULL) {
  ------------------
  |  Branch (9105:9): [True: 0, False: 492]
  ------------------
 9106|      0|        return -1;
 9107|      0|    }
 9108|    492|    set_tp_dict(type, dict);
 9109|    492|    return 0;
 9110|    492|}
typeobject.c:type_ready_set_base:
 9023|    666|{
 9024|       |    /* Initialize tp_base (defaults to BaseObject unless that's us) */
 9025|    666|    PyTypeObject *base = type->tp_base;
 9026|    666|    if (base == NULL && type != &PyBaseObject_Type) {
  ------------------
  |  Branch (9026:9): [True: 242, False: 424]
  |  Branch (9026:25): [True: 240, False: 2]
  ------------------
 9027|    240|        base = &PyBaseObject_Type;
 9028|    240|        if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
  ------------------
  |  |  503|    240|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (9028:13): [True: 0, False: 240]
  ------------------
 9029|      0|            type->tp_base = (PyTypeObject*)Py_NewRef((PyObject*)base);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9030|      0|        }
 9031|    240|        else {
 9032|    240|            type->tp_base = base;
 9033|    240|        }
 9034|    240|    }
 9035|    666|    assert(type->tp_base != NULL || type == &PyBaseObject_Type);
  ------------------
  |  Branch (9035:5): [True: 664, False: 2]
  |  Branch (9035:5): [True: 2, False: 0]
  ------------------
 9036|       |
 9037|       |    /* Now the only way base can still be NULL is if type is
 9038|       |     * &PyBaseObject_Type. */
 9039|       |
 9040|       |    /* Initialize the base class */
 9041|    666|    if (base != NULL && !_PyType_IsReady(base)) {
  ------------------
  |  Branch (9041:9): [True: 664, False: 2]
  |  Branch (9041:25): [True: 0, False: 664]
  ------------------
 9042|      0|        if (PyType_Ready(base) < 0) {
  ------------------
  |  Branch (9042:13): [True: 0, False: 0]
  ------------------
 9043|      0|            return -1;
 9044|      0|        }
 9045|      0|    }
 9046|       |
 9047|    666|    return 0;
 9048|    666|}
typeobject.c:type_ready_set_type:
 9052|    666|{
 9053|       |    /* Initialize ob_type if NULL.      This means extensions that want to be
 9054|       |       compilable separately on Windows can call PyType_Ready() instead of
 9055|       |       initializing the ob_type field of their type objects. */
 9056|       |    /* The test for base != NULL is really unnecessary, since base is only
 9057|       |       NULL when type is &PyBaseObject_Type, and we know its ob_type is
 9058|       |       not NULL (it's initialized to &PyType_Type).      But coverity doesn't
 9059|       |       know that. */
 9060|    666|    PyTypeObject *base = type->tp_base;
 9061|    666|    if (Py_IS_TYPE(type, NULL) && base != NULL) {
  ------------------
  |  |  215|  1.33k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 170, False: 496]
  |  |  ------------------
  ------------------
  |  Branch (9061:35): [True: 170, False: 0]
  ------------------
 9062|    170|        Py_SET_TYPE(type, Py_TYPE(base));
  ------------------
  |  |  217|    170|#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
  |  |  ------------------
  |  |  |  |  171|    170|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    170|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9063|    170|    }
 9064|       |
 9065|    666|    return 0;
 9066|    666|}
typeobject.c:type_ready_set_bases:
 9070|    666|{
 9071|    666|    if (type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (9071:9): [True: 414, False: 252]
  ------------------
 9072|    414|        if (!initial) {
  ------------------
  |  Branch (9072:13): [True: 0, False: 414]
  ------------------
 9073|      0|            assert(lookup_tp_bases(type) != NULL);
  ------------------
  |  Branch (9073:13): [True: 0, False: 0]
  ------------------
 9074|      0|            return 0;
 9075|      0|        }
 9076|    414|        assert(lookup_tp_bases(type) == NULL);
  ------------------
  |  Branch (9076:9): [True: 414, False: 0]
  ------------------
 9077|    414|    }
 9078|       |
 9079|    666|    PyObject *bases = lookup_tp_bases(type);
 9080|    666|    if (bases == NULL) {
  ------------------
  |  Branch (9080:9): [True: 414, False: 252]
  ------------------
 9081|    414|        PyTypeObject *base = type->tp_base;
 9082|    414|        if (base == NULL) {
  ------------------
  |  Branch (9082:13): [True: 2, False: 412]
  ------------------
 9083|      2|            bases = PyTuple_New(0);
 9084|      2|        }
 9085|    412|        else {
 9086|    412|            bases = PyTuple_Pack(1, base);
 9087|    412|        }
 9088|    414|        if (bases == NULL) {
  ------------------
  |  Branch (9088:13): [True: 0, False: 414]
  ------------------
 9089|      0|            return -1;
 9090|      0|        }
 9091|    414|        set_tp_bases(type, bases, 1);
 9092|    414|    }
 9093|    666|    return 0;
 9094|    666|}
typeobject.c:type_ready_mro:
 9216|    666|{
 9217|    666|    ASSERT_TYPE_LOCK_HELD();
 9218|       |
 9219|    666|    if (type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (9219:9): [True: 414, False: 252]
  ------------------
 9220|    414|        if (!initial) {
  ------------------
  |  Branch (9220:13): [True: 0, False: 414]
  ------------------
 9221|      0|            assert(lookup_tp_mro(type) != NULL);
  ------------------
  |  Branch (9221:13): [True: 0, False: 0]
  ------------------
 9222|      0|            return 0;
 9223|      0|        }
 9224|    414|        assert(lookup_tp_mro(type) == NULL);
  ------------------
  |  Branch (9224:9): [True: 414, False: 0]
  ------------------
 9225|    414|    }
 9226|       |
 9227|       |    /* Calculate method resolution order */
 9228|    666|    if (mro_internal(type, initial, NULL) < 0) {
  ------------------
  |  Branch (9228:9): [True: 0, False: 666]
  ------------------
 9229|      0|        return -1;
 9230|      0|    }
 9231|    666|    PyObject *mro = lookup_tp_mro(type);
 9232|    666|    assert(mro != NULL);
  ------------------
  |  Branch (9232:5): [True: 666, False: 0]
  ------------------
 9233|    666|    assert(PyTuple_Check(mro));
  ------------------
  |  Branch (9233:5): [True: 666, False: 0]
  ------------------
 9234|       |
 9235|       |    /* All bases of statically allocated type should be statically allocated,
 9236|       |       and static builtin types must have static builtin bases. */
 9237|    666|    if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|    666|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (9237:9): [True: 414, False: 252]
  ------------------
 9238|    414|        assert(type->tp_flags & Py_TPFLAGS_IMMUTABLETYPE);
  ------------------
  |  Branch (9238:9): [True: 414, False: 0]
  ------------------
 9239|    414|        Py_ssize_t n = PyTuple_GET_SIZE(mro);
  ------------------
  |  |   27|    414|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    414|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    414|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9240|  1.64k|        for (Py_ssize_t i = 0; i < n; i++) {
  ------------------
  |  Branch (9240:32): [True: 1.23k, False: 414]
  ------------------
 9241|  2.46k|            PyTypeObject *base = _PyType_CAST(PyTuple_GET_ITEM(mro, i));
  ------------------
  |  |  770|  1.23k|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  2.46k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:38): [True: 1.23k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (9241:34): [True: 1.23k, False: 0]
  |  Branch (9241:34): [True: 1.23k, False: 0]
  ------------------
 9242|  1.23k|            if (base->tp_flags & Py_TPFLAGS_HEAPTYPE) {
  ------------------
  |  |  503|  1.23k|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (9242:17): [True: 0, False: 1.23k]
  ------------------
 9243|      0|                PyErr_Format(PyExc_TypeError,
 9244|      0|                             "type '%.100s' is not dynamically allocated but "
 9245|      0|                             "its base type '%.100s' is dynamically allocated",
 9246|      0|                             type->tp_name, base->tp_name);
 9247|      0|                return -1;
 9248|      0|            }
 9249|  2.46k|            assert(!(type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) ||
  ------------------
  |  Branch (9249:13): [True: 0, False: 1.23k]
  |  Branch (9249:13): [True: 1.23k, False: 0]
  ------------------
 9250|  1.23k|                   (base->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN));
 9251|  1.23k|        }
 9252|    414|    }
 9253|    666|    return 0;
 9254|    666|}
typeobject.c:type_ready_set_new:
 9385|    666|{
 9386|    666|    PyTypeObject *base = type->tp_base;
 9387|       |    /* The condition below could use some explanation.
 9388|       |
 9389|       |       It appears that tp_new is not inherited for static types whose base
 9390|       |       class is 'object'; this seems to be a precaution so that old extension
 9391|       |       types don't suddenly become callable (object.__new__ wouldn't insure the
 9392|       |       invariants that the extension type's own factory function ensures).
 9393|       |
 9394|       |       Heap types, of course, are under our control, so they do inherit tp_new;
 9395|       |       static extension types that specify some other built-in type as the
 9396|       |       default also inherit object.__new__. */
 9397|    666|    if (type->tp_new == NULL
  ------------------
  |  Branch (9397:9): [True: 406, False: 260]
  ------------------
 9398|    406|        && base == &PyBaseObject_Type
  ------------------
  |  Branch (9398:12): [True: 222, False: 184]
  ------------------
 9399|    222|        && !(type->tp_flags & Py_TPFLAGS_HEAPTYPE))
  ------------------
  |  |  503|    222|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (9399:12): [True: 128, False: 94]
  ------------------
 9400|    128|    {
 9401|    128|        if (initial) {
  ------------------
  |  Branch (9401:13): [True: 128, False: 0]
  ------------------
 9402|    128|            type_add_flags(type, Py_TPFLAGS_DISALLOW_INSTANTIATION);
  ------------------
  |  |  497|    128|#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
  ------------------
 9403|    128|        } else {
 9404|      0|            assert(type->tp_flags & Py_TPFLAGS_DISALLOW_INSTANTIATION);
  ------------------
  |  Branch (9404:13): [True: 0, False: 0]
  ------------------
 9405|      0|        }
 9406|    128|    }
 9407|       |
 9408|    666|    if (!(type->tp_flags & Py_TPFLAGS_DISALLOW_INSTANTIATION)) {
  ------------------
  |  |  497|    666|#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
  ------------------
  |  Branch (9408:9): [True: 522, False: 144]
  ------------------
 9409|    522|        if (type->tp_new != NULL) {
  ------------------
  |  Branch (9409:13): [True: 256, False: 266]
  ------------------
 9410|    256|            if (initial || base == NULL || type->tp_new != base->tp_new) {
  ------------------
  |  Branch (9410:17): [True: 256, False: 0]
  |  Branch (9410:28): [True: 0, False: 0]
  |  Branch (9410:44): [True: 0, False: 0]
  ------------------
 9411|       |                // If "__new__" key does not exists in the type dictionary,
 9412|       |                // set it to tp_new_wrapper().
 9413|    256|                if (add_tp_new_wrapper(type) < 0) {
  ------------------
  |  Branch (9413:21): [True: 0, False: 256]
  ------------------
 9414|      0|                    return -1;
 9415|      0|                }
 9416|    256|            }
 9417|    256|        }
 9418|    266|        else {
 9419|    266|            if (initial) {
  ------------------
  |  Branch (9419:17): [True: 266, False: 0]
  ------------------
 9420|       |                // tp_new is NULL: inherit tp_new from base
 9421|    266|                type->tp_new = base->tp_new;
 9422|    266|            }
 9423|    266|        }
 9424|    522|    }
 9425|    144|    else {
 9426|       |        // Py_TPFLAGS_DISALLOW_INSTANTIATION sets tp_new to NULL
 9427|    144|        if (initial) {
  ------------------
  |  Branch (9427:13): [True: 144, False: 0]
  ------------------
 9428|    144|            type->tp_new = NULL;
 9429|    144|        }
 9430|    144|    }
 9431|    666|    return 0;
 9432|    666|}
typeobject.c:add_tp_new_wrapper:
10470|    256|{
10471|    256|    PyObject *dict = lookup_tp_dict(type);
10472|    256|    int r = PyDict_Contains(dict, &_Py_ID(__new__));
  ------------------
  |  |  917|    256|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    256|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    256|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10473|    256|    if (r > 0) {
  ------------------
  |  Branch (10473:9): [True: 0, False: 256]
  ------------------
10474|      0|        return 0;
10475|      0|    }
10476|    256|    if (r < 0) {
  ------------------
  |  Branch (10476:9): [True: 0, False: 256]
  ------------------
10477|      0|        return -1;
10478|      0|    }
10479|       |
10480|    256|    PyObject *func = PyCFunction_NewEx(tp_new_methoddef, (PyObject *)type, NULL);
  ------------------
  |  |   87|    256|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
10481|    256|    if (func == NULL) {
  ------------------
  |  Branch (10481:9): [True: 0, False: 256]
  ------------------
10482|      0|        return -1;
10483|      0|    }
10484|    256|    _PyObject_SetDeferredRefcount(func);
10485|    256|    r = PyDict_SetItem(dict, &_Py_ID(__new__), func);
  ------------------
  |  |  917|    256|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    256|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    256|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10486|    256|    Py_DECREF(func);
  ------------------
  |  |  430|    256|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    256|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    256|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10487|    256|    return r;
10488|    256|}
typeobject.c:type_ready_fill_dict:
 9152|    666|{
 9153|       |    /* Add type-specific descriptors to tp_dict */
 9154|    666|    if (add_operators(type) < 0) {
  ------------------
  |  Branch (9154:9): [True: 0, False: 666]
  ------------------
 9155|      0|        return -1;
 9156|      0|    }
 9157|    666|    if (type_add_methods(type) < 0) {
  ------------------
  |  Branch (9157:9): [True: 0, False: 666]
  ------------------
 9158|      0|        return -1;
 9159|      0|    }
 9160|    666|    if (type_add_members(type) < 0) {
  ------------------
  |  Branch (9160:9): [True: 0, False: 666]
  ------------------
 9161|      0|        return -1;
 9162|      0|    }
 9163|    666|    if (type_add_getset(type) < 0) {
  ------------------
  |  Branch (9163:9): [True: 0, False: 666]
  ------------------
 9164|      0|        return -1;
 9165|      0|    }
 9166|    666|    if (type_dict_set_doc(type) < 0) {
  ------------------
  |  Branch (9166:9): [True: 0, False: 666]
  ------------------
 9167|      0|        return -1;
 9168|      0|    }
 9169|    666|    return 0;
 9170|    666|}
typeobject.c:add_operators:
12426|    666|{
12427|    666|    PyObject *dict = lookup_tp_dict(type);
12428|    666|    pytype_slotdef *p;
12429|    666|    PyObject *descr;
12430|    666|    void **ptr;
12431|       |
12432|  63.2k|    for (p = slotdefs; p->name; p++) {
  ------------------
  |  Branch (12432:24): [True: 62.6k, False: 666]
  ------------------
12433|  62.6k|        if (p->wrapper == NULL)
  ------------------
  |  Branch (12433:13): [True: 3.99k, False: 58.6k]
  ------------------
12434|  3.99k|            continue;
12435|  58.6k|        ptr = slotptr(type, p->offset);
12436|  58.6k|        if (!ptr || !*ptr)
  ------------------
  |  Branch (12436:13): [True: 24.6k, False: 33.9k]
  |  Branch (12436:21): [True: 31.5k, False: 2.41k]
  ------------------
12437|  56.1k|            continue;
12438|       |        /* Also ignore when the type slot has been inherited. */
12439|  2.41k|        if (type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN
  ------------------
  |  |  467|  4.83k|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (12439:13): [True: 2.27k, False: 138]
  ------------------
12440|  2.27k|            && type->tp_base != NULL
  ------------------
  |  Branch (12440:16): [True: 2.25k, False: 26]
  ------------------
12441|  2.25k|            && slot_inherited(type, p, ptr))
  ------------------
  |  Branch (12441:16): [True: 322, False: 1.93k]
  ------------------
12442|    322|        {
12443|    322|            continue;
12444|    322|        }
12445|  2.09k|        int r = PyDict_Contains(dict, p->name_strobj);
12446|  2.09k|        if (r > 0)
  ------------------
  |  Branch (12446:13): [True: 40, False: 2.05k]
  ------------------
12447|     40|            continue;
12448|  2.05k|        if (r < 0) {
  ------------------
  |  Branch (12448:13): [True: 0, False: 2.05k]
  ------------------
12449|      0|            return -1;
12450|      0|        }
12451|  2.05k|        if (*ptr == (void *)PyObject_HashNotImplemented) {
  ------------------
  |  Branch (12451:13): [True: 18, False: 2.03k]
  ------------------
12452|       |            /* Classes may prevent the inheritance of the tp_hash
12453|       |               slot by storing PyObject_HashNotImplemented in it. Make it
12454|       |               visible as a None value for the __hash__ attribute. */
12455|     18|            if (PyDict_SetItem(dict, p->name_strobj, Py_None) < 0)
  ------------------
  |  |  616|     18|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (12455:17): [True: 0, False: 18]
  ------------------
12456|      0|                return -1;
12457|     18|        }
12458|  2.03k|        else {
12459|  2.03k|            descr = PyDescr_NewWrapper(type, p, *ptr);
12460|  2.03k|            if (descr == NULL)
  ------------------
  |  Branch (12460:17): [True: 0, False: 2.03k]
  ------------------
12461|      0|                return -1;
12462|  2.03k|            if (PyDict_SetItem(dict, p->name_strobj, descr) < 0) {
  ------------------
  |  Branch (12462:17): [True: 0, False: 2.03k]
  ------------------
12463|      0|                Py_DECREF(descr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12464|      0|                return -1;
12465|      0|            }
12466|  2.03k|            Py_DECREF(descr);
  ------------------
  |  |  430|  2.03k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.03k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.03k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12467|  2.03k|        }
12468|  2.05k|    }
12469|    666|    return 0;
12470|    666|}
typeobject.c:slot_inherited:
12376|  2.25k|{
12377|  2.25k|    void **slot_base = slotptr(type->tp_base, slotdef->offset);
12378|  2.25k|    if (slot_base == NULL || *slot != *slot_base) {
  ------------------
  |  Branch (12378:9): [True: 766, False: 1.48k]
  |  Branch (12378:30): [True: 1.16k, False: 324]
  ------------------
12379|  1.92k|        return 0;
12380|  1.92k|    }
12381|       |
12382|       |    /* Some slots are inherited in pairs. */
12383|    324|    if (slot == (void *)&type->tp_hash) {
  ------------------
  |  Branch (12383:9): [True: 2, False: 322]
  ------------------
12384|      2|        return (type->tp_richcompare == type->tp_base->tp_richcompare);
12385|      2|    }
12386|    322|    else if (slot == (void *)&type->tp_richcompare) {
  ------------------
  |  Branch (12386:14): [True: 0, False: 322]
  ------------------
12387|      0|        return (type->tp_hash == type->tp_base->tp_hash);
12388|      0|    }
12389|       |
12390|       |    /* It must be inherited (see type_ready_inherit()). */
12391|    322|    return 1;
12392|    324|}
typeobject.c:type_add_methods:
 8646|    666|{
 8647|    666|    PyMethodDef *meth = type->tp_methods;
 8648|    666|    if (meth == NULL) {
  ------------------
  |  Branch (8648:9): [True: 372, False: 294]
  ------------------
 8649|    372|        return 0;
 8650|    372|    }
 8651|       |
 8652|  1.95k|    for (; meth->ml_name != NULL; meth++) {
  ------------------
  |  Branch (8652:12): [True: 1.66k, False: 294]
  ------------------
 8653|  1.66k|        if (type_add_method(type, meth) < 0) {
  ------------------
  |  Branch (8653:13): [True: 0, False: 1.66k]
  ------------------
 8654|      0|            return -1;
 8655|      0|        }
 8656|  1.66k|    }
 8657|    294|    return 0;
 8658|    294|}
typeobject.c:type_add_members:
 8663|    666|{
 8664|    666|    PyMemberDef *memb = type->tp_members;
 8665|    666|    if (memb == NULL) {
  ------------------
  |  Branch (8665:9): [True: 324, False: 342]
  ------------------
 8666|    324|        return 0;
 8667|    324|    }
 8668|       |
 8669|    342|    PyObject *dict = lookup_tp_dict(type);
 8670|    980|    for (; memb->name != NULL; memb++) {
  ------------------
  |  Branch (8670:12): [True: 638, False: 342]
  ------------------
 8671|    638|        PyObject *descr = PyDescr_NewMember(type, memb);
 8672|    638|        if (descr == NULL)
  ------------------
  |  Branch (8672:13): [True: 0, False: 638]
  ------------------
 8673|      0|            return -1;
 8674|       |
 8675|    638|        if (PyDict_SetDefaultRef(dict, PyDescr_NAME(descr), descr, NULL) < 0) {
  ------------------
  |  |   36|    638|#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
  ------------------
  |  Branch (8675:13): [True: 0, False: 638]
  ------------------
 8676|      0|            Py_DECREF(descr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8677|      0|            return -1;
 8678|      0|        }
 8679|    638|        Py_DECREF(descr);
  ------------------
  |  |  430|    638|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    638|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    638|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8680|    638|    }
 8681|    342|    return 0;
 8682|    342|}
typeobject.c:type_add_getset:
 8687|    666|{
 8688|    666|    PyGetSetDef *gsp = type->tp_getset;
 8689|    666|    if (gsp == NULL) {
  ------------------
  |  Branch (8689:9): [True: 550, False: 116]
  ------------------
 8690|    550|        return 0;
 8691|    550|    }
 8692|       |
 8693|    116|    PyObject *dict = lookup_tp_dict(type);
 8694|    550|    for (; gsp->name != NULL; gsp++) {
  ------------------
  |  Branch (8694:12): [True: 434, False: 116]
  ------------------
 8695|    434|        PyObject *descr = PyDescr_NewGetSet(type, gsp);
 8696|    434|        if (descr == NULL) {
  ------------------
  |  Branch (8696:13): [True: 0, False: 434]
  ------------------
 8697|      0|            return -1;
 8698|      0|        }
 8699|       |
 8700|    434|        if (PyDict_SetDefaultRef(dict, PyDescr_NAME(descr), descr, NULL) < 0) {
  ------------------
  |  |   36|    434|#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
  ------------------
  |  Branch (8700:13): [True: 0, False: 434]
  ------------------
 8701|      0|            Py_DECREF(descr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8702|      0|            return -1;
 8703|      0|        }
 8704|    434|        Py_DECREF(descr);
  ------------------
  |  |  430|    434|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    434|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    434|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8705|    434|    }
 8706|    116|    return 0;
 8707|    116|}
typeobject.c:type_dict_set_doc:
 9117|    666|{
 9118|    666|    PyObject *dict = lookup_tp_dict(type);
 9119|    666|    int r = PyDict_Contains(dict, &_Py_ID(__doc__));
  ------------------
  |  |  917|    666|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    666|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    666|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9120|    666|    if (r < 0) {
  ------------------
  |  Branch (9120:9): [True: 0, False: 666]
  ------------------
 9121|      0|        return -1;
 9122|      0|    }
 9123|    666|    if (r > 0) {
  ------------------
  |  Branch (9123:9): [True: 116, False: 550]
  ------------------
 9124|    116|        return 0;
 9125|    116|    }
 9126|       |
 9127|    550|    if (type->tp_doc != NULL) {
  ------------------
  |  Branch (9127:9): [True: 334, False: 216]
  ------------------
 9128|    334|        const char *doc_str;
 9129|    334|        doc_str = _PyType_DocWithoutSignature(type->tp_name, type->tp_doc);
 9130|    334|        PyObject *doc = PyUnicode_FromString(doc_str);
 9131|    334|        if (doc == NULL) {
  ------------------
  |  Branch (9131:13): [True: 0, False: 334]
  ------------------
 9132|      0|            return -1;
 9133|      0|        }
 9134|       |
 9135|    334|        if (PyDict_SetItem(dict, &_Py_ID(__doc__), doc) < 0) {
  ------------------
  |  |  917|    334|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    334|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    334|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (9135:13): [True: 0, False: 334]
  ------------------
 9136|      0|            Py_DECREF(doc);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9137|      0|            return -1;
 9138|      0|        }
 9139|    334|        Py_DECREF(doc);
  ------------------
  |  |  430|    334|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    334|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    334|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9140|    334|    }
 9141|    216|    else {
 9142|    216|        if (PyDict_SetItem(dict, &_Py_ID(__doc__), Py_None) < 0) {
  ------------------
  |  |  917|    216|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    216|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    216|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (PyDict_SetItem(dict, &_Py_ID(__doc__), Py_None) < 0) {
  ------------------
  |  |  616|    216|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (9142:13): [True: 0, False: 216]
  ------------------
 9143|      0|            return -1;
 9144|      0|        }
 9145|    216|    }
 9146|    550|    return 0;
 9147|    550|}
typeobject.c:type_ready_inherit:
 9291|    666|{
 9292|    666|    ASSERT_TYPE_LOCK_HELD();
 9293|       |
 9294|       |    /* Inherit special flags from dominant base */
 9295|    666|    PyTypeObject *base = type->tp_base;
 9296|    666|    if (base != NULL) {
  ------------------
  |  Branch (9296:9): [True: 664, False: 2]
  ------------------
 9297|    664|        inherit_special(type, base);
 9298|    664|    }
 9299|       |
 9300|       |    // Inherit slots
 9301|    666|    PyObject *mro = lookup_tp_mro(type);
 9302|    666|    assert(mro != NULL);
  ------------------
  |  Branch (9302:5): [True: 666, False: 0]
  ------------------
 9303|    666|    Py_ssize_t n = PyTuple_GET_SIZE(mro);
  ------------------
  |  |   27|    666|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9304|  2.04k|    for (Py_ssize_t i = 1; i < n; i++) {
  ------------------
  |  Branch (9304:28): [True: 1.37k, False: 666]
  ------------------
 9305|  1.37k|        PyObject *b = PyTuple_GET_ITEM(mro, i);
  ------------------
  |  |   29|  1.37k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|  1.37k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.37k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (9305:23): [True: 1.37k, False: 0]
  ------------------
 9306|  1.37k|        if (PyType_Check(b)) {
  ------------------
  |  |  766|  1.37k|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.37k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.37k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 1.37k, False: 0]
  |  |  ------------------
  ------------------
 9307|  1.37k|            if (inherit_slots(type, (PyTypeObject *)b) < 0) {
  ------------------
  |  Branch (9307:17): [True: 0, False: 1.37k]
  ------------------
 9308|      0|                return -1;
 9309|      0|            }
 9310|  1.37k|            inherit_patma_flags(type, (PyTypeObject *)b);
 9311|  1.37k|        }
 9312|  1.37k|    }
 9313|       |
 9314|    666|    if (base != NULL) {
  ------------------
  |  Branch (9314:9): [True: 664, False: 2]
  ------------------
 9315|    664|        type_ready_inherit_as_structs(type, base);
 9316|    664|    }
 9317|       |
 9318|       |    /* Sanity check for tp_free. */
 9319|    666|    if (_PyType_IS_GC(type) && (type->tp_flags & Py_TPFLAGS_BASETYPE) &&
  ------------------
  |  |  828|  1.33k|#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
  |  |  ------------------
  |  |  |  |  524|    666|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  |  |  ------------------
  |  |  |  Branch (828:26): [True: 596, False: 70]
  |  |  ------------------
  ------------------
                  if (_PyType_IS_GC(type) && (type->tp_flags & Py_TPFLAGS_BASETYPE) &&
  ------------------
  |  |  506|    596|#define Py_TPFLAGS_BASETYPE (1UL << 10)
  ------------------
  |  Branch (9319:32): [True: 390, False: 206]
  ------------------
 9320|    390|        (type->tp_free == NULL || type->tp_free == PyObject_Free))
  ------------------
  |  Branch (9320:10): [True: 0, False: 390]
  |  Branch (9320:35): [True: 0, False: 390]
  ------------------
 9321|      0|    {
 9322|       |        /* This base class needs to call tp_free, but doesn't have
 9323|       |         * one, or its tp_free is for non-gc'ed objects.
 9324|       |         */
 9325|      0|        PyErr_Format(PyExc_TypeError, "type '%.100s' participates in "
 9326|      0|                     "gc and is a base type but has inappropriate "
 9327|      0|                     "tp_free slot",
 9328|      0|                     type->tp_name);
 9329|      0|        return -1;
 9330|      0|    }
 9331|       |
 9332|    666|    return 0;
 9333|    666|}
typeobject.c:inherit_special:
 8712|    664|{
 8713|       |    /* Copying tp_traverse and tp_clear is connected to the GC flags */
 8714|    664|    if (!(type->tp_flags & Py_TPFLAGS_HAVE_GC) &&
  ------------------
  |  |  524|    664|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (8714:9): [True: 82, False: 582]
  ------------------
 8715|     82|        (base->tp_flags & Py_TPFLAGS_HAVE_GC) &&
  ------------------
  |  |  524|     82|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (8715:9): [True: 14, False: 68]
  ------------------
 8716|     14|        (!type->tp_traverse && !type->tp_clear)) {
  ------------------
  |  Branch (8716:10): [True: 14, False: 0]
  |  Branch (8716:32): [True: 14, False: 0]
  ------------------
 8717|     14|        type_add_flags(type, Py_TPFLAGS_HAVE_GC);
  ------------------
  |  |  524|     14|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
 8718|     14|        if (type->tp_traverse == NULL)
  ------------------
  |  Branch (8718:13): [True: 14, False: 0]
  ------------------
 8719|     14|            type->tp_traverse = base->tp_traverse;
 8720|     14|        if (type->tp_clear == NULL)
  ------------------
  |  Branch (8720:13): [True: 14, False: 0]
  ------------------
 8721|     14|            type->tp_clear = base->tp_clear;
 8722|     14|    }
 8723|    664|    type_add_flags(type, base->tp_flags & Py_TPFLAGS_PREHEADER);
  ------------------
  |  |  487|    664|#define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
  |  |  ------------------
  |  |  |  |  477|    664|#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
  |  |  ------------------
  |  |               #define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
  |  |  ------------------
  |  |  |  |  482|    664|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  |  |  ------------------
  ------------------
 8724|       |
 8725|    664|    if (type->tp_basicsize == 0)
  ------------------
  |  Branch (8725:9): [True: 18, False: 646]
  ------------------
 8726|     18|        type->tp_basicsize = base->tp_basicsize;
 8727|       |
 8728|       |    /* Copy other non-function slots */
 8729|       |
 8730|    664|#define COPYVAL(SLOT) \
 8731|    664|    if (type->SLOT == 0) { type->SLOT = base->SLOT; }
 8732|       |
 8733|    664|    COPYVAL(tp_itemsize);
  ------------------
  |  | 8731|    664|    if (type->SLOT == 0) { type->SLOT = base->SLOT; }
  |  |  ------------------
  |  |  |  Branch (8731:9): [True: 598, False: 66]
  |  |  ------------------
  ------------------
 8734|    664|    COPYVAL(tp_weaklistoffset);
  ------------------
  |  | 8731|    664|    if (type->SLOT == 0) { type->SLOT = base->SLOT; }
  |  |  ------------------
  |  |  |  Branch (8731:9): [True: 528, False: 136]
  |  |  ------------------
  ------------------
 8735|    664|    COPYVAL(tp_dictoffset);
  ------------------
  |  | 8731|    664|    if (type->SLOT == 0) { type->SLOT = base->SLOT; }
  |  |  ------------------
  |  |  |  Branch (8731:9): [True: 432, False: 232]
  |  |  ------------------
  ------------------
 8736|       |
 8737|    664|#undef COPYVAL
 8738|       |
 8739|       |    /* Setup fast subclass flags */
 8740|    664|    PyObject *mro = lookup_tp_mro(base);
 8741|    664|    unsigned long flags = 0;
 8742|    664|    if (is_subtype_with_mro(mro, base, (PyTypeObject*)PyExc_BaseException)) {
  ------------------
  |  Branch (8742:9): [True: 152, False: 512]
  ------------------
 8743|    152|        flags |= Py_TPFLAGS_BASE_EXC_SUBCLASS;
  ------------------
  |  |  557|    152|#define Py_TPFLAGS_BASE_EXC_SUBCLASS    (1UL << 30)
  ------------------
 8744|    152|    }
 8745|    512|    else if (is_subtype_with_mro(mro, base, &PyType_Type)) {
  ------------------
  |  Branch (8745:14): [True: 4, False: 508]
  ------------------
 8746|      4|        flags |= Py_TPFLAGS_TYPE_SUBCLASS;
  ------------------
  |  |  558|      4|#define Py_TPFLAGS_TYPE_SUBCLASS        (1UL << 31)
  ------------------
 8747|      4|    }
 8748|    508|    else if (is_subtype_with_mro(mro, base, &PyLong_Type)) {
  ------------------
  |  Branch (8748:14): [True: 2, False: 506]
  ------------------
 8749|      2|        flags |= Py_TPFLAGS_LONG_SUBCLASS;
  ------------------
  |  |  551|      2|#define Py_TPFLAGS_LONG_SUBCLASS        (1UL << 24)
  ------------------
 8750|      2|    }
 8751|    506|    else if (is_subtype_with_mro(mro, base, &PyBytes_Type)) {
  ------------------
  |  Branch (8751:14): [True: 0, False: 506]
  ------------------
 8752|      0|        flags |= Py_TPFLAGS_BYTES_SUBCLASS;
  ------------------
  |  |  554|      0|#define Py_TPFLAGS_BYTES_SUBCLASS       (1UL << 27)
  ------------------
 8753|      0|    }
 8754|    506|    else if (is_subtype_with_mro(mro, base, &PyUnicode_Type)) {
  ------------------
  |  Branch (8754:14): [True: 0, False: 506]
  ------------------
 8755|      0|        flags |= Py_TPFLAGS_UNICODE_SUBCLASS;
  ------------------
  |  |  555|      0|#define Py_TPFLAGS_UNICODE_SUBCLASS     (1UL << 28)
  ------------------
 8756|      0|    }
 8757|    506|    else if (is_subtype_with_mro(mro, base, &PyTuple_Type)) {
  ------------------
  |  Branch (8757:14): [True: 36, False: 470]
  ------------------
 8758|     36|        flags |= Py_TPFLAGS_TUPLE_SUBCLASS;
  ------------------
  |  |  553|     36|#define Py_TPFLAGS_TUPLE_SUBCLASS       (1UL << 26)
  ------------------
 8759|     36|    }
 8760|    470|    else if (is_subtype_with_mro(mro, base, &PyList_Type)) {
  ------------------
  |  Branch (8760:14): [True: 2, False: 468]
  ------------------
 8761|      2|        flags |= Py_TPFLAGS_LIST_SUBCLASS;
  ------------------
  |  |  552|      2|#define Py_TPFLAGS_LIST_SUBCLASS        (1UL << 25)
  ------------------
 8762|      2|    }
 8763|    468|    else if (is_subtype_with_mro(mro, base, &PyDict_Type)) {
  ------------------
  |  Branch (8763:14): [True: 2, False: 466]
  ------------------
 8764|      2|        flags |= Py_TPFLAGS_DICT_SUBCLASS;
  ------------------
  |  |  556|      2|#define Py_TPFLAGS_DICT_SUBCLASS        (1UL << 29)
  ------------------
 8765|      2|    }
 8766|       |
 8767|       |    /* Setup some inheritable flags */
 8768|    664|    if (PyType_HasFeature(base, _Py_TPFLAGS_MATCH_SELF)) {
  ------------------
  |  |  545|    664|#define _Py_TPFLAGS_MATCH_SELF (1UL << 22)
  ------------------
  |  Branch (8768:9): [True: 42, False: 622]
  ------------------
 8769|     42|        flags |= _Py_TPFLAGS_MATCH_SELF;
  ------------------
  |  |  545|     42|#define _Py_TPFLAGS_MATCH_SELF (1UL << 22)
  ------------------
 8770|     42|    }
 8771|    664|    if (PyType_HasFeature(base, Py_TPFLAGS_ITEMS_AT_END)) {
  ------------------
  |  |  548|    664|#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
  ------------------
  |  Branch (8771:9): [True: 4, False: 660]
  ------------------
 8772|      4|        flags |= Py_TPFLAGS_ITEMS_AT_END;
  ------------------
  |  |  548|      4|#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
  ------------------
 8773|      4|    }
 8774|    664|    type_add_flags(type, flags);
 8775|    664|}
typeobject.c:inherit_slots:
 8792|  1.37k|{
 8793|  1.37k|    PyTypeObject *basebase;
 8794|       |
 8795|  1.37k|#undef SLOTDEFINED
 8796|  1.37k|#undef COPYSLOT
 8797|  1.37k|#undef COPYNUM
 8798|  1.37k|#undef COPYSEQ
 8799|  1.37k|#undef COPYMAP
 8800|  1.37k|#undef COPYBUF
 8801|       |
 8802|  1.37k|#define SLOTDEFINED(SLOT) \
 8803|  1.37k|    (base->SLOT != 0 && \
 8804|  1.37k|     (basebase == NULL || base->SLOT != basebase->SLOT))
 8805|       |
 8806|  1.37k|#define COPYSLOT(SLOT) \
 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
 8808|       |
 8809|  1.37k|#define COPYASYNC(SLOT) COPYSLOT(tp_as_async->SLOT)
 8810|  1.37k|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
 8811|  1.37k|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
 8812|  1.37k|#define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT)
 8813|  1.37k|#define COPYBUF(SLOT) COPYSLOT(tp_as_buffer->SLOT)
 8814|       |
 8815|       |    /* This won't inherit indirect slots (from tp_as_number etc.)
 8816|       |       if type doesn't provide the space. */
 8817|       |
 8818|  1.37k|    if (type->tp_as_number != NULL && base->tp_as_number != NULL) {
  ------------------
  |  Branch (8818:9): [True: 620, False: 756]
  |  Branch (8818:39): [True: 240, False: 380]
  ------------------
 8819|    240|        basebase = base->tp_base;
 8820|    240|        if (basebase->tp_as_number == NULL)
  ------------------
  |  Branch (8820:13): [True: 158, False: 82]
  ------------------
 8821|    158|            basebase = NULL;
 8822|    240|        COPYNUM(nb_add);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    238|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 236]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    238|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 238, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8823|    240|        COPYNUM(nb_subtract);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    214|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 8, False: 206]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    214|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 6]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 6, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 214, False: 26]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8824|    240|        COPYNUM(nb_multiply);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8825|    240|        COPYNUM(nb_remainder);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8826|    240|        COPYNUM(nb_divmod);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8827|    240|        COPYNUM(nb_power);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8828|    240|        COPYNUM(nb_negative);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8829|    240|        COPYNUM(nb_positive);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8830|    240|        COPYNUM(nb_absolute);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8831|    240|        COPYNUM(nb_bool);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8832|    240|        COPYNUM(nb_invert);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    238|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    238|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 238, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8833|    240|        COPYNUM(nb_lshift);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8834|    240|        COPYNUM(nb_rshift);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8835|    240|        COPYNUM(nb_and);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    214|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 6, False: 208]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    214|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 6]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 6, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 214, False: 26]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8836|    240|        COPYNUM(nb_xor);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    214|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 6, False: 208]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    214|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 6]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 6, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 214, False: 26]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8837|    240|        COPYNUM(nb_or);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    212|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 14, False: 198]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    212|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 6, False: 8]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 6, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 212, False: 28]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8838|    240|        COPYNUM(nb_int);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8839|    240|        COPYNUM(nb_float);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8840|    240|        COPYNUM(nb_inplace_add);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8841|    240|        COPYNUM(nb_inplace_subtract);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8842|    240|        COPYNUM(nb_inplace_multiply);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8843|    240|        COPYNUM(nb_inplace_remainder);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8844|    240|        COPYNUM(nb_inplace_power);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8845|    240|        COPYNUM(nb_inplace_lshift);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8846|    240|        COPYNUM(nb_inplace_rshift);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8847|    240|        COPYNUM(nb_inplace_and);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8848|    240|        COPYNUM(nb_inplace_xor);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8849|    240|        COPYNUM(nb_inplace_or);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    238|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    238|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 238, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8850|    240|        COPYNUM(nb_true_divide);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8851|    240|        COPYNUM(nb_floor_divide);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8852|    240|        COPYNUM(nb_inplace_true_divide);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8853|    240|        COPYNUM(nb_inplace_floor_divide);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8854|    240|        COPYNUM(nb_index);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8855|    240|        COPYNUM(nb_matrix_multiply);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8856|    240|        COPYNUM(nb_inplace_matrix_multiply);
  ------------------
  |  | 8810|    240|#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    240|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 240]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8857|    240|    }
 8858|       |
 8859|  1.37k|    if (type->tp_as_async != NULL && base->tp_as_async != NULL) {
  ------------------
  |  Branch (8859:9): [True: 568, False: 808]
  |  Branch (8859:38): [True: 228, False: 340]
  ------------------
 8860|    228|        basebase = base->tp_base;
 8861|    228|        if (basebase->tp_as_async == NULL)
  ------------------
  |  Branch (8861:13): [True: 148, False: 80]
  ------------------
 8862|    148|            basebase = NULL;
 8863|    228|        COPYASYNC(am_await);
  ------------------
  |  | 8809|    228|#define COPYASYNC(SLOT) COPYSLOT(tp_as_async->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    228|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    228|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 226]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    228|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 228, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8864|    228|        COPYASYNC(am_aiter);
  ------------------
  |  | 8809|    228|#define COPYASYNC(SLOT) COPYSLOT(tp_as_async->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    228|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    228|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 6, False: 222]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    228|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 4, False: 2]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 228, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8865|    228|        COPYASYNC(am_anext);
  ------------------
  |  | 8809|    228|#define COPYASYNC(SLOT) COPYSLOT(tp_as_async->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    228|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    226|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 224]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    226|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 2]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 226, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8866|    228|    }
 8867|       |
 8868|  1.37k|    if (type->tp_as_sequence != NULL && base->tp_as_sequence != NULL) {
  ------------------
  |  Branch (8868:9): [True: 598, False: 778]
  |  Branch (8868:41): [True: 250, False: 348]
  ------------------
 8869|    250|        basebase = base->tp_base;
 8870|    250|        if (basebase->tp_as_sequence == NULL)
  ------------------
  |  Branch (8870:13): [True: 170, False: 80]
  ------------------
 8871|    170|            basebase = NULL;
 8872|    250|        COPYSEQ(sq_length);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    190|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 84, False: 106]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    190|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 44, False: 40]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 4, False: 36]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 190, False: 60]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8873|    250|        COPYSEQ(sq_concat);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    250|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 22, False: 228]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    250|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 22, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 250, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8874|    250|        COPYSEQ(sq_repeat);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    250|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 22, False: 228]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    250|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 22, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 250, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8875|    250|        COPYSEQ(sq_item);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    214|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 32, False: 182]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    214|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 22, False: 10]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 8, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 214, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8876|    250|        COPYSEQ(sq_ass_item);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    240|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 4, False: 236]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    240|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 2]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 240, False: 10]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8877|    250|        COPYSEQ(sq_contains);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    176|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 58, False: 118]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    176|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 24, False: 34]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 22, False: 12]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 176, False: 74]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8878|    250|        COPYSEQ(sq_inplace_concat);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    250|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 248]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    250|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 250, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8879|    250|        COPYSEQ(sq_inplace_repeat);
  ------------------
  |  | 8811|    250|#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    250|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    250|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 2, False: 248]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    250|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 250, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8880|    250|    }
 8881|       |
 8882|  1.37k|    if (type->tp_as_mapping != NULL && base->tp_as_mapping != NULL) {
  ------------------
  |  Branch (8882:9): [True: 602, False: 774]
  |  Branch (8882:40): [True: 254, False: 348]
  ------------------
 8883|    254|        basebase = base->tp_base;
 8884|    254|        if (basebase->tp_as_mapping == NULL)
  ------------------
  |  Branch (8884:13): [True: 174, False: 80]
  ------------------
 8885|    174|            basebase = NULL;
 8886|    254|        COPYMAP(mp_length);
  ------------------
  |  | 8812|    254|#define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    254|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    194|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 86, False: 108]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    194|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 46, False: 40]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 4, False: 36]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 194, False: 60]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8887|    254|        COPYMAP(mp_subscript);
  ------------------
  |  | 8812|    254|#define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    254|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    218|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 36, False: 182]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    218|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 26, False: 10]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 8, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 218, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8888|    254|        COPYMAP(mp_ass_subscript);
  ------------------
  |  | 8812|    254|#define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    254|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    242|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 4, False: 238]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    242|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 2, False: 2]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 242, False: 12]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8889|    254|    }
 8890|       |
 8891|  1.37k|    if (type->tp_as_buffer != NULL && base->tp_as_buffer != NULL) {
  ------------------
  |  Branch (8891:9): [True: 566, False: 810]
  |  Branch (8891:39): [True: 228, False: 338]
  ------------------
 8892|    228|        basebase = base->tp_base;
 8893|    228|        if (basebase->tp_as_buffer == NULL)
  ------------------
  |  Branch (8893:13): [True: 148, False: 80]
  ------------------
 8894|    148|            basebase = NULL;
 8895|    228|        COPYBUF(bf_getbuffer);
  ------------------
  |  | 8813|    228|#define COPYBUF(SLOT) COPYSLOT(tp_as_buffer->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    228|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    228|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 228]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    228|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 228, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8896|    228|        COPYBUF(bf_releasebuffer);
  ------------------
  |  | 8813|    228|#define COPYBUF(SLOT) COPYSLOT(tp_as_buffer->SLOT)
  |  |  ------------------
  |  |  |  | 8807|    228|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  |  |  ------------------
  |  |  |  |  |  | 8803|    228|    (base->SLOT != 0 && \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8803:6): [True: 0, False: 228]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 8804|    228|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8807:9): [True: 228, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8897|    228|    }
 8898|       |
 8899|  1.37k|    basebase = base->tp_base;
 8900|       |
 8901|  1.37k|    COPYSLOT(tp_dealloc);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|     34|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 34, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 8804|     34|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 16, False: 18]
  |  |  |  |  |  Branch (8804:27): [True: 12, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 34, False: 1.34k]
  |  |  ------------------
  ------------------
 8902|  1.37k|    if (type->tp_getattr == NULL && type->tp_getattro == NULL) {
  ------------------
  |  Branch (8902:9): [True: 1.37k, False: 0]
  |  Branch (8902:37): [True: 468, False: 908]
  ------------------
 8903|    468|        type->tp_getattr = base->tp_getattr;
 8904|    468|        type->tp_getattro = base->tp_getattro;
 8905|    468|    }
 8906|  1.37k|    if (type->tp_setattr == NULL && type->tp_setattro == NULL) {
  ------------------
  |  Branch (8906:9): [True: 1.37k, False: 0]
  |  Branch (8906:37): [True: 642, False: 734]
  ------------------
 8907|    642|        type->tp_setattr = base->tp_setattr;
 8908|    642|        type->tp_setattro = base->tp_setattro;
 8909|    642|    }
 8910|  1.37k|    COPYSLOT(tp_repr);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|    876|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 876, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 8804|    876|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 276, False: 600]
  |  |  |  |  |  Branch (8804:27): [True: 178, False: 422]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 876, False: 500]
  |  |  ------------------
  ------------------
 8911|       |    /* tp_hash see tp_richcompare */
 8912|  1.37k|    {
 8913|       |        /* Always inherit tp_vectorcall_offset to support PyVectorcall_Call().
 8914|       |         * If Py_TPFLAGS_HAVE_VECTORCALL is not inherited, then vectorcall
 8915|       |         * won't be used automatically. */
 8916|  1.37k|        COPYSLOT(tp_vectorcall_offset);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.35k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 12, False: 1.33k]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.35k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 12]
  |  |  |  |  |  Branch (8804:27): [True: 10, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.35k, False: 26]
  |  |  ------------------
  ------------------
 8917|       |
 8918|       |        /* Inherit Py_TPFLAGS_HAVE_VECTORCALL if tp_call is not overridden */
 8919|  1.37k|        if (!type->tp_call &&
  ------------------
  |  Branch (8919:13): [True: 1.33k, False: 42]
  ------------------
 8920|  1.33k|            _PyType_HasFeature(base, Py_TPFLAGS_HAVE_VECTORCALL))
  ------------------
  |  |  510|  1.33k|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
  |  Branch (8920:13): [True: 12, False: 1.32k]
  ------------------
 8921|     12|        {
 8922|     12|            type_add_flags(type, Py_TPFLAGS_HAVE_VECTORCALL);
  ------------------
  |  |  510|     12|#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
  ------------------
 8923|     12|        }
 8924|  1.37k|        COPYSLOT(tp_call);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.33k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 14, False: 1.32k]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.33k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 14]
  |  |  |  |  |  Branch (8804:27): [True: 12, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.33k, False: 42]
  |  |  ------------------
  ------------------
 8925|  1.37k|    }
 8926|  1.37k|    COPYSLOT(tp_str);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.05k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 1.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.05k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 488, False: 562]
  |  |  |  |  |  Branch (8804:27): [True: 132, False: 430]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.05k, False: 326]
  |  |  ------------------
  ------------------
 8927|  1.37k|    {
 8928|       |        /* Copy comparison-related slots only when
 8929|       |           not overriding them anywhere */
 8930|  1.37k|        if (type->tp_richcompare == NULL &&
  ------------------
  |  Branch (8930:13): [True: 598, False: 778]
  ------------------
 8931|    598|            type->tp_hash == NULL)
  ------------------
  |  Branch (8931:13): [True: 588, False: 10]
  ------------------
 8932|    588|        {
 8933|    588|            int r = overrides_hash(type);
 8934|    588|            if (r < 0) {
  ------------------
  |  Branch (8934:17): [True: 0, False: 588]
  ------------------
 8935|      0|                return -1;
 8936|      0|            }
 8937|    588|            if (!r) {
  ------------------
  |  Branch (8937:17): [True: 556, False: 32]
  ------------------
 8938|    556|                type->tp_richcompare = base->tp_richcompare;
 8939|    556|                type->tp_hash = base->tp_hash;
 8940|    556|            }
 8941|    588|        }
 8942|  1.37k|    }
 8943|  1.37k|    {
 8944|  1.37k|        COPYSLOT(tp_iter);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.06k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 130, False: 932]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.06k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 130]
  |  |  |  |  |  Branch (8804:27): [True: 92, False: 38]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.06k, False: 314]
  |  |  ------------------
  ------------------
 8945|  1.37k|        COPYSLOT(tp_iternext);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.11k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 146, False: 968]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.11k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 146]
  |  |  |  |  |  Branch (8804:27): [True: 82, False: 64]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.11k, False: 262]
  |  |  ------------------
  ------------------
 8946|  1.37k|    }
 8947|  1.37k|    {
 8948|  1.37k|        COPYSLOT(tp_descr_get);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.34k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 6, False: 1.34k]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.34k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 6]
  |  |  |  |  |  Branch (8804:27): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.34k, False: 30]
  |  |  ------------------
  ------------------
 8949|       |        /* Inherit Py_TPFLAGS_METHOD_DESCRIPTOR if tp_descr_get was inherited,
 8950|       |         * but only for extension types */
 8951|  1.37k|        if (base->tp_descr_get &&
  ------------------
  |  Branch (8951:13): [True: 6, False: 1.37k]
  ------------------
 8952|      6|            type->tp_descr_get == base->tp_descr_get &&
  ------------------
  |  Branch (8952:13): [True: 6, False: 0]
  ------------------
 8953|      6|            _PyType_HasFeature(type, Py_TPFLAGS_IMMUTABLETYPE) &&
  ------------------
  |  |  500|      6|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (8953:13): [True: 0, False: 6]
  ------------------
 8954|      0|            _PyType_HasFeature(base, Py_TPFLAGS_METHOD_DESCRIPTOR))
  ------------------
  |  |  534|      0|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
  |  Branch (8954:13): [True: 0, False: 0]
  ------------------
 8955|      0|        {
 8956|      0|            type_add_flags(type, Py_TPFLAGS_METHOD_DESCRIPTOR);
  ------------------
  |  |  534|      0|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
 8957|      0|        }
 8958|  1.37k|        COPYSLOT(tp_descr_set);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.36k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 2, False: 1.36k]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.36k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 2]
  |  |  |  |  |  Branch (8804:27): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.36k, False: 8]
  |  |  ------------------
  ------------------
 8959|  1.37k|        COPYSLOT(tp_dictoffset);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|    558|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 0, False: 558]
  |  |  |  |  ------------------
  |  |  |  | 8804|    558|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 0]
  |  |  |  |  |  Branch (8804:27): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 558, False: 818]
  |  |  ------------------
  ------------------
 8960|  1.37k|        COPYSLOT(tp_init);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|    682|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 682, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 8804|    682|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 426, False: 256]
  |  |  |  |  |  Branch (8804:27): [True: 56, False: 200]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 682, False: 694]
  |  |  ------------------
  ------------------
 8961|  1.37k|        COPYSLOT(tp_alloc);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|    870|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 870, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 8804|    870|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 410, False: 460]
  |  |  |  |  |  Branch (8804:27): [True: 0, False: 460]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 870, False: 506]
  |  |  ------------------
  ------------------
 8962|  1.37k|        COPYSLOT(tp_is_gc);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.37k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 6, False: 1.36k]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.37k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 6]
  |  |  |  |  |  Branch (8804:27): [True: 4, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.37k, False: 6]
  |  |  ------------------
  ------------------
 8963|  1.37k|        COPYSLOT(tp_finalize);
  ------------------
  |  | 8807|  1.37k|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|  1.34k|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 38, False: 1.30k]
  |  |  |  |  ------------------
  |  |  |  | 8804|  1.34k|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 0, False: 38]
  |  |  |  |  |  Branch (8804:27): [True: 22, False: 16]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 1.34k, False: 36]
  |  |  ------------------
  ------------------
 8964|  1.37k|        if ((type->tp_flags & Py_TPFLAGS_HAVE_GC) ==
  ------------------
  |  |  524|  1.37k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (8964:13): [True: 780, False: 596]
  ------------------
 8965|  1.37k|            (base->tp_flags & Py_TPFLAGS_HAVE_GC)) {
  ------------------
  |  |  524|  1.37k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
 8966|       |            /* They agree about gc. */
 8967|    780|            COPYSLOT(tp_free);
  ------------------
  |  | 8807|    780|    if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
  |  |  ------------------
  |  |  |  | 8803|    516|    (base->SLOT != 0 && \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8803:6): [True: 516, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 8804|    516|     (basebase == NULL || base->SLOT != basebase->SLOT))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8804:7): [True: 52, False: 464]
  |  |  |  |  |  Branch (8804:27): [True: 206, False: 258]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8807:9): [True: 516, False: 264]
  |  |  ------------------
  ------------------
 8968|    780|        }
 8969|    596|        else if ((type->tp_flags & Py_TPFLAGS_HAVE_GC) &&
  ------------------
  |  |  524|    596|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (8969:18): [True: 596, False: 0]
  ------------------
 8970|    596|                 type->tp_free == NULL &&
  ------------------
  |  Branch (8970:18): [True: 134, False: 462]
  ------------------
 8971|    134|                 base->tp_free == PyObject_Free) {
  ------------------
  |  Branch (8971:18): [True: 134, False: 0]
  ------------------
 8972|       |            /* A bit of magic to plug in the correct default
 8973|       |             * tp_free function when a derived class adds gc,
 8974|       |             * didn't define tp_free, and the base uses the
 8975|       |             * default non-gc tp_free.
 8976|       |             */
 8977|    134|            type->tp_free = PyObject_GC_Del;
 8978|    134|        }
 8979|       |        /* else they didn't agree about gc, and there isn't something
 8980|       |         * obvious to be done -- the type is on its own.
 8981|       |         */
 8982|  1.37k|    }
 8983|  1.37k|    return 0;
 8984|  1.37k|}
typeobject.c:overrides_hash:
 8779|    588|{
 8780|    588|    PyObject *dict = lookup_tp_dict(type);
 8781|       |
 8782|    588|    assert(dict != NULL);
  ------------------
  |  Branch (8782:5): [True: 588, False: 0]
  ------------------
 8783|    588|    int r = PyDict_Contains(dict, &_Py_ID(__eq__));
  ------------------
  |  |  917|    588|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    588|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    588|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8784|    588|    if (r == 0) {
  ------------------
  |  Branch (8784:9): [True: 558, False: 30]
  ------------------
 8785|    558|        r = PyDict_Contains(dict, &_Py_ID(__hash__));
  ------------------
  |  |  917|    558|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    558|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    558|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8786|    558|    }
 8787|    588|    return r;
 8788|    588|}
typeobject.c:inherit_patma_flags:
 9283|  1.37k|inherit_patma_flags(PyTypeObject *type, PyTypeObject *base) {
 9284|  1.37k|    if ((type->tp_flags & COLLECTION_FLAGS) == 0) {
  ------------------
  |  | 8989|  1.37k|#define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  490|  1.37k|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |               #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  492|  1.37k|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  ------------------
  |  Branch (9284:9): [True: 1.27k, False: 102]
  ------------------
 9285|  1.27k|        type_add_flags(type, base->tp_flags & COLLECTION_FLAGS);
  ------------------
  |  | 8989|  1.27k|#define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  490|  1.27k|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |               #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
  |  |  ------------------
  |  |  |  |  492|  1.27k|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  ------------------
 9286|  1.27k|    }
 9287|  1.37k|}
typeobject.c:type_ready_inherit_as_structs:
 9264|    664|{
 9265|    664|    if (type->tp_as_async == NULL) {
  ------------------
  |  Branch (9265:9): [True: 400, False: 264]
  ------------------
 9266|    400|        type->tp_as_async = base->tp_as_async;
 9267|    400|    }
 9268|    664|    if (type->tp_as_number == NULL) {
  ------------------
  |  Branch (9268:9): [True: 354, False: 310]
  ------------------
 9269|    354|        type->tp_as_number = base->tp_as_number;
 9270|    354|    }
 9271|    664|    if (type->tp_as_sequence == NULL) {
  ------------------
  |  Branch (9271:9): [True: 370, False: 294]
  ------------------
 9272|    370|        type->tp_as_sequence = base->tp_as_sequence;
 9273|    370|    }
 9274|    664|    if (type->tp_as_mapping == NULL) {
  ------------------
  |  Branch (9274:9): [True: 368, False: 296]
  ------------------
 9275|    368|        type->tp_as_mapping = base->tp_as_mapping;
 9276|    368|    }
 9277|    664|    if (type->tp_as_buffer == NULL) {
  ------------------
  |  Branch (9277:9): [True: 402, False: 262]
  ------------------
 9278|    402|        type->tp_as_buffer = base->tp_as_buffer;
 9279|    402|    }
 9280|    664|}
typeobject.c:type_ready_preheader:
 9174|    666|{
 9175|    666|    if (type->tp_flags & Py_TPFLAGS_MANAGED_DICT) {
  ------------------
  |  |  482|    666|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (9175:9): [True: 96, False: 570]
  ------------------
 9176|     96|        if (type->tp_dictoffset > 0 || type->tp_dictoffset < -1) {
  ------------------
  |  Branch (9176:13): [True: 0, False: 96]
  |  Branch (9176:40): [True: 0, False: 96]
  ------------------
 9177|      0|            PyErr_Format(PyExc_TypeError,
 9178|      0|                        "type %s has the Py_TPFLAGS_MANAGED_DICT flag "
 9179|      0|                        "but tp_dictoffset is set",
 9180|      0|                        type->tp_name);
 9181|      0|            return -1;
 9182|      0|        }
 9183|     96|        if (!(type->tp_flags & Py_TPFLAGS_HAVE_GC)) {
  ------------------
  |  |  524|     96|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (9183:13): [True: 0, False: 96]
  ------------------
 9184|      0|            PyErr_Format(PyExc_SystemError,
 9185|      0|                        "type %s has the Py_TPFLAGS_MANAGED_DICT flag "
 9186|      0|                        "but not Py_TPFLAGS_HAVE_GC flag",
 9187|      0|                        type->tp_name);
 9188|      0|            return -1;
 9189|      0|        }
 9190|     96|        type->tp_dictoffset = -1;
 9191|     96|    }
 9192|    666|    if (type->tp_flags & Py_TPFLAGS_MANAGED_WEAKREF) {
  ------------------
  |  |  477|    666|#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
  ------------------
  |  Branch (9192:9): [True: 120, False: 546]
  ------------------
 9193|    120|        if (type->tp_weaklistoffset != 0 &&
  ------------------
  |  Branch (9193:13): [True: 106, False: 14]
  ------------------
 9194|    106|            type->tp_weaklistoffset != MANAGED_WEAKREF_OFFSET)
  ------------------
  |  |  926|    106|#  define MANAGED_WEAKREF_OFFSET (((Py_ssize_t)sizeof(PyObject *))*-4)
  ------------------
  |  Branch (9194:13): [True: 0, False: 106]
  ------------------
 9195|      0|        {
 9196|      0|            PyErr_Format(PyExc_TypeError,
 9197|      0|                        "type %s has the Py_TPFLAGS_MANAGED_WEAKREF flag "
 9198|      0|                        "but tp_weaklistoffset is set",
 9199|      0|                        type->tp_name);
 9200|      0|            return -1;
 9201|      0|        }
 9202|    120|        if (!(type->tp_flags & Py_TPFLAGS_HAVE_GC)) {
  ------------------
  |  |  524|    120|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (9202:13): [True: 0, False: 120]
  ------------------
 9203|      0|            PyErr_Format(PyExc_SystemError,
 9204|      0|                        "type %s has the Py_TPFLAGS_MANAGED_WEAKREF flag "
 9205|      0|                        "but not Py_TPFLAGS_HAVE_GC flag",
 9206|      0|                        type->tp_name);
 9207|      0|            return -1;
 9208|      0|        }
 9209|    120|        type->tp_weaklistoffset = MANAGED_WEAKREF_OFFSET;
  ------------------
  |  |  926|    120|#  define MANAGED_WEAKREF_OFFSET (((Py_ssize_t)sizeof(PyObject *))*-4)
  ------------------
 9210|    120|    }
 9211|    666|    return 0;
 9212|    666|}
typeobject.c:type_ready_set_hash:
 9343|    666|{
 9344|    666|    if (type->tp_hash != NULL) {
  ------------------
  |  Branch (9344:9): [True: 630, False: 36]
  ------------------
 9345|    630|        return 0;
 9346|    630|    }
 9347|       |
 9348|     36|    PyObject *dict = lookup_tp_dict(type);
 9349|     36|    int r = PyDict_Contains(dict, &_Py_ID(__hash__));
  ------------------
  |  |  917|     36|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     36|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     36|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9350|     36|    if (r < 0) {
  ------------------
  |  Branch (9350:9): [True: 0, False: 36]
  ------------------
 9351|      0|        return -1;
 9352|      0|    }
 9353|     36|    if (r > 0) {
  ------------------
  |  Branch (9353:9): [True: 6, False: 30]
  ------------------
 9354|      6|        return 0;
 9355|      6|    }
 9356|       |
 9357|     30|    if (PyDict_SetItem(dict, &_Py_ID(__hash__), Py_None) < 0) {
  ------------------
  |  |  917|     30|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     30|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     30|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyDict_SetItem(dict, &_Py_ID(__hash__), Py_None) < 0) {
  ------------------
  |  |  616|     30|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (9357:9): [True: 0, False: 30]
  ------------------
 9358|      0|        return -1;
 9359|      0|    }
 9360|     30|    type->tp_hash = PyObject_HashNotImplemented;
 9361|     30|    return 0;
 9362|     30|}
typeobject.c:type_ready_add_subclasses:
 9368|    666|{
 9369|    666|    PyObject *bases = lookup_tp_bases(type);
 9370|    666|    Py_ssize_t nbase = PyTuple_GET_SIZE(bases);
  ------------------
  |  |   27|    666|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    666|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    666|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9371|  1.35k|    for (Py_ssize_t i = 0; i < nbase; i++) {
  ------------------
  |  Branch (9371:28): [True: 688, False: 666]
  ------------------
 9372|    688|        PyObject *b = PyTuple_GET_ITEM(bases, i);
  ------------------
  |  |   29|    688|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    688|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    688|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (9372:23): [True: 688, False: 0]
  ------------------
 9373|    688|        if (PyType_Check(b) && add_subclass((PyTypeObject *)b, type) < 0) {
  ------------------
  |  |  766|  1.37k|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    688|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    688|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 688, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (9373:32): [True: 0, False: 688]
  ------------------
 9374|      0|            return -1;
 9375|      0|        }
 9376|    688|    }
 9377|    666|    return 0;
 9378|    666|}
typeobject.c:type_ready_managed_dict:
 9436|    666|{
 9437|    666|    if (!(type->tp_flags & Py_TPFLAGS_MANAGED_DICT)) {
  ------------------
  |  |  482|    666|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (9437:9): [True: 570, False: 96]
  ------------------
 9438|    570|        return 0;
 9439|    570|    }
 9440|     96|    if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|     96|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (9440:9): [True: 0, False: 96]
  ------------------
 9441|      0|        PyErr_Format(PyExc_SystemError,
 9442|      0|                     "type %s has the Py_TPFLAGS_MANAGED_DICT flag "
 9443|      0|                     "but not Py_TPFLAGS_HEAPTYPE flag",
 9444|      0|                     type->tp_name);
 9445|      0|        return -1;
 9446|      0|    }
 9447|     96|    PyHeapTypeObject* et = (PyHeapTypeObject*)type;
 9448|     96|    if (et->ht_cached_keys == NULL) {
  ------------------
  |  Branch (9448:9): [True: 96, False: 0]
  ------------------
 9449|     96|        et->ht_cached_keys = _PyDict_NewKeysForClass(et);
 9450|     96|        if (et->ht_cached_keys == NULL) {
  ------------------
  |  Branch (9450:13): [True: 0, False: 96]
  ------------------
 9451|      0|            PyErr_NoMemory();
 9452|      0|            return -1;
 9453|      0|        }
 9454|     96|    }
 9455|     96|    if (type->tp_itemsize == 0) {
  ------------------
  |  Branch (9455:9): [True: 94, False: 2]
  ------------------
 9456|     94|        type_add_flags(type, Py_TPFLAGS_INLINE_VALUES);
  ------------------
  |  |  472|     94|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
 9457|     94|    }
 9458|     96|    return 0;
 9459|     96|}
typeobject.c:type_ready_post_checks:
 9463|    666|{
 9464|       |    // bpo-44263: tp_traverse is required if Py_TPFLAGS_HAVE_GC is set.
 9465|       |    // Note: tp_clear is optional.
 9466|    666|    if (type->tp_flags & Py_TPFLAGS_HAVE_GC
  ------------------
  |  |  524|  1.33k|#define Py_TPFLAGS_HAVE_GC (1UL << 14)
  ------------------
  |  Branch (9466:9): [True: 596, False: 70]
  ------------------
 9467|    596|        && type->tp_traverse == NULL)
  ------------------
  |  Branch (9467:12): [True: 0, False: 596]
  ------------------
 9468|      0|    {
 9469|      0|        PyErr_Format(PyExc_SystemError,
 9470|      0|                     "type %s has the Py_TPFLAGS_HAVE_GC flag "
 9471|      0|                     "but has no traverse function",
 9472|      0|                     type->tp_name);
 9473|      0|        return -1;
 9474|      0|    }
 9475|    666|    if (type->tp_flags & Py_TPFLAGS_MANAGED_DICT) {
  ------------------
  |  |  482|    666|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (9475:9): [True: 96, False: 570]
  ------------------
 9476|     96|        if (type->tp_dictoffset != -1) {
  ------------------
  |  Branch (9476:13): [True: 0, False: 96]
  ------------------
 9477|      0|            PyErr_Format(PyExc_SystemError,
 9478|      0|                        "type %s has the Py_TPFLAGS_MANAGED_DICT flag "
 9479|      0|                        "but tp_dictoffset is set to incompatible value",
 9480|      0|                        type->tp_name);
 9481|      0|            return -1;
 9482|      0|        }
 9483|     96|    }
 9484|    570|    else if (type->tp_dictoffset < (Py_ssize_t)sizeof(PyObject)) {
  ------------------
  |  Branch (9484:14): [True: 370, False: 200]
  ------------------
 9485|    370|        if (type->tp_dictoffset + type->tp_basicsize <= 0) {
  ------------------
  |  Branch (9485:13): [True: 0, False: 370]
  ------------------
 9486|      0|            PyErr_Format(PyExc_SystemError,
 9487|      0|                         "type %s has a tp_dictoffset that is too small",
 9488|      0|                         type->tp_name);
 9489|      0|            return -1;
 9490|      0|        }
 9491|    370|    }
 9492|    666|    return 0;
 9493|    666|}
typeobject.c:stop_readying:
  498|    666|{
  499|    666|    if (type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
  ------------------
  |  |  467|    666|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
  |  Branch (499:9): [True: 414, False: 252]
  ------------------
  500|    414|        PyInterpreterState *interp = _PyInterpreterState_GET();
  501|    414|        managed_static_type_state *state = managed_static_type_state_get(interp, type);
  502|    414|        assert(state != NULL);
  ------------------
  |  Branch (502:9): [True: 414, False: 0]
  ------------------
  503|    414|        assert(state->readying);
  ------------------
  |  Branch (503:9): [True: 414, False: 0]
  ------------------
  504|    414|        state->readying = 0;
  505|    414|        return;
  506|    414|    }
  507|    666|    assert(type->tp_flags & Py_TPFLAGS_READYING);
  ------------------
  |  Branch (507:5): [True: 252, False: 0]
  ------------------
  508|    252|    type_clear_flags(type, Py_TPFLAGS_READYING);
  ------------------
  |  |  521|    252|#define Py_TPFLAGS_READYING (1UL << 13)
  ------------------
  509|    252|}
typeobject.c:init_static_type:
 9611|    414|{
 9612|    414|    assert(_Py_IsImmortal((PyObject *)self));
  ------------------
  |  Branch (9612:5): [True: 414, False: 0]
  ------------------
 9613|    414|    assert(!(self->tp_flags & Py_TPFLAGS_HEAPTYPE));
  ------------------
  |  Branch (9613:5): [True: 414, False: 0]
  ------------------
 9614|    414|    assert(!(self->tp_flags & Py_TPFLAGS_MANAGED_DICT));
  ------------------
  |  Branch (9614:5): [True: 414, False: 0]
  ------------------
 9615|    414|    assert(!(self->tp_flags & Py_TPFLAGS_MANAGED_WEAKREF));
  ------------------
  |  Branch (9615:5): [True: 414, False: 0]
  ------------------
 9616|       |
 9617|    414|    if (initial) {
  ------------------
  |  Branch (9617:9): [True: 414, False: 0]
  ------------------
 9618|    414|        assert((self->tp_flags & Py_TPFLAGS_READY) == 0);
  ------------------
  |  Branch (9618:9): [True: 414, False: 0]
  ------------------
 9619|       |
 9620|    414|        type_add_flags(self, _Py_TPFLAGS_STATIC_BUILTIN);
  ------------------
  |  |  467|    414|#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
  ------------------
 9621|    414|        type_add_flags(self, Py_TPFLAGS_IMMUTABLETYPE);
  ------------------
  |  |  500|    414|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
 9622|       |
 9623|    414|        if (self->tp_version_tag == 0) {
  ------------------
  |  Branch (9623:13): [True: 392, False: 22]
  ------------------
 9624|    392|            unsigned int next_version_tag = next_global_version_tag();
 9625|    392|            assert(next_version_tag != 0);
  ------------------
  |  Branch (9625:13): [True: 392, False: 0]
  ------------------
 9626|    392|            _PyType_SetVersion(self, next_version_tag);
 9627|    392|        }
 9628|    414|    }
 9629|      0|    else {
 9630|      0|        assert(!initial);
  ------------------
  |  Branch (9630:9): [True: 0, False: 0]
  ------------------
 9631|      0|        assert(self->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN);
  ------------------
  |  Branch (9631:9): [True: 0, False: 0]
  ------------------
 9632|      0|        assert(self->tp_version_tag != 0);
  ------------------
  |  Branch (9632:9): [True: 0, False: 0]
  ------------------
 9633|      0|    }
 9634|       |
 9635|    414|    managed_static_type_state_init(interp, self, isbuiltin, initial);
 9636|       |
 9637|    414|    int res;
 9638|    414|    BEGIN_TYPE_LOCK();
 9639|    414|    res = type_ready(self, initial);
 9640|    414|    END_TYPE_LOCK();
 9641|    414|    if (res < 0) {
  ------------------
  |  Branch (9641:9): [True: 0, False: 414]
  ------------------
 9642|      0|        _PyStaticType_ClearWeakRefs(interp, self);
 9643|      0|        managed_static_type_state_clear(interp, self, isbuiltin, initial);
 9644|      0|    }
 9645|    414|    return res;
 9646|    414|}
typeobject.c:managed_static_type_state_init:
  312|    414|{
  313|    414|    assert(interp->runtime == &_PyRuntime);
  ------------------
  |  Branch (313:5): [True: 414, False: 0]
  ------------------
  314|       |
  315|    414|    size_t index;
  316|    414|    if (initial) {
  ------------------
  |  Branch (316:9): [True: 414, False: 0]
  ------------------
  317|    414|        assert(!managed_static_type_index_is_set(self));
  ------------------
  |  Branch (317:9): [True: 414, False: 0]
  ------------------
  318|    414|        if (isbuiltin) {
  ------------------
  |  Branch (318:13): [True: 402, False: 12]
  ------------------
  319|    402|            index = interp->types.builtins.num_initialized;
  320|    402|            assert(index < _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES);
  ------------------
  |  Branch (320:13): [True: 402, False: 0]
  ------------------
  321|    402|        }
  322|     12|        else {
  323|     12|            PyMutex_Lock(&interp->types.mutex);
  ------------------
  |  |   59|     12|#define PyMutex_Lock _PyMutex_Lock
  ------------------
  324|     12|            index = interp->types.for_extensions.next_index;
  325|     12|            interp->types.for_extensions.next_index++;
  326|     12|            PyMutex_Unlock(&interp->types.mutex);
  ------------------
  |  |   70|     12|#define PyMutex_Unlock _PyMutex_Unlock
  ------------------
  327|     12|            assert(index < _Py_MAX_MANAGED_STATIC_EXT_TYPES);
  ------------------
  |  Branch (327:13): [True: 12, False: 0]
  ------------------
  328|     12|        }
  329|    414|        managed_static_type_index_set(self, index);
  330|    414|    }
  331|      0|    else {
  332|      0|        index = managed_static_type_index_get(self);
  333|      0|        if (isbuiltin) {
  ------------------
  |  Branch (333:13): [True: 0, False: 0]
  ------------------
  334|      0|            assert(index == interp->types.builtins.num_initialized);
  ------------------
  |  Branch (334:13): [True: 0, False: 0]
  ------------------
  335|      0|            assert(index < _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES);
  ------------------
  |  Branch (335:13): [True: 0, False: 0]
  ------------------
  336|      0|        }
  337|      0|        else {
  338|      0|            assert(index < _Py_MAX_MANAGED_STATIC_EXT_TYPES);
  ------------------
  |  Branch (338:13): [True: 0, False: 0]
  ------------------
  339|      0|        }
  340|      0|    }
  341|    414|    size_t full_index = isbuiltin
  ------------------
  |  Branch (341:25): [True: 402, False: 12]
  ------------------
  342|    414|        ? index
  343|    414|        : index + _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES;
  ------------------
  |  |  531|     12|    (_Py_NUM_MANAGED_PREINITIALIZED_TYPES + 83)
  |  |  ------------------
  |  |  |  |  529|     12|#define _Py_NUM_MANAGED_PREINITIALIZED_TYPES 120
  |  |  ------------------
  ------------------
  344|       |
  345|    414|    assert((initial == 1) ==
  ------------------
  |  Branch (345:5): [True: 414, False: 0]
  ------------------
  346|    414|            (_Py_atomic_load_int64(&_PyRuntime.types.managed_static.types[full_index].interp_count) == 0));
  347|    414|    (void)_Py_atomic_add_int64(
  348|    414|            &_PyRuntime.types.managed_static.types[full_index].interp_count, 1);
  349|       |
  350|    414|    if (initial) {
  ------------------
  |  Branch (350:9): [True: 414, False: 0]
  ------------------
  351|    414|        assert(_PyRuntime.types.managed_static.types[full_index].type == NULL);
  ------------------
  |  Branch (351:9): [True: 414, False: 0]
  ------------------
  352|    414|        _PyRuntime.types.managed_static.types[full_index].type = self;
  353|    414|    }
  354|      0|    else {
  355|      0|        assert(_PyRuntime.types.managed_static.types[full_index].type == self);
  ------------------
  |  Branch (355:9): [True: 0, False: 0]
  ------------------
  356|      0|    }
  357|       |
  358|    414|    managed_static_type_state *state = isbuiltin
  ------------------
  |  Branch (358:40): [True: 402, False: 12]
  ------------------
  359|    414|        ? &(interp->types.builtins.initialized[index])
  360|    414|        : &(interp->types.for_extensions.initialized[index]);
  361|       |
  362|       |    /* It should only be called once for each builtin type per interpreter. */
  363|    414|    assert(state->type == NULL);
  ------------------
  |  Branch (363:5): [True: 414, False: 0]
  ------------------
  364|    414|    state->type = self;
  365|    414|    state->isbuiltin = isbuiltin;
  366|       |
  367|       |    /* state->tp_subclasses is left NULL until init_subclasses() sets it. */
  368|       |    /* state->tp_weaklist is left NULL until insert_head() or insert_after()
  369|       |       (in weakrefobject.c) sets it. */
  370|       |
  371|    414|    if (isbuiltin) {
  ------------------
  |  Branch (371:9): [True: 402, False: 12]
  ------------------
  372|    402|        interp->types.builtins.num_initialized++;
  373|    402|    }
  374|     12|    else {
  375|     12|        interp->types.for_extensions.num_initialized++;
  376|     12|    }
  377|    414|}
typeobject.c:managed_static_type_index_set:
  248|    414|{
  249|    414|    assert(index < _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES);
  ------------------
  |  Branch (249:5): [True: 414, False: 0]
  ------------------
  250|       |    /* We store a 1-based index so 0 can mean "not initialized". */
  251|    414|    self->tp_subclasses = (PyObject *)(index + 1);
  252|    414|}
typeobject.c:vectorcall_method:
 3112|      6|{
 3113|      6|    assert(nargs >= 1);
  ------------------
  |  Branch (3113:5): [True: 6, False: 0]
  ------------------
 3114|       |
 3115|      6|    PyThreadState *tstate = _PyThreadState_GET();
 3116|      6|    PyObject *retval = NULL;
 3117|      6|    PyObject *self = args[0];
 3118|      6|    _PyCStackRef cref;
 3119|      6|    _PyThreadState_PushCStackRef(tstate, &cref);
 3120|      6|    int unbound = lookup_method(self, name, &cref.ref);
 3121|      6|    if (unbound >= 0) {
  ------------------
  |  Branch (3121:9): [True: 6, False: 0]
  ------------------
 3122|      6|        PyObject *func = PyStackRef_AsPyObjectBorrow(cref.ref);
 3123|      6|        retval = vectorcall_unbound(tstate, unbound, func, args, nargs);
 3124|      6|    }
 3125|      6|    _PyThreadState_PopCStackRef(tstate, &cref);
 3126|      6|    return retval;
 3127|      6|}
typeobject.c:slot_tp_init:
11150|    168|{
11151|    168|    PyObject *res = call_method(self, &_Py_ID(__init__), args, kwds);
  ------------------
  |  |  917|    168|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    168|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    168|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11152|    168|    if (res == NULL)
  ------------------
  |  Branch (11152:9): [True: 8, False: 160]
  ------------------
11153|      8|        return -1;
11154|    160|    if (res != Py_None) {
  ------------------
  |  |  616|    160|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (11154:9): [True: 0, False: 160]
  ------------------
11155|      0|        PyErr_Format(PyExc_TypeError,
11156|      0|                     "__init__() should return None, not '%.200s'",
11157|      0|                     Py_TYPE(res)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11158|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11159|      0|        return -1;
11160|      0|    }
11161|    160|    Py_DECREF(res);
  ------------------
  |  |  430|    160|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    160|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    160|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11162|    160|    return 0;
11163|    160|}
typeobject.c:wrap_init:
10373|     60|{
10374|     60|    initproc func = (initproc)wrapped;
10375|       |
10376|     60|    if (func(self, args, kwds) < 0)
  ------------------
  |  Branch (10376:9): [True: 0, False: 60]
  ------------------
10377|      0|        return NULL;
10378|     60|    Py_RETURN_NONE;
  ------------------
  |  |  628|     60|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     60|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
10379|     60|}
typeobject.c:slot_mp_subscript:
10503|      6|FUNCNAME(PyObject *self, ARG1TYPE arg1) \
10504|      6|{ \
10505|      6|    PyObject* stack[2] = {self, arg1}; \
10506|      6|    return vectorcall_method(&_Py_ID(DUNDER), stack, 2); \
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10507|      6|}
typeobject.c:slot_sq_contains:
10661|      2|{
10662|      2|    int attr_is_none = 0;
10663|      2|    PyObject *res = maybe_call_special_one_arg(self, &_Py_ID(__contains__), value,
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10664|      2|                                               &attr_is_none);
10665|      2|    if (attr_is_none) {
  ------------------
  |  Branch (10665:9): [True: 0, False: 2]
  ------------------
10666|      0|        PyErr_Format(PyExc_TypeError,
10667|      0|            "'%.200s' object is not a container",
10668|      0|            Py_TYPE(self)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10669|      0|        return -1;
10670|      0|    }
10671|      2|    else if (res == NULL && PyErr_Occurred()) {
  ------------------
  |  Branch (10671:14): [True: 0, False: 2]
  |  Branch (10671:29): [True: 0, False: 0]
  ------------------
10672|      0|        return -1;
10673|      0|    }
10674|      2|    else if (res == NULL) {
  ------------------
  |  Branch (10674:14): [True: 0, False: 2]
  ------------------
10675|      0|        return (int)_PySequence_IterSearch(self, value, PY_ITERSEARCH_CONTAINS);
  ------------------
  |  |   29|      0|#define PY_ITERSEARCH_CONTAINS 3
  ------------------
10676|      0|    }
10677|      2|    int result = PyObject_IsTrue(res);
10678|      2|    Py_DECREF(res);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10679|      2|    return result;
10680|      2|}
typeobject.c:type_get_mro:
 1765|     32|{
 1766|     32|    PyTypeObject *type = PyTypeObject_CAST(tp);
  ------------------
  |  |  200|     32|#define PyTypeObject_CAST(op)   ((PyTypeObject *)(op))
  ------------------
 1767|     32|    PyObject *mro = lookup_tp_mro(type);
 1768|     32|    if (mro == NULL) {
  ------------------
  |  Branch (1768:9): [True: 0, False: 32]
  ------------------
 1769|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1770|      0|    }
 1771|     32|    return Py_NewRef(mro);
  ------------------
  |  |  550|     32|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1772|     32|}
typeobject.c:check_immutable_bases:
 5174|     56|{
 5175|     56|    Py_ssize_t i = 0;
 5176|     56|    if (skip_first) {
  ------------------
  |  Branch (5176:9): [True: 0, False: 56]
  ------------------
 5177|       |        // When testing the MRO, skip the type itself
 5178|      0|        i = 1;
 5179|      0|    }
 5180|    112|    for (; i<PyTuple_GET_SIZE(bases); i++) {
  ------------------
  |  |   27|    112|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5180:12): [True: 56, False: 56]
  ------------------
 5181|     56|        PyTypeObject *b = (PyTypeObject*)PyTuple_GET_ITEM(bases, i);
  ------------------
  |  |   29|     56|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     56|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5181:42): [True: 56, False: 0]
  ------------------
 5182|     56|        if (!b) {
  ------------------
  |  Branch (5182:13): [True: 0, False: 56]
  ------------------
 5183|      0|            return -1;
 5184|      0|        }
 5185|     56|        if (!_PyType_HasFeature(b, Py_TPFLAGS_IMMUTABLETYPE)) {
  ------------------
  |  |  500|     56|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (5185:13): [True: 0, False: 56]
  ------------------
 5186|      0|            PyErr_Format(
 5187|      0|                PyExc_TypeError,
 5188|      0|                "Creating immutable type %s from mutable base %N",
 5189|      0|                type_name, b
 5190|      0|            );
 5191|      0|            return -1;
 5192|      0|        }
 5193|     56|    }
 5194|     56|    return 0;
 5195|     56|}
typeobject.c:supercheck:
12672|    354|{
12673|       |    /* Check that a super() call makes sense.  Return a type object.
12674|       |
12675|       |       obj can be a class, or an instance of one:
12676|       |
12677|       |       - If it is a class, it must be a subclass of 'type'.      This case is
12678|       |         used for class methods; the return value is obj.
12679|       |
12680|       |       - If it is an instance, it must be an instance of 'type'.  This is
12681|       |         the normal case; the return value is obj.__class__.
12682|       |
12683|       |       But... when obj is an instance, we want to allow for the case where
12684|       |       Py_TYPE(obj) is not a subclass of type, but obj.__class__ is!
12685|       |       This will allow using super() with a proxy for obj.
12686|       |    */
12687|       |
12688|       |    /* Check for first bullet above (special case) */
12689|    354|    if (PyType_Check(obj) && PyType_IsSubtype((PyTypeObject *)obj, type)) {
  ------------------
  |  |  766|    708|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    354|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    354|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 294, False: 60]
  |  |  ------------------
  ------------------
  |  Branch (12689:30): [True: 294, False: 0]
  ------------------
12690|    294|        return (PyTypeObject *)Py_NewRef(obj);
  ------------------
  |  |  550|    294|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    294|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    294|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12691|    294|    }
12692|       |
12693|       |    /* Normal case */
12694|     60|    if (PyType_IsSubtype(Py_TYPE(obj), type)) {
  ------------------
  |  |  213|     60|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12694:9): [True: 60, False: 0]
  ------------------
12695|     60|        return (PyTypeObject*)Py_NewRef(Py_TYPE(obj));
  ------------------
  |  |  550|     60|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12696|     60|    }
12697|      0|    else {
12698|       |        /* Try the slow way */
12699|      0|        PyObject *class_attr;
12700|       |
12701|      0|        if (PyObject_GetOptionalAttr(obj, &_Py_ID(__class__), &class_attr) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12701:13): [True: 0, False: 0]
  ------------------
12702|      0|            return NULL;
12703|      0|        }
12704|      0|        if (class_attr != NULL &&
  ------------------
  |  Branch (12704:13): [True: 0, False: 0]
  ------------------
12705|      0|            PyType_Check(class_attr) &&
  ------------------
  |  |  766|      0|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 0, False: 0]
  |  |  ------------------
  ------------------
12706|      0|            (PyTypeObject *)class_attr != Py_TYPE(obj))
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12706:13): [True: 0, False: 0]
  ------------------
12707|      0|        {
12708|      0|            int ok = PyType_IsSubtype(
12709|      0|                (PyTypeObject *)class_attr, type);
12710|      0|            if (ok) {
  ------------------
  |  Branch (12710:17): [True: 0, False: 0]
  ------------------
12711|      0|                return (PyTypeObject *)class_attr;
12712|      0|            }
12713|      0|        }
12714|      0|        Py_XDECREF(class_attr);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12715|      0|    }
12716|       |
12717|      0|    const char *type_or_instance, *obj_str;
12718|       |
12719|      0|    if (PyType_Check(obj)) {
  ------------------
  |  |  766|      0|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 0, False: 0]
  |  |  ------------------
  ------------------
12720|      0|        type_or_instance = "type";
12721|      0|        obj_str = ((PyTypeObject*)obj)->tp_name;
12722|      0|    }
12723|      0|    else {
12724|      0|        type_or_instance = "instance of";
12725|      0|        obj_str = Py_TYPE(obj)->tp_name;
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12726|      0|    }
12727|       |
12728|      0|    PyErr_Format(PyExc_TypeError,
12729|      0|                "super(type, obj): obj (%s %.200s) is not "
12730|      0|                "an instance or subtype of type (%.200s).",
12731|      0|                type_or_instance, obj_str, type->tp_name);
12732|       |
12733|       |    return NULL;
12734|     60|}
typeobject.c:do_super_lookup:
12607|    354|{
12608|    354|    PyObject *res;
12609|    354|    int temp_su = 0;
12610|       |
12611|    354|    if (su_obj_type == NULL) {
  ------------------
  |  Branch (12611:9): [True: 0, False: 354]
  ------------------
12612|      0|        goto skip;
12613|      0|    }
12614|       |
12615|    354|    res = _PySuper_LookupDescr(su_type, su_obj_type, name);
12616|    354|    if (res != NULL) {
  ------------------
  |  Branch (12616:9): [True: 354, False: 0]
  ------------------
12617|    354|        if (method && _PyType_HasFeature(Py_TYPE(res), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  213|     58|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (method && _PyType_HasFeature(Py_TYPE(res), Py_TPFLAGS_METHOD_DESCRIPTOR)) {
  ------------------
  |  |  534|     58|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
  |  Branch (12617:13): [True: 58, False: 296]
  |  Branch (12617:23): [True: 58, False: 0]
  ------------------
12618|     58|            *method = 1;
12619|     58|        }
12620|    296|        else {
12621|    296|            descrgetfunc f = Py_TYPE(res)->tp_descr_get;
  ------------------
  |  |  213|    296|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    296|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    296|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12622|    296|            if (f != NULL) {
  ------------------
  |  Branch (12622:17): [True: 178, False: 118]
  ------------------
12623|    178|                PyObject *res2;
12624|    178|                res2 = f(res,
12625|       |                    /* Only pass 'obj' param if this is instance-mode super
12626|       |                    (See SF ID #743627)  */
12627|    178|                    (su_obj == (PyObject *)su_obj_type) ? NULL : su_obj,
  ------------------
  |  Branch (12627:21): [True: 176, False: 2]
  ------------------
12628|    178|                    (PyObject *)su_obj_type);
12629|    178|                Py_SETREF(res, res2);
  ------------------
  |  |  352|    178|    do { \
  |  |  353|    178|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    178|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|    178|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    178|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|    178|        *_tmp_dst_ptr = (src); \
  |  |  356|    178|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|    178|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    178|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    178|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|    178|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 178]
  |  |  ------------------
  ------------------
12630|    178|            }
12631|    296|        }
12632|       |
12633|    354|        return res;
12634|    354|    }
12635|      0|    else if (PyErr_Occurred()) {
  ------------------
  |  Branch (12635:14): [True: 0, False: 0]
  ------------------
12636|      0|        return NULL;
12637|      0|    }
12638|       |
12639|      0|  skip:
12640|      0|    if (su == NULL) {
  ------------------
  |  Branch (12640:9): [True: 0, False: 0]
  ------------------
12641|      0|        PyObject *args[] = {(PyObject *)su_type, su_obj};
12642|      0|        su = (superobject *)PyObject_Vectorcall((PyObject *)&PySuper_Type, args, 2, NULL);
12643|      0|        if (su == NULL) {
  ------------------
  |  Branch (12643:13): [True: 0, False: 0]
  ------------------
12644|      0|            return NULL;
12645|      0|        }
12646|      0|        temp_su = 1;
12647|      0|    }
12648|      0|    res = PyObject_GenericGetAttr((PyObject *)su, name);
12649|      0|    if (temp_su) {
  ------------------
  |  Branch (12649:9): [True: 0, False: 0]
  ------------------
12650|      0|        Py_DECREF(su);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12651|      0|    }
12652|      0|    return res;
12653|      0|}
typeobject.c:super_dealloc:
12525|    182|{
12526|    182|    superobject *su = superobject_CAST(self);
  ------------------
  |  |12511|    182|#define superobject_CAST(op)    ((superobject *)(op))
  ------------------
12527|       |
12528|    182|    _PyObject_GC_UNTRACK(self);
  ------------------
  |  |  515|    182|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12529|    182|    Py_XDECREF(su->obj);
  ------------------
  |  |  524|    182|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12530|    182|    Py_XDECREF(su->type);
  ------------------
  |  |  524|    182|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12531|    182|    Py_XDECREF(su->obj_type);
  ------------------
  |  |  524|    182|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12532|    182|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|    182|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12533|    182|}
typeobject.c:super_getattro:
12657|    182|{
12658|    182|    superobject *su = superobject_CAST(self);
  ------------------
  |  |12511|    182|#define superobject_CAST(op)    ((superobject *)(op))
  ------------------
12659|       |
12660|       |    /* We want __class__ to return the class of the super object
12661|       |       (i.e. super, or a subclass), not the class of su->obj. */
12662|    182|    if (PyUnicode_Check(name) &&
  ------------------
  |  |  103|    182|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    364|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 182, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12663|    182|        PyUnicode_GET_LENGTH(name) == 9 &&
  ------------------
  |  |  299|    182|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12663:9): [True: 0, False: 182]
  ------------------
12664|      0|        _PyUnicode_Equal(name, &_Py_ID(__class__)))
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12664:9): [True: 0, False: 0]
  ------------------
12665|      0|        return PyObject_GenericGetAttr(self, name);
12666|       |
12667|    182|    return do_super_lookup(su, su->type, su->obj, su->obj_type, name, NULL);
12668|    182|}
typeobject.c:super_init_impl:
12882|    182|super_init_impl(PyObject *self, PyTypeObject *type, PyObject *obj) {
12883|    182|    superobject *su = superobject_CAST(self);
  ------------------
  |  |12511|    182|#define superobject_CAST(op)    ((superobject *)(op))
  ------------------
12884|    182|    PyTypeObject *obj_type = NULL;
12885|    182|    if (type == NULL) {
  ------------------
  |  Branch (12885:9): [True: 8, False: 174]
  ------------------
12886|       |        /* Call super(), without args -- fill in from __class__
12887|       |           and first local variable on the stack. */
12888|      8|        PyThreadState *tstate = _PyThreadState_GET();
12889|      8|        _PyInterpreterFrame *frame = _PyThreadState_GetFrame(tstate);
12890|      8|        if (frame == NULL) {
  ------------------
  |  Branch (12890:13): [True: 0, False: 8]
  ------------------
12891|      0|            PyErr_SetString(PyExc_RuntimeError,
12892|      0|                            "super(): no current frame");
12893|      0|            return -1;
12894|      0|        }
12895|      8|        int res = super_init_without_args(frame, &type, &obj);
12896|       |
12897|      8|        if (res < 0) {
  ------------------
  |  Branch (12897:13): [True: 0, False: 8]
  ------------------
12898|      0|            return -1;
12899|      0|        }
12900|      8|    }
12901|    174|    else {
12902|    174|        Py_INCREF(type);
  ------------------
  |  |  310|    174|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12903|    174|        Py_XINCREF(obj);
  ------------------
  |  |  514|    174|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12904|    174|    }
12905|       |
12906|    182|    if (obj == Py_None) {
  ------------------
  |  |  616|    182|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (12906:9): [True: 0, False: 182]
  ------------------
12907|      0|        Py_DECREF(obj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12908|      0|        obj = NULL;
12909|      0|    }
12910|    182|    if (obj != NULL) {
  ------------------
  |  Branch (12910:9): [True: 182, False: 0]
  ------------------
12911|    182|        obj_type = supercheck(type, obj);
12912|    182|        if (obj_type == NULL) {
  ------------------
  |  Branch (12912:13): [True: 0, False: 182]
  ------------------
12913|      0|            Py_DECREF(type);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12914|      0|            Py_DECREF(obj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12915|      0|            return -1;
12916|      0|        }
12917|    182|    }
12918|    182|    Py_XSETREF(su->type, (PyTypeObject*)type);
  ------------------
  |  |  374|    182|    do { \
  |  |  375|    182|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    182|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|    182|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    182|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|    182|        *_tmp_dst_ptr = (src); \
  |  |  378|    182|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|    182|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|    182|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 182]
  |  |  ------------------
  ------------------
12919|    182|    Py_XSETREF(su->obj, obj);
  ------------------
  |  |  374|    182|    do { \
  |  |  375|    182|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    182|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|    182|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    182|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|    182|        *_tmp_dst_ptr = (src); \
  |  |  378|    182|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|    182|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|    182|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 182]
  |  |  ------------------
  ------------------
12920|    182|    Py_XSETREF(su->obj_type, obj_type);
  ------------------
  |  |  374|    182|    do { \
  |  |  375|    182|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|    182|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|    182|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|    182|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|    182|        *_tmp_dst_ptr = (src); \
  |  |  378|    182|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|    182|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    182|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    182|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|    182|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 182]
  |  |  ------------------
  ------------------
12921|    182|    return 0;
12922|    182|}
typeobject.c:super_init_without_args:
12784|      8|{
12785|      8|    PyCodeObject *co = _PyFrame_GetCode(cframe);
12786|      8|    if (co->co_argcount == 0) {
  ------------------
  |  Branch (12786:9): [True: 0, False: 8]
  ------------------
12787|      0|        PyErr_SetString(PyExc_RuntimeError,
12788|      0|                        "super(): no arguments");
12789|      0|        return -1;
12790|      0|    }
12791|       |
12792|      8|    assert(_PyFrame_GetCode(cframe)->co_nlocalsplus > 0);
  ------------------
  |  Branch (12792:5): [True: 8, False: 0]
  ------------------
12793|      8|    PyObject *firstarg = PyStackRef_AsPyObjectBorrow(_PyFrame_GetLocalsArray(cframe)[0]);
12794|      8|    if (firstarg == NULL) {
  ------------------
  |  Branch (12794:9): [True: 0, False: 8]
  ------------------
12795|      0|        PyErr_SetString(PyExc_RuntimeError, "super(): arg[0] deleted");
12796|      0|        return -1;
12797|      0|    }
12798|       |    // The first argument might be a cell.
12799|       |    // "firstarg" is a cell here unless (very unlikely) super()
12800|       |    // was called from the C-API before the first MAKE_CELL op.
12801|      8|    if ((_PyLocals_GetKind(co->co_localspluskinds, 0) & CO_FAST_CELL) &&
  ------------------
  |  |  198|      8|#define CO_FAST_CELL    (0x40)
  ------------------
  |  Branch (12801:9): [True: 0, False: 8]
  ------------------
12802|      0|            (_PyInterpreterFrame_LASTI(cframe) >= 0)) {
  ------------------
  |  |   18|      0|    ((int)((IF)->instr_ptr - _PyFrame_GetBytecode((IF))))
  ------------------
  |  Branch (12802:13): [True: 0, False: 0]
  ------------------
12803|       |        // MAKE_CELL and COPY_FREE_VARS have no quickened forms, so no need
12804|       |        // to use _PyOpcode_Deopt here:
12805|      0|        assert(_PyCode_CODE(co)[0].op.code == MAKE_CELL ||
  ------------------
  |  Branch (12805:9): [True: 0, False: 0]
  |  Branch (12805:9): [True: 0, False: 0]
  ------------------
12806|      0|                _PyCode_CODE(co)[0].op.code == COPY_FREE_VARS);
12807|      0|        assert(PyCell_Check(firstarg));
  ------------------
  |  Branch (12807:9): [True: 0, False: 0]
  ------------------
12808|      0|        firstarg = PyCell_GetRef((PyCellObject *)firstarg);
12809|      0|        if (firstarg == NULL) {
  ------------------
  |  Branch (12809:13): [True: 0, False: 0]
  ------------------
12810|      0|            PyErr_SetString(PyExc_RuntimeError, "super(): arg[0] deleted");
12811|      0|            return -1;
12812|      0|        }
12813|      0|    }
12814|      8|    else {
12815|      8|        Py_INCREF(firstarg);
  ------------------
  |  |  310|      8|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12816|      8|    }
12817|       |
12818|       |    // Look for __class__ in the free vars.
12819|      8|    PyTypeObject *type = NULL;
12820|      8|    int i = PyUnstable_Code_GetFirstFree(co);
12821|      8|    for (; i < co->co_nlocalsplus; i++) {
  ------------------
  |  Branch (12821:12): [True: 8, False: 0]
  ------------------
12822|      8|        assert((_PyLocals_GetKind(co->co_localspluskinds, i) & CO_FAST_FREE) != 0);
  ------------------
  |  Branch (12822:9): [True: 8, False: 0]
  ------------------
12823|      8|        PyObject *name = PyTuple_GET_ITEM(co->co_localsplusnames, i);
  ------------------
  |  |   29|      8|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      8|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12823:26): [True: 8, False: 0]
  ------------------
12824|      8|        assert(PyUnicode_Check(name));
  ------------------
  |  Branch (12824:9): [True: 8, False: 0]
  ------------------
12825|      8|        if (_PyUnicode_Equal(name, &_Py_ID(__class__))) {
  ------------------
  |  |  917|      8|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      8|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      8|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12825:13): [True: 8, False: 0]
  ------------------
12826|      8|            PyObject *cell = PyStackRef_AsPyObjectBorrow(_PyFrame_GetLocalsArray(cframe)[i]);
12827|      8|            if (cell == NULL || !PyCell_Check(cell)) {
  ------------------
  |  |   18|      8|#define PyCell_Check(op) Py_IS_TYPE((op), &PyCell_Type)
  |  |  ------------------
  |  |  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12827:17): [True: 0, False: 8]
  |  Branch (12827:33): [True: 0, False: 8]
  ------------------
12828|      0|                PyErr_SetString(PyExc_RuntimeError,
12829|      0|                  "super(): bad __class__ cell");
12830|      0|                Py_DECREF(firstarg);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12831|      0|                return -1;
12832|      0|            }
12833|      8|            type = (PyTypeObject *) PyCell_GetRef((PyCellObject *)cell);
12834|      8|            if (type == NULL) {
  ------------------
  |  Branch (12834:17): [True: 0, False: 8]
  ------------------
12835|      0|                PyErr_SetString(PyExc_RuntimeError,
12836|      0|                  "super(): empty __class__ cell");
12837|      0|                Py_DECREF(firstarg);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12838|      0|                return -1;
12839|      0|            }
12840|      8|            if (!PyType_Check(type)) {
  ------------------
  |  |  766|      8|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12840:17): [True: 0, False: 8]
  ------------------
12841|      0|                PyErr_Format(PyExc_RuntimeError,
12842|      0|                  "super(): __class__ is not a type (%s)",
12843|      0|                  Py_TYPE(type)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12844|      0|                Py_DECREF(type);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12845|      0|                Py_DECREF(firstarg);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12846|      0|                return -1;
12847|      0|            }
12848|      8|            break;
12849|      8|        }
12850|      8|    }
12851|      8|    if (type == NULL) {
  ------------------
  |  Branch (12851:9): [True: 0, False: 8]
  ------------------
12852|      0|        PyErr_SetString(PyExc_RuntimeError,
12853|      0|                        "super(): __class__ cell not found");
12854|      0|        Py_DECREF(firstarg);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12855|      0|        return -1;
12856|      0|    }
12857|       |
12858|      8|    *type_p = type;
12859|      8|    *obj_p = firstarg;
12860|      8|    return 0;
12861|      8|}
typeobject.c:super_vectorcall:
12954|    182|{
12955|    182|    assert(PyType_Check(self));
  ------------------
  |  Branch (12955:5): [True: 182, False: 0]
  ------------------
12956|    182|    if (!_PyArg_NoKwnames("super", kwnames)) {
  ------------------
  |  |   15|    182|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 182, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
12957|      0|        return NULL;
12958|      0|    }
12959|    182|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|    182|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
12960|    182|    if (!_PyArg_CheckPositional("super()", nargs, 0, 2)) {
  ------------------
  |  |   31|    182|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 182, False: 0]
  |  |  |  Branch (31:27): [True: 182, False: 0]
  |  |  ------------------
  |  |   32|    182|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
12961|      0|        return NULL;
12962|      0|    }
12963|    182|    PyTypeObject *type = NULL;
12964|    182|    PyObject *obj = NULL;
12965|    182|    PyTypeObject *self_type = (PyTypeObject *)self;
12966|    182|    PyObject *su = self_type->tp_alloc(self_type, 0);
12967|    182|    if (su == NULL) {
  ------------------
  |  Branch (12967:9): [True: 0, False: 182]
  ------------------
12968|      0|        return NULL;
12969|      0|    }
12970|       |    // 1 or 2 argument form super().
12971|    182|    if (nargs != 0) {
  ------------------
  |  Branch (12971:9): [True: 174, False: 8]
  ------------------
12972|    174|        PyObject *arg0 = args[0];
12973|    174|        if (!PyType_Check(arg0)) {
  ------------------
  |  |  766|    174|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12973:13): [True: 0, False: 174]
  ------------------
12974|      0|            PyErr_Format(PyExc_TypeError,
12975|      0|                "super() argument 1 must be a type, not %.200s", Py_TYPE(arg0)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12976|      0|            goto fail;
12977|      0|        }
12978|    174|        type = (PyTypeObject *)arg0;
12979|    174|    }
12980|    182|    if (nargs == 2) {
  ------------------
  |  Branch (12980:9): [True: 174, False: 8]
  ------------------
12981|    174|        obj = args[1];
12982|    174|    }
12983|    182|    if (super_init_impl(su, type, obj) < 0) {
  ------------------
  |  Branch (12983:9): [True: 0, False: 182]
  ------------------
12984|      0|        goto fail;
12985|      0|    }
12986|    182|    return su;
12987|      0|fail:
12988|      0|    Py_DECREF(su);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12989|       |    return NULL;
12990|    182|}

_Py_initialize_generic:
 2422|      2|{
 2423|      2|#define MAKE_TYPE(name) \
 2424|      2|    do { \
 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
 2426|      2|        if (name ## _type == NULL) { \
 2427|      2|            return -1; \
 2428|      2|        } \
 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
 2430|      2|    } while(0)
 2431|       |
 2432|      2|    MAKE_TYPE(generic);
  ------------------
  |  | 2424|      2|    do { \
  |  | 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
  |  | 2426|      2|        if (name ## _type == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2426:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 2427|      0|            return -1; \
  |  | 2428|      0|        } \
  |  | 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
  |  | 2430|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (2430:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 2433|      2|    MAKE_TYPE(typevar);
  ------------------
  |  | 2424|      2|    do { \
  |  | 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
  |  | 2426|      2|        if (name ## _type == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2426:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 2427|      0|            return -1; \
  |  | 2428|      0|        } \
  |  | 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
  |  | 2430|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (2430:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 2434|      2|    MAKE_TYPE(typevartuple);
  ------------------
  |  | 2424|      2|    do { \
  |  | 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
  |  | 2426|      2|        if (name ## _type == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2426:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 2427|      0|            return -1; \
  |  | 2428|      0|        } \
  |  | 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
  |  | 2430|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (2430:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 2435|      2|    MAKE_TYPE(paramspec);
  ------------------
  |  | 2424|      2|    do { \
  |  | 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
  |  | 2426|      2|        if (name ## _type == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2426:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 2427|      0|            return -1; \
  |  | 2428|      0|        } \
  |  | 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
  |  | 2430|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (2430:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 2436|      2|    MAKE_TYPE(paramspecargs);
  ------------------
  |  | 2424|      2|    do { \
  |  | 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
  |  | 2426|      2|        if (name ## _type == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2426:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 2427|      0|            return -1; \
  |  | 2428|      0|        } \
  |  | 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
  |  | 2430|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (2430:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 2437|      2|    MAKE_TYPE(paramspeckwargs);
  ------------------
  |  | 2424|      2|    do { \
  |  | 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
  |  | 2426|      2|        if (name ## _type == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2426:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 2427|      0|            return -1; \
  |  | 2428|      0|        } \
  |  | 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
  |  | 2430|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (2430:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 2438|      2|    MAKE_TYPE(constevaluator);
  ------------------
  |  | 2424|      2|    do { \
  |  | 2425|      2|        PyTypeObject *name ## _type = (PyTypeObject *)PyType_FromSpec(&name ## _spec); \
  |  | 2426|      2|        if (name ## _type == NULL) { \
  |  |  ------------------
  |  |  |  Branch (2426:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 2427|      0|            return -1; \
  |  | 2428|      0|        } \
  |  | 2429|      2|        interp->cached_objects.name ## _type = name ## _type; \
  |  | 2430|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (2430:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 2439|      2|#undef MAKE_TYPE
 2440|      2|    return 0;
 2441|      2|}

_PyUnicodeWriter_Init:
  144|  3.70k|{
  145|  3.70k|    memset(writer, 0, sizeof(*writer));
  146|       |
  147|       |    /* ASCII is the bare minimum */
  148|  3.70k|    writer->min_char = 127;
  149|       |
  150|       |    /* use a kind value smaller than PyUnicode_1BYTE_KIND so
  151|       |       _PyUnicodeWriter_PrepareKind() will copy the buffer. */
  152|  3.70k|    assert(writer->kind == 0);
  ------------------
  |  Branch (152:5): [True: 3.70k, False: 0]
  ------------------
  153|  3.70k|    assert(writer->kind < PyUnicode_1BYTE_KIND);
  ------------------
  |  Branch (153:5): [True: 3.70k, False: 0]
  ------------------
  154|  3.70k|}
_PyUnicodeWriter_InitWithBuffer:
  201|      2|{
  202|      2|    memset(writer, 0, sizeof(*writer));
  203|      2|    writer->buffer = buffer;
  204|      2|    _PyUnicodeWriter_Update(writer);
  205|      2|    writer->min_length = writer->size;
  206|      2|}
_PyUnicodeWriter_PrepareInternal:
  212|  6.32k|{
  213|  6.32k|    Py_ssize_t newlen;
  214|  6.32k|    PyObject *newbuffer;
  215|       |
  216|  6.32k|    assert(length >= 0);
  ------------------
  |  Branch (216:5): [True: 6.32k, False: 0]
  ------------------
  217|  6.32k|    assert(maxchar <= _Py_MAX_UNICODE);
  ------------------
  |  Branch (217:5): [True: 6.32k, False: 0]
  ------------------
  218|       |
  219|       |    /* ensure that the _PyUnicodeWriter_Prepare macro was used */
  220|  6.32k|    assert((maxchar > writer->maxchar && length >= 0)
  ------------------
  |  Branch (220:5): [True: 5.66k, False: 656]
  |  Branch (220:5): [True: 5.66k, False: 0]
  |  Branch (220:5): [True: 656, False: 0]
  ------------------
  221|  6.32k|           || length > 0);
  222|       |
  223|  6.32k|    if (length > PY_SSIZE_T_MAX - writer->pos) {
  ------------------
  |  |  137|  6.32k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (223:9): [True: 0, False: 6.32k]
  ------------------
  224|      0|        PyErr_NoMemory();
  225|      0|        return -1;
  226|      0|    }
  227|  6.32k|    newlen = writer->pos + length;
  228|       |
  229|  6.32k|    maxchar = Py_MAX(maxchar, writer->min_char);
  ------------------
  |  |  115|  6.32k|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 1.95k, False: 4.36k]
  |  |  ------------------
  ------------------
  230|       |
  231|  6.32k|    if (writer->buffer == NULL) {
  ------------------
  |  Branch (231:9): [True: 3.70k, False: 2.61k]
  ------------------
  232|  3.70k|        assert(!writer->readonly);
  ------------------
  |  Branch (232:9): [True: 3.70k, False: 0]
  ------------------
  233|  3.70k|        if (writer->overallocate
  ------------------
  |  Branch (233:13): [True: 3.70k, False: 0]
  ------------------
  234|  3.70k|            && newlen <= (PY_SSIZE_T_MAX - newlen / OVERALLOCATE_FACTOR)) {
  ------------------
  |  |  137|  3.70k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
                          && newlen <= (PY_SSIZE_T_MAX - newlen / OVERALLOCATE_FACTOR)) {
  ------------------
  |  |   52|  3.70k|#  define OVERALLOCATE_FACTOR 4
  ------------------
  |  Branch (234:16): [True: 3.70k, False: 0]
  ------------------
  235|       |            /* overallocate to limit the number of realloc() */
  236|  3.70k|            newlen += newlen / OVERALLOCATE_FACTOR;
  ------------------
  |  |   52|  3.70k|#  define OVERALLOCATE_FACTOR 4
  ------------------
  237|  3.70k|        }
  238|  3.70k|        if (newlen < writer->min_length)
  ------------------
  |  Branch (238:13): [True: 3.70k, False: 0]
  ------------------
  239|  3.70k|            newlen = writer->min_length;
  240|       |
  241|  3.70k|        writer->buffer = PyUnicode_New(newlen, maxchar);
  242|  3.70k|        if (writer->buffer == NULL)
  ------------------
  |  Branch (242:13): [True: 0, False: 3.70k]
  ------------------
  243|      0|            return -1;
  244|  3.70k|    }
  245|  2.61k|    else if (newlen > writer->size) {
  ------------------
  |  Branch (245:14): [True: 656, False: 1.95k]
  ------------------
  246|    656|        if (writer->overallocate
  ------------------
  |  Branch (246:13): [True: 134, False: 522]
  ------------------
  247|    134|            && newlen <= (PY_SSIZE_T_MAX - newlen / OVERALLOCATE_FACTOR)) {
  ------------------
  |  |  137|    134|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
                          && newlen <= (PY_SSIZE_T_MAX - newlen / OVERALLOCATE_FACTOR)) {
  ------------------
  |  |   52|    134|#  define OVERALLOCATE_FACTOR 4
  ------------------
  |  Branch (247:16): [True: 134, False: 0]
  ------------------
  248|       |            /* overallocate to limit the number of realloc() */
  249|    134|            newlen += newlen / OVERALLOCATE_FACTOR;
  ------------------
  |  |   52|    134|#  define OVERALLOCATE_FACTOR 4
  ------------------
  250|    134|        }
  251|    656|        if (newlen < writer->min_length)
  ------------------
  |  Branch (251:13): [True: 0, False: 656]
  ------------------
  252|      0|            newlen = writer->min_length;
  253|       |
  254|    656|        if (maxchar > writer->maxchar || writer->readonly) {
  ------------------
  |  Branch (254:13): [True: 0, False: 656]
  |  Branch (254:42): [True: 0, False: 656]
  ------------------
  255|       |            /* resize + widen */
  256|      0|            maxchar = Py_MAX(maxchar, writer->maxchar);
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  257|      0|            newbuffer = PyUnicode_New(newlen, maxchar);
  258|      0|            if (newbuffer == NULL)
  ------------------
  |  Branch (258:17): [True: 0, False: 0]
  ------------------
  259|      0|                return -1;
  260|      0|            _PyUnicode_FastCopyCharacters(newbuffer, 0,
  261|      0|                                          writer->buffer, 0, writer->pos);
  262|      0|            Py_DECREF(writer->buffer);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  263|      0|            writer->readonly = 0;
  264|      0|        }
  265|    656|        else {
  266|    656|            newbuffer = _PyUnicode_ResizeCompact(writer->buffer, newlen);
  267|    656|            if (newbuffer == NULL)
  ------------------
  |  Branch (267:17): [True: 0, False: 656]
  ------------------
  268|      0|                return -1;
  269|    656|        }
  270|    656|        writer->buffer = newbuffer;
  271|    656|    }
  272|  1.95k|    else if (maxchar > writer->maxchar) {
  ------------------
  |  Branch (272:14): [True: 1.95k, False: 0]
  ------------------
  273|  1.95k|        assert(!writer->readonly);
  ------------------
  |  Branch (273:9): [True: 1.95k, False: 0]
  ------------------
  274|  1.95k|        newbuffer = PyUnicode_New(writer->size, maxchar);
  275|  1.95k|        if (newbuffer == NULL)
  ------------------
  |  Branch (275:13): [True: 0, False: 1.95k]
  ------------------
  276|      0|            return -1;
  277|  1.95k|        _PyUnicode_FastCopyCharacters(newbuffer, 0,
  278|  1.95k|                                      writer->buffer, 0, writer->pos);
  279|  1.95k|        Py_SETREF(writer->buffer, newbuffer);
  ------------------
  |  |  352|  1.95k|    do { \
  |  |  353|  1.95k|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|  1.95k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|  1.95k|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|  1.95k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|  1.95k|        *_tmp_dst_ptr = (src); \
  |  |  356|  1.95k|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|  1.95k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.95k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.95k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|  1.95k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 1.95k]
  |  |  ------------------
  ------------------
  280|  1.95k|    }
  281|  6.32k|    _PyUnicodeWriter_Update(writer);
  282|  6.32k|    return 0;
  283|       |
  284|  6.32k|#undef OVERALLOCATE_FACTOR
  285|  6.32k|}
_PyUnicodeWriter_WriteStr:
  331|  2.00k|{
  332|  2.00k|    assert(PyUnicode_Check(str));
  ------------------
  |  Branch (332:5): [True: 2.00k, False: 0]
  ------------------
  333|       |
  334|  2.00k|    Py_UCS4 maxchar;
  335|  2.00k|    Py_ssize_t len;
  336|       |
  337|  2.00k|    len = PyUnicode_GET_LENGTH(str);
  ------------------
  |  |  299|  2.00k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  338|  2.00k|    if (len == 0)
  ------------------
  |  Branch (338:9): [True: 0, False: 2.00k]
  ------------------
  339|      0|        return 0;
  340|  2.00k|    maxchar = PyUnicode_MAX_CHAR_VALUE(str);
  ------------------
  |  |  405|  2.00k|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  341|  2.00k|    if (maxchar > writer->maxchar || len > writer->size - writer->pos) {
  ------------------
  |  Branch (341:9): [True: 6, False: 1.99k]
  |  Branch (341:38): [True: 519, False: 1.47k]
  ------------------
  342|    525|        if (writer->buffer == NULL && !writer->overallocate) {
  ------------------
  |  Branch (342:13): [True: 6, False: 519]
  |  Branch (342:39): [True: 0, False: 6]
  ------------------
  343|      0|            assert(_PyUnicode_CheckConsistency(str, 1));
  ------------------
  |  Branch (343:13): [True: 0, False: 0]
  ------------------
  344|      0|            writer->readonly = 1;
  345|      0|            writer->buffer = Py_NewRef(str);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  346|      0|            _PyUnicodeWriter_Update(writer);
  347|      0|            writer->pos += len;
  348|      0|            return 0;
  349|      0|        }
  350|    525|        if (_PyUnicodeWriter_PrepareInternal(writer, len, maxchar) == -1)
  ------------------
  |  Branch (350:13): [True: 0, False: 525]
  ------------------
  351|      0|            return -1;
  352|    525|    }
  353|  2.00k|    _PyUnicode_FastCopyCharacters(writer->buffer, writer->pos,
  354|  2.00k|                                  str, 0, len);
  355|  2.00k|    writer->pos += len;
  356|  2.00k|    return 0;
  357|  2.00k|}
_PyUnicodeWriter_WriteASCIIString:
  464|  5.57k|{
  465|  5.57k|    if (len == -1)
  ------------------
  |  Branch (465:9): [True: 0, False: 5.57k]
  ------------------
  466|      0|        len = strlen(ascii);
  467|       |
  468|  5.57k|    if (len == 0) {
  ------------------
  |  Branch (468:9): [True: 0, False: 5.57k]
  ------------------
  469|      0|        return 0;
  470|      0|    }
  471|       |
  472|  5.57k|    assert(ucs1lib_find_max_char((const Py_UCS1*)ascii, (const Py_UCS1*)ascii + len) < 128);
  ------------------
  |  Branch (472:5): [True: 5.57k, False: 0]
  ------------------
  473|       |
  474|  5.57k|    if (writer->buffer == NULL && !writer->overallocate) {
  ------------------
  |  Branch (474:9): [True: 3.69k, False: 1.87k]
  |  Branch (474:35): [True: 0, False: 3.69k]
  ------------------
  475|      0|        PyObject *str;
  476|       |
  477|      0|        str = _PyUnicode_FromASCII(ascii, len);
  478|      0|        if (str == NULL)
  ------------------
  |  Branch (478:13): [True: 0, False: 0]
  ------------------
  479|      0|            return -1;
  480|       |
  481|      0|        writer->readonly = 1;
  482|      0|        writer->buffer = str;
  483|      0|        _PyUnicodeWriter_Update(writer);
  484|      0|        writer->pos += len;
  485|      0|        return 0;
  486|      0|    }
  487|       |
  488|  5.57k|    if (_PyUnicodeWriter_Prepare(writer, len, 127) == -1)
  ------------------
  |  |  562|  5.57k|    (((MAXCHAR) <= (WRITER)->maxchar                                  \
  |  |  ------------------
  |  |  |  Branch (562:7): [True: 1.87k, False: 3.69k]
  |  |  ------------------
  |  |  563|  5.57k|      && (LENGTH) <= (WRITER)->size - (WRITER)->pos)                  \
  |  |  ------------------
  |  |  |  Branch (563:10): [True: 1.87k, False: 3]
  |  |  ------------------
  |  |  564|  5.57k|     ? 0                                                              \
  |  |  565|  5.57k|     : (((LENGTH) == 0)                                               \
  |  |  ------------------
  |  |  |  Branch (565:9): [True: 0, False: 3.70k]
  |  |  ------------------
  |  |  566|  3.70k|        ? 0                                                           \
  |  |  567|  3.70k|        : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  ------------------
  |  Branch (488:9): [True: 0, False: 5.57k]
  ------------------
  489|      0|        return -1;
  490|       |
  491|  5.57k|    switch (writer->kind)
  492|  5.57k|    {
  493|  4.04k|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (493:5): [True: 4.04k, False: 1.53k]
  ------------------
  494|  4.04k|    {
  495|  4.04k|        const Py_UCS1 *str = (const Py_UCS1 *)ascii;
  496|  4.04k|        Py_UCS1 *data = writer->data;
  497|       |
  498|  4.04k|        memcpy(data + writer->pos, str, len);
  499|  4.04k|        break;
  500|      0|    }
  501|    913|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (501:5): [True: 913, False: 4.66k]
  ------------------
  502|    913|    {
  503|    913|        _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|    913|    do {                                                \
  |  |   46|    913|        to_type *_to = (to_type *)(to);                 \
  |  |   47|    913|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|    913|        const from_type *_end = (const from_type *)(end);\
  |  |   49|    913|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|    913|        const from_type *_unrolled_end =                \
  |  |   51|    913|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|    913|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|    913|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 0, False: 913]
  |  |  ------------------
  |  |   53|      0|            _to[0] = (to_type) _iter[0];                \
  |  |   54|      0|            _to[1] = (to_type) _iter[1];                \
  |  |   55|      0|            _to[2] = (to_type) _iter[2];                \
  |  |   56|      0|            _to[3] = (to_type) _iter[3];                \
  |  |   57|      0|            _iter += 4; _to += 4;                       \
  |  |   58|      0|        }                                               \
  |  |   59|  1.82k|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 913, False: 913]
  |  |  ------------------
  |  |   60|    913|            *_to++ = (to_type) *_iter++;                \
  |  |   61|    913|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 913]
  |  |  ------------------
  ------------------
  504|    913|            Py_UCS1, Py_UCS2,
  505|    913|            ascii, ascii + len,
  506|    913|            (Py_UCS2 *)writer->data + writer->pos);
  507|    913|        break;
  508|      0|    }
  509|    623|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (509:5): [True: 623, False: 4.95k]
  ------------------
  510|    623|    {
  511|    623|        _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|    623|    do {                                                \
  |  |   46|    623|        to_type *_to = (to_type *)(to);                 \
  |  |   47|    623|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|    623|        const from_type *_end = (const from_type *)(end);\
  |  |   49|    623|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|    623|        const from_type *_unrolled_end =                \
  |  |   51|    623|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|    623|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|    623|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 0, False: 623]
  |  |  ------------------
  |  |   53|      0|            _to[0] = (to_type) _iter[0];                \
  |  |   54|      0|            _to[1] = (to_type) _iter[1];                \
  |  |   55|      0|            _to[2] = (to_type) _iter[2];                \
  |  |   56|      0|            _to[3] = (to_type) _iter[3];                \
  |  |   57|      0|            _iter += 4; _to += 4;                       \
  |  |   58|      0|        }                                               \
  |  |   59|  1.24k|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 623, False: 623]
  |  |  ------------------
  |  |   60|    623|            *_to++ = (to_type) *_iter++;                \
  |  |   61|    623|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 623]
  |  |  ------------------
  ------------------
  512|    623|            Py_UCS1, Py_UCS4,
  513|    623|            ascii, ascii + len,
  514|    623|            (Py_UCS4 *)writer->data + writer->pos);
  515|    623|        break;
  516|      0|    }
  517|      0|    default:
  ------------------
  |  Branch (517:5): [True: 0, False: 5.57k]
  ------------------
  518|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  519|  5.57k|    }
  520|       |
  521|  5.57k|    writer->pos += len;
  522|  5.57k|    return 0;
  523|  5.57k|}
_PyUnicodeWriter_Finish:
  602|  3.70k|{
  603|  3.70k|    PyObject *str;
  604|       |
  605|  3.70k|    if (writer->pos == 0) {
  ------------------
  |  Branch (605:9): [True: 0, False: 3.70k]
  ------------------
  606|      0|        Py_CLEAR(writer->buffer);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  607|      0|        return _PyUnicode_GetEmpty();
  608|      0|    }
  609|       |
  610|  3.70k|    str = writer->buffer;
  611|  3.70k|    writer->buffer = NULL;
  612|       |
  613|  3.70k|    if (writer->readonly) {
  ------------------
  |  Branch (613:9): [True: 0, False: 3.70k]
  ------------------
  614|      0|        assert(PyUnicode_GET_LENGTH(str) == writer->pos);
  ------------------
  |  Branch (614:9): [True: 0, False: 0]
  ------------------
  615|      0|        return str;
  616|      0|    }
  617|       |
  618|  3.70k|    if (PyUnicode_GET_LENGTH(str) != writer->pos) {
  ------------------
  |  |  299|  3.70k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.70k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.70k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (618:9): [True: 3.17k, False: 528]
  ------------------
  619|  3.17k|        PyObject *str2;
  620|  3.17k|        str2 = _PyUnicode_ResizeCompact(str, writer->pos);
  621|  3.17k|        if (str2 == NULL) {
  ------------------
  |  Branch (621:13): [True: 0, False: 3.17k]
  ------------------
  622|      0|            Py_DECREF(str);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  623|      0|            return NULL;
  624|      0|        }
  625|  3.17k|        str = str2;
  626|  3.17k|    }
  627|       |
  628|  3.70k|    assert(_PyUnicode_CheckConsistency(str, 1));
  ------------------
  |  Branch (628:5): [True: 3.70k, False: 0]
  ------------------
  629|  3.70k|    return _PyUnicode_Result(str);
  630|  3.70k|}
unicode_writer.c:_PyUnicodeWriter_Update:
  120|  6.32k|{
  121|  6.32k|    writer->maxchar = PyUnicode_MAX_CHAR_VALUE(writer->buffer);
  ------------------
  |  |  405|  6.32k|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  122|  6.32k|    writer->data = PyUnicode_DATA(writer->buffer);
  ------------------
  |  |  284|  6.32k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  123|       |
  124|  6.32k|    if (!writer->readonly) {
  ------------------
  |  Branch (124:9): [True: 6.32k, False: 0]
  ------------------
  125|  6.32k|        writer->kind = PyUnicode_KIND(writer->buffer);
  ------------------
  |  |  258|  6.32k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  12.6k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 6.32k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  126|  6.32k|        writer->size = PyUnicode_GET_LENGTH(writer->buffer);
  ------------------
  |  |  299|  6.32k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.32k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.32k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  127|  6.32k|    }
  128|      0|    else {
  129|       |        /* use a value smaller than PyUnicode_1BYTE_KIND() so
  130|       |           _PyUnicodeWriter_PrepareKind() will copy the buffer. */
  131|      0|        writer->kind = 0;
  132|      0|        assert(writer->kind <= PyUnicode_1BYTE_KIND);
  ------------------
  |  Branch (132:9): [True: 0, False: 0]
  ------------------
  133|       |
  134|       |        /* Copy-on-write mode: set buffer size to 0 so
  135|       |         * _PyUnicodeWriter_Prepare() will copy (and enlarge) the buffer on
  136|       |         * next write. */
  137|      0|        writer->size = 0;
  138|      0|    }
  139|  6.32k|}

_PyUnicode_IsXidStart:
   86|     12|{
   87|     12|    const _PyUnicode_TypeRecord *ctype = gettyperecord(ch);
   88|       |
   89|     12|    return (ctype->flags & XID_START_MASK) != 0;
  ------------------
  |  |   20|     12|#define XID_START_MASK 0x100
  ------------------
   90|     12|}
_PyUnicode_IsXidContinue:
   96|     98|{
   97|     98|    const _PyUnicode_TypeRecord *ctype = gettyperecord(ch);
   98|       |
   99|     98|    return (ctype->flags & XID_CONTINUE_MASK) != 0;
  ------------------
  |  |   21|     98|#define XID_CONTINUE_MASK 0x200
  ------------------
  100|     98|}
unicodectype.c:gettyperecord:
   46|    110|{
   47|    110|    int index;
   48|       |
   49|    110|    if (code >= 0x110000)
  ------------------
  |  Branch (49:9): [True: 0, False: 110]
  ------------------
   50|      0|        index = 0;
   51|    110|    else
   52|    110|    {
   53|    110|        index = index1[(code>>SHIFT)];
  ------------------
  |  | 1760|    110|#define SHIFT 7
  ------------------
   54|    110|        index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))];
  ------------------
  |  | 1760|    110|#define SHIFT 7
  ------------------
                      index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))];
  ------------------
  |  | 1760|    110|#define SHIFT 7
  ------------------
   55|    110|    }
   56|       |
   57|    110|    return &_PyUnicode_TypeRecords[index];
   58|    110|}

_PyUnicode_GetEmpty:
  203|    336|{
  204|    336|    _Py_DECLARE_STR(empty, "");
  205|    336|    return &_Py_STR(empty);
  ------------------
  |  |  919|    336|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    336|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    336|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  206|    336|}
_Py_GetErrorHandler:
  470|     20|{
  471|     20|    if (errors == NULL || strcmp(errors, "strict") == 0) {
  ------------------
  |  Branch (471:9): [True: 0, False: 20]
  |  Branch (471:27): [True: 0, False: 20]
  ------------------
  472|      0|        return _Py_ERROR_STRICT;
  473|      0|    }
  474|     20|    if (strcmp(errors, "surrogateescape") == 0) {
  ------------------
  |  Branch (474:9): [True: 20, False: 0]
  ------------------
  475|     20|        return _Py_ERROR_SURROGATEESCAPE;
  476|     20|    }
  477|      0|    if (strcmp(errors, "replace") == 0) {
  ------------------
  |  Branch (477:9): [True: 0, False: 0]
  ------------------
  478|      0|        return _Py_ERROR_REPLACE;
  479|      0|    }
  480|      0|    if (strcmp(errors, "ignore") == 0) {
  ------------------
  |  Branch (480:9): [True: 0, False: 0]
  ------------------
  481|      0|        return _Py_ERROR_IGNORE;
  482|      0|    }
  483|      0|    if (strcmp(errors, "backslashreplace") == 0) {
  ------------------
  |  Branch (483:9): [True: 0, False: 0]
  ------------------
  484|      0|        return _Py_ERROR_BACKSLASHREPLACE;
  485|      0|    }
  486|      0|    if (strcmp(errors, "surrogatepass") == 0) {
  ------------------
  |  Branch (486:9): [True: 0, False: 0]
  ------------------
  487|      0|        return _Py_ERROR_SURROGATEPASS;
  488|      0|    }
  489|      0|    if (strcmp(errors, "xmlcharrefreplace") == 0) {
  ------------------
  |  Branch (489:9): [True: 0, False: 0]
  ------------------
  490|      0|        return _Py_ERROR_XMLCHARREFREPLACE;
  491|      0|    }
  492|      0|    return _Py_ERROR_OTHER;
  493|      0|}
_PyUnicode_CheckConsistency:
  589|  51.3k|{
  590|  51.3k|#define CHECK(expr) \
  591|  51.3k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  592|       |#ifdef Py_GIL_DISABLED
  593|       |# define CHECK_IF_GIL(expr) (void)(expr)
  594|       |# define CHECK_IF_FT(expr) CHECK(expr)
  595|       |#else
  596|  51.3k|# define CHECK_IF_GIL(expr) CHECK(expr)
  597|  51.3k|# define CHECK_IF_FT(expr) (void)(expr)
  598|  51.3k|#endif
  599|       |
  600|       |
  601|  51.3k|    assert(op != NULL);
  ------------------
  |  Branch (601:5): [True: 51.3k, False: 0]
  ------------------
  602|  51.3k|    CHECK(PyUnicode_Check(op));
  ------------------
  |  |  591|  51.3k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 51.3k]
  |  |  |  Branch (591:89): [Folded, False: 51.3k]
  |  |  ------------------
  ------------------
  603|       |
  604|  51.3k|    PyASCIIObject *ascii = _PyASCIIObject_CAST(op);
  ------------------
  |  |  186|  51.3k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  51.3k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  51.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (604:28): [True: 51.3k, False: 0]
  ------------------
  605|      0|    int kind = ascii->state.kind;
  606|       |
  607|  51.3k|    if (ascii->state.ascii == 1 && ascii->state.compact == 1) {
  ------------------
  |  Branch (607:9): [True: 44.6k, False: 6.76k]
  |  Branch (607:36): [True: 44.6k, False: 0]
  ------------------
  608|  44.6k|        CHECK(kind == PyUnicode_1BYTE_KIND);
  ------------------
  |  |  591|  44.6k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 44.6k]
  |  |  |  Branch (591:89): [Folded, False: 44.6k]
  |  |  ------------------
  ------------------
  609|  44.6k|    }
  610|  6.76k|    else {
  611|  6.76k|        PyCompactUnicodeObject *compact = _PyCompactUnicodeObject_CAST(op);
  ------------------
  |  |  189|  6.76k|    (assert(PyUnicode_Check(op)), \
  |  |  190|  6.76k|     _Py_CAST(PyCompactUnicodeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  6.76k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (611:43): [True: 6.76k, False: 0]
  ------------------
  612|      0|        void *data;
  613|       |
  614|  6.76k|        if (ascii->state.compact == 1) {
  ------------------
  |  Branch (614:13): [True: 6.76k, False: 0]
  ------------------
  615|  6.76k|            data = compact + 1;
  616|  6.76k|            CHECK(kind == PyUnicode_1BYTE_KIND
  ------------------
  |  |  591|  22.2k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:16): [True: 500, False: 6.26k]
  |  |  |  Branch (591:16): [True: 3.77k, False: 2.49k]
  |  |  |  Branch (591:16): [True: 2.49k, False: 0]
  |  |  |  Branch (591:89): [Folded, False: 6.76k]
  |  |  ------------------
  ------------------
  617|  6.76k|                                 || kind == PyUnicode_2BYTE_KIND
  618|  6.76k|                                 || kind == PyUnicode_4BYTE_KIND);
  619|  6.76k|            CHECK(ascii->state.ascii == 0);
  ------------------
  |  |  591|  6.76k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 6.76k]
  |  |  |  Branch (591:89): [Folded, False: 6.76k]
  |  |  ------------------
  ------------------
  620|  6.76k|            CHECK(_PyUnicode_UTF8(op) != data);
  ------------------
  |  |  591|  6.76k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 6.76k]
  |  |  |  Branch (591:89): [Folded, False: 6.76k]
  |  |  ------------------
  ------------------
  621|  6.76k|        }
  622|      0|        else {
  623|      0|            PyUnicodeObject *unicode = _PyUnicodeObject_CAST(op);
  ------------------
  |  |  192|      0|    (assert(PyUnicode_Check(op)), \
  |  |  193|      0|     _Py_CAST(PyUnicodeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (623:40): [True: 0, False: 0]
  ------------------
  624|       |
  625|      0|            data = unicode->data.any;
  626|      0|            CHECK(kind == PyUnicode_1BYTE_KIND
  ------------------
  |  |  591|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:16): [True: 0, False: 0]
  |  |  |  Branch (591:16): [True: 0, False: 0]
  |  |  |  Branch (591:16): [True: 0, False: 0]
  |  |  |  Branch (591:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  627|      0|                     || kind == PyUnicode_2BYTE_KIND
  628|      0|                     || kind == PyUnicode_4BYTE_KIND);
  629|      0|            CHECK(ascii->state.compact == 0);
  ------------------
  |  |  591|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 0]
  |  |  |  Branch (591:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  630|      0|            CHECK(data != NULL);
  ------------------
  |  |  591|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 0]
  |  |  |  Branch (591:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  631|      0|            if (ascii->state.ascii) {
  ------------------
  |  Branch (631:17): [True: 0, False: 0]
  ------------------
  632|      0|                CHECK(_PyUnicode_UTF8(op) == data);
  ------------------
  |  |  591|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 0]
  |  |  |  Branch (591:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  633|      0|                CHECK(compact->utf8_length == ascii->length);
  ------------------
  |  |  591|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 0]
  |  |  |  Branch (591:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  634|      0|            }
  635|      0|            else {
  636|      0|                CHECK(_PyUnicode_UTF8(op) != data);
  ------------------
  |  |  591|      0|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 0]
  |  |  |  Branch (591:89): [Folded, False: 0]
  |  |  ------------------
  ------------------
  637|      0|            }
  638|      0|        }
  639|  6.76k|#ifndef Py_GIL_DISABLED
  640|  6.76k|        if (_PyUnicode_UTF8(op) == NULL)
  ------------------
  |  Branch (640:13): [True: 6.76k, False: 0]
  ------------------
  641|  6.76k|            CHECK(compact->utf8_length == 0);
  ------------------
  |  |  591|  6.76k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 6.76k]
  |  |  |  Branch (591:89): [Folded, False: 6.76k]
  |  |  ------------------
  ------------------
  642|  6.76k|#endif
  643|  6.76k|    }
  644|       |
  645|       |    /* check that the best kind is used: O(n) operation */
  646|  51.3k|    if (check_content) {
  ------------------
  |  Branch (646:9): [True: 20.3k, False: 31.0k]
  ------------------
  647|  20.3k|        Py_ssize_t i;
  648|  20.3k|        Py_UCS4 maxchar = 0;
  649|  20.3k|        const void *data;
  650|  20.3k|        Py_UCS4 ch;
  651|       |
  652|  20.3k|        data = PyUnicode_DATA(ascii);
  ------------------
  |  |  284|  20.3k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  20.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  20.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  653|   555M|        for (i=0; i < ascii->length; i++)
  ------------------
  |  Branch (653:19): [True: 555M, False: 20.3k]
  ------------------
  654|   555M|        {
  655|   555M|            ch = PyUnicode_READ(kind, data, i);
  ------------------
  |  |  354|   555M|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|   555M|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|   555M|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|   555M|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|   555M|                   (index))
  ------------------
  656|   555M|            if (ch > maxchar)
  ------------------
  |  Branch (656:17): [True: 75.3k, False: 555M]
  ------------------
  657|  75.3k|                maxchar = ch;
  658|   555M|        }
  659|  20.3k|        if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (659:13): [True: 17.2k, False: 3.07k]
  ------------------
  660|  17.2k|            if (ascii->state.ascii == 0) {
  ------------------
  |  Branch (660:17): [True: 128, False: 17.1k]
  ------------------
  661|    128|                CHECK(maxchar >= 128);
  ------------------
  |  |  591|    128|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 128]
  |  |  |  Branch (591:89): [Folded, False: 128]
  |  |  ------------------
  ------------------
  662|    128|                CHECK(maxchar <= 255);
  ------------------
  |  |  591|    128|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 128]
  |  |  |  Branch (591:89): [Folded, False: 128]
  |  |  ------------------
  ------------------
  663|    128|            }
  664|  17.1k|            else
  665|  17.1k|                CHECK(maxchar < 128);
  ------------------
  |  |  591|  17.1k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 17.1k]
  |  |  |  Branch (591:89): [Folded, False: 17.1k]
  |  |  ------------------
  ------------------
  666|  17.2k|        }
  667|  3.07k|        else if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (667:18): [True: 1.83k, False: 1.24k]
  ------------------
  668|  1.83k|            CHECK(maxchar >= 0x100);
  ------------------
  |  |  591|  1.83k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 1.83k]
  |  |  |  Branch (591:89): [Folded, False: 1.83k]
  |  |  ------------------
  ------------------
  669|  1.83k|            CHECK(maxchar <= 0xFFFF);
  ------------------
  |  |  591|  1.83k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 1.83k]
  |  |  |  Branch (591:89): [Folded, False: 1.83k]
  |  |  ------------------
  ------------------
  670|  1.83k|        }
  671|  1.24k|        else {
  672|  1.24k|            CHECK(maxchar >= 0x10000);
  ------------------
  |  |  591|  1.24k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 1.24k]
  |  |  |  Branch (591:89): [Folded, False: 1.24k]
  |  |  ------------------
  ------------------
  673|  1.24k|            CHECK(maxchar <= MAX_UNICODE);
  ------------------
  |  |  591|  1.24k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 1.24k]
  |  |  |  Branch (591:89): [Folded, False: 1.24k]
  |  |  ------------------
  ------------------
  674|  1.24k|        }
  675|  20.3k|        CHECK(PyUnicode_READ(kind, data, ascii->length) == 0);
  ------------------
  |  |  591|  20.3k|    do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0)
  |  |  ------------------
  |  |  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  Branch (591:14): [True: 0, False: 20.3k]
  |  |  |  Branch (591:89): [Folded, False: 20.3k]
  |  |  ------------------
  ------------------
  676|  20.3k|    }
  677|       |
  678|       |    /* Check interning state */
  679|       |#ifdef Py_DEBUG
  680|       |    // Note that we do not check `_Py_IsImmortal(op)` in the GIL-enabled build
  681|       |    // since stable ABI extensions can make immortal strings mortal (but with a
  682|       |    // high enough refcount).
  683|       |    switch (PyUnicode_CHECK_INTERNED(op)) {
  684|       |        case SSTATE_NOT_INTERNED:
  685|       |            if (ascii->state.statically_allocated) {
  686|       |                // This state is for two exceptions:
  687|       |                // - strings are currently checked before they're interned
  688|       |                // - the 256 one-latin1-character strings
  689|       |                //   are static but use SSTATE_NOT_INTERNED
  690|       |            }
  691|       |            else {
  692|       |                CHECK_IF_GIL(!_Py_IsImmortal(op));
  693|       |            }
  694|       |            break;
  695|       |        case SSTATE_INTERNED_MORTAL:
  696|       |            CHECK(!ascii->state.statically_allocated);
  697|       |            CHECK_IF_GIL(!_Py_IsImmortal(op));
  698|       |            break;
  699|       |        case SSTATE_INTERNED_IMMORTAL:
  700|       |            CHECK(!ascii->state.statically_allocated);
  701|       |            CHECK_IF_FT(_Py_IsImmortal(op));
  702|       |            break;
  703|       |        case SSTATE_INTERNED_IMMORTAL_STATIC:
  704|       |            CHECK(ascii->state.statically_allocated);
  705|       |            CHECK_IF_FT(_Py_IsImmortal(op));
  706|       |            break;
  707|       |        default:
  708|       |            Py_UNREACHABLE();
  709|       |    }
  710|       |#endif
  711|       |
  712|  51.3k|    return 1;
  713|       |
  714|  51.3k|#undef CHECK
  715|  51.3k|}
_PyUnicode_Result:
  719|  3.82k|{
  720|  3.82k|    assert(_PyUnicode_CHECK(unicode));
  ------------------
  |  Branch (720:5): [True: 3.82k, False: 0]
  ------------------
  721|       |
  722|  3.82k|    Py_ssize_t length = PyUnicode_GET_LENGTH(unicode);
  ------------------
  |  |  299|  3.82k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.82k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.82k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  723|  3.82k|    if (length == 0) {
  ------------------
  |  Branch (723:9): [True: 0, False: 3.82k]
  ------------------
  724|      0|        PyObject *empty = _PyUnicode_GetEmpty();
  725|      0|        if (unicode != empty) {
  ------------------
  |  Branch (725:13): [True: 0, False: 0]
  ------------------
  726|      0|            Py_DECREF(unicode);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  727|      0|        }
  728|      0|        return empty;
  729|      0|    }
  730|       |
  731|  3.82k|    if (length == 1) {
  ------------------
  |  Branch (731:9): [True: 0, False: 3.82k]
  ------------------
  732|      0|        int kind = PyUnicode_KIND(unicode);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  733|      0|        if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (733:13): [True: 0, False: 0]
  ------------------
  734|      0|            const Py_UCS1 *data = PyUnicode_1BYTE_DATA(unicode);
  ------------------
  |  |  291|      0|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  735|      0|            Py_UCS1 ch = data[0];
  736|      0|            PyObject *latin1_char = LATIN1(ch);
  ------------------
  |  |  184|      0|#define LATIN1 _Py_LATIN1_CHR
  |  |  ------------------
  |  |  |  |  921|      0|    ((CH) < 128 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (921:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  922|      0|     ? (PyObject*)&_Py_SINGLETON(strings).ascii[(CH)] \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  923|      0|     : (PyObject*)&_Py_SINGLETON(strings).latin1[(CH) - 128])
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  737|      0|            if (unicode != latin1_char) {
  ------------------
  |  Branch (737:17): [True: 0, False: 0]
  ------------------
  738|      0|                Py_DECREF(unicode);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  739|      0|            }
  740|      0|            return latin1_char;
  741|      0|        }
  742|      0|    }
  743|       |
  744|  3.82k|    assert(_PyUnicode_CheckConsistency(unicode, 1));
  ------------------
  |  Branch (744:5): [True: 3.82k, False: 0]
  ------------------
  745|  3.82k|    return unicode;
  746|  3.82k|}
_PyUnicode_ResizeCompact:
 1069|  3.83k|{
 1070|  3.83k|    Py_ssize_t char_size;
 1071|  3.83k|    Py_ssize_t struct_size;
 1072|  3.83k|    Py_ssize_t new_size;
 1073|  3.83k|    PyObject *new_unicode;
 1074|       |#ifdef Py_DEBUG
 1075|       |    Py_ssize_t old_length = _PyUnicode_LENGTH(unicode);
 1076|       |#endif
 1077|       |
 1078|  3.83k|    if (!_PyUnicode_IsModifiable(unicode)) {
  ------------------
  |  Branch (1078:9): [True: 0, False: 3.83k]
  ------------------
 1079|      0|        PyObject *copy = resize_copy(unicode, length);
 1080|      0|        if (copy == NULL) {
  ------------------
  |  Branch (1080:13): [True: 0, False: 0]
  ------------------
 1081|      0|            return NULL;
 1082|      0|        }
 1083|      0|        Py_DECREF(unicode);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1084|      0|        return copy;
 1085|      0|    }
 1086|  3.83k|    assert(PyUnicode_IS_COMPACT(unicode));
  ------------------
  |  Branch (1086:5): [True: 3.83k, False: 0]
  ------------------
 1087|       |
 1088|  3.83k|    char_size = PyUnicode_KIND(unicode);
  ------------------
  |  |  258|  3.83k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  7.67k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 3.83k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1089|  3.83k|    if (PyUnicode_IS_ASCII(unicode))
  ------------------
  |  |  227|  3.83k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.83k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.83k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 2.23k, False: 1.60k]
  |  |  ------------------
  ------------------
 1090|  2.23k|        struct_size = sizeof(PyASCIIObject);
 1091|  1.60k|    else
 1092|  1.60k|        struct_size = sizeof(PyCompactUnicodeObject);
 1093|       |
 1094|  3.83k|    if (length > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) {
  ------------------
  |  |  137|  3.83k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1094:9): [True: 0, False: 3.83k]
  ------------------
 1095|      0|        PyErr_NoMemory();
 1096|      0|        return NULL;
 1097|      0|    }
 1098|  3.83k|    new_size = (struct_size + (length + 1) * char_size);
 1099|       |
 1100|  3.83k|    if (_PyUnicode_HAS_UTF8_MEMORY(unicode)) {
  ------------------
  |  Branch (1100:9): [True: 0, False: 3.83k]
  ------------------
 1101|      0|        PyMem_Free(_PyUnicode_UTF8(unicode));
 1102|      0|        PyUnicode_SET_UTF8_LENGTH(unicode, 0);
 1103|      0|        PyUnicode_SET_UTF8(unicode, NULL);
 1104|      0|    }
 1105|       |#ifdef Py_TRACE_REFS
 1106|       |    _Py_ForgetReference(unicode);
 1107|       |#endif
 1108|  3.83k|    _PyReftracerTrack(unicode, PyRefTracer_DESTROY);
  ------------------
  |  |  112|  3.83k|    do { \
  |  |  113|  3.83k|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  114|  3.83k|        if (tracer->tracer_func != NULL) { \
  |  |  ------------------
  |  |  |  Branch (114:13): [True: 0, False: 3.83k]
  |  |  ------------------
  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  117|      0|        } \
  |  |  118|  3.83k|    } while(0)
  |  |  ------------------
  |  |  |  Branch (118:13): [Folded, False: 3.83k]
  |  |  ------------------
  ------------------
 1109|       |
 1110|  3.83k|    new_unicode = (PyObject *)PyObject_Realloc(unicode, new_size);
 1111|  3.83k|    if (new_unicode == NULL) {
  ------------------
  |  Branch (1111:9): [True: 0, False: 3.83k]
  ------------------
 1112|      0|        _Py_NewReferenceNoTotal(unicode);
 1113|      0|        PyErr_NoMemory();
 1114|      0|        return NULL;
 1115|      0|    }
 1116|  3.83k|    unicode = new_unicode;
 1117|  3.83k|    _Py_NewReferenceNoTotal(unicode);
 1118|       |
 1119|  3.83k|    _PyUnicode_LENGTH(unicode) = length;
  ------------------
  |  |  151|  3.83k|    (_PyASCIIObject_CAST(op)->length)
  |  |  ------------------
  |  |  |  |  186|  3.83k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  3.83k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.83k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1119:5): [True: 3.83k, False: 0]
  ------------------
 1120|       |#ifdef Py_DEBUG
 1121|       |    unicode_fill_invalid(unicode, old_length);
 1122|       |#endif
 1123|  3.83k|    PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
  ------------------
  |  |  335|  3.83k|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|  7.67k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (34:47): [True: 3.83k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|  3.83k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|  3.83k|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|  3.83k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1124|  3.83k|                    length, 0);
 1125|  3.83k|    assert(_PyUnicode_CheckConsistency(unicode, 0));
  ------------------
  |  Branch (1125:5): [True: 3.83k, False: 0]
  ------------------
 1126|  3.83k|    return unicode;
 1127|  3.83k|}
PyUnicode_New:
 1273|  27.2k|{
 1274|       |    /* Optimization for empty strings */
 1275|  27.2k|    if (size == 0) {
  ------------------
  |  Branch (1275:9): [True: 4, False: 27.1k]
  ------------------
 1276|      4|        return _PyUnicode_GetEmpty();
 1277|      4|    }
 1278|       |
 1279|  27.1k|    PyObject *obj;
 1280|  27.1k|    PyCompactUnicodeObject *unicode;
 1281|  27.1k|    void *data;
 1282|  27.1k|    int kind;
 1283|  27.1k|    int is_ascii;
 1284|  27.1k|    Py_ssize_t char_size;
 1285|  27.1k|    Py_ssize_t struct_size;
 1286|       |
 1287|  27.1k|    is_ascii = 0;
 1288|  27.1k|    struct_size = sizeof(PyCompactUnicodeObject);
 1289|  27.1k|    if (maxchar < 128) {
  ------------------
  |  Branch (1289:9): [True: 25.2k, False: 1.95k]
  ------------------
 1290|  25.2k|        kind = PyUnicode_1BYTE_KIND;
 1291|  25.2k|        char_size = 1;
 1292|  25.2k|        is_ascii = 1;
 1293|  25.2k|        struct_size = sizeof(PyASCIIObject);
 1294|  25.2k|    }
 1295|  1.95k|    else if (maxchar < 256) {
  ------------------
  |  Branch (1295:14): [True: 309, False: 1.65k]
  ------------------
 1296|    309|        kind = PyUnicode_1BYTE_KIND;
 1297|    309|        char_size = 1;
 1298|    309|    }
 1299|  1.65k|    else if (maxchar < 65536) {
  ------------------
  |  Branch (1299:14): [True: 1.02k, False: 623]
  ------------------
 1300|  1.02k|        kind = PyUnicode_2BYTE_KIND;
 1301|  1.02k|        char_size = 2;
 1302|  1.02k|    }
 1303|    623|    else {
 1304|    623|        if (maxchar > MAX_UNICODE) {
  ------------------
  |  |  104|    623|#define MAX_UNICODE _Py_MAX_UNICODE
  |  |  ------------------
  |  |  |  |   16|    623|#define _Py_MAX_UNICODE 0x10ffff
  |  |  ------------------
  ------------------
  |  Branch (1304:13): [True: 0, False: 623]
  ------------------
 1305|      0|            PyErr_SetString(PyExc_SystemError,
 1306|      0|                            "invalid maximum character passed to PyUnicode_New");
 1307|      0|            return NULL;
 1308|      0|        }
 1309|    623|        kind = PyUnicode_4BYTE_KIND;
 1310|    623|        char_size = 4;
 1311|    623|    }
 1312|       |
 1313|       |    /* Ensure we won't overflow the size. */
 1314|  27.1k|    if (size < 0) {
  ------------------
  |  Branch (1314:9): [True: 0, False: 27.1k]
  ------------------
 1315|      0|        PyErr_SetString(PyExc_SystemError,
 1316|      0|                        "Negative size passed to PyUnicode_New");
 1317|      0|        return NULL;
 1318|      0|    }
 1319|  27.1k|    if (size > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1))
  ------------------
  |  |  137|  27.1k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (1319:9): [True: 0, False: 27.1k]
  ------------------
 1320|      0|        return PyErr_NoMemory();
 1321|       |
 1322|       |    /* Duplicated allocation code from _PyObject_New() instead of a call to
 1323|       |     * PyObject_New() so we are able to allocate space for the object and
 1324|       |     * it's data buffer.
 1325|       |     */
 1326|  27.1k|    obj = (PyObject *) PyObject_Malloc(struct_size + (size + 1) * char_size);
 1327|  27.1k|    if (obj == NULL) {
  ------------------
  |  Branch (1327:9): [True: 0, False: 27.1k]
  ------------------
 1328|      0|        return PyErr_NoMemory();
 1329|      0|    }
 1330|  27.1k|    _PyObject_Init(obj, &PyUnicode_Type);
 1331|       |
 1332|  27.1k|    unicode = (PyCompactUnicodeObject *)obj;
 1333|  27.1k|    if (is_ascii)
  ------------------
  |  Branch (1333:9): [True: 25.2k, False: 1.95k]
  ------------------
 1334|  25.2k|        data = ((PyASCIIObject*)obj) + 1;
 1335|  1.95k|    else
 1336|  1.95k|        data = unicode + 1;
 1337|  27.1k|    _PyUnicode_LENGTH(unicode) = size;
  ------------------
  |  |  151|  27.1k|    (_PyASCIIObject_CAST(op)->length)
  |  |  ------------------
  |  |  |  |  186|  27.1k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  27.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1337:5): [True: 27.1k, False: 0]
  ------------------
 1338|  27.1k|    _PyUnicode_HASH(unicode) = -1;
  ------------------
  |  |  155|  27.1k|    (_PyASCIIObject_CAST(op)->hash)
  |  |  ------------------
  |  |  |  |  186|  27.1k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  27.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1338:5): [True: 27.1k, False: 0]
  ------------------
 1339|  27.1k|    _PyUnicode_STATE(unicode).interned = 0;
  ------------------
  |  |  153|  27.1k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  27.1k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  27.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1339:5): [True: 27.1k, False: 0]
  ------------------
 1340|  27.1k|    _PyUnicode_STATE(unicode).kind = kind;
  ------------------
  |  |  153|  27.1k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  27.1k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  27.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1340:5): [True: 27.1k, False: 0]
  ------------------
 1341|  27.1k|    _PyUnicode_STATE(unicode).compact = 1;
  ------------------
  |  |  153|  27.1k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  27.1k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  27.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1341:5): [True: 27.1k, False: 0]
  ------------------
 1342|  27.1k|    _PyUnicode_STATE(unicode).ascii = is_ascii;
  ------------------
  |  |  153|  27.1k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  27.1k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  27.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1342:5): [True: 27.1k, False: 0]
  ------------------
 1343|  27.1k|    _PyUnicode_STATE(unicode).statically_allocated = 0;
  ------------------
  |  |  153|  27.1k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  27.1k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  27.1k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  27.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1343:5): [True: 27.1k, False: 0]
  ------------------
 1344|  27.1k|    if (is_ascii) {
  ------------------
  |  Branch (1344:9): [True: 25.2k, False: 1.95k]
  ------------------
 1345|  25.2k|        ((char*)data)[size] = 0;
 1346|  25.2k|    }
 1347|  1.95k|    else if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (1347:14): [True: 309, False: 1.65k]
  ------------------
 1348|    309|        ((char*)data)[size] = 0;
 1349|    309|        unicode->utf8 = NULL;
 1350|    309|        unicode->utf8_length = 0;
 1351|    309|    }
 1352|  1.65k|    else {
 1353|  1.65k|        unicode->utf8 = NULL;
 1354|  1.65k|        unicode->utf8_length = 0;
 1355|  1.65k|        if (kind == PyUnicode_2BYTE_KIND)
  ------------------
  |  Branch (1355:13): [True: 1.02k, False: 623]
  ------------------
 1356|  1.02k|            ((Py_UCS2*)data)[size] = 0;
 1357|    623|        else /* kind == PyUnicode_4BYTE_KIND */
 1358|    623|            ((Py_UCS4*)data)[size] = 0;
 1359|  1.65k|    }
 1360|       |#ifdef Py_DEBUG
 1361|       |    unicode_fill_invalid((PyObject*)unicode, 0);
 1362|       |#endif
 1363|  27.1k|    assert(_PyUnicode_CheckConsistency((PyObject*)unicode, 0));
  ------------------
  |  Branch (1363:5): [True: 27.1k, False: 0]
  ------------------
 1364|  27.1k|    return obj;
 1365|  27.1k|}
_PyUnicode_FastCopyCharacters:
 1525|  4.39k|{
 1526|  4.39k|    (void)_copy_characters(to, to_start, from, from_start, how_many, 0);
 1527|  4.39k|}
_PyUnicode_IsModifiable:
 1734|  3.86k|{
 1735|  3.86k|    assert(_PyUnicode_CHECK(unicode));
  ------------------
  |  Branch (1735:5): [True: 3.86k, False: 0]
  ------------------
 1736|  3.86k|    if (!_PyObject_IsUniquelyReferenced(unicode))
  ------------------
  |  Branch (1736:9): [True: 20, False: 3.84k]
  ------------------
 1737|     20|        return 0;
 1738|  3.84k|    if (PyUnicode_HASH(unicode) != -1)
  ------------------
  |  |  157|  3.84k|#define PyUnicode_HASH PyUnstable_Unicode_GET_CACHED_HASH
  ------------------
  |  Branch (1738:9): [True: 0, False: 3.84k]
  ------------------
 1739|      0|        return 0;
 1740|  3.84k|    if (PyUnicode_CHECK_INTERNED(unicode))
  ------------------
  |  |  214|  3.84k|#define PyUnicode_CHECK_INTERNED(op) PyUnicode_CHECK_INTERNED(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.84k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.84k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (214:38): [True: 0, False: 3.84k]
  |  |  ------------------
  ------------------
 1741|      0|        return 0;
 1742|  3.84k|    if (!PyUnicode_CheckExact(unicode))
  ------------------
  |  |  104|  3.84k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  3.84k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  3.84k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  3.84k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1742:9): [True: 0, False: 3.84k]
  ------------------
 1743|      0|        return 0;
 1744|       |#ifdef Py_DEBUG
 1745|       |    /* singleton refcount is greater than 1 */
 1746|       |    assert(!unicode_is_singleton(unicode));
 1747|       |#endif
 1748|  3.84k|    return 1;
 1749|  3.84k|}
PyUnicode_FromWideChar:
 1900|    126|{
 1901|    126|    PyObject *unicode;
 1902|    126|    Py_UCS4 maxchar = 0;
 1903|    126|    Py_ssize_t num_surrogates;
 1904|       |
 1905|    126|    if (u == NULL && size != 0) {
  ------------------
  |  Branch (1905:9): [True: 0, False: 126]
  |  Branch (1905:22): [True: 0, False: 0]
  ------------------
 1906|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1907|      0|        return NULL;
 1908|      0|    }
 1909|       |
 1910|    126|    if (size == -1) {
  ------------------
  |  Branch (1910:9): [True: 84, False: 42]
  ------------------
 1911|     84|        size = wcslen(u);
 1912|     84|    }
 1913|       |
 1914|       |    /* If the Unicode data is known at construction time, we can apply
 1915|       |       some optimizations which share commonly used objects. */
 1916|       |
 1917|       |    /* Optimization for empty strings */
 1918|    126|    if (size == 0)
  ------------------
  |  Branch (1918:9): [True: 4, False: 122]
  ------------------
 1919|      4|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      4|    do {                             \
  |  |  376|      4|        return _PyUnicode_GetEmpty();\
  |  |  377|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1920|       |
 1921|       |#ifdef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION
 1922|       |    /* Oracle Solaris uses non-Unicode internal wchar_t form for
 1923|       |       non-Unicode locales and hence needs conversion to UCS-4 first. */
 1924|       |    if (_Py_LocaleUsesNonUnicodeWchar()) {
 1925|       |        wchar_t* converted = _Py_DecodeNonUnicodeWchar(u, size);
 1926|       |        if (!converted) {
 1927|       |            return NULL;
 1928|       |        }
 1929|       |        PyObject *unicode = _PyUnicode_FromUCS4(converted, size);
 1930|       |        PyMem_Free(converted);
 1931|       |        return unicode;
 1932|       |    }
 1933|       |#endif
 1934|       |
 1935|       |    /* Single character Unicode objects in the Latin-1 range are
 1936|       |       shared when using this constructor */
 1937|    122|    if (size == 1 && (Py_UCS4)*u < 256)
  ------------------
  |  Branch (1937:9): [True: 0, False: 122]
  |  Branch (1937:22): [True: 0, False: 0]
  ------------------
 1938|      0|        return get_latin1_char((unsigned char)*u);
 1939|       |
 1940|       |    /* If not empty and not single character, copy the Unicode data
 1941|       |       into the new object */
 1942|    122|    if (find_maxchar_surrogates(u, u + size,
  ------------------
  |  Branch (1942:9): [True: 0, False: 122]
  ------------------
 1943|    122|                                &maxchar, &num_surrogates) == -1)
 1944|      0|        return NULL;
 1945|       |
 1946|    122|    unicode = PyUnicode_New(size - num_surrogates, maxchar);
 1947|    122|    if (!unicode)
  ------------------
  |  Branch (1947:9): [True: 0, False: 122]
  ------------------
 1948|      0|        return NULL;
 1949|       |
 1950|    122|    unicode_write_widechar(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
  ------------------
  |  |  258|    122|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    244|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 122, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  unicode_write_widechar(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
  ------------------
  |  |  284|    122|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1951|    122|                           u, size, num_surrogates);
 1952|       |
 1953|    122|    return unicode_result(unicode);
  ------------------
  |  |  747|    122|#define unicode_result _PyUnicode_Result
  ------------------
 1954|    122|}
PyUnicode_FromStringAndSize:
 2009|    144|{
 2010|    144|    if (size < 0) {
  ------------------
  |  Branch (2010:9): [True: 0, False: 144]
  ------------------
 2011|      0|        PyErr_SetString(PyExc_SystemError,
 2012|      0|                        "Negative size passed to PyUnicode_FromStringAndSize");
 2013|      0|        return NULL;
 2014|      0|    }
 2015|    144|    if (u != NULL) {
  ------------------
  |  Branch (2015:9): [True: 144, False: 0]
  ------------------
 2016|    144|        return PyUnicode_DecodeUTF8Stateful(u, size, NULL, NULL);
 2017|    144|    }
 2018|      0|    if (size > 0) {
  ------------------
  |  Branch (2018:9): [True: 0, False: 0]
  ------------------
 2019|      0|        PyErr_SetString(PyExc_SystemError,
 2020|      0|            "NULL string with positive size with NULL passed to PyUnicode_FromStringAndSize");
 2021|      0|        return NULL;
 2022|      0|    }
 2023|      0|    return _PyUnicode_GetEmpty();
 2024|      0|}
PyUnicode_FromString:
 2028|  9.61k|{
 2029|  9.61k|    size_t size = strlen(u);
 2030|  9.61k|    if (size > PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|  9.61k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (2030:9): [True: 0, False: 9.61k]
  ------------------
 2031|      0|        PyErr_SetString(PyExc_OverflowError, "input too long");
 2032|      0|        return NULL;
 2033|      0|    }
 2034|  9.61k|    return PyUnicode_DecodeUTF8Stateful(u, (Py_ssize_t)size, NULL, NULL);
 2035|  9.61k|}
_PyUnicode_FromASCII:
 2123|     60|{
 2124|     60|    const unsigned char *s = (const unsigned char *)buffer;
 2125|     60|    PyObject *unicode;
 2126|     60|    if (size == 1) {
  ------------------
  |  Branch (2126:9): [True: 0, False: 60]
  ------------------
 2127|       |#ifdef Py_DEBUG
 2128|       |        assert((unsigned char)s[0] < 128);
 2129|       |#endif
 2130|      0|        return get_latin1_char(s[0]);
 2131|      0|    }
 2132|     60|    unicode = PyUnicode_New(size, 127);
 2133|     60|    if (!unicode)
  ------------------
  |  Branch (2133:9): [True: 0, False: 60]
  ------------------
 2134|      0|        return NULL;
 2135|     60|    memcpy(PyUnicode_1BYTE_DATA(unicode), s, size);
  ------------------
  |  |  291|     60|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|     60|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 2136|     60|    assert(_PyUnicode_CheckConsistency(unicode, 1));
  ------------------
  |  Branch (2136:5): [True: 60, False: 0]
  ------------------
 2137|     60|    return unicode;
 2138|     60|}
PyUnicode_FromKindAndData:
 2279|  8.96k|{
 2280|  8.96k|    if (size < 0) {
  ------------------
  |  Branch (2280:9): [True: 0, False: 8.96k]
  ------------------
 2281|      0|        PyErr_SetString(PyExc_ValueError, "size must be positive");
 2282|      0|        return NULL;
 2283|      0|    }
 2284|  8.96k|    switch (kind) {
 2285|  8.96k|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (2285:5): [True: 8.96k, False: 0]
  ------------------
 2286|  8.96k|        return _PyUnicode_FromUCS1(buffer, size);
 2287|      0|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (2287:5): [True: 0, False: 8.96k]
  ------------------
 2288|      0|        return _PyUnicode_FromUCS2(buffer, size);
 2289|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (2289:5): [True: 0, False: 8.96k]
  ------------------
 2290|      0|        return _PyUnicode_FromUCS4(buffer, size);
 2291|      0|    default:
  ------------------
  |  Branch (2291:5): [True: 0, False: 8.96k]
  ------------------
 2292|      0|        PyErr_SetString(PyExc_SystemError, "invalid kind");
 2293|       |        return NULL;
 2294|  8.96k|    }
 2295|  8.96k|}
PyUnicode_FromFormatV:
 3111|  3.70k|{
 3112|  3.70k|    _PyUnicodeWriter writer;
 3113|  3.70k|    _PyUnicodeWriter_Init(&writer);
 3114|       |
 3115|  3.70k|    if (unicode_from_format(&writer, format, vargs) < 0) {
  ------------------
  |  Branch (3115:9): [True: 0, False: 3.70k]
  ------------------
 3116|      0|        _PyUnicodeWriter_Dealloc(&writer);
 3117|      0|        return NULL;
 3118|      0|    }
 3119|  3.70k|    return _PyUnicodeWriter_Finish(&writer);
 3120|  3.70k|}
PyUnicode_FromFormat:
 3124|      6|{
 3125|      6|    PyObject* ret;
 3126|      6|    va_list vargs;
 3127|       |
 3128|      6|    va_start(vargs, format);
 3129|      6|    ret = PyUnicode_FromFormatV(format, vargs);
 3130|       |    va_end(vargs);
 3131|      6|    return ret;
 3132|      6|}
PyUnicode_AsWideCharString:
 3282|    136|{
 3283|    136|    wchar_t *buffer;
 3284|    136|    Py_ssize_t buflen;
 3285|       |
 3286|    136|    if (unicode == NULL) {
  ------------------
  |  Branch (3286:9): [True: 0, False: 136]
  ------------------
 3287|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3288|      0|        return NULL;
 3289|      0|    }
 3290|    136|    if (!PyUnicode_Check(unicode)) {
  ------------------
  |  |  103|    136|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    136|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3290:9): [True: 0, False: 136]
  ------------------
 3291|      0|        PyErr_BadArgument();
 3292|      0|        return NULL;
 3293|      0|    }
 3294|       |
 3295|    136|    buflen = unicode_get_widechar_size(unicode);
 3296|    136|    buffer = (wchar_t *) PyMem_New(wchar_t, (buflen + 1));
  ------------------
  |  |   64|    136|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  ------------------
  |  |  |  |  137|    136|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  ------------------
  |  |  |  Branch (64:5): [True: 0, False: 136]
  |  |  ------------------
  |  |   65|    136|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  ------------------
 3297|    136|    if (buffer == NULL) {
  ------------------
  |  Branch (3297:9): [True: 0, False: 136]
  ------------------
 3298|      0|        PyErr_NoMemory();
 3299|      0|        return NULL;
 3300|      0|    }
 3301|    136|    unicode_copy_as_widechar(unicode, buffer, buflen + 1);
 3302|       |
 3303|       |#ifdef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION
 3304|       |    /* Oracle Solaris uses non-Unicode internal wchar_t form for
 3305|       |       non-Unicode locales and hence needs conversion first. */
 3306|       |    if (_Py_LocaleUsesNonUnicodeWchar()) {
 3307|       |        if (_Py_EncodeNonUnicodeWchar_InPlace(buffer, (buflen + 1)) < 0) {
 3308|       |            return NULL;
 3309|       |        }
 3310|       |    }
 3311|       |#endif
 3312|       |
 3313|    136|    if (size != NULL) {
  ------------------
  |  Branch (3313:9): [True: 64, False: 72]
  ------------------
 3314|     64|        *size = buflen;
 3315|     64|    }
 3316|     72|    else if (wcslen(buffer) != (size_t)buflen) {
  ------------------
  |  Branch (3316:14): [True: 0, False: 72]
  ------------------
 3317|      0|        PyMem_Free(buffer);
 3318|      0|        PyErr_SetString(PyExc_ValueError,
 3319|      0|                        "embedded null character");
 3320|      0|        return NULL;
 3321|      0|    }
 3322|    136|    return buffer;
 3323|    136|}
PyUnicode_FromEncodedObject:
 3410|      4|{
 3411|      4|    Py_buffer buffer;
 3412|      4|    PyObject *v;
 3413|       |
 3414|      4|    if (obj == NULL) {
  ------------------
  |  Branch (3414:9): [True: 0, False: 4]
  ------------------
 3415|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 3416|      0|        return NULL;
 3417|      0|    }
 3418|       |
 3419|       |    /* Decoding bytes objects is the most common case and should be fast */
 3420|      4|    if (PyBytes_Check(obj)) {
  ------------------
  |  |   28|      4|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3421|      4|        if (PyBytes_GET_SIZE(obj) == 0) {
  ------------------
  |  |   33|      4|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3421:13): [True: 0, False: 4]
  ------------------
 3422|      0|            if (unicode_check_encoding_errors(encoding, errors) < 0) {
  ------------------
  |  Branch (3422:17): [True: 0, False: 0]
  ------------------
 3423|      0|                return NULL;
 3424|      0|            }
 3425|      0|            _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      0|    do {                             \
  |  |  376|      0|        return _PyUnicode_GetEmpty();\
  |  |  377|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3426|      0|        }
 3427|      4|        return PyUnicode_Decode(
 3428|      4|                PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
  ------------------
  |  |   27|      4|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                              PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
  ------------------
  |  |   33|      4|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3429|      4|                encoding, errors);
 3430|      4|    }
 3431|       |
 3432|      0|    if (PyUnicode_Check(obj)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3433|      0|        PyErr_SetString(PyExc_TypeError,
 3434|      0|                        "decoding str is not supported");
 3435|      0|        return NULL;
 3436|      0|    }
 3437|       |
 3438|       |    /* Retrieve a bytes buffer view through the PEP 3118 buffer interface */
 3439|      0|    if (PyObject_GetBuffer(obj, &buffer, PyBUF_SIMPLE) < 0) {
  ------------------
  |  |  108|      0|#define PyBUF_SIMPLE 0
  ------------------
  |  Branch (3439:9): [True: 0, False: 0]
  ------------------
 3440|      0|        PyErr_Format(PyExc_TypeError,
 3441|      0|                     "decoding to str: need a bytes-like object, %.80s found",
 3442|      0|                     Py_TYPE(obj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3443|      0|        return NULL;
 3444|      0|    }
 3445|       |
 3446|      0|    if (buffer.len == 0) {
  ------------------
  |  Branch (3446:9): [True: 0, False: 0]
  ------------------
 3447|      0|        PyBuffer_Release(&buffer);
 3448|      0|        if (unicode_check_encoding_errors(encoding, errors) < 0) {
  ------------------
  |  Branch (3448:13): [True: 0, False: 0]
  ------------------
 3449|      0|            return NULL;
 3450|      0|        }
 3451|      0|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      0|    do {                             \
  |  |  376|      0|        return _PyUnicode_GetEmpty();\
  |  |  377|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3452|      0|    }
 3453|       |
 3454|      0|    v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors);
 3455|      0|    PyBuffer_Release(&buffer);
 3456|      0|    return v;
 3457|      0|}
_Py_normalize_encoding:
 3467|     36|{
 3468|     36|    const char *e;
 3469|     36|    char *l;
 3470|     36|    char *l_end;
 3471|     36|    int punct;
 3472|       |
 3473|     36|    assert(encoding != NULL);
  ------------------
  |  Branch (3473:5): [True: 36, False: 0]
  ------------------
 3474|       |
 3475|     36|    e = encoding;
 3476|     36|    l = lower;
 3477|     36|    l_end = &lower[lower_len - 1];
 3478|     36|    punct = 0;
 3479|    216|    while (1) {
  ------------------
  |  Branch (3479:12): [True: 216, Folded]
  ------------------
 3480|    216|        char c = *e;
 3481|    216|        if (c == 0) {
  ------------------
  |  Branch (3481:13): [True: 36, False: 180]
  ------------------
 3482|     36|            break;
 3483|     36|        }
 3484|       |
 3485|    180|        if (Py_ISALNUM(c) || c == '.') {
  ------------------
  |  |   26|    360|#define Py_ISALNUM(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM)
  |  |  ------------------
  |  |  |  |  138|    180|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISALNUM(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM)
  |  |  ------------------
  |  |  |  |   12|    180|#define PY_CTF_ALNUM  (PY_CTF_ALPHA|PY_CTF_DIGIT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   10|    180|#define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |    8|    180|#define PY_CTF_LOWER  0x01
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |    9|    180|#define PY_CTF_UPPER  0x02
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define PY_CTF_ALNUM  (PY_CTF_ALPHA|PY_CTF_DIGIT)
  |  |  |  |  ------------------
  |  |  |  |  |  |   11|    180|#define PY_CTF_DIGIT  0x04
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (26:24): [True: 168, False: 12]
  |  |  ------------------
  ------------------
  |  Branch (3485:30): [True: 0, False: 12]
  ------------------
 3486|    168|            if (punct && l != lower) {
  ------------------
  |  Branch (3486:17): [True: 12, False: 156]
  |  Branch (3486:26): [True: 12, False: 0]
  ------------------
 3487|     12|                if (l == l_end) {
  ------------------
  |  Branch (3487:21): [True: 0, False: 12]
  ------------------
 3488|      0|                    return 0;
 3489|      0|                }
 3490|     12|                *l++ = '_';
 3491|     12|            }
 3492|    168|            punct = 0;
 3493|       |
 3494|    168|            if (l == l_end) {
  ------------------
  |  Branch (3494:17): [True: 0, False: 168]
  ------------------
 3495|      0|                return 0;
 3496|      0|            }
 3497|    168|            *l++ = to_lower ? Py_TOLOWER(c) : c;
  ------------------
  |  |   32|    160|#define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)])
  |  |  ------------------
  |  |  |  |  138|    160|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  ------------------
  |  Branch (3497:20): [True: 160, False: 8]
  ------------------
 3498|    168|        }
 3499|     12|        else {
 3500|     12|            punct = 1;
 3501|     12|        }
 3502|       |
 3503|    180|        e++;
 3504|    180|    }
 3505|     36|    *l = '\0';
 3506|     36|    return 1;
 3507|     36|}
PyUnicode_Decode:
 3514|      4|{
 3515|      4|    PyObject *buffer = NULL, *unicode;
 3516|      4|    Py_buffer info;
 3517|      4|    char buflower[11];   /* strlen("iso-8859-1\0") == 11, longest shortcut */
 3518|       |
 3519|      4|    if (unicode_check_encoding_errors(encoding, errors) < 0) {
  ------------------
  |  Branch (3519:9): [True: 0, False: 4]
  ------------------
 3520|      0|        return NULL;
 3521|      0|    }
 3522|       |
 3523|      4|    if (size == 0) {
  ------------------
  |  Branch (3523:9): [True: 0, False: 4]
  ------------------
 3524|      0|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      0|    do {                             \
  |  |  376|      0|        return _PyUnicode_GetEmpty();\
  |  |  377|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3525|      0|    }
 3526|       |
 3527|      4|    if (encoding == NULL) {
  ------------------
  |  Branch (3527:9): [True: 0, False: 4]
  ------------------
 3528|      0|        return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
 3529|      0|    }
 3530|       |
 3531|       |    /* Shortcuts for common default encodings */
 3532|      4|    if (_Py_normalize_encoding(encoding, buflower, sizeof(buflower), 1)) {
  ------------------
  |  Branch (3532:9): [True: 4, False: 0]
  ------------------
 3533|      4|        char *lower = buflower;
 3534|       |
 3535|       |        /* Fast paths */
 3536|      4|        if (lower[0] == 'u' && lower[1] == 't' && lower[2] == 'f') {
  ------------------
  |  Branch (3536:13): [True: 4, False: 0]
  |  Branch (3536:32): [True: 4, False: 0]
  |  Branch (3536:51): [True: 4, False: 0]
  ------------------
 3537|      4|            lower += 3;
 3538|      4|            if (*lower == '_') {
  ------------------
  |  Branch (3538:17): [True: 4, False: 0]
  ------------------
 3539|       |                /* Match "utf8" and "utf_8" */
 3540|      4|                lower++;
 3541|      4|            }
 3542|       |
 3543|      4|            if (lower[0] == '8' && lower[1] == 0) {
  ------------------
  |  Branch (3543:17): [True: 4, False: 0]
  |  Branch (3543:36): [True: 4, False: 0]
  ------------------
 3544|      4|                return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
 3545|      4|            }
 3546|      0|            else if (lower[0] == '1' && lower[1] == '6' && lower[2] == 0) {
  ------------------
  |  Branch (3546:22): [True: 0, False: 0]
  |  Branch (3546:41): [True: 0, False: 0]
  |  Branch (3546:60): [True: 0, False: 0]
  ------------------
 3547|      0|                return PyUnicode_DecodeUTF16(s, size, errors, 0);
 3548|      0|            }
 3549|      0|            else if (lower[0] == '3' && lower[1] == '2' && lower[2] == 0) {
  ------------------
  |  Branch (3549:22): [True: 0, False: 0]
  |  Branch (3549:41): [True: 0, False: 0]
  |  Branch (3549:60): [True: 0, False: 0]
  ------------------
 3550|      0|                return PyUnicode_DecodeUTF32(s, size, errors, 0);
 3551|      0|            }
 3552|      4|        }
 3553|      0|        else {
 3554|      0|            if (strcmp(lower, "ascii") == 0
  ------------------
  |  Branch (3554:17): [True: 0, False: 0]
  ------------------
 3555|      0|                || strcmp(lower, "us_ascii") == 0) {
  ------------------
  |  Branch (3555:20): [True: 0, False: 0]
  ------------------
 3556|      0|                return PyUnicode_DecodeASCII(s, size, errors);
 3557|      0|            }
 3558|       |    #ifdef MS_WINDOWS
 3559|       |            else if (strcmp(lower, "mbcs") == 0) {
 3560|       |                return PyUnicode_DecodeMBCS(s, size, errors);
 3561|       |            }
 3562|       |    #endif
 3563|      0|            else if (strcmp(lower, "latin1") == 0
  ------------------
  |  Branch (3563:22): [True: 0, False: 0]
  ------------------
 3564|      0|                     || strcmp(lower, "latin_1") == 0
  ------------------
  |  Branch (3564:25): [True: 0, False: 0]
  ------------------
 3565|      0|                     || strcmp(lower, "iso_8859_1") == 0
  ------------------
  |  Branch (3565:25): [True: 0, False: 0]
  ------------------
 3566|      0|                     || strcmp(lower, "iso8859_1") == 0) {
  ------------------
  |  Branch (3566:25): [True: 0, False: 0]
  ------------------
 3567|      0|                return PyUnicode_DecodeLatin1(s, size, errors);
 3568|      0|            }
 3569|      0|        }
 3570|      4|    }
 3571|       |
 3572|       |    /* Decode via the codec registry */
 3573|      0|    buffer = NULL;
 3574|      0|    if (PyBuffer_FillInfo(&info, NULL, (void *)s, size, 1, PyBUF_FULL_RO) < 0)
  ------------------
  |  |  134|      0|#define PyBUF_FULL_RO (PyBUF_INDIRECT | PyBUF_FORMAT)
  |  |  ------------------
  |  |  |  |  122|      0|#define PyBUF_INDIRECT (0x0100 | PyBUF_STRIDES)
  |  |  |  |  ------------------
  |  |  |  |  |  |  118|      0|#define PyBUF_STRIDES (0x0010 | PyBUF_ND)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  117|      0|#define PyBUF_ND 0x0008
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define PyBUF_FULL_RO (PyBUF_INDIRECT | PyBUF_FORMAT)
  |  |  ------------------
  |  |  |  |  116|      0|#define PyBUF_FORMAT 0x0004
  |  |  ------------------
  ------------------
  |  Branch (3574:9): [True: 0, False: 0]
  ------------------
 3575|      0|        goto onError;
 3576|      0|    buffer = PyMemoryView_FromBuffer(&info);
 3577|      0|    if (buffer == NULL)
  ------------------
  |  Branch (3577:9): [True: 0, False: 0]
  ------------------
 3578|      0|        goto onError;
 3579|      0|    unicode = _PyCodec_DecodeText(buffer, encoding, errors);
 3580|      0|    if (unicode == NULL)
  ------------------
  |  Branch (3580:9): [True: 0, False: 0]
  ------------------
 3581|      0|        goto onError;
 3582|      0|    if (!PyUnicode_Check(unicode)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3582:9): [True: 0, False: 0]
  ------------------
 3583|      0|        PyErr_Format(PyExc_TypeError,
 3584|      0|                     "'%.400s' decoder returned '%.400s' instead of 'str'; "
 3585|      0|                     "use codecs.decode() to decode to arbitrary types",
 3586|      0|                     encoding,
 3587|      0|                     Py_TYPE(unicode)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3588|      0|        Py_DECREF(unicode);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3589|      0|        goto onError;
 3590|      0|    }
 3591|      0|    Py_DECREF(buffer);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3592|      0|    return unicode_result(unicode);
  ------------------
  |  |  747|      0|#define unicode_result _PyUnicode_Result
  ------------------
 3593|       |
 3594|      0|  onError:
 3595|      0|    Py_XDECREF(buffer);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3596|       |    return NULL;
 3597|      0|}
PyUnicode_EncodeFSDefault:
 3735|     46|{
 3736|     46|    PyInterpreterState *interp = _PyInterpreterState_GET();
 3737|     46|    struct _Py_unicode_fs_codec *fs_codec = &interp->unicode.fs_codec;
 3738|     46|    if (fs_codec->utf8) {
  ------------------
  |  Branch (3738:9): [True: 46, False: 0]
  ------------------
 3739|     46|        return unicode_encode_utf8(unicode,
 3740|     46|                                   fs_codec->error_handler,
 3741|     46|                                   fs_codec->errors);
 3742|     46|    }
 3743|      0|#ifndef _Py_FORCE_UTF8_FS_ENCODING
 3744|      0|    else if (fs_codec->encoding) {
  ------------------
  |  Branch (3744:14): [True: 0, False: 0]
  ------------------
 3745|      0|        return PyUnicode_AsEncodedString(unicode,
 3746|      0|                                         fs_codec->encoding,
 3747|      0|                                         fs_codec->errors);
 3748|      0|    }
 3749|      0|#endif
 3750|      0|    else {
 3751|       |        /* Before _PyUnicode_InitEncodings() is called, the Python codec
 3752|       |           machinery is not ready and so cannot be used:
 3753|       |           use wcstombs() in this case. */
 3754|      0|        const PyConfig *config = _PyInterpreterState_GetConfig(interp);
 3755|      0|        const wchar_t *filesystem_errors = config->filesystem_errors;
 3756|      0|        assert(filesystem_errors != NULL);
  ------------------
  |  Branch (3756:9): [True: 0, False: 0]
  ------------------
 3757|      0|        _Py_error_handler errors = get_error_handler_wide(filesystem_errors);
 3758|      0|        assert(errors != _Py_ERROR_UNKNOWN);
  ------------------
  |  Branch (3758:9): [True: 0, False: 0]
  ------------------
 3759|       |#ifdef _Py_FORCE_UTF8_FS_ENCODING
 3760|       |        return unicode_encode_utf8(unicode, errors, NULL);
 3761|       |#else
 3762|      0|        return unicode_encode_locale(unicode, errors, 0);
 3763|      0|#endif
 3764|      0|    }
 3765|     46|}
PyUnicode_AsEncodedString:
 3771|     30|{
 3772|     30|    PyObject *v;
 3773|     30|    char buflower[11];   /* strlen("iso_8859_1\0") == 11, longest shortcut */
 3774|       |
 3775|     30|    if (!PyUnicode_Check(unicode)) {
  ------------------
  |  |  103|     30|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     30|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3775:9): [True: 0, False: 30]
  ------------------
 3776|      0|        PyErr_BadArgument();
 3777|      0|        return NULL;
 3778|      0|    }
 3779|       |
 3780|     30|    if (unicode_check_encoding_errors(encoding, errors) < 0) {
  ------------------
  |  Branch (3780:9): [True: 0, False: 30]
  ------------------
 3781|      0|        return NULL;
 3782|      0|    }
 3783|       |
 3784|     30|    if (encoding == NULL) {
  ------------------
  |  Branch (3784:9): [True: 0, False: 30]
  ------------------
 3785|      0|        return _PyUnicode_AsUTF8String(unicode, errors);
 3786|      0|    }
 3787|       |
 3788|       |    /* Shortcuts for common default encodings */
 3789|     30|    if (_Py_normalize_encoding(encoding, buflower, sizeof(buflower), 1)) {
  ------------------
  |  Branch (3789:9): [True: 30, False: 0]
  ------------------
 3790|     30|        char *lower = buflower;
 3791|       |
 3792|       |        /* Fast paths */
 3793|     30|        if (lower[0] == 'u' && lower[1] == 't' && lower[2] == 'f') {
  ------------------
  |  Branch (3793:13): [True: 6, False: 24]
  |  Branch (3793:32): [True: 6, False: 0]
  |  Branch (3793:51): [True: 6, False: 0]
  ------------------
 3794|      6|            lower += 3;
 3795|      6|            if (*lower == '_') {
  ------------------
  |  Branch (3795:17): [True: 6, False: 0]
  ------------------
 3796|       |                /* Match "utf8" and "utf_8" */
 3797|      6|                lower++;
 3798|      6|            }
 3799|       |
 3800|      6|            if (lower[0] == '8' && lower[1] == 0) {
  ------------------
  |  Branch (3800:17): [True: 6, False: 0]
  |  Branch (3800:36): [True: 6, False: 0]
  ------------------
 3801|      6|                return _PyUnicode_AsUTF8String(unicode, errors);
 3802|      6|            }
 3803|      0|            else if (lower[0] == '1' && lower[1] == '6' && lower[2] == 0) {
  ------------------
  |  Branch (3803:22): [True: 0, False: 0]
  |  Branch (3803:41): [True: 0, False: 0]
  |  Branch (3803:60): [True: 0, False: 0]
  ------------------
 3804|      0|                return _PyUnicode_EncodeUTF16(unicode, errors, 0);
 3805|      0|            }
 3806|      0|            else if (lower[0] == '3' && lower[1] == '2' && lower[2] == 0) {
  ------------------
  |  Branch (3806:22): [True: 0, False: 0]
  |  Branch (3806:41): [True: 0, False: 0]
  |  Branch (3806:60): [True: 0, False: 0]
  ------------------
 3807|      0|                return _PyUnicode_EncodeUTF32(unicode, errors, 0);
 3808|      0|            }
 3809|      6|        }
 3810|     24|        else {
 3811|     24|            if (strcmp(lower, "ascii") == 0
  ------------------
  |  Branch (3811:17): [True: 24, False: 0]
  ------------------
 3812|     24|                || strcmp(lower, "us_ascii") == 0) {
  ------------------
  |  Branch (3812:20): [True: 0, False: 0]
  ------------------
 3813|     24|                return _PyUnicode_AsASCIIString(unicode, errors);
 3814|     24|            }
 3815|       |#ifdef MS_WINDOWS
 3816|       |            else if (strcmp(lower, "mbcs") == 0) {
 3817|       |                return PyUnicode_EncodeCodePage(CP_ACP, unicode, errors);
 3818|       |            }
 3819|       |#endif
 3820|      0|            else if (strcmp(lower, "latin1") == 0 ||
  ------------------
  |  Branch (3820:22): [True: 0, False: 0]
  ------------------
 3821|      0|                     strcmp(lower, "latin_1") == 0 ||
  ------------------
  |  Branch (3821:22): [True: 0, False: 0]
  ------------------
 3822|      0|                     strcmp(lower, "iso_8859_1") == 0 ||
  ------------------
  |  Branch (3822:22): [True: 0, False: 0]
  ------------------
 3823|      0|                     strcmp(lower, "iso8859_1") == 0) {
  ------------------
  |  Branch (3823:22): [True: 0, False: 0]
  ------------------
 3824|      0|                return _PyUnicode_AsLatin1String(unicode, errors);
 3825|      0|            }
 3826|     24|        }
 3827|     30|    }
 3828|       |
 3829|       |    /* Encode via the codec registry */
 3830|      0|    v = _PyCodec_EncodeText(unicode, encoding, errors);
 3831|      0|    if (v == NULL)
  ------------------
  |  Branch (3831:9): [True: 0, False: 0]
  ------------------
 3832|      0|        return NULL;
 3833|       |
 3834|       |    /* The normal path */
 3835|      0|    if (PyBytes_Check(v))
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3836|      0|        return v;
 3837|       |
 3838|       |    /* If the codec returns a buffer, raise a warning and convert to bytes */
 3839|      0|    if (PyByteArray_Check(v)) {
  ------------------
  |  |   24|      0|#define PyByteArray_Check(self) PyObject_TypeCheck((self), &PyByteArray_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3840|      0|        int error;
 3841|      0|        PyObject *b;
 3842|       |
 3843|      0|        error = PyErr_WarnFormat(PyExc_RuntimeWarning, 1,
 3844|      0|            "encoder %s returned bytearray instead of bytes; "
 3845|      0|            "use codecs.encode() to encode to arbitrary types",
 3846|      0|            encoding);
 3847|      0|        if (error) {
  ------------------
  |  Branch (3847:13): [True: 0, False: 0]
  ------------------
 3848|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3849|      0|            return NULL;
 3850|      0|        }
 3851|       |
 3852|      0|        b = PyBytes_FromStringAndSize(PyByteArray_AS_STRING(v),
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3853|      0|                                      PyByteArray_GET_SIZE(v));
  ------------------
  |  |   38|      0|#define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3854|      0|        Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3855|      0|        return b;
 3856|      0|    }
 3857|       |
 3858|      0|    PyErr_Format(PyExc_TypeError,
 3859|      0|                 "'%.400s' encoder returned '%.400s' instead of 'bytes'; "
 3860|      0|                 "use codecs.encode() to encode to arbitrary types",
 3861|      0|                 encoding,
 3862|      0|                 Py_TYPE(v)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3863|      0|    Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3864|       |    return NULL;
 3865|      0|}
PyUnicode_DecodeLocale:
 3952|     20|{
 3953|     20|    Py_ssize_t size = (Py_ssize_t)strlen(str);
 3954|     20|    _Py_error_handler error_handler = _Py_GetErrorHandler(errors);
 3955|     20|    return unicode_decode_locale(str, size, error_handler, 1);
 3956|     20|}
PyUnicode_DecodeFSDefaultAndSize:
 3967|    554|{
 3968|    554|    PyInterpreterState *interp = _PyInterpreterState_GET();
 3969|    554|    struct _Py_unicode_fs_codec *fs_codec = &interp->unicode.fs_codec;
 3970|    554|    if (fs_codec->utf8) {
  ------------------
  |  Branch (3970:9): [True: 552, False: 2]
  ------------------
 3971|    552|        return unicode_decode_utf8(s, size,
 3972|    552|                                   fs_codec->error_handler,
 3973|    552|                                   fs_codec->errors,
 3974|    552|                                   NULL);
 3975|    552|    }
 3976|      2|#ifndef _Py_FORCE_UTF8_FS_ENCODING
 3977|      2|    else if (fs_codec->encoding) {
  ------------------
  |  Branch (3977:14): [True: 0, False: 2]
  ------------------
 3978|      0|        return PyUnicode_Decode(s, size,
 3979|      0|                                fs_codec->encoding,
 3980|      0|                                fs_codec->errors);
 3981|      0|    }
 3982|      2|#endif
 3983|      2|    else {
 3984|       |        /* Before _PyUnicode_InitEncodings() is called, the Python codec
 3985|       |           machinery is not ready and so cannot be used:
 3986|       |           use mbstowcs() in this case. */
 3987|      2|        const PyConfig *config = _PyInterpreterState_GetConfig(interp);
 3988|      2|        const wchar_t *filesystem_errors = config->filesystem_errors;
 3989|      2|        assert(filesystem_errors != NULL);
  ------------------
  |  Branch (3989:9): [True: 2, False: 0]
  ------------------
 3990|      2|        _Py_error_handler errors = get_error_handler_wide(filesystem_errors);
 3991|      2|        assert(errors != _Py_ERROR_UNKNOWN);
  ------------------
  |  Branch (3991:9): [True: 2, False: 0]
  ------------------
 3992|       |#ifdef _Py_FORCE_UTF8_FS_ENCODING
 3993|       |        return unicode_decode_utf8(s, size, errors, NULL, NULL);
 3994|       |#else
 3995|      2|        return unicode_decode_locale(s, size, errors, 0);
 3996|      2|#endif
 3997|      2|    }
 3998|    554|}
PyUnicode_AsUTF8AndSize:
 4105|    544|{
 4106|    544|    if (!PyUnicode_Check(unicode)) {
  ------------------
  |  |  103|    544|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    544|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4106:9): [True: 0, False: 544]
  ------------------
 4107|      0|        PyErr_BadArgument();
 4108|      0|        if (psize) {
  ------------------
  |  Branch (4108:13): [True: 0, False: 0]
  ------------------
 4109|      0|            *psize = -1;
 4110|      0|        }
 4111|      0|        return NULL;
 4112|      0|    }
 4113|       |
 4114|    544|    if (unicode_ensure_utf8(unicode) == -1) {
  ------------------
  |  Branch (4114:9): [True: 0, False: 544]
  ------------------
 4115|      0|        if (psize) {
  ------------------
  |  Branch (4115:13): [True: 0, False: 0]
  ------------------
 4116|      0|            *psize = -1;
 4117|      0|        }
 4118|      0|        return NULL;
 4119|      0|    }
 4120|       |
 4121|    544|    if (psize) {
  ------------------
  |  Branch (4121:9): [True: 350, False: 194]
  ------------------
 4122|    350|        *psize = PyUnicode_UTF8_LENGTH(unicode);
 4123|    350|    }
 4124|    544|    return PyUnicode_UTF8(unicode);
 4125|    544|}
PyUnicode_AsUTF8:
 4129|    194|{
 4130|       |    return PyUnicode_AsUTF8AndSize(unicode, NULL);
 4131|    194|}
_PyUnicode_AsUTF8NoNUL:
 4135|     70|{
 4136|     70|    Py_ssize_t size;
 4137|     70|    const char *s = PyUnicode_AsUTF8AndSize(unicode, &size);
 4138|     70|    if (s && strlen(s) != (size_t)size) {
  ------------------
  |  Branch (4138:9): [True: 70, False: 0]
  |  Branch (4138:14): [True: 0, False: 70]
  ------------------
 4139|      0|        PyErr_SetString(PyExc_ValueError, "embedded null character");
 4140|      0|        return NULL;
 4141|      0|    }
 4142|     70|    return s;
 4143|     70|}
PyUnicode_GetLength:
 4163|     46|{
 4164|     46|    if (!PyUnicode_Check(unicode)) {
  ------------------
  |  |  103|     46|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     46|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4164:9): [True: 0, False: 46]
  ------------------
 4165|      0|        PyErr_BadArgument();
 4166|      0|        return -1;
 4167|      0|    }
 4168|     46|    return PyUnicode_GET_LENGTH(unicode);
  ------------------
  |  |  299|     46|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4169|     46|}
PyUnicode_DecodeUTF8:
 4864|      2|{
 4865|       |    return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
 4866|      2|}
_PyUnicode_DecodeUTF8Writer:
 5348|  1.81k|{
 5349|  1.81k|    if (size == 0) {
  ------------------
  |  Branch (5349:9): [True: 16, False: 1.80k]
  ------------------
 5350|     16|        if (consumed) {
  ------------------
  |  Branch (5350:13): [True: 0, False: 16]
  ------------------
 5351|      0|            *consumed = 0;
 5352|      0|        }
 5353|     16|        return 0;
 5354|     16|    }
 5355|       |
 5356|       |    // fast path: try ASCII string.
 5357|  1.80k|    if (_PyUnicodeWriter_Prepare(writer, size, 127) < 0) {
  ------------------
  |  |  562|  1.80k|    (((MAXCHAR) <= (WRITER)->maxchar                                  \
  |  |  ------------------
  |  |  |  Branch (562:7): [True: 1.80k, False: 0]
  |  |  ------------------
  |  |  563|  1.80k|      && (LENGTH) <= (WRITER)->size - (WRITER)->pos)                  \
  |  |  ------------------
  |  |  |  Branch (563:10): [True: 1.66k, False: 134]
  |  |  ------------------
  |  |  564|  1.80k|     ? 0                                                              \
  |  |  565|  1.80k|     : (((LENGTH) == 0)                                               \
  |  |  ------------------
  |  |  |  Branch (565:9): [True: 0, False: 134]
  |  |  ------------------
  |  |  566|    134|        ? 0                                                           \
  |  |  567|    134|        : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  ------------------
  |  Branch (5357:9): [True: 0, False: 1.80k]
  ------------------
 5358|      0|        return -1;
 5359|      0|    }
 5360|       |
 5361|  1.80k|    const char *starts = s;
 5362|  1.80k|    const char *end = s + size;
 5363|  1.80k|    Py_ssize_t decoded = 0;
 5364|  1.80k|    Py_UCS1 *dest = (Py_UCS1*)writer->data + writer->pos * writer->kind;
 5365|  1.80k|    if (writer->kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (5365:9): [True: 1.80k, False: 0]
  ------------------
 5366|  1.80k|        decoded = ascii_decode(s, end, dest);
 5367|  1.80k|        writer->pos += decoded;
 5368|       |
 5369|  1.80k|        if (decoded == size) {
  ------------------
  |  Branch (5369:13): [True: 200, False: 1.60k]
  ------------------
 5370|    200|            if (consumed) {
  ------------------
  |  Branch (5370:17): [True: 1, False: 199]
  ------------------
 5371|      1|                *consumed = size;
 5372|      1|            }
 5373|    200|            return 0;
 5374|    200|        }
 5375|  1.60k|        s += decoded;
 5376|  1.60k|    }
 5377|       |
 5378|  1.60k|    return unicode_decode_utf8_impl(writer, starts, s, end,
 5379|  1.60k|                                    error_handler, errors, consumed);
 5380|  1.80k|}
PyUnicode_DecodeUTF8Stateful:
 5388|  9.76k|{
 5389|  9.76k|    return unicode_decode_utf8(s, size,
 5390|  9.76k|                               errors ? _Py_ERROR_UNKNOWN : _Py_ERROR_STRICT,
  ------------------
  |  Branch (5390:32): [True: 6, False: 9.75k]
  ------------------
 5391|  9.76k|                               errors, consumed);
 5392|  9.76k|}
_Py_DecodeUTF8Ex:
 5410|     14|{
 5411|     14|    const char *orig_s = s;
 5412|     14|    const char *e;
 5413|     14|    wchar_t *unicode;
 5414|     14|    Py_ssize_t outpos;
 5415|       |
 5416|     14|    int surrogateescape = 0;
 5417|     14|    int surrogatepass = 0;
 5418|     14|    switch (errors)
 5419|     14|    {
 5420|      0|    case _Py_ERROR_STRICT:
  ------------------
  |  Branch (5420:5): [True: 0, False: 14]
  ------------------
 5421|      0|        break;
 5422|     14|    case _Py_ERROR_SURROGATEESCAPE:
  ------------------
  |  Branch (5422:5): [True: 14, False: 0]
  ------------------
 5423|     14|        surrogateescape = 1;
 5424|     14|        break;
 5425|      0|    case _Py_ERROR_SURROGATEPASS:
  ------------------
  |  Branch (5425:5): [True: 0, False: 14]
  ------------------
 5426|      0|        surrogatepass = 1;
 5427|      0|        break;
 5428|      0|    default:
  ------------------
  |  Branch (5428:5): [True: 0, False: 14]
  ------------------
 5429|      0|        return -3;
 5430|     14|    }
 5431|       |
 5432|       |    /* Note: size will always be longer than the resulting Unicode
 5433|       |       character count */
 5434|     14|    if (PY_SSIZE_T_MAX / (Py_ssize_t)sizeof(wchar_t) - 1 < size) {
  ------------------
  |  |  137|     14|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (5434:9): [True: 0, False: 14]
  ------------------
 5435|      0|        return -1;
 5436|      0|    }
 5437|       |
 5438|     14|    unicode = PyMem_RawMalloc((size + 1) * sizeof(wchar_t));
 5439|     14|    if (!unicode) {
  ------------------
  |  Branch (5439:9): [True: 0, False: 14]
  ------------------
 5440|      0|        return -1;
 5441|      0|    }
 5442|       |
 5443|       |    /* Unpack UTF-8 encoded data */
 5444|     14|    e = s + size;
 5445|     14|    outpos = 0;
 5446|     14|    while (s < e) {
  ------------------
  |  Branch (5446:12): [True: 14, False: 0]
  ------------------
 5447|     14|        Py_UCS4 ch;
 5448|     14|#if SIZEOF_WCHAR_T == 4
 5449|     14|        ch = ucs4lib_utf8_decode(&s, e, (Py_UCS4 *)unicode, &outpos);
 5450|       |#else
 5451|       |        ch = ucs2lib_utf8_decode(&s, e, (Py_UCS2 *)unicode, &outpos);
 5452|       |#endif
 5453|     14|        if (ch > 0xFF) {
  ------------------
  |  Branch (5453:13): [True: 0, False: 14]
  ------------------
 5454|      0|#if SIZEOF_WCHAR_T == 4
 5455|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 5456|       |#else
 5457|       |            assert(ch > 0xFFFF && ch <= MAX_UNICODE);
 5458|       |            /* write a surrogate pair */
 5459|       |            unicode[outpos++] = (wchar_t)Py_UNICODE_HIGH_SURROGATE(ch);
 5460|       |            unicode[outpos++] = (wchar_t)Py_UNICODE_LOW_SURROGATE(ch);
 5461|       |#endif
 5462|      0|        }
 5463|     14|        else {
 5464|     14|            if (!ch && s == e) {
  ------------------
  |  Branch (5464:17): [True: 14, False: 0]
  |  Branch (5464:24): [True: 14, False: 0]
  ------------------
 5465|     14|                break;
 5466|     14|            }
 5467|       |
 5468|      0|            if (surrogateescape) {
  ------------------
  |  Branch (5468:17): [True: 0, False: 0]
  ------------------
 5469|      0|                unicode[outpos++] = 0xDC00 + (unsigned char)*s++;
 5470|      0|            }
 5471|      0|            else {
 5472|       |                /* Is it a valid three-byte code? */
 5473|      0|                if (surrogatepass
  ------------------
  |  Branch (5473:21): [True: 0, False: 0]
  ------------------
 5474|      0|                    && (e - s) >= 3
  ------------------
  |  Branch (5474:24): [True: 0, False: 0]
  ------------------
 5475|      0|                    && (s[0] & 0xf0) == 0xe0
  ------------------
  |  Branch (5475:24): [True: 0, False: 0]
  ------------------
 5476|      0|                    && (s[1] & 0xc0) == 0x80
  ------------------
  |  Branch (5476:24): [True: 0, False: 0]
  ------------------
 5477|      0|                    && (s[2] & 0xc0) == 0x80)
  ------------------
  |  Branch (5477:24): [True: 0, False: 0]
  ------------------
 5478|      0|                {
 5479|      0|                    ch = ((s[0] & 0x0f) << 12) + ((s[1] & 0x3f) << 6) + (s[2] & 0x3f);
 5480|      0|                    s += 3;
 5481|      0|                    unicode[outpos++] = ch;
 5482|      0|                }
 5483|      0|                else {
 5484|      0|                    PyMem_RawFree(unicode );
 5485|      0|                    if (reason != NULL) {
  ------------------
  |  Branch (5485:25): [True: 0, False: 0]
  ------------------
 5486|      0|                        switch (ch) {
 5487|      0|                        case 0:
  ------------------
  |  Branch (5487:25): [True: 0, False: 0]
  ------------------
 5488|      0|                            *reason = "unexpected end of data";
 5489|      0|                            break;
 5490|      0|                        case 1:
  ------------------
  |  Branch (5490:25): [True: 0, False: 0]
  ------------------
 5491|      0|                            *reason = "invalid start byte";
 5492|      0|                            break;
 5493|       |                        /* 2, 3, 4 */
 5494|      0|                        default:
  ------------------
  |  Branch (5494:25): [True: 0, False: 0]
  ------------------
 5495|      0|                            *reason = "invalid continuation byte";
 5496|      0|                            break;
 5497|      0|                        }
 5498|      0|                    }
 5499|      0|                    if (wlen != NULL) {
  ------------------
  |  Branch (5499:25): [True: 0, False: 0]
  ------------------
 5500|      0|                        *wlen = s - orig_s;
 5501|      0|                    }
 5502|      0|                    return -2;
 5503|      0|                }
 5504|      0|            }
 5505|      0|        }
 5506|     14|    }
 5507|     14|    unicode[outpos] = L'\0';
 5508|     14|    if (wlen) {
  ------------------
  |  Branch (5508:9): [True: 14, False: 0]
  ------------------
 5509|     14|        *wlen = outpos;
 5510|     14|    }
 5511|     14|    *wstr = unicode;
 5512|     14|    return 0;
 5513|     14|}
_Py_EncodeUTF8Ex:
 5549|     40|{
 5550|     40|    const Py_ssize_t max_char_size = 4;
 5551|     40|    Py_ssize_t len = wcslen(text);
 5552|       |
 5553|     40|    assert(len >= 0);
  ------------------
  |  Branch (5553:5): [True: 40, False: 0]
  ------------------
 5554|       |
 5555|     40|    int surrogateescape = 0;
 5556|     40|    int surrogatepass = 0;
 5557|     40|    switch (errors)
 5558|     40|    {
 5559|      8|    case _Py_ERROR_STRICT:
  ------------------
  |  Branch (5559:5): [True: 8, False: 32]
  ------------------
 5560|      8|        break;
 5561|     32|    case _Py_ERROR_SURROGATEESCAPE:
  ------------------
  |  Branch (5561:5): [True: 32, False: 8]
  ------------------
 5562|     32|        surrogateescape = 1;
 5563|     32|        break;
 5564|      0|    case _Py_ERROR_SURROGATEPASS:
  ------------------
  |  Branch (5564:5): [True: 0, False: 40]
  ------------------
 5565|      0|        surrogatepass = 1;
 5566|      0|        break;
 5567|      0|    default:
  ------------------
  |  Branch (5567:5): [True: 0, False: 40]
  ------------------
 5568|      0|        return -3;
 5569|     40|    }
 5570|       |
 5571|     40|    if (len > PY_SSIZE_T_MAX / max_char_size - 1) {
  ------------------
  |  |  137|     40|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (5571:9): [True: 0, False: 40]
  ------------------
 5572|      0|        return -1;
 5573|      0|    }
 5574|     40|    char *bytes;
 5575|     40|    if (raw_malloc) {
  ------------------
  |  Branch (5575:9): [True: 40, False: 0]
  ------------------
 5576|     40|        bytes = PyMem_RawMalloc((len + 1) * max_char_size);
 5577|     40|    }
 5578|      0|    else {
 5579|      0|        bytes = PyMem_Malloc((len + 1) * max_char_size);
 5580|      0|    }
 5581|     40|    if (bytes == NULL) {
  ------------------
  |  Branch (5581:9): [True: 0, False: 40]
  ------------------
 5582|      0|        return -1;
 5583|      0|    }
 5584|       |
 5585|     40|    char *p = bytes;
 5586|     40|    Py_ssize_t i;
 5587|  1.84k|    for (i = 0; i < len; ) {
  ------------------
  |  Branch (5587:17): [True: 1.80k, False: 40]
  ------------------
 5588|  1.80k|        Py_ssize_t ch_pos = i;
 5589|  1.80k|        Py_UCS4 ch = text[i];
 5590|  1.80k|        i++;
 5591|  1.80k|        if (sizeof(wchar_t) == 2
  ------------------
  |  Branch (5591:13): [Folded, False: 1.80k]
  ------------------
 5592|      0|            && Py_UNICODE_IS_HIGH_SURROGATE(ch)
  ------------------
  |  Branch (5592:16): [True: 0, False: 0]
  ------------------
 5593|      0|            && i < len
  ------------------
  |  Branch (5593:16): [True: 0, False: 0]
  ------------------
 5594|      0|            && Py_UNICODE_IS_LOW_SURROGATE(text[i]))
  ------------------
  |  Branch (5594:16): [True: 0, False: 0]
  ------------------
 5595|      0|        {
 5596|      0|            ch = Py_UNICODE_JOIN_SURROGATES(ch, text[i]);
 5597|      0|            i++;
 5598|      0|        }
 5599|       |
 5600|  1.80k|        if (ch < 0x80) {
  ------------------
  |  Branch (5600:13): [True: 1.80k, False: 0]
  ------------------
 5601|       |            /* Encode ASCII */
 5602|  1.80k|            *p++ = (char) ch;
 5603|       |
 5604|  1.80k|        }
 5605|      0|        else if (ch < 0x0800) {
  ------------------
  |  Branch (5605:18): [True: 0, False: 0]
  ------------------
 5606|       |            /* Encode Latin-1 */
 5607|      0|            *p++ = (char)(0xc0 | (ch >> 6));
 5608|      0|            *p++ = (char)(0x80 | (ch & 0x3f));
 5609|      0|        }
 5610|      0|        else if (Py_UNICODE_IS_SURROGATE(ch) && !surrogatepass) {
  ------------------
  |  Branch (5610:18): [True: 0, False: 0]
  |  Branch (5610:49): [True: 0, False: 0]
  ------------------
 5611|       |            /* surrogateescape error handler */
 5612|      0|            if (!surrogateescape || !(0xDC80 <= ch && ch <= 0xDCFF)) {
  ------------------
  |  Branch (5612:17): [True: 0, False: 0]
  |  Branch (5612:39): [True: 0, False: 0]
  |  Branch (5612:55): [True: 0, False: 0]
  ------------------
 5613|      0|                if (error_pos != NULL) {
  ------------------
  |  Branch (5613:21): [True: 0, False: 0]
  ------------------
 5614|      0|                    *error_pos = (size_t)ch_pos;
 5615|      0|                }
 5616|      0|                if (reason != NULL) {
  ------------------
  |  Branch (5616:21): [True: 0, False: 0]
  ------------------
 5617|      0|                    *reason = "encoding error";
 5618|      0|                }
 5619|      0|                if (raw_malloc) {
  ------------------
  |  Branch (5619:21): [True: 0, False: 0]
  ------------------
 5620|      0|                    PyMem_RawFree(bytes);
 5621|      0|                }
 5622|      0|                else {
 5623|      0|                    PyMem_Free(bytes);
 5624|      0|                }
 5625|      0|                return -2;
 5626|      0|            }
 5627|      0|            *p++ = (char)(ch & 0xff);
 5628|      0|        }
 5629|      0|        else if (ch < 0x10000) {
  ------------------
  |  Branch (5629:18): [True: 0, False: 0]
  ------------------
 5630|      0|            *p++ = (char)(0xe0 | (ch >> 12));
 5631|      0|            *p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
 5632|      0|            *p++ = (char)(0x80 | (ch & 0x3f));
 5633|      0|        }
 5634|      0|        else {  /* ch >= 0x10000 */
 5635|      0|            assert(ch <= MAX_UNICODE);
  ------------------
  |  Branch (5635:13): [True: 0, False: 0]
  ------------------
 5636|       |            /* Encode UCS4 Unicode ordinals */
 5637|      0|            *p++ = (char)(0xf0 | (ch >> 18));
 5638|      0|            *p++ = (char)(0x80 | ((ch >> 12) & 0x3f));
 5639|      0|            *p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
 5640|      0|            *p++ = (char)(0x80 | (ch & 0x3f));
 5641|      0|        }
 5642|  1.80k|    }
 5643|     40|    *p++ = '\0';
 5644|       |
 5645|     40|    size_t final_size = (p - bytes);
 5646|     40|    char *bytes2;
 5647|     40|    if (raw_malloc) {
  ------------------
  |  Branch (5647:9): [True: 40, False: 0]
  ------------------
 5648|     40|        bytes2 = PyMem_RawRealloc(bytes, final_size);
 5649|     40|    }
 5650|      0|    else {
 5651|      0|        bytes2 = PyMem_Realloc(bytes, final_size);
 5652|      0|    }
 5653|     40|    if (bytes2 == NULL) {
  ------------------
  |  Branch (5653:9): [True: 0, False: 40]
  ------------------
 5654|      0|        if (error_pos != NULL) {
  ------------------
  |  Branch (5654:13): [True: 0, False: 0]
  ------------------
 5655|      0|            *error_pos = (size_t)-1;
 5656|      0|        }
 5657|      0|        if (raw_malloc) {
  ------------------
  |  Branch (5657:13): [True: 0, False: 0]
  ------------------
 5658|      0|            PyMem_RawFree(bytes);
 5659|      0|        }
 5660|      0|        else {
 5661|      0|            PyMem_Free(bytes);
 5662|      0|        }
 5663|      0|        return -1;
 5664|      0|    }
 5665|     40|    *str = bytes2;
 5666|     40|    return 0;
 5667|     40|}
_PyUnicode_AsUTF8String:
 5776|      6|{
 5777|      6|    return unicode_encode_utf8(unicode, _Py_ERROR_UNKNOWN, errors);
 5778|      6|}
PyUnicode_DecodeASCII:
 7395|     64|{
 7396|     64|    const char *starts = s;
 7397|     64|    const char *e = s + size;
 7398|     64|    PyObject *error_handler_obj = NULL;
 7399|     64|    PyObject *exc = NULL;
 7400|     64|    _Py_error_handler error_handler = _Py_ERROR_UNKNOWN;
 7401|       |
 7402|     64|    if (size == 0)
  ------------------
  |  Branch (7402:9): [True: 0, False: 64]
  ------------------
 7403|      0|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      0|    do {                             \
  |  |  376|      0|        return _PyUnicode_GetEmpty();\
  |  |  377|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 7404|       |
 7405|       |    /* ASCII is equivalent to the first 128 ordinals in Unicode. */
 7406|     64|    if (size == 1 && (unsigned char)s[0] < 128) {
  ------------------
  |  Branch (7406:9): [True: 0, False: 64]
  |  Branch (7406:22): [True: 0, False: 0]
  ------------------
 7407|      0|        return get_latin1_char((unsigned char)s[0]);
 7408|      0|    }
 7409|       |
 7410|       |    // Shortcut for simple case
 7411|     64|    PyObject *u = PyUnicode_New(size, 127);
 7412|     64|    if (u == NULL) {
  ------------------
  |  Branch (7412:9): [True: 0, False: 64]
  ------------------
 7413|      0|        return NULL;
 7414|      0|    }
 7415|     64|    Py_ssize_t outpos = ascii_decode(s, e, PyUnicode_1BYTE_DATA(u));
  ------------------
  |  |  291|     64|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|     64|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 7416|     64|    if (outpos == size) {
  ------------------
  |  Branch (7416:9): [True: 64, False: 0]
  ------------------
 7417|     64|        return u;
 7418|     64|    }
 7419|       |
 7420|      0|    _PyUnicodeWriter writer;
 7421|      0|    _PyUnicodeWriter_InitWithBuffer(&writer, u);
 7422|      0|    writer.pos = outpos;
 7423|       |
 7424|      0|    s += outpos;
 7425|      0|    int kind = writer.kind;
 7426|      0|    void *data = writer.data;
 7427|      0|    Py_ssize_t startinpos, endinpos;
 7428|       |
 7429|      0|    while (s < e) {
  ------------------
  |  Branch (7429:12): [True: 0, False: 0]
  ------------------
 7430|      0|        unsigned char c = (unsigned char)*s;
 7431|      0|        if (c < 128) {
  ------------------
  |  Branch (7431:13): [True: 0, False: 0]
  ------------------
 7432|      0|            PyUnicode_WRITE(kind, data, writer.pos, c);
  ------------------
  |  |  335|      0|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|      0|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 7433|      0|            writer.pos++;
 7434|      0|            ++s;
 7435|      0|            continue;
 7436|      0|        }
 7437|       |
 7438|       |        /* byte outsize range 0x00..0x7f: call the error handler */
 7439|       |
 7440|      0|        if (error_handler == _Py_ERROR_UNKNOWN)
  ------------------
  |  Branch (7440:13): [True: 0, False: 0]
  ------------------
 7441|      0|            error_handler = _Py_GetErrorHandler(errors);
 7442|       |
 7443|      0|        switch (error_handler)
 7444|      0|        {
 7445|      0|        case _Py_ERROR_REPLACE:
  ------------------
  |  Branch (7445:9): [True: 0, False: 0]
  ------------------
 7446|      0|        case _Py_ERROR_SURROGATEESCAPE:
  ------------------
  |  Branch (7446:9): [True: 0, False: 0]
  ------------------
 7447|       |            /* Fast-path: the error handler only writes one character,
 7448|       |               but we may switch to UCS2 at the first write */
 7449|      0|            if (_PyUnicodeWriter_PrepareKind(&writer, PyUnicode_2BYTE_KIND) < 0)
  ------------------
  |  |  582|      0|    ((KIND) <= (WRITER)->kind                                         \
  |  |  ------------------
  |  |  |  Branch (582:6): [True: 0, False: 0]
  |  |  ------------------
  |  |  583|      0|     ? 0                                                              \
  |  |  584|      0|     : _PyUnicodeWriter_PrepareKindInternal((WRITER), (KIND)))
  ------------------
  |  Branch (7449:17): [True: 0, False: 0]
  ------------------
 7450|      0|                goto onError;
 7451|      0|            kind = writer.kind;
 7452|      0|            data = writer.data;
 7453|       |
 7454|      0|            if (error_handler == _Py_ERROR_REPLACE)
  ------------------
  |  Branch (7454:17): [True: 0, False: 0]
  ------------------
 7455|      0|                PyUnicode_WRITE(kind, data, writer.pos, 0xfffd);
  ------------------
  |  |  335|      0|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|      0|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 7456|      0|            else
 7457|      0|                PyUnicode_WRITE(kind, data, writer.pos, c + 0xdc00);
  ------------------
  |  |  335|      0|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|      0|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 7458|      0|            writer.pos++;
 7459|      0|            ++s;
 7460|      0|            break;
 7461|       |
 7462|      0|        case _Py_ERROR_IGNORE:
  ------------------
  |  Branch (7462:9): [True: 0, False: 0]
  ------------------
 7463|      0|            ++s;
 7464|      0|            break;
 7465|       |
 7466|      0|        default:
  ------------------
  |  Branch (7466:9): [True: 0, False: 0]
  ------------------
 7467|      0|            startinpos = s-starts;
 7468|      0|            endinpos = startinpos + 1;
 7469|      0|            if (unicode_decode_call_errorhandler_writer(
  ------------------
  |  Branch (7469:17): [True: 0, False: 0]
  ------------------
 7470|      0|                    errors, &error_handler_obj,
 7471|      0|                    "ascii", "ordinal not in range(128)",
 7472|      0|                    &starts, &e, &startinpos, &endinpos, &exc, &s,
 7473|      0|                    &writer))
 7474|      0|                goto onError;
 7475|      0|            kind = writer.kind;
 7476|      0|            data = writer.data;
 7477|      0|        }
 7478|      0|    }
 7479|      0|    Py_XDECREF(error_handler_obj);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7480|      0|    Py_XDECREF(exc);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7481|      0|    return _PyUnicodeWriter_Finish(&writer);
 7482|       |
 7483|      0|  onError:
 7484|      0|    _PyUnicodeWriter_Dealloc(&writer);
 7485|      0|    Py_XDECREF(error_handler_obj);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7486|      0|    Py_XDECREF(exc);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7487|       |    return NULL;
 7488|      0|}
_PyUnicode_AsASCIIString:
 7492|     24|{
 7493|     24|    if (!PyUnicode_Check(unicode)) {
  ------------------
  |  |  103|     24|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     24|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (7493:9): [True: 0, False: 24]
  ------------------
 7494|      0|        PyErr_BadArgument();
 7495|      0|        return NULL;
 7496|      0|    }
 7497|       |    /* Fast path: if it is an ASCII-only string, construct bytes object
 7498|       |       directly. Else defer to above function to raise the exception. */
 7499|     24|    if (PyUnicode_IS_ASCII(unicode))
  ------------------
  |  |  227|     24|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 24, False: 0]
  |  |  ------------------
  ------------------
 7500|     24|        return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode),
  ------------------
  |  |  284|     24|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7501|     24|                                         PyUnicode_GET_LENGTH(unicode));
  ------------------
  |  |  299|     24|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7502|      0|    return unicode_encode_ucs1(unicode, errors, 128);
 7503|     24|}
PyUnicode_FindChar:
 9634|    190|{
 9635|    190|    int kind;
 9636|    190|    Py_ssize_t len, result;
 9637|    190|    len = PyUnicode_GET_LENGTH(str);
  ------------------
  |  |  299|    190|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    190|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    190|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9638|    190|    ADJUST_INDICES(start, end, len);
  ------------------
  |  | 9503|    190|    do {                                \
  |  | 9504|    190|        if (end > len) {                \
  |  |  ------------------
  |  |  |  Branch (9504:13): [True: 0, False: 190]
  |  |  ------------------
  |  | 9505|      0|            end = len;                  \
  |  | 9506|      0|        }                               \
  |  | 9507|    190|        else if (end < 0) {             \
  |  |  ------------------
  |  |  |  Branch (9507:18): [True: 0, False: 190]
  |  |  ------------------
  |  | 9508|      0|            end += len;                 \
  |  | 9509|      0|            if (end < 0) {              \
  |  |  ------------------
  |  |  |  Branch (9509:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9510|      0|                end = 0;                \
  |  | 9511|      0|            }                           \
  |  | 9512|      0|        }                               \
  |  | 9513|    190|        if (start < 0) {                \
  |  |  ------------------
  |  |  |  Branch (9513:13): [True: 0, False: 190]
  |  |  ------------------
  |  | 9514|      0|            start += len;               \
  |  | 9515|      0|            if (start < 0) {            \
  |  |  ------------------
  |  |  |  Branch (9515:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9516|      0|                start = 0;              \
  |  | 9517|      0|            }                           \
  |  | 9518|      0|        }                               \
  |  | 9519|    190|    } while (0)
  |  |  ------------------
  |  |  |  Branch (9519:14): [Folded, False: 190]
  |  |  ------------------
  ------------------
 9639|    190|    if (end - start < 1)
  ------------------
  |  Branch (9639:9): [True: 0, False: 190]
  ------------------
 9640|      0|        return -1;
 9641|    190|    kind = PyUnicode_KIND(str);
  ------------------
  |  |  258|    190|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    380|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 190, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9642|    190|    result = findchar(PyUnicode_1BYTE_DATA(str) + kind*start,
  ------------------
  |  |  291|    190|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|    190|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 9643|    190|                      kind, end-start, ch, direction);
 9644|    190|    if (result == -1)
  ------------------
  |  Branch (9644:9): [True: 172, False: 18]
  ------------------
 9645|    172|        return -1;
 9646|     18|    else
 9647|     18|        return start + result;
 9648|    190|}
PyUnicode_Join:
 9960|     82|{
 9961|     82|    PyObject *res;
 9962|     82|    PyObject *fseq;
 9963|     82|    Py_ssize_t seqlen;
 9964|     82|    PyObject **items;
 9965|       |
 9966|     82|    fseq = PySequence_Fast(seq, "can only join an iterable");
 9967|     82|    if (fseq == NULL) {
  ------------------
  |  Branch (9967:9): [True: 0, False: 82]
  ------------------
 9968|      0|        return NULL;
 9969|      0|    }
 9970|       |
 9971|     82|    Py_BEGIN_CRITICAL_SECTION_SEQUENCE_FAST(seq);
  ------------------
  |  |   77|     82|# define Py_BEGIN_CRITICAL_SECTION_SEQUENCE_FAST(original) {
  ------------------
 9972|       |
 9973|     82|    items = PySequence_Fast_ITEMS(fseq);
  ------------------
  |  |  102|     82|    (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
  |  |  ------------------
  |  |  |  |   25|     82|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|     82|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 82, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|     82|                      : ((PyTupleObject *)(sf))->ob_item)
  ------------------
 9974|     82|    seqlen = PySequence_Fast_GET_SIZE(fseq);
  ------------------
  |  |   92|     82|    (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   25|     82|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|     82|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 82, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   38|     82|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9975|     82|    res = _PyUnicode_JoinArray(separator, items, seqlen);
 9976|       |
 9977|     82|    Py_END_CRITICAL_SECTION_SEQUENCE_FAST();
  ------------------
  |  |   78|     82|# define Py_END_CRITICAL_SECTION_SEQUENCE_FAST() }
  ------------------
 9978|       |
 9979|     82|    Py_DECREF(fseq);
  ------------------
  |  |  430|     82|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     82|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     82|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9980|     82|    return res;
 9981|     82|}
_PyUnicode_JoinArray:
 9985|    144|{
 9986|    144|    PyObject *res = NULL; /* the result */
 9987|    144|    PyObject *sep = NULL;
 9988|    144|    Py_ssize_t seplen;
 9989|    144|    PyObject *item;
 9990|    144|    Py_ssize_t sz, i, res_offset;
 9991|    144|    Py_UCS4 maxchar;
 9992|    144|    Py_UCS4 item_maxchar;
 9993|    144|    int use_memcpy;
 9994|    144|    unsigned char *res_data = NULL, *sep_data = NULL;
 9995|    144|    PyObject *last_obj;
 9996|    144|    int kind = 0;
 9997|       |
 9998|       |    /* If empty sequence, return u"". */
 9999|    144|    if (seqlen == 0) {
  ------------------
  |  Branch (9999:9): [True: 0, False: 144]
  ------------------
10000|      0|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      0|    do {                             \
  |  |  376|      0|        return _PyUnicode_GetEmpty();\
  |  |  377|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
10001|      0|    }
10002|       |
10003|       |    /* If singleton sequence with an exact Unicode, return that. */
10004|    144|    last_obj = NULL;
10005|    144|    if (seqlen == 1) {
  ------------------
  |  Branch (10005:9): [True: 6, False: 138]
  ------------------
10006|      6|        if (PyUnicode_CheckExact(items[0])) {
  ------------------
  |  |  104|      6|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      6|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10007|      6|            res = items[0];
10008|      6|            return Py_NewRef(res);
  ------------------
  |  |  550|      6|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10009|      6|        }
10010|      0|        seplen = 0;
10011|      0|        maxchar = 0;
10012|      0|    }
10013|    138|    else {
10014|       |        /* Set up sep and seplen */
10015|    138|        if (separator == NULL) {
  ------------------
  |  Branch (10015:13): [True: 0, False: 138]
  ------------------
10016|       |            /* fall back to a blank space separator */
10017|      0|            sep = PyUnicode_FromOrdinal(' ');
10018|      0|            if (!sep)
  ------------------
  |  Branch (10018:17): [True: 0, False: 0]
  ------------------
10019|      0|                goto onError;
10020|      0|            seplen = 1;
10021|      0|            maxchar = 32;
10022|      0|        }
10023|    138|        else {
10024|    138|            if (!PyUnicode_Check(separator)) {
  ------------------
  |  |  103|    138|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    138|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (10024:17): [True: 0, False: 138]
  ------------------
10025|      0|                PyErr_Format(PyExc_TypeError,
10026|      0|                             "separator: expected str instance,"
10027|      0|                             " %.80s found",
10028|      0|                             Py_TYPE(separator)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10029|      0|                goto onError;
10030|      0|            }
10031|    138|            sep = separator;
10032|    138|            seplen = PyUnicode_GET_LENGTH(separator);
  ------------------
  |  |  299|    138|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10033|    138|            maxchar = PyUnicode_MAX_CHAR_VALUE(separator);
  ------------------
  |  |  405|    138|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10034|       |            /* inc refcount to keep this code path symmetric with the
10035|       |               above case of a blank separator */
10036|    138|            Py_INCREF(sep);
  ------------------
  |  |  310|    138|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10037|    138|        }
10038|    138|        last_obj = sep;
10039|    138|    }
10040|       |
10041|       |    /* There are at least two things to join, or else we have a subclass
10042|       |     * of str in the sequence.
10043|       |     * Do a pre-pass to figure out the total amount of space we'll
10044|       |     * need (sz), and see whether all argument are strings.
10045|       |     */
10046|    138|    sz = 0;
10047|       |#ifdef Py_DEBUG
10048|       |    use_memcpy = 0;
10049|       |#else
10050|    138|    use_memcpy = 1;
10051|    138|#endif
10052|    518|    for (i = 0; i < seqlen; i++) {
  ------------------
  |  Branch (10052:17): [True: 380, False: 138]
  ------------------
10053|    380|        size_t add_sz;
10054|    380|        item = items[i];
10055|    380|        if (!PyUnicode_Check(item)) {
  ------------------
  |  |  103|    380|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    380|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (10055:13): [True: 0, False: 380]
  ------------------
10056|      0|            PyErr_Format(PyExc_TypeError,
10057|      0|                         "sequence item %zd: expected str instance,"
10058|      0|                         " %.80s found",
10059|      0|                         i, Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10060|      0|            goto onError;
10061|      0|        }
10062|    380|        add_sz = PyUnicode_GET_LENGTH(item);
  ------------------
  |  |  299|    380|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    380|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    380|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10063|    380|        item_maxchar = PyUnicode_MAX_CHAR_VALUE(item);
  ------------------
  |  |  405|    380|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    380|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    380|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10064|    380|        maxchar = Py_MAX(maxchar, item_maxchar);
  ------------------
  |  |  115|    380|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 380]
  |  |  ------------------
  ------------------
10065|    380|        if (i != 0) {
  ------------------
  |  Branch (10065:13): [True: 242, False: 138]
  ------------------
10066|    242|            add_sz += seplen;
10067|    242|        }
10068|    380|        if (add_sz > (size_t)(PY_SSIZE_T_MAX - sz)) {
  ------------------
  |  |  137|    380|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (10068:13): [True: 0, False: 380]
  ------------------
10069|      0|            PyErr_SetString(PyExc_OverflowError,
10070|      0|                            "join() result is too long for a Python string");
10071|      0|            goto onError;
10072|      0|        }
10073|    380|        sz += add_sz;
10074|    380|        if (use_memcpy && last_obj != NULL) {
  ------------------
  |  Branch (10074:13): [True: 380, False: 0]
  |  Branch (10074:27): [True: 380, False: 0]
  ------------------
10075|    760|            if (PyUnicode_KIND(last_obj) != PyUnicode_KIND(item))
  ------------------
  |  |  258|    380|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    760|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 380, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          if (PyUnicode_KIND(last_obj) != PyUnicode_KIND(item))
  ------------------
  |  |  258|    380|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    760|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 380, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (10075:17): [True: 0, False: 380]
  ------------------
10076|      0|                use_memcpy = 0;
10077|    380|        }
10078|      0|        last_obj = item;
10079|    380|    }
10080|       |
10081|    138|    res = PyUnicode_New(sz, maxchar);
10082|    138|    if (res == NULL)
  ------------------
  |  Branch (10082:9): [True: 0, False: 138]
  ------------------
10083|      0|        goto onError;
10084|       |
10085|       |    /* Catenate everything. */
10086|       |#ifdef Py_DEBUG
10087|       |    use_memcpy = 0;
10088|       |#else
10089|    138|    if (use_memcpy) {
  ------------------
  |  Branch (10089:9): [True: 138, False: 0]
  ------------------
10090|    138|        res_data = PyUnicode_1BYTE_DATA(res);
  ------------------
  |  |  291|    138|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|    138|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
10091|    138|        kind = PyUnicode_KIND(res);
  ------------------
  |  |  258|    138|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    276|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 138, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10092|    138|        if (seplen != 0)
  ------------------
  |  Branch (10092:13): [True: 76, False: 62]
  ------------------
10093|     76|            sep_data = PyUnicode_1BYTE_DATA(sep);
  ------------------
  |  |  291|     76|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|     76|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
10094|    138|    }
10095|    138|#endif
10096|    138|    if (use_memcpy) {
  ------------------
  |  Branch (10096:9): [True: 138, False: 0]
  ------------------
10097|    518|        for (i = 0; i < seqlen; ++i) {
  ------------------
  |  Branch (10097:21): [True: 380, False: 138]
  ------------------
10098|    380|            Py_ssize_t itemlen;
10099|    380|            item = items[i];
10100|       |
10101|       |            /* Copy item, and maybe the separator. */
10102|    380|            if (i && seplen != 0) {
  ------------------
  |  Branch (10102:17): [True: 242, False: 138]
  |  Branch (10102:22): [True: 76, False: 166]
  ------------------
10103|     76|                memcpy(res_data,
10104|     76|                          sep_data,
10105|     76|                          kind * seplen);
10106|     76|                res_data += kind * seplen;
10107|     76|            }
10108|       |
10109|    380|            itemlen = PyUnicode_GET_LENGTH(item);
  ------------------
  |  |  299|    380|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    380|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    380|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10110|    380|            if (itemlen != 0) {
  ------------------
  |  Branch (10110:17): [True: 370, False: 10]
  ------------------
10111|    370|                memcpy(res_data,
10112|    370|                          PyUnicode_DATA(item),
  ------------------
  |  |  284|    370|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    370|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    370|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10113|    370|                          kind * itemlen);
10114|    370|                res_data += kind * itemlen;
10115|    370|            }
10116|    380|        }
10117|    138|        assert(res_data == PyUnicode_1BYTE_DATA(res)
  ------------------
  |  Branch (10117:9): [True: 138, False: 0]
  ------------------
10118|    138|                           + kind * PyUnicode_GET_LENGTH(res));
10119|    138|    }
10120|      0|    else {
10121|      0|        for (i = 0, res_offset = 0; i < seqlen; ++i) {
  ------------------
  |  Branch (10121:37): [True: 0, False: 0]
  ------------------
10122|      0|            Py_ssize_t itemlen;
10123|      0|            item = items[i];
10124|       |
10125|       |            /* Copy item, and maybe the separator. */
10126|      0|            if (i && seplen != 0) {
  ------------------
  |  Branch (10126:17): [True: 0, False: 0]
  |  Branch (10126:22): [True: 0, False: 0]
  ------------------
10127|      0|                _PyUnicode_FastCopyCharacters(res, res_offset, sep, 0, seplen);
10128|      0|                res_offset += seplen;
10129|      0|            }
10130|       |
10131|      0|            itemlen = PyUnicode_GET_LENGTH(item);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10132|      0|            if (itemlen != 0) {
  ------------------
  |  Branch (10132:17): [True: 0, False: 0]
  ------------------
10133|      0|                _PyUnicode_FastCopyCharacters(res, res_offset, item, 0, itemlen);
10134|      0|                res_offset += itemlen;
10135|      0|            }
10136|      0|        }
10137|      0|        assert(res_offset == PyUnicode_GET_LENGTH(res));
  ------------------
  |  Branch (10137:9): [True: 0, False: 0]
  ------------------
10138|      0|    }
10139|       |
10140|    138|    Py_XDECREF(sep);
  ------------------
  |  |  524|    138|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10141|    138|    assert(_PyUnicode_CheckConsistency(res, 1));
  ------------------
  |  Branch (10141:5): [True: 138, False: 0]
  ------------------
10142|    138|    return res;
10143|       |
10144|      0|  onError:
10145|      0|    Py_XDECREF(sep);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10146|      0|    Py_XDECREF(res);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10147|       |    return NULL;
10148|    138|}
_PyUnicode_Equal:
11018|    844|{
11019|    844|    assert(PyUnicode_Check(str1));
  ------------------
  |  Branch (11019:5): [True: 844, False: 0]
  ------------------
11020|    844|    assert(PyUnicode_Check(str2));
  ------------------
  |  Branch (11020:5): [True: 844, False: 0]
  ------------------
11021|    844|    if (str1 == str2) {
  ------------------
  |  Branch (11021:9): [True: 40, False: 804]
  ------------------
11022|     40|        return 1;
11023|     40|    }
11024|    804|    return unicode_eq(str1, str2);
11025|    844|}
PyUnicode_CompareWithASCIIString:
11065|    466|{
11066|    466|    Py_ssize_t i;
11067|    466|    int kind;
11068|    466|    Py_UCS4 chr;
11069|       |
11070|    466|    assert(_PyUnicode_CHECK(uni));
  ------------------
  |  Branch (11070:5): [True: 466, False: 0]
  ------------------
11071|    466|    kind = PyUnicode_KIND(uni);
  ------------------
  |  |  258|    466|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    932|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 466, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11072|    466|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (11072:9): [True: 466, False: 0]
  ------------------
11073|    466|        const void *data = PyUnicode_1BYTE_DATA(uni);
  ------------------
  |  |  291|    466|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|    466|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
11074|    466|        size_t len1 = (size_t)PyUnicode_GET_LENGTH(uni);
  ------------------
  |  |  299|    466|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    466|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    466|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11075|    466|        size_t len, len2 = strlen(str);
11076|    466|        int cmp;
11077|       |
11078|    466|        len = Py_MIN(len1, len2);
  ------------------
  |  |  112|    466|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 154, False: 312]
  |  |  ------------------
  ------------------
11079|    466|        cmp = memcmp(data, str, len);
11080|    466|        if (cmp != 0) {
  ------------------
  |  Branch (11080:13): [True: 458, False: 8]
  ------------------
11081|    458|            if (cmp < 0)
  ------------------
  |  Branch (11081:17): [True: 58, False: 400]
  ------------------
11082|     58|                return -1;
11083|    400|            else
11084|    400|                return 1;
11085|    458|        }
11086|      8|        if (len1 > len2)
  ------------------
  |  Branch (11086:13): [True: 0, False: 8]
  ------------------
11087|      0|            return 1; /* uni is longer */
11088|      8|        if (len1 < len2)
  ------------------
  |  Branch (11088:13): [True: 0, False: 8]
  ------------------
11089|      0|            return -1; /* str is longer */
11090|      8|        return 0;
11091|      8|    }
11092|      0|    else {
11093|      0|        const void *data = PyUnicode_DATA(uni);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11094|       |        /* Compare Unicode string and source character set string */
11095|      0|        for (i = 0; (chr = PyUnicode_READ(kind, data, i)) && str[i]; i++)
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
  |  Branch (11095:21): [True: 0, False: 0]
  |  Branch (11095:62): [True: 0, False: 0]
  ------------------
11096|      0|            if (chr != (unsigned char)str[i])
  ------------------
  |  Branch (11096:17): [True: 0, False: 0]
  ------------------
11097|      0|                return (chr < (unsigned char)(str[i])) ? -1 : 1;
  ------------------
  |  Branch (11097:24): [True: 0, False: 0]
  ------------------
11098|       |        /* This check keeps Python strings that end in '\0' from comparing equal
11099|       |         to C strings identical up to that point. */
11100|      0|        if (PyUnicode_GET_LENGTH(uni) != i || chr)
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (11100:13): [True: 0, False: 0]
  |  Branch (11100:47): [True: 0, False: 0]
  ------------------
11101|      0|            return 1; /* uni is longer */
11102|      0|        if (str[i])
  ------------------
  |  Branch (11102:13): [True: 0, False: 0]
  ------------------
11103|      0|            return -1; /* str is longer */
11104|      0|        return 0;
11105|      0|    }
11106|    466|}
_PyUnicode_EqualToASCIIString:
11186|  2.10k|{
11187|  2.10k|    size_t len;
11188|  2.10k|    assert(_PyUnicode_CHECK(unicode));
  ------------------
  |  Branch (11188:5): [True: 2.10k, False: 0]
  ------------------
11189|  2.10k|    assert(str);
  ------------------
  |  Branch (11189:5): [True: 2.10k, False: 0]
  ------------------
11190|  2.10k|#ifndef NDEBUG
11191|  17.7k|    for (const char *p = str; *p; p++) {
  ------------------
  |  Branch (11191:31): [True: 15.6k, False: 2.10k]
  ------------------
11192|  15.6k|        assert((unsigned char)*p < 128);
  ------------------
  |  Branch (11192:9): [True: 15.6k, False: 0]
  ------------------
11193|  15.6k|    }
11194|  2.10k|#endif
11195|  2.10k|    if (!PyUnicode_IS_ASCII(unicode))
  ------------------
  |  |  227|  2.10k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.10k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.10k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (11195:9): [True: 0, False: 2.10k]
  ------------------
11196|      0|        return 0;
11197|  2.10k|    len = (size_t)PyUnicode_GET_LENGTH(unicode);
  ------------------
  |  |  299|  2.10k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.10k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.10k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11198|  2.10k|    return strlen(str) == len &&
  ------------------
  |  Branch (11198:12): [True: 220, False: 1.88k]
  ------------------
11199|    220|           memcmp(PyUnicode_1BYTE_DATA(unicode), str, len) == 0;
  ------------------
  |  |  291|    220|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|    220|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (11199:12): [True: 58, False: 162]
  ------------------
11200|  2.10k|}
PyUnicode_RichCompare:
11204|  7.95k|{
11205|  7.95k|    int result;
11206|       |
11207|  7.95k|    if (!PyUnicode_Check(left) || !PyUnicode_Check(right))
  ------------------
  |  |  103|  7.95k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  15.9k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
                  if (!PyUnicode_Check(left) || !PyUnicode_Check(right))
  ------------------
  |  |  103|  7.95k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  7.95k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (11207:9): [True: 0, False: 7.95k]
  |  Branch (11207:35): [True: 0, False: 7.95k]
  ------------------
11208|      0|        Py_RETURN_NOTIMPLEMENTED;
  ------------------
  |  |  648|      0|#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
  |  |  ------------------
  |  |  |  |  640|      0|#  define Py_NotImplemented (&_Py_NotImplementedStruct)
  |  |  ------------------
  ------------------
11209|       |
11210|  7.95k|    if (left == right) {
  ------------------
  |  Branch (11210:9): [True: 10, False: 7.94k]
  ------------------
11211|     10|        switch (op) {
11212|      8|        case Py_EQ:
  ------------------
  |  |  654|      8|#define Py_EQ 2
  ------------------
  |  Branch (11212:9): [True: 8, False: 2]
  ------------------
11213|      8|        case Py_LE:
  ------------------
  |  |  653|      8|#define Py_LE 1
  ------------------
  |  Branch (11213:9): [True: 0, False: 10]
  ------------------
11214|      8|        case Py_GE:
  ------------------
  |  |  657|      8|#define Py_GE 5
  ------------------
  |  Branch (11214:9): [True: 0, False: 10]
  ------------------
11215|       |            /* a string is equal to itself */
11216|      8|            Py_RETURN_TRUE;
  ------------------
  |  |   44|      8|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      8|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11217|      2|        case Py_NE:
  ------------------
  |  |  655|      2|#define Py_NE 3
  ------------------
  |  Branch (11217:9): [True: 2, False: 8]
  ------------------
11218|      2|        case Py_LT:
  ------------------
  |  |  652|      2|#define Py_LT 0
  ------------------
  |  Branch (11218:9): [True: 0, False: 10]
  ------------------
11219|      2|        case Py_GT:
  ------------------
  |  |  656|      2|#define Py_GT 4
  ------------------
  |  Branch (11219:9): [True: 0, False: 10]
  ------------------
11220|      2|            Py_RETURN_FALSE;
  ------------------
  |  |   45|      2|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11221|      0|        default:
  ------------------
  |  Branch (11221:9): [True: 0, False: 10]
  ------------------
11222|      0|            PyErr_BadArgument();
11223|      0|            return NULL;
11224|     10|        }
11225|     10|    }
11226|  7.94k|    else if (op == Py_EQ || op == Py_NE) {
  ------------------
  |  |  654|  15.8k|#define Py_EQ 2
  ------------------
                  else if (op == Py_EQ || op == Py_NE) {
  ------------------
  |  |  655|  5.12k|#define Py_NE 3
  ------------------
  |  Branch (11226:14): [True: 2.81k, False: 5.12k]
  |  Branch (11226:29): [True: 14, False: 5.11k]
  ------------------
11227|  2.83k|        result = unicode_eq(left, right);
11228|  2.83k|        result ^= (op == Py_NE);
  ------------------
  |  |  655|  2.83k|#define Py_NE 3
  ------------------
11229|  2.83k|        return PyBool_FromLong(result);
11230|  2.83k|    }
11231|  5.11k|    else {
11232|  5.11k|        result = unicode_compare(left, right);
11233|  5.11k|        Py_RETURN_RICHCOMPARE(result, 0, op);
  ------------------
  |  |  674|  5.11k|    do {                                                                    \
  |  |  675|  5.11k|        switch (op) {                                                       \
  |  |  676|      0|        case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  654|      0|#define Py_EQ 2
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (676:9): [True: 0, False: 5.11k]
  |  |  |  Branch (676:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  677|      0|        case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  655|      0|#define Py_NE 3
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (677:9): [True: 0, False: 5.11k]
  |  |  |  Branch (677:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  678|  5.11k|        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  652|  5.11k|#define Py_LT 0
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|  2.56k|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|  2.56k|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  2.56k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  2.56k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|  2.54k|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|  2.54k|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  2.54k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  2.54k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (678:9): [True: 5.11k, False: 0]
  |  |  |  Branch (678:25): [True: 2.56k, False: 2.54k]
  |  |  ------------------
  |  |  679|  5.11k|        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |  656|      0|#define Py_GT 4
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (679:9): [True: 0, False: 5.11k]
  |  |  |  Branch (679:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  680|      0|        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  653|      0|#define Py_LE 1
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (680:9): [True: 0, False: 5.11k]
  |  |  |  Branch (680:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  681|      0|        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |  657|      0|#define Py_GE 5
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
  |  |  ------------------
  |  |  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  |  |  ------------------
  |  |  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (681:9): [True: 0, False: 5.11k]
  |  |  |  Branch (681:25): [True: 0, False: 0]
  |  |  ------------------
  |  |  682|      0|        default:                                                            \
  |  |  ------------------
  |  |  |  Branch (682:9): [True: 0, False: 5.11k]
  |  |  ------------------
  |  |  683|      0|            Py_UNREACHABLE();                                               \
  |  |  ------------------
  |  |  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  |  |  ------------------
  |  |  684|  5.11k|        }                                                                   \
  |  |  685|  5.11k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (685:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
11234|  5.11k|    }
11235|  7.95k|}
PyUnicode_Contains:
11239|     56|{
11240|     56|    int kind1, kind2;
11241|     56|    const void *buf1, *buf2;
11242|     56|    Py_ssize_t len1, len2;
11243|     56|    int result;
11244|       |
11245|     56|    if (!PyUnicode_Check(substr)) {
  ------------------
  |  |  103|     56|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     56|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (11245:9): [True: 0, False: 56]
  ------------------
11246|      0|        PyErr_Format(PyExc_TypeError,
11247|      0|                     "'in <string>' requires string as left operand, not %.100s",
11248|      0|                     Py_TYPE(substr)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11249|      0|        return -1;
11250|      0|    }
11251|     56|    if (ensure_unicode(str) < 0)
  ------------------
  |  |  105|     56|#define ensure_unicode _PyUnicode_EnsureUnicode
  ------------------
  |  Branch (11251:9): [True: 0, False: 56]
  ------------------
11252|      0|        return -1;
11253|       |
11254|     56|    kind1 = PyUnicode_KIND(str);
  ------------------
  |  |  258|     56|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    112|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 56, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11255|     56|    kind2 = PyUnicode_KIND(substr);
  ------------------
  |  |  258|     56|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    112|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 56, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11256|     56|    if (kind1 < kind2)
  ------------------
  |  Branch (11256:9): [True: 0, False: 56]
  ------------------
11257|      0|        return 0;
11258|     56|    len1 = PyUnicode_GET_LENGTH(str);
  ------------------
  |  |  299|     56|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11259|     56|    len2 = PyUnicode_GET_LENGTH(substr);
  ------------------
  |  |  299|     56|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11260|     56|    if (len1 < len2)
  ------------------
  |  Branch (11260:9): [True: 4, False: 52]
  ------------------
11261|      4|        return 0;
11262|     52|    buf1 = PyUnicode_DATA(str);
  ------------------
  |  |  284|     52|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11263|     52|    buf2 = PyUnicode_DATA(substr);
  ------------------
  |  |  284|     52|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11264|     52|    if (len2 == 1) {
  ------------------
  |  Branch (11264:9): [True: 52, False: 0]
  ------------------
11265|     52|        Py_UCS4 ch = PyUnicode_READ(kind2, buf2, 0);
  ------------------
  |  |  354|     52|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|     52|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|     52|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|     52|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|     52|                   (index))
  ------------------
11266|     52|        result = findchar((const char *)buf1, kind1, len1, ch, 1) != -1;
11267|     52|        return result;
11268|     52|    }
11269|      0|    if (kind2 != kind1) {
  ------------------
  |  Branch (11269:9): [True: 0, False: 0]
  ------------------
11270|      0|        buf2 = unicode_askind(kind2, buf2, len2, kind1);
11271|      0|        if (!buf2)
  ------------------
  |  Branch (11271:13): [True: 0, False: 0]
  ------------------
11272|      0|            return -1;
11273|      0|    }
11274|       |
11275|      0|    switch (kind1) {
11276|      0|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (11276:5): [True: 0, False: 0]
  ------------------
11277|      0|        result = ucs1lib_find(buf1, len1, buf2, len2, 0) != -1;
11278|      0|        break;
11279|      0|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (11279:5): [True: 0, False: 0]
  ------------------
11280|      0|        result = ucs2lib_find(buf1, len1, buf2, len2, 0) != -1;
11281|      0|        break;
11282|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (11282:5): [True: 0, False: 0]
  ------------------
11283|      0|        result = ucs4lib_find(buf1, len1, buf2, len2, 0) != -1;
11284|      0|        break;
11285|      0|    default:
  ------------------
  |  Branch (11285:5): [True: 0, False: 0]
  ------------------
11286|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
11287|      0|    }
11288|       |
11289|      0|    assert((kind2 == kind1) == (buf2 == PyUnicode_DATA(substr)));
  ------------------
  |  Branch (11289:5): [True: 0, False: 0]
  ------------------
11290|      0|    if (kind2 != kind1)
  ------------------
  |  Branch (11290:9): [True: 0, False: 0]
  ------------------
11291|      0|        PyMem_Free((void *)buf2);
11292|       |
11293|      0|    return result;
11294|      0|}
PyUnicode_Concat:
11300|    184|{
11301|    184|    PyObject *result;
11302|    184|    Py_UCS4 maxchar, maxchar2;
11303|    184|    Py_ssize_t left_len, right_len, new_len;
11304|       |
11305|    184|    if (ensure_unicode(left) < 0)
  ------------------
  |  |  105|    184|#define ensure_unicode _PyUnicode_EnsureUnicode
  ------------------
  |  Branch (11305:9): [True: 0, False: 184]
  ------------------
11306|      0|        return NULL;
11307|       |
11308|    184|    if (!PyUnicode_Check(right)) {
  ------------------
  |  |  103|    184|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    184|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (11308:9): [True: 0, False: 184]
  ------------------
11309|      0|        PyErr_Format(PyExc_TypeError,
11310|      0|            "can only concatenate str (not \"%.200s\") to str",
11311|      0|            Py_TYPE(right)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11312|      0|        return NULL;
11313|      0|    }
11314|       |
11315|       |    /* Shortcuts */
11316|    184|    PyObject *empty = _PyUnicode_GetEmpty();  // Borrowed reference
11317|    184|    if (left == empty) {
  ------------------
  |  Branch (11317:9): [True: 0, False: 184]
  ------------------
11318|      0|        return PyUnicode_FromObject(right);
11319|      0|    }
11320|    184|    if (right == empty) {
  ------------------
  |  Branch (11320:9): [True: 0, False: 184]
  ------------------
11321|      0|        return PyUnicode_FromObject(left);
11322|      0|    }
11323|       |
11324|    184|    left_len = PyUnicode_GET_LENGTH(left);
  ------------------
  |  |  299|    184|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    184|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    184|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11325|    184|    right_len = PyUnicode_GET_LENGTH(right);
  ------------------
  |  |  299|    184|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    184|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    184|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11326|    184|    if (left_len > PY_SSIZE_T_MAX - right_len) {
  ------------------
  |  |  137|    184|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (11326:9): [True: 0, False: 184]
  ------------------
11327|      0|        PyErr_SetString(PyExc_OverflowError,
11328|      0|                        "strings are too large to concat");
11329|      0|        return NULL;
11330|      0|    }
11331|    184|    new_len = left_len + right_len;
11332|       |
11333|    184|    maxchar = PyUnicode_MAX_CHAR_VALUE(left);
  ------------------
  |  |  405|    184|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    184|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    184|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11334|    184|    maxchar2 = PyUnicode_MAX_CHAR_VALUE(right);
  ------------------
  |  |  405|    184|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    184|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    184|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11335|    184|    maxchar = Py_MAX(maxchar, maxchar2);
  ------------------
  |  |  115|    184|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 184]
  |  |  ------------------
  ------------------
11336|       |
11337|       |    /* Concat the two Unicode strings */
11338|    184|    result = PyUnicode_New(new_len, maxchar);
11339|    184|    if (result == NULL)
  ------------------
  |  Branch (11339:9): [True: 0, False: 184]
  ------------------
11340|      0|        return NULL;
11341|    184|    _PyUnicode_FastCopyCharacters(result, 0, left, 0, left_len);
11342|    184|    _PyUnicode_FastCopyCharacters(result, left_len, right, 0, right_len);
11343|    184|    assert(_PyUnicode_CheckConsistency(result, 1));
  ------------------
  |  Branch (11343:5): [True: 184, False: 0]
  ------------------
11344|    184|    return result;
11345|    184|}
PyUnicode_Append:
11349|     24|{
11350|     24|    PyObject *left, *res;
11351|     24|    Py_UCS4 maxchar, maxchar2;
11352|     24|    Py_ssize_t left_len, right_len, new_len;
11353|       |
11354|     24|    if (p_left == NULL) {
  ------------------
  |  Branch (11354:9): [True: 0, False: 24]
  ------------------
11355|      0|        if (!PyErr_Occurred())
  ------------------
  |  Branch (11355:13): [True: 0, False: 0]
  ------------------
11356|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
11357|      0|        return;
11358|      0|    }
11359|     24|    left = *p_left;
11360|     24|    if (right == NULL || left == NULL
  ------------------
  |  Branch (11360:9): [True: 0, False: 24]
  |  Branch (11360:26): [True: 0, False: 24]
  ------------------
11361|     24|        || !PyUnicode_Check(left) || !PyUnicode_Check(right)) {
  ------------------
  |  |  103|     24|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     48|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
                      || !PyUnicode_Check(left) || !PyUnicode_Check(right)) {
  ------------------
  |  |  103|     24|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     24|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (11361:12): [True: 0, False: 24]
  |  Branch (11361:38): [True: 0, False: 24]
  ------------------
11362|      0|        if (!PyErr_Occurred())
  ------------------
  |  Branch (11362:13): [True: 0, False: 0]
  ------------------
11363|      0|            PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
11364|      0|        goto error;
11365|      0|    }
11366|       |
11367|       |    /* Shortcuts */
11368|     24|    PyObject *empty = _PyUnicode_GetEmpty();  // Borrowed reference
11369|     24|    if (left == empty) {
  ------------------
  |  Branch (11369:9): [True: 0, False: 24]
  ------------------
11370|      0|        Py_DECREF(left);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11371|      0|        *p_left = Py_NewRef(right);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11372|      0|        return;
11373|      0|    }
11374|     24|    if (right == empty) {
  ------------------
  |  Branch (11374:9): [True: 0, False: 24]
  ------------------
11375|      0|        return;
11376|      0|    }
11377|       |
11378|     24|    left_len = PyUnicode_GET_LENGTH(left);
  ------------------
  |  |  299|     24|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11379|     24|    right_len = PyUnicode_GET_LENGTH(right);
  ------------------
  |  |  299|     24|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11380|     24|    if (left_len > PY_SSIZE_T_MAX - right_len) {
  ------------------
  |  |  137|     24|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (11380:9): [True: 0, False: 24]
  ------------------
11381|      0|        PyErr_SetString(PyExc_OverflowError,
11382|      0|                        "strings are too large to concat");
11383|      0|        goto error;
11384|      0|    }
11385|     24|    new_len = left_len + right_len;
11386|       |
11387|     24|    if (_PyUnicode_IsModifiable(left)
  ------------------
  |  Branch (11387:9): [True: 4, False: 20]
  ------------------
11388|     24|        && PyUnicode_CheckExact(right)
  ------------------
  |  |  104|      4|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     28|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11389|     24|        && PyUnicode_KIND(right) <= PyUnicode_KIND(left)
  ------------------
  |  |  258|      4|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      8|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      && PyUnicode_KIND(right) <= PyUnicode_KIND(left)
  ------------------
  |  |  258|      4|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     28|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (11389:12): [True: 4, False: 0]
  ------------------
11390|       |        /* Don't resize for ascii += latin1. Convert ascii to latin1 requires
11391|       |           to change the structure size, but characters are stored just after
11392|       |           the structure, and so it requires to move all characters which is
11393|       |           not so different than duplicating the string. */
11394|      4|        && !(PyUnicode_IS_ASCII(left) && !PyUnicode_IS_ASCII(right)))
  ------------------
  |  |  227|      8|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
                      && !(PyUnicode_IS_ASCII(left) && !PyUnicode_IS_ASCII(right)))
  ------------------
  |  |  227|      4|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (11394:42): [True: 0, False: 4]
  ------------------
11395|      4|    {
11396|       |        /* append inplace */
11397|      4|        if (unicode_resize(p_left, new_len) != 0)
  ------------------
  |  Branch (11397:13): [True: 0, False: 4]
  ------------------
11398|      0|            goto error;
11399|       |
11400|       |        /* copy 'right' into the newly allocated area of 'left' */
11401|      4|        _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len);
11402|      4|    }
11403|     20|    else {
11404|     20|        maxchar = PyUnicode_MAX_CHAR_VALUE(left);
  ------------------
  |  |  405|     20|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11405|     20|        maxchar2 = PyUnicode_MAX_CHAR_VALUE(right);
  ------------------
  |  |  405|     20|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11406|     20|        maxchar = Py_MAX(maxchar, maxchar2);
  ------------------
  |  |  115|     20|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 20]
  |  |  ------------------
  ------------------
11407|       |
11408|       |        /* Concat the two Unicode strings */
11409|     20|        res = PyUnicode_New(new_len, maxchar);
11410|     20|        if (res == NULL)
  ------------------
  |  Branch (11410:13): [True: 0, False: 20]
  ------------------
11411|      0|            goto error;
11412|     20|        _PyUnicode_FastCopyCharacters(res, 0, left, 0, left_len);
11413|     20|        _PyUnicode_FastCopyCharacters(res, left_len, right, 0, right_len);
11414|     20|        Py_DECREF(left);
  ------------------
  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11415|     20|        *p_left = res;
11416|     20|    }
11417|     24|    assert(_PyUnicode_CheckConsistency(*p_left, 1));
  ------------------
  |  Branch (11417:5): [True: 24, False: 0]
  ------------------
11418|     24|    return;
11419|       |
11420|     24|error:
11421|       |    Py_CLEAR(*p_left);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
11422|      0|}
_PyUnicode_ScanIdentifier:
12106|     12|{
12107|     12|    Py_ssize_t i;
12108|     12|    Py_ssize_t len = PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|     12|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12109|     12|    if (len == 0) {
  ------------------
  |  Branch (12109:9): [True: 0, False: 12]
  ------------------
12110|       |        /* an empty string is not a valid identifier */
12111|      0|        return 0;
12112|      0|    }
12113|       |
12114|     12|    int kind = PyUnicode_KIND(self);
  ------------------
  |  |  258|     12|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     24|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12115|     12|    const void *data = PyUnicode_DATA(self);
  ------------------
  |  |  284|     12|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12116|     12|    Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
  ------------------
  |  |  354|     12|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|     12|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|     12|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|     12|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|     12|                   (index))
  ------------------
12117|       |    /* PEP 3131 says that the first character must be in
12118|       |       XID_Start and subsequent characters in XID_Continue,
12119|       |       and for the ASCII range, the 2.x rules apply (i.e
12120|       |       start with letters and underscore, continue with
12121|       |       letters, digits, underscore). However, given the current
12122|       |       definition of XID_Start and XID_Continue, it is sufficient
12123|       |       to check just for these, except that _ must be allowed
12124|       |       as starting an identifier.  */
12125|     12|    if (!_PyUnicode_IsXidStart(ch) && ch != 0x5F /* LOW LINE */) {
  ------------------
  |  Branch (12125:9): [True: 10, False: 2]
  |  Branch (12125:39): [True: 0, False: 10]
  ------------------
12126|      0|        return 0;
12127|      0|    }
12128|       |
12129|    110|    for (i = 1; i < len; i++) {
  ------------------
  |  Branch (12129:17): [True: 98, False: 12]
  ------------------
12130|     98|        ch = PyUnicode_READ(kind, data, i);
  ------------------
  |  |  354|     98|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|     98|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|     98|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|     98|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|     98|                   (index))
  ------------------
12131|     98|        if (!_PyUnicode_IsXidContinue(ch)) {
  ------------------
  |  Branch (12131:13): [True: 0, False: 98]
  ------------------
12132|      0|            return i;
12133|      0|        }
12134|     98|    }
12135|     12|    return i;
12136|     12|}
PyUnicode_IsIdentifier:
12140|     12|{
12141|     12|    Py_ssize_t i = _PyUnicode_ScanIdentifier(self);
12142|     12|    Py_ssize_t len = PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|     12|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12143|       |    /* an empty string is not a valid identifier */
12144|     12|    return len && i == len;
  ------------------
  |  Branch (12144:12): [True: 12, False: 0]
  |  Branch (12144:19): [True: 12, False: 0]
  ------------------
12145|     12|}
_PyUnicode_XStrip:
12275|    150|{
12276|    150|    const void *data;
12277|    150|    int kind;
12278|    150|    Py_ssize_t i, j, len;
12279|    150|    BLOOM_MASK sepmask;
  ------------------
  |  |  905|    150|#define BLOOM_MASK unsigned long
  ------------------
12280|    150|    Py_ssize_t seplen;
12281|       |
12282|    150|    kind = PyUnicode_KIND(self);
  ------------------
  |  |  258|    150|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    300|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 150, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12283|    150|    data = PyUnicode_DATA(self);
  ------------------
  |  |  284|    150|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    150|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    150|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12284|    150|    len = PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|    150|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    150|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    150|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12285|    150|    seplen = PyUnicode_GET_LENGTH(sepobj);
  ------------------
  |  |  299|    150|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    150|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    150|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12286|    150|    sepmask = make_bloom_mask(PyUnicode_KIND(sepobj),
  ------------------
  |  |  258|    150|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    300|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 150, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12287|    150|                              PyUnicode_DATA(sepobj),
  ------------------
  |  |  284|    150|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    150|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    150|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12288|    150|                              seplen);
12289|       |
12290|      0|    i = 0;
12291|    150|    if (striptype != RIGHTSTRIP) {
  ------------------
  |  |12264|    150|#define RIGHTSTRIP 1
  ------------------
  |  Branch (12291:9): [True: 0, False: 150]
  ------------------
12292|      0|        while (i < len) {
  ------------------
  |  Branch (12292:16): [True: 0, False: 0]
  ------------------
12293|      0|            Py_UCS4 ch = PyUnicode_READ(kind, data, i);
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
12294|      0|            if (!BLOOM(sepmask, ch))
  ------------------
  |  |  909|      0|#define BLOOM(mask, ch)     ((mask &  (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
  |  |  ------------------
  |  |  |  |  898|      0|#define BLOOM_WIDTH 64
  |  |  ------------------
  ------------------
  |  Branch (12294:17): [True: 0, False: 0]
  ------------------
12295|      0|                break;
12296|      0|            if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0)
  ------------------
  |  Branch (12296:17): [True: 0, False: 0]
  ------------------
12297|      0|                break;
12298|      0|            i++;
12299|      0|        }
12300|      0|    }
12301|       |
12302|    150|    j = len;
12303|    150|    if (striptype != LEFTSTRIP) {
  ------------------
  |  |12263|    150|#define LEFTSTRIP 0
  ------------------
  |  Branch (12303:9): [True: 150, False: 0]
  ------------------
12304|    150|        j--;
12305|    154|        while (j >= i) {
  ------------------
  |  Branch (12305:16): [True: 154, False: 0]
  ------------------
12306|    154|            Py_UCS4 ch = PyUnicode_READ(kind, data, j);
  ------------------
  |  |  354|    154|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|    154|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|    154|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|    154|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|    154|                   (index))
  ------------------
12307|    154|            if (!BLOOM(sepmask, ch))
  ------------------
  |  |  909|    154|#define BLOOM(mask, ch)     ((mask &  (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
  |  |  ------------------
  |  |  |  |  898|    154|#define BLOOM_WIDTH 64
  |  |  ------------------
  ------------------
  |  Branch (12307:17): [True: 102, False: 52]
  ------------------
12308|    102|                break;
12309|     52|            if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0)
  ------------------
  |  Branch (12309:17): [True: 48, False: 4]
  ------------------
12310|     48|                break;
12311|      4|            j--;
12312|      4|        }
12313|       |
12314|    150|        j++;
12315|    150|    }
12316|       |
12317|    150|    return PyUnicode_Substring(self, i, j);
12318|    150|}
_PyUnicode_BinarySlice:
12322|     10|{
12323|     10|    assert(PyUnicode_CheckExact(container));
  ------------------
  |  Branch (12323:5): [True: 10, False: 0]
  ------------------
12324|     10|    Py_ssize_t len = PyUnicode_GET_LENGTH(container);
  ------------------
  |  |  299|     10|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12325|     10|    Py_ssize_t istart, istop;
12326|     10|    if (!_PyEval_UnpackIndices(start_o, stop_o, len, &istart, &istop)) {
  ------------------
  |  Branch (12326:9): [True: 0, False: 10]
  ------------------
12327|      0|        return NULL;
12328|      0|    }
12329|     10|    return PyUnicode_Substring(container, istart, istop);
12330|     10|}
PyUnicode_Substring:
12334|    176|{
12335|    176|    const unsigned char *data;
12336|    176|    int kind;
12337|    176|    Py_ssize_t length;
12338|       |
12339|    176|    length = PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|    176|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    176|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    176|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12340|    176|    end = Py_MIN(end, length);
  ------------------
  |  |  112|    176|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 176]
  |  |  ------------------
  ------------------
12341|       |
12342|    176|    if (start == 0 && end == length)
  ------------------
  |  Branch (12342:9): [True: 172, False: 4]
  |  Branch (12342:23): [True: 148, False: 24]
  ------------------
12343|    148|        return unicode_result_unchanged(self);
12344|       |
12345|     28|    if (start < 0 || end < 0) {
  ------------------
  |  Branch (12345:9): [True: 0, False: 28]
  |  Branch (12345:22): [True: 0, False: 28]
  ------------------
12346|      0|        PyErr_SetString(PyExc_IndexError, "string index out of range");
12347|      0|        return NULL;
12348|      0|    }
12349|     28|    if (start >= length || end < start)
  ------------------
  |  Branch (12349:9): [True: 0, False: 28]
  |  Branch (12349:28): [True: 0, False: 28]
  ------------------
12350|      0|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      0|    do {                             \
  |  |  376|      0|        return _PyUnicode_GetEmpty();\
  |  |  377|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
12351|       |
12352|     28|    length = end - start;
12353|     28|    if (PyUnicode_IS_ASCII(self)) {
  ------------------
  |  |  227|     28|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 28, False: 0]
  |  |  ------------------
  ------------------
12354|     28|        data = PyUnicode_1BYTE_DATA(self);
  ------------------
  |  |  291|     28|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|     28|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
12355|     28|        return _PyUnicode_FromASCII((const char*)(data + start), length);
12356|     28|    }
12357|      0|    else {
12358|      0|        kind = PyUnicode_KIND(self);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12359|      0|        data = PyUnicode_1BYTE_DATA(self);
  ------------------
  |  |  291|      0|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
12360|      0|        return PyUnicode_FromKindAndData(kind,
12361|      0|                                         data + kind * start,
12362|      0|                                         length);
12363|      0|    }
12364|     28|}
_PyUnicode_Repeat:
12507|      4|{
12508|      4|    PyObject *u;
12509|      4|    Py_ssize_t nchars, n;
12510|       |
12511|      4|    if (len < 1)
  ------------------
  |  Branch (12511:9): [True: 0, False: 4]
  ------------------
12512|      0|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      0|    do {                             \
  |  |  376|      0|        return _PyUnicode_GetEmpty();\
  |  |  377|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
12513|       |
12514|       |    /* no repeat, return original string */
12515|      4|    if (len == 1)
  ------------------
  |  Branch (12515:9): [True: 0, False: 4]
  ------------------
12516|      0|        return unicode_result_unchanged(str);
12517|       |
12518|      4|    if (PyUnicode_GET_LENGTH(str) > PY_SSIZE_T_MAX / len) {
  ------------------
  |  |  299|      4|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyUnicode_GET_LENGTH(str) > PY_SSIZE_T_MAX / len) {
  ------------------
  |  |  137|      4|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (12518:9): [True: 0, False: 4]
  ------------------
12519|      0|        PyErr_SetString(PyExc_OverflowError,
12520|      0|                        "repeated string is too long");
12521|      0|        return NULL;
12522|      0|    }
12523|      4|    nchars = len * PyUnicode_GET_LENGTH(str);
  ------------------
  |  |  299|      4|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12524|       |
12525|      4|    u = PyUnicode_New(nchars, PyUnicode_MAX_CHAR_VALUE(str));
  ------------------
  |  |  405|      4|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12526|      4|    if (!u)
  ------------------
  |  Branch (12526:9): [True: 0, False: 4]
  ------------------
12527|      0|        return NULL;
12528|      4|    assert(PyUnicode_KIND(u) == PyUnicode_KIND(str));
  ------------------
  |  Branch (12528:5): [True: 4, False: 0]
  |  Branch (12528:5): [True: 4, False: 0]
  |  Branch (12528:5): [True: 4, False: 0]
  ------------------
12529|       |
12530|      4|    if (PyUnicode_GET_LENGTH(str) == 1) {
  ------------------
  |  |  299|      4|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (12530:9): [True: 4, False: 0]
  ------------------
12531|      4|        int kind = PyUnicode_KIND(str);
  ------------------
  |  |  258|      4|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      8|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12532|      4|        Py_UCS4 fill_char = PyUnicode_READ(kind, PyUnicode_DATA(str), 0);
  ------------------
  |  |  354|      4|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      4|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      4|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      4|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      4|                   (index))
  ------------------
12533|      4|        if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (12533:13): [True: 4, False: 0]
  ------------------
12534|      4|            void *to = PyUnicode_DATA(u);
  ------------------
  |  |  284|      4|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12535|      4|            memset(to, (unsigned char)fill_char, len);
12536|      4|        }
12537|      0|        else if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (12537:18): [True: 0, False: 0]
  ------------------
12538|      0|            Py_UCS2 *ucs2 = PyUnicode_2BYTE_DATA(u);
  ------------------
  |  |  292|      0|#define PyUnicode_2BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS2*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
12539|      0|            for (n = 0; n < len; ++n)
  ------------------
  |  Branch (12539:25): [True: 0, False: 0]
  ------------------
12540|      0|                ucs2[n] = fill_char;
12541|      0|        } else {
12542|      0|            Py_UCS4 *ucs4 = PyUnicode_4BYTE_DATA(u);
  ------------------
  |  |  293|      0|#define PyUnicode_4BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS4*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
12543|      0|            assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (12543:13): [True: 0, False: 0]
  ------------------
12544|      0|            for (n = 0; n < len; ++n)
  ------------------
  |  Branch (12544:25): [True: 0, False: 0]
  ------------------
12545|      0|                ucs4[n] = fill_char;
12546|      0|        }
12547|      4|    }
12548|      0|    else {
12549|      0|        Py_ssize_t char_size = PyUnicode_KIND(str);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12550|      0|        char *to = (char *) PyUnicode_DATA(u);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12551|      0|        _PyBytes_RepeatBuffer(to, nchars * char_size, PyUnicode_DATA(str),
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12552|      0|            PyUnicode_GET_LENGTH(str) * char_size);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12553|      0|    }
12554|       |
12555|      4|    assert(_PyUnicode_CheckConsistency(u, 1));
  ------------------
  |  Branch (12555:5): [True: 4, False: 0]
  ------------------
12556|      4|    return u;
12557|      4|}
PyUnicode_RPartition:
12913|    120|{
12914|    120|    PyObject* out;
12915|    120|    int kind1, kind2;
12916|    120|    const void *buf1, *buf2;
12917|    120|    Py_ssize_t len1, len2;
12918|       |
12919|    120|    if (ensure_unicode(str_obj) < 0 || ensure_unicode(sep_obj) < 0)
  ------------------
  |  |  105|    120|#define ensure_unicode _PyUnicode_EnsureUnicode
  ------------------
                  if (ensure_unicode(str_obj) < 0 || ensure_unicode(sep_obj) < 0)
  ------------------
  |  |  105|    120|#define ensure_unicode _PyUnicode_EnsureUnicode
  ------------------
  |  Branch (12919:9): [True: 0, False: 120]
  |  Branch (12919:40): [True: 0, False: 120]
  ------------------
12920|      0|        return NULL;
12921|       |
12922|    120|    kind1 = PyUnicode_KIND(str_obj);
  ------------------
  |  |  258|    120|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    240|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 120, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12923|    120|    kind2 = PyUnicode_KIND(sep_obj);
  ------------------
  |  |  258|    120|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    240|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 120, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12924|    120|    len1 = PyUnicode_GET_LENGTH(str_obj);
  ------------------
  |  |  299|    120|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12925|    120|    len2 = PyUnicode_GET_LENGTH(sep_obj);
  ------------------
  |  |  299|    120|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12926|    120|    if (kind1 < kind2 || len1 < len2) {
  ------------------
  |  Branch (12926:9): [True: 0, False: 120]
  |  Branch (12926:26): [True: 0, False: 120]
  ------------------
12927|      0|        PyObject *empty = _PyUnicode_GetEmpty();  // Borrowed reference
12928|      0|        return PyTuple_Pack(3, empty, empty, str_obj);
12929|      0|    }
12930|    120|    buf1 = PyUnicode_DATA(str_obj);
  ------------------
  |  |  284|    120|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12931|    120|    buf2 = PyUnicode_DATA(sep_obj);
  ------------------
  |  |  284|    120|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12932|    120|    if (kind2 != kind1) {
  ------------------
  |  Branch (12932:9): [True: 0, False: 120]
  ------------------
12933|      0|        buf2 = unicode_askind(kind2, buf2, len2, kind1);
12934|      0|        if (!buf2)
  ------------------
  |  Branch (12934:13): [True: 0, False: 0]
  ------------------
12935|      0|            return NULL;
12936|      0|    }
12937|       |
12938|    120|    switch (kind1) {
12939|    120|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (12939:5): [True: 120, False: 0]
  ------------------
12940|    120|        if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj))
  ------------------
  |  |  227|    240|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 120, False: 0]
  |  |  ------------------
  ------------------
                      if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj))
  ------------------
  |  |  227|    120|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    120|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    120|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 120, False: 0]
  |  |  ------------------
  ------------------
12941|    120|            out = asciilib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12942|      0|        else
12943|      0|            out = ucs1lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12944|    120|        break;
12945|      0|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (12945:5): [True: 0, False: 120]
  ------------------
12946|      0|        out = ucs2lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12947|      0|        break;
12948|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (12948:5): [True: 0, False: 120]
  ------------------
12949|      0|        out = ucs4lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12950|      0|        break;
12951|      0|    default:
  ------------------
  |  Branch (12951:5): [True: 0, False: 120]
  ------------------
12952|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
12953|    120|    }
12954|       |
12955|    120|    assert((kind2 == kind1) == (buf2 == PyUnicode_DATA(sep_obj)));
  ------------------
  |  Branch (12955:5): [True: 120, False: 0]
  ------------------
12956|    120|    if (kind2 != kind1)
  ------------------
  |  Branch (12956:9): [True: 0, False: 120]
  ------------------
12957|      0|        PyMem_Free((void *)buf2);
12958|       |
12959|    120|    return out;
12960|    120|}
_PyUnicode_ExactDealloc:
14009|     26|{
14010|     26|    assert(PyUnicode_CheckExact(op));
  ------------------
  |  Branch (14010:5): [True: 26, False: 0]
  ------------------
14011|     26|    unicode_dealloc(op);
14012|     26|}
_PyUnicode_InitState:
14104|      2|{
14105|      2|    if (!_Py_IsMainInterpreter(interp)) {
  ------------------
  |  Branch (14105:9): [True: 0, False: 2]
  ------------------
14106|      0|        return;
14107|      0|    }
14108|      2|    _init_global_state();
14109|      2|}
_PyUnicode_InitGlobalObjects:
14114|      2|{
14115|      2|    if (_Py_IsMainInterpreter(interp)) {
  ------------------
  |  Branch (14115:9): [True: 2, False: 0]
  ------------------
14116|      2|        PyStatus status = init_global_interned_strings(interp);
14117|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
14118|      0|            return status;
14119|      0|        }
14120|      2|    }
14121|      2|    assert(INTERNED_STRINGS);
  ------------------
  |  Branch (14121:5): [True: 2, False: 0]
  ------------------
14122|       |
14123|      2|    if (init_interned_dict(interp)) {
  ------------------
  |  Branch (14123:9): [True: 0, False: 2]
  ------------------
14124|      0|        PyErr_Clear();
14125|      0|        return _PyStatus_ERR("failed to create interned dict");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
14126|      0|    }
14127|       |
14128|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
14129|      2|}
_PyUnicode_InitTypes:
14134|      2|{
14135|      2|    if (_PyStaticType_InitBuiltin(interp, &EncodingMapType) < 0) {
  ------------------
  |  Branch (14135:9): [True: 0, False: 2]
  ------------------
14136|      0|        goto error;
14137|      0|    }
14138|      2|    if (_PyStaticType_InitBuiltin(interp, &PyFieldNameIter_Type) < 0) {
  ------------------
  |  Branch (14138:9): [True: 0, False: 2]
  ------------------
14139|      0|        goto error;
14140|      0|    }
14141|      2|    if (_PyStaticType_InitBuiltin(interp, &PyFormatterIter_Type) < 0) {
  ------------------
  |  Branch (14141:9): [True: 0, False: 2]
  ------------------
14142|      0|        goto error;
14143|      0|    }
14144|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
14145|       |
14146|      0|error:
14147|      0|    return _PyStatus_ERR("Can't initialize unicode types");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
14148|      2|}
_PyUnicode_InternStatic:
14191|  2.24k|{
14192|       |    // This should only be called as part of runtime initialization
14193|  2.24k|    assert(!Py_IsInitialized());
  ------------------
  |  Branch (14193:5): [True: 2.24k, False: 0]
  ------------------
14194|       |
14195|  2.24k|    *p = intern_static(interp, *p);
14196|       |    assert(*p);
  ------------------
  |  Branch (14196:5): [True: 2.24k, False: 0]
  ------------------
14197|  2.24k|}
_PyUnicode_InternImmortal:
14405|  23.2k|{
14406|  23.2k|    *p = intern_common(interp, *p, 1);
14407|       |    assert(*p);
  ------------------
  |  Branch (14407:5): [True: 23.2k, False: 0]
  ------------------
14408|  23.2k|}
_PyUnicode_InternMortal:
14412|  15.3k|{
14413|  15.3k|    *p = intern_common(interp, *p, 0);
14414|       |    assert(*p);
  ------------------
  |  Branch (14414:5): [True: 15.3k, False: 0]
  ------------------
14415|  15.3k|}
PyUnicode_InternFromString:
14443|  5.73k|{
14444|  5.73k|    PyObject *s = PyUnicode_FromString(cp);
14445|  5.73k|    if (s == NULL) {
  ------------------
  |  Branch (14445:9): [True: 0, False: 5.73k]
  ------------------
14446|      0|        return NULL;
14447|      0|    }
14448|  5.73k|    PyInterpreterState *interp = _PyInterpreterState_GET();
14449|  5.73k|    _PyUnicode_InternMortal(interp, &s);
14450|  5.73k|    return s;
14451|  5.73k|}
_PyUnicode_InitEncodings:
14905|      2|{
14906|      2|    PyStatus status = _PyCodec_InitRegistry(tstate->interp);
14907|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
14908|      0|        return status;
14909|      0|    }
14910|      2|    status = init_fs_encoding(tstate);
14911|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
14912|      0|        return status;
14913|      0|    }
14914|       |
14915|      2|    return init_stdio_encoding(tstate->interp);
14916|      2|}
unicodeobject.c:get_interned_dict:
  212|  9.26k|{
  213|  9.26k|    return _Py_INTERP_CACHED_OBJECT(interp, interned_strings);
  ------------------
  |  |   22|  9.26k|    (interp)->cached_objects.NAME
  ------------------
  214|  9.26k|}
unicodeobject.c:_PyUnicode_UTF8:
  114|  17.0k|{
  115|  17.0k|    return FT_ATOMIC_LOAD_PTR_ACQUIRE(_PyCompactUnicodeObject_CAST(op)->utf8);
  ------------------
  |  |  150|  51.2k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  |  |  Branch (150:43): [True: 17.0k, False: 0]
  |  |  ------------------
  ------------------
  116|  17.0k|}
unicodeobject.c:_PyUnicode_HAS_UTF8_MEMORY:
  177|  20.1k|{
  178|  20.1k|    return (!PyUnicode_IS_COMPACT_ASCII(op)
  ------------------
  |  |  241|  40.3k|#define PyUnicode_IS_COMPACT_ASCII(op) PyUnicode_IS_COMPACT_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  20.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  20.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (178:13): [True: 3.55k, False: 16.5k]
  ------------------
  179|  3.55k|            && _PyUnicode_UTF8(op) != NULL
  ------------------
  |  Branch (179:16): [True: 0, False: 3.55k]
  ------------------
  180|      0|            && _PyUnicode_UTF8(op) != PyUnicode_DATA(op));
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (180:16): [True: 0, False: 0]
  ------------------
  181|  20.1k|}
unicodeobject.c:_copy_characters:
 1382|  4.39k|{
 1383|  4.39k|    int from_kind, to_kind;
 1384|  4.39k|    const void *from_data;
 1385|  4.39k|    void *to_data;
 1386|       |
 1387|  4.39k|    assert(0 <= how_many);
  ------------------
  |  Branch (1387:5): [True: 4.39k, False: 0]
  ------------------
 1388|  4.39k|    assert(0 <= from_start);
  ------------------
  |  Branch (1388:5): [True: 4.39k, False: 0]
  ------------------
 1389|  4.39k|    assert(0 <= to_start);
  ------------------
  |  Branch (1389:5): [True: 4.39k, False: 0]
  ------------------
 1390|  4.39k|    assert(PyUnicode_Check(from));
  ------------------
  |  Branch (1390:5): [True: 4.39k, False: 0]
  ------------------
 1391|  4.39k|    assert(from_start + how_many <= PyUnicode_GET_LENGTH(from));
  ------------------
  |  Branch (1391:5): [True: 4.39k, False: 0]
  ------------------
 1392|       |
 1393|  4.39k|    assert(to == NULL || PyUnicode_Check(to));
  ------------------
  |  Branch (1393:5): [True: 0, False: 4.39k]
  |  Branch (1393:5): [True: 4.39k, False: 0]
  ------------------
 1394|       |
 1395|  4.39k|    if (how_many == 0) {
  ------------------
  |  Branch (1395:9): [True: 0, False: 4.39k]
  ------------------
 1396|      0|        return 0;
 1397|      0|    }
 1398|       |
 1399|  4.39k|    assert(to != NULL);
  ------------------
  |  Branch (1399:5): [True: 4.39k, False: 0]
  ------------------
 1400|  4.39k|    assert(to_start + how_many <= PyUnicode_GET_LENGTH(to));
  ------------------
  |  Branch (1400:5): [True: 4.39k, False: 0]
  ------------------
 1401|       |
 1402|  4.39k|    from_kind = PyUnicode_KIND(from);
  ------------------
  |  |  258|  4.39k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  8.78k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4.39k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1403|  4.39k|    from_data = PyUnicode_DATA(from);
  ------------------
  |  |  284|  4.39k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.39k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.39k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1404|  4.39k|    to_kind = PyUnicode_KIND(to);
  ------------------
  |  |  258|  4.39k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  8.78k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4.39k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1405|  4.39k|    to_data = PyUnicode_DATA(to);
  ------------------
  |  |  284|  4.39k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.39k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.39k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1406|       |
 1407|       |#ifdef Py_DEBUG
 1408|       |    if (!check_maxchar
 1409|       |        && PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to))
 1410|       |    {
 1411|       |        Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to);
 1412|       |        Py_UCS4 ch;
 1413|       |        Py_ssize_t i;
 1414|       |        for (i=0; i < how_many; i++) {
 1415|       |            ch = PyUnicode_READ(from_kind, from_data, from_start + i);
 1416|       |            assert(ch <= to_maxchar);
 1417|       |        }
 1418|       |    }
 1419|       |#endif
 1420|       |
 1421|  4.39k|    if (from_kind == to_kind) {
  ------------------
  |  Branch (1421:9): [True: 2.74k, False: 1.65k]
  ------------------
 1422|  2.74k|        if (check_maxchar
  ------------------
  |  Branch (1422:13): [True: 0, False: 2.74k]
  ------------------
 1423|      0|            && !PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to))
  ------------------
  |  |  227|  2.74k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          && !PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to))
  ------------------
  |  |  227|      0|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (1423:16): [True: 0, False: 0]
  ------------------
 1424|      0|        {
 1425|       |            /* Writing Latin-1 characters into an ASCII string requires to
 1426|       |               check that all written characters are pure ASCII */
 1427|      0|            Py_UCS4 max_char;
 1428|      0|            max_char = ucs1lib_find_max_char(from_data,
 1429|      0|                                             (const Py_UCS1*)from_data + how_many);
 1430|      0|            if (max_char >= 128)
  ------------------
  |  Branch (1430:17): [True: 0, False: 0]
  ------------------
 1431|      0|                return -1;
 1432|      0|        }
 1433|  2.74k|        memcpy((char*)to_data + to_kind * to_start,
 1434|  2.74k|                  (const char*)from_data + from_kind * from_start,
 1435|  2.74k|                  to_kind * how_many);
 1436|  2.74k|    }
 1437|  1.65k|    else if (from_kind == PyUnicode_1BYTE_KIND
  ------------------
  |  Branch (1437:14): [True: 1.53k, False: 112]
  ------------------
 1438|  1.53k|             && to_kind == PyUnicode_2BYTE_KIND)
  ------------------
  |  Branch (1438:17): [True: 1.02k, False: 511]
  ------------------
 1439|  1.02k|    {
 1440|  1.02k|        _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|  1.02k|    do {                                                \
  |  |   46|  1.02k|        to_type *_to = (to_type *)(to);                 \
  |  |   47|  1.02k|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|  1.02k|        const from_type *_end = (const from_type *)(end);\
  |  |   49|  1.02k|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|  1.02k|        const from_type *_unrolled_end =                \
  |  |   51|  1.02k|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|  1.02k|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|  10.6k|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 9.65k, False: 1.02k]
  |  |  ------------------
  |  |   53|  9.65k|            _to[0] = (to_type) _iter[0];                \
  |  |   54|  9.65k|            _to[1] = (to_type) _iter[1];                \
  |  |   55|  9.65k|            _to[2] = (to_type) _iter[2];                \
  |  |   56|  9.65k|            _to[3] = (to_type) _iter[3];                \
  |  |   57|  9.65k|            _iter += 4; _to += 4;                       \
  |  |   58|  9.65k|        }                                               \
  |  |   59|  1.33k|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 308, False: 1.02k]
  |  |  ------------------
  |  |   60|  1.02k|            *_to++ = (to_type) *_iter++;                \
  |  |   61|  1.02k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 1.02k]
  |  |  ------------------
  ------------------
 1441|  1.02k|            Py_UCS1, Py_UCS2,
 1442|  1.02k|            PyUnicode_1BYTE_DATA(from) + from_start,
 1443|  1.02k|            PyUnicode_1BYTE_DATA(from) + from_start + how_many,
 1444|  1.02k|            PyUnicode_2BYTE_DATA(to) + to_start
 1445|  1.02k|            );
 1446|  1.02k|    }
 1447|    623|    else if (from_kind == PyUnicode_1BYTE_KIND
  ------------------
  |  Branch (1447:14): [True: 511, False: 112]
  ------------------
 1448|    511|             && to_kind == PyUnicode_4BYTE_KIND)
  ------------------
  |  Branch (1448:17): [True: 511, False: 0]
  ------------------
 1449|    511|    {
 1450|    511|        _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|    511|    do {                                                \
  |  |   46|    511|        to_type *_to = (to_type *)(to);                 \
  |  |   47|    511|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|    511|        const from_type *_end = (const from_type *)(end);\
  |  |   49|    511|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|    511|        const from_type *_unrolled_end =                \
  |  |   51|    511|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|    511|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|  5.18k|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 4.67k, False: 511]
  |  |  ------------------
  |  |   53|  4.67k|            _to[0] = (to_type) _iter[0];                \
  |  |   54|  4.67k|            _to[1] = (to_type) _iter[1];                \
  |  |   55|  4.67k|            _to[2] = (to_type) _iter[2];                \
  |  |   56|  4.67k|            _to[3] = (to_type) _iter[3];                \
  |  |   57|  4.67k|            _iter += 4; _to += 4;                       \
  |  |   58|  4.67k|        }                                               \
  |  |   59|    573|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 62, False: 511]
  |  |  ------------------
  |  |   60|    511|            *_to++ = (to_type) *_iter++;                \
  |  |   61|    511|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 511]
  |  |  ------------------
  ------------------
 1451|    511|            Py_UCS1, Py_UCS4,
 1452|    511|            PyUnicode_1BYTE_DATA(from) + from_start,
 1453|    511|            PyUnicode_1BYTE_DATA(from) + from_start + how_many,
 1454|    511|            PyUnicode_4BYTE_DATA(to) + to_start
 1455|    511|            );
 1456|    511|    }
 1457|    112|    else if (from_kind == PyUnicode_2BYTE_KIND
  ------------------
  |  Branch (1457:14): [True: 112, False: 0]
  ------------------
 1458|    112|             && to_kind == PyUnicode_4BYTE_KIND)
  ------------------
  |  Branch (1458:17): [True: 112, False: 0]
  ------------------
 1459|    112|    {
 1460|    112|        _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|    112|    do {                                                \
  |  |   46|    112|        to_type *_to = (to_type *)(to);                 \
  |  |   47|    112|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|    112|        const from_type *_end = (const from_type *)(end);\
  |  |   49|    112|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|    112|        const from_type *_unrolled_end =                \
  |  |   51|    112|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|    112|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|  1.48k|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 1.37k, False: 112]
  |  |  ------------------
  |  |   53|  1.37k|            _to[0] = (to_type) _iter[0];                \
  |  |   54|  1.37k|            _to[1] = (to_type) _iter[1];                \
  |  |   55|  1.37k|            _to[2] = (to_type) _iter[2];                \
  |  |   56|  1.37k|            _to[3] = (to_type) _iter[3];                \
  |  |   57|  1.37k|            _iter += 4; _to += 4;                       \
  |  |   58|  1.37k|        }                                               \
  |  |   59|    260|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 148, False: 112]
  |  |  ------------------
  |  |   60|    148|            *_to++ = (to_type) *_iter++;                \
  |  |   61|    112|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 112]
  |  |  ------------------
  ------------------
 1461|    112|            Py_UCS2, Py_UCS4,
 1462|    112|            PyUnicode_2BYTE_DATA(from) + from_start,
 1463|    112|            PyUnicode_2BYTE_DATA(from) + from_start + how_many,
 1464|    112|            PyUnicode_4BYTE_DATA(to) + to_start
 1465|    112|            );
 1466|    112|    }
 1467|      0|    else {
 1468|      0|        assert (PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to));
  ------------------
  |  Branch (1468:9): [True: 0, False: 0]
  ------------------
 1469|       |
 1470|      0|        if (!check_maxchar) {
  ------------------
  |  Branch (1470:13): [True: 0, False: 0]
  ------------------
 1471|      0|            if (from_kind == PyUnicode_2BYTE_KIND
  ------------------
  |  Branch (1471:17): [True: 0, False: 0]
  ------------------
 1472|      0|                && to_kind == PyUnicode_1BYTE_KIND)
  ------------------
  |  Branch (1472:20): [True: 0, False: 0]
  ------------------
 1473|      0|            {
 1474|      0|                _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|      0|    do {                                                \
  |  |   46|      0|        to_type *_to = (to_type *)(to);                 \
  |  |   47|      0|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|      0|        const from_type *_end = (const from_type *)(end);\
  |  |   49|      0|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|      0|        const from_type *_unrolled_end =                \
  |  |   51|      0|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|      0|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|      0|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   53|      0|            _to[0] = (to_type) _iter[0];                \
  |  |   54|      0|            _to[1] = (to_type) _iter[1];                \
  |  |   55|      0|            _to[2] = (to_type) _iter[2];                \
  |  |   56|      0|            _to[3] = (to_type) _iter[3];                \
  |  |   57|      0|            _iter += 4; _to += 4;                       \
  |  |   58|      0|        }                                               \
  |  |   59|      0|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   60|      0|            *_to++ = (to_type) *_iter++;                \
  |  |   61|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1475|      0|                    Py_UCS2, Py_UCS1,
 1476|      0|                    PyUnicode_2BYTE_DATA(from) + from_start,
 1477|      0|                    PyUnicode_2BYTE_DATA(from) + from_start + how_many,
 1478|      0|                    PyUnicode_1BYTE_DATA(to) + to_start
 1479|      0|                    );
 1480|      0|            }
 1481|      0|            else if (from_kind == PyUnicode_4BYTE_KIND
  ------------------
  |  Branch (1481:22): [True: 0, False: 0]
  ------------------
 1482|      0|                     && to_kind == PyUnicode_1BYTE_KIND)
  ------------------
  |  Branch (1482:25): [True: 0, False: 0]
  ------------------
 1483|      0|            {
 1484|      0|                _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|      0|    do {                                                \
  |  |   46|      0|        to_type *_to = (to_type *)(to);                 \
  |  |   47|      0|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|      0|        const from_type *_end = (const from_type *)(end);\
  |  |   49|      0|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|      0|        const from_type *_unrolled_end =                \
  |  |   51|      0|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|      0|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|      0|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   53|      0|            _to[0] = (to_type) _iter[0];                \
  |  |   54|      0|            _to[1] = (to_type) _iter[1];                \
  |  |   55|      0|            _to[2] = (to_type) _iter[2];                \
  |  |   56|      0|            _to[3] = (to_type) _iter[3];                \
  |  |   57|      0|            _iter += 4; _to += 4;                       \
  |  |   58|      0|        }                                               \
  |  |   59|      0|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   60|      0|            *_to++ = (to_type) *_iter++;                \
  |  |   61|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1485|      0|                    Py_UCS4, Py_UCS1,
 1486|      0|                    PyUnicode_4BYTE_DATA(from) + from_start,
 1487|      0|                    PyUnicode_4BYTE_DATA(from) + from_start + how_many,
 1488|      0|                    PyUnicode_1BYTE_DATA(to) + to_start
 1489|      0|                    );
 1490|      0|            }
 1491|      0|            else if (from_kind == PyUnicode_4BYTE_KIND
  ------------------
  |  Branch (1491:22): [True: 0, False: 0]
  ------------------
 1492|      0|                     && to_kind == PyUnicode_2BYTE_KIND)
  ------------------
  |  Branch (1492:25): [True: 0, False: 0]
  ------------------
 1493|      0|            {
 1494|      0|                _PyUnicode_CONVERT_BYTES(
  ------------------
  |  |   45|      0|    do {                                                \
  |  |   46|      0|        to_type *_to = (to_type *)(to);                 \
  |  |   47|      0|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|      0|        const from_type *_end = (const from_type *)(end);\
  |  |   49|      0|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|      0|        const from_type *_unrolled_end =                \
  |  |   51|      0|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|      0|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|      0|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   53|      0|            _to[0] = (to_type) _iter[0];                \
  |  |   54|      0|            _to[1] = (to_type) _iter[1];                \
  |  |   55|      0|            _to[2] = (to_type) _iter[2];                \
  |  |   56|      0|            _to[3] = (to_type) _iter[3];                \
  |  |   57|      0|            _iter += 4; _to += 4;                       \
  |  |   58|      0|        }                                               \
  |  |   59|      0|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   60|      0|            *_to++ = (to_type) *_iter++;                \
  |  |   61|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1495|      0|                    Py_UCS4, Py_UCS2,
 1496|      0|                    PyUnicode_4BYTE_DATA(from) + from_start,
 1497|      0|                    PyUnicode_4BYTE_DATA(from) + from_start + how_many,
 1498|      0|                    PyUnicode_2BYTE_DATA(to) + to_start
 1499|      0|                    );
 1500|      0|            }
 1501|      0|            else {
 1502|      0|                Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1503|      0|            }
 1504|      0|        }
 1505|      0|        else {
 1506|      0|            const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to);
  ------------------
  |  |  405|      0|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1507|      0|            Py_UCS4 ch;
 1508|      0|            Py_ssize_t i;
 1509|       |
 1510|      0|            for (i=0; i < how_many; i++) {
  ------------------
  |  Branch (1510:23): [True: 0, False: 0]
  ------------------
 1511|      0|                ch = PyUnicode_READ(from_kind, from_data, from_start + i);
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
 1512|      0|                if (ch > to_maxchar)
  ------------------
  |  Branch (1512:21): [True: 0, False: 0]
  ------------------
 1513|      0|                    return -1;
 1514|      0|                PyUnicode_WRITE(to_kind, to_data, to_start + i, ch);
  ------------------
  |  |  335|      0|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|      0|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1515|      0|            }
 1516|      0|        }
 1517|      0|    }
 1518|  4.39k|    return 0;
 1519|  4.39k|}
unicodeobject.c:unicode_resize:
 1753|      4|{
 1754|      4|    PyObject *unicode;
 1755|      4|    Py_ssize_t old_length;
 1756|       |
 1757|      4|    assert(p_unicode != NULL);
  ------------------
  |  Branch (1757:5): [True: 4, False: 0]
  ------------------
 1758|      4|    unicode = *p_unicode;
 1759|       |
 1760|      4|    assert(unicode != NULL);
  ------------------
  |  Branch (1760:5): [True: 4, False: 0]
  ------------------
 1761|      4|    assert(PyUnicode_Check(unicode));
  ------------------
  |  Branch (1761:5): [True: 4, False: 0]
  ------------------
 1762|      4|    assert(0 <= length);
  ------------------
  |  Branch (1762:5): [True: 4, False: 0]
  ------------------
 1763|       |
 1764|      4|    old_length = PyUnicode_GET_LENGTH(unicode);
  ------------------
  |  |  299|      4|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1765|      4|    if (old_length == length)
  ------------------
  |  Branch (1765:9): [True: 0, False: 4]
  ------------------
 1766|      0|        return 0;
 1767|       |
 1768|      4|    if (length == 0) {
  ------------------
  |  Branch (1768:9): [True: 0, False: 4]
  ------------------
 1769|      0|        PyObject *empty = _PyUnicode_GetEmpty();
 1770|      0|        Py_SETREF(*p_unicode, empty);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1771|      0|        return 0;
 1772|      0|    }
 1773|       |
 1774|      4|    if (!_PyUnicode_IsModifiable(unicode)) {
  ------------------
  |  Branch (1774:9): [True: 0, False: 4]
  ------------------
 1775|      0|        PyObject *copy = resize_copy(unicode, length);
 1776|      0|        if (copy == NULL)
  ------------------
  |  Branch (1776:13): [True: 0, False: 0]
  ------------------
 1777|      0|            return -1;
 1778|      0|        Py_SETREF(*p_unicode, copy);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1779|      0|        return 0;
 1780|      0|    }
 1781|       |
 1782|      4|    if (PyUnicode_IS_COMPACT(unicode)) {
  ------------------
  |  |  234|      4|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (234:34): [True: 4, False: 0]
  |  |  ------------------
  ------------------
 1783|      4|        PyObject *new_unicode = _PyUnicode_ResizeCompact(unicode, length);
 1784|      4|        if (new_unicode == NULL)
  ------------------
  |  Branch (1784:13): [True: 0, False: 4]
  ------------------
 1785|      0|            return -1;
 1786|      4|        *p_unicode = new_unicode;
 1787|      4|        return 0;
 1788|      4|    }
 1789|      0|    return resize_inplace(unicode, length);
 1790|      4|}
unicodeobject.c:get_latin1_char:
 1811|    306|{
 1812|    306|    PyObject *o = LATIN1(ch);
  ------------------
  |  |  184|    306|#define LATIN1 _Py_LATIN1_CHR
  |  |  ------------------
  |  |  |  |  921|    306|    ((CH) < 128 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (921:6): [True: 306, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  922|    306|     ? (PyObject*)&_Py_SINGLETON(strings).ascii[(CH)] \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    306|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    306|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  923|    306|     : (PyObject*)&_Py_SINGLETON(strings).latin1[(CH) - 128])
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1813|    306|    return o;
 1814|    306|}
unicodeobject.c:find_maxchar_surrogates:
 1588|    122|{
 1589|    122|    const wchar_t *iter;
 1590|    122|    Py_UCS4 ch;
 1591|       |
 1592|    122|    assert(num_surrogates != NULL && maxchar != NULL);
  ------------------
  |  Branch (1592:5): [True: 122, False: 0]
  |  Branch (1592:5): [True: 122, False: 0]
  ------------------
 1593|    122|    *num_surrogates = 0;
 1594|    122|    *maxchar = 0;
 1595|       |
 1596|  4.68k|    for (iter = begin; iter < end; ) {
  ------------------
  |  Branch (1596:24): [True: 4.55k, False: 122]
  ------------------
 1597|       |#if SIZEOF_WCHAR_T == 2
 1598|       |        if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])
 1599|       |            && (iter+1) < end
 1600|       |            && Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
 1601|       |        {
 1602|       |            ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
 1603|       |            ++(*num_surrogates);
 1604|       |            iter += 2;
 1605|       |        }
 1606|       |        else
 1607|       |#endif
 1608|  4.55k|        {
 1609|  4.55k|            ch = *iter;
 1610|  4.55k|            iter++;
 1611|  4.55k|        }
 1612|  4.55k|        if (ch > *maxchar) {
  ------------------
  |  Branch (1612:13): [True: 378, False: 4.18k]
  ------------------
 1613|    378|            *maxchar = ch;
 1614|    378|            if (*maxchar > MAX_UNICODE) {
  ------------------
  |  |  104|    378|#define MAX_UNICODE _Py_MAX_UNICODE
  |  |  ------------------
  |  |  |  |   16|    378|#define _Py_MAX_UNICODE 0x10ffff
  |  |  ------------------
  ------------------
  |  Branch (1614:17): [True: 0, False: 378]
  ------------------
 1615|      0|                PyErr_Format(PyExc_ValueError,
 1616|      0|                             "character U+%x is not in range [U+0000; U+%x]",
 1617|      0|                             ch, MAX_UNICODE);
  ------------------
  |  |  104|      0|#define MAX_UNICODE _Py_MAX_UNICODE
  |  |  ------------------
  |  |  |  |   16|      0|#define _Py_MAX_UNICODE 0x10ffff
  |  |  ------------------
  ------------------
 1618|      0|                return -1;
 1619|      0|            }
 1620|    378|        }
 1621|  4.55k|    }
 1622|    122|    return 0;
 1623|    122|}
unicodeobject.c:unicode_write_widechar:
 1847|    122|{
 1848|    122|    switch (kind) {
 1849|    122|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (1849:5): [True: 122, False: 0]
  ------------------
 1850|    122|        _PyUnicode_CONVERT_BYTES(wchar_t, unsigned char, u, u + size, data);
  ------------------
  |  |   45|    122|    do {                                                \
  |  |   46|    122|        to_type *_to = (to_type *)(to);                 \
  |  |   47|    122|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|    122|        const from_type *_end = (const from_type *)(end);\
  |  |   49|    122|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|    122|        const from_type *_unrolled_end =                \
  |  |   51|    122|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|    122|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|  1.20k|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 1.08k, False: 122]
  |  |  ------------------
  |  |   53|  1.08k|            _to[0] = (to_type) _iter[0];                \
  |  |   54|  1.08k|            _to[1] = (to_type) _iter[1];                \
  |  |   55|  1.08k|            _to[2] = (to_type) _iter[2];                \
  |  |   56|  1.08k|            _to[3] = (to_type) _iter[3];                \
  |  |   57|  1.08k|            _iter += 4; _to += 4;                       \
  |  |   58|  1.08k|        }                                               \
  |  |   59|    336|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 214, False: 122]
  |  |  ------------------
  |  |   60|    214|            *_to++ = (to_type) *_iter++;                \
  |  |   61|    122|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 122]
  |  |  ------------------
  ------------------
 1851|    122|        break;
 1852|       |
 1853|      0|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (1853:5): [True: 0, False: 122]
  ------------------
 1854|       |#if SIZEOF_WCHAR_T == 2
 1855|       |        memcpy(data, u, size * 2);
 1856|       |#else
 1857|      0|        _PyUnicode_CONVERT_BYTES(wchar_t, Py_UCS2, u, u + size, data);
  ------------------
  |  |   45|      0|    do {                                                \
  |  |   46|      0|        to_type *_to = (to_type *)(to);                 \
  |  |   47|      0|        const from_type *_iter = (const from_type *)(begin);\
  |  |   48|      0|        const from_type *_end = (const from_type *)(end);\
  |  |   49|      0|        Py_ssize_t n = (_end) - (_iter);                \
  |  |   50|      0|        const from_type *_unrolled_end =                \
  |  |   51|      0|            _iter + _Py_SIZE_ROUND_DOWN(n, 4);          \
  |  |  ------------------
  |  |  |  |  211|      0|#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1))
  |  |  ------------------
  |  |   52|      0|        while (_iter < (_unrolled_end)) {               \
  |  |  ------------------
  |  |  |  Branch (52:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   53|      0|            _to[0] = (to_type) _iter[0];                \
  |  |   54|      0|            _to[1] = (to_type) _iter[1];                \
  |  |   55|      0|            _to[2] = (to_type) _iter[2];                \
  |  |   56|      0|            _to[3] = (to_type) _iter[3];                \
  |  |   57|      0|            _iter += 4; _to += 4;                       \
  |  |   58|      0|        }                                               \
  |  |   59|      0|        while (_iter < (_end))                          \
  |  |  ------------------
  |  |  |  Branch (59:16): [True: 0, False: 0]
  |  |  ------------------
  |  |   60|      0|            *_to++ = (to_type) *_iter++;                \
  |  |   61|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (61:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1858|      0|#endif
 1859|      0|        break;
 1860|       |
 1861|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (1861:5): [True: 0, False: 122]
  ------------------
 1862|      0|    {
 1863|       |#if SIZEOF_WCHAR_T == 2
 1864|       |        // Convert a 16-bits wchar_t representation to UCS4, this will decode
 1865|       |        // surrogate pairs.
 1866|       |        const wchar_t *end = u + size;
 1867|       |        Py_UCS4 *ucs4_out = (Py_UCS4*)data;
 1868|       |#  ifndef NDEBUG
 1869|       |        Py_UCS4 *ucs4_end = (Py_UCS4*)data + (size - num_surrogates);
 1870|       |#  endif
 1871|       |        for (const wchar_t *iter = u; iter < end; ) {
 1872|       |            assert(ucs4_out < ucs4_end);
 1873|       |            if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])
 1874|       |                && (iter+1) < end
 1875|       |                && Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
 1876|       |            {
 1877|       |                *ucs4_out++ = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
 1878|       |                iter += 2;
 1879|       |            }
 1880|       |            else {
 1881|       |                *ucs4_out++ = *iter;
 1882|       |                iter++;
 1883|       |            }
 1884|       |        }
 1885|       |        assert(ucs4_out == ucs4_end);
 1886|       |#else
 1887|      0|        assert(num_surrogates == 0);
  ------------------
  |  Branch (1887:9): [True: 0, False: 0]
  ------------------
 1888|      0|        memcpy(data, u, size * 4);
 1889|      0|#endif
 1890|      0|        break;
 1891|      0|    }
 1892|      0|    default:
  ------------------
  |  Branch (1892:5): [True: 0, False: 122]
  ------------------
 1893|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1894|    122|    }
 1895|    122|}
unicodeobject.c:_PyUnicode_FromUCS1:
 2157|  8.96k|{
 2158|  8.96k|    PyObject *res;
 2159|  8.96k|    unsigned char max_char;
 2160|       |
 2161|  8.96k|    if (size == 0) {
  ------------------
  |  Branch (2161:9): [True: 6, False: 8.95k]
  ------------------
 2162|      6|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      6|    do {                             \
  |  |  376|      6|        return _PyUnicode_GetEmpty();\
  |  |  377|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2163|      6|    }
 2164|  8.96k|    assert(size > 0);
  ------------------
  |  Branch (2164:5): [True: 8.95k, False: 0]
  ------------------
 2165|  8.95k|    if (size == 1) {
  ------------------
  |  Branch (2165:9): [True: 276, False: 8.68k]
  ------------------
 2166|    276|        return get_latin1_char(u[0]);
 2167|    276|    }
 2168|       |
 2169|  8.68k|    max_char = ucs1lib_find_max_char(u, u + size);
 2170|  8.68k|    res = PyUnicode_New(size, max_char);
 2171|  8.68k|    if (!res)
  ------------------
  |  Branch (2171:9): [True: 0, False: 8.68k]
  ------------------
 2172|      0|        return NULL;
 2173|  8.68k|    memcpy(PyUnicode_1BYTE_DATA(res), u, size);
  ------------------
  |  |  291|  8.68k|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|  8.68k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 2174|  8.68k|    assert(_PyUnicode_CheckConsistency(res, 1));
  ------------------
  |  Branch (2174:5): [True: 8.68k, False: 0]
  ------------------
 2175|  8.68k|    return res;
 2176|  8.68k|}
unicodeobject.c:unicode_from_format:
 3057|  3.70k|{
 3058|  3.70k|    Py_ssize_t len = strlen(format);
 3059|  3.70k|    writer->min_length += len + 100;
 3060|  3.70k|    writer->overallocate = 1;
 3061|       |
 3062|       |    // Copy varags to be able to pass a reference to a subfunction.
 3063|  3.70k|    va_list vargs2;
 3064|  3.70k|    va_copy(vargs2, vargs);
 3065|       |
 3066|       |    // _PyUnicodeWriter_WriteASCIIString() below requires the format string
 3067|       |    // to be encoded to ASCII.
 3068|  3.70k|    int is_ascii = (ucs1lib_find_max_char((Py_UCS1*)format, (Py_UCS1*)format + len) < 128);
 3069|  3.70k|    if (!is_ascii) {
  ------------------
  |  Branch (3069:9): [True: 0, False: 3.70k]
  ------------------
 3070|      0|        Py_ssize_t i;
 3071|      0|        for (i=0; i < len && (unsigned char)format[i] <= 127; i++);
  ------------------
  |  Branch (3071:19): [True: 0, False: 0]
  |  Branch (3071:30): [True: 0, False: 0]
  ------------------
 3072|      0|        PyErr_Format(PyExc_ValueError,
 3073|      0|            "PyUnicode_FromFormatV() expects an ASCII-encoded format "
 3074|      0|            "string, got a non-ASCII byte: 0x%02x",
 3075|      0|            (unsigned char)format[i]);
 3076|      0|        goto fail;
 3077|      0|    }
 3078|       |
 3079|  13.1k|    for (const char *f = format; *f; ) {
  ------------------
  |  Branch (3079:34): [True: 9.39k, False: 3.70k]
  ------------------
 3080|  9.39k|        if (*f == '%') {
  ------------------
  |  Branch (3080:13): [True: 3.81k, False: 5.57k]
  ------------------
 3081|  3.81k|            f = unicode_fromformat_arg(writer, f, &vargs2);
 3082|  3.81k|            if (f == NULL)
  ------------------
  |  Branch (3082:17): [True: 0, False: 3.81k]
  ------------------
 3083|      0|                goto fail;
 3084|  3.81k|        }
 3085|  5.57k|        else {
 3086|  5.57k|            const char *p = strchr(f, '%');
 3087|  5.57k|            if (p != NULL) {
  ------------------
  |  Branch (3087:17): [True: 3.81k, False: 1.76k]
  ------------------
 3088|  3.81k|                len = p - f;
 3089|  3.81k|            }
 3090|  1.76k|            else {
 3091|  1.76k|                len = strlen(f);
 3092|  1.76k|                writer->overallocate = 0;
 3093|  1.76k|            }
 3094|       |
 3095|  5.57k|            if (_PyUnicodeWriter_WriteASCIIString(writer, f, len) < 0) {
  ------------------
  |  Branch (3095:17): [True: 0, False: 5.57k]
  ------------------
 3096|      0|                goto fail;
 3097|      0|            }
 3098|  5.57k|            f += len;
 3099|  5.57k|        }
 3100|  9.39k|    }
 3101|  3.70k|    va_end(vargs2);
 3102|  3.70k|    return 0;
 3103|       |
 3104|      0|  fail:
 3105|       |    va_end(vargs2);
 3106|      0|    return -1;
 3107|  3.70k|}
unicodeobject.c:unicode_fromformat_arg:
 2643|  3.81k|{
 2644|  3.81k|    const char *p;
 2645|  3.81k|    Py_ssize_t len;
 2646|  3.81k|    int flags = 0;
 2647|  3.81k|    Py_ssize_t width;
 2648|  3.81k|    Py_ssize_t precision;
 2649|       |
 2650|  3.81k|    p = f;
 2651|  3.81k|    f++;
 2652|  3.81k|    if (*f == '%') {
  ------------------
  |  Branch (2652:9): [True: 0, False: 3.81k]
  ------------------
 2653|      0|        if (_PyUnicodeWriter_WriteCharInline(writer, '%') < 0)
  ------------------
  |  Branch (2653:13): [True: 0, False: 0]
  ------------------
 2654|      0|            return NULL;
 2655|      0|        f++;
 2656|      0|        return f;
 2657|      0|    }
 2658|       |
 2659|       |    /* Parse flags. Example: "%-i" => flags=F_LJUST. */
 2660|       |    /* Flags '+', ' ' and '#' are not particularly useful.
 2661|       |     * They are not worth the implementation and maintenance costs.
 2662|       |     * In addition, '#' should add "0" for "o" conversions for compatibility
 2663|       |     * with printf, but it would confuse Python users. */
 2664|  3.81k|    while (1) {
  ------------------
  |  Branch (2664:12): [True: 3.81k, Folded]
  ------------------
 2665|  3.81k|        switch (*f++) {
  ------------------
  |  Branch (2665:17): [True: 0, False: 3.81k]
  ------------------
 2666|      0|        case '-': flags |= F_LJUST; continue;
  ------------------
  |  |   18|      0|#define F_LJUST (1<<0)
  ------------------
  |  Branch (2666:9): [True: 0, False: 3.81k]
  ------------------
 2667|      0|        case '0': flags |= F_ZERO; continue;
  ------------------
  |  |   22|      0|#define F_ZERO  (1<<4)
  ------------------
  |  Branch (2667:9): [True: 0, False: 3.81k]
  ------------------
 2668|      0|        case '#': flags |= F_ALT; continue;
  ------------------
  |  |   21|      0|#define F_ALT   (1<<3)
  ------------------
  |  Branch (2668:9): [True: 0, False: 3.81k]
  ------------------
 2669|  3.81k|        }
 2670|  3.81k|        f--;
 2671|  3.81k|        break;
 2672|  3.81k|    }
 2673|       |
 2674|       |    /* parse the width.precision part, e.g. "%2.5s" => width=2, precision=5 */
 2675|  3.81k|    width = -1;
 2676|  3.81k|    if (*f == '*') {
  ------------------
  |  Branch (2676:9): [True: 0, False: 3.81k]
  ------------------
 2677|      0|        width = va_arg(*vargs, int);
 2678|      0|        if (width < 0) {
  ------------------
  |  Branch (2678:13): [True: 0, False: 0]
  ------------------
 2679|      0|            flags |= F_LJUST;
  ------------------
  |  |   18|      0|#define F_LJUST (1<<0)
  ------------------
 2680|      0|            width = -width;
 2681|      0|        }
 2682|      0|        f++;
 2683|      0|    }
 2684|  3.81k|    else if (Py_ISDIGIT((unsigned)*f)) {
  ------------------
  |  |   24|  3.81k|#define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |  138|  3.81k|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |   11|  3.81k|#define PY_CTF_DIGIT  0x04
  |  |  ------------------
  |  |  |  Branch (24:24): [True: 0, False: 3.81k]
  |  |  ------------------
  ------------------
 2685|      0|        width = *f - '0';
 2686|      0|        f++;
 2687|      0|        while (Py_ISDIGIT((unsigned)*f)) {
  ------------------
  |  |   24|      0|#define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |  138|      0|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |   11|      0|#define PY_CTF_DIGIT  0x04
  |  |  ------------------
  |  |  |  Branch (24:24): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2688|      0|            if (width > (PY_SSIZE_T_MAX - ((int)*f - '0')) / 10) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (2688:17): [True: 0, False: 0]
  ------------------
 2689|      0|                PyErr_SetString(PyExc_ValueError,
 2690|      0|                                "width too big");
 2691|      0|                return NULL;
 2692|      0|            }
 2693|      0|            width = (width * 10) + (*f - '0');
 2694|      0|            f++;
 2695|      0|        }
 2696|      0|    }
 2697|  3.81k|    precision = -1;
 2698|  3.81k|    if (*f == '.') {
  ------------------
  |  Branch (2698:9): [True: 1.74k, False: 2.07k]
  ------------------
 2699|  1.74k|        f++;
 2700|  1.74k|        if (*f == '*') {
  ------------------
  |  Branch (2700:13): [True: 0, False: 1.74k]
  ------------------
 2701|      0|            precision = va_arg(*vargs, int);
 2702|      0|            if (precision < 0) {
  ------------------
  |  Branch (2702:17): [True: 0, False: 0]
  ------------------
 2703|      0|                precision = -2;
 2704|      0|            }
 2705|      0|            f++;
 2706|      0|        }
 2707|  1.74k|        else if (Py_ISDIGIT((unsigned)*f)) {
  ------------------
  |  |   24|  1.74k|#define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |  138|  1.74k|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |   11|  1.74k|#define PY_CTF_DIGIT  0x04
  |  |  ------------------
  |  |  |  Branch (24:24): [True: 1.74k, False: 0]
  |  |  ------------------
  ------------------
 2708|  1.74k|            precision = (*f - '0');
 2709|  1.74k|            f++;
 2710|  5.23k|            while (Py_ISDIGIT((unsigned)*f)) {
  ------------------
  |  |   24|  5.23k|#define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |  138|  5.23k|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISDIGIT(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT)
  |  |  ------------------
  |  |  |  |   11|  5.23k|#define PY_CTF_DIGIT  0x04
  |  |  ------------------
  |  |  |  Branch (24:24): [True: 3.48k, False: 1.74k]
  |  |  ------------------
  ------------------
 2711|  3.48k|                if (precision > (PY_SSIZE_T_MAX - ((int)*f - '0')) / 10) {
  ------------------
  |  |  137|  3.48k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (2711:21): [True: 0, False: 3.48k]
  ------------------
 2712|      0|                    PyErr_SetString(PyExc_ValueError,
 2713|      0|                                    "precision too big");
 2714|      0|                    return NULL;
 2715|      0|                }
 2716|  3.48k|                precision = (precision * 10) + (*f - '0');
 2717|  3.48k|                f++;
 2718|  3.48k|            }
 2719|  1.74k|        }
 2720|  1.74k|    }
 2721|       |
 2722|  3.81k|    int sizemod = 0;
 2723|  3.81k|    if (*f == 'l') {
  ------------------
  |  Branch (2723:9): [True: 0, False: 3.81k]
  ------------------
 2724|      0|        if (f[1] == 'l') {
  ------------------
  |  Branch (2724:13): [True: 0, False: 0]
  ------------------
 2725|      0|            sizemod = F_LONGLONG;
  ------------------
  |  | 2635|      0|#define F_LONGLONG 2
  ------------------
 2726|      0|            f += 2;
 2727|      0|        }
 2728|      0|        else {
 2729|      0|            sizemod = F_LONG;
  ------------------
  |  | 2634|      0|#define F_LONG 1
  ------------------
 2730|      0|            ++f;
 2731|      0|        }
 2732|      0|    }
 2733|  3.81k|    else if (*f == 'z') {
  ------------------
  |  Branch (2733:14): [True: 0, False: 3.81k]
  ------------------
 2734|      0|        sizemod = F_SIZE;
  ------------------
  |  | 2636|      0|#define F_SIZE 3
  ------------------
 2735|      0|        ++f;
 2736|      0|    }
 2737|  3.81k|    else if (*f == 't') {
  ------------------
  |  Branch (2737:14): [True: 0, False: 3.81k]
  ------------------
 2738|      0|        sizemod = F_PTRDIFF;
  ------------------
  |  | 2637|      0|#define F_PTRDIFF 4
  ------------------
 2739|      0|        ++f;
 2740|      0|    }
 2741|  3.81k|    else if (*f == 'j') {
  ------------------
  |  Branch (2741:14): [True: 0, False: 3.81k]
  ------------------
 2742|      0|        sizemod = F_INTMAX;
  ------------------
  |  | 2638|      0|#define F_INTMAX 5
  ------------------
 2743|      0|        ++f;
 2744|      0|    }
 2745|  3.81k|    if (f[0] != '\0' && f[1] == '\0')
  ------------------
  |  Branch (2745:9): [True: 3.81k, False: 0]
  |  Branch (2745:25): [True: 1.94k, False: 1.87k]
  ------------------
 2746|  1.94k|        writer->overallocate = 0;
 2747|       |
 2748|  3.81k|    switch (*f) {
 2749|      0|    case 'd': case 'i': case 'o': case 'u': case 'x': case 'X':
  ------------------
  |  Branch (2749:5): [True: 0, False: 3.81k]
  |  Branch (2749:15): [True: 0, False: 3.81k]
  |  Branch (2749:25): [True: 0, False: 3.81k]
  |  Branch (2749:35): [True: 0, False: 3.81k]
  |  Branch (2749:45): [True: 0, False: 3.81k]
  |  Branch (2749:55): [True: 0, False: 3.81k]
  ------------------
 2750|      0|        break;
 2751|      0|    case 'c': case 'p':
  ------------------
  |  Branch (2751:5): [True: 0, False: 3.81k]
  |  Branch (2751:15): [True: 0, False: 3.81k]
  ------------------
 2752|      0|        if (sizemod || width >= 0 || precision >= 0) goto invalid_format;
  ------------------
  |  Branch (2752:13): [True: 0, False: 0]
  |  Branch (2752:24): [True: 0, False: 0]
  |  Branch (2752:38): [True: 0, False: 0]
  ------------------
 2753|      0|        break;
 2754|  1.81k|    case 's':
  ------------------
  |  Branch (2754:5): [True: 1.81k, False: 2.00k]
  ------------------
 2755|  1.81k|    case 'V':
  ------------------
  |  Branch (2755:5): [True: 0, False: 3.81k]
  ------------------
 2756|  1.81k|        if (sizemod && sizemod != F_LONG) goto invalid_format;
  ------------------
  |  | 2634|      0|#define F_LONG 1
  ------------------
  |  Branch (2756:13): [True: 0, False: 1.81k]
  |  Branch (2756:24): [True: 0, False: 0]
  ------------------
 2757|  1.81k|        break;
 2758|  2.00k|    default:
  ------------------
  |  Branch (2758:5): [True: 2.00k, False: 1.81k]
  ------------------
 2759|  2.00k|        if (sizemod) goto invalid_format;
  ------------------
  |  Branch (2759:13): [True: 0, False: 2.00k]
  ------------------
 2760|  2.00k|        break;
 2761|  3.81k|    }
 2762|       |
 2763|  3.81k|    switch (*f) {
 2764|      0|    case 'c':
  ------------------
  |  Branch (2764:5): [True: 0, False: 3.81k]
  ------------------
 2765|      0|    {
 2766|      0|        int ordinal = va_arg(*vargs, int);
 2767|      0|        if (ordinal < 0 || ordinal > MAX_UNICODE) {
  ------------------
  |  |  104|      0|#define MAX_UNICODE _Py_MAX_UNICODE
  |  |  ------------------
  |  |  |  |   16|      0|#define _Py_MAX_UNICODE 0x10ffff
  |  |  ------------------
  ------------------
  |  Branch (2767:13): [True: 0, False: 0]
  |  Branch (2767:28): [True: 0, False: 0]
  ------------------
 2768|      0|            PyErr_SetString(PyExc_OverflowError,
 2769|      0|                            "character argument not in range(0x110000)");
 2770|      0|            return NULL;
 2771|      0|        }
 2772|      0|        if (_PyUnicodeWriter_WriteCharInline(writer, ordinal) < 0)
  ------------------
  |  Branch (2772:13): [True: 0, False: 0]
  ------------------
 2773|      0|            return NULL;
 2774|      0|        break;
 2775|      0|    }
 2776|       |
 2777|      0|    case 'd': case 'i':
  ------------------
  |  Branch (2777:5): [True: 0, False: 3.81k]
  |  Branch (2777:15): [True: 0, False: 3.81k]
  ------------------
 2778|      0|    case 'o': case 'u': case 'x': case 'X':
  ------------------
  |  Branch (2778:5): [True: 0, False: 3.81k]
  |  Branch (2778:15): [True: 0, False: 3.81k]
  |  Branch (2778:25): [True: 0, False: 3.81k]
  |  Branch (2778:35): [True: 0, False: 3.81k]
  ------------------
 2779|      0|    {
 2780|      0|        char buffer[MAX_INTMAX_CHARS];
 2781|       |
 2782|       |        // Fill buffer using sprinf, with one of many possible format
 2783|       |        // strings, like "%llX" for `long long` in hexadecimal.
 2784|       |        // The type/size is in `sizemod`; the format is in `*f`.
 2785|       |
 2786|       |        // Use macros with nested switches to keep the sprintf format strings
 2787|       |        // as compile-time literals, avoiding warnings and maybe allowing
 2788|       |        // optimizations.
 2789|       |
 2790|       |        // `SPRINT` macro does one sprintf
 2791|       |        // Example usage: SPRINT("l", "X", unsigned long) expands to
 2792|       |        // sprintf(buffer, "%" "l" "X", va_arg(*vargs, unsigned long))
 2793|      0|        #define SPRINT(SIZE_SPEC, FMT_CHAR, TYPE) \
 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
 2795|       |
 2796|       |        // One inner switch to handle all format variants
 2797|      0|        #define DO_SPRINTS(SIZE_SPEC, SIGNED_TYPE, UNSIGNED_TYPE)             \
 2798|      0|            switch (*f) {                                                     \
 2799|      0|                case 'o': len = SPRINT(SIZE_SPEC, "o", UNSIGNED_TYPE); break; \
 2800|      0|                case 'u': len = SPRINT(SIZE_SPEC, "u", UNSIGNED_TYPE); break; \
 2801|      0|                case 'x': len = SPRINT(SIZE_SPEC, "x", UNSIGNED_TYPE); break; \
 2802|      0|                case 'X': len = SPRINT(SIZE_SPEC, "X", UNSIGNED_TYPE); break; \
 2803|      0|                default:  len = SPRINT(SIZE_SPEC, "d", SIGNED_TYPE); break;   \
 2804|      0|            }
 2805|       |
 2806|       |        // Outer switch to handle all the sizes/types
 2807|      0|        switch (sizemod) {
 2808|      0|            case F_LONG:     DO_SPRINTS("l", long, unsigned long); break;
  ------------------
  |  | 2634|      0|#define F_LONG 1
  ------------------
                          case F_LONG:     DO_SPRINTS("l", long, unsigned long); break;
  ------------------
  |  | 2798|      0|            switch (*f) {                                                     \
  |  | 2799|      0|                case 'o': len = SPRINT(SIZE_SPEC, "o", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2799:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2800|      0|                case 'u': len = SPRINT(SIZE_SPEC, "u", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2800:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2801|      0|                case 'x': len = SPRINT(SIZE_SPEC, "x", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2801:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2802|      0|                case 'X': len = SPRINT(SIZE_SPEC, "X", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2802:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2803|      0|                default:  len = SPRINT(SIZE_SPEC, "d", SIGNED_TYPE); break;   \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2803:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2804|      0|            }
  ------------------
  |  Branch (2808:13): [True: 0, False: 0]
  ------------------
 2809|      0|            case F_LONGLONG: DO_SPRINTS("ll", long long, unsigned long long); break;
  ------------------
  |  | 2635|      0|#define F_LONGLONG 2
  ------------------
                          case F_LONGLONG: DO_SPRINTS("ll", long long, unsigned long long); break;
  ------------------
  |  | 2798|      0|            switch (*f) {                                                     \
  |  | 2799|      0|                case 'o': len = SPRINT(SIZE_SPEC, "o", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2799:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2800|      0|                case 'u': len = SPRINT(SIZE_SPEC, "u", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2800:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2801|      0|                case 'x': len = SPRINT(SIZE_SPEC, "x", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2801:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2802|      0|                case 'X': len = SPRINT(SIZE_SPEC, "X", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2802:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2803|      0|                default:  len = SPRINT(SIZE_SPEC, "d", SIGNED_TYPE); break;   \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2803:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2804|      0|            }
  ------------------
  |  Branch (2809:13): [True: 0, False: 0]
  ------------------
 2810|      0|            case F_SIZE:     DO_SPRINTS("z", Py_ssize_t, size_t); break;
  ------------------
  |  | 2636|      0|#define F_SIZE 3
  ------------------
                          case F_SIZE:     DO_SPRINTS("z", Py_ssize_t, size_t); break;
  ------------------
  |  | 2798|      0|            switch (*f) {                                                     \
  |  | 2799|      0|                case 'o': len = SPRINT(SIZE_SPEC, "o", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2799:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2800|      0|                case 'u': len = SPRINT(SIZE_SPEC, "u", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2800:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2801|      0|                case 'x': len = SPRINT(SIZE_SPEC, "x", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2801:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2802|      0|                case 'X': len = SPRINT(SIZE_SPEC, "X", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2802:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2803|      0|                default:  len = SPRINT(SIZE_SPEC, "d", SIGNED_TYPE); break;   \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2803:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2804|      0|            }
  ------------------
  |  Branch (2810:13): [True: 0, False: 0]
  ------------------
 2811|      0|            case F_PTRDIFF:  DO_SPRINTS("t", ptrdiff_t, ptrdiff_t); break;
  ------------------
  |  | 2637|      0|#define F_PTRDIFF 4
  ------------------
                          case F_PTRDIFF:  DO_SPRINTS("t", ptrdiff_t, ptrdiff_t); break;
  ------------------
  |  | 2798|      0|            switch (*f) {                                                     \
  |  | 2799|      0|                case 'o': len = SPRINT(SIZE_SPEC, "o", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2799:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2800|      0|                case 'u': len = SPRINT(SIZE_SPEC, "u", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2800:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2801|      0|                case 'x': len = SPRINT(SIZE_SPEC, "x", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2801:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2802|      0|                case 'X': len = SPRINT(SIZE_SPEC, "X", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2802:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2803|      0|                default:  len = SPRINT(SIZE_SPEC, "d", SIGNED_TYPE); break;   \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2803:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2804|      0|            }
  ------------------
  |  Branch (2811:13): [True: 0, False: 0]
  ------------------
 2812|      0|            case F_INTMAX:   DO_SPRINTS("j", intmax_t, uintmax_t); break;
  ------------------
  |  | 2638|      0|#define F_INTMAX 5
  ------------------
                          case F_INTMAX:   DO_SPRINTS("j", intmax_t, uintmax_t); break;
  ------------------
  |  | 2798|      0|            switch (*f) {                                                     \
  |  | 2799|      0|                case 'o': len = SPRINT(SIZE_SPEC, "o", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2799:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2800|      0|                case 'u': len = SPRINT(SIZE_SPEC, "u", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2800:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2801|      0|                case 'x': len = SPRINT(SIZE_SPEC, "x", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2801:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2802|      0|                case 'X': len = SPRINT(SIZE_SPEC, "X", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2802:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2803|      0|                default:  len = SPRINT(SIZE_SPEC, "d", SIGNED_TYPE); break;   \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2803:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2804|      0|            }
  ------------------
  |  Branch (2812:13): [True: 0, False: 0]
  ------------------
 2813|      0|            default:         DO_SPRINTS("", int, unsigned int); break;
  ------------------
  |  | 2798|      0|            switch (*f) {                                                     \
  |  | 2799|      0|                case 'o': len = SPRINT(SIZE_SPEC, "o", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2799:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2800|      0|                case 'u': len = SPRINT(SIZE_SPEC, "u", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2800:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2801|      0|                case 'x': len = SPRINT(SIZE_SPEC, "x", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2801:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2802|      0|                case 'X': len = SPRINT(SIZE_SPEC, "X", UNSIGNED_TYPE); break; \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2802:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2803|      0|                default:  len = SPRINT(SIZE_SPEC, "d", SIGNED_TYPE); break;   \
  |  |  ------------------
  |  |  |  | 2794|      0|            sprintf(buffer, "%" SIZE_SPEC FMT_CHAR, va_arg(*vargs, TYPE))
  |  |  ------------------
  |  |  |  Branch (2803:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2804|      0|            }
  ------------------
  |  Branch (2813:13): [True: 0, False: 0]
  ------------------
 2814|      0|        }
 2815|      0|        #undef SPRINT
 2816|      0|        #undef DO_SPRINTS
 2817|       |
 2818|      0|        assert(len >= 0);
  ------------------
  |  Branch (2818:9): [True: 0, False: 0]
  ------------------
 2819|       |
 2820|      0|        int sign = (buffer[0] == '-');
 2821|      0|        len -= sign;
 2822|       |
 2823|      0|        precision = Py_MAX(precision, len);
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2824|      0|        width = Py_MAX(width, precision + sign);
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2825|      0|        if ((flags & F_ZERO) && !(flags & F_LJUST)) {
  ------------------
  |  |   22|      0|#define F_ZERO  (1<<4)
  ------------------
                      if ((flags & F_ZERO) && !(flags & F_LJUST)) {
  ------------------
  |  |   18|      0|#define F_LJUST (1<<0)
  ------------------
  |  Branch (2825:13): [True: 0, False: 0]
  |  Branch (2825:33): [True: 0, False: 0]
  ------------------
 2826|      0|            precision = width - sign;
 2827|      0|        }
 2828|       |
 2829|      0|        Py_ssize_t spacepad = Py_MAX(width - precision - sign, 0);
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2830|      0|        Py_ssize_t zeropad = Py_MAX(precision - len, 0);
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2831|       |
 2832|      0|        if (_PyUnicodeWriter_Prepare(writer, width, 127) == -1)
  ------------------
  |  |  562|      0|    (((MAXCHAR) <= (WRITER)->maxchar                                  \
  |  |  ------------------
  |  |  |  Branch (562:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  563|      0|      && (LENGTH) <= (WRITER)->size - (WRITER)->pos)                  \
  |  |  ------------------
  |  |  |  Branch (563:10): [True: 0, False: 0]
  |  |  ------------------
  |  |  564|      0|     ? 0                                                              \
  |  |  565|      0|     : (((LENGTH) == 0)                                               \
  |  |  ------------------
  |  |  |  Branch (565:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  566|      0|        ? 0                                                           \
  |  |  567|      0|        : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  ------------------
  |  Branch (2832:13): [True: 0, False: 0]
  ------------------
 2833|      0|            return NULL;
 2834|       |
 2835|      0|        if (spacepad && !(flags & F_LJUST)) {
  ------------------
  |  |   18|      0|#define F_LJUST (1<<0)
  ------------------
  |  Branch (2835:13): [True: 0, False: 0]
  |  Branch (2835:25): [True: 0, False: 0]
  ------------------
 2836|      0|            if (PyUnicode_Fill(writer->buffer, writer->pos, spacepad, ' ') == -1)
  ------------------
  |  Branch (2836:17): [True: 0, False: 0]
  ------------------
 2837|      0|                return NULL;
 2838|      0|            writer->pos += spacepad;
 2839|      0|        }
 2840|       |
 2841|      0|        if (sign) {
  ------------------
  |  Branch (2841:13): [True: 0, False: 0]
  ------------------
 2842|      0|            if (_PyUnicodeWriter_WriteChar(writer, '-') == -1)
  ------------------
  |  Branch (2842:17): [True: 0, False: 0]
  ------------------
 2843|      0|                return NULL;
 2844|      0|        }
 2845|       |
 2846|      0|        if (zeropad) {
  ------------------
  |  Branch (2846:13): [True: 0, False: 0]
  ------------------
 2847|      0|            if (PyUnicode_Fill(writer->buffer, writer->pos, zeropad, '0') == -1)
  ------------------
  |  Branch (2847:17): [True: 0, False: 0]
  ------------------
 2848|      0|                return NULL;
 2849|      0|            writer->pos += zeropad;
 2850|      0|        }
 2851|       |
 2852|      0|        if (_PyUnicodeWriter_WriteASCIIString(writer, &buffer[sign], len) < 0)
  ------------------
  |  Branch (2852:13): [True: 0, False: 0]
  ------------------
 2853|      0|            return NULL;
 2854|       |
 2855|      0|        if (spacepad && (flags & F_LJUST)) {
  ------------------
  |  |   18|      0|#define F_LJUST (1<<0)
  ------------------
  |  Branch (2855:13): [True: 0, False: 0]
  |  Branch (2855:25): [True: 0, False: 0]
  ------------------
 2856|      0|            if (PyUnicode_Fill(writer->buffer, writer->pos, spacepad, ' ') == -1)
  ------------------
  |  Branch (2856:17): [True: 0, False: 0]
  ------------------
 2857|      0|                return NULL;
 2858|      0|            writer->pos += spacepad;
 2859|      0|        }
 2860|      0|        break;
 2861|      0|    }
 2862|       |
 2863|      0|    case 'p':
  ------------------
  |  Branch (2863:5): [True: 0, False: 3.81k]
  ------------------
 2864|      0|    {
 2865|      0|        char number[MAX_INTMAX_CHARS];
 2866|       |
 2867|      0|        len = sprintf(number, "%p", va_arg(*vargs, void*));
 2868|      0|        assert(len >= 0);
  ------------------
  |  Branch (2868:9): [True: 0, False: 0]
  ------------------
 2869|       |
 2870|       |        /* %p is ill-defined:  ensure leading 0x. */
 2871|      0|        if (number[1] == 'X')
  ------------------
  |  Branch (2871:13): [True: 0, False: 0]
  ------------------
 2872|      0|            number[1] = 'x';
 2873|      0|        else if (number[1] != 'x') {
  ------------------
  |  Branch (2873:18): [True: 0, False: 0]
  ------------------
 2874|      0|            memmove(number + 2, number,
 2875|      0|                    strlen(number) + 1);
 2876|      0|            number[0] = '0';
 2877|      0|            number[1] = 'x';
 2878|      0|            len += 2;
 2879|      0|        }
 2880|       |
 2881|      0|        if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0)
  ------------------
  |  Branch (2881:13): [True: 0, False: 0]
  ------------------
 2882|      0|            return NULL;
 2883|      0|        break;
 2884|      0|    }
 2885|       |
 2886|  1.81k|    case 's':
  ------------------
  |  Branch (2886:5): [True: 1.81k, False: 2.00k]
  ------------------
 2887|  1.81k|    {
 2888|  1.81k|        if (sizemod) {
  ------------------
  |  Branch (2888:13): [True: 0, False: 1.81k]
  ------------------
 2889|      0|            const wchar_t *s = va_arg(*vargs, const wchar_t*);
 2890|      0|            if (unicode_fromformat_write_wcstr(writer, s, width, precision, flags) < 0)
  ------------------
  |  Branch (2890:17): [True: 0, False: 0]
  ------------------
 2891|      0|                return NULL;
 2892|      0|        }
 2893|  1.81k|        else {
 2894|       |            /* UTF-8 */
 2895|  1.81k|            const char *s = va_arg(*vargs, const char*);
 2896|  1.81k|            if (unicode_fromformat_write_utf8(writer, s, width, precision, flags) < 0)
  ------------------
  |  Branch (2896:17): [True: 0, False: 1.81k]
  ------------------
 2897|      0|                return NULL;
 2898|  1.81k|        }
 2899|  1.81k|        break;
 2900|  1.81k|    }
 2901|       |
 2902|  1.81k|    case 'U':
  ------------------
  |  Branch (2902:5): [True: 62, False: 3.75k]
  ------------------
 2903|     62|    {
 2904|     62|        PyObject *obj = va_arg(*vargs, PyObject *);
 2905|     62|        assert(obj && _PyUnicode_CHECK(obj));
  ------------------
  |  Branch (2905:9): [True: 62, False: 0]
  |  Branch (2905:9): [True: 62, False: 0]
  ------------------
 2906|       |
 2907|     62|        if (unicode_fromformat_write_str(writer, obj, width, precision, flags) == -1)
  ------------------
  |  Branch (2907:13): [True: 0, False: 62]
  ------------------
 2908|      0|            return NULL;
 2909|     62|        break;
 2910|     62|    }
 2911|       |
 2912|     62|    case 'V':
  ------------------
  |  Branch (2912:5): [True: 0, False: 3.81k]
  ------------------
 2913|      0|    {
 2914|      0|        PyObject *obj = va_arg(*vargs, PyObject *);
 2915|      0|        const char *str;
 2916|      0|        const wchar_t *wstr;
 2917|      0|        if (sizemod) {
  ------------------
  |  Branch (2917:13): [True: 0, False: 0]
  ------------------
 2918|      0|            wstr = va_arg(*vargs, const wchar_t*);
 2919|      0|        }
 2920|      0|        else {
 2921|      0|            str = va_arg(*vargs, const char *);
 2922|      0|        }
 2923|      0|        if (obj) {
  ------------------
  |  Branch (2923:13): [True: 0, False: 0]
  ------------------
 2924|      0|            assert(_PyUnicode_CHECK(obj));
  ------------------
  |  Branch (2924:13): [True: 0, False: 0]
  ------------------
 2925|      0|            if (unicode_fromformat_write_str(writer, obj, width, precision, flags) == -1)
  ------------------
  |  Branch (2925:17): [True: 0, False: 0]
  ------------------
 2926|      0|                return NULL;
 2927|      0|        }
 2928|      0|        else if (sizemod) {
  ------------------
  |  Branch (2928:18): [True: 0, False: 0]
  ------------------
 2929|      0|            assert(wstr != NULL);
  ------------------
  |  Branch (2929:13): [True: 0, False: 0]
  ------------------
 2930|      0|            if (unicode_fromformat_write_wcstr(writer, wstr, width, precision, flags) < 0)
  ------------------
  |  Branch (2930:17): [True: 0, False: 0]
  ------------------
 2931|      0|                return NULL;
 2932|      0|        }
 2933|      0|        else {
 2934|      0|            assert(str != NULL);
  ------------------
  |  Branch (2934:13): [True: 0, False: 0]
  ------------------
 2935|      0|            if (unicode_fromformat_write_utf8(writer, str, width, precision, flags) < 0)
  ------------------
  |  Branch (2935:17): [True: 0, False: 0]
  ------------------
 2936|      0|                return NULL;
 2937|      0|        }
 2938|      0|        break;
 2939|      0|    }
 2940|       |
 2941|      6|    case 'S':
  ------------------
  |  Branch (2941:5): [True: 6, False: 3.81k]
  ------------------
 2942|      6|    {
 2943|      6|        PyObject *obj = va_arg(*vargs, PyObject *);
 2944|      6|        PyObject *str;
 2945|      6|        assert(obj);
  ------------------
  |  Branch (2945:9): [True: 6, False: 0]
  ------------------
 2946|      6|        str = PyObject_Str(obj);
 2947|      6|        if (!str)
  ------------------
  |  Branch (2947:13): [True: 0, False: 6]
  ------------------
 2948|      0|            return NULL;
 2949|      6|        if (unicode_fromformat_write_str(writer, str, width, precision, flags) == -1) {
  ------------------
  |  Branch (2949:13): [True: 0, False: 6]
  ------------------
 2950|      0|            Py_DECREF(str);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2951|      0|            return NULL;
 2952|      0|        }
 2953|      6|        Py_DECREF(str);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2954|      6|        break;
 2955|      6|    }
 2956|       |
 2957|  1.93k|    case 'R':
  ------------------
  |  Branch (2957:5): [True: 1.93k, False: 1.88k]
  ------------------
 2958|  1.93k|    {
 2959|  1.93k|        PyObject *obj = va_arg(*vargs, PyObject *);
 2960|  1.93k|        PyObject *repr;
 2961|  1.93k|        assert(obj);
  ------------------
  |  Branch (2961:9): [True: 1.93k, False: 0]
  ------------------
 2962|  1.93k|        repr = PyObject_Repr(obj);
 2963|  1.93k|        if (!repr)
  ------------------
  |  Branch (2963:13): [True: 0, False: 1.93k]
  ------------------
 2964|      0|            return NULL;
 2965|  1.93k|        if (unicode_fromformat_write_str(writer, repr, width, precision, flags) == -1) {
  ------------------
  |  Branch (2965:13): [True: 0, False: 1.93k]
  ------------------
 2966|      0|            Py_DECREF(repr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2967|      0|            return NULL;
 2968|      0|        }
 2969|  1.93k|        Py_DECREF(repr);
  ------------------
  |  |  430|  1.93k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.93k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.93k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2970|  1.93k|        break;
 2971|  1.93k|    }
 2972|       |
 2973|      0|    case 'A':
  ------------------
  |  Branch (2973:5): [True: 0, False: 3.81k]
  ------------------
 2974|      0|    {
 2975|      0|        PyObject *obj = va_arg(*vargs, PyObject *);
 2976|      0|        PyObject *ascii;
 2977|      0|        assert(obj);
  ------------------
  |  Branch (2977:9): [True: 0, False: 0]
  ------------------
 2978|      0|        ascii = PyObject_ASCII(obj);
 2979|      0|        if (!ascii)
  ------------------
  |  Branch (2979:13): [True: 0, False: 0]
  ------------------
 2980|      0|            return NULL;
 2981|      0|        if (unicode_fromformat_write_str(writer, ascii, width, precision, flags) == -1) {
  ------------------
  |  Branch (2981:13): [True: 0, False: 0]
  ------------------
 2982|      0|            Py_DECREF(ascii);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2983|      0|            return NULL;
 2984|      0|        }
 2985|      0|        Py_DECREF(ascii);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2986|      0|        break;
 2987|      0|    }
 2988|       |
 2989|      0|    case 'T':
  ------------------
  |  Branch (2989:5): [True: 0, False: 3.81k]
  ------------------
 2990|      0|    {
 2991|      0|        PyObject *obj = va_arg(*vargs, PyObject *);
 2992|      0|        PyTypeObject *type = (PyTypeObject *)Py_NewRef(Py_TYPE(obj));
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2993|       |
 2994|      0|        PyObject *type_name;
 2995|      0|        if (flags & F_ALT) {
  ------------------
  |  |   21|      0|#define F_ALT   (1<<3)
  ------------------
  |  Branch (2995:13): [True: 0, False: 0]
  ------------------
 2996|      0|            type_name = _PyType_GetFullyQualifiedName(type, ':');
 2997|      0|        }
 2998|      0|        else {
 2999|      0|            type_name = PyType_GetFullyQualifiedName(type);
 3000|      0|        }
 3001|      0|        Py_DECREF(type);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3002|      0|        if (!type_name) {
  ------------------
  |  Branch (3002:13): [True: 0, False: 0]
  ------------------
 3003|      0|            return NULL;
 3004|      0|        }
 3005|       |
 3006|      0|        if (unicode_fromformat_write_str(writer, type_name,
  ------------------
  |  Branch (3006:13): [True: 0, False: 0]
  ------------------
 3007|      0|                                         width, precision, flags) == -1) {
 3008|      0|            Py_DECREF(type_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3009|      0|            return NULL;
 3010|      0|        }
 3011|      0|        Py_DECREF(type_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3012|      0|        break;
 3013|      0|    }
 3014|       |
 3015|      0|    case 'N':
  ------------------
  |  Branch (3015:5): [True: 0, False: 3.81k]
  ------------------
 3016|      0|    {
 3017|      0|        PyObject *type_raw = va_arg(*vargs, PyObject *);
 3018|      0|        assert(type_raw != NULL);
  ------------------
  |  Branch (3018:9): [True: 0, False: 0]
  ------------------
 3019|       |
 3020|      0|        if (!PyType_Check(type_raw)) {
  ------------------
  |  |  766|      0|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3020:13): [True: 0, False: 0]
  ------------------
 3021|      0|            PyErr_SetString(PyExc_TypeError, "%N argument must be a type");
 3022|      0|            return NULL;
 3023|      0|        }
 3024|      0|        PyTypeObject *type = (PyTypeObject*)type_raw;
 3025|       |
 3026|      0|        PyObject *type_name;
 3027|      0|        if (flags & F_ALT) {
  ------------------
  |  |   21|      0|#define F_ALT   (1<<3)
  ------------------
  |  Branch (3027:13): [True: 0, False: 0]
  ------------------
 3028|      0|            type_name = _PyType_GetFullyQualifiedName(type, ':');
 3029|      0|        }
 3030|      0|        else {
 3031|      0|            type_name = PyType_GetFullyQualifiedName(type);
 3032|      0|        }
 3033|      0|        if (!type_name) {
  ------------------
  |  Branch (3033:13): [True: 0, False: 0]
  ------------------
 3034|      0|            return NULL;
 3035|      0|        }
 3036|      0|        if (unicode_fromformat_write_str(writer, type_name,
  ------------------
  |  Branch (3036:13): [True: 0, False: 0]
  ------------------
 3037|      0|                                         width, precision, flags) == -1) {
 3038|      0|            Py_DECREF(type_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3039|      0|            return NULL;
 3040|      0|        }
 3041|      0|        Py_DECREF(type_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3042|      0|        break;
 3043|      0|    }
 3044|       |
 3045|      0|    default:
  ------------------
  |  Branch (3045:5): [True: 0, False: 3.81k]
  ------------------
 3046|      0|    invalid_format:
 3047|      0|        PyErr_Format(PyExc_SystemError, "invalid format string: %s", p);
 3048|      0|        return NULL;
 3049|  3.81k|    }
 3050|       |
 3051|  3.81k|    f++;
 3052|  3.81k|    return f;
 3053|  3.81k|}
unicodeobject.c:unicode_fromformat_write_utf8:
 2567|  1.81k|{
 2568|       |    /* UTF-8 */
 2569|  1.81k|    Py_ssize_t *pconsumed = NULL;
 2570|  1.81k|    Py_ssize_t length;
 2571|  1.81k|    if (precision == -1) {
  ------------------
  |  Branch (2571:9): [True: 72, False: 1.74k]
  ------------------
 2572|     72|        length = strlen(str);
 2573|     72|    }
 2574|  1.74k|    else {
 2575|  1.74k|        length = 0;
 2576|  44.0k|        while (length < precision && str[length]) {
  ------------------
  |  Branch (2576:16): [True: 43.9k, False: 53]
  |  Branch (2576:38): [True: 42.2k, False: 1.69k]
  ------------------
 2577|  42.2k|            length++;
 2578|  42.2k|        }
 2579|  1.74k|        if (length == precision) {
  ------------------
  |  Branch (2579:13): [True: 53, False: 1.69k]
  ------------------
 2580|       |            /* The input string is not NUL-terminated.  If it ends with an
 2581|       |             * incomplete UTF-8 sequence, truncate the string just before it.
 2582|       |             * Incomplete sequences in the middle and sequences which cannot
 2583|       |             * be valid prefixes are still treated as errors and replaced
 2584|       |             * with \xfffd. */
 2585|     53|            pconsumed = &length;
 2586|     53|        }
 2587|  1.74k|    }
 2588|       |
 2589|  1.81k|    if (width < 0) {
  ------------------
  |  Branch (2589:9): [True: 1.81k, False: 0]
  ------------------
 2590|  1.81k|        return _PyUnicode_DecodeUTF8Writer(writer, str, length,
 2591|  1.81k|                                           _Py_ERROR_REPLACE, "replace", pconsumed);
 2592|  1.81k|    }
 2593|       |
 2594|      0|    PyObject *unicode = PyUnicode_DecodeUTF8Stateful(str, length,
 2595|      0|                                                     "replace", pconsumed);
 2596|      0|    if (unicode == NULL)
  ------------------
  |  Branch (2596:9): [True: 0, False: 0]
  ------------------
 2597|      0|        return -1;
 2598|       |
 2599|      0|    int res = unicode_fromformat_write_str(writer, unicode,
 2600|      0|                                           width, -1, flags);
 2601|      0|    Py_DECREF(unicode);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2602|      0|    return res;
 2603|      0|}
unicodeobject.c:unicode_fromformat_write_str:
 2523|  2.00k|{
 2524|  2.00k|    Py_ssize_t length, fill, arglen;
 2525|  2.00k|    Py_UCS4 maxchar;
 2526|       |
 2527|  2.00k|    length = PyUnicode_GET_LENGTH(str);
  ------------------
  |  |  299|  2.00k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.00k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.00k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2528|  2.00k|    if ((precision == -1 || precision >= length)
  ------------------
  |  Branch (2528:10): [True: 2.00k, False: 0]
  |  Branch (2528:29): [True: 0, False: 0]
  ------------------
 2529|  2.00k|        && width <= length)
  ------------------
  |  Branch (2529:12): [True: 2.00k, False: 0]
  ------------------
 2530|  2.00k|        return _PyUnicodeWriter_WriteStr(writer, str);
 2531|       |
 2532|      0|    if (precision != -1)
  ------------------
  |  Branch (2532:9): [True: 0, False: 0]
  ------------------
 2533|      0|        length = Py_MIN(precision, length);
  ------------------
  |  |  112|      0|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2534|       |
 2535|      0|    arglen = Py_MAX(length, width);
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2536|      0|    if (PyUnicode_MAX_CHAR_VALUE(str) > writer->maxchar)
  ------------------
  |  |  405|      0|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2536:9): [True: 0, False: 0]
  ------------------
 2537|      0|        maxchar = _PyUnicode_FindMaxChar(str, 0, length);
 2538|      0|    else
 2539|      0|        maxchar = writer->maxchar;
 2540|       |
 2541|      0|    if (_PyUnicodeWriter_Prepare(writer, arglen, maxchar) == -1)
  ------------------
  |  |  562|      0|    (((MAXCHAR) <= (WRITER)->maxchar                                  \
  |  |  ------------------
  |  |  |  Branch (562:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  563|      0|      && (LENGTH) <= (WRITER)->size - (WRITER)->pos)                  \
  |  |  ------------------
  |  |  |  Branch (563:10): [True: 0, False: 0]
  |  |  ------------------
  |  |  564|      0|     ? 0                                                              \
  |  |  565|      0|     : (((LENGTH) == 0)                                               \
  |  |  ------------------
  |  |  |  Branch (565:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  566|      0|        ? 0                                                           \
  |  |  567|      0|        : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  ------------------
  |  Branch (2541:9): [True: 0, False: 0]
  ------------------
 2542|      0|        return -1;
 2543|       |
 2544|      0|    fill = Py_MAX(width - length, 0);
  ------------------
  |  |  115|      0|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2545|      0|    if (fill && !(flags & F_LJUST)) {
  ------------------
  |  |   18|      0|#define F_LJUST (1<<0)
  ------------------
  |  Branch (2545:9): [True: 0, False: 0]
  |  Branch (2545:17): [True: 0, False: 0]
  ------------------
 2546|      0|        if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1)
  ------------------
  |  Branch (2546:13): [True: 0, False: 0]
  ------------------
 2547|      0|            return -1;
 2548|      0|        writer->pos += fill;
 2549|      0|    }
 2550|       |
 2551|      0|    _PyUnicode_FastCopyCharacters(writer->buffer, writer->pos,
 2552|      0|                                  str, 0, length);
 2553|      0|    writer->pos += length;
 2554|       |
 2555|      0|    if (fill && (flags & F_LJUST)) {
  ------------------
  |  |   18|      0|#define F_LJUST (1<<0)
  ------------------
  |  Branch (2555:9): [True: 0, False: 0]
  |  Branch (2555:17): [True: 0, False: 0]
  ------------------
 2556|      0|        if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1)
  ------------------
  |  Branch (2556:13): [True: 0, False: 0]
  ------------------
 2557|      0|            return -1;
 2558|      0|        writer->pos += fill;
 2559|      0|    }
 2560|       |
 2561|      0|    return 0;
 2562|      0|}
unicodeobject.c:unicode_get_widechar_size:
 3161|    136|{
 3162|    136|    Py_ssize_t res;
 3163|       |
 3164|    136|    assert(unicode != NULL);
  ------------------
  |  Branch (3164:5): [True: 136, False: 0]
  ------------------
 3165|    136|    assert(_PyUnicode_CHECK(unicode));
  ------------------
  |  Branch (3165:5): [True: 136, False: 0]
  ------------------
 3166|       |
 3167|    136|    res = _PyUnicode_LENGTH(unicode);
  ------------------
  |  |  151|    136|    (_PyASCIIObject_CAST(op)->length)
  |  |  ------------------
  |  |  |  |  186|    136|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|    136|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    136|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3167:11): [True: 136, False: 0]
  ------------------
 3168|       |#if SIZEOF_WCHAR_T == 2
 3169|       |    if (PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND) {
 3170|       |        const Py_UCS4 *s = PyUnicode_4BYTE_DATA(unicode);
 3171|       |        const Py_UCS4 *end = s + res;
 3172|       |        for (; s < end; ++s) {
 3173|       |            if (*s > 0xFFFF) {
 3174|       |                ++res;
 3175|       |            }
 3176|       |        }
 3177|       |    }
 3178|       |#endif
 3179|      0|    return res;
 3180|    136|}
unicodeobject.c:unicode_copy_as_widechar:
 3184|    136|{
 3185|    136|    assert(unicode != NULL);
  ------------------
  |  Branch (3185:5): [True: 136, False: 0]
  ------------------
 3186|    136|    assert(_PyUnicode_CHECK(unicode));
  ------------------
  |  Branch (3186:5): [True: 136, False: 0]
  ------------------
 3187|       |
 3188|    272|    if (PyUnicode_KIND(unicode) == sizeof(wchar_t)) {
  ------------------
  |  |  258|    136|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    272|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 136, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3188:9): [True: 0, False: 136]
  ------------------
 3189|      0|        memcpy(w, PyUnicode_DATA(unicode), size * sizeof(wchar_t));
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3190|      0|        return;
 3191|      0|    }
 3192|       |
 3193|    272|    if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND) {
  ------------------
  |  |  258|    136|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    272|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 136, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3193:9): [True: 136, False: 0]
  ------------------
 3194|    136|        const Py_UCS1 *s = PyUnicode_1BYTE_DATA(unicode);
  ------------------
  |  |  291|    136|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|    136|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 3195|  5.35k|        for (; size--; ++s, ++w) {
  ------------------
  |  Branch (3195:16): [True: 5.21k, False: 136]
  ------------------
 3196|  5.21k|            *w = *s;
 3197|  5.21k|        }
 3198|    136|    }
 3199|      0|    else {
 3200|      0|#if SIZEOF_WCHAR_T == 4
 3201|      0|        assert(PyUnicode_KIND(unicode) == PyUnicode_2BYTE_KIND);
  ------------------
  |  Branch (3201:9): [True: 0, False: 0]
  |  Branch (3201:9): [True: 0, False: 0]
  ------------------
 3202|      0|        const Py_UCS2 *s = PyUnicode_2BYTE_DATA(unicode);
  ------------------
  |  |  292|      0|#define PyUnicode_2BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS2*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 3203|      0|        for (; size--; ++s, ++w) {
  ------------------
  |  Branch (3203:16): [True: 0, False: 0]
  ------------------
 3204|      0|            *w = *s;
 3205|      0|        }
 3206|       |#else
 3207|       |        assert(PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND);
 3208|       |        const Py_UCS4 *s = PyUnicode_4BYTE_DATA(unicode);
 3209|       |        for (; size--; ++s, ++w) {
 3210|       |            Py_UCS4 ch = *s;
 3211|       |            if (ch > 0xFFFF) {
 3212|       |                assert(ch <= MAX_UNICODE);
 3213|       |                /* encode surrogate pair in this case */
 3214|       |                *w++ = Py_UNICODE_HIGH_SURROGATE(ch);
 3215|       |                if (!size--)
 3216|       |                    break;
 3217|       |                *w = Py_UNICODE_LOW_SURROGATE(ch);
 3218|       |            }
 3219|       |            else {
 3220|       |                *w = ch;
 3221|       |            }
 3222|       |        }
 3223|       |#endif
 3224|      0|    }
 3225|    136|}
unicodeobject.c:unicode_char:
 1818|      6|{
 1819|      6|    PyObject *unicode;
 1820|       |
 1821|      6|    assert(ch <= MAX_UNICODE);
  ------------------
  |  Branch (1821:5): [True: 6, False: 0]
  ------------------
 1822|       |
 1823|      6|    if (ch < 256) {
  ------------------
  |  Branch (1823:9): [True: 6, False: 0]
  ------------------
 1824|      6|        return get_latin1_char(ch);
 1825|      6|    }
 1826|       |
 1827|      0|    unicode = PyUnicode_New(1, ch);
 1828|      0|    if (unicode == NULL)
  ------------------
  |  Branch (1828:9): [True: 0, False: 0]
  ------------------
 1829|      0|        return NULL;
 1830|       |
 1831|      0|    assert(PyUnicode_KIND(unicode) != PyUnicode_1BYTE_KIND);
  ------------------
  |  Branch (1831:5): [True: 0, False: 0]
  |  Branch (1831:5): [True: 0, False: 0]
  ------------------
 1832|      0|    if (PyUnicode_KIND(unicode) == PyUnicode_2BYTE_KIND) {
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1832:9): [True: 0, False: 0]
  ------------------
 1833|      0|        PyUnicode_2BYTE_DATA(unicode)[0] = (Py_UCS2)ch;
  ------------------
  |  |  292|      0|#define PyUnicode_2BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS2*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1834|      0|    } else {
 1835|      0|        assert(PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (1835:9): [True: 0, False: 0]
  |  Branch (1835:9): [True: 0, False: 0]
  ------------------
 1836|      0|        PyUnicode_4BYTE_DATA(unicode)[0] = ch;
  ------------------
  |  |  293|      0|#define PyUnicode_4BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS4*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1837|      0|    }
 1838|      0|    assert(_PyUnicode_CheckConsistency(unicode, 1));
  ------------------
  |  Branch (1838:5): [True: 0, False: 0]
  ------------------
 1839|      0|    return unicode;
 1840|      0|}
unicodeobject.c:unicode_check_encoding_errors:
  526|     34|{
  527|     34|    if (encoding == NULL && errors == NULL) {
  ------------------
  |  Branch (527:9): [True: 0, False: 34]
  |  Branch (527:29): [True: 0, False: 0]
  ------------------
  528|      0|        return 0;
  529|      0|    }
  530|       |
  531|     34|    PyInterpreterState *interp = _PyInterpreterState_GET();
  532|     34|#ifndef Py_DEBUG
  533|       |    /* In release mode, only check in development mode (-X dev) */
  534|     34|    if (!_PyInterpreterState_GetConfig(interp)->dev_mode) {
  ------------------
  |  Branch (534:9): [True: 34, False: 0]
  ------------------
  535|     34|        return 0;
  536|     34|    }
  537|       |#else
  538|       |    /* Always check in debug mode */
  539|       |#endif
  540|       |
  541|       |    /* Avoid calling _PyCodec_Lookup() and PyCodec_LookupError() before the
  542|       |       codec registry is ready: before_PyUnicode_InitEncodings() is called. */
  543|      0|    if (!interp->unicode.fs_codec.encoding) {
  ------------------
  |  Branch (543:9): [True: 0, False: 0]
  ------------------
  544|      0|        return 0;
  545|      0|    }
  546|       |
  547|       |    /* Disable checks during Python finalization. For example, it allows to
  548|       |     * call PyObject_Dump() during finalization for debugging purpose.
  549|       |     */
  550|      0|    if (_PyInterpreterState_GetFinalizing(interp) != NULL) {
  ------------------
  |  Branch (550:9): [True: 0, False: 0]
  ------------------
  551|      0|        return 0;
  552|      0|    }
  553|       |
  554|      0|    if (encoding != NULL
  ------------------
  |  Branch (554:9): [True: 0, False: 0]
  ------------------
  555|       |        // Fast path for the most common built-in encodings. Even if the codec
  556|       |        // is cached, _PyCodec_Lookup() decodes the bytes string from UTF-8 to
  557|       |        // create a temporary Unicode string (the key in the cache).
  558|      0|        && strcmp(encoding, "utf-8") != 0
  ------------------
  |  Branch (558:12): [True: 0, False: 0]
  ------------------
  559|      0|        && strcmp(encoding, "utf8") != 0
  ------------------
  |  Branch (559:12): [True: 0, False: 0]
  ------------------
  560|      0|        && strcmp(encoding, "ascii") != 0)
  ------------------
  |  Branch (560:12): [True: 0, False: 0]
  ------------------
  561|      0|    {
  562|      0|        PyObject *handler = _PyCodec_Lookup(encoding);
  563|      0|        if (handler == NULL) {
  ------------------
  |  Branch (563:13): [True: 0, False: 0]
  ------------------
  564|      0|            return -1;
  565|      0|        }
  566|      0|        Py_DECREF(handler);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  567|      0|    }
  568|       |
  569|      0|    if (errors != NULL
  ------------------
  |  Branch (569:9): [True: 0, False: 0]
  ------------------
  570|       |        // Fast path for the most common built-in error handlers.
  571|      0|        && strcmp(errors, "strict") != 0
  ------------------
  |  Branch (571:12): [True: 0, False: 0]
  ------------------
  572|      0|        && strcmp(errors, "ignore") != 0
  ------------------
  |  Branch (572:12): [True: 0, False: 0]
  ------------------
  573|      0|        && strcmp(errors, "replace") != 0
  ------------------
  |  Branch (573:12): [True: 0, False: 0]
  ------------------
  574|      0|        && strcmp(errors, "surrogateescape") != 0
  ------------------
  |  Branch (574:12): [True: 0, False: 0]
  ------------------
  575|      0|        && strcmp(errors, "surrogatepass") != 0)
  ------------------
  |  Branch (575:12): [True: 0, False: 0]
  ------------------
  576|      0|    {
  577|      0|        PyObject *handler = PyCodec_LookupError(errors);
  578|      0|        if (handler == NULL) {
  ------------------
  |  Branch (578:13): [True: 0, False: 0]
  ------------------
  579|      0|            return -1;
  580|      0|        }
  581|      0|        Py_DECREF(handler);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  582|      0|    }
  583|      0|    return 0;
  584|      0|}
unicodeobject.c:get_error_handler_wide:
  498|      4|{
  499|      4|    if (errors == NULL || wcscmp(errors, L"strict") == 0) {
  ------------------
  |  Branch (499:9): [True: 0, False: 4]
  |  Branch (499:27): [True: 0, False: 4]
  ------------------
  500|      0|        return _Py_ERROR_STRICT;
  501|      0|    }
  502|      4|    if (wcscmp(errors, L"surrogateescape") == 0) {
  ------------------
  |  Branch (502:9): [True: 4, False: 0]
  ------------------
  503|      4|        return _Py_ERROR_SURROGATEESCAPE;
  504|      4|    }
  505|      0|    if (wcscmp(errors, L"replace") == 0) {
  ------------------
  |  Branch (505:9): [True: 0, False: 0]
  ------------------
  506|      0|        return _Py_ERROR_REPLACE;
  507|      0|    }
  508|      0|    if (wcscmp(errors, L"ignore") == 0) {
  ------------------
  |  Branch (508:9): [True: 0, False: 0]
  ------------------
  509|      0|        return _Py_ERROR_IGNORE;
  510|      0|    }
  511|      0|    if (wcscmp(errors, L"backslashreplace") == 0) {
  ------------------
  |  Branch (511:9): [True: 0, False: 0]
  ------------------
  512|      0|        return _Py_ERROR_BACKSLASHREPLACE;
  513|      0|    }
  514|      0|    if (wcscmp(errors, L"surrogatepass") == 0) {
  ------------------
  |  Branch (514:9): [True: 0, False: 0]
  ------------------
  515|      0|        return _Py_ERROR_SURROGATEPASS;
  516|      0|    }
  517|      0|    if (wcscmp(errors, L"xmlcharrefreplace") == 0) {
  ------------------
  |  Branch (517:9): [True: 0, False: 0]
  ------------------
  518|      0|        return _Py_ERROR_XMLCHARREFREPLACE;
  519|      0|    }
  520|      0|    return _Py_ERROR_OTHER;
  521|      0|}
unicodeobject.c:unicode_decode_locale:
 3904|     22|{
 3905|     22|    if (str[len] != '\0' || (size_t)len != strlen(str))  {
  ------------------
  |  Branch (3905:9): [True: 0, False: 22]
  |  Branch (3905:29): [True: 0, False: 22]
  ------------------
 3906|      0|        PyErr_SetString(PyExc_ValueError, "embedded null byte");
 3907|      0|        return NULL;
 3908|      0|    }
 3909|       |
 3910|     22|    wchar_t *wstr;
 3911|     22|    size_t wlen;
 3912|     22|    const char *reason;
 3913|     22|    int res = _Py_DecodeLocaleEx(str, &wstr, &wlen, &reason,
 3914|     22|                                 current_locale, errors);
 3915|     22|    if (res != 0) {
  ------------------
  |  Branch (3915:9): [True: 0, False: 22]
  ------------------
 3916|      0|        if (res == -2) {
  ------------------
  |  Branch (3916:13): [True: 0, False: 0]
  ------------------
 3917|      0|            PyObject *exc;
 3918|      0|            exc = PyObject_CallFunction(PyExc_UnicodeDecodeError, "sy#nns",
 3919|      0|                                        "locale", str, len,
 3920|      0|                                        (Py_ssize_t)wlen,
 3921|      0|                                        (Py_ssize_t)(wlen + 1),
 3922|      0|                                        reason);
 3923|      0|            if (exc != NULL) {
  ------------------
  |  Branch (3923:17): [True: 0, False: 0]
  ------------------
 3924|      0|                PyCodec_StrictErrors(exc);
 3925|      0|                Py_DECREF(exc);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3926|      0|            }
 3927|      0|        }
 3928|      0|        else if (res == -3) {
  ------------------
  |  Branch (3928:18): [True: 0, False: 0]
  ------------------
 3929|      0|            PyErr_SetString(PyExc_ValueError, "unsupported error handler");
 3930|      0|        }
 3931|      0|        else {
 3932|      0|            PyErr_NoMemory();
 3933|      0|        }
 3934|      0|        return NULL;
 3935|      0|    }
 3936|       |
 3937|     22|    PyObject *unicode = PyUnicode_FromWideChar(wstr, wlen);
 3938|     22|    PyMem_RawFree(wstr);
 3939|     22|    return unicode;
 3940|     22|}
unicodeobject.c:findchar:
 1007|    280|{
 1008|    280|    switch (kind) {
 1009|    280|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (1009:5): [True: 280, False: 0]
  ------------------
 1010|    280|        if ((Py_UCS1) ch != ch)
  ------------------
  |  Branch (1010:13): [True: 0, False: 280]
  ------------------
 1011|      0|            return -1;
 1012|    280|        if (direction > 0)
  ------------------
  |  Branch (1012:13): [True: 254, False: 26]
  ------------------
 1013|    254|            return ucs1lib_find_char((const Py_UCS1 *) s, size, (Py_UCS1) ch);
 1014|     26|        else
 1015|     26|            return ucs1lib_rfind_char((const Py_UCS1 *) s, size, (Py_UCS1) ch);
 1016|      0|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (1016:5): [True: 0, False: 280]
  ------------------
 1017|      0|        if ((Py_UCS2) ch != ch)
  ------------------
  |  Branch (1017:13): [True: 0, False: 0]
  ------------------
 1018|      0|            return -1;
 1019|      0|        if (direction > 0)
  ------------------
  |  Branch (1019:13): [True: 0, False: 0]
  ------------------
 1020|      0|            return ucs2lib_find_char((const Py_UCS2 *) s, size, (Py_UCS2) ch);
 1021|      0|        else
 1022|      0|            return ucs2lib_rfind_char((const Py_UCS2 *) s, size, (Py_UCS2) ch);
 1023|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (1023:5): [True: 0, False: 280]
  ------------------
 1024|      0|        if (direction > 0)
  ------------------
  |  Branch (1024:13): [True: 0, False: 0]
  ------------------
 1025|      0|            return ucs4lib_find_char((const Py_UCS4 *) s, size, ch);
 1026|      0|        else
 1027|      0|            return ucs4lib_rfind_char((const Py_UCS4 *) s, size, ch);
 1028|      0|    default:
  ------------------
  |  Branch (1028:5): [True: 0, False: 280]
  ------------------
 1029|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1030|    280|    }
 1031|    280|}
unicodeobject.c:unicode_ensure_utf8:
 4091|    544|{
 4092|    544|    int err = 0;
 4093|    544|    if (PyUnicode_UTF8(unicode) == NULL) {
  ------------------
  |  Branch (4093:9): [True: 0, False: 544]
  ------------------
 4094|      0|        Py_BEGIN_CRITICAL_SECTION(unicode);
  ------------------
  |  |   51|      0|    {
  ------------------
 4095|      0|        if (PyUnicode_UTF8(unicode) == NULL) {
  ------------------
  |  Branch (4095:13): [True: 0, False: 0]
  ------------------
 4096|      0|            err = unicode_fill_utf8(unicode);
 4097|      0|        }
 4098|      0|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 4099|      0|    }
 4100|    544|    return err;
 4101|    544|}
unicodeobject.c:PyUnicode_UTF8_LENGTH:
  135|    402|{
  136|    402|    assert(_PyUnicode_CHECK(op));
  ------------------
  |  Branch (136:5): [True: 402, False: 0]
  ------------------
  137|    402|    if (PyUnicode_IS_COMPACT_ASCII(op)) {
  ------------------
  |  |  241|    402|#define PyUnicode_IS_COMPACT_ASCII(op) PyUnicode_IS_COMPACT_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    402|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    402|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (241:40): [True: 402, False: 0]
  |  |  ------------------
  ------------------
  138|    402|         return _PyASCIIObject_CAST(op)->length;
  ------------------
  |  |  186|    402|    (assert(PyUnicode_Check(op)), \
  |  |  187|    402|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|    402|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (138:17): [True: 402, False: 0]
  ------------------
  139|    402|    }
  140|      0|    else {
  141|      0|         return _PyCompactUnicodeObject_CAST(op)->utf8_length;
  ------------------
  |  |  189|      0|    (assert(PyUnicode_Check(op)), \
  |  |  190|      0|     _Py_CAST(PyCompactUnicodeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (141:17): [True: 0, False: 0]
  ------------------
  142|      0|    }
  143|    402|}
unicodeobject.c:PyUnicode_UTF8:
  119|  1.19k|{
  120|  1.19k|    assert(_PyUnicode_CHECK(op));
  ------------------
  |  Branch (120:5): [True: 1.19k, False: 0]
  ------------------
  121|  1.19k|    if (PyUnicode_IS_COMPACT_ASCII(op)) {
  ------------------
  |  |  241|  1.19k|#define PyUnicode_IS_COMPACT_ASCII(op) PyUnicode_IS_COMPACT_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.19k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.19k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (241:40): [True: 1.19k, False: 0]
  |  |  ------------------
  ------------------
  122|  1.19k|        return ((char*)(_PyASCIIObject_CAST(op) + 1));
  ------------------
  |  |  186|  1.19k|    (assert(PyUnicode_Check(op)), \
  |  |  187|  1.19k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.19k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (122:25): [True: 1.19k, False: 0]
  ------------------
  123|  1.19k|    }
  124|      0|    else {
  125|      0|         return _PyUnicode_UTF8(op);
  126|      0|    }
  127|  1.19k|}
unicodeobject.c:unicode_decode_utf8:
 5253|  10.3k|{
 5254|  10.3k|    if (size == 0) {
  ------------------
  |  Branch (5254:9): [True: 4, False: 10.3k]
  ------------------
 5255|      4|        if (consumed) {
  ------------------
  |  Branch (5255:13): [True: 0, False: 4]
  ------------------
 5256|      0|            *consumed = 0;
 5257|      0|        }
 5258|      4|        _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      4|    do {                             \
  |  |  376|      4|        return _PyUnicode_GetEmpty();\
  |  |  377|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 5259|      4|    }
 5260|       |
 5261|       |    /* ASCII is equivalent to the first 128 ordinals in Unicode. */
 5262|  10.3k|    if (size == 1 && (unsigned char)s[0] < 128) {
  ------------------
  |  Branch (5262:9): [True: 24, False: 10.2k]
  |  Branch (5262:22): [True: 24, False: 0]
  ------------------
 5263|     24|        if (consumed) {
  ------------------
  |  Branch (5263:13): [True: 0, False: 24]
  ------------------
 5264|      0|            *consumed = 1;
 5265|      0|        }
 5266|     24|        return get_latin1_char((unsigned char)s[0]);
 5267|     24|    }
 5268|       |
 5269|       |    // I don't know this check is necessary or not. But there is a test
 5270|       |    // case that requires size=PY_SSIZE_T_MAX cause MemoryError.
 5271|  10.2k|    if (PY_SSIZE_T_MAX - sizeof(PyCompactUnicodeObject) < (size_t)size) {
  ------------------
  |  |  137|  10.2k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (5271:9): [True: 0, False: 10.2k]
  ------------------
 5272|      0|        PyErr_NoMemory();
 5273|      0|        return NULL;
 5274|      0|    }
 5275|       |
 5276|  10.2k|    const char *starts = s;
 5277|  10.2k|    const char *end = s + size;
 5278|       |
 5279|  10.2k|    Py_ssize_t pos = find_first_nonascii((const unsigned char*)starts, (const unsigned char*)end);
 5280|  10.2k|    if (pos == size) {  // fast path: ASCII string.
  ------------------
  |  Branch (5280:9): [True: 10.2k, False: 2]
  ------------------
 5281|  10.2k|        PyObject *u = PyUnicode_New(size, 127);
 5282|  10.2k|        if (u == NULL) {
  ------------------
  |  Branch (5282:13): [True: 0, False: 10.2k]
  ------------------
 5283|      0|            return NULL;
 5284|      0|        }
 5285|  10.2k|        memcpy(PyUnicode_1BYTE_DATA(u), s, size);
  ------------------
  |  |  291|  10.2k|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|  10.2k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 5286|  10.2k|        if (consumed) {
  ------------------
  |  Branch (5286:13): [True: 0, False: 10.2k]
  ------------------
 5287|      0|            *consumed = size;
 5288|      0|        }
 5289|  10.2k|        return u;
 5290|  10.2k|    }
 5291|       |
 5292|      2|    int maxchr = 127;
 5293|      2|    Py_ssize_t maxsize = size;
 5294|       |
 5295|      2|    unsigned char ch = (unsigned char)(s[pos]);
 5296|       |    // error handler other than strict may remove/replace the invalid byte.
 5297|       |    // consumed != NULL allows 1~3 bytes remainings.
 5298|       |    // 0x80 <= ch < 0xc2 is invalid start byte that cause UnicodeDecodeError.
 5299|       |    // otherwise: check the input and decide the maxchr and maxsize to reduce
 5300|       |    // reallocation and copy.
 5301|      2|    if (error_handler == _Py_ERROR_STRICT && !consumed && ch >= 0xc2) {
  ------------------
  |  Branch (5301:9): [True: 0, False: 2]
  |  Branch (5301:46): [True: 0, False: 0]
  |  Branch (5301:59): [True: 0, False: 0]
  ------------------
 5302|       |        // we only calculate the number of codepoints and don't determine the exact maxchr.
 5303|       |        // This is because writing fast and portable SIMD code to find maxchr is difficult.
 5304|       |        // If reallocation occurs for a larger maxchar, knowing the exact number of codepoints
 5305|       |        // means that it is no longer necessary to allocate several times the required amount
 5306|       |        // of memory.
 5307|      0|        maxsize = utf8_count_codepoints((const unsigned char *)s, (const unsigned char *)end);
 5308|      0|        if (ch < 0xc4) { // latin1
  ------------------
  |  Branch (5308:13): [True: 0, False: 0]
  ------------------
 5309|      0|            maxchr = 0xff;
 5310|      0|        }
 5311|      0|        else if (ch < 0xf0) { // ucs2
  ------------------
  |  Branch (5311:18): [True: 0, False: 0]
  ------------------
 5312|      0|            maxchr = 0xffff;
 5313|      0|        }
 5314|      0|        else { // ucs4
 5315|      0|            maxchr = 0x10ffff;
 5316|      0|        }
 5317|      0|    }
 5318|      2|    PyObject *u = PyUnicode_New(maxsize, maxchr);
 5319|      2|    if (!u) {
  ------------------
  |  Branch (5319:9): [True: 0, False: 2]
  ------------------
 5320|      0|        return NULL;
 5321|      0|    }
 5322|       |
 5323|       |    // Use _PyUnicodeWriter after fast path is failed.
 5324|      2|    _PyUnicodeWriter writer;
 5325|      2|    _PyUnicodeWriter_InitWithBuffer(&writer, u);
 5326|      2|    if (maxchr <= 255) {
  ------------------
  |  Branch (5326:9): [True: 2, False: 0]
  ------------------
 5327|      2|        memcpy(PyUnicode_1BYTE_DATA(u), s, pos);
  ------------------
  |  |  291|      2|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      2|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 5328|      2|        s += pos;
 5329|      2|        writer.pos = pos;
 5330|      2|    }
 5331|       |
 5332|      2|    if (unicode_decode_utf8_impl(&writer, starts, s, end,
  ------------------
  |  Branch (5332:9): [True: 0, False: 2]
  ------------------
 5333|      2|                                 error_handler, errors,
 5334|      2|                                 consumed) < 0) {
 5335|      0|        _PyUnicodeWriter_Dealloc(&writer);
 5336|      0|        return NULL;
 5337|      0|    }
 5338|      2|    return _PyUnicodeWriter_Finish(&writer);
 5339|      2|}
unicodeobject.c:find_first_nonascii:
 4981|  12.1k|{
 4982|       |    // The search is done in `size_t` chunks.
 4983|       |    // The start and end might not be aligned at `size_t` boundaries,
 4984|       |    // so they're handled specially.
 4985|       |
 4986|  12.1k|    const unsigned char *p = start;
 4987|       |
 4988|  12.1k|    if (end - start >= SIZEOF_SIZE_T) {
  ------------------
  |  | 1838|  12.1k|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (4988:9): [True: 7.33k, False: 4.80k]
  ------------------
 4989|       |        // Avoid unaligned read.
 4990|  7.33k|#if PY_LITTLE_ENDIAN && HAVE_CTZ
 4991|  7.33k|        size_t u;
 4992|  7.33k|        memcpy(&u, p, sizeof(size_t));
 4993|  7.33k|        u &= ASCII_CHAR_MASK;
  ------------------
  |  | 4887|  7.33k|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
 4994|  7.33k|        if (u) {
  ------------------
  |  Branch (4994:13): [True: 683, False: 6.65k]
  ------------------
 4995|    683|            return (ctz(u) - 7) / 8;
 4996|    683|        }
 4997|  6.65k|        p = _Py_ALIGN_DOWN(p + SIZEOF_SIZE_T, SIZEOF_SIZE_T);
  ------------------
  |  |  216|  6.65k|#define _Py_ALIGN_DOWN(p, a) ((void *)((uintptr_t)(p) & ~(uintptr_t)((a) - 1)))
  ------------------
 4998|       |#else /* PY_LITTLE_ENDIAN && HAVE_CTZ */
 4999|       |        const unsigned char *p2 = _Py_ALIGN_UP(p, SIZEOF_SIZE_T);
 5000|       |        while (p < p2) {
 5001|       |            if (*p & 0x80) {
 5002|       |                return p - start;
 5003|       |            }
 5004|       |            p++;
 5005|       |        }
 5006|       |#endif
 5007|       |
 5008|  6.65k|        const unsigned char *e = end - SIZEOF_SIZE_T;
  ------------------
  |  | 1838|  6.65k|#define SIZEOF_SIZE_T 8
  ------------------
 5009|  23.6k|        while (p <= e) {
  ------------------
  |  Branch (5009:16): [True: 16.9k, False: 6.64k]
  ------------------
 5010|  16.9k|            size_t u = (*(const size_t *)p) & ASCII_CHAR_MASK;
  ------------------
  |  | 4887|  16.9k|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
 5011|  16.9k|            if (u) {
  ------------------
  |  Branch (5011:17): [True: 14, False: 16.9k]
  ------------------
 5012|     14|#if PY_LITTLE_ENDIAN && HAVE_CTZ
 5013|     14|                return p - start + (ctz(u) - 7) / 8;
 5014|       |#else
 5015|       |                // big endian and minor compilers are difficult to test.
 5016|       |                // fallback to per byte check.
 5017|       |                break;
 5018|       |#endif
 5019|     14|            }
 5020|  16.9k|            p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|  16.9k|#define SIZEOF_SIZE_T 8
  ------------------
 5021|  16.9k|        }
 5022|  6.65k|    }
 5023|  11.4k|#if PY_LITTLE_ENDIAN && HAVE_CTZ
 5024|  12.1k|    assert((end - p) < SIZEOF_SIZE_T);
  ------------------
  |  Branch (5024:5): [True: 11.4k, False: 0]
  ------------------
 5025|       |    // we can not use *(const size_t*)p to avoid buffer overrun.
 5026|  11.4k|    size_t u = load_unaligned(p, end - p) & ASCII_CHAR_MASK;
  ------------------
  |  | 4887|  11.4k|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
 5027|  11.4k|    if (u) {
  ------------------
  |  Branch (5027:9): [True: 905, False: 10.5k]
  ------------------
 5028|    905|        return p - start + (ctz(u) - 7) / 8;
 5029|    905|    }
 5030|  10.5k|    return end - start;
 5031|       |#else
 5032|       |    while (p < end) {
 5033|       |        if (*p & 0x80) {
 5034|       |            break;
 5035|       |        }
 5036|       |        p++;
 5037|       |    }
 5038|       |    return p - start;
 5039|       |#endif
 5040|  11.4k|}
unicodeobject.c:ctz:
 4903|  1.60k|{
 4904|  1.60k|    return __builtin_ctzll((unsigned long long)v);
 4905|  1.60k|}
unicodeobject.c:load_unaligned:
 4927|  11.4k|{
 4928|  11.4k|    union {
 4929|  11.4k|        size_t s;
 4930|  11.4k|        unsigned char b[SIZEOF_SIZE_T];
 4931|  11.4k|    } u;
 4932|  11.4k|    u.s = 0;
 4933|       |    // This switch statement assumes little endian because:
 4934|       |    // * union is faster than bitwise or and shift.
 4935|       |    // * big endian machine is rare and hard to maintain.
 4936|  11.4k|    switch (size) {
 4937|      0|    default:
  ------------------
  |  Branch (4937:5): [True: 0, False: 11.4k]
  ------------------
 4938|      0|#if SIZEOF_SIZE_T == 8
 4939|      0|    case 8:
  ------------------
  |  Branch (4939:5): [True: 0, False: 11.4k]
  ------------------
 4940|      0|        u.b[7] = p[7];
 4941|      0|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|      0|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 4942|  1.96k|    case 7:
  ------------------
  |  Branch (4942:5): [True: 1.96k, False: 9.48k]
  ------------------
 4943|  1.96k|        u.b[6] = p[6];
 4944|  1.96k|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|  1.96k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 4945|  4.02k|    case 6:
  ------------------
  |  Branch (4945:5): [True: 2.06k, False: 9.38k]
  ------------------
 4946|  4.02k|        u.b[5] = p[5];
 4947|  4.02k|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|  4.02k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 4948|  5.67k|    case 5:
  ------------------
  |  Branch (4948:5): [True: 1.64k, False: 9.80k]
  ------------------
 4949|  5.67k|        u.b[4] = p[4];
 4950|  5.67k|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|  5.67k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 4951|  5.67k|#endif
 4952|  7.10k|    case 4:
  ------------------
  |  Branch (4952:5): [True: 1.43k, False: 10.0k]
  ------------------
 4953|  7.10k|        u.b[3] = p[3];
 4954|  7.10k|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|  7.10k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 4955|  8.44k|    case 3:
  ------------------
  |  Branch (4955:5): [True: 1.33k, False: 10.1k]
  ------------------
 4956|  8.44k|        u.b[2] = p[2];
 4957|  8.44k|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|  8.44k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 4958|  9.59k|    case 2:
  ------------------
  |  Branch (4958:5): [True: 1.14k, False: 10.2k]
  ------------------
 4959|  9.59k|        u.b[1] = p[1];
 4960|  9.59k|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|  9.59k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 4961|  10.5k|    case 1:
  ------------------
  |  Branch (4961:5): [True: 1.00k, False: 10.4k]
  ------------------
 4962|  10.5k|        u.b[0] = p[0];
 4963|  10.5k|        break;
 4964|    848|    case 0:
  ------------------
  |  Branch (4964:5): [True: 848, False: 10.5k]
  ------------------
 4965|    848|        break;
 4966|  11.4k|    }
 4967|  11.4k|    return u.s;
 4968|  11.4k|}
unicodeobject.c:ascii_decode:
 5095|  1.86k|{
 5096|  1.86k|#if SIZEOF_SIZE_T <= SIZEOF_VOID_P
 5097|  1.86k|    if (_Py_IS_ALIGNED(start, ALIGNOF_SIZE_T)
  ------------------
  |  |  221|  3.72k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 1.77k, False: 91]
  |  |  ------------------
  ------------------
 5098|  1.77k|        && _Py_IS_ALIGNED(dest, ALIGNOF_SIZE_T))
  ------------------
  |  |  221|  1.77k|#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1)))
  |  |  ------------------
  |  |  |  Branch (221:30): [True: 6, False: 1.76k]
  |  |  ------------------
  ------------------
 5099|      6|    {
 5100|       |        /* Fast path, see in STRINGLIB(utf8_decode) for
 5101|       |           an explanation. */
 5102|      6|        const char *p = start;
 5103|      6|        Py_UCS1 *q = dest;
 5104|     12|        while (p + SIZEOF_SIZE_T <= end) {
  ------------------
  |  | 1838|     12|#define SIZEOF_SIZE_T 8
  ------------------
  |  Branch (5104:16): [True: 6, False: 6]
  ------------------
 5105|      6|            size_t value = *(const size_t *) p;
 5106|      6|            if (value & ASCII_CHAR_MASK)
  ------------------
  |  | 4887|      6|# define ASCII_CHAR_MASK 0x8080808080808080ULL
  ------------------
  |  Branch (5106:17): [True: 0, False: 6]
  ------------------
 5107|      0|                break;
 5108|      6|            *((size_t *)q) = value;
 5109|      6|            p += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|      6|#define SIZEOF_SIZE_T 8
  ------------------
 5110|      6|            q += SIZEOF_SIZE_T;
  ------------------
  |  | 1838|      6|#define SIZEOF_SIZE_T 8
  ------------------
 5111|      6|        }
 5112|     34|        while (p < end) {
  ------------------
  |  Branch (5112:16): [True: 28, False: 6]
  ------------------
 5113|     28|            if ((unsigned char)*p & 0x80)
  ------------------
  |  Branch (5113:17): [True: 0, False: 28]
  ------------------
 5114|      0|                break;
 5115|     28|            *q++ = *p++;
 5116|     28|        }
 5117|      6|        return p - start;
 5118|      6|    }
 5119|  1.85k|#endif
 5120|  1.85k|    Py_ssize_t pos = find_first_nonascii((const unsigned char*)start,
 5121|  1.85k|                                         (const unsigned char*)end);
 5122|  1.85k|    memcpy(dest, start, pos);
 5123|  1.85k|    return pos;
 5124|  1.86k|}
unicodeobject.c:unicode_decode_utf8_impl:
 5132|  1.60k|{
 5133|  1.60k|    Py_ssize_t startinpos, endinpos;
 5134|  1.60k|    const char *errmsg = "";
 5135|  1.60k|    PyObject *error_handler_obj = NULL;
 5136|  1.60k|    PyObject *exc = NULL;
 5137|       |
 5138|  22.4k|    while (s < end) {
  ------------------
  |  Branch (5138:12): [True: 21.3k, False: 1.06k]
  ------------------
 5139|  21.3k|        Py_UCS4 ch;
 5140|  21.3k|        int kind = writer->kind;
 5141|       |
 5142|  21.3k|        if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (5142:13): [True: 1.89k, False: 19.4k]
  ------------------
 5143|  1.89k|            if (PyUnicode_IS_ASCII(writer->buffer))
  ------------------
  |  |  227|  1.89k|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.89k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.89k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 1.60k, False: 293]
  |  |  ------------------
  ------------------
 5144|  1.60k|                ch = asciilib_utf8_decode(&s, end, writer->data, &writer->pos);
 5145|    293|            else
 5146|    293|                ch = ucs1lib_utf8_decode(&s, end, writer->data, &writer->pos);
 5147|  19.4k|        } else if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (5147:20): [True: 10.3k, False: 9.11k]
  ------------------
 5148|  10.3k|            ch = ucs2lib_utf8_decode(&s, end, writer->data, &writer->pos);
 5149|  10.3k|        } else {
 5150|  9.11k|            assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (5150:13): [True: 9.11k, False: 0]
  ------------------
 5151|  9.11k|            ch = ucs4lib_utf8_decode(&s, end, writer->data, &writer->pos);
 5152|  9.11k|        }
 5153|       |
 5154|  21.3k|        switch (ch) {
 5155|  1.03k|        case 0:
  ------------------
  |  Branch (5155:9): [True: 1.03k, False: 20.3k]
  ------------------
 5156|  1.03k|            if (s == end || consumed)
  ------------------
  |  Branch (5156:17): [True: 524, False: 513]
  |  Branch (5156:29): [True: 15, False: 498]
  ------------------
 5157|    539|                goto End;
 5158|    498|            errmsg = "unexpected end of data";
 5159|    498|            startinpos = s - starts;
 5160|    498|            endinpos = end - starts;
 5161|    498|            break;
 5162|  8.09k|        case 1:
  ------------------
  |  Branch (5162:9): [True: 8.09k, False: 13.2k]
  ------------------
 5163|  8.09k|            errmsg = "invalid start byte";
 5164|  8.09k|            startinpos = s - starts;
 5165|  8.09k|            endinpos = startinpos + 1;
 5166|  8.09k|            break;
 5167|  8.46k|        case 2:
  ------------------
  |  Branch (5167:9): [True: 8.46k, False: 12.8k]
  ------------------
 5168|  8.46k|            if (consumed && (unsigned char)s[0] == 0xED && end - s == 2
  ------------------
  |  Branch (5168:17): [True: 3.16k, False: 5.30k]
  |  Branch (5168:29): [True: 497, False: 2.66k]
  |  Branch (5168:60): [True: 8, False: 489]
  ------------------
 5169|      8|                && (unsigned char)s[1] >= 0xA0 && (unsigned char)s[1] <= 0xBF)
  ------------------
  |  Branch (5169:20): [True: 4, False: 4]
  |  Branch (5169:51): [True: 3, False: 1]
  ------------------
 5170|      3|            {
 5171|       |                /* Truncated surrogate code in range D800-DFFF */
 5172|      3|                goto End;
 5173|      3|            }
 5174|  8.46k|            _Py_FALLTHROUGH;
  ------------------
  |  |  644|  8.46k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 5175|  10.5k|        case 3:
  ------------------
  |  Branch (5175:9): [True: 2.11k, False: 19.2k]
  ------------------
 5176|  11.2k|        case 4:
  ------------------
  |  Branch (5176:9): [True: 625, False: 20.7k]
  ------------------
 5177|  11.2k|            errmsg = "invalid continuation byte";
 5178|  11.2k|            startinpos = s - starts;
 5179|  11.2k|            endinpos = startinpos + ch - 1;
 5180|  11.2k|            break;
 5181|  1.02k|        default:
  ------------------
  |  Branch (5181:9): [True: 1.02k, False: 20.3k]
  ------------------
 5182|       |            // ch doesn't fit into kind, so change the buffer kind to write
 5183|       |            // the character
 5184|  1.02k|            if (_PyUnicodeWriter_WriteCharInline(writer, ch) < 0)
  ------------------
  |  Branch (5184:17): [True: 0, False: 1.02k]
  ------------------
 5185|      0|                goto onError;
 5186|  1.02k|            continue;
 5187|  21.3k|        }
 5188|       |
 5189|  19.8k|        if (error_handler == _Py_ERROR_UNKNOWN)
  ------------------
  |  Branch (5189:13): [True: 0, False: 19.8k]
  ------------------
 5190|      0|            error_handler = _Py_GetErrorHandler(errors);
 5191|       |
 5192|  19.8k|        switch (error_handler) {
 5193|      0|        case _Py_ERROR_IGNORE:
  ------------------
  |  Branch (5193:9): [True: 0, False: 19.8k]
  ------------------
 5194|      0|            s += (endinpos - startinpos);
 5195|      0|            break;
 5196|       |
 5197|  19.8k|        case _Py_ERROR_REPLACE:
  ------------------
  |  Branch (5197:9): [True: 19.8k, False: 0]
  ------------------
 5198|  19.8k|            if (_PyUnicodeWriter_WriteCharInline(writer, 0xfffd) < 0)
  ------------------
  |  Branch (5198:17): [True: 0, False: 19.8k]
  ------------------
 5199|      0|                goto onError;
 5200|  19.8k|            s += (endinpos - startinpos);
 5201|  19.8k|            break;
 5202|       |
 5203|      0|        case _Py_ERROR_SURROGATEESCAPE:
  ------------------
  |  Branch (5203:9): [True: 0, False: 19.8k]
  ------------------
 5204|      0|        {
 5205|      0|            Py_ssize_t i;
 5206|       |
 5207|      0|            if (_PyUnicodeWriter_PrepareKind(writer, PyUnicode_2BYTE_KIND) < 0)
  ------------------
  |  |  582|      0|    ((KIND) <= (WRITER)->kind                                         \
  |  |  ------------------
  |  |  |  Branch (582:6): [True: 0, False: 0]
  |  |  ------------------
  |  |  583|      0|     ? 0                                                              \
  |  |  584|      0|     : _PyUnicodeWriter_PrepareKindInternal((WRITER), (KIND)))
  ------------------
  |  Branch (5207:17): [True: 0, False: 0]
  ------------------
 5208|      0|                goto onError;
 5209|      0|            for (i=startinpos; i<endinpos; i++) {
  ------------------
  |  Branch (5209:32): [True: 0, False: 0]
  ------------------
 5210|      0|                ch = (Py_UCS4)(unsigned char)(starts[i]);
 5211|      0|                PyUnicode_WRITE(writer->kind, writer->data, writer->pos,
  ------------------
  |  |  335|      0|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|      0|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 5212|      0|                                ch + 0xdc00);
 5213|      0|                writer->pos++;
 5214|      0|            }
 5215|      0|            s += (endinpos - startinpos);
 5216|      0|            break;
 5217|      0|        }
 5218|       |
 5219|      0|        default:
  ------------------
  |  Branch (5219:9): [True: 0, False: 19.8k]
  ------------------
 5220|      0|            if (unicode_decode_call_errorhandler_writer(
  ------------------
  |  Branch (5220:17): [True: 0, False: 0]
  ------------------
 5221|      0|                    errors, &error_handler_obj,
 5222|      0|                    "utf-8", errmsg,
 5223|      0|                    &starts, &end, &startinpos, &endinpos, &exc, &s,
 5224|      0|                    writer)) {
 5225|      0|                goto onError;
 5226|      0|            }
 5227|       |
 5228|      0|            if (_PyUnicodeWriter_Prepare(writer, end - s, 127) < 0) {
  ------------------
  |  |  562|      0|    (((MAXCHAR) <= (WRITER)->maxchar                                  \
  |  |  ------------------
  |  |  |  Branch (562:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  563|      0|      && (LENGTH) <= (WRITER)->size - (WRITER)->pos)                  \
  |  |  ------------------
  |  |  |  Branch (563:10): [True: 0, False: 0]
  |  |  ------------------
  |  |  564|      0|     ? 0                                                              \
  |  |  565|      0|     : (((LENGTH) == 0)                                               \
  |  |  ------------------
  |  |  |  Branch (565:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  566|      0|        ? 0                                                           \
  |  |  567|      0|        : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  ------------------
  |  Branch (5228:17): [True: 0, False: 0]
  ------------------
 5229|      0|                goto onError;
 5230|      0|            }
 5231|  19.8k|        }
 5232|  19.8k|    }
 5233|       |
 5234|  1.60k|End:
 5235|  1.60k|    if (consumed)
  ------------------
  |  Branch (5235:9): [True: 52, False: 1.55k]
  ------------------
 5236|     52|        *consumed = s - starts;
 5237|       |
 5238|  1.60k|    Py_XDECREF(error_handler_obj);
  ------------------
  |  |  524|  1.60k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5239|  1.60k|    Py_XDECREF(exc);
  ------------------
  |  |  524|  1.60k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.60k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.60k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5240|  1.60k|    return 0;
 5241|       |
 5242|      0|onError:
 5243|      0|    Py_XDECREF(error_handler_obj);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5244|      0|    Py_XDECREF(exc);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5245|      0|    return -1;
 5246|  1.60k|}
unicodeobject.c:unicode_encode_utf8:
 5680|     52|{
 5681|     52|    if (!PyUnicode_Check(unicode)) {
  ------------------
  |  |  103|     52|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     52|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (5681:9): [True: 0, False: 52]
  ------------------
 5682|      0|        PyErr_BadArgument();
 5683|      0|        return NULL;
 5684|      0|    }
 5685|       |
 5686|     52|    if (PyUnicode_UTF8(unicode))
  ------------------
  |  Branch (5686:9): [True: 52, False: 0]
  ------------------
 5687|     52|        return PyBytes_FromStringAndSize(PyUnicode_UTF8(unicode),
 5688|     52|                                         PyUnicode_UTF8_LENGTH(unicode));
 5689|       |
 5690|      0|    int kind = PyUnicode_KIND(unicode);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5691|      0|    const void *data = PyUnicode_DATA(unicode);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5692|      0|    Py_ssize_t size = PyUnicode_GET_LENGTH(unicode);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5693|       |
 5694|      0|    PyBytesWriter *writer;
 5695|      0|    char *end;
 5696|       |
 5697|      0|    switch (kind) {
 5698|      0|    default:
  ------------------
  |  Branch (5698:5): [True: 0, False: 0]
  ------------------
 5699|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 5700|      0|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (5700:5): [True: 0, False: 0]
  ------------------
 5701|       |        /* the string cannot be ASCII, or PyUnicode_UTF8() would be set */
 5702|      0|        assert(!PyUnicode_IS_ASCII(unicode));
  ------------------
  |  Branch (5702:9): [True: 0, False: 0]
  ------------------
 5703|      0|        writer = ucs1lib_utf8_encoder(unicode, data, size,
 5704|      0|                                      error_handler, errors, &end);
 5705|      0|        break;
 5706|      0|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (5706:5): [True: 0, False: 0]
  ------------------
 5707|      0|        writer = ucs2lib_utf8_encoder(unicode, data, size,
 5708|      0|                                      error_handler, errors, &end);
 5709|      0|        break;
 5710|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (5710:5): [True: 0, False: 0]
  ------------------
 5711|      0|        writer = ucs4lib_utf8_encoder(unicode, data, size,
 5712|      0|                                      error_handler, errors, &end);
 5713|      0|        break;
 5714|      0|    }
 5715|       |
 5716|      0|    if (writer == NULL) {
  ------------------
  |  Branch (5716:9): [True: 0, False: 0]
  ------------------
 5717|      0|        PyBytesWriter_Discard(writer);
 5718|      0|        return NULL;
 5719|      0|    }
 5720|      0|    return PyBytesWriter_FinishWithPointer(writer, end);
 5721|      0|}
unicodeobject.c:any_find_slice:
 9526|      8|{
 9527|      8|    int kind1, kind2;
 9528|      8|    const void *buf1, *buf2;
 9529|      8|    Py_ssize_t len1, len2, result;
 9530|       |
 9531|      8|    kind1 = PyUnicode_KIND(s1);
  ------------------
  |  |  258|      8|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     16|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9532|      8|    kind2 = PyUnicode_KIND(s2);
  ------------------
  |  |  258|      8|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     16|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9533|      8|    if (kind1 < kind2)
  ------------------
  |  Branch (9533:9): [True: 0, False: 8]
  ------------------
 9534|      0|        return -1;
 9535|       |
 9536|      8|    len1 = PyUnicode_GET_LENGTH(s1);
  ------------------
  |  |  299|      8|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9537|      8|    len2 = PyUnicode_GET_LENGTH(s2);
  ------------------
  |  |  299|      8|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9538|      8|    ADJUST_INDICES(start, end, len1);
  ------------------
  |  | 9503|      8|    do {                                \
  |  | 9504|      8|        if (end > len) {                \
  |  |  ------------------
  |  |  |  Branch (9504:13): [True: 8, False: 0]
  |  |  ------------------
  |  | 9505|      8|            end = len;                  \
  |  | 9506|      8|        }                               \
  |  | 9507|      8|        else if (end < 0) {             \
  |  |  ------------------
  |  |  |  Branch (9507:18): [True: 0, False: 0]
  |  |  ------------------
  |  | 9508|      0|            end += len;                 \
  |  | 9509|      0|            if (end < 0) {              \
  |  |  ------------------
  |  |  |  Branch (9509:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9510|      0|                end = 0;                \
  |  | 9511|      0|            }                           \
  |  | 9512|      0|        }                               \
  |  | 9513|      8|        if (start < 0) {                \
  |  |  ------------------
  |  |  |  Branch (9513:13): [True: 0, False: 8]
  |  |  ------------------
  |  | 9514|      0|            start += len;               \
  |  | 9515|      0|            if (start < 0) {            \
  |  |  ------------------
  |  |  |  Branch (9515:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9516|      0|                start = 0;              \
  |  | 9517|      0|            }                           \
  |  | 9518|      0|        }                               \
  |  | 9519|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (9519:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 9539|      8|    if (end - start < len2)
  ------------------
  |  Branch (9539:9): [True: 0, False: 8]
  ------------------
 9540|      0|        return -1;
 9541|       |
 9542|      8|    buf1 = PyUnicode_DATA(s1);
  ------------------
  |  |  284|      8|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9543|      8|    buf2 = PyUnicode_DATA(s2);
  ------------------
  |  |  284|      8|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9544|      8|    if (len2 == 1) {
  ------------------
  |  Branch (9544:9): [True: 8, False: 0]
  ------------------
 9545|      8|        Py_UCS4 ch = PyUnicode_READ(kind2, buf2, 0);
  ------------------
  |  |  354|      8|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      8|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      8|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      8|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      8|                   (index))
  ------------------
 9546|      8|        result = findchar((const char *)buf1 + kind1*start,
 9547|      8|                          kind1, end - start, ch, direction);
 9548|      8|        if (result == -1)
  ------------------
  |  Branch (9548:13): [True: 0, False: 8]
  ------------------
 9549|      0|            return -1;
 9550|      8|        else
 9551|      8|            return start + result;
 9552|      8|    }
 9553|       |
 9554|      0|    if (kind2 != kind1) {
  ------------------
  |  Branch (9554:9): [True: 0, False: 0]
  ------------------
 9555|      0|        buf2 = unicode_askind(kind2, buf2, len2, kind1);
 9556|      0|        if (!buf2)
  ------------------
  |  Branch (9556:13): [True: 0, False: 0]
  ------------------
 9557|      0|            return -2;
 9558|      0|    }
 9559|       |
 9560|      0|    if (direction > 0) {
  ------------------
  |  Branch (9560:9): [True: 0, False: 0]
  ------------------
 9561|      0|        switch (kind1) {
 9562|      0|        case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (9562:9): [True: 0, False: 0]
  ------------------
 9563|      0|            if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
  ------------------
  |  |  227|      0|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
                          if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
  ------------------
  |  |  227|      0|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 9564|      0|                result = asciilib_find_slice(buf1, len1, buf2, len2, start, end);
 9565|      0|            else
 9566|      0|                result = ucs1lib_find_slice(buf1, len1, buf2, len2, start, end);
 9567|      0|            break;
 9568|      0|        case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (9568:9): [True: 0, False: 0]
  ------------------
 9569|      0|            result = ucs2lib_find_slice(buf1, len1, buf2, len2, start, end);
 9570|      0|            break;
 9571|      0|        case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (9571:9): [True: 0, False: 0]
  ------------------
 9572|      0|            result = ucs4lib_find_slice(buf1, len1, buf2, len2, start, end);
 9573|      0|            break;
 9574|      0|        default:
  ------------------
  |  Branch (9574:9): [True: 0, False: 0]
  ------------------
 9575|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 9576|      0|        }
 9577|      0|    }
 9578|      0|    else {
 9579|      0|        switch (kind1) {
 9580|      0|        case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (9580:9): [True: 0, False: 0]
  ------------------
 9581|      0|            if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
  ------------------
  |  |  227|      0|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
                          if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
  ------------------
  |  |  227|      0|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 9582|      0|                result = asciilib_rfind_slice(buf1, len1, buf2, len2, start, end);
 9583|      0|            else
 9584|      0|                result = ucs1lib_rfind_slice(buf1, len1, buf2, len2, start, end);
 9585|      0|            break;
 9586|      0|        case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (9586:9): [True: 0, False: 0]
  ------------------
 9587|      0|            result = ucs2lib_rfind_slice(buf1, len1, buf2, len2, start, end);
 9588|      0|            break;
 9589|      0|        case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (9589:9): [True: 0, False: 0]
  ------------------
 9590|      0|            result = ucs4lib_rfind_slice(buf1, len1, buf2, len2, start, end);
 9591|      0|            break;
 9592|      0|        default:
  ------------------
  |  Branch (9592:9): [True: 0, False: 0]
  ------------------
 9593|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 9594|      0|        }
 9595|      0|    }
 9596|       |
 9597|      0|    assert((kind2 != kind1) == (buf2 != PyUnicode_DATA(s2)));
  ------------------
  |  Branch (9597:5): [True: 0, False: 0]
  ------------------
 9598|      0|    if (kind2 != kind1)
  ------------------
  |  Branch (9598:9): [True: 0, False: 0]
  ------------------
 9599|      0|        PyMem_Free((void *)buf2);
 9600|       |
 9601|      0|    return result;
 9602|      0|}
unicodeobject.c:tailmatch:
 9656|    138|{
 9657|    138|    int kind_self;
 9658|    138|    int kind_sub;
 9659|    138|    const void *data_self;
 9660|    138|    const void *data_sub;
 9661|    138|    Py_ssize_t offset;
 9662|    138|    Py_ssize_t i;
 9663|    138|    Py_ssize_t end_sub;
 9664|       |
 9665|    138|    ADJUST_INDICES(start, end, PyUnicode_GET_LENGTH(self));
  ------------------
  |  | 9503|    138|    do {                                \
  |  | 9504|    138|        if (end > len) {                \
  |  |  ------------------
  |  |  |  Branch (9504:13): [True: 138, False: 0]
  |  |  ------------------
  |  | 9505|    138|            end = len;                  \
  |  | 9506|    138|        }                               \
  |  | 9507|    138|        else if (end < 0) {             \
  |  |  ------------------
  |  |  |  Branch (9507:18): [True: 0, False: 0]
  |  |  ------------------
  |  | 9508|      0|            end += len;                 \
  |  | 9509|      0|            if (end < 0) {              \
  |  |  ------------------
  |  |  |  Branch (9509:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9510|      0|                end = 0;                \
  |  | 9511|      0|            }                           \
  |  | 9512|      0|        }                               \
  |  | 9513|    138|        if (start < 0) {                \
  |  |  ------------------
  |  |  |  Branch (9513:13): [True: 0, False: 138]
  |  |  ------------------
  |  | 9514|      0|            start += len;               \
  |  | 9515|      0|            if (start < 0) {            \
  |  |  ------------------
  |  |  |  Branch (9515:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9516|      0|                start = 0;              \
  |  | 9517|      0|            }                           \
  |  | 9518|      0|        }                               \
  |  | 9519|    138|    } while (0)
  |  |  ------------------
  |  |  |  Branch (9519:14): [Folded, False: 138]
  |  |  ------------------
  ------------------
 9666|    138|    end -= PyUnicode_GET_LENGTH(substring);
  ------------------
  |  |  299|    138|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    138|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    138|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9667|    138|    if (end < start)
  ------------------
  |  Branch (9667:9): [True: 28, False: 110]
  ------------------
 9668|     28|        return 0;
 9669|       |
 9670|    110|    if (PyUnicode_GET_LENGTH(substring) == 0)
  ------------------
  |  |  299|    110|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    110|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    110|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (9670:9): [True: 0, False: 110]
  ------------------
 9671|      0|        return 1;
 9672|       |
 9673|    110|    kind_self = PyUnicode_KIND(self);
  ------------------
  |  |  258|    110|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    220|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 110, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9674|    110|    data_self = PyUnicode_DATA(self);
  ------------------
  |  |  284|    110|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    110|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    110|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9675|    110|    kind_sub = PyUnicode_KIND(substring);
  ------------------
  |  |  258|    110|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|    220|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 110, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9676|    110|    data_sub = PyUnicode_DATA(substring);
  ------------------
  |  |  284|    110|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    110|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    110|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9677|    110|    end_sub = PyUnicode_GET_LENGTH(substring) - 1;
  ------------------
  |  |  299|    110|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    110|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    110|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9678|       |
 9679|    110|    if (direction > 0)
  ------------------
  |  Branch (9679:9): [True: 34, False: 76]
  ------------------
 9680|     34|        offset = end;
 9681|     76|    else
 9682|     76|        offset = start;
 9683|       |
 9684|    110|    if (PyUnicode_READ(kind_self, data_self, offset) ==
  ------------------
  |  |  354|    110|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|    110|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|    110|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|    110|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|    110|                   (index))
  ------------------
  |  Branch (9684:9): [True: 20, False: 90]
  ------------------
 9685|    110|        PyUnicode_READ(kind_sub, data_sub, 0) &&
  ------------------
  |  |  354|    220|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|    110|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|    220|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|    110|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|    220|                   (index))
  ------------------
 9686|     20|        PyUnicode_READ(kind_self, data_self, offset + end_sub) ==
  ------------------
  |  |  354|     20|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|     20|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|     20|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|     20|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|     20|                   (index))
  ------------------
  |  Branch (9686:9): [True: 18, False: 2]
  ------------------
 9687|     20|        PyUnicode_READ(kind_sub, data_sub, end_sub)) {
  ------------------
  |  |  354|     20|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|     20|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|     20|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|     20|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|     20|                   (index))
  ------------------
 9688|       |        /* If both are of the same kind, memcmp is sufficient */
 9689|     18|        if (kind_self == kind_sub) {
  ------------------
  |  Branch (9689:13): [True: 18, False: 0]
  ------------------
 9690|     18|            return ! memcmp((char *)data_self +
 9691|     18|                                (offset * PyUnicode_KIND(substring)),
  ------------------
  |  |  258|     18|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     36|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 18, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9692|      0|                            data_sub,
 9693|     18|                            PyUnicode_GET_LENGTH(substring) *
  ------------------
  |  |  299|     18|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9694|     18|                                PyUnicode_KIND(substring));
  ------------------
  |  |  258|     18|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     36|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 18, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9695|     18|        }
 9696|       |        /* otherwise we have to compare each character by first accessing it */
 9697|      0|        else {
 9698|       |            /* We do not need to compare 0 and len(substring)-1 because
 9699|       |               the if statement above ensured already that they are equal
 9700|       |               when we end up here. */
 9701|      0|            for (i = 1; i < end_sub; ++i) {
  ------------------
  |  Branch (9701:25): [True: 0, False: 0]
  ------------------
 9702|      0|                if (PyUnicode_READ(kind_self, data_self, offset + i) !=
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
  |  Branch (9702:21): [True: 0, False: 0]
  ------------------
 9703|      0|                    PyUnicode_READ(kind_sub, data_sub, i))
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
 9704|      0|                    return 0;
 9705|      0|            }
 9706|      0|            return 1;
 9707|      0|        }
 9708|     18|    }
 9709|       |
 9710|     92|    return 0;
 9711|    110|}
unicodeobject.c:unicode_compare:
10901|  5.11k|{
10902|  5.11k|#define COMPARE(TYPE1, TYPE2) \
10903|  5.11k|    do { \
10904|  5.11k|        TYPE1* p1 = (TYPE1 *)data1; \
10905|  5.11k|        TYPE2* p2 = (TYPE2 *)data2; \
10906|  5.11k|        TYPE1* end = p1 + len; \
10907|  5.11k|        Py_UCS4 c1, c2; \
10908|  5.11k|        for (; p1 != end; p1++, p2++) { \
10909|  5.11k|            c1 = *p1; \
10910|  5.11k|            c2 = *p2; \
10911|  5.11k|            if (c1 != c2) \
10912|  5.11k|                return (c1 < c2) ? -1 : 1; \
10913|  5.11k|        } \
10914|  5.11k|    } \
10915|  5.11k|    while (0)
10916|       |
10917|  5.11k|    int kind1, kind2;
10918|  5.11k|    const void *data1, *data2;
10919|  5.11k|    Py_ssize_t len1, len2, len;
10920|       |
10921|  5.11k|    kind1 = PyUnicode_KIND(str1);
  ------------------
  |  |  258|  5.11k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  10.2k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 5.11k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10922|  5.11k|    kind2 = PyUnicode_KIND(str2);
  ------------------
  |  |  258|  5.11k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  10.2k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 5.11k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10923|  5.11k|    data1 = PyUnicode_DATA(str1);
  ------------------
  |  |  284|  5.11k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10924|  5.11k|    data2 = PyUnicode_DATA(str2);
  ------------------
  |  |  284|  5.11k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10925|  5.11k|    len1 = PyUnicode_GET_LENGTH(str1);
  ------------------
  |  |  299|  5.11k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10926|  5.11k|    len2 = PyUnicode_GET_LENGTH(str2);
  ------------------
  |  |  299|  5.11k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10927|  5.11k|    len = Py_MIN(len1, len2);
  ------------------
  |  |  112|  5.11k|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 2.59k, False: 2.51k]
  |  |  ------------------
  ------------------
10928|       |
10929|  5.11k|    switch(kind1) {
10930|  5.11k|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (10930:5): [True: 5.11k, False: 0]
  ------------------
10931|  5.11k|    {
10932|  5.11k|        switch(kind2) {
10933|  5.11k|        case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (10933:9): [True: 5.11k, False: 0]
  ------------------
10934|  5.11k|        {
10935|  5.11k|            int cmp = memcmp(data1, data2, len);
10936|       |            /* normalize result of memcmp() into the range [-1; 1] */
10937|  5.11k|            if (cmp < 0)
  ------------------
  |  Branch (10937:17): [True: 2.56k, False: 2.55k]
  ------------------
10938|  2.56k|                return -1;
10939|  2.55k|            if (cmp > 0)
  ------------------
  |  Branch (10939:17): [True: 2.47k, False: 72]
  ------------------
10940|  2.47k|                return 1;
10941|     72|            break;
10942|  2.55k|        }
10943|     72|        case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (10943:9): [True: 0, False: 5.11k]
  ------------------
10944|      0|            COMPARE(Py_UCS1, Py_UCS2);
  ------------------
  |  |10903|      0|    do { \
  |  |10904|      0|        TYPE1* p1 = (TYPE1 *)data1; \
  |  |10905|      0|        TYPE2* p2 = (TYPE2 *)data2; \
  |  |10906|      0|        TYPE1* end = p1 + len; \
  |  |10907|      0|        Py_UCS4 c1, c2; \
  |  |10908|      0|        for (; p1 != end; p1++, p2++) { \
  |  |  ------------------
  |  |  |  Branch (10908:16): [True: 0, False: 0]
  |  |  ------------------
  |  |10909|      0|            c1 = *p1; \
  |  |10910|      0|            c2 = *p2; \
  |  |10911|      0|            if (c1 != c2) \
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                return (c1 < c2) ? -1 : 1; \
  |  |  ------------------
  |  |  |  Branch (10912:24): [True: 0, False: 0]
  |  |  ------------------
  |  |10913|      0|        } \
  |  |10914|      0|    } \
  |  |10915|      0|    while (0)
  |  |  ------------------
  |  |  |  Branch (10915:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
10945|      0|            break;
10946|      0|        case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (10946:9): [True: 0, False: 5.11k]
  ------------------
10947|      0|            COMPARE(Py_UCS1, Py_UCS4);
  ------------------
  |  |10903|      0|    do { \
  |  |10904|      0|        TYPE1* p1 = (TYPE1 *)data1; \
  |  |10905|      0|        TYPE2* p2 = (TYPE2 *)data2; \
  |  |10906|      0|        TYPE1* end = p1 + len; \
  |  |10907|      0|        Py_UCS4 c1, c2; \
  |  |10908|      0|        for (; p1 != end; p1++, p2++) { \
  |  |  ------------------
  |  |  |  Branch (10908:16): [True: 0, False: 0]
  |  |  ------------------
  |  |10909|      0|            c1 = *p1; \
  |  |10910|      0|            c2 = *p2; \
  |  |10911|      0|            if (c1 != c2) \
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                return (c1 < c2) ? -1 : 1; \
  |  |  ------------------
  |  |  |  Branch (10912:24): [True: 0, False: 0]
  |  |  ------------------
  |  |10913|      0|        } \
  |  |10914|      0|    } \
  |  |10915|      0|    while (0)
  |  |  ------------------
  |  |  |  Branch (10915:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
10948|      0|            break;
10949|      0|        default:
  ------------------
  |  Branch (10949:9): [True: 0, False: 5.11k]
  ------------------
10950|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
10951|  5.11k|        }
10952|     72|        break;
10953|  5.11k|    }
10954|     72|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (10954:5): [True: 0, False: 5.11k]
  ------------------
10955|      0|    {
10956|      0|        switch(kind2) {
10957|      0|        case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (10957:9): [True: 0, False: 0]
  ------------------
10958|      0|            COMPARE(Py_UCS2, Py_UCS1);
  ------------------
  |  |10903|      0|    do { \
  |  |10904|      0|        TYPE1* p1 = (TYPE1 *)data1; \
  |  |10905|      0|        TYPE2* p2 = (TYPE2 *)data2; \
  |  |10906|      0|        TYPE1* end = p1 + len; \
  |  |10907|      0|        Py_UCS4 c1, c2; \
  |  |10908|      0|        for (; p1 != end; p1++, p2++) { \
  |  |  ------------------
  |  |  |  Branch (10908:16): [True: 0, False: 0]
  |  |  ------------------
  |  |10909|      0|            c1 = *p1; \
  |  |10910|      0|            c2 = *p2; \
  |  |10911|      0|            if (c1 != c2) \
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                return (c1 < c2) ? -1 : 1; \
  |  |  ------------------
  |  |  |  Branch (10912:24): [True: 0, False: 0]
  |  |  ------------------
  |  |10913|      0|        } \
  |  |10914|      0|    } \
  |  |10915|      0|    while (0)
  |  |  ------------------
  |  |  |  Branch (10915:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
10959|      0|            break;
10960|      0|        case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (10960:9): [True: 0, False: 0]
  ------------------
10961|      0|        {
10962|      0|            COMPARE(Py_UCS2, Py_UCS2);
  ------------------
  |  |10903|      0|    do { \
  |  |10904|      0|        TYPE1* p1 = (TYPE1 *)data1; \
  |  |10905|      0|        TYPE2* p2 = (TYPE2 *)data2; \
  |  |10906|      0|        TYPE1* end = p1 + len; \
  |  |10907|      0|        Py_UCS4 c1, c2; \
  |  |10908|      0|        for (; p1 != end; p1++, p2++) { \
  |  |  ------------------
  |  |  |  Branch (10908:16): [True: 0, False: 0]
  |  |  ------------------
  |  |10909|      0|            c1 = *p1; \
  |  |10910|      0|            c2 = *p2; \
  |  |10911|      0|            if (c1 != c2) \
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                return (c1 < c2) ? -1 : 1; \
  |  |  ------------------
  |  |  |  Branch (10912:24): [True: 0, False: 0]
  |  |  ------------------
  |  |10913|      0|        } \
  |  |10914|      0|    } \
  |  |10915|      0|    while (0)
  |  |  ------------------
  |  |  |  Branch (10915:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
10963|      0|            break;
10964|      0|        }
10965|      0|        case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (10965:9): [True: 0, False: 0]
  ------------------
10966|      0|            COMPARE(Py_UCS2, Py_UCS4);
  ------------------
  |  |10903|      0|    do { \
  |  |10904|      0|        TYPE1* p1 = (TYPE1 *)data1; \
  |  |10905|      0|        TYPE2* p2 = (TYPE2 *)data2; \
  |  |10906|      0|        TYPE1* end = p1 + len; \
  |  |10907|      0|        Py_UCS4 c1, c2; \
  |  |10908|      0|        for (; p1 != end; p1++, p2++) { \
  |  |  ------------------
  |  |  |  Branch (10908:16): [True: 0, False: 0]
  |  |  ------------------
  |  |10909|      0|            c1 = *p1; \
  |  |10910|      0|            c2 = *p2; \
  |  |10911|      0|            if (c1 != c2) \
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                return (c1 < c2) ? -1 : 1; \
  |  |  ------------------
  |  |  |  Branch (10912:24): [True: 0, False: 0]
  |  |  ------------------
  |  |10913|      0|        } \
  |  |10914|      0|    } \
  |  |10915|      0|    while (0)
  |  |  ------------------
  |  |  |  Branch (10915:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
10967|      0|            break;
10968|      0|        default:
  ------------------
  |  Branch (10968:9): [True: 0, False: 0]
  ------------------
10969|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
10970|      0|        }
10971|      0|        break;
10972|      0|    }
10973|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (10973:5): [True: 0, False: 5.11k]
  ------------------
10974|      0|    {
10975|      0|        switch(kind2) {
10976|      0|        case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (10976:9): [True: 0, False: 0]
  ------------------
10977|      0|            COMPARE(Py_UCS4, Py_UCS1);
  ------------------
  |  |10903|      0|    do { \
  |  |10904|      0|        TYPE1* p1 = (TYPE1 *)data1; \
  |  |10905|      0|        TYPE2* p2 = (TYPE2 *)data2; \
  |  |10906|      0|        TYPE1* end = p1 + len; \
  |  |10907|      0|        Py_UCS4 c1, c2; \
  |  |10908|      0|        for (; p1 != end; p1++, p2++) { \
  |  |  ------------------
  |  |  |  Branch (10908:16): [True: 0, False: 0]
  |  |  ------------------
  |  |10909|      0|            c1 = *p1; \
  |  |10910|      0|            c2 = *p2; \
  |  |10911|      0|            if (c1 != c2) \
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                return (c1 < c2) ? -1 : 1; \
  |  |  ------------------
  |  |  |  Branch (10912:24): [True: 0, False: 0]
  |  |  ------------------
  |  |10913|      0|        } \
  |  |10914|      0|    } \
  |  |10915|      0|    while (0)
  |  |  ------------------
  |  |  |  Branch (10915:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
10978|      0|            break;
10979|      0|        case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (10979:9): [True: 0, False: 0]
  ------------------
10980|      0|            COMPARE(Py_UCS4, Py_UCS2);
  ------------------
  |  |10903|      0|    do { \
  |  |10904|      0|        TYPE1* p1 = (TYPE1 *)data1; \
  |  |10905|      0|        TYPE2* p2 = (TYPE2 *)data2; \
  |  |10906|      0|        TYPE1* end = p1 + len; \
  |  |10907|      0|        Py_UCS4 c1, c2; \
  |  |10908|      0|        for (; p1 != end; p1++, p2++) { \
  |  |  ------------------
  |  |  |  Branch (10908:16): [True: 0, False: 0]
  |  |  ------------------
  |  |10909|      0|            c1 = *p1; \
  |  |10910|      0|            c2 = *p2; \
  |  |10911|      0|            if (c1 != c2) \
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                return (c1 < c2) ? -1 : 1; \
  |  |  ------------------
  |  |  |  Branch (10912:24): [True: 0, False: 0]
  |  |  ------------------
  |  |10913|      0|        } \
  |  |10914|      0|    } \
  |  |10915|      0|    while (0)
  |  |  ------------------
  |  |  |  Branch (10915:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
10981|      0|            break;
10982|      0|        case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (10982:9): [True: 0, False: 0]
  ------------------
10983|      0|        {
10984|      0|#if defined(HAVE_WMEMCMP) && SIZEOF_WCHAR_T == 4
10985|      0|            int cmp = wmemcmp((wchar_t *)data1, (wchar_t *)data2, len);
10986|       |            /* normalize result of wmemcmp() into the range [-1; 1] */
10987|      0|            if (cmp < 0)
  ------------------
  |  Branch (10987:17): [True: 0, False: 0]
  ------------------
10988|      0|                return -1;
10989|      0|            if (cmp > 0)
  ------------------
  |  Branch (10989:17): [True: 0, False: 0]
  ------------------
10990|      0|                return 1;
10991|       |#else
10992|       |            COMPARE(Py_UCS4, Py_UCS4);
10993|       |#endif
10994|      0|            break;
10995|      0|        }
10996|      0|        default:
  ------------------
  |  Branch (10996:9): [True: 0, False: 0]
  ------------------
10997|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
10998|      0|        }
10999|      0|        break;
11000|      0|    }
11001|      0|    default:
  ------------------
  |  Branch (11001:5): [True: 0, False: 5.11k]
  ------------------
11002|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
11003|  5.11k|    }
11004|       |
11005|     72|    if (len1 == len2)
  ------------------
  |  Branch (11005:9): [True: 0, False: 72]
  ------------------
11006|      0|        return 0;
11007|     72|    if (len1 < len2)
  ------------------
  |  Branch (11007:9): [True: 2, False: 70]
  ------------------
11008|      2|        return -1;
11009|     70|    else
11010|     70|        return 1;
11011|       |
11012|     72|#undef COMPARE
11013|     72|}
unicodeobject.c:make_bloom_mask:
  917|    152|{
  918|    152|#define BLOOM_UPDATE(TYPE, MASK, PTR, LEN)             \
  919|    152|    do {                                               \
  920|    152|        TYPE *data = (TYPE *)PTR;                      \
  921|    152|        TYPE *end = data + LEN;                        \
  922|    152|        Py_UCS4 ch;                                    \
  923|    152|        for (; data != end; data++) {                  \
  924|    152|            ch = *data;                                \
  925|    152|            MASK |= (1UL << (ch & (BLOOM_WIDTH - 1))); \
  926|    152|        }                                              \
  927|    152|        break;                                         \
  928|    152|    } while (0)
  929|       |
  930|       |    /* calculate simple bloom-style bitmask for a given unicode string */
  931|       |
  932|    152|    BLOOM_MASK mask;
  ------------------
  |  |  905|    152|#define BLOOM_MASK unsigned long
  ------------------
  933|       |
  934|    152|    mask = 0;
  935|    152|    switch (kind) {
  936|    150|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (936:5): [True: 150, False: 2]
  ------------------
  937|    150|        BLOOM_UPDATE(Py_UCS1, mask, ptr, len);
  ------------------
  |  |  919|    150|    do {                                               \
  |  |  920|    150|        TYPE *data = (TYPE *)PTR;                      \
  |  |  921|    150|        TYPE *end = data + LEN;                        \
  |  |  922|    150|        Py_UCS4 ch;                                    \
  |  |  923|    300|        for (; data != end; data++) {                  \
  |  |  ------------------
  |  |  |  Branch (923:16): [True: 150, False: 150]
  |  |  ------------------
  |  |  924|    150|            ch = *data;                                \
  |  |  925|    150|            MASK |= (1UL << (ch & (BLOOM_WIDTH - 1))); \
  |  |  ------------------
  |  |  |  |  898|    150|#define BLOOM_WIDTH 64
  |  |  ------------------
  |  |  926|    150|        }                                              \
  |  |  927|    150|        break;                                         \
  |  |  928|    150|    } while (0)
  |  |  ------------------
  |  |  |  Branch (928:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  938|    150|        break;
  939|      2|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (939:5): [True: 2, False: 150]
  ------------------
  940|      2|        BLOOM_UPDATE(Py_UCS2, mask, ptr, len);
  ------------------
  |  |  919|      2|    do {                                               \
  |  |  920|      2|        TYPE *data = (TYPE *)PTR;                      \
  |  |  921|      2|        TYPE *end = data + LEN;                        \
  |  |  922|      2|        Py_UCS4 ch;                                    \
  |  |  923|     18|        for (; data != end; data++) {                  \
  |  |  ------------------
  |  |  |  Branch (923:16): [True: 16, False: 2]
  |  |  ------------------
  |  |  924|     16|            ch = *data;                                \
  |  |  925|     16|            MASK |= (1UL << (ch & (BLOOM_WIDTH - 1))); \
  |  |  ------------------
  |  |  |  |  898|     16|#define BLOOM_WIDTH 64
  |  |  ------------------
  |  |  926|     16|        }                                              \
  |  |  927|      2|        break;                                         \
  |  |  928|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (928:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  941|      2|        break;
  942|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (942:5): [True: 0, False: 152]
  ------------------
  943|      0|        BLOOM_UPDATE(Py_UCS4, mask, ptr, len);
  ------------------
  |  |  919|      0|    do {                                               \
  |  |  920|      0|        TYPE *data = (TYPE *)PTR;                      \
  |  |  921|      0|        TYPE *end = data + LEN;                        \
  |  |  922|      0|        Py_UCS4 ch;                                    \
  |  |  923|      0|        for (; data != end; data++) {                  \
  |  |  ------------------
  |  |  |  Branch (923:16): [True: 0, False: 0]
  |  |  ------------------
  |  |  924|      0|            ch = *data;                                \
  |  |  925|      0|            MASK |= (1UL << (ch & (BLOOM_WIDTH - 1))); \
  |  |  ------------------
  |  |  |  |  898|      0|#define BLOOM_WIDTH 64
  |  |  ------------------
  |  |  926|      0|        }                                              \
  |  |  927|      0|        break;                                         \
  |  |  928|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (928:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  944|      0|        break;
  945|      0|    default:
  ------------------
  |  Branch (945:5): [True: 0, False: 152]
  ------------------
  946|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  947|    152|    }
  948|    152|    return mask;
  949|       |
  950|    152|#undef BLOOM_UPDATE
  951|    152|}
unicodeobject.c:unicode_result_unchanged:
  751|    172|{
  752|    172|    if (PyUnicode_CheckExact(unicode)) {
  ------------------
  |  |  104|    172|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|    172|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    172|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    172|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 172, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  753|    172|        return Py_NewRef(unicode);
  ------------------
  |  |  550|    172|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    172|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    172|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  754|    172|    }
  755|      0|    else
  756|       |        /* Subtype -- return genuine unicode string with the same value. */
  757|      0|        return _PyUnicode_Copy(unicode);
  758|    172|}
unicodeobject.c:replace:
10518|     30|{
10519|     30|    PyObject *u;
10520|     30|    const char *sbuf = PyUnicode_DATA(self);
  ------------------
  |  |  284|     30|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10521|     30|    const void *buf1 = PyUnicode_DATA(str1);
  ------------------
  |  |  284|     30|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10522|     30|    const void *buf2 = PyUnicode_DATA(str2);
  ------------------
  |  |  284|     30|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10523|     30|    int srelease = 0, release1 = 0, release2 = 0;
10524|     30|    int skind = PyUnicode_KIND(self);
  ------------------
  |  |  258|     30|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     60|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 30, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10525|     30|    int kind1 = PyUnicode_KIND(str1);
  ------------------
  |  |  258|     30|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     60|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 30, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10526|     30|    int kind2 = PyUnicode_KIND(str2);
  ------------------
  |  |  258|     30|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     60|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 30, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10527|     30|    Py_ssize_t slen = PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|     30|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10528|     30|    Py_ssize_t len1 = PyUnicode_GET_LENGTH(str1);
  ------------------
  |  |  299|     30|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10529|     30|    Py_ssize_t len2 = PyUnicode_GET_LENGTH(str2);
  ------------------
  |  |  299|     30|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10530|     30|    int mayshrink;
10531|     30|    Py_UCS4 maxchar, maxchar_str1, maxchar_str2;
10532|       |
10533|     30|    if (slen < len1)
  ------------------
  |  Branch (10533:9): [True: 0, False: 30]
  ------------------
10534|      0|        goto nothing;
10535|       |
10536|     30|    if (maxcount < 0)
  ------------------
  |  Branch (10536:9): [True: 30, False: 0]
  ------------------
10537|     30|        maxcount = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|     30|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
10538|      0|    else if (maxcount == 0)
  ------------------
  |  Branch (10538:14): [True: 0, False: 0]
  ------------------
10539|      0|        goto nothing;
10540|       |
10541|     30|    if (str1 == str2)
  ------------------
  |  Branch (10541:9): [True: 0, False: 30]
  ------------------
10542|      0|        goto nothing;
10543|       |
10544|     30|    maxchar = PyUnicode_MAX_CHAR_VALUE(self);
  ------------------
  |  |  405|     30|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10545|     30|    maxchar_str1 = PyUnicode_MAX_CHAR_VALUE(str1);
  ------------------
  |  |  405|     30|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10546|     30|    if (maxchar < maxchar_str1)
  ------------------
  |  Branch (10546:9): [True: 0, False: 30]
  ------------------
10547|       |        /* substring too wide to be present */
10548|      0|        goto nothing;
10549|     30|    maxchar_str2 = PyUnicode_MAX_CHAR_VALUE(str2);
  ------------------
  |  |  405|     30|    PyUnicode_MAX_CHAR_VALUE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10550|       |    /* Replacing str1 with str2 may cause a maxchar reduction in the
10551|       |       result string. */
10552|     30|    mayshrink = (maxchar_str2 < maxchar_str1) && (maxchar == maxchar_str1);
  ------------------
  |  Branch (10552:17): [True: 0, False: 30]
  |  Branch (10552:50): [True: 0, False: 0]
  ------------------
10553|     30|    maxchar = Py_MAX(maxchar, maxchar_str2);
  ------------------
  |  |  115|     30|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 0, False: 30]
  |  |  ------------------
  ------------------
10554|       |
10555|     30|    if (len1 == len2) {
  ------------------
  |  Branch (10555:9): [True: 30, False: 0]
  ------------------
10556|       |        /* same length */
10557|     30|        if (len1 == 0)
  ------------------
  |  Branch (10557:13): [True: 0, False: 30]
  ------------------
10558|      0|            goto nothing;
10559|     30|        if (len1 == 1) {
  ------------------
  |  Branch (10559:13): [True: 30, False: 0]
  ------------------
10560|       |            /* replace characters */
10561|     30|            Py_UCS4 u1, u2;
10562|     30|            Py_ssize_t pos;
10563|       |
10564|     30|            u1 = PyUnicode_READ(kind1, buf1, 0);
  ------------------
  |  |  354|     30|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|     30|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|     30|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|     30|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|     30|                   (index))
  ------------------
10565|     30|            pos = findchar(sbuf, skind, slen, u1, 1);
10566|     30|            if (pos < 0)
  ------------------
  |  Branch (10566:17): [True: 24, False: 6]
  ------------------
10567|     24|                goto nothing;
10568|      6|            u2 = PyUnicode_READ(kind2, buf2, 0);
  ------------------
  |  |  354|      6|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      6|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      6|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      6|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      6|                   (index))
  ------------------
10569|      6|            u = PyUnicode_New(slen, maxchar);
10570|      6|            if (!u)
  ------------------
  |  Branch (10570:17): [True: 0, False: 6]
  ------------------
10571|      0|                goto error;
10572|       |
10573|      6|            _PyUnicode_FastCopyCharacters(u, 0, self, 0, slen);
10574|      6|            replace_1char_inplace(u, pos, u1, u2, maxcount);
10575|      6|        }
10576|      0|        else {
10577|      0|            int rkind = skind;
10578|      0|            char *res;
10579|      0|            Py_ssize_t i;
10580|       |
10581|      0|            if (kind1 < rkind) {
  ------------------
  |  Branch (10581:17): [True: 0, False: 0]
  ------------------
10582|       |                /* widen substring */
10583|      0|                buf1 = unicode_askind(kind1, buf1, len1, rkind);
10584|      0|                if (!buf1) goto error;
  ------------------
  |  Branch (10584:21): [True: 0, False: 0]
  ------------------
10585|      0|                release1 = 1;
10586|      0|            }
10587|      0|            i = anylib_find(rkind, self, sbuf, slen, str1, buf1, len1, 0);
10588|      0|            if (i < 0)
  ------------------
  |  Branch (10588:17): [True: 0, False: 0]
  ------------------
10589|      0|                goto nothing;
10590|      0|            if (rkind > kind2) {
  ------------------
  |  Branch (10590:17): [True: 0, False: 0]
  ------------------
10591|       |                /* widen replacement */
10592|      0|                buf2 = unicode_askind(kind2, buf2, len2, rkind);
10593|      0|                if (!buf2) goto error;
  ------------------
  |  Branch (10593:21): [True: 0, False: 0]
  ------------------
10594|      0|                release2 = 1;
10595|      0|            }
10596|      0|            else if (rkind < kind2) {
  ------------------
  |  Branch (10596:22): [True: 0, False: 0]
  ------------------
10597|       |                /* widen self and buf1 */
10598|      0|                rkind = kind2;
10599|      0|                if (release1) {
  ------------------
  |  Branch (10599:21): [True: 0, False: 0]
  ------------------
10600|      0|                    assert(buf1 != PyUnicode_DATA(str1));
  ------------------
  |  Branch (10600:21): [True: 0, False: 0]
  ------------------
10601|      0|                    PyMem_Free((void *)buf1);
10602|      0|                    buf1 = PyUnicode_DATA(str1);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10603|      0|                    release1 = 0;
10604|      0|                }
10605|      0|                sbuf = unicode_askind(skind, sbuf, slen, rkind);
10606|      0|                if (!sbuf) goto error;
  ------------------
  |  Branch (10606:21): [True: 0, False: 0]
  ------------------
10607|      0|                srelease = 1;
10608|      0|                buf1 = unicode_askind(kind1, buf1, len1, rkind);
10609|      0|                if (!buf1) goto error;
  ------------------
  |  Branch (10609:21): [True: 0, False: 0]
  ------------------
10610|      0|                release1 = 1;
10611|      0|            }
10612|      0|            u = PyUnicode_New(slen, maxchar);
10613|      0|            if (!u)
  ------------------
  |  Branch (10613:17): [True: 0, False: 0]
  ------------------
10614|      0|                goto error;
10615|      0|            assert(PyUnicode_KIND(u) == rkind);
  ------------------
  |  Branch (10615:13): [True: 0, False: 0]
  |  Branch (10615:13): [True: 0, False: 0]
  ------------------
10616|      0|            res = PyUnicode_DATA(u);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10617|       |
10618|      0|            memcpy(res, sbuf, rkind * slen);
10619|       |            /* change everything in-place, starting with this one */
10620|      0|            memcpy(res + rkind * i,
10621|      0|                   buf2,
10622|      0|                   rkind * len2);
10623|      0|            i += len1;
10624|       |
10625|      0|            while ( --maxcount > 0) {
  ------------------
  |  Branch (10625:21): [True: 0, False: 0]
  ------------------
10626|      0|                i = anylib_find(rkind, self,
10627|      0|                                sbuf+rkind*i, slen-i,
10628|      0|                                str1, buf1, len1, i);
10629|      0|                if (i == -1)
  ------------------
  |  Branch (10629:21): [True: 0, False: 0]
  ------------------
10630|      0|                    break;
10631|      0|                memcpy(res + rkind * i,
10632|      0|                       buf2,
10633|      0|                       rkind * len2);
10634|      0|                i += len1;
10635|      0|            }
10636|      0|        }
10637|     30|    }
10638|      0|    else {
10639|      0|        Py_ssize_t n, i, j, ires;
10640|      0|        Py_ssize_t new_size;
10641|      0|        int rkind = skind;
10642|      0|        char *res;
10643|       |
10644|      0|        if (kind1 < rkind) {
  ------------------
  |  Branch (10644:13): [True: 0, False: 0]
  ------------------
10645|       |            /* widen substring */
10646|      0|            buf1 = unicode_askind(kind1, buf1, len1, rkind);
10647|      0|            if (!buf1) goto error;
  ------------------
  |  Branch (10647:17): [True: 0, False: 0]
  ------------------
10648|      0|            release1 = 1;
10649|      0|        }
10650|      0|        n = anylib_count(rkind, self, sbuf, slen, str1, buf1, len1, maxcount);
10651|      0|        if (n == 0)
  ------------------
  |  Branch (10651:13): [True: 0, False: 0]
  ------------------
10652|      0|            goto nothing;
10653|      0|        if (kind2 < rkind) {
  ------------------
  |  Branch (10653:13): [True: 0, False: 0]
  ------------------
10654|       |            /* widen replacement */
10655|      0|            buf2 = unicode_askind(kind2, buf2, len2, rkind);
10656|      0|            if (!buf2) goto error;
  ------------------
  |  Branch (10656:17): [True: 0, False: 0]
  ------------------
10657|      0|            release2 = 1;
10658|      0|        }
10659|      0|        else if (kind2 > rkind) {
  ------------------
  |  Branch (10659:18): [True: 0, False: 0]
  ------------------
10660|       |            /* widen self and buf1 */
10661|      0|            rkind = kind2;
10662|      0|            sbuf = unicode_askind(skind, sbuf, slen, rkind);
10663|      0|            if (!sbuf) goto error;
  ------------------
  |  Branch (10663:17): [True: 0, False: 0]
  ------------------
10664|      0|            srelease = 1;
10665|      0|            if (release1) {
  ------------------
  |  Branch (10665:17): [True: 0, False: 0]
  ------------------
10666|      0|                assert(buf1 != PyUnicode_DATA(str1));
  ------------------
  |  Branch (10666:17): [True: 0, False: 0]
  ------------------
10667|      0|                PyMem_Free((void *)buf1);
10668|      0|                buf1 = PyUnicode_DATA(str1);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10669|      0|                release1 = 0;
10670|      0|            }
10671|      0|            buf1 = unicode_askind(kind1, buf1, len1, rkind);
10672|      0|            if (!buf1) goto error;
  ------------------
  |  Branch (10672:17): [True: 0, False: 0]
  ------------------
10673|      0|            release1 = 1;
10674|      0|        }
10675|       |        /* new_size = PyUnicode_GET_LENGTH(self) + n * (PyUnicode_GET_LENGTH(str2) -
10676|       |           PyUnicode_GET_LENGTH(str1)); */
10677|      0|        if (len1 < len2 && len2 - len1 > (PY_SSIZE_T_MAX - slen) / n) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (10677:13): [True: 0, False: 0]
  |  Branch (10677:28): [True: 0, False: 0]
  ------------------
10678|      0|                PyErr_SetString(PyExc_OverflowError,
10679|      0|                                "replace string is too long");
10680|      0|                goto error;
10681|      0|        }
10682|      0|        new_size = slen + n * (len2 - len1);
10683|      0|        if (new_size == 0) {
  ------------------
  |  Branch (10683:13): [True: 0, False: 0]
  ------------------
10684|      0|            u = _PyUnicode_GetEmpty();
10685|      0|            goto done;
10686|      0|        }
10687|      0|        if (new_size > (PY_SSIZE_T_MAX / rkind)) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (10687:13): [True: 0, False: 0]
  ------------------
10688|      0|            PyErr_SetString(PyExc_OverflowError,
10689|      0|                            "replace string is too long");
10690|      0|            goto error;
10691|      0|        }
10692|      0|        u = PyUnicode_New(new_size, maxchar);
10693|      0|        if (!u)
  ------------------
  |  Branch (10693:13): [True: 0, False: 0]
  ------------------
10694|      0|            goto error;
10695|      0|        assert(PyUnicode_KIND(u) == rkind);
  ------------------
  |  Branch (10695:9): [True: 0, False: 0]
  |  Branch (10695:9): [True: 0, False: 0]
  ------------------
10696|      0|        res = PyUnicode_DATA(u);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10697|      0|        ires = i = 0;
10698|      0|        if (len1 > 0) {
  ------------------
  |  Branch (10698:13): [True: 0, False: 0]
  ------------------
10699|      0|            while (n-- > 0) {
  ------------------
  |  Branch (10699:20): [True: 0, False: 0]
  ------------------
10700|       |                /* look for next match */
10701|      0|                j = anylib_find(rkind, self,
10702|      0|                                sbuf + rkind * i, slen-i,
10703|      0|                                str1, buf1, len1, i);
10704|      0|                if (j == -1)
  ------------------
  |  Branch (10704:21): [True: 0, False: 0]
  ------------------
10705|      0|                    break;
10706|      0|                else if (j > i) {
  ------------------
  |  Branch (10706:26): [True: 0, False: 0]
  ------------------
10707|       |                    /* copy unchanged part [i:j] */
10708|      0|                    memcpy(res + rkind * ires,
10709|      0|                           sbuf + rkind * i,
10710|      0|                           rkind * (j-i));
10711|      0|                    ires += j - i;
10712|      0|                }
10713|       |                /* copy substitution string */
10714|      0|                if (len2 > 0) {
  ------------------
  |  Branch (10714:21): [True: 0, False: 0]
  ------------------
10715|      0|                    memcpy(res + rkind * ires,
10716|      0|                           buf2,
10717|      0|                           rkind * len2);
10718|      0|                    ires += len2;
10719|      0|                }
10720|      0|                i = j + len1;
10721|      0|            }
10722|      0|            if (i < slen)
  ------------------
  |  Branch (10722:17): [True: 0, False: 0]
  ------------------
10723|       |                /* copy tail [i:] */
10724|      0|                memcpy(res + rkind * ires,
10725|      0|                       sbuf + rkind * i,
10726|      0|                       rkind * (slen-i));
10727|      0|        }
10728|      0|        else {
10729|       |            /* interleave */
10730|      0|            while (n > 0) {
  ------------------
  |  Branch (10730:20): [True: 0, False: 0]
  ------------------
10731|      0|                memcpy(res + rkind * ires,
10732|      0|                       buf2,
10733|      0|                       rkind * len2);
10734|      0|                ires += len2;
10735|      0|                if (--n <= 0)
  ------------------
  |  Branch (10735:21): [True: 0, False: 0]
  ------------------
10736|      0|                    break;
10737|      0|                memcpy(res + rkind * ires,
10738|      0|                       sbuf + rkind * i,
10739|      0|                       rkind);
10740|      0|                ires++;
10741|      0|                i++;
10742|      0|            }
10743|      0|            memcpy(res + rkind * ires,
10744|      0|                   sbuf + rkind * i,
10745|      0|                   rkind * (slen-i));
10746|      0|        }
10747|      0|    }
10748|       |
10749|      6|    if (mayshrink) {
  ------------------
  |  Branch (10749:9): [True: 0, False: 6]
  ------------------
10750|      0|        unicode_adjust_maxchar(&u);
10751|      0|        if (u == NULL)
  ------------------
  |  Branch (10751:13): [True: 0, False: 0]
  ------------------
10752|      0|            goto error;
10753|      0|    }
10754|       |
10755|      6|  done:
10756|      6|    assert(srelease == (sbuf != PyUnicode_DATA(self)));
  ------------------
  |  Branch (10756:5): [True: 6, False: 0]
  ------------------
10757|      6|    assert(release1 == (buf1 != PyUnicode_DATA(str1)));
  ------------------
  |  Branch (10757:5): [True: 6, False: 0]
  ------------------
10758|      6|    assert(release2 == (buf2 != PyUnicode_DATA(str2)));
  ------------------
  |  Branch (10758:5): [True: 6, False: 0]
  ------------------
10759|      6|    if (srelease)
  ------------------
  |  Branch (10759:9): [True: 0, False: 6]
  ------------------
10760|      0|        PyMem_Free((void *)sbuf);
10761|      6|    if (release1)
  ------------------
  |  Branch (10761:9): [True: 0, False: 6]
  ------------------
10762|      0|        PyMem_Free((void *)buf1);
10763|      6|    if (release2)
  ------------------
  |  Branch (10763:9): [True: 0, False: 6]
  ------------------
10764|      0|        PyMem_Free((void *)buf2);
10765|      6|    assert(_PyUnicode_CheckConsistency(u, 1));
  ------------------
  |  Branch (10765:5): [True: 6, False: 0]
  ------------------
10766|      6|    return u;
10767|       |
10768|     24|  nothing:
10769|       |    /* nothing to replace; return original string (when possible) */
10770|     24|    assert(srelease == (sbuf != PyUnicode_DATA(self)));
  ------------------
  |  Branch (10770:5): [True: 24, False: 0]
  ------------------
10771|     24|    assert(release1 == (buf1 != PyUnicode_DATA(str1)));
  ------------------
  |  Branch (10771:5): [True: 24, False: 0]
  ------------------
10772|     24|    assert(release2 == (buf2 != PyUnicode_DATA(str2)));
  ------------------
  |  Branch (10772:5): [True: 24, False: 0]
  ------------------
10773|     24|    if (srelease)
  ------------------
  |  Branch (10773:9): [True: 0, False: 24]
  ------------------
10774|      0|        PyMem_Free((void *)sbuf);
10775|     24|    if (release1)
  ------------------
  |  Branch (10775:9): [True: 0, False: 24]
  ------------------
10776|      0|        PyMem_Free((void *)buf1);
10777|     24|    if (release2)
  ------------------
  |  Branch (10777:9): [True: 0, False: 24]
  ------------------
10778|      0|        PyMem_Free((void *)buf2);
10779|     24|    return unicode_result_unchanged(self);
10780|       |
10781|      0|  error:
10782|      0|    assert(srelease == (sbuf != PyUnicode_DATA(self)));
  ------------------
  |  Branch (10782:5): [True: 0, False: 0]
  ------------------
10783|      0|    assert(release1 == (buf1 != PyUnicode_DATA(str1)));
  ------------------
  |  Branch (10783:5): [True: 0, False: 0]
  ------------------
10784|      0|    assert(release2 == (buf2 != PyUnicode_DATA(str2)));
  ------------------
  |  Branch (10784:5): [True: 0, False: 0]
  ------------------
10785|      0|    if (srelease)
  ------------------
  |  Branch (10785:9): [True: 0, False: 0]
  ------------------
10786|      0|        PyMem_Free((void *)sbuf);
10787|      0|    if (release1)
  ------------------
  |  Branch (10787:9): [True: 0, False: 0]
  ------------------
10788|      0|        PyMem_Free((void *)buf1);
10789|      0|    if (release2)
  ------------------
  |  Branch (10789:9): [True: 0, False: 0]
  ------------------
10790|      0|        PyMem_Free((void *)buf2);
10791|       |    return NULL;
10792|      0|}
unicodeobject.c:replace_1char_inplace:
10493|      6|{
10494|      6|    int kind = PyUnicode_KIND(u);
  ------------------
  |  |  258|      6|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     12|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10495|      6|    void *data = PyUnicode_DATA(u);
  ------------------
  |  |  284|      6|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10496|      6|    Py_ssize_t len = PyUnicode_GET_LENGTH(u);
  ------------------
  |  |  299|      6|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10497|      6|    if (kind == PyUnicode_1BYTE_KIND) {
  ------------------
  |  Branch (10497:9): [True: 6, False: 0]
  ------------------
10498|      6|        ucs1lib_replace_1char_inplace((Py_UCS1 *)data + pos,
10499|      6|                                      (Py_UCS1 *)data + len,
10500|      6|                                      u1, u2, maxcount);
10501|      6|    }
10502|      0|    else if (kind == PyUnicode_2BYTE_KIND) {
  ------------------
  |  Branch (10502:14): [True: 0, False: 0]
  ------------------
10503|      0|        ucs2lib_replace_1char_inplace((Py_UCS2 *)data + pos,
10504|      0|                                      (Py_UCS2 *)data + len,
10505|      0|                                      u1, u2, maxcount);
10506|      0|    }
10507|      0|    else {
10508|      0|        assert(kind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (10508:9): [True: 0, False: 0]
  ------------------
10509|      0|        ucs4lib_replace_1char_inplace((Py_UCS4 *)data + pos,
10510|      0|                                      (Py_UCS4 *)data + len,
10511|      0|                                      u1, u2, maxcount);
10512|      0|    }
10513|      6|}
unicodeobject.c:split:
10277|      4|{
10278|      4|    int kind1, kind2;
10279|      4|    const void *buf1, *buf2;
10280|      4|    Py_ssize_t len1, len2;
10281|      4|    PyObject* out;
10282|      4|    len1 = PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|      4|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10283|      4|    kind1 = PyUnicode_KIND(self);
  ------------------
  |  |  258|      4|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      8|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10284|       |
10285|      4|    if (substring == NULL) {
  ------------------
  |  Branch (10285:9): [True: 0, False: 4]
  ------------------
10286|      0|        if (maxcount < 0) {
  ------------------
  |  Branch (10286:13): [True: 0, False: 0]
  ------------------
10287|      0|            maxcount = (len1 - 1) / 2 + 1;
10288|      0|        }
10289|      0|        switch (kind1) {
10290|      0|        case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (10290:9): [True: 0, False: 0]
  ------------------
10291|      0|            if (PyUnicode_IS_ASCII(self))
  ------------------
  |  |  227|      0|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
10292|      0|                return asciilib_split_whitespace(
10293|      0|                    self,  PyUnicode_1BYTE_DATA(self),
  ------------------
  |  |  291|      0|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
10294|      0|                    len1, maxcount
10295|      0|                    );
10296|      0|            else
10297|      0|                return ucs1lib_split_whitespace(
10298|      0|                    self,  PyUnicode_1BYTE_DATA(self),
  ------------------
  |  |  291|      0|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
10299|      0|                    len1, maxcount
10300|      0|                    );
10301|      0|        case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (10301:9): [True: 0, False: 0]
  ------------------
10302|      0|            return ucs2lib_split_whitespace(
10303|      0|                self,  PyUnicode_2BYTE_DATA(self),
  ------------------
  |  |  292|      0|#define PyUnicode_2BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS2*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
10304|      0|                len1, maxcount
10305|      0|                );
10306|      0|        case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (10306:9): [True: 0, False: 0]
  ------------------
10307|      0|            return ucs4lib_split_whitespace(
10308|      0|                self,  PyUnicode_4BYTE_DATA(self),
  ------------------
  |  |  293|      0|#define PyUnicode_4BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS4*, PyUnicode_DATA(op))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
10309|      0|                len1, maxcount
10310|      0|                );
10311|      0|        default:
  ------------------
  |  Branch (10311:9): [True: 0, False: 0]
  ------------------
10312|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
10313|      0|        }
10314|      0|    }
10315|       |
10316|      4|    kind2 = PyUnicode_KIND(substring);
  ------------------
  |  |  258|      4|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      8|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10317|      4|    len2 = PyUnicode_GET_LENGTH(substring);
  ------------------
  |  |  299|      4|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10318|      4|    if (maxcount < 0) {
  ------------------
  |  Branch (10318:9): [True: 4, False: 0]
  ------------------
10319|       |        // if len2 == 0, it will raise ValueError.
10320|      4|        maxcount = len2 == 0 ? 0 : (len1 / len2) + 1;
  ------------------
  |  Branch (10320:20): [True: 0, False: 4]
  ------------------
10321|       |        // handle expected overflow case: (Py_SSIZE_T_MAX / 1) + 1
10322|      4|        maxcount = maxcount < 0 ? len1 : maxcount;
  ------------------
  |  Branch (10322:20): [True: 0, False: 4]
  ------------------
10323|      4|    }
10324|      4|    if (kind1 < kind2 || len1 < len2) {
  ------------------
  |  Branch (10324:9): [True: 0, False: 4]
  |  Branch (10324:26): [True: 0, False: 4]
  ------------------
10325|      0|        out = PyList_New(1);
10326|      0|        if (out == NULL)
  ------------------
  |  Branch (10326:13): [True: 0, False: 0]
  ------------------
10327|      0|            return NULL;
10328|      0|        PyList_SET_ITEM(out, 0, Py_NewRef(self));
  ------------------
  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10329|      0|        return out;
10330|      0|    }
10331|      4|    buf1 = PyUnicode_DATA(self);
  ------------------
  |  |  284|      4|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10332|      4|    buf2 = PyUnicode_DATA(substring);
  ------------------
  |  |  284|      4|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10333|      4|    if (kind2 != kind1) {
  ------------------
  |  Branch (10333:9): [True: 0, False: 4]
  ------------------
10334|      0|        buf2 = unicode_askind(kind2, buf2, len2, kind1);
10335|      0|        if (!buf2)
  ------------------
  |  Branch (10335:13): [True: 0, False: 0]
  ------------------
10336|      0|            return NULL;
10337|      0|    }
10338|       |
10339|      4|    switch (kind1) {
10340|      4|    case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (10340:5): [True: 4, False: 0]
  ------------------
10341|      4|        if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring))
  ------------------
  |  |  227|      8|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
                      if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring))
  ------------------
  |  |  227|      4|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
10342|      4|            out = asciilib_split(
10343|      4|                self,  buf1, len1, buf2, len2, maxcount);
10344|      0|        else
10345|      0|            out = ucs1lib_split(
10346|      0|                self,  buf1, len1, buf2, len2, maxcount);
10347|      4|        break;
10348|      0|    case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (10348:5): [True: 0, False: 4]
  ------------------
10349|      0|        out = ucs2lib_split(
10350|      0|            self,  buf1, len1, buf2, len2, maxcount);
10351|      0|        break;
10352|      0|    case PyUnicode_4BYTE_KIND:
  ------------------
  |  Branch (10352:5): [True: 0, False: 4]
  ------------------
10353|      0|        out = ucs4lib_split(
10354|      0|            self,  buf1, len1, buf2, len2, maxcount);
10355|      0|        break;
10356|      0|    default:
  ------------------
  |  Branch (10356:5): [True: 0, False: 4]
  ------------------
10357|      0|        out = NULL;
10358|      4|    }
10359|      4|    assert((kind2 != kind1) == (buf2 != PyUnicode_DATA(substring)));
  ------------------
  |  Branch (10359:5): [True: 4, False: 0]
  ------------------
10360|      4|    if (kind2 != kind1)
  ------------------
  |  Branch (10360:9): [True: 0, False: 4]
  ------------------
10361|      0|        PyMem_Free((void *)buf2);
10362|      4|    return out;
10363|      4|}
unicodeobject.c:unicode_dealloc:
 1627|  16.3k|{
 1628|       |#ifdef Py_DEBUG
 1629|       |    if (!unicode_is_finalizing() && unicode_is_singleton(unicode)) {
 1630|       |        _Py_FatalRefcountError("deallocating an Unicode singleton");
 1631|       |    }
 1632|       |#endif
 1633|  32.6k|    if (_PyUnicode_STATE(unicode).statically_allocated) {
  ------------------
  |  |  153|  16.3k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  16.3k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  16.3k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1633:9): [True: 16.3k, False: 0]
  |  Branch (1633:9): [True: 0, False: 16.3k]
  ------------------
 1634|       |        /* This should never get called, but we also don't want to SEGV if
 1635|       |        * we accidentally decref an immortal string out of existence. Since
 1636|       |        * the string is an immortal object, just re-set the reference count.
 1637|       |        */
 1638|       |#ifdef Py_DEBUG
 1639|       |        Py_UNREACHABLE();
 1640|       |#endif
 1641|      0|        _Py_SetImmortal(unicode);
 1642|      0|        return;
 1643|      0|    }
 1644|  16.3k|    switch (_PyUnicode_STATE(unicode).interned) {
  ------------------
  |  |  153|  16.3k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  16.3k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  16.3k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1644:13): [True: 16.3k, False: 0]
  ------------------
 1645|  16.3k|        case SSTATE_NOT_INTERNED:
  ------------------
  |  |  201|  16.3k|#define SSTATE_NOT_INTERNED 0
  ------------------
  |  Branch (1645:9): [True: 16.3k, False: 0]
  ------------------
 1646|  16.3k|            break;
 1647|      0|        case SSTATE_INTERNED_MORTAL:
  ------------------
  |  |  202|      0|#define SSTATE_INTERNED_MORTAL 1
  ------------------
  |  Branch (1647:9): [True: 0, False: 16.3k]
  ------------------
 1648|       |            /* Remove the object from the intern dict.
 1649|       |             * Before doing so, we set the refcount to 2: the key and value
 1650|       |             * in the interned_dict.
 1651|       |             */
 1652|      0|            assert(Py_REFCNT(unicode) == 0);
  ------------------
  |  Branch (1652:13): [True: 0, False: 0]
  ------------------
 1653|      0|            Py_SET_REFCNT(unicode, 2);
  ------------------
  |  |  201|      0|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1654|       |#ifdef Py_REF_DEBUG
 1655|       |            /* let's be pedantic with the ref total */
 1656|       |            _Py_IncRefTotal(_PyThreadState_GET());
 1657|       |            _Py_IncRefTotal(_PyThreadState_GET());
 1658|       |#endif
 1659|      0|            PyInterpreterState *interp = _PyInterpreterState_GET();
 1660|      0|            PyObject *interned = get_interned_dict(interp);
 1661|      0|            assert(interned != NULL);
  ------------------
  |  Branch (1661:13): [True: 0, False: 0]
  ------------------
 1662|      0|            PyObject *popped;
 1663|      0|            int r = PyDict_Pop(interned, unicode, &popped);
 1664|      0|            if (r == -1) {
  ------------------
  |  Branch (1664:17): [True: 0, False: 0]
  ------------------
 1665|      0|                PyErr_FormatUnraisable("Exception ignored while "
 1666|      0|                                       "removing an interned string %R",
 1667|      0|                                       unicode);
 1668|       |                // We don't know what happened to the string. It's probably
 1669|       |                // best to leak it:
 1670|       |                // - if it was popped, there are no more references to it
 1671|       |                //   so it can't cause trouble (except wasted memory)
 1672|       |                // - if it wasn't popped, it'll remain interned
 1673|      0|                _Py_SetImmortal(unicode);
 1674|      0|                _PyUnicode_STATE(unicode).interned = SSTATE_INTERNED_IMMORTAL;
  ------------------
  |  |  153|      0|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|      0|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|      0|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                              _PyUnicode_STATE(unicode).interned = SSTATE_INTERNED_IMMORTAL;
  ------------------
  |  |  203|      0|#define SSTATE_INTERNED_IMMORTAL 2
  ------------------
  |  Branch (1674:17): [True: 0, False: 0]
  ------------------
 1675|      0|                return;
 1676|      0|            }
 1677|      0|            if (r == 0) {
  ------------------
  |  Branch (1677:17): [True: 0, False: 0]
  ------------------
 1678|       |                // The interned string was not found in the interned_dict.
 1679|       |#ifdef Py_DEBUG
 1680|       |                Py_UNREACHABLE();
 1681|       |#endif
 1682|      0|                _Py_SetImmortal(unicode);
 1683|      0|                return;
 1684|      0|            }
 1685|       |            // Successfully popped.
 1686|      0|            assert(popped == unicode);
  ------------------
  |  Branch (1686:13): [True: 0, False: 0]
  ------------------
 1687|       |            // Only our `popped` reference should be left; remove it too.
 1688|      0|            assert(Py_REFCNT(unicode) == 1);
  ------------------
  |  Branch (1688:13): [True: 0, False: 0]
  ------------------
 1689|      0|            Py_SET_REFCNT(unicode, 0);
  ------------------
  |  |  201|      0|#  define Py_SET_REFCNT(ob, refcnt) Py_SET_REFCNT(_PyObject_CAST(ob), (refcnt))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1690|       |#ifdef Py_REF_DEBUG
 1691|       |            /* let's be pedantic with the ref total */
 1692|       |            _Py_DecRefTotal(_PyThreadState_GET());
 1693|       |#endif
 1694|      0|            break;
 1695|      0|        default:
  ------------------
  |  Branch (1695:9): [True: 0, False: 16.3k]
  ------------------
 1696|       |            // As with `statically_allocated` above.
 1697|       |#ifdef Py_REF_DEBUG
 1698|       |            Py_UNREACHABLE();
 1699|       |#endif
 1700|      0|            _Py_SetImmortal(unicode);
 1701|      0|            return;
 1702|  16.3k|    }
 1703|  16.3k|    if (_PyUnicode_HAS_UTF8_MEMORY(unicode)) {
  ------------------
  |  Branch (1703:9): [True: 0, False: 16.3k]
  ------------------
 1704|      0|        PyMem_Free(_PyUnicode_UTF8(unicode));
 1705|      0|    }
 1706|  16.3k|    if (!PyUnicode_IS_COMPACT(unicode) && _PyUnicode_DATA_ANY(unicode)) {
  ------------------
  |  |  234|  32.6k|#define PyUnicode_IS_COMPACT(op) PyUnicode_IS_COMPACT(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  16.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (!PyUnicode_IS_COMPACT(unicode) && _PyUnicode_DATA_ANY(unicode)) {
  ------------------
  |  |  165|      0|    (_PyUnicodeObject_CAST(op)->data.any)
  |  |  ------------------
  |  |  |  |  192|      0|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  193|      0|     _Py_CAST(PyUnicodeObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (165:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (1706:9): [True: 0, False: 16.3k]
  |  Branch (1706:43): [True: 0, False: 0]
  ------------------
 1707|      0|        PyMem_Free(_PyUnicode_DATA_ANY(unicode));
  ------------------
  |  |  165|      0|    (_PyUnicodeObject_CAST(op)->data.any)
  |  |  ------------------
  |  |  |  |  192|      0|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  193|      0|     _Py_CAST(PyUnicodeObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1707:20): [True: 0, False: 0]
  ------------------
 1708|      0|    }
 1709|       |
 1710|  16.3k|    Py_TYPE(unicode)->tp_free(unicode);
  ------------------
  |  |  213|  16.3k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  16.3k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  16.3k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1711|  16.3k|}
unicodeobject.c:unicode_repr:
12653|     10|{
12654|     10|    Py_ssize_t isize = PyUnicode_GET_LENGTH(unicode);
  ------------------
  |  |  299|     10|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12655|     10|    const void *idata = PyUnicode_DATA(unicode);
  ------------------
  |  |  284|     10|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12656|       |
12657|       |    /* Compute length of output, quote characters, and
12658|       |       maximum character */
12659|     10|    Py_ssize_t osize = 0;
12660|     10|    Py_UCS4 maxch = 127;
12661|     10|    Py_ssize_t squote = 0;
12662|     10|    Py_ssize_t dquote = 0;
12663|     10|    int ikind = PyUnicode_KIND(unicode);
  ------------------
  |  |  258|     10|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     20|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 10, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12664|    232|    for (Py_ssize_t i = 0; i < isize; i++) {
  ------------------
  |  Branch (12664:28): [True: 222, False: 10]
  ------------------
12665|    222|        Py_UCS4 ch = PyUnicode_READ(ikind, idata, i);
  ------------------
  |  |  354|    222|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|    222|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|    222|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|    222|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|    222|                   (index))
  ------------------
12666|    222|        Py_ssize_t incr = 1;
12667|    222|        switch (ch) {
12668|      0|        case '\'': squote++; break;
  ------------------
  |  Branch (12668:9): [True: 0, False: 222]
  ------------------
12669|      0|        case '"':  dquote++; break;
  ------------------
  |  Branch (12669:9): [True: 0, False: 222]
  ------------------
12670|      0|        case '\\': case '\t': case '\r': case '\n':
  ------------------
  |  Branch (12670:9): [True: 0, False: 222]
  |  Branch (12670:20): [True: 0, False: 222]
  |  Branch (12670:31): [True: 0, False: 222]
  |  Branch (12670:42): [True: 0, False: 222]
  ------------------
12671|      0|            incr = 2;
12672|      0|            break;
12673|    222|        default:
  ------------------
  |  Branch (12673:9): [True: 222, False: 0]
  ------------------
12674|       |            /* Fast-path ASCII */
12675|    222|            if (ch < ' ' || ch == 0x7f)
  ------------------
  |  Branch (12675:17): [True: 0, False: 222]
  |  Branch (12675:29): [True: 0, False: 222]
  ------------------
12676|      0|                incr = 4; /* \xHH */
12677|    222|            else if (ch < 0x7f)
  ------------------
  |  Branch (12677:22): [True: 222, False: 0]
  ------------------
12678|    222|                ;
12679|      0|            else if (Py_UNICODE_ISPRINTABLE(ch))
  ------------------
  |  |  761|      0|#define Py_UNICODE_ISPRINTABLE(ch) _PyUnicode_IsPrintable(ch)
  |  |  ------------------
  |  |  |  Branch (761:36): [True: 0, False: 0]
  |  |  ------------------
  ------------------
12680|      0|                maxch = (ch > maxch) ? ch : maxch;
  ------------------
  |  Branch (12680:25): [True: 0, False: 0]
  ------------------
12681|      0|            else if (ch < 0x100)
  ------------------
  |  Branch (12681:22): [True: 0, False: 0]
  ------------------
12682|      0|                incr = 4; /* \xHH */
12683|      0|            else if (ch < 0x10000)
  ------------------
  |  Branch (12683:22): [True: 0, False: 0]
  ------------------
12684|      0|                incr = 6; /* \uHHHH */
12685|      0|            else
12686|      0|                incr = 10; /* \uHHHHHHHH */
12687|    222|        }
12688|    222|        if (osize > PY_SSIZE_T_MAX - incr) {
  ------------------
  |  |  137|    222|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (12688:13): [True: 0, False: 222]
  ------------------
12689|      0|            PyErr_SetString(PyExc_OverflowError,
12690|      0|                            "string is too long to generate repr");
12691|      0|            return NULL;
12692|      0|        }
12693|    222|        osize += incr;
12694|    222|    }
12695|       |
12696|     10|    Py_UCS4 quote = '\'';
12697|     10|    int changed = (osize != isize);
12698|     10|    if (squote) {
  ------------------
  |  Branch (12698:9): [True: 0, False: 10]
  ------------------
12699|      0|        changed = 1;
12700|      0|        if (dquote)
  ------------------
  |  Branch (12700:13): [True: 0, False: 0]
  ------------------
12701|       |            /* Both squote and dquote present. Use squote,
12702|       |               and escape them */
12703|      0|            osize += squote;
12704|      0|        else
12705|      0|            quote = '"';
12706|      0|    }
12707|     10|    osize += 2;   /* quotes */
12708|       |
12709|     10|    PyObject *repr = PyUnicode_New(osize, maxch);
12710|     10|    if (repr == NULL)
  ------------------
  |  Branch (12710:9): [True: 0, False: 10]
  ------------------
12711|      0|        return NULL;
12712|     10|    int okind = PyUnicode_KIND(repr);
  ------------------
  |  |  258|     10|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|     20|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 10, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12713|     10|    void *odata = PyUnicode_DATA(repr);
  ------------------
  |  |  284|     10|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12714|       |
12715|     10|    if (!changed) {
  ------------------
  |  Branch (12715:9): [True: 10, False: 0]
  ------------------
12716|     10|        PyUnicode_WRITE(okind, odata, 0, quote);
  ------------------
  |  |  335|     10|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|     10|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|     10|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|     10|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
12717|       |
12718|     10|        _PyUnicode_FastCopyCharacters(repr, 1,
12719|     10|                                      unicode, 0,
12720|     10|                                      isize);
12721|       |
12722|     10|        PyUnicode_WRITE(okind, odata, osize-1, quote);
  ------------------
  |  |  335|     10|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|     10|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|     10|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|     10|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
12723|     10|    }
12724|      0|    else {
12725|      0|        switch (okind) {
12726|      0|        case PyUnicode_1BYTE_KIND:
  ------------------
  |  Branch (12726:9): [True: 0, False: 0]
  ------------------
12727|      0|            ucs1lib_repr(unicode, quote, odata);
12728|      0|            break;
12729|      0|        case PyUnicode_2BYTE_KIND:
  ------------------
  |  Branch (12729:9): [True: 0, False: 0]
  ------------------
12730|      0|            ucs2lib_repr(unicode, quote, odata);
12731|      0|            break;
12732|      0|        default:
  ------------------
  |  Branch (12732:9): [True: 0, False: 0]
  ------------------
12733|      0|            assert(okind == PyUnicode_4BYTE_KIND);
  ------------------
  |  Branch (12733:13): [True: 0, False: 0]
  ------------------
12734|      0|            ucs4lib_repr(unicode, quote, odata);
12735|      0|        }
12736|      0|    }
12737|       |
12738|     10|    assert(_PyUnicode_CheckConsistency(repr, 1));
  ------------------
  |  Branch (12738:5): [True: 10, False: 0]
  ------------------
12739|     10|    return repr;
12740|     10|}
unicodeobject.c:unicode_length:
12222|    122|{
12223|    122|    return PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|    122|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12224|    122|}
unicodeobject.c:unicode_getitem:
11647|      2|{
11648|      2|    const void *data;
11649|      2|    int kind;
11650|      2|    Py_UCS4 ch;
11651|       |
11652|      2|    if (!PyUnicode_Check(self)) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (11652:9): [True: 0, False: 2]
  ------------------
11653|      0|        PyErr_BadArgument();
11654|      0|        return NULL;
11655|      0|    }
11656|      2|    if (index < 0 || index >= PyUnicode_GET_LENGTH(self)) {
  ------------------
  |  |  299|      2|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (11656:9): [True: 0, False: 2]
  |  Branch (11656:22): [True: 0, False: 2]
  ------------------
11657|      0|        PyErr_SetString(PyExc_IndexError, "string index out of range");
11658|      0|        return NULL;
11659|      0|    }
11660|      2|    kind = PyUnicode_KIND(self);
  ------------------
  |  |  258|      2|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      4|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11661|      2|    data = PyUnicode_DATA(self);
  ------------------
  |  |  284|      2|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11662|      2|    ch = PyUnicode_READ(kind, data, index);
  ------------------
  |  |  354|      2|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      2|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      2|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      2|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      2|                   (index))
  ------------------
11663|      2|    return unicode_char(ch);
11664|      2|}
unicodeobject.c:unicode_subscript:
13747|      4|{
13748|      4|    if (_PyIndex_Check(item)) {
  ------------------
  |  Branch (13748:9): [True: 2, False: 2]
  ------------------
13749|      2|        Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
13750|      2|        if (i == -1 && PyErr_Occurred())
  ------------------
  |  Branch (13750:13): [True: 0, False: 2]
  |  Branch (13750:24): [True: 0, False: 0]
  ------------------
13751|      0|            return NULL;
13752|      2|        if (i < 0)
  ------------------
  |  Branch (13752:13): [True: 0, False: 2]
  ------------------
13753|      0|            i += PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13754|      2|        return unicode_getitem(self, i);
13755|      2|    } else if (PySlice_Check(item)) {
  ------------------
  |  |   22|      2|#define PySlice_Check(op) Py_IS_TYPE((op), &PySlice_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13756|      2|        Py_ssize_t start, stop, step, slicelength, i;
13757|      2|        size_t cur;
13758|      2|        PyObject *result;
13759|      2|        const void *src_data;
13760|      2|        void *dest_data;
13761|      2|        int src_kind, dest_kind;
13762|      2|        Py_UCS4 ch, max_char, kind_limit;
13763|       |
13764|      2|        if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
  ------------------
  |  Branch (13764:13): [True: 0, False: 2]
  ------------------
13765|      0|            return NULL;
13766|      0|        }
13767|      2|        slicelength = PySlice_AdjustIndices(PyUnicode_GET_LENGTH(self),
  ------------------
  |  |  299|      2|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13768|      2|                                            &start, &stop, step);
13769|       |
13770|      2|        if (slicelength <= 0) {
  ------------------
  |  Branch (13770:13): [True: 2, False: 0]
  ------------------
13771|      2|            _Py_RETURN_UNICODE_EMPTY();
  ------------------
  |  |  375|      2|    do {                             \
  |  |  376|      2|        return _PyUnicode_GetEmpty();\
  |  |  377|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (377:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
13772|      2|        } else if (start == 0 && step == 1 &&
  ------------------
  |  Branch (13772:20): [True: 0, False: 0]
  |  Branch (13772:34): [True: 0, False: 0]
  ------------------
13773|      0|                   slicelength == PyUnicode_GET_LENGTH(self)) {
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (13773:20): [True: 0, False: 0]
  ------------------
13774|      0|            return unicode_result_unchanged(self);
13775|      0|        } else if (step == 1) {
  ------------------
  |  Branch (13775:20): [True: 0, False: 0]
  ------------------
13776|      0|            return PyUnicode_Substring(self,
13777|      0|                                       start, start + slicelength);
13778|      0|        }
13779|       |        /* General case */
13780|      0|        src_kind = PyUnicode_KIND(self);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13781|      0|        src_data = PyUnicode_DATA(self);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13782|      0|        if (!PyUnicode_IS_ASCII(self)) {
  ------------------
  |  |  227|      0|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (13782:13): [True: 0, False: 0]
  ------------------
13783|      0|            kind_limit = kind_maxchar_limit(src_kind);
13784|      0|            max_char = 0;
13785|      0|            for (cur = start, i = 0; i < slicelength; cur += step, i++) {
  ------------------
  |  Branch (13785:38): [True: 0, False: 0]
  ------------------
13786|      0|                ch = PyUnicode_READ(src_kind, src_data, cur);
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
13787|      0|                if (ch > max_char) {
  ------------------
  |  Branch (13787:21): [True: 0, False: 0]
  ------------------
13788|      0|                    max_char = ch;
13789|      0|                    if (max_char >= kind_limit)
  ------------------
  |  Branch (13789:25): [True: 0, False: 0]
  ------------------
13790|      0|                        break;
13791|      0|                }
13792|      0|            }
13793|      0|        }
13794|      0|        else
13795|      0|            max_char = 127;
13796|      0|        result = PyUnicode_New(slicelength, max_char);
13797|      0|        if (result == NULL)
  ------------------
  |  Branch (13797:13): [True: 0, False: 0]
  ------------------
13798|      0|            return NULL;
13799|      0|        dest_kind = PyUnicode_KIND(result);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13800|      0|        dest_data = PyUnicode_DATA(result);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13801|       |
13802|      0|        for (cur = start, i = 0; i < slicelength; cur += step, i++) {
  ------------------
  |  Branch (13802:34): [True: 0, False: 0]
  ------------------
13803|      0|            Py_UCS4 ch = PyUnicode_READ(src_kind, src_data, cur);
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
13804|      0|            PyUnicode_WRITE(dest_kind, dest_data, i, ch);
  ------------------
  |  |  335|      0|    PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |                   PyUnicode_WRITE(_Py_STATIC_CAST(int, kind), _Py_CAST(void*, data), \
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  336|      0|                    (index), _Py_STATIC_CAST(Py_UCS4, value))
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
13805|      0|        }
13806|      0|        assert(_PyUnicode_CheckConsistency(result, 1));
  ------------------
  |  Branch (13806:9): [True: 0, False: 0]
  ------------------
13807|      0|        return result;
13808|      0|    } else {
13809|      0|        PyErr_Format(PyExc_TypeError, "string indices must be integers, not '%.200s'",
13810|      0|                     Py_TYPE(item)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13811|       |        return NULL;
13812|      0|    }
13813|      4|}
unicodeobject.c:unicode_hash:
11670|  27.4k|{
11671|  27.4k|    Py_uhash_t x;  /* Unsigned for defined overflow behavior. */
11672|       |
11673|       |#ifdef Py_DEBUG
11674|       |    assert(_Py_HashSecret_Initialized);
11675|       |#endif
11676|  27.4k|    Py_hash_t hash = PyUnicode_HASH(self);
  ------------------
  |  |  157|  27.4k|#define PyUnicode_HASH PyUnstable_Unicode_GET_CACHED_HASH
  ------------------
11677|  27.4k|    if (hash != -1) {
  ------------------
  |  Branch (11677:9): [True: 8.56k, False: 18.8k]
  ------------------
11678|  8.56k|        return hash;
11679|  8.56k|    }
11680|  18.8k|    x = Py_HashBuffer(PyUnicode_DATA(self),
  ------------------
  |  |  284|  18.8k|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  18.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  18.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11681|  18.8k|                      PyUnicode_GET_LENGTH(self) * PyUnicode_KIND(self));
  ------------------
  |  |  299|  18.8k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  18.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  18.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                                    PyUnicode_GET_LENGTH(self) * PyUnicode_KIND(self));
  ------------------
  |  |  258|  18.8k|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|  37.7k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 18.8k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11682|       |
11683|      0|    PyUnicode_SET_HASH(self, x);
11684|  18.8k|    return x;
11685|  18.8k|}
unicodeobject.c:PyUnicode_SET_HASH:
  160|  18.8k|{
  161|  18.8k|    FT_ATOMIC_STORE_SSIZE_RELAXED(_PyASCIIObject_CAST(op)->hash, hash);
  ------------------
  |  |  194|  37.7k|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  |  |  |  Branch (194:57): [True: 18.8k, False: 0]
  |  |  ------------------
  ------------------
  162|  18.8k|}
unicodeobject.c:unicode_encode_impl:
11533|      6|{
11534|      6|    return PyUnicode_AsEncodedString(self, encoding, errors);
11535|      6|}
unicodeobject.c:unicode_replace_impl:
12591|     30|{
12592|     30|    return replace(self, old, new, count);
12593|     30|}
unicodeobject.c:unicode_split_impl:
12847|      4|{
12848|      4|    if (sep == Py_None)
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (12848:9): [True: 0, False: 4]
  ------------------
12849|      0|        return split(self, NULL, maxsplit);
12850|      4|    if (PyUnicode_Check(sep))
  ------------------
  |  |  103|      4|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12851|      4|        return split(self, sep, maxsplit);
12852|       |
12853|      0|    PyErr_Format(PyExc_TypeError,
12854|      0|                 "must be str or None, not %.100s",
12855|      0|                 Py_TYPE(sep)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12856|       |    return NULL;
12857|      4|}
unicodeobject.c:unicode_join:
12216|     82|{
12217|     82|    return PyUnicode_Join(self, iterable);
12218|     82|}
unicodeobject.c:ascii_upper_or_lower:
 9728|      4|{
 9729|      4|    Py_ssize_t len = PyUnicode_GET_LENGTH(self);
  ------------------
  |  |  299|      4|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9730|      4|    const char *data = PyUnicode_DATA(self);
  ------------------
  |  |  284|      4|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9731|      4|    char *resdata;
 9732|      4|    PyObject *res;
 9733|       |
 9734|      4|    res = PyUnicode_New(len, 127);
 9735|      4|    if (res == NULL)
  ------------------
  |  Branch (9735:9): [True: 0, False: 4]
  ------------------
 9736|      0|        return NULL;
 9737|      4|    resdata = PyUnicode_DATA(res);
  ------------------
  |  |  284|      4|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9738|      4|    if (lower)
  ------------------
  |  Branch (9738:9): [True: 4, False: 0]
  ------------------
 9739|      4|        _Py_bytes_lower(resdata, data, len);
 9740|      0|    else
 9741|      0|        _Py_bytes_upper(resdata, data, len);
 9742|      4|    return res;
 9743|      4|}
unicodeobject.c:unicode_find_impl:
11637|      2|{
11638|      2|    Py_ssize_t result = any_find_slice(str, substr, start, end, 1);
11639|      2|    if (result < 0) {
  ------------------
  |  Branch (11639:9): [True: 0, False: 2]
  ------------------
11640|      0|        return -1;
11641|      0|    }
11642|      2|    return result;
11643|      2|}
unicodeobject.c:unicode_lower_impl:
12257|      4|{
12258|      4|    if (PyUnicode_IS_ASCII(self))
  ------------------
  |  |  227|      4|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (227:32): [True: 4, False: 0]
  |  |  ------------------
  ------------------
12259|      4|        return ascii_upper_or_lower(self, 1);
12260|      0|    return case_operation(self, do_lower);
12261|      4|}
unicodeobject.c:do_argstrip:
12431|    150|{
12432|    150|    if (sep != Py_None) {
  ------------------
  |  |  616|    150|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (12432:9): [True: 150, False: 0]
  ------------------
12433|    150|        if (PyUnicode_Check(sep))
  ------------------
  |  |  103|    150|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    150|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 150, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
12434|    150|            return _PyUnicode_XStrip(self, striptype, sep);
12435|      0|        else {
12436|      0|            PyErr_Format(PyExc_TypeError,
12437|      0|                         "%s arg must be None or str",
12438|      0|                         STRIPNAME(striptype));
  ------------------
  |  |12270|      0|#define STRIPNAME(i) (stripfuncnames[i])
  ------------------
12439|      0|            return NULL;
12440|      0|        }
12441|    150|    }
12442|       |
12443|      0|    return do_strip(self, striptype);
12444|    150|}
unicodeobject.c:unicode_rfind_impl:
12756|      6|{
12757|      6|    Py_ssize_t result = any_find_slice(str, substr, start, end, -1);
12758|      6|    if (result < 0) {
  ------------------
  |  Branch (12758:9): [True: 0, False: 6]
  ------------------
12759|      0|        return -1;
12760|      0|    }
12761|      6|    return result;
12762|      6|}
unicodeobject.c:unicode_rstrip_impl:
12500|    150|{
12501|    150|    return do_argstrip(self, RIGHTSTRIP, chars);
  ------------------
  |  |12264|    150|#define RIGHTSTRIP 1
  ------------------
12502|    150|}
unicodeobject.c:unicode_rpartition:
13003|    120|{
13004|    120|    return PyUnicode_RPartition(self, sep);
13005|    120|}
unicodeobject.c:unicode_startswith_impl:
13327|     60|{
13328|     60|    if (PyTuple_Check(subobj)) {
  ------------------
  |  |   27|     60|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     60|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 8, False: 52]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13329|      8|        Py_ssize_t i;
13330|     56|        for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
  ------------------
  |  |   27|     56|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (13330:21): [True: 48, False: 8]
  ------------------
13331|     48|            PyObject *substring = PyTuple_GET_ITEM(subobj, i);
  ------------------
  |  |   29|     48|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     48|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (13331:35): [True: 48, False: 0]
  ------------------
13332|     48|            if (!PyUnicode_Check(substring)) {
  ------------------
  |  |  103|     48|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     48|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (13332:17): [True: 0, False: 48]
  ------------------
13333|      0|                PyErr_Format(PyExc_TypeError,
13334|      0|                             "tuple for startswith must only contain str, "
13335|      0|                             "not %.100s",
13336|      0|                             Py_TYPE(substring)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13337|      0|                return NULL;
13338|      0|            }
13339|     48|            int result = tailmatch(self, substring, start, end, -1);
13340|     48|            if (result < 0) {
  ------------------
  |  Branch (13340:17): [True: 0, False: 48]
  ------------------
13341|      0|                return NULL;
13342|      0|            }
13343|     48|            if (result) {
  ------------------
  |  Branch (13343:17): [True: 0, False: 48]
  ------------------
13344|      0|                Py_RETURN_TRUE;
  ------------------
  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13345|      0|            }
13346|     48|        }
13347|       |        /* nothing matched */
13348|      8|        Py_RETURN_FALSE;
  ------------------
  |  |   45|      8|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      8|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13349|      8|    }
13350|     52|    if (!PyUnicode_Check(subobj)) {
  ------------------
  |  |  103|     52|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     52|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (13350:9): [True: 0, False: 52]
  ------------------
13351|      0|        PyErr_Format(PyExc_TypeError,
13352|      0|                     "startswith first arg must be str or "
13353|      0|                     "a tuple of str, not %.100s", Py_TYPE(subobj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13354|      0|        return NULL;
13355|      0|    }
13356|     52|    int result = tailmatch(self, subobj, start, end, -1);
13357|     52|    if (result < 0) {
  ------------------
  |  Branch (13357:9): [True: 0, False: 52]
  ------------------
13358|      0|        return NULL;
13359|      0|    }
13360|     52|    return PyBool_FromLong(result);
13361|     52|}
unicodeobject.c:unicode_endswith_impl:
13384|     38|{
13385|     38|    if (PyTuple_Check(subobj)) {
  ------------------
  |  |   27|     38|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     38|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 38]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13386|      0|        Py_ssize_t i;
13387|      0|        for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (13387:21): [True: 0, False: 0]
  ------------------
13388|      0|            PyObject *substring = PyTuple_GET_ITEM(subobj, i);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (13388:35): [True: 0, False: 0]
  ------------------
13389|      0|            if (!PyUnicode_Check(substring)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (13389:17): [True: 0, False: 0]
  ------------------
13390|      0|                PyErr_Format(PyExc_TypeError,
13391|      0|                             "tuple for endswith must only contain str, "
13392|      0|                             "not %.100s",
13393|      0|                             Py_TYPE(substring)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13394|      0|                return NULL;
13395|      0|            }
13396|      0|            int result = tailmatch(self, substring, start, end, +1);
13397|      0|            if (result < 0) {
  ------------------
  |  Branch (13397:17): [True: 0, False: 0]
  ------------------
13398|      0|                return NULL;
13399|      0|            }
13400|      0|            if (result) {
  ------------------
  |  Branch (13400:17): [True: 0, False: 0]
  ------------------
13401|      0|                Py_RETURN_TRUE;
  ------------------
  |  |   44|      0|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13402|      0|            }
13403|      0|        }
13404|      0|        Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13405|      0|    }
13406|     38|    if (!PyUnicode_Check(subobj)) {
  ------------------
  |  |  103|     38|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     38|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (13406:9): [True: 0, False: 38]
  ------------------
13407|      0|        PyErr_Format(PyExc_TypeError,
13408|      0|                     "endswith first arg must be str or "
13409|      0|                     "a tuple of str, not %.100s", Py_TYPE(subobj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
13410|      0|        return NULL;
13411|      0|    }
13412|     38|    int result = tailmatch(self, subobj, start, end, +1);
13413|     38|    if (result < 0) {
  ------------------
  |  Branch (13413:9): [True: 0, False: 38]
  ------------------
13414|      0|        return NULL;
13415|      0|    }
13416|     38|    return PyBool_FromLong(result);
13417|     38|}
unicodeobject.c:unicode_isascii_impl:
11724|      2|{
11725|      2|    return PyBool_FromLong(PyUnicode_IS_ASCII(self));
  ------------------
  |  |  227|      2|#define PyUnicode_IS_ASCII(op) PyUnicode_IS_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
11726|      2|}
unicodeobject.c:unicode_iteritem:
13995|      8|{
13996|      8|    if (index >= PyUnicode_GET_LENGTH(obj)) {
  ------------------
  |  |  299|      8|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (13996:9): [True: 4, False: 4]
  ------------------
13997|      4|        return (_PyObjectIndexPair) { .object = NULL, .index = index };
13998|      4|    }
13999|      4|    const void *data = PyUnicode_DATA(obj);
  ------------------
  |  |  284|      4|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14000|      4|    int kind = PyUnicode_KIND(obj);
  ------------------
  |  |  258|      4|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      8|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14001|      4|    Py_UCS4 ch = PyUnicode_READ(kind, data, index);
  ------------------
  |  |  354|      4|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      4|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      4|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      4|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      4|                   (index))
  ------------------
14002|      4|    PyObject *result = unicode_char(ch);
14003|      4|    index = (result == NULL) ? -1 : index + 1;
  ------------------
  |  Branch (14003:13): [True: 0, False: 4]
  ------------------
14004|      4|    return (_PyObjectIndexPair) { .object = result, .index = index };
14005|      4|}
unicodeobject.c:_init_global_state:
14079|      2|{
14080|      2|    static int initialized = 0;
14081|      2|    if (initialized) {
  ------------------
  |  Branch (14081:9): [True: 0, False: 2]
  ------------------
14082|      0|        return;
14083|      0|    }
14084|      2|    initialized = 1;
14085|       |
14086|       |    /* initialize the linebreak bloom filter */
14087|      2|    const Py_UCS2 linebreak[] = {
14088|      2|        0x000A, /* LINE FEED */
14089|      2|        0x000D, /* CARRIAGE RETURN */
14090|      2|        0x001C, /* FILE SEPARATOR */
14091|      2|        0x001D, /* GROUP SEPARATOR */
14092|      2|        0x001E, /* RECORD SEPARATOR */
14093|      2|        0x0085, /* NEXT LINE */
14094|      2|        0x2028, /* LINE SEPARATOR */
14095|      2|        0x2029, /* PARAGRAPH SEPARATOR */
14096|      2|    };
14097|      2|    bloom_linebreak = make_bloom_mask(
14098|      2|        PyUnicode_2BYTE_KIND, linebreak,
14099|      2|        Py_ARRAY_LENGTH(linebreak));
  ------------------
  |  |  196|      2|    (sizeof(array) / sizeof((array)[0]))
  ------------------
14100|      2|}
unicodeobject.c:init_global_interned_strings:
  324|      2|{
  325|      2|    assert(INTERNED_STRINGS == NULL);
  ------------------
  |  Branch (325:5): [True: 2, False: 0]
  ------------------
  326|      2|    _Py_hashtable_allocator_t hashtable_alloc = {PyMem_RawMalloc, PyMem_RawFree};
  327|       |
  328|      2|    INTERNED_STRINGS = _Py_hashtable_new_full(
  ------------------
  |  |  219|      2|#define INTERNED_STRINGS _PyRuntime.cached_objects.interned_strings
  ------------------
  329|      2|        hashtable_unicode_hash,
  330|      2|        hashtable_unicode_compare,
  331|       |        // Objects stored here are immortal and statically allocated,
  332|       |        // so we don't need key_destroy_func & value_destroy_func:
  333|      2|        NULL,
  334|      2|        NULL,
  335|      2|        &hashtable_alloc
  336|      2|    );
  337|      2|    if (INTERNED_STRINGS == NULL) {
  ------------------
  |  |  219|      2|#define INTERNED_STRINGS _PyRuntime.cached_objects.interned_strings
  ------------------
  |  Branch (337:9): [True: 0, False: 2]
  ------------------
  338|      0|        PyErr_Clear();
  339|      0|        return _PyStatus_ERR("failed to create global interned dict");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  340|      0|    }
  341|       |
  342|       |    /* Intern statically allocated string identifiers, deepfreeze strings,
  343|       |        * and one-byte latin-1 strings.
  344|       |        * This must be done before any module initialization so that statically
  345|       |        * allocated string identifiers are used instead of heap allocated strings.
  346|       |        * Deepfreeze uses the interned identifiers if present to save space
  347|       |        * else generates them and they are interned to speed up dict lookups.
  348|       |    */
  349|      2|    _PyUnicode_InitStaticStrings(interp);
  350|       |
  351|    514|    for (int i = 0; i < 256; i++) {
  ------------------
  |  Branch (351:21): [True: 512, False: 2]
  ------------------
  352|    512|        PyObject *s = LATIN1(i);
  ------------------
  |  |  184|    512|#define LATIN1 _Py_LATIN1_CHR
  |  |  ------------------
  |  |  |  |  921|    512|    ((CH) < 128 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (921:6): [True: 256, False: 256]
  |  |  |  |  ------------------
  |  |  |  |  922|    512|     ? (PyObject*)&_Py_SINGLETON(strings).ascii[(CH)] \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    256|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    256|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  923|    512|     : (PyObject*)&_Py_SINGLETON(strings).latin1[(CH) - 128])
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    256|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    256|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  353|    512|        _PyUnicode_InternStatic(interp, &s);
  354|    512|        assert(s == LATIN1(i));
  ------------------
  |  Branch (354:9): [True: 256, False: 256]
  |  Branch (354:9): [True: 512, False: 0]
  ------------------
  355|    512|    }
  356|       |#ifdef Py_DEBUG
  357|       |    assert(_PyUnicode_CheckConsistency(&_Py_STR(empty), 1));
  358|       |
  359|       |    for (int i = 0; i < 256; i++) {
  360|       |        assert(_PyUnicode_CheckConsistency(LATIN1(i), 1));
  361|       |    }
  362|       |#endif
  363|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  364|      2|}
unicodeobject.c:hashtable_unicode_hash:
  255|  25.5k|{
  256|  25.5k|    return unicode_hash((PyObject *)key);
  257|  25.5k|}
unicodeobject.c:hashtable_unicode_compare:
  261|  5.48k|{
  262|  5.48k|    PyObject *obj1 = (PyObject *)key1;
  263|  5.48k|    PyObject *obj2 = (PyObject *)key2;
  264|  5.48k|    if (obj1 != NULL && obj2 != NULL) {
  ------------------
  |  Branch (264:9): [True: 5.48k, False: 0]
  |  Branch (264:25): [True: 5.48k, False: 0]
  ------------------
  265|  5.48k|        return unicode_eq(obj1, obj2);
  266|  5.48k|    }
  267|      0|    else {
  268|      0|        return obj1 == obj2;
  269|      0|    }
  270|  5.48k|}
unicodeobject.c:init_interned_dict:
  291|      2|{
  292|      2|    assert(get_interned_dict(interp) == NULL);
  ------------------
  |  Branch (292:5): [True: 2, False: 0]
  ------------------
  293|      2|    PyObject *interned;
  294|      2|    if (has_shared_intern_dict(interp)) {
  ------------------
  |  Branch (294:9): [True: 0, False: 2]
  ------------------
  295|      0|        interned = get_interned_dict(_PyInterpreterState_Main());
  296|      0|        Py_INCREF(interned);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  297|      0|    }
  298|      2|    else {
  299|      2|        interned = PyDict_New();
  300|      2|        if (interned == NULL) {
  ------------------
  |  Branch (300:13): [True: 0, False: 2]
  ------------------
  301|      0|            return -1;
  302|      0|        }
  303|      2|    }
  304|      2|    _Py_INTERP_CACHED_OBJECT(interp, interned_strings) = interned;
  ------------------
  |  |   22|      2|    (interp)->cached_objects.NAME
  ------------------
  305|      2|    return 0;
  306|      2|}
unicodeobject.c:intern_static:
14152|  2.24k|{
14153|       |    // Note that this steals a reference to `s`, but in many cases that
14154|       |    // stolen ref is returned, requiring no decref/incref.
14155|       |
14156|  2.24k|    assert(s != NULL);
  ------------------
  |  Branch (14156:5): [True: 2.24k, False: 0]
  ------------------
14157|  2.24k|    assert(_PyUnicode_CHECK(s));
  ------------------
  |  Branch (14157:5): [True: 2.24k, False: 0]
  ------------------
14158|  2.24k|    assert(_PyUnicode_STATE(s).statically_allocated);
  ------------------
  |  Branch (14158:5): [True: 2.24k, False: 0]
  |  Branch (14158:5): [True: 2.24k, False: 0]
  ------------------
14159|  2.24k|    assert(!PyUnicode_CHECK_INTERNED(s));
  ------------------
  |  Branch (14159:5): [True: 2.24k, False: 0]
  ------------------
14160|       |
14161|       |#ifdef Py_DEBUG
14162|       |    /* We must not add process-global interned string if there's already a
14163|       |     * per-interpreter interned_dict, which might contain duplicates.
14164|       |     */
14165|       |    PyObject *interned = get_interned_dict(interp);
14166|       |    assert(interned == NULL);
14167|       |#endif
14168|       |
14169|       |    /* Look in the global cache first. */
14170|  2.24k|    PyObject *r = (PyObject *)_Py_hashtable_get(INTERNED_STRINGS, s);
  ------------------
  |  |  219|  2.24k|#define INTERNED_STRINGS _PyRuntime.cached_objects.interned_strings
  ------------------
14171|       |    /* We should only init each string once */
14172|  2.24k|    assert(r == NULL);
  ------------------
  |  Branch (14172:5): [True: 2.24k, False: 0]
  ------------------
14173|       |    /* but just in case (for the non-debug build), handle this */
14174|  2.24k|    if (r != NULL && r != s) {
  ------------------
  |  Branch (14174:9): [True: 0, False: 2.24k]
  |  Branch (14174:22): [True: 0, False: 0]
  ------------------
14175|      0|        assert(_PyUnicode_STATE(r).interned == SSTATE_INTERNED_IMMORTAL_STATIC);
  ------------------
  |  Branch (14175:9): [True: 0, False: 0]
  |  Branch (14175:9): [True: 0, False: 0]
  ------------------
14176|      0|        assert(_PyUnicode_CHECK(r));
  ------------------
  |  Branch (14176:9): [True: 0, False: 0]
  ------------------
14177|      0|        Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14178|      0|        return Py_NewRef(r);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14179|      0|    }
14180|       |
14181|  2.24k|    if (_Py_hashtable_set(INTERNED_STRINGS, s, s) < -1) {
  ------------------
  |  |  219|  2.24k|#define INTERNED_STRINGS _PyRuntime.cached_objects.interned_strings
  ------------------
  |  Branch (14181:9): [True: 0, False: 2.24k]
  ------------------
14182|      0|        Py_FatalError("failed to intern static string");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
14183|      0|    }
14184|       |
14185|  2.24k|    _PyUnicode_STATE(s).interned = SSTATE_INTERNED_IMMORTAL_STATIC;
  ------------------
  |  |  153|  2.24k|    (_PyASCIIObject_CAST(op)->state)
  |  |  ------------------
  |  |  |  |  186|  2.24k|    (assert(PyUnicode_Check(op)), \
  |  |  |  |  187|  2.24k|     _Py_CAST(PyASCIIObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.24k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  _PyUnicode_STATE(s).interned = SSTATE_INTERNED_IMMORTAL_STATIC;
  ------------------
  |  |  204|  2.24k|#define SSTATE_INTERNED_IMMORTAL_STATIC 3
  ------------------
  |  Branch (14185:5): [True: 2.24k, False: 0]
  ------------------
14186|      0|    return s;
14187|  2.24k|}
unicodeobject.c:intern_common:
14234|  38.5k|{
14235|       |    // Note that this steals a reference to `s`, but in many cases that
14236|       |    // stolen ref is returned, requiring no decref/incref.
14237|       |
14238|       |#ifdef Py_DEBUG
14239|       |    assert(s != NULL);
14240|       |    assert(_PyUnicode_CHECK(s));
14241|       |#else
14242|  38.5k|    if (s == NULL || !PyUnicode_Check(s)) {
  ------------------
  |  |  103|  38.5k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  38.5k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (14242:9): [True: 0, False: 38.5k]
  |  Branch (14242:22): [True: 0, False: 38.5k]
  ------------------
14243|      0|        return s;
14244|      0|    }
14245|  38.5k|#endif
14246|       |
14247|       |    /* If it's a subclass, we don't really know what putting
14248|       |       it in the interned dict might do. */
14249|  38.5k|    if (!PyUnicode_CheckExact(s)) {
  ------------------
  |  |  104|  38.5k|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|  38.5k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  38.5k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  38.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (14249:9): [True: 0, False: 38.5k]
  ------------------
14250|      0|        return s;
14251|      0|    }
14252|       |
14253|       |    /* Is it already interned? */
14254|  38.5k|    switch (PyUnicode_CHECK_INTERNED(s)) {
  ------------------
  |  |  214|  38.5k|#define PyUnicode_CHECK_INTERNED(op) PyUnicode_CHECK_INTERNED(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  38.5k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  38.5k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14255|  14.7k|        case SSTATE_NOT_INTERNED:
  ------------------
  |  |  201|  14.7k|#define SSTATE_NOT_INTERNED 0
  ------------------
  |  Branch (14255:9): [True: 14.7k, False: 23.7k]
  ------------------
14256|       |            // no, go on
14257|  14.7k|            break;
14258|    748|        case SSTATE_INTERNED_MORTAL:
  ------------------
  |  |  202|    748|#define SSTATE_INTERNED_MORTAL 1
  ------------------
  |  Branch (14258:9): [True: 748, False: 37.7k]
  ------------------
14259|    748|#ifndef Py_GIL_DISABLED
14260|       |            // yes but we might need to make it immortal
14261|    748|            if (immortalize) {
  ------------------
  |  Branch (14261:17): [True: 0, False: 748]
  ------------------
14262|      0|                immortalize_interned(s);
14263|      0|            }
14264|    748|            return s;
14265|       |#else
14266|       |            // not fully interned yet; fall through to the locking path
14267|       |            break;
14268|       |#endif
14269|  23.0k|        default:
  ------------------
  |  Branch (14269:9): [True: 23.0k, False: 15.4k]
  ------------------
14270|       |            // all done
14271|  23.0k|            return s;
14272|  38.5k|    }
14273|       |
14274|       |    /* Statically allocated strings must be already interned. */
14275|  38.5k|    assert(!_PyUnicode_STATE(s).statically_allocated);
  ------------------
  |  Branch (14275:5): [True: 14.7k, False: 0]
  |  Branch (14275:5): [True: 14.7k, False: 0]
  ------------------
14276|       |
14277|       |#if Py_GIL_DISABLED
14278|       |    /* In the free-threaded build, all interned strings are immortal */
14279|       |    immortalize = 1;
14280|       |#endif
14281|       |
14282|       |    /* If it's already immortal, intern it as such */
14283|  14.7k|    if (_Py_IsImmortal(s)) {
  ------------------
  |  |  137|  14.7k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  14.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  14.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 14.7k]
  |  |  ------------------
  ------------------
14284|      0|        immortalize = 1;
14285|      0|    }
14286|       |
14287|       |    /* if it's a short string, get the singleton */
14288|  14.7k|    if (PyUnicode_GET_LENGTH(s) == 1 &&
  ------------------
  |  |  299|  14.7k|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  14.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  14.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (14288:9): [True: 0, False: 14.7k]
  ------------------
14289|      0|                PyUnicode_KIND(s) == PyUnicode_1BYTE_KIND) {
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (14289:17): [True: 0, False: 0]
  ------------------
14290|      0|        PyObject *r = LATIN1(*(unsigned char*)PyUnicode_DATA(s));
  ------------------
  |  |  184|      0|#define LATIN1 _Py_LATIN1_CHR
  |  |  ------------------
  |  |  |  |  921|      0|    ((CH) < 128 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (921:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  922|      0|     ? (PyObject*)&_Py_SINGLETON(strings).ascii[(CH)] \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  923|      0|     : (PyObject*)&_Py_SINGLETON(strings).latin1[(CH) - 128])
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14291|      0|        assert(PyUnicode_CHECK_INTERNED(r));
  ------------------
  |  Branch (14291:9): [True: 0, False: 0]
  ------------------
14292|      0|        Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14293|      0|        return r;
14294|      0|    }
14295|       |#ifdef Py_DEBUG
14296|       |    assert(!unicode_is_singleton(s));
14297|       |#endif
14298|       |
14299|       |    /* Look in the global cache now. */
14300|  14.7k|    {
14301|  14.7k|        PyObject *r = (PyObject *)_Py_hashtable_get(INTERNED_STRINGS, s);
  ------------------
  |  |  219|  14.7k|#define INTERNED_STRINGS _PyRuntime.cached_objects.interned_strings
  ------------------
14302|  14.7k|        if (r != NULL) {
  ------------------
  |  Branch (14302:13): [True: 5.48k, False: 9.26k]
  ------------------
14303|  5.48k|            assert(_PyUnicode_STATE(r).statically_allocated);
  ------------------
  |  Branch (14303:13): [True: 5.48k, False: 0]
  |  Branch (14303:13): [True: 5.48k, False: 0]
  ------------------
14304|  5.48k|            assert(r != s);  // r must be statically_allocated; s is not
  ------------------
  |  Branch (14304:13): [True: 5.48k, False: 0]
  ------------------
14305|  5.48k|            Py_DECREF(s);
  ------------------
  |  |  430|  5.48k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14306|  5.48k|            return Py_NewRef(r);
  ------------------
  |  |  550|  5.48k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  5.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14307|  5.48k|        }
14308|  14.7k|    }
14309|       |
14310|       |    /* Do a setdefault on the per-interpreter cache. */
14311|  9.26k|    PyObject *interned = get_interned_dict(interp);
14312|  9.26k|    assert(interned != NULL);
  ------------------
  |  Branch (14312:5): [True: 9.26k, False: 0]
  ------------------
14313|       |#ifdef Py_GIL_DISABLED
14314|       |#  define INTERN_MUTEX &_Py_INTERP_CACHED_OBJECT(interp, interned_mutex)
14315|       |    // Lock-free fast path: check if there's already an interned copy that
14316|       |    // is in its final immortal state.
14317|       |    PyObject *r;
14318|       |    int res = PyDict_GetItemRef(interned, s, &r);
14319|       |    if (res < 0) {
14320|       |        PyErr_Clear();
14321|       |        return s;
14322|       |    }
14323|       |    if (res > 0) {
14324|       |        unsigned int state = _Py_atomic_load_uint8(&_PyUnicode_STATE(r).interned);
14325|       |        if (state == SSTATE_INTERNED_IMMORTAL) {
14326|       |            Py_DECREF(s);
14327|       |            return r;
14328|       |        }
14329|       |        // Not yet fully interned; fall through to the locking path.
14330|       |        Py_DECREF(r);
14331|       |    }
14332|       |#endif
14333|       |
14334|       |#ifdef Py_GIL_DISABLED
14335|       |    // Immortalization writes to the refcount fields non-atomically. That
14336|       |    // races with Py_INCREF / Py_DECREF on the thread that owns `s`. If we
14337|       |    // don't own it (and its refcount hasn't been merged), intern a copy
14338|       |    // we own instead.
14339|       |    if (!can_immortalize_safely(s)) {
14340|       |        PyObject *copy = _PyUnicode_Copy(s);
14341|       |        if (copy == NULL) {
14342|       |            PyErr_Clear();
14343|       |            return s;
14344|       |        }
14345|       |        Py_DECREF(s);
14346|       |        s = copy;
14347|       |    }
14348|       |#endif
14349|       |
14350|  9.26k|    FT_MUTEX_LOCK(INTERN_MUTEX);
  ------------------
  |  |  204|  9.26k|#define FT_MUTEX_LOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (204:42): [Folded, False: 9.26k]
  |  |  ------------------
  ------------------
14351|  9.26k|    PyObject *t;
14352|  9.26k|    {
14353|  9.26k|        int res = PyDict_SetDefaultRef(interned, s, s, &t);
14354|  9.26k|        if (res < 0) {
  ------------------
  |  Branch (14354:13): [True: 0, False: 9.26k]
  ------------------
14355|      0|            PyErr_Clear();
14356|      0|            FT_MUTEX_UNLOCK(INTERN_MUTEX);
  ------------------
  |  |  206|      0|#define FT_MUTEX_UNLOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (206:44): [Folded, False: 0]
  |  |  ------------------
  ------------------
14357|      0|            return s;
14358|      0|        }
14359|  9.26k|        else if (res == 1) {
  ------------------
  |  Branch (14359:18): [True: 2.30k, False: 6.95k]
  ------------------
14360|       |            // value was already present (not inserted)
14361|  2.30k|            Py_DECREF(s);
  ------------------
  |  |  430|  2.30k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  2.30k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.30k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14362|  2.30k|            if (immortalize &&
  ------------------
  |  Branch (14362:17): [True: 1.78k, False: 524]
  ------------------
14363|  1.78k|                    PyUnicode_CHECK_INTERNED(t) == SSTATE_INTERNED_MORTAL) {
  ------------------
  |  |  214|  1.78k|#define PyUnicode_CHECK_INTERNED(op) PyUnicode_CHECK_INTERNED(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.78k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.78k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                                  PyUnicode_CHECK_INTERNED(t) == SSTATE_INTERNED_MORTAL) {
  ------------------
  |  |  202|  1.78k|#define SSTATE_INTERNED_MORTAL 1
  ------------------
  |  Branch (14363:21): [True: 272, False: 1.51k]
  ------------------
14364|    272|                immortalize_interned(t);
14365|    272|            }
14366|  2.30k|            FT_MUTEX_UNLOCK(INTERN_MUTEX);
  ------------------
  |  |  206|  2.30k|#define FT_MUTEX_UNLOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (206:44): [Folded, False: 2.30k]
  |  |  ------------------
  ------------------
14367|  2.30k|            return t;
14368|  2.30k|        }
14369|  6.95k|        else {
14370|       |            // value was newly inserted
14371|  6.95k|            assert (s == t);
  ------------------
  |  Branch (14371:13): [True: 6.95k, False: 0]
  ------------------
14372|  6.95k|            Py_DECREF(t);
  ------------------
  |  |  430|  6.95k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.95k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.95k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14373|  6.95k|        }
14374|  9.26k|    }
14375|       |
14376|       |    /* NOT_INTERNED -> INTERNED_MORTAL */
14377|       |
14378|  9.26k|    assert(_PyUnicode_STATE(s).interned == SSTATE_NOT_INTERNED);
  ------------------
  |  Branch (14378:5): [True: 6.95k, False: 0]
  |  Branch (14378:5): [True: 6.95k, False: 0]
  ------------------
14379|       |
14380|  6.95k|    if (!_Py_IsImmortal(s)) {
  ------------------
  |  |  137|  6.95k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.95k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.95k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (14380:9): [True: 6.95k, False: 0]
  ------------------
14381|       |        /* The two references in interned dict (key and value) are not counted.
14382|       |        unicode_dealloc() and _PyUnicode_ClearInterned() take care of this. */
14383|  6.95k|        Py_DECREF(s);
  ------------------
  |  |  430|  6.95k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.95k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.95k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14384|  6.95k|        Py_DECREF(s);
  ------------------
  |  |  430|  6.95k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  6.95k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.95k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14385|  6.95k|    }
14386|  6.95k|    FT_ATOMIC_STORE_UINT8(_PyUnicode_STATE(s).interned, SSTATE_INTERNED_MORTAL);
  ------------------
  |  |  155|  13.9k|#define FT_ATOMIC_STORE_UINT8(value, new_value) value = new_value
  |  |  ------------------
  |  |  |  Branch (155:49): [True: 6.95k, False: 0]
  |  |  ------------------
  ------------------
14387|       |
14388|       |    /* INTERNED_MORTAL -> INTERNED_IMMORTAL (if needed) */
14389|       |
14390|       |#ifdef Py_DEBUG
14391|       |    if (_Py_IsImmortal(s)) {
14392|       |        assert(immortalize);
14393|       |    }
14394|       |#endif
14395|  6.95k|    if (immortalize) {
  ------------------
  |  Branch (14395:9): [True: 5.49k, False: 1.45k]
  ------------------
14396|  5.49k|        immortalize_interned(s);
14397|  5.49k|    }
14398|       |
14399|  6.95k|    FT_MUTEX_UNLOCK(INTERN_MUTEX);
  ------------------
  |  |  206|  6.95k|#define FT_MUTEX_UNLOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (206:44): [Folded, False: 6.95k]
  |  |  ------------------
  ------------------
14400|  6.95k|    return s;
14401|  6.95k|}
unicodeobject.c:immortalize_interned:
14201|  5.77k|{
14202|  5.77k|    assert(PyUnicode_CHECK_INTERNED(s) == SSTATE_INTERNED_MORTAL);
  ------------------
  |  Branch (14202:5): [True: 5.77k, False: 0]
  ------------------
14203|  5.77k|    assert(!_Py_IsImmortal(s));
  ------------------
  |  Branch (14203:5): [True: 5.77k, False: 0]
  ------------------
14204|       |#ifdef Py_REF_DEBUG
14205|       |    /* The reference count value should be excluded from the RefTotal.
14206|       |       The decrements to these objects will not be registered so they
14207|       |       need to be accounted for in here. */
14208|       |    for (Py_ssize_t i = 0; i < Py_REFCNT(s); i++) {
14209|       |        _Py_DecRefTotal(_PyThreadState_GET());
14210|       |    }
14211|       |#endif
14212|  5.77k|    _Py_SetImmortal(s);
14213|       |    // The switch to SSTATE_INTERNED_IMMORTAL must be the last thing done here
14214|       |    // to synchronize with the check in intern_common() that avoids locking if
14215|       |    // the string is already immortal.
14216|  5.77k|    FT_ATOMIC_STORE_UINT8(_PyUnicode_STATE(s).interned, SSTATE_INTERNED_IMMORTAL);
  ------------------
  |  |  155|  11.5k|#define FT_ATOMIC_STORE_UINT8(value, new_value) value = new_value
  |  |  ------------------
  |  |  |  Branch (155:49): [True: 5.77k, False: 0]
  |  |  ------------------
  ------------------
14217|  5.77k|}
unicodeobject.c:has_shared_intern_dict:
  284|      2|{
  285|      2|    PyInterpreterState *main_interp = _PyInterpreterState_Main();
  286|      2|    return interp != main_interp  && interp->feature_flags & Py_RTFLAGS_USE_MAIN_OBMALLOC;
  ------------------
  |  |   79|      2|#define Py_RTFLAGS_USE_MAIN_OBMALLOC (1UL << 5)
  ------------------
  |  Branch (286:12): [True: 0, False: 2]
  |  Branch (286:38): [True: 0, False: 0]
  ------------------
  287|      2|}
unicodeobject.c:unicodeiter_dealloc:
14553|      2|{
14554|      2|    unicodeiterobject *it = (unicodeiterobject *)op;
14555|      2|    _PyObject_GC_UNTRACK(it);
  ------------------
  |  |  515|      2|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14556|      2|    Py_XDECREF(it->it_seq);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14557|      2|    PyObject_GC_Del(it);
14558|      2|}
unicodeobject.c:unicode_iter:
14726|      2|{
14727|      2|    unicodeiterobject *it;
14728|       |
14729|      2|    if (!PyUnicode_Check(seq)) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (14729:9): [True: 0, False: 2]
  ------------------
14730|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
14731|      0|        return NULL;
14732|      0|    }
14733|      2|    if (PyUnicode_IS_COMPACT_ASCII(seq)) {
  ------------------
  |  |  241|      2|#define PyUnicode_IS_COMPACT_ASCII(op) PyUnicode_IS_COMPACT_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (241:40): [True: 2, False: 0]
  |  |  ------------------
  ------------------
14734|      2|        it = PyObject_GC_New(unicodeiterobject, &_PyUnicodeASCIIIter_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
14735|      2|    }
14736|      0|    else {
14737|      0|        it = PyObject_GC_New(unicodeiterobject, &PyUnicodeIter_Type);
  ------------------
  |  |  181|      0|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
14738|      0|    }
14739|      2|    if (it == NULL)
  ------------------
  |  Branch (14739:9): [True: 0, False: 2]
  ------------------
14740|      0|        return NULL;
14741|      2|    it->it_index = 0;
14742|      2|    it->it_seq = Py_NewRef(seq);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14743|      2|    _PyObject_GC_TRACK(it);
  ------------------
  |  |  513|      2|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14744|      2|    return (PyObject *)it;
14745|      2|}
unicodeobject.c:init_fs_encoding:
14883|      2|{
14884|      2|    PyInterpreterState *interp = tstate->interp;
14885|       |
14886|       |    /* Update the filesystem encoding to the normalized Python codec name.
14887|       |       For example, replace "ANSI_X3.4-1968" (locale encoding) with "ascii"
14888|       |       (Python codec name). */
14889|      2|    PyConfig *config = (PyConfig*)_PyInterpreterState_GetConfig(interp);
14890|      2|    if (config_get_codec_name(&config->filesystem_encoding) < 0) {
  ------------------
  |  Branch (14890:9): [True: 0, False: 2]
  ------------------
14891|      0|        _Py_DumpPathConfig(tstate);
14892|      0|        return _PyStatus_ERR("failed to get the Python codec "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
14893|      0|                             "of the filesystem encoding");
14894|      0|    }
14895|       |
14896|      2|    if (init_fs_codec(interp) < 0) {
  ------------------
  |  Branch (14896:9): [True: 0, False: 2]
  ------------------
14897|      0|        return _PyStatus_ERR("cannot initialize filesystem codec");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
14898|      0|    }
14899|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
14900|      2|}
unicodeobject.c:config_get_codec_name:
14766|      4|{
14767|      4|    char *encoding;
14768|      4|    if (encode_wstr_utf8(*config_encoding, &encoding, "stdio_encoding") < 0) {
  ------------------
  |  Branch (14768:9): [True: 0, False: 4]
  ------------------
14769|      0|        return -1;
14770|      0|    }
14771|       |
14772|      4|    PyObject *name_obj = NULL;
14773|      4|    PyObject *codec = _PyCodec_Lookup(encoding);
14774|      4|    PyMem_RawFree(encoding);
14775|       |
14776|      4|    if (!codec)
  ------------------
  |  Branch (14776:9): [True: 0, False: 4]
  ------------------
14777|      0|        goto error;
14778|       |
14779|      4|    name_obj = PyObject_GetAttrString(codec, "name");
14780|      4|    Py_CLEAR(codec);
  ------------------
  |  |  484|      4|    do { \
  |  |  485|      4|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      4|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      4|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      4|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 4, False: 0]
  |  |  ------------------
  |  |  488|      4|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      4|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      4|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      4|        } \
  |  |  491|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
14781|      4|    if (!name_obj) {
  ------------------
  |  Branch (14781:9): [True: 0, False: 4]
  ------------------
14782|      0|        goto error;
14783|      0|    }
14784|       |
14785|      4|    wchar_t *wname = PyUnicode_AsWideCharString(name_obj, NULL);
14786|      4|    Py_DECREF(name_obj);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14787|      4|    if (wname == NULL) {
  ------------------
  |  Branch (14787:9): [True: 0, False: 4]
  ------------------
14788|      0|        goto error;
14789|      0|    }
14790|       |
14791|      4|    wchar_t *raw_wname = _PyMem_RawWcsdup(wname);
14792|      4|    if (raw_wname == NULL) {
  ------------------
  |  Branch (14792:9): [True: 0, False: 4]
  ------------------
14793|      0|        PyMem_Free(wname);
14794|      0|        PyErr_NoMemory();
14795|      0|        goto error;
14796|      0|    }
14797|       |
14798|      4|    PyMem_RawFree(*config_encoding);
14799|      4|    *config_encoding = raw_wname;
14800|       |
14801|      4|    PyMem_Free(wname);
14802|      4|    return 0;
14803|       |
14804|      0|error:
14805|      0|    Py_XDECREF(codec);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14806|      0|    Py_XDECREF(name_obj);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
14807|      0|    return -1;
14808|      4|}
unicodeobject.c:encode_wstr_utf8:
14749|      8|{
14750|      8|    int res;
14751|      8|    res = _Py_EncodeUTF8Ex(wstr, str, NULL, NULL, 1, _Py_ERROR_STRICT);
14752|      8|    if (res == -2) {
  ------------------
  |  Branch (14752:9): [True: 0, False: 8]
  ------------------
14753|      0|        PyErr_Format(PyExc_RuntimeError, "cannot encode %s", name);
14754|      0|        return -1;
14755|      0|    }
14756|      8|    if (res < 0) {
  ------------------
  |  Branch (14756:9): [True: 0, False: 8]
  ------------------
14757|      0|        PyErr_NoMemory();
14758|      0|        return -1;
14759|      0|    }
14760|      8|    return 0;
14761|      8|}
unicodeobject.c:init_fs_codec:
14826|      2|{
14827|      2|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
14828|       |
14829|      2|    _Py_error_handler error_handler;
14830|      2|    error_handler = get_error_handler_wide(config->filesystem_errors);
14831|      2|    if (error_handler == _Py_ERROR_UNKNOWN) {
  ------------------
  |  Branch (14831:9): [True: 0, False: 2]
  ------------------
14832|      0|        PyErr_SetString(PyExc_RuntimeError, "unknown filesystem error handler");
14833|      0|        return -1;
14834|      0|    }
14835|       |
14836|      2|    char *encoding, *errors;
14837|      2|    if (encode_wstr_utf8(config->filesystem_encoding,
  ------------------
  |  Branch (14837:9): [True: 0, False: 2]
  ------------------
14838|      2|                         &encoding,
14839|      2|                         "filesystem_encoding") < 0) {
14840|      0|        return -1;
14841|      0|    }
14842|       |
14843|      2|    if (encode_wstr_utf8(config->filesystem_errors,
  ------------------
  |  Branch (14843:9): [True: 0, False: 2]
  ------------------
14844|      2|                         &errors,
14845|      2|                         "filesystem_errors") < 0) {
14846|      0|        PyMem_RawFree(encoding);
14847|      0|        return -1;
14848|      0|    }
14849|       |
14850|      2|    struct _Py_unicode_fs_codec *fs_codec = &interp->unicode.fs_codec;
14851|      2|    PyMem_RawFree(fs_codec->encoding);
14852|      2|    fs_codec->encoding = encoding;
14853|       |    /* encoding has been normalized by init_fs_encoding() */
14854|      2|    fs_codec->utf8 = (strcmp(encoding, "utf-8") == 0);
14855|      2|    PyMem_RawFree(fs_codec->errors);
14856|      2|    fs_codec->errors = errors;
14857|      2|    fs_codec->error_handler = error_handler;
14858|       |
14859|       |#ifdef _Py_FORCE_UTF8_FS_ENCODING
14860|       |    assert(fs_codec->utf8 == 1);
14861|       |#endif
14862|       |
14863|       |    /* At this point, PyUnicode_EncodeFSDefault() and
14864|       |       PyUnicode_DecodeFSDefault() can now use the Python codec rather than
14865|       |       the C implementation of the filesystem encoding. */
14866|       |
14867|       |    /* Set Py_FileSystemDefaultEncoding and Py_FileSystemDefaultEncodeErrors
14868|       |       global configuration variables. */
14869|      2|    if (_Py_IsMainInterpreter(interp)) {
  ------------------
  |  Branch (14869:9): [True: 2, False: 0]
  ------------------
14870|       |
14871|      2|        if (_Py_SetFileSystemEncoding(fs_codec->encoding,
  ------------------
  |  Branch (14871:13): [True: 0, False: 2]
  ------------------
14872|      2|                                      fs_codec->errors) < 0) {
14873|      0|            PyErr_NoMemory();
14874|      0|            return -1;
14875|      0|        }
14876|      2|    }
14877|      2|    return 0;
14878|      2|}
unicodeobject.c:init_stdio_encoding:
14813|      2|{
14814|       |    /* Update the stdio encoding to the normalized Python codec name. */
14815|      2|    PyConfig *config = (PyConfig*)_PyInterpreterState_GetConfig(interp);
14816|      2|    if (config_get_codec_name(&config->stdio_encoding) < 0) {
  ------------------
  |  Branch (14816:9): [True: 0, False: 2]
  ------------------
14817|      0|        return _PyStatus_ERR("failed to get the Python codec name "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
14818|      0|                             "of the stdio encoding");
14819|      0|    }
14820|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
14821|      2|}

_PyWeakref_GetWeakrefCount:
   43|    108|{
   44|    108|    if (!_PyType_SUPPORTS_WEAKREFS(Py_TYPE(obj))) {
  ------------------
  |  |  213|    108|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (44:9): [True: 0, False: 108]
  ------------------
   45|      0|        return 0;
   46|      0|    }
   47|       |
   48|    108|    LOCK_WEAKREFS(obj);
   49|    108|    Py_ssize_t count = 0;
   50|    108|    PyWeakReference *head = *GET_WEAKREFS_LISTPTR(obj);
  ------------------
  |  |   38|    108|        ((PyWeakReference **) _PyObject_GET_WEAKREFS_LISTPTR(o))
  ------------------
   51|    216|    while (head != NULL) {
  ------------------
  |  Branch (51:12): [True: 108, False: 108]
  ------------------
   52|    108|        ++count;
   53|    108|        head = head->wr_next;
   54|    108|    }
   55|    108|    UNLOCK_WEAKREFS(obj);
   56|    108|    return count;
   57|    108|}
PyWeakref_NewRef:
  920|    938|{
  921|    938|    return (PyObject *)get_or_create_weakref(&_PyWeakref_RefType, ob,
  922|    938|                                             callback);
  923|    938|}
PyWeakref_GetRef:
  951|     30|{
  952|     30|    if (ref == NULL) {
  ------------------
  |  Branch (952:9): [True: 0, False: 30]
  ------------------
  953|      0|        *pobj = NULL;
  954|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
  955|      0|        return -1;
  956|      0|    }
  957|     30|    if (!PyWeakref_Check(ref)) {
  ------------------
  |  |   23|     30|        (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
  |  |  ------------------
  |  |  |  |   15|     30|#define PyWeakref_CheckRef(op) PyObject_TypeCheck((op), &_PyWeakref_RefType)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|     60|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 30, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
  |  |  ------------------
  |  |  |  |   19|      0|        (Py_IS_TYPE((op), &_PyWeakref_ProxyType) \
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   20|      0|         || Py_IS_TYPE((op), &_PyWeakref_CallableProxyType))
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  958|      0|        *pobj = NULL;
  959|      0|        PyErr_SetString(PyExc_TypeError, "expected a weakref");
  960|      0|        return -1;
  961|      0|    }
  962|     30|    *pobj = _PyWeakref_GET_REF(ref);
  963|       |    return (*pobj != NULL);
  964|     30|}
PyObject_ClearWeakRefs:
 1008|    416|{
 1009|    416|    PyWeakReference **list;
 1010|       |
 1011|    416|    if (object == NULL
  ------------------
  |  Branch (1011:9): [True: 0, False: 416]
  ------------------
 1012|    416|        || !_PyType_SUPPORTS_WEAKREFS(Py_TYPE(object))
  ------------------
  |  |  213|    416|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    416|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    416|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1012:12): [True: 0, False: 416]
  ------------------
 1013|    416|        || Py_REFCNT(object) != 0)
  ------------------
  |  |  119|    416|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    416|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    416|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1013:12): [True: 0, False: 416]
  ------------------
 1014|      0|    {
 1015|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1016|      0|        return;
 1017|      0|    }
 1018|       |
 1019|    416|    list = GET_WEAKREFS_LISTPTR(object);
  ------------------
  |  |   38|    416|        ((PyWeakReference **) _PyObject_GET_WEAKREFS_LISTPTR(o))
  ------------------
 1020|    416|    if (FT_ATOMIC_LOAD_PTR(*list) == NULL) {
  ------------------
  |  |  145|    416|#define FT_ATOMIC_LOAD_PTR(value) value
  ------------------
  |  Branch (1020:9): [True: 308, False: 108]
  ------------------
 1021|       |        // Fast path for the common case
 1022|    308|        return;
 1023|    308|    }
 1024|       |
 1025|       |    /* Remove the callback-less basic and proxy references, which always appear
 1026|       |       at the head of the list.
 1027|       |    */
 1028|    216|    for (int done = 0; !done;) {
  ------------------
  |  Branch (1028:24): [True: 108, False: 108]
  ------------------
 1029|    108|        LOCK_WEAKREFS(object);
 1030|    108|        if (*list != NULL && is_basic_ref_or_proxy(*list)) {
  ------------------
  |  Branch (1030:13): [True: 108, False: 0]
  |  Branch (1030:30): [True: 0, False: 108]
  ------------------
 1031|      0|            PyObject *callback;
 1032|      0|            clear_weakref_lock_held(*list, &callback);
 1033|      0|            assert(callback == NULL);
  ------------------
  |  Branch (1033:13): [True: 0, False: 0]
  ------------------
 1034|      0|        }
 1035|    108|        done = (*list == NULL) || !is_basic_ref_or_proxy(*list);
  ------------------
  |  Branch (1035:16): [True: 0, False: 108]
  |  Branch (1035:35): [True: 108, False: 0]
  ------------------
 1036|    108|        UNLOCK_WEAKREFS(object);
 1037|    108|    }
 1038|       |
 1039|       |    /* Deal with non-canonical (subtypes or refs with callbacks) references. */
 1040|    108|    Py_ssize_t num_weakrefs = _PyWeakref_GetWeakrefCount(object);
 1041|    108|    if (num_weakrefs == 0) {
  ------------------
  |  Branch (1041:9): [True: 0, False: 108]
  ------------------
 1042|      0|        return;
 1043|      0|    }
 1044|       |
 1045|    108|    PyObject *exc = PyErr_GetRaisedException();
 1046|    108|    PyObject *tuple = PyTuple_New(num_weakrefs * 2);
 1047|    108|    if (tuple == NULL) {
  ------------------
  |  Branch (1047:9): [True: 0, False: 108]
  ------------------
 1048|      0|        _PyWeakref_ClearWeakRefsNoCallbacks(object);
 1049|      0|        PyErr_FormatUnraisable("Exception ignored while "
 1050|      0|                               "clearing object weakrefs");
 1051|      0|        PyErr_SetRaisedException(exc);
 1052|      0|        return;
 1053|      0|    }
 1054|       |
 1055|    108|    Py_ssize_t num_items = 0;
 1056|    216|    for (int done = 0; !done;) {
  ------------------
  |  Branch (1056:24): [True: 108, False: 108]
  ------------------
 1057|    108|        PyObject *callback = NULL;
 1058|    108|        LOCK_WEAKREFS(object);
 1059|    108|        PyWeakReference *cur = *list;
 1060|    108|        if (cur != NULL) {
  ------------------
  |  Branch (1060:13): [True: 108, False: 0]
  ------------------
 1061|    108|            clear_weakref_lock_held(cur, &callback);
 1062|    108|            if (_Py_TryIncref((PyObject *) cur)) {
  ------------------
  |  Branch (1062:17): [True: 108, False: 0]
  ------------------
 1063|    108|                assert(num_items / 2 < num_weakrefs);
  ------------------
  |  Branch (1063:17): [True: 108, False: 0]
  ------------------
 1064|    108|                PyTuple_SET_ITEM(tuple, num_items, (PyObject *) cur);
  ------------------
  |  |   40|    108|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1065|    108|                PyTuple_SET_ITEM(tuple, num_items + 1, callback);
  ------------------
  |  |   40|    108|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1066|    108|                num_items += 2;
 1067|    108|                callback = NULL;
 1068|    108|            }
 1069|    108|        }
 1070|    108|        done = (*list == NULL);
 1071|    108|        UNLOCK_WEAKREFS(object);
 1072|       |
 1073|    108|        Py_XDECREF(callback);
  ------------------
  |  |  524|    108|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1074|    108|    }
 1075|       |
 1076|    216|    for (Py_ssize_t i = 0; i < num_items; i += 2) {
  ------------------
  |  Branch (1076:28): [True: 108, False: 108]
  ------------------
 1077|    108|        PyObject *callback = PyTuple_GET_ITEM(tuple, i + 1);
  ------------------
  |  |   29|    108|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    108|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1077:30): [True: 108, False: 0]
  ------------------
 1078|    108|        if (callback != NULL) {
  ------------------
  |  Branch (1078:13): [True: 108, False: 0]
  ------------------
 1079|    108|            PyObject *weakref = PyTuple_GET_ITEM(tuple, i);
  ------------------
  |  |   29|    108|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    108|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1079:33): [True: 108, False: 0]
  ------------------
 1080|      0|            handle_callback((PyWeakReference *)weakref, callback);
 1081|    108|        }
 1082|    108|    }
 1083|       |
 1084|    108|    Py_DECREF(tuple);
  ------------------
  |  |  430|    108|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1085|       |
 1086|    108|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (1086:5): [True: 108, False: 0]
  ------------------
 1087|    108|    PyErr_SetRaisedException(exc);
 1088|    108|}
weakrefobject.c:clear_weakref_lock_held:
   80|    250|{
   81|    250|    if (self->wr_object != Py_None) {
  ------------------
  |  |  616|    250|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (81:9): [True: 142, False: 108]
  ------------------
   82|    142|        PyWeakReference **list = GET_WEAKREFS_LISTPTR(self->wr_object);
  ------------------
  |  |   38|    142|        ((PyWeakReference **) _PyObject_GET_WEAKREFS_LISTPTR(o))
  ------------------
   83|    142|        if (*list == self) {
  ------------------
  |  Branch (83:13): [True: 126, False: 16]
  ------------------
   84|       |            /* If 'self' is the end of the list (and thus self->wr_next ==
   85|       |               NULL) then the weakref list itself (and thus the value of *list)
   86|       |               will end up being set to NULL. */
   87|    126|            FT_ATOMIC_STORE_PTR(*list, self->wr_next);
  ------------------
  |  |  146|    126|#define FT_ATOMIC_STORE_PTR(value, new_value) value = new_value
  ------------------
   88|    126|        }
   89|    142|        FT_ATOMIC_STORE_PTR(self->wr_object, Py_None);
  ------------------
  |  |  146|    142|#define FT_ATOMIC_STORE_PTR(value, new_value) value = new_value
  ------------------
   90|    142|        if (self->wr_prev != NULL) {
  ------------------
  |  Branch (90:13): [True: 16, False: 126]
  ------------------
   91|     16|            self->wr_prev->wr_next = self->wr_next;
   92|     16|        }
   93|    142|        if (self->wr_next != NULL) {
  ------------------
  |  Branch (93:13): [True: 2, False: 140]
  ------------------
   94|      2|            self->wr_next->wr_prev = self->wr_prev;
   95|      2|        }
   96|    142|        self->wr_prev = NULL;
   97|    142|        self->wr_next = NULL;
   98|    142|    }
   99|    250|    if (callback != NULL) {
  ------------------
  |  Branch (99:9): [True: 250, False: 0]
  ------------------
  100|    250|        *callback = self->wr_callback;
  101|       |        self->wr_callback = NULL;
  102|    250|    }
  103|    250|}
weakrefobject.c:weakref_dealloc:
  142|    142|{
  143|    142|    PyObject_GC_UnTrack(self);
  144|    142|    clear_weakref(self);
  145|    142|    Py_TYPE(self)->tp_free(self);
  ------------------
  |  |  213|    142|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    142|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    142|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  146|    142|}
weakrefobject.c:clear_weakref:
  108|    142|{
  109|    142|    PyWeakReference *self = _PyWeakref_CAST(op);
  ------------------
  |  |   46|    142|    (assert(PyWeakref_Check(op)), _Py_CAST(PyWeakReference*, (op)))
  |  |  ------------------
  |  |  |  |   37|    142|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (109:29): [True: 0, False: 0]
  |  Branch (109:29): [True: 0, False: 0]
  |  Branch (109:29): [True: 142, False: 0]
  ------------------
  110|    142|    PyObject *callback = NULL;
  111|       |
  112|       |    // self->wr_object may be Py_None if the GC cleared the weakref, so lock
  113|       |    // using the pointer in the weakref.
  114|    142|    LOCK_WEAKREFS_FOR_WR(self);
  115|    142|    clear_weakref_lock_held(self, &callback);
  116|    142|    UNLOCK_WEAKREFS_FOR_WR(self);
  117|    142|    Py_XDECREF(callback);
  ------------------
  |  |  524|    142|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    142|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    142|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  118|    142|}
weakrefobject.c:weakref_hash:
  206|    144|{
  207|    144|    PyWeakReference *self = _PyWeakref_CAST(op);
  ------------------
  |  |   46|    144|    (assert(PyWeakref_Check(op)), _Py_CAST(PyWeakReference*, (op)))
  |  |  ------------------
  |  |  |  |   37|    144|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (207:29): [True: 0, False: 0]
  |  Branch (207:29): [True: 0, False: 0]
  |  Branch (207:29): [True: 144, False: 0]
  ------------------
  208|      0|    Py_hash_t hash;
  209|    144|    Py_BEGIN_CRITICAL_SECTION(self);
  ------------------
  |  |   51|    144|    {
  ------------------
  210|    144|    hash = weakref_hash_lock_held(self);
  211|    144|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    144|    }
  ------------------
  212|    144|    return hash;
  213|    144|}
weakrefobject.c:weakref_hash_lock_held:
  191|    144|{
  192|    144|    if (self->hash != -1)
  ------------------
  |  Branch (192:9): [True: 2, False: 142]
  ------------------
  193|      2|        return self->hash;
  194|    142|    PyObject* obj = _PyWeakref_GET_REF((PyObject*)self);
  195|    142|    if (obj == NULL) {
  ------------------
  |  Branch (195:9): [True: 0, False: 142]
  ------------------
  196|      0|        PyErr_SetString(PyExc_TypeError, "weak object has gone away");
  197|      0|        return -1;
  198|      0|    }
  199|    142|    self->hash = PyObject_Hash(obj);
  200|    142|    Py_DECREF(obj);
  ------------------
  |  |  430|    142|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    142|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    142|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  201|    142|    return self->hash;
  202|    142|}
weakrefobject.c:gc_traverse:
  151|  1.10k|{
  152|  1.10k|    PyWeakReference *self = _PyWeakref_CAST(op);
  ------------------
  |  |   46|  1.10k|    (assert(PyWeakref_Check(op)), _Py_CAST(PyWeakReference*, (op)))
  |  |  ------------------
  |  |  |  |   37|  1.10k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (152:29): [True: 0, False: 0]
  |  Branch (152:29): [True: 0, False: 0]
  |  Branch (152:29): [True: 1.10k, False: 0]
  ------------------
  153|  1.10k|    Py_VISIT(self->wr_callback);
  ------------------
  |  |  194|  1.10k|    do {                                                                \
  |  |  195|  1.10k|        if (op) {                                                       \
  |  |  ------------------
  |  |  |  Branch (195:13): [True: 8, False: 1.10k]
  |  |  ------------------
  |  |  196|      8|            int vret = visit(_PyObject_CAST(op), arg);                  \
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  197|      8|            if (vret)                                                   \
  |  |  ------------------
  |  |  |  Branch (197:17): [True: 0, False: 8]
  |  |  ------------------
  |  |  198|      8|                return vret;                                            \
  |  |  199|      8|        }                                                               \
  |  |  200|  1.10k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (200:14): [Folded, False: 1.10k]
  |  |  ------------------
  ------------------
  154|  1.10k|    return 0;
  155|  1.10k|}
weakrefobject.c:weakref___init__:
  474|    110|{
  475|    110|    PyObject *tmp;
  476|       |
  477|    110|    if (!_PyArg_NoKeywords("ref", kwargs))
  ------------------
  |  |   25|    110|    ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
  |  |  ------------------
  |  |  |  Branch (25:6): [True: 110, False: 0]
  |  |  |  Branch (25:26): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  478|      0|        return -1;
  479|       |
  480|    110|    if (parse_weakref_init_args("__init__", args, kwargs, &tmp, &tmp))
  ------------------
  |  Branch (480:9): [True: 110, False: 0]
  ------------------
  481|    110|        return 0;
  482|      0|    else
  483|      0|        return -1;
  484|    110|}
weakrefobject.c:parse_weakref_init_args:
  458|    220|{
  459|    220|    return PyArg_UnpackTuple(args, funcname, 1, 2, obp, callbackp);
  460|    220|}
weakrefobject.c:weakref___new__:
  464|    110|{
  465|    110|    PyObject *ob, *callback = NULL;
  466|    110|    if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
  ------------------
  |  Branch (466:9): [True: 110, False: 0]
  ------------------
  467|    110|        return (PyObject *)get_or_create_weakref(type, ob, callback);
  468|    110|    }
  469|      0|    return NULL;
  470|    110|}
weakrefobject.c:get_or_create_weakref:
  412|  1.04k|{
  413|  1.04k|    if (!_PyType_SUPPORTS_WEAKREFS(Py_TYPE(obj))) {
  ------------------
  |  |  213|  1.04k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  1.04k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.04k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (413:9): [True: 0, False: 1.04k]
  ------------------
  414|      0|        PyErr_Format(PyExc_TypeError,
  415|      0|                     "cannot create weak reference to '%s' object",
  416|      0|                     Py_TYPE(obj)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  417|      0|        return NULL;
  418|      0|    }
  419|  1.04k|    if (callback == Py_None)
  ------------------
  |  |  616|  1.04k|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (419:9): [True: 0, False: 1.04k]
  ------------------
  420|      0|        callback = NULL;
  421|       |
  422|  1.04k|    PyWeakReference **list = GET_WEAKREFS_LISTPTR(obj);
  ------------------
  |  |   38|  1.04k|        ((PyWeakReference **) _PyObject_GET_WEAKREFS_LISTPTR(o))
  ------------------
  423|  1.04k|    if ((type == &_PyWeakref_RefType) ||
  ------------------
  |  Branch (423:9): [True: 988, False: 60]
  ------------------
  424|     60|        (type == &_PyWeakref_ProxyType) ||
  ------------------
  |  Branch (424:9): [True: 0, False: 60]
  ------------------
  425|     60|        (type == &_PyWeakref_CallableProxyType))
  ------------------
  |  Branch (425:9): [True: 0, False: 60]
  ------------------
  426|    988|    {
  427|    988|        LOCK_WEAKREFS(obj);
  428|    988|        PyWeakReference *basic_ref = try_reuse_basic_ref(*list, type, callback);
  429|    988|        if (basic_ref != NULL) {
  ------------------
  |  Branch (429:13): [True: 104, False: 884]
  ------------------
  430|    104|            UNLOCK_WEAKREFS(obj);
  431|    104|            return basic_ref;
  432|    104|        }
  433|    884|        PyWeakReference *newref = allocate_weakref(type, obj, callback);
  434|    884|        if (newref == NULL) {
  ------------------
  |  Branch (434:13): [True: 0, False: 884]
  ------------------
  435|      0|            UNLOCK_WEAKREFS(obj);
  436|      0|            return NULL;
  437|      0|        }
  438|    884|        insert_weakref(newref, list);
  439|    884|        UNLOCK_WEAKREFS(obj);
  440|    884|        return newref;
  441|    884|    }
  442|     60|    else {
  443|       |        // We may not be able to safely allocate inside the lock
  444|     60|        PyWeakReference *newref = allocate_weakref(type, obj, callback);
  445|     60|        if (newref == NULL) {
  ------------------
  |  Branch (445:13): [True: 0, False: 60]
  ------------------
  446|      0|            return NULL;
  447|      0|        }
  448|     60|        LOCK_WEAKREFS(obj);
  449|     60|        insert_weakref(newref, list);
  450|     60|        UNLOCK_WEAKREFS(obj);
  451|     60|        return newref;
  452|     60|    }
  453|  1.04k|}
weakrefobject.c:try_reuse_basic_ref:
  332|    988|{
  333|    988|    if (callback != NULL) {
  ------------------
  |  Branch (333:9): [True: 152, False: 836]
  ------------------
  334|    152|        return NULL;
  335|    152|    }
  336|       |
  337|    836|    PyWeakReference *ref, *proxy;
  338|    836|    get_basic_refs(list, &ref, &proxy);
  339|       |
  340|    836|    PyWeakReference *cand = NULL;
  341|    836|    if (type == &_PyWeakref_RefType) {
  ------------------
  |  Branch (341:9): [True: 836, False: 0]
  ------------------
  342|    836|        cand = ref;
  343|    836|    }
  344|    836|    if ((type == &_PyWeakref_ProxyType) ||
  ------------------
  |  Branch (344:9): [True: 0, False: 836]
  ------------------
  345|    836|        (type == &_PyWeakref_CallableProxyType)) {
  ------------------
  |  Branch (345:9): [True: 0, False: 836]
  ------------------
  346|      0|        cand = proxy;
  347|      0|    }
  348|       |
  349|    836|    if (cand != NULL && _Py_TryIncref((PyObject *) cand)) {
  ------------------
  |  Branch (349:9): [True: 104, False: 732]
  |  Branch (349:25): [True: 104, False: 0]
  ------------------
  350|    104|        return cand;
  351|    104|    }
  352|    732|    return NULL;
  353|    836|}
weakrefobject.c:get_basic_refs:
  279|  1.78k|{
  280|  1.78k|    *refp = NULL;
  281|  1.78k|    *proxyp = NULL;
  282|       |
  283|  1.78k|    if (head != NULL && head->wr_callback == NULL) {
  ------------------
  |  Branch (283:9): [True: 208, False: 1.57k]
  |  Branch (283:25): [True: 208, False: 0]
  ------------------
  284|       |        /* We need to be careful that the "basic refs" aren't
  285|       |           subclasses of the main types.  That complicates this a
  286|       |           little. */
  287|    208|        if (PyWeakref_CheckRefExact(head)) {
  ------------------
  |  |   17|    208|        Py_IS_TYPE((op), &_PyWeakref_RefType)
  |  |  ------------------
  |  |  |  |  215|    208|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    208|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    208|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 208, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  288|    208|            *refp = head;
  289|    208|            head = head->wr_next;
  290|    208|        }
  291|    208|        if (head != NULL
  ------------------
  |  Branch (291:13): [True: 42, False: 166]
  ------------------
  292|     42|            && head->wr_callback == NULL
  ------------------
  |  Branch (292:16): [True: 0, False: 42]
  ------------------
  293|      0|            && PyWeakref_CheckProxy(head)) {
  ------------------
  |  |   19|      0|        (Py_IS_TYPE((op), &_PyWeakref_ProxyType) \
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   20|      0|         || Py_IS_TYPE((op), &_PyWeakref_CallableProxyType))
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  294|      0|            *proxyp = head;
  295|       |            /* head = head->wr_next; */
  296|      0|        }
  297|    208|    }
  298|  1.78k|}
weakrefobject.c:allocate_weakref:
  401|    944|{
  402|    944|    PyWeakReference *newref = (PyWeakReference *) type->tp_alloc(type, 0);
  403|    944|    if (newref == NULL) {
  ------------------
  |  Branch (403:9): [True: 0, False: 944]
  ------------------
  404|      0|        return NULL;
  405|      0|    }
  406|    944|    init_weakref(newref, obj, callback);
  407|    944|    return newref;
  408|    944|}
weakrefobject.c:init_weakref:
   63|    944|{
   64|    944|    self->hash = -1;
   65|    944|    self->wr_object = ob;
   66|    944|    self->wr_prev = NULL;
   67|    944|    self->wr_next = NULL;
   68|    944|    self->wr_callback = Py_XNewRef(callback);
  ------------------
  |  |  551|    944|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    944|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    944|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   69|    944|    self->vectorcall = weakref_vectorcall;
   70|       |#ifdef Py_GIL_DISABLED
   71|       |    self->weakrefs_lock = &WEAKREF_LIST_LOCK(ob);
   72|       |    _PyObject_SetMaybeWeakref(ob);
   73|       |    _PyObject_SetMaybeWeakref((PyObject *)self);
   74|       |#endif
   75|    944|}
weakrefobject.c:weakref_vectorcall:
  174|     72|{
  175|     72|    if (!_PyArg_NoKwnames("weakref", kwnames)) {
  ------------------
  |  |   15|     72|    ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
  |  |  ------------------
  |  |  |  Branch (15:6): [True: 72, False: 0]
  |  |  |  Branch (15:27): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  176|      0|        return NULL;
  177|      0|    }
  178|     72|    Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
  ------------------
  |  |   37|     72|#define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n)
  ------------------
  179|     72|    if (!_PyArg_CheckPositional("weakref", nargs, 0, 0)) {
  ------------------
  |  |   31|     72|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 72, False: 0]
  |  |  |  Branch (31:27): [True: 72, False: 0]
  |  |  ------------------
  |  |   32|     72|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  180|      0|        return NULL;
  181|      0|    }
  182|     72|    PyObject *obj = _PyWeakref_GET_REF(self);
  183|     72|    if (obj == NULL) {
  ------------------
  |  Branch (183:9): [True: 0, False: 72]
  ------------------
  184|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  185|      0|    }
  186|     72|    return obj;
  187|     72|}
weakrefobject.c:insert_weakref:
  376|    944|{
  377|    944|    PyWeakReference *ref, *proxy;
  378|    944|    get_basic_refs(*list, &ref, &proxy);
  379|       |
  380|    944|    PyWeakReference *prev;
  381|    944|    if (is_basic_ref(newref)) {
  ------------------
  |  Branch (381:9): [True: 732, False: 212]
  ------------------
  382|    732|        prev = NULL;
  383|    732|    }
  384|    212|    else if (is_basic_proxy(newref)) {
  ------------------
  |  Branch (384:14): [True: 0, False: 212]
  ------------------
  385|      0|        prev = ref;
  386|      0|    }
  387|    212|    else {
  388|    212|        prev = (proxy == NULL) ? ref : proxy;
  ------------------
  |  Branch (388:16): [True: 212, False: 0]
  ------------------
  389|    212|    }
  390|       |
  391|    944|    if (prev == NULL) {
  ------------------
  |  Branch (391:9): [True: 840, False: 104]
  ------------------
  392|    840|        insert_head(newref, list);
  393|    840|    }
  394|    104|    else {
  395|    104|        insert_after(newref, prev);
  396|    104|    }
  397|    944|}
weakrefobject.c:is_basic_ref:
  357|  1.16k|{
  358|  1.16k|    return (ref->wr_callback == NULL) && PyWeakref_CheckRefExact(ref);
  ------------------
  |  |   17|    732|        Py_IS_TYPE((op), &_PyWeakref_RefType)
  |  |  ------------------
  |  |  |  |  215|    732|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    732|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    732|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 732, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (358:12): [True: 732, False: 428]
  ------------------
  359|  1.16k|}
weakrefobject.c:is_basic_proxy:
  363|    428|{
  364|    428|    return (proxy->wr_callback == NULL) && PyWeakref_CheckProxy(proxy);
  ------------------
  |  |   19|      0|        (Py_IS_TYPE((op), &_PyWeakref_ProxyType) \
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   20|      0|         || Py_IS_TYPE((op), &_PyWeakref_CallableProxyType))
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (364:12): [True: 0, False: 428]
  ------------------
  365|    428|}
weakrefobject.c:insert_head:
  316|    840|{
  317|    840|    PyWeakReference *next = *list;
  318|       |
  319|    840|    newref->wr_prev = NULL;
  320|    840|    newref->wr_next = next;
  321|    840|    if (next != NULL)
  ------------------
  |  Branch (321:9): [True: 0, False: 840]
  ------------------
  322|      0|        next->wr_prev = newref;
  323|    840|    *list = newref;
  324|    840|}
weakrefobject.c:insert_after:
  303|    104|{
  304|    104|    newref->wr_prev = prev;
  305|    104|    newref->wr_next = prev->wr_next;
  306|    104|    if (prev->wr_next != NULL)
  ------------------
  |  Branch (306:9): [True: 40, False: 64]
  ------------------
  307|     40|        prev->wr_next->wr_prev = newref;
  308|    104|    prev->wr_next = newref;
  309|    104|}
weakrefobject.c:is_basic_ref_or_proxy:
  369|    216|{
  370|    216|    return is_basic_ref(wr) || is_basic_proxy(wr);
  ------------------
  |  Branch (370:12): [True: 0, False: 216]
  |  Branch (370:32): [True: 0, False: 216]
  ------------------
  371|    216|}
weakrefobject.c:handle_callback:
  988|    108|{
  989|    108|    PyObject *cbresult = PyObject_CallOneArg(callback, (PyObject *)ref);
  990|       |
  991|    108|    if (cbresult == NULL) {
  ------------------
  |  Branch (991:9): [True: 0, False: 108]
  ------------------
  992|      0|        PyErr_FormatUnraisable("Exception ignored while "
  993|      0|                               "calling weakref callback %R", callback);
  994|      0|    }
  995|    108|    else {
  996|    108|        Py_DECREF(cbresult);
  ------------------
  |  |  430|    108|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  997|    108|    }
  998|    108|}

_PyWarnings_InitState:
  136|      2|{
  137|      2|    WarningsState *st = &interp->warnings;
  138|       |
  139|      2|    if (st->filters == NULL) {
  ------------------
  |  Branch (139:9): [True: 2, False: 0]
  ------------------
  140|      2|        st->filters = init_filters(interp);
  141|      2|        if (st->filters == NULL) {
  ------------------
  |  Branch (141:13): [True: 0, False: 2]
  ------------------
  142|      0|            return -1;
  143|      0|        }
  144|      2|    }
  145|       |
  146|      2|    if (st->once_registry == NULL) {
  ------------------
  |  Branch (146:9): [True: 2, False: 0]
  ------------------
  147|      2|        st->once_registry = PyDict_New();
  148|      2|        if (st->once_registry == NULL) {
  ------------------
  |  Branch (148:13): [True: 0, False: 2]
  ------------------
  149|      0|            return -1;
  150|      0|        }
  151|      2|    }
  152|       |
  153|      2|    if (st->default_action == NULL) {
  ------------------
  |  Branch (153:9): [True: 2, False: 0]
  ------------------
  154|      2|        st->default_action = PyUnicode_FromString("default");
  155|      2|        if (st->default_action == NULL) {
  ------------------
  |  Branch (155:13): [True: 0, False: 2]
  ------------------
  156|      0|            return -1;
  157|      0|        }
  158|      2|    }
  159|       |
  160|      2|    if (st->context == NULL) {
  ------------------
  |  Branch (160:9): [True: 2, False: 0]
  ------------------
  161|      2|        st->context = PyContextVar_New("_warnings_context", NULL);
  162|      2|        if (st->context == NULL) {
  ------------------
  |  Branch (162:13): [True: 0, False: 2]
  ------------------
  163|      0|            return -1;
  164|      0|        }
  165|      2|    }
  166|       |
  167|      2|    st->filters_version = 0;
  168|      2|    return 0;
  169|      2|}
_PyWarnings_Init:
 1649|      2|{
 1650|      2|    return PyModuleDef_Init(&warnings_module);
 1651|      2|}
_warnings.c:init_filters:
  101|      2|{
  102|       |#ifdef Py_DEBUG
  103|       |    /* Py_DEBUG builds show all warnings by default */
  104|       |    return PyList_New(0);
  105|       |#else
  106|       |    /* Other builds ignore a number of warning categories by default */
  107|      2|    PyObject *filters = PyList_New(5);
  108|      2|    if (filters == NULL) {
  ------------------
  |  Branch (108:9): [True: 0, False: 2]
  ------------------
  109|      0|        return NULL;
  110|      0|    }
  111|       |
  112|      2|    size_t pos = 0;  /* Post-incremented in each use. */
  113|      2|#define ADD(TYPE, ACTION, MODNAME) \
  114|      2|    PyList_SET_ITEM(filters, pos++, \
  115|      2|                    create_filter(TYPE, &_Py_ID(ACTION), MODNAME));
  116|      2|    ADD(PyExc_DeprecationWarning, default, "__main__");
  ------------------
  |  |  114|      2|    PyList_SET_ITEM(filters, pos++, \
  |  |  ------------------
  |  |  |  |   50|      2|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  115|      2|                    create_filter(TYPE, &_Py_ID(ACTION), MODNAME));
  ------------------
  117|      2|    ADD(PyExc_DeprecationWarning, ignore, NULL);
  ------------------
  |  |  114|      2|    PyList_SET_ITEM(filters, pos++, \
  |  |  ------------------
  |  |  |  |   50|      2|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  115|      2|                    create_filter(TYPE, &_Py_ID(ACTION), MODNAME));
  ------------------
  118|      2|    ADD(PyExc_PendingDeprecationWarning, ignore, NULL);
  ------------------
  |  |  114|      2|    PyList_SET_ITEM(filters, pos++, \
  |  |  ------------------
  |  |  |  |   50|      2|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  115|      2|                    create_filter(TYPE, &_Py_ID(ACTION), MODNAME));
  ------------------
  119|      2|    ADD(PyExc_ImportWarning, ignore, NULL);
  ------------------
  |  |  114|      2|    PyList_SET_ITEM(filters, pos++, \
  |  |  ------------------
  |  |  |  |   50|      2|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  115|      2|                    create_filter(TYPE, &_Py_ID(ACTION), MODNAME));
  ------------------
  120|      2|    ADD(PyExc_ResourceWarning, ignore, NULL);
  ------------------
  |  |  114|      2|    PyList_SET_ITEM(filters, pos++, \
  |  |  ------------------
  |  |  |  |   50|      2|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  115|      2|                    create_filter(TYPE, &_Py_ID(ACTION), MODNAME));
  ------------------
  121|      2|#undef ADD
  122|       |
  123|     12|    for (size_t x = 0; x < pos; x++) {
  ------------------
  |  Branch (123:24): [True: 10, False: 2]
  ------------------
  124|     20|        if (PyList_GET_ITEM(filters, x) == NULL) {
  ------------------
  |  |   40|     10|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|     10|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (124:13): [True: 10, False: 0]
  |  Branch (124:13): [True: 0, False: 10]
  ------------------
  125|      0|            Py_DECREF(filters);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  126|      0|            return NULL;
  127|      0|        }
  128|     10|    }
  129|      2|    return filters;
  130|      2|#endif
  131|      2|}
_warnings.c:create_filter:
   78|     10|{
   79|     10|    PyObject *modname_obj = NULL;
   80|       |
   81|       |    /* Default to "no module name" for initial filter set */
   82|     10|    if (modname != NULL) {
  ------------------
  |  Branch (82:9): [True: 2, False: 8]
  ------------------
   83|      2|        modname_obj = PyUnicode_InternFromString(modname);
   84|      2|        if (modname_obj == NULL) {
  ------------------
  |  Branch (84:13): [True: 0, False: 2]
  ------------------
   85|      0|            return NULL;
   86|      0|        }
   87|      8|    } else {
   88|      8|        modname_obj = Py_NewRef(Py_None);
  ------------------
  |  |  550|      8|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   89|      8|    }
   90|       |
   91|       |    /* This assumes the line number is zero for now. */
   92|     10|    PyObject *filter = PyTuple_Pack(5, action_str, Py_None,
  ------------------
  |  |  616|     10|#  define Py_None (&_Py_NoneStruct)
  ------------------
   93|     10|                                    category, modname_obj, _PyLong_GetZero());
   94|     10|    Py_DECREF(modname_obj);
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   95|     10|    return filter;
   96|     10|}
_warnings.c:check_interp:
   30|      2|{
   31|      2|    if (interp == NULL) {
  ------------------
  |  Branch (31:9): [True: 0, False: 2]
  ------------------
   32|      0|        PyErr_SetString(PyExc_RuntimeError,
   33|      0|                        "warnings_get_state: could not identify "
   34|      0|                        "current interpreter");
   35|      0|        return 0;
   36|      0|    }
   37|      2|    return 1;
   38|      2|}
_warnings.c:warnings_get_state:
   61|      2|{
   62|      2|    return &interp->warnings;
   63|      2|}
_warnings.c:get_current_interp:
   42|      2|{
   43|      2|    PyInterpreterState *interp = _PyInterpreterState_GET();
   44|      2|    return check_interp(interp) ? interp : NULL;
  ------------------
  |  Branch (44:12): [True: 2, False: 0]
  ------------------
   45|      2|}
_warnings.c:warnings_module_exec:
 1604|      2|{
 1605|      2|    PyInterpreterState *interp = get_current_interp();
 1606|      2|    if (interp == NULL) {
  ------------------
  |  Branch (1606:9): [True: 0, False: 2]
  ------------------
 1607|      0|        return -1;
 1608|      0|    }
 1609|      2|    WarningsState *st = warnings_get_state(interp);
 1610|      2|    if (st == NULL) {
  ------------------
  |  Branch (1610:9): [True: 0, False: 2]
  ------------------
 1611|      0|        return -1;
 1612|      0|    }
 1613|      2|    if (PyModule_AddObjectRef(module, "filters", st->filters) < 0) {
  ------------------
  |  Branch (1613:9): [True: 0, False: 2]
  ------------------
 1614|      0|        return -1;
 1615|      0|    }
 1616|      2|    if (PyModule_AddObjectRef(module, "_onceregistry", st->once_registry) < 0) {
  ------------------
  |  Branch (1616:9): [True: 0, False: 2]
  ------------------
 1617|      0|        return -1;
 1618|      0|    }
 1619|      2|    if (PyModule_AddObjectRef(module, "_defaultaction", st->default_action) < 0) {
  ------------------
  |  Branch (1619:9): [True: 0, False: 2]
  ------------------
 1620|      0|        return -1;
 1621|      0|    }
 1622|      2|    if (PyModule_AddObjectRef(module, "_warnings_context", st->context) < 0) {
  ------------------
  |  Branch (1622:9): [True: 0, False: 2]
  ------------------
 1623|      0|        return -1;
 1624|      0|    }
 1625|      2|    return 0;
 1626|      2|}

_PyBuiltin_Init:
 3504|      2|{
 3505|      2|    PyObject *mod, *dict, *debug;
 3506|       |
 3507|      2|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
 3508|       |
 3509|      2|    mod = _PyModule_CreateInitialized(&builtinsmodule, PYTHON_API_VERSION);
  ------------------
  |  |   59|      2|#define PYTHON_API_VERSION 1013
  ------------------
 3510|      2|    if (mod == NULL)
  ------------------
  |  Branch (3510:9): [True: 0, False: 2]
  ------------------
 3511|      0|        return NULL;
 3512|       |#ifdef Py_GIL_DISABLED
 3513|       |    PyUnstable_Module_SetGIL(mod, Py_MOD_GIL_NOT_USED);
 3514|       |#endif
 3515|      2|    dict = PyModule_GetDict(mod);
 3516|       |
 3517|       |#ifdef Py_TRACE_REFS
 3518|       |    /* "builtins" exposes a number of statically allocated objects
 3519|       |     * that, before this code was added in 2.3, never showed up in
 3520|       |     * the list of "all objects" maintained by Py_TRACE_REFS.  As a
 3521|       |     * result, programs leaking references to None and False (etc)
 3522|       |     * couldn't be diagnosed by examining sys.getobjects(0).
 3523|       |     */
 3524|       |#define ADD_TO_ALL(OBJECT) _Py_AddToAllObjects((PyObject *)(OBJECT))
 3525|       |#else
 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
 3527|      2|#endif
 3528|       |
 3529|      2|#define SETBUILTIN(NAME, OBJECT) \
 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
 3531|      2|        return NULL;                                                    \
 3532|      2|    ADD_TO_ALL(OBJECT)
 3533|       |
 3534|      2|    SETBUILTIN("None",                  Py_None);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3535|      2|    SETBUILTIN("Ellipsis",              Py_Ellipsis);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3536|      2|    SETBUILTIN("NotImplemented",        Py_NotImplemented);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3537|      2|    SETBUILTIN("False",                 Py_False);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3538|      2|    SETBUILTIN("True",                  Py_True);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3539|      2|    SETBUILTIN("bool",                  &PyBool_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3540|      2|    SETBUILTIN("memoryview",            &PyMemoryView_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3541|      2|    SETBUILTIN("bytearray",             &PyByteArray_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3542|      2|    SETBUILTIN("bytes",                 &PyBytes_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3543|      2|    SETBUILTIN("classmethod",           &PyClassMethod_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3544|      2|    SETBUILTIN("complex",               &PyComplex_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3545|      2|    SETBUILTIN("dict",                  &PyDict_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3546|      2|    SETBUILTIN("enumerate",             &PyEnum_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3547|      2|    SETBUILTIN("filter",                &PyFilter_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3548|      2|    SETBUILTIN("float",                 &PyFloat_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3549|      2|    SETBUILTIN("frozendict",            &PyFrozenDict_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3550|      2|    SETBUILTIN("frozenset",             &PyFrozenSet_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3551|      2|    SETBUILTIN("property",              &PyProperty_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3552|      2|    SETBUILTIN("int",                   &PyLong_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3553|      2|    SETBUILTIN("list",                  &PyList_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3554|      2|    SETBUILTIN("map",                   &PyMap_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3555|      2|    SETBUILTIN("object",                &PyBaseObject_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3556|      2|    SETBUILTIN("range",                 &PyRange_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3557|      2|    SETBUILTIN("reversed",              &PyReversed_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3558|      2|    SETBUILTIN("sentinel",              &PySentinel_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3559|      2|    SETBUILTIN("set",                   &PySet_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3560|      2|    SETBUILTIN("slice",                 &PySlice_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3561|      2|    SETBUILTIN("staticmethod",          &PyStaticMethod_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3562|      2|    SETBUILTIN("str",                   &PyUnicode_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3563|      2|    SETBUILTIN("super",                 &PySuper_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3564|      2|    SETBUILTIN("tuple",                 &PyTuple_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3565|      2|    SETBUILTIN("type",                  &PyType_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3566|      2|    SETBUILTIN("zip",                   &PyZip_Type);
  ------------------
  |  | 3530|      2|    if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0)       \
  |  |  ------------------
  |  |  |  Branch (3530:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 3531|      2|        return NULL;                                                    \
  |  | 3532|      2|    ADD_TO_ALL(OBJECT)
  |  |  ------------------
  |  |  |  | 3526|      2|#define ADD_TO_ALL(OBJECT) (void)0
  |  |  ------------------
  ------------------
 3567|      2|    debug = PyBool_FromLong(config->optimization_level == 0);
 3568|      2|    if (PyDict_SetItemString(dict, "__debug__", debug) < 0) {
  ------------------
  |  Branch (3568:9): [True: 0, False: 2]
  ------------------
 3569|      0|        Py_DECREF(debug);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3570|      0|        return NULL;
 3571|      0|    }
 3572|      2|    Py_DECREF(debug);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3573|       |
 3574|      2|    return mod;
 3575|      2|#undef ADD_TO_ALL
 3576|      2|#undef SETBUILTIN
 3577|      2|}
bltinmodule.c:zip_dealloc:
 3230|      2|{
 3231|      2|    zipobject *lz = _zipobject_CAST(self);
  ------------------
  |  | 3159|      2|#define _zipobject_CAST(op)     ((zipobject *)(op))
  ------------------
 3232|      2|    PyObject_GC_UnTrack(lz);
 3233|      2|    Py_XDECREF(lz->ittuple);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3234|      2|    Py_XDECREF(lz->result);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3235|      2|    Py_TYPE(lz)->tp_free(lz);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3236|      2|}
bltinmodule.c:zip_new:
 3163|      2|{
 3164|      2|    zipobject *lz;
 3165|      2|    Py_ssize_t i;
 3166|      2|    PyObject *ittuple;  /* tuple of iterators */
 3167|      2|    PyObject *result;
 3168|      2|    Py_ssize_t tuplesize;
 3169|      2|    int strict = 0;
 3170|       |
 3171|      2|    if (kwds) {
  ------------------
  |  Branch (3171:9): [True: 0, False: 2]
  ------------------
 3172|      0|        PyObject *empty = PyTuple_New(0);
 3173|      0|        if (empty == NULL) {
  ------------------
  |  Branch (3173:13): [True: 0, False: 0]
  ------------------
 3174|      0|            return NULL;
 3175|      0|        }
 3176|      0|        static char *kwlist[] = {"strict", NULL};
 3177|      0|        int parsed = PyArg_ParseTupleAndKeywords(
 3178|      0|                empty, kwds, "|$p:zip", kwlist, &strict);
 3179|      0|        Py_DECREF(empty);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3180|      0|        if (!parsed) {
  ------------------
  |  Branch (3180:13): [True: 0, False: 0]
  ------------------
 3181|      0|            return NULL;
 3182|      0|        }
 3183|      0|    }
 3184|       |
 3185|       |    /* args must be a tuple */
 3186|      2|    assert(PyTuple_Check(args));
  ------------------
  |  Branch (3186:5): [True: 2, False: 0]
  ------------------
 3187|      2|    tuplesize = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3188|       |
 3189|       |    /* obtain iterators */
 3190|      2|    ittuple = PyTuple_New(tuplesize);
 3191|      2|    if (ittuple == NULL)
  ------------------
  |  Branch (3191:9): [True: 0, False: 2]
  ------------------
 3192|      0|        return NULL;
 3193|      2|    for (i=0; i < tuplesize; ++i) {
  ------------------
  |  Branch (3193:15): [True: 0, False: 2]
  ------------------
 3194|      0|        PyObject *item = PyTuple_GET_ITEM(args, i);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3194:26): [True: 0, False: 0]
  ------------------
 3195|      0|        PyObject *it = PyObject_GetIter(item);
 3196|      0|        if (it == NULL) {
  ------------------
  |  Branch (3196:13): [True: 0, False: 0]
  ------------------
 3197|      0|            Py_DECREF(ittuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3198|      0|            return NULL;
 3199|      0|        }
 3200|      0|        PyTuple_SET_ITEM(ittuple, i, it);
  ------------------
  |  |   40|      0|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3201|      0|    }
 3202|       |
 3203|       |    /* create a result holder */
 3204|      2|    result = PyTuple_New(tuplesize);
 3205|      2|    if (result == NULL) {
  ------------------
  |  Branch (3205:9): [True: 0, False: 2]
  ------------------
 3206|      0|        Py_DECREF(ittuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3207|      0|        return NULL;
 3208|      0|    }
 3209|      2|    for (i=0 ; i < tuplesize ; i++) {
  ------------------
  |  Branch (3209:16): [True: 0, False: 2]
  ------------------
 3210|      0|        PyTuple_SET_ITEM(result, i, Py_NewRef(Py_None));
  ------------------
  |  |   40|      0|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3211|      0|    }
 3212|       |
 3213|       |    /* create zipobject structure */
 3214|      2|    lz = (zipobject *)type->tp_alloc(type, 0);
 3215|      2|    if (lz == NULL) {
  ------------------
  |  Branch (3215:9): [True: 0, False: 2]
  ------------------
 3216|      0|        Py_DECREF(ittuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3217|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3218|      0|        return NULL;
 3219|      0|    }
 3220|      2|    lz->ittuple = ittuple;
 3221|      2|    lz->tuplesize = tuplesize;
 3222|      2|    lz->result = result;
 3223|      2|    lz->strict = strict;
 3224|       |
 3225|      2|    return (PyObject *)lz;
 3226|      2|}
bltinmodule.c:builtin___build_class__:
  104|    168|{
  105|    168|    PyObject *func, *name, *winner, *prep;
  106|    168|    PyObject *cls = NULL, *cell = NULL, *ns = NULL, *meta = NULL, *orig_bases = NULL;
  107|    168|    PyObject *mkw = NULL, *bases = NULL;
  108|    168|    int isclass = 0;   /* initialize to prevent gcc warning */
  109|       |
  110|    168|    if (nargs < 2) {
  ------------------
  |  Branch (110:9): [True: 0, False: 168]
  ------------------
  111|      0|        PyErr_SetString(PyExc_TypeError,
  112|      0|                        "__build_class__: not enough arguments");
  113|      0|        return NULL;
  114|      0|    }
  115|    168|    func = args[0];   /* Better be callable */
  116|    168|    if (!PyFunction_Check(func)) {
  ------------------
  |  |   68|    168|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|    168|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (116:9): [True: 0, False: 168]
  ------------------
  117|      0|        PyErr_SetString(PyExc_TypeError,
  118|      0|                        "__build_class__: func must be a function");
  119|      0|        return NULL;
  120|      0|    }
  121|    168|    name = args[1];
  122|    168|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|    168|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    168|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (122:9): [True: 0, False: 168]
  ------------------
  123|      0|        PyErr_SetString(PyExc_TypeError,
  124|      0|                        "__build_class__: name is not a string");
  125|      0|        return NULL;
  126|      0|    }
  127|    168|    orig_bases = PyTuple_FromArray(args + 2, nargs - 2);
  128|    168|    if (orig_bases == NULL)
  ------------------
  |  Branch (128:9): [True: 0, False: 168]
  ------------------
  129|      0|        return NULL;
  130|       |
  131|    168|    bases = update_bases(orig_bases, args + 2, nargs - 2);
  132|    168|    if (bases == NULL) {
  ------------------
  |  Branch (132:9): [True: 0, False: 168]
  ------------------
  133|      0|        Py_DECREF(orig_bases);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  134|      0|        return NULL;
  135|      0|    }
  136|       |
  137|    168|    if (kwnames == NULL) {
  ------------------
  |  Branch (137:9): [True: 148, False: 20]
  ------------------
  138|    148|        meta = NULL;
  139|    148|        mkw = NULL;
  140|    148|    }
  141|     20|    else {
  142|     20|        mkw = _PyStack_AsDict(args + nargs, kwnames);
  143|     20|        if (mkw == NULL) {
  ------------------
  |  Branch (143:13): [True: 0, False: 20]
  ------------------
  144|      0|            goto error;
  145|      0|        }
  146|       |
  147|     20|        if (PyDict_Pop(mkw, &_Py_ID(metaclass), &meta) < 0) {
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (147:13): [True: 0, False: 20]
  ------------------
  148|      0|            goto error;
  149|      0|        }
  150|     20|        if (meta != NULL) {
  ------------------
  |  Branch (150:13): [True: 20, False: 0]
  ------------------
  151|       |            /* metaclass is explicitly given, check if it's indeed a class */
  152|     20|            isclass = PyType_Check(meta);
  ------------------
  |  |  766|     20|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  153|     20|        }
  154|     20|    }
  155|    168|    if (meta == NULL) {
  ------------------
  |  Branch (155:9): [True: 148, False: 20]
  ------------------
  156|       |        /* if there are no bases, use type: */
  157|    148|        if (PyTuple_GET_SIZE(bases) == 0) {
  ------------------
  |  |   27|    148|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (157:13): [True: 48, False: 100]
  ------------------
  158|     48|            meta = (PyObject *) (&PyType_Type);
  159|     48|        }
  160|       |        /* else get the type of the first base */
  161|    100|        else {
  162|    100|            PyObject *base0 = PyTuple_GET_ITEM(bases, 0);
  ------------------
  |  |   29|    100|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    100|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    100|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (162:31): [True: 100, False: 0]
  ------------------
  163|    100|            meta = (PyObject *)Py_TYPE(base0);
  ------------------
  |  |  213|    100|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    100|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    100|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  164|    100|        }
  165|    148|        Py_INCREF(meta);
  ------------------
  |  |  310|    148|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  166|    148|        isclass = 1;  /* meta is really a class */
  167|    148|    }
  168|       |
  169|    168|    if (isclass) {
  ------------------
  |  Branch (169:9): [True: 168, False: 0]
  ------------------
  170|       |        /* meta is really a class, so check for a more derived
  171|       |           metaclass, or possible metaclass conflicts: */
  172|    168|        winner = (PyObject *)_PyType_CalculateMetaclass((PyTypeObject *)meta,
  173|    168|                                                        bases);
  174|    168|        if (winner == NULL) {
  ------------------
  |  Branch (174:13): [True: 0, False: 168]
  ------------------
  175|      0|            goto error;
  176|      0|        }
  177|    168|        if (winner != meta) {
  ------------------
  |  Branch (177:13): [True: 0, False: 168]
  ------------------
  178|      0|            Py_SETREF(meta, Py_NewRef(winner));
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  179|      0|        }
  180|    168|    }
  181|       |    /* else: meta is not a class, so we cannot do the metaclass
  182|       |       calculation, so we will use the explicitly given object as it is */
  183|    168|    if (PyObject_GetOptionalAttr(meta, &_Py_ID(__prepare__), &prep) < 0) {
  ------------------
  |  |  917|    168|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    168|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    168|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (183:9): [True: 0, False: 168]
  ------------------
  184|      0|        ns = NULL;
  185|      0|    }
  186|    168|    else if (prep == NULL) {
  ------------------
  |  Branch (186:14): [True: 0, False: 168]
  ------------------
  187|      0|        ns = PyDict_New();
  188|      0|    }
  189|    168|    else {
  190|    168|        PyObject *pargs[2] = {name, bases};
  191|    168|        ns = PyObject_VectorcallDict(prep, pargs, 2, mkw);
  192|    168|        Py_DECREF(prep);
  ------------------
  |  |  430|    168|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  193|    168|    }
  194|    168|    if (ns == NULL) {
  ------------------
  |  Branch (194:9): [True: 0, False: 168]
  ------------------
  195|      0|        goto error;
  196|      0|    }
  197|    168|    if (!PyMapping_Check(ns)) {
  ------------------
  |  Branch (197:9): [True: 0, False: 168]
  ------------------
  198|      0|        PyErr_Format(PyExc_TypeError,
  199|      0|                     "%.200s.__prepare__() must return a mapping, not %.200s",
  200|      0|                     isclass ? ((PyTypeObject *)meta)->tp_name : "<metaclass>",
  ------------------
  |  Branch (200:22): [True: 0, False: 0]
  ------------------
  201|      0|                     Py_TYPE(ns)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  202|      0|        goto error;
  203|      0|    }
  204|    168|    PyThreadState *tstate = _PyThreadState_GET();
  205|    168|    EVAL_CALL_STAT_INC(EVAL_CALL_BUILD_CLASS);
  ------------------
  |  |   79|    168|#define EVAL_CALL_STAT_INC(name) ((void)0)
  ------------------
  206|    168|    cell = _PyEval_Vector(tstate, (PyFunctionObject *)func, ns, NULL, 0, NULL);
  207|    168|    if (cell != NULL) {
  ------------------
  |  Branch (207:9): [True: 168, False: 0]
  ------------------
  208|    168|        if (bases != orig_bases) {
  ------------------
  |  Branch (208:13): [True: 0, False: 168]
  ------------------
  209|      0|            if (PyMapping_SetItemString(ns, "__orig_bases__", orig_bases) < 0) {
  ------------------
  |  Branch (209:17): [True: 0, False: 0]
  ------------------
  210|      0|                goto error;
  211|      0|            }
  212|      0|        }
  213|    168|        PyObject *margs[3] = {name, bases, ns};
  214|    168|        cls = PyObject_VectorcallDict(meta, margs, 3, mkw);
  215|    168|        if (cls != NULL && PyType_Check(cls) && PyCell_Check(cell)) {
  ------------------
  |  |  766|    336|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 168, False: 0]
  |  |  ------------------
  ------------------
                      if (cls != NULL && PyType_Check(cls) && PyCell_Check(cell)) {
  ------------------
  |  |   18|    168|#define PyCell_Check(op) Py_IS_TYPE((op), &PyCell_Type)
  |  |  ------------------
  |  |  |  |  215|    168|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 12, False: 156]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (215:13): [True: 168, False: 0]
  ------------------
  216|     12|            PyObject *cell_cls = PyCell_GetRef((PyCellObject *)cell);
  217|     12|            if (cell_cls != cls) {
  ------------------
  |  Branch (217:17): [True: 0, False: 12]
  ------------------
  218|      0|                if (cell_cls == NULL) {
  ------------------
  |  Branch (218:21): [True: 0, False: 0]
  ------------------
  219|      0|                    const char *msg =
  220|      0|                        "__class__ not set defining %.200R as %.200R. "
  221|      0|                        "Was __classcell__ propagated to type.__new__?";
  222|      0|                    PyErr_Format(PyExc_RuntimeError, msg, name, cls);
  223|      0|                } else {
  224|      0|                    const char *msg =
  225|      0|                        "__class__ set to %.200R defining %.200R as %.200R";
  226|      0|                    PyErr_Format(PyExc_TypeError, msg, cell_cls, name, cls);
  227|      0|                }
  228|      0|                Py_XDECREF(cell_cls);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  229|      0|                Py_SETREF(cls, NULL);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  230|      0|                goto error;
  231|      0|            }
  232|     12|            else {
  233|     12|                Py_DECREF(cell_cls);
  ------------------
  |  |  430|     12|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  234|     12|            }
  235|     12|        }
  236|    168|    }
  237|    168|error:
  238|    168|    Py_XDECREF(cell);
  ------------------
  |  |  524|    168|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  239|    168|    Py_XDECREF(ns);
  ------------------
  |  |  524|    168|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  240|    168|    Py_XDECREF(meta);
  ------------------
  |  |  524|    168|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  241|    168|    Py_XDECREF(mkw);
  ------------------
  |  |  524|    168|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  242|    168|    if (bases != orig_bases) {
  ------------------
  |  Branch (242:9): [True: 0, False: 168]
  ------------------
  243|      0|        Py_DECREF(orig_bases);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  244|      0|    }
  245|    168|    Py_DECREF(bases);
  ------------------
  |  |  430|    168|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  246|    168|    return cls;
  247|    168|}
bltinmodule.c:update_bases:
   30|    168|{
   31|    168|    Py_ssize_t i, j;
   32|    168|    PyObject *base, *meth, *new_base, *result, *new_bases = NULL;
   33|    168|    assert(PyTuple_Check(bases));
  ------------------
  |  Branch (33:5): [True: 168, False: 0]
  ------------------
   34|       |
   35|    290|    for (i = 0; i < nargs; i++) {
  ------------------
  |  Branch (35:17): [True: 122, False: 168]
  ------------------
   36|    122|        base  = args[i];
   37|    122|        if (PyType_Check(base)) {
  ------------------
  |  |  766|    122|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 122, False: 0]
  |  |  ------------------
  ------------------
   38|    122|            if (new_bases) {
  ------------------
  |  Branch (38:17): [True: 0, False: 122]
  ------------------
   39|       |                /* If we already have made a replacement, then we append every normal base,
   40|       |                   otherwise just skip it. */
   41|      0|                if (PyList_Append(new_bases, base) < 0) {
  ------------------
  |  Branch (41:21): [True: 0, False: 0]
  ------------------
   42|      0|                    goto error;
   43|      0|                }
   44|      0|            }
   45|    122|            continue;
   46|    122|        }
   47|      0|        if (PyObject_GetOptionalAttr(base, &_Py_ID(__mro_entries__), &meth) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (47:13): [True: 0, False: 0]
  ------------------
   48|      0|            goto error;
   49|      0|        }
   50|      0|        if (!meth) {
  ------------------
  |  Branch (50:13): [True: 0, False: 0]
  ------------------
   51|      0|            if (new_bases) {
  ------------------
  |  Branch (51:17): [True: 0, False: 0]
  ------------------
   52|      0|                if (PyList_Append(new_bases, base) < 0) {
  ------------------
  |  Branch (52:21): [True: 0, False: 0]
  ------------------
   53|      0|                    goto error;
   54|      0|                }
   55|      0|            }
   56|      0|            continue;
   57|      0|        }
   58|      0|        new_base = PyObject_CallOneArg(meth, bases);
   59|      0|        Py_DECREF(meth);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   60|      0|        if (!new_base) {
  ------------------
  |  Branch (60:13): [True: 0, False: 0]
  ------------------
   61|      0|            goto error;
   62|      0|        }
   63|      0|        if (!PyTuple_Check(new_base)) {
  ------------------
  |  |   27|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (63:13): [True: 0, False: 0]
  ------------------
   64|      0|            PyErr_SetString(PyExc_TypeError,
   65|      0|                            "__mro_entries__ must return a tuple");
   66|      0|            Py_DECREF(new_base);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   67|      0|            goto error;
   68|      0|        }
   69|      0|        if (!new_bases) {
  ------------------
  |  Branch (69:13): [True: 0, False: 0]
  ------------------
   70|       |            /* If this is a first successful replacement, create new_bases list and
   71|       |               copy previously encountered bases. */
   72|      0|            if (!(new_bases = PyList_New(i))) {
  ------------------
  |  Branch (72:17): [True: 0, False: 0]
  ------------------
   73|      0|                Py_DECREF(new_base);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   74|      0|                goto error;
   75|      0|            }
   76|      0|            for (j = 0; j < i; j++) {
  ------------------
  |  Branch (76:25): [True: 0, False: 0]
  ------------------
   77|      0|                base = args[j];
   78|      0|                PyList_SET_ITEM(new_bases, j, Py_NewRef(base));
  ------------------
  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   79|      0|            }
   80|      0|        }
   81|      0|        j = PyList_GET_SIZE(new_bases);
  ------------------
  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|      0|        if (PyList_SetSlice(new_bases, j, j, new_base) < 0) {
  ------------------
  |  Branch (82:13): [True: 0, False: 0]
  ------------------
   83|      0|            Py_DECREF(new_base);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   84|      0|            goto error;
   85|      0|        }
   86|      0|        Py_DECREF(new_base);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   87|      0|    }
   88|    168|    if (!new_bases) {
  ------------------
  |  Branch (88:9): [True: 168, False: 0]
  ------------------
   89|    168|        return bases;
   90|    168|    }
   91|      0|    result = PyList_AsTuple(new_bases);
   92|      0|    Py_DECREF(new_bases);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   93|      0|    return result;
   94|       |
   95|      0|error:
   96|      0|    Py_XDECREF(new_bases);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   97|       |    return NULL;
   98|    168|}
bltinmodule.c:builtin___import___impl:
  285|     20|{
  286|     20|    return PyImport_ImportModuleLevelObject(name, globals, locals,
  287|     20|                                            fromlist, level);
  288|     20|}
bltinmodule.c:builtin_dir:
  973|      2|{
  974|      2|    PyObject *arg = NULL;
  975|       |
  976|      2|    if (!PyArg_UnpackTuple(args, "dir", 0, 1, &arg))
  ------------------
  |  Branch (976:9): [True: 0, False: 2]
  ------------------
  977|      0|        return NULL;
  978|      2|    return PyObject_Dir(arg);
  979|      2|}
bltinmodule.c:builtin_exec_impl:
 1160|     28|{
 1161|     28|    PyThreadState *tstate = _PyThreadState_GET();
 1162|     28|    PyObject *v;
 1163|       |
 1164|     28|    int fromframe = 0;
 1165|     28|    if (globals != Py_None) {
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1165:9): [True: 28, False: 0]
  ------------------
 1166|     28|        Py_INCREF(globals);
  ------------------
  |  |  310|     28|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1167|     28|    }
 1168|      0|    else if (_PyEval_GetFrame() != NULL) {
  ------------------
  |  Branch (1168:14): [True: 0, False: 0]
  ------------------
 1169|      0|        fromframe = 1;
 1170|      0|        globals = PyEval_GetGlobals();
 1171|      0|        assert(globals != NULL);
  ------------------
  |  Branch (1171:9): [True: 0, False: 0]
  ------------------
 1172|      0|        Py_INCREF(globals);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1173|      0|    }
 1174|      0|    else {
 1175|      0|        globals = _PyEval_GetGlobalsFromRunningMain(tstate);
 1176|      0|        if (globals == NULL) {
  ------------------
  |  Branch (1176:13): [True: 0, False: 0]
  ------------------
 1177|      0|            if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (1177:17): [True: 0, False: 0]
  ------------------
 1178|      0|                PyErr_SetString(PyExc_SystemError,
 1179|      0|                                "globals and locals cannot be NULL");
 1180|      0|            }
 1181|      0|            goto error;
 1182|      0|        }
 1183|      0|        Py_INCREF(globals);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1184|      0|    }
 1185|       |
 1186|     28|    if (locals != Py_None) {
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1186:9): [True: 0, False: 28]
  ------------------
 1187|      0|        Py_INCREF(locals);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1188|      0|    }
 1189|     28|    else if (fromframe) {
  ------------------
  |  Branch (1189:14): [True: 0, False: 28]
  ------------------
 1190|      0|        locals = _PyEval_GetFrameLocals();
 1191|      0|        if (locals == NULL) {
  ------------------
  |  Branch (1191:13): [True: 0, False: 0]
  ------------------
 1192|      0|            assert(PyErr_Occurred());
  ------------------
  |  Branch (1192:13): [True: 0, False: 0]
  ------------------
 1193|      0|            Py_DECREF(globals);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1194|      0|            return NULL;
 1195|      0|        }
 1196|      0|    }
 1197|     28|    else {
 1198|     28|        locals = Py_NewRef(globals);
  ------------------
  |  |  550|     28|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1199|     28|    }
 1200|       |
 1201|     28|    if (!PyAnyDict_Check(globals)) {
  ------------------
  |  |   43|     28|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|     28|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|     56|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 28, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1202|      0|        PyErr_Format(PyExc_TypeError,
 1203|      0|                     "exec() globals must be a dict or a frozendict, not %T",
 1204|      0|                     globals);
 1205|      0|        goto error;
 1206|      0|    }
 1207|     28|    if (!PyMapping_Check(locals)) {
  ------------------
  |  Branch (1207:9): [True: 0, False: 28]
  ------------------
 1208|      0|        PyErr_Format(PyExc_TypeError,
 1209|      0|            "locals must be a mapping or None, not %.100s",
 1210|      0|            Py_TYPE(locals)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1211|      0|        goto error;
 1212|      0|    }
 1213|       |
 1214|     28|    if (_PyEval_EnsureBuiltins(tstate, globals, NULL) < 0) {
  ------------------
  |  Branch (1214:9): [True: 0, False: 28]
  ------------------
 1215|      0|        goto error;
 1216|      0|    }
 1217|       |
 1218|     28|    if (closure == Py_None) {
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1218:9): [True: 0, False: 28]
  ------------------
 1219|      0|        closure = NULL;
 1220|      0|    }
 1221|       |
 1222|     28|    if (PyCode_Check(source)) {
  ------------------
  |  |  164|     28|#define PyCode_Check(op) Py_IS_TYPE((op), &PyCode_Type)
  |  |  ------------------
  |  |  |  |  215|     28|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 28, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1223|     28|        Py_ssize_t num_free = PyCode_GetNumFree((PyCodeObject *)source);
 1224|     28|        if (num_free == 0) {
  ------------------
  |  Branch (1224:13): [True: 28, False: 0]
  ------------------
 1225|     28|            if (closure) {
  ------------------
  |  Branch (1225:17): [True: 0, False: 28]
  ------------------
 1226|      0|                PyErr_SetString(PyExc_TypeError,
 1227|      0|                    "cannot use a closure with this code object");
 1228|      0|                goto error;
 1229|      0|            }
 1230|     28|        } else {
 1231|      0|            int closure_is_ok =
 1232|      0|                closure
  ------------------
  |  Branch (1232:17): [True: 0, False: 0]
  ------------------
 1233|      0|                && PyTuple_CheckExact(closure)
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1234|      0|                && (PyTuple_GET_SIZE(closure) == num_free);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1234:20): [True: 0, False: 0]
  ------------------
 1235|      0|            if (closure_is_ok) {
  ------------------
  |  Branch (1235:17): [True: 0, False: 0]
  ------------------
 1236|      0|                for (Py_ssize_t i = 0; i < num_free; i++) {
  ------------------
  |  Branch (1236:40): [True: 0, False: 0]
  ------------------
 1237|      0|                    PyObject *cell = PyTuple_GET_ITEM(closure, i);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1237:38): [True: 0, False: 0]
  ------------------
 1238|      0|                    if (!PyCell_Check(cell)) {
  ------------------
  |  |   18|      0|#define PyCell_Check(op) Py_IS_TYPE((op), &PyCell_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1238:25): [True: 0, False: 0]
  ------------------
 1239|      0|                        closure_is_ok = 0;
 1240|      0|                        break;
 1241|      0|                    }
 1242|      0|                }
 1243|      0|            }
 1244|      0|            if (!closure_is_ok) {
  ------------------
  |  Branch (1244:17): [True: 0, False: 0]
  ------------------
 1245|      0|                PyErr_Format(PyExc_TypeError,
 1246|      0|                    "code object requires a closure of exactly length %zd",
 1247|      0|                    num_free);
 1248|      0|                goto error;
 1249|      0|            }
 1250|      0|        }
 1251|       |
 1252|     28|        if (PySys_Audit("exec", "O", source) < 0) {
  ------------------
  |  Branch (1252:13): [True: 0, False: 28]
  ------------------
 1253|      0|            goto error;
 1254|      0|        }
 1255|       |
 1256|     28|        if (!closure) {
  ------------------
  |  Branch (1256:13): [True: 28, False: 0]
  ------------------
 1257|     28|            v = PyEval_EvalCode(source, globals, locals);
 1258|     28|        } else {
 1259|      0|            v = PyEval_EvalCodeEx(source, globals, locals,
 1260|      0|                NULL, 0,
 1261|      0|                NULL, 0,
 1262|      0|                NULL, 0,
 1263|      0|                NULL,
 1264|      0|                closure);
 1265|      0|        }
 1266|     28|    }
 1267|      0|    else {
 1268|      0|        if (closure != NULL) {
  ------------------
  |  Branch (1268:13): [True: 0, False: 0]
  ------------------
 1269|      0|            PyErr_SetString(PyExc_TypeError,
 1270|      0|                "closure can only be used when source is a code object");
 1271|      0|            goto error;
 1272|      0|        }
 1273|      0|        PyObject *source_copy;
 1274|      0|        const char *str;
 1275|      0|        PyCompilerFlags cf = _PyCompilerFlags_INIT;
  ------------------
  |  |   33|      0|    (PyCompilerFlags){.cf_flags = 0, .cf_feature_version = PY_MINOR_VERSION}
  |  |  ------------------
  |  |  |  |   24|      0|#define PY_MINOR_VERSION        16
  |  |  ------------------
  ------------------
 1276|      0|        cf.cf_flags = PyCF_SOURCE_IS_UTF8;
  ------------------
  |  |   15|      0|#define PyCF_SOURCE_IS_UTF8  0x0100
  ------------------
 1277|      0|        str = _Py_SourceAsString(source, "exec",
 1278|      0|                                       "string, bytes or code", &cf,
 1279|      0|                                       &source_copy);
 1280|      0|        if (str == NULL)
  ------------------
  |  Branch (1280:13): [True: 0, False: 0]
  ------------------
 1281|      0|            goto error;
 1282|      0|        if (PyEval_MergeCompilerFlags(&cf))
  ------------------
  |  Branch (1282:13): [True: 0, False: 0]
  ------------------
 1283|      0|            v = PyRun_StringFlags(str, Py_file_input, globals,
  ------------------
  |  |    9|      0|#define Py_file_input 257
  ------------------
 1284|      0|                                  locals, &cf);
 1285|      0|        else
 1286|      0|            v = PyRun_String(str, Py_file_input, globals, locals);
  ------------------
  |  |   76|      0|#define PyRun_String(str, s, g, l) PyRun_StringFlags((str), (s), (g), (l), NULL)
  ------------------
 1287|      0|        Py_XDECREF(source_copy);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1288|      0|    }
 1289|     28|    if (v == NULL)
  ------------------
  |  Branch (1289:9): [True: 0, False: 28]
  ------------------
 1290|      0|        goto error;
 1291|     28|    Py_DECREF(globals);
  ------------------
  |  |  430|     28|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1292|     28|    Py_DECREF(locals);
  ------------------
  |  |  430|     28|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1293|     28|    Py_DECREF(v);
  ------------------
  |  |  430|     28|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1294|     28|    Py_RETURN_NONE;
  ------------------
  |  |  628|     28|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1295|       |
 1296|      0|  error:
 1297|      0|    Py_XDECREF(globals);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1298|      0|    Py_XDECREF(locals);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1299|       |    return NULL;
 1300|     28|}
bltinmodule.c:builtin_getattr:
 1306|    500|{
 1307|    500|    PyObject *v, *name, *result;
 1308|       |
 1309|    500|    if (!_PyArg_CheckPositional("getattr", nargs, 2, 3))
  ------------------
  |  |   31|    500|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 500, False: 0]
  |  |  |  Branch (31:27): [True: 500, False: 0]
  |  |  ------------------
  |  |   32|    500|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1310|      0|        return NULL;
 1311|       |
 1312|    500|    v = args[0];
 1313|    500|    name = args[1];
 1314|    500|    if (nargs > 2) {
  ------------------
  |  Branch (1314:9): [True: 428, False: 72]
  ------------------
 1315|    428|        if (PyObject_GetOptionalAttr(v, name, &result) == 0) {
  ------------------
  |  Branch (1315:13): [True: 60, False: 368]
  ------------------
 1316|     60|            PyObject *dflt = args[2];
 1317|     60|            return Py_NewRef(dflt);
  ------------------
  |  |  550|     60|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1318|     60|        }
 1319|    428|    }
 1320|     72|    else {
 1321|     72|        result = PyObject_GetAttr(v, name);
 1322|     72|    }
 1323|    440|    return result;
 1324|    500|}
bltinmodule.c:builtin_globals_impl:
 1346|     36|{
 1347|     36|    PyObject *globals;
 1348|     36|    if (_PyEval_GetFrame() != NULL) {
  ------------------
  |  Branch (1348:9): [True: 36, False: 0]
  ------------------
 1349|     36|        globals = PyEval_GetGlobals();
 1350|     36|        assert(globals != NULL);
  ------------------
  |  Branch (1350:9): [True: 36, False: 0]
  ------------------
 1351|     36|        return Py_NewRef(globals);
  ------------------
  |  |  550|     36|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1352|     36|    }
 1353|      0|    PyThreadState *tstate = _PyThreadState_GET();
 1354|      0|    globals = _PyEval_GetGlobalsFromRunningMain(tstate);
 1355|      0|    if (globals == NULL) {
  ------------------
  |  Branch (1355:9): [True: 0, False: 0]
  ------------------
 1356|      0|        if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (1356:13): [True: 0, False: 0]
  ------------------
 1357|      0|            return NULL;
 1358|      0|        }
 1359|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1360|      0|    }
 1361|      0|    return Py_NewRef(globals);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1362|      0|}
bltinmodule.c:builtin_hasattr_impl:
 1380|    164|{
 1381|    164|    PyObject *v;
 1382|       |
 1383|    164|    if (PyObject_GetOptionalAttr(obj, name, &v) < 0) {
  ------------------
  |  Branch (1383:9): [True: 0, False: 164]
  ------------------
 1384|      0|        return NULL;
 1385|      0|    }
 1386|    164|    if (v == NULL) {
  ------------------
  |  Branch (1386:9): [True: 6, False: 158]
  ------------------
 1387|      6|        Py_RETURN_FALSE;
  ------------------
  |  |   45|      6|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      6|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1388|      6|    }
 1389|    158|    Py_DECREF(v);
  ------------------
  |  |  430|    158|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    158|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    158|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1390|    158|    Py_RETURN_TRUE;
  ------------------
  |  |   44|    158|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|    158|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    158|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    158|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1391|    164|}
bltinmodule.c:builtin_isinstance_impl:
 3114|     22|{
 3115|     22|    int retval;
 3116|       |
 3117|     22|    retval = PyObject_IsInstance(obj, class_or_tuple);
 3118|     22|    if (retval < 0)
  ------------------
  |  Branch (3118:9): [True: 0, False: 22]
  ------------------
 3119|      0|        return NULL;
 3120|     22|    return PyBool_FromLong(retval);
 3121|     22|}
bltinmodule.c:builtin_iter:
 1887|     26|{
 1888|     26|    PyObject *v;
 1889|       |
 1890|     26|    if (!_PyArg_CheckPositional("iter", nargs, 1, 2))
  ------------------
  |  |   31|     26|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 26, False: 0]
  |  |  |  Branch (31:27): [True: 26, False: 0]
  |  |  ------------------
  |  |   32|     26|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1891|      0|        return NULL;
 1892|     26|    v = args[0];
 1893|     26|    if (nargs == 1)
  ------------------
  |  Branch (1893:9): [True: 26, False: 0]
  ------------------
 1894|     26|        return PyObject_GetIter(v);
 1895|      0|    if (!PyCallable_Check(v)) {
  ------------------
  |  Branch (1895:9): [True: 0, False: 0]
  ------------------
 1896|      0|        PyErr_SetString(PyExc_TypeError,
 1897|      0|                        "iter(v, w): v must be callable");
 1898|      0|        return NULL;
 1899|      0|    }
 1900|      0|    PyObject *sentinel = args[1];
 1901|      0|    return PyCallIter_New(v, sentinel);
 1902|      0|}
bltinmodule.c:builtin_len:
 1987|     14|{
 1988|     14|    Py_ssize_t res;
 1989|       |
 1990|     14|    res = PyObject_Size(obj);
 1991|     14|    if (res < 0) {
  ------------------
  |  Branch (1991:9): [True: 0, False: 14]
  ------------------
 1992|      0|        assert(PyErr_Occurred());
  ------------------
  |  Branch (1992:9): [True: 0, False: 0]
  ------------------
 1993|      0|        return NULL;
 1994|      0|    }
 1995|     14|    return PyLong_FromSsize_t(res);
 1996|     14|}
bltinmodule.c:builtin_max:
 2169|      2|{
 2170|      2|    return min_max(args, nargs, kwnames, Py_GT);
  ------------------
  |  |  656|      2|#define Py_GT 4
  ------------------
 2171|      2|}
bltinmodule.c:min_max:
 2033|      2|{
 2034|      2|    PyObject *it = NULL, *item, *val, *maxitem, *maxval, *keyfunc=NULL;
 2035|      2|    PyObject *defaultval = NULL;
 2036|      2|    static const char * const keywords[] = {"key", "default", NULL};
 2037|      2|    static _PyArg_Parser _parser_min = {"|$OO:min", keywords, 0};
 2038|      2|    static _PyArg_Parser _parser_max = {"|$OO:max", keywords, 0};
 2039|      2|    const char *name = (op == Py_LT) ? "min" : "max";
  ------------------
  |  |  652|      2|#define Py_LT 0
  ------------------
  |  Branch (2039:24): [True: 0, False: 2]
  ------------------
 2040|      2|    _PyArg_Parser *_parser = (op == Py_LT) ? &_parser_min : &_parser_max;
  ------------------
  |  |  652|      2|#define Py_LT 0
  ------------------
  |  Branch (2040:30): [True: 0, False: 2]
  ------------------
 2041|       |
 2042|      2|    if (nargs == 0) {
  ------------------
  |  Branch (2042:9): [True: 0, False: 2]
  ------------------
 2043|      0|        PyErr_Format(PyExc_TypeError, "%s expected at least 1 argument, got 0", name);
 2044|      0|        return NULL;
 2045|      0|    }
 2046|       |
 2047|      2|    if (kwnames != NULL && !_PyArg_ParseStackAndKeywords(args + nargs, 0, kwnames, _parser,
  ------------------
  |  Branch (2047:9): [True: 0, False: 2]
  |  Branch (2047:28): [True: 0, False: 0]
  ------------------
 2048|      0|                                                         &keyfunc, &defaultval)) {
 2049|      0|        return NULL;
 2050|      0|    }
 2051|       |
 2052|      2|    const int positional = nargs > 1; // False iff nargs == 1
 2053|      2|    if (positional && defaultval != NULL) {
  ------------------
  |  Branch (2053:9): [True: 0, False: 2]
  |  Branch (2053:23): [True: 0, False: 0]
  ------------------
 2054|      0|        PyErr_Format(PyExc_TypeError,
 2055|      0|                        "Cannot specify a default for %s() with multiple "
 2056|      0|                        "positional arguments", name);
 2057|      0|        return NULL;
 2058|      0|    }
 2059|       |
 2060|      2|    if (!positional) {
  ------------------
  |  Branch (2060:9): [True: 2, False: 0]
  ------------------
 2061|      2|        it = PyObject_GetIter(args[0]);
 2062|      2|        if (it == NULL) {
  ------------------
  |  Branch (2062:13): [True: 0, False: 2]
  ------------------
 2063|      0|            return NULL;
 2064|      0|        }
 2065|      2|    }
 2066|       |
 2067|      2|    if (keyfunc == Py_None) {
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (2067:9): [True: 0, False: 2]
  ------------------
 2068|      0|        keyfunc = NULL;
 2069|      0|    }
 2070|       |
 2071|      2|    maxitem = NULL; /* the result */
 2072|      2|    maxval = NULL;  /* the value associated with the result */
 2073|      4|    while (1) {
  ------------------
  |  Branch (2073:12): [True: 4, Folded]
  ------------------
 2074|      4|        if (it == NULL) {
  ------------------
  |  Branch (2074:13): [True: 0, False: 4]
  ------------------
 2075|      0|            if (nargs-- <= 0) {
  ------------------
  |  Branch (2075:17): [True: 0, False: 0]
  ------------------
 2076|      0|                break;
 2077|      0|            }
 2078|      0|            item = *args++;
 2079|      0|            Py_INCREF(item);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2080|      0|        }
 2081|      4|        else {
 2082|      4|            item = PyIter_Next(it);
 2083|      4|            if (item == NULL) {
  ------------------
  |  Branch (2083:17): [True: 2, False: 2]
  ------------------
 2084|      2|                if (PyErr_Occurred()) {
  ------------------
  |  Branch (2084:21): [True: 0, False: 2]
  ------------------
 2085|      0|                    goto Fail_it;
 2086|      0|                }
 2087|      2|                break;
 2088|      2|            }
 2089|      4|        }
 2090|       |
 2091|       |        /* get the value from the key function */
 2092|      2|        if (keyfunc != NULL) {
  ------------------
  |  Branch (2092:13): [True: 0, False: 2]
  ------------------
 2093|      0|            val = PyObject_CallOneArg(keyfunc, item);
 2094|      0|            if (val == NULL)
  ------------------
  |  Branch (2094:17): [True: 0, False: 0]
  ------------------
 2095|      0|                goto Fail_it_item;
 2096|      0|        }
 2097|       |        /* no key function; the value is the item */
 2098|      2|        else {
 2099|      2|            val = Py_NewRef(item);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2100|      2|        }
 2101|       |
 2102|       |        /* maximum value and item are unset; set them */
 2103|      2|        if (maxval == NULL) {
  ------------------
  |  Branch (2103:13): [True: 2, False: 0]
  ------------------
 2104|      2|            maxitem = item;
 2105|      2|            maxval = val;
 2106|      2|        }
 2107|       |        /* maximum value and item are set; update them as necessary */
 2108|      0|        else {
 2109|      0|            int cmp = PyObject_RichCompareBool(val, maxval, op);
 2110|      0|            if (cmp < 0)
  ------------------
  |  Branch (2110:17): [True: 0, False: 0]
  ------------------
 2111|      0|                goto Fail_it_item_and_val;
 2112|      0|            else if (cmp > 0) {
  ------------------
  |  Branch (2112:22): [True: 0, False: 0]
  ------------------
 2113|      0|                Py_DECREF(maxval);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2114|      0|                Py_DECREF(maxitem);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2115|      0|                maxval = val;
 2116|      0|                maxitem = item;
 2117|      0|            }
 2118|      0|            else {
 2119|      0|                Py_DECREF(item);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2120|      0|                Py_DECREF(val);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2121|      0|            }
 2122|      0|        }
 2123|      2|    }
 2124|      2|    if (maxval == NULL) {
  ------------------
  |  Branch (2124:9): [True: 0, False: 2]
  ------------------
 2125|      0|        assert(maxitem == NULL);
  ------------------
  |  Branch (2125:9): [True: 0, False: 0]
  ------------------
 2126|      0|        if (defaultval != NULL) {
  ------------------
  |  Branch (2126:13): [True: 0, False: 0]
  ------------------
 2127|      0|            maxitem = Py_NewRef(defaultval);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2128|      0|        } else {
 2129|      0|            PyErr_Format(PyExc_ValueError,
 2130|      0|                         "%s() iterable argument is empty", name);
 2131|      0|        }
 2132|      0|    }
 2133|      2|    else
 2134|      2|        Py_DECREF(maxval);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2135|      2|    Py_XDECREF(it);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2136|      2|    return maxitem;
 2137|       |
 2138|      0|Fail_it_item_and_val:
 2139|      0|    Py_DECREF(val);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2140|      0|Fail_it_item:
 2141|      0|    Py_DECREF(item);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2142|      0|Fail_it:
 2143|      0|    Py_XDECREF(maxval);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2144|      0|    Py_XDECREF(maxitem);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2145|      0|    Py_XDECREF(it);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2146|       |    return NULL;
 2147|      0|}
bltinmodule.c:builtin_next:
 1750|      2|{
 1751|      2|    PyObject *it, *res;
 1752|       |
 1753|      2|    if (!_PyArg_CheckPositional("next", nargs, 1, 2))
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1754|      0|        return NULL;
 1755|       |
 1756|      2|    it = args[0];
 1757|      2|    if (!PyIter_Check(it)) {
  ------------------
  |  Branch (1757:9): [True: 0, False: 2]
  ------------------
 1758|      0|        PyErr_Format(PyExc_TypeError,
 1759|      0|            "'%.200s' object is not an iterator",
 1760|      0|            Py_TYPE(it)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1761|      0|        return NULL;
 1762|      0|    }
 1763|       |
 1764|      2|    res = (*Py_TYPE(it)->tp_iternext)(it);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1765|      2|    if (res != NULL) {
  ------------------
  |  Branch (1765:9): [True: 0, False: 2]
  ------------------
 1766|      0|        return res;
 1767|      2|    } else if (nargs > 1) {
  ------------------
  |  Branch (1767:16): [True: 2, False: 0]
  ------------------
 1768|      2|        PyObject *def = args[1];
 1769|      2|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (1769:13): [True: 0, False: 2]
  ------------------
 1770|      0|            if(!PyErr_ExceptionMatches(PyExc_StopIteration))
  ------------------
  |  Branch (1770:16): [True: 0, False: 0]
  ------------------
 1771|      0|                return NULL;
 1772|      0|            PyErr_Clear();
 1773|      0|        }
 1774|      2|        return Py_NewRef(def);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1775|      2|    } else if (PyErr_Occurred()) {
  ------------------
  |  Branch (1775:16): [True: 0, False: 0]
  ------------------
 1776|      0|        return NULL;
 1777|      0|    } else {
 1778|      0|        PyErr_SetNone(PyExc_StopIteration);
 1779|       |        return NULL;
 1780|      0|    }
 1781|      2|}
bltinmodule.c:builtin_setattr_impl:
 1807|     82|{
 1808|     82|    if (PyObject_SetAttr(obj, name, value) != 0)
  ------------------
  |  Branch (1808:9): [True: 0, False: 82]
  ------------------
 1809|      0|        return NULL;
 1810|     82|    Py_RETURN_NONE;
  ------------------
  |  |  628|     82|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     82|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 1811|     82|}
bltinmodule.c:builtin_sorted:
 2729|      4|{
 2730|      4|    PyObject *newlist, *v, *seq, *callable;
 2731|       |
 2732|       |    /* Keyword arguments are passed through list.sort() which will check
 2733|       |       them. */
 2734|      4|    if (!_PyArg_UnpackStack(args, nargs, "sorted", 1, 1, &seq))
  ------------------
  |  Branch (2734:9): [True: 0, False: 4]
  ------------------
 2735|      0|        return NULL;
 2736|       |
 2737|      4|    newlist = PySequence_List(seq);
 2738|      4|    if (newlist == NULL)
  ------------------
  |  Branch (2738:9): [True: 0, False: 4]
  ------------------
 2739|      0|        return NULL;
 2740|       |
 2741|      4|    callable = PyObject_GetAttr(newlist, &_Py_ID(sort));
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2742|      4|    if (callable == NULL) {
  ------------------
  |  Branch (2742:9): [True: 0, False: 4]
  ------------------
 2743|      0|        Py_DECREF(newlist);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2744|      0|        return NULL;
 2745|      0|    }
 2746|       |
 2747|      4|    assert(nargs >= 1);
  ------------------
  |  Branch (2747:5): [True: 4, False: 0]
  ------------------
 2748|      4|    v = PyObject_Vectorcall(callable, args + 1, nargs - 1, kwnames);
 2749|      4|    Py_DECREF(callable);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2750|      4|    if (v == NULL) {
  ------------------
  |  Branch (2750:9): [True: 0, False: 4]
  ------------------
 2751|      0|        Py_DECREF(newlist);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2752|      0|        return NULL;
 2753|      0|    }
 2754|      4|    Py_DECREF(v);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2755|      4|    return newlist;
 2756|      4|}
bltinmodule.c:builtin_vars:
 2762|      2|{
 2763|      2|    PyObject *v = NULL;
 2764|      2|    PyObject *d;
 2765|       |
 2766|      2|    if (!PyArg_UnpackTuple(args, "vars", 0, 1, &v))
  ------------------
  |  Branch (2766:9): [True: 0, False: 2]
  ------------------
 2767|      0|        return NULL;
 2768|      2|    if (v == NULL) {
  ------------------
  |  Branch (2768:9): [True: 0, False: 2]
  ------------------
 2769|      0|        if (_PyEval_GetFrame() != NULL) {
  ------------------
  |  Branch (2769:13): [True: 0, False: 0]
  ------------------
 2770|      0|            d = _PyEval_GetFrameLocals();
 2771|      0|        }
 2772|      0|        else {
 2773|      0|            PyThreadState *tstate = _PyThreadState_GET();
 2774|      0|            d = _PyEval_GetGlobalsFromRunningMain(tstate);
 2775|      0|            if (d == NULL) {
  ------------------
  |  Branch (2775:17): [True: 0, False: 0]
  ------------------
 2776|      0|                if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2776:21): [True: 0, False: 0]
  ------------------
 2777|      0|                    d = _PyEval_GetFrameLocals();
 2778|      0|                    assert(_PyErr_Occurred(tstate));
  ------------------
  |  Branch (2778:21): [True: 0, False: 0]
  ------------------
 2779|      0|                }
 2780|      0|            }
 2781|      0|            else {
 2782|      0|                Py_INCREF(d);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2783|      0|            }
 2784|      0|        }
 2785|      0|    }
 2786|      2|    else {
 2787|      2|        if (PyObject_GetOptionalAttr(v, &_Py_ID(__dict__), &d) == 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2787:13): [True: 0, False: 2]
  ------------------
 2788|      0|            PyErr_SetString(PyExc_TypeError,
 2789|      0|                "vars() argument must have __dict__ attribute");
 2790|      0|        }
 2791|      2|    }
 2792|      2|    return d;
 2793|      2|}

_Py_HashRandomization_Init:
  554|      2|{
  555|      2|    void *secret = &_Py_HashSecret;
  556|      2|    Py_ssize_t secret_size = sizeof(_Py_HashSecret_t);
  557|       |
  558|      2|    if (_Py_HashSecret_Initialized) {
  ------------------
  |  Branch (558:9): [True: 0, False: 2]
  ------------------
  559|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  560|      0|    }
  561|      2|    _Py_HashSecret_Initialized = 1;
  562|       |
  563|      2|    if (config->use_hash_seed) {
  ------------------
  |  Branch (563:9): [True: 0, False: 2]
  ------------------
  564|      0|        if (config->hash_seed == 0) {
  ------------------
  |  Branch (564:13): [True: 0, False: 0]
  ------------------
  565|       |            /* disable the randomized hash */
  566|      0|            memset(secret, 0, secret_size);
  567|      0|        }
  568|      0|        else {
  569|       |            /* use the specified hash seed */
  570|      0|            lcg_urandom(config->hash_seed, secret, secret_size);
  571|      0|        }
  572|      0|    }
  573|      2|    else {
  574|       |        /* use a random hash seed */
  575|      2|        int res;
  576|       |
  577|       |        /* _PyRandom_Init() is called very early in the Python initialization
  578|       |           and so exceptions cannot be used (use raise=0).
  579|       |
  580|       |           _PyRandom_Init() must not block Python initialization: call
  581|       |           pyurandom() is non-blocking mode (blocking=0): see the PEP 524. */
  582|      2|        res = pyurandom(secret, secret_size, 0, 0);
  583|      2|        if (res < 0) {
  ------------------
  |  Branch (583:13): [True: 0, False: 2]
  ------------------
  584|      0|            return _PyStatus_ERR("failed to get random numbers "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  585|      0|                                 "to initialize Python");
  586|      0|        }
  587|      2|    }
  588|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  589|      2|}
bootstrap_hash.c:pyurandom:
  479|      2|{
  480|      2|#if defined(PY_GETRANDOM) || defined(PY_GETENTROPY)
  481|      2|    int res;
  482|      2|#endif
  483|       |
  484|      2|    if (size < 0) {
  ------------------
  |  Branch (484:9): [True: 0, False: 2]
  ------------------
  485|      0|        if (raise) {
  ------------------
  |  Branch (485:13): [True: 0, False: 0]
  ------------------
  486|      0|            PyErr_Format(PyExc_ValueError,
  487|      0|                         "negative argument not allowed");
  488|      0|        }
  489|      0|        return -1;
  490|      0|    }
  491|       |
  492|      2|    if (size == 0) {
  ------------------
  |  Branch (492:9): [True: 0, False: 2]
  ------------------
  493|      0|        return 0;
  494|      0|    }
  495|       |
  496|       |#ifdef MS_WINDOWS
  497|       |    return win32_urandom((unsigned char *)buffer, size, raise);
  498|       |#else
  499|       |
  500|      2|#if defined(PY_GETRANDOM) || defined(PY_GETENTROPY)
  501|      2|    if (HAVE_GETENTRYPY_GETRANDOM_RUNTIME) {
  ------------------
  |  |   40|      2|#  define HAVE_GETENTRYPY_GETRANDOM_RUNTIME 1
  |  |  ------------------
  |  |  |  Branch (40:45): [True: 2, Folded]
  |  |  ------------------
  ------------------
  502|      2|#ifdef PY_GETRANDOM
  503|      2|        res = py_getrandom(buffer, size, blocking, raise);
  504|       |#else
  505|       |        res = py_getentropy(buffer, size, raise);
  506|       |#endif
  507|      2|        if (res < 0) {
  ------------------
  |  Branch (507:13): [True: 0, False: 2]
  ------------------
  508|      0|            return -1;
  509|      0|        }
  510|      2|        if (res == 1) {
  ------------------
  |  Branch (510:13): [True: 2, False: 0]
  ------------------
  511|      2|            return 0;
  512|      2|        }
  513|       |        /* getrandom() or getentropy() function is not available: failed with
  514|       |           ENOSYS or EPERM. Fall back on reading from /dev/urandom. */
  515|      2|        } /* end of availability block */
  516|      0|#endif
  517|       |
  518|      0|    return dev_urandom(buffer, size, raise);
  519|      2|#endif
  520|      2|}
bootstrap_hash.c:py_getrandom:
   93|      2|{
   94|       |    /* Is getrandom() supported by the running kernel? Set to 0 if getrandom()
   95|       |       failed with ENOSYS or EPERM. Need Linux kernel 3.17 or newer, or Solaris
   96|       |       11.3 or newer */
   97|      2|    static int getrandom_works = 1;
   98|      2|    int flags;
   99|      2|    char *dest;
  100|      2|    long n;
  101|       |
  102|      2|    if (!getrandom_works) {
  ------------------
  |  Branch (102:9): [True: 0, False: 2]
  ------------------
  103|      0|        return 0;
  104|      0|    }
  105|       |
  106|      2|    flags = blocking ? 0 : GRND_NONBLOCK;
  ------------------
  |  Branch (106:13): [True: 0, False: 2]
  ------------------
  107|      2|    dest = buffer;
  108|      4|    while (0 < size) {
  ------------------
  |  Branch (108:12): [True: 2, False: 2]
  ------------------
  109|       |#if defined(__sun) && defined(__SVR4)
  110|       |        /* Issue #26735: On Solaris, getrandom() is limited to returning up
  111|       |           to 1024 bytes. Call it multiple times if more bytes are
  112|       |           requested. */
  113|       |        n = Py_MIN(size, 1024);
  114|       |#else
  115|      2|        n = Py_MIN(size, LONG_MAX);
  ------------------
  |  |  112|      2|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  116|      2|#endif
  117|       |
  118|      2|        errno = 0;
  119|      2|#ifdef HAVE_GETRANDOM
  120|      2|        if (raise) {
  ------------------
  |  Branch (120:13): [True: 0, False: 2]
  ------------------
  121|      0|            Py_BEGIN_ALLOW_THREADS
  ------------------
  |  |  119|      0|#define Py_BEGIN_ALLOW_THREADS { \
  |  |  120|      0|                        PyThreadState *_save; \
  |  |  121|      0|                        _save = PyEval_SaveThread();
  ------------------
  122|      0|            n = getrandom(dest, n, flags);
  123|      0|            Py_END_ALLOW_THREADS
  ------------------
  |  |  124|      0|#define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  |  |  125|      0|                 }
  ------------------
  124|      0|        }
  125|      2|        else {
  126|      2|            n = getrandom(dest, n, flags);
  127|      2|        }
  128|       |#else
  129|       |        /* On Linux, use the syscall() function because the GNU libc doesn't
  130|       |           expose the Linux getrandom() syscall yet. See:
  131|       |           https://sourceware.org/bugzilla/show_bug.cgi?id=17252 */
  132|       |        if (raise) {
  133|       |            Py_BEGIN_ALLOW_THREADS
  134|       |            n = syscall(SYS_getrandom, dest, n, flags);
  135|       |            Py_END_ALLOW_THREADS
  136|       |        }
  137|       |        else {
  138|       |            n = syscall(SYS_getrandom, dest, n, flags);
  139|       |        }
  140|       |#  ifdef _Py_MEMORY_SANITIZER
  141|       |        if (n > 0) {
  142|       |             __msan_unpoison(dest, n);
  143|       |        }
  144|       |#  endif
  145|       |#endif
  146|       |
  147|      2|        if (n < 0) {
  ------------------
  |  Branch (147:13): [True: 0, False: 2]
  ------------------
  148|       |            /* ENOSYS: the syscall is not supported by the kernel.
  149|       |               EPERM: the syscall is blocked by a security policy (ex: SECCOMP)
  150|       |               or something else. */
  151|      0|            if (errno == ENOSYS || errno == EPERM) {
  ------------------
  |  Branch (151:17): [True: 0, False: 0]
  |  Branch (151:36): [True: 0, False: 0]
  ------------------
  152|      0|                getrandom_works = 0;
  153|      0|                return 0;
  154|      0|            }
  155|       |
  156|       |            /* getrandom(GRND_NONBLOCK) fails with EAGAIN if the system urandom
  157|       |               is not initialized yet. For _PyRandom_Init(), we ignore the
  158|       |               error and fall back on reading /dev/urandom which never blocks,
  159|       |               even if the system urandom is not initialized yet:
  160|       |               see the PEP 524. */
  161|      0|            if (errno == EAGAIN && !raise && !blocking) {
  ------------------
  |  Branch (161:17): [True: 0, False: 0]
  |  Branch (161:36): [True: 0, False: 0]
  |  Branch (161:46): [True: 0, False: 0]
  ------------------
  162|      0|                return 0;
  163|      0|            }
  164|       |
  165|      0|            if (errno == EINTR) {
  ------------------
  |  Branch (165:17): [True: 0, False: 0]
  ------------------
  166|      0|                if (raise) {
  ------------------
  |  Branch (166:21): [True: 0, False: 0]
  ------------------
  167|      0|                    if (PyErr_CheckSignals()) {
  ------------------
  |  Branch (167:25): [True: 0, False: 0]
  ------------------
  168|      0|                        return -1;
  169|      0|                    }
  170|      0|                }
  171|       |
  172|       |                /* retry getrandom() if it was interrupted by a signal */
  173|      0|                continue;
  174|      0|            }
  175|       |
  176|      0|            if (raise) {
  ------------------
  |  Branch (176:17): [True: 0, False: 0]
  ------------------
  177|      0|                PyErr_SetFromErrno(PyExc_OSError);
  178|      0|            }
  179|      0|            return -1;
  180|      0|        }
  181|       |
  182|      2|        dest += n;
  183|      2|        size -= n;
  184|      2|    }
  185|      2|    return 1;
  186|      2|}

_Py_InitializeRecursionLimits:
  234|      2|{
  235|      2|    uintptr_t base, top;
  236|      2|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
  237|      2|    hardware_stack_limits(&base, &top, here_addr);
  238|      2|    assert(top != 0);
  ------------------
  |  Branch (238:5): [True: 2, False: 0]
  ------------------
  239|       |
  240|      2|    tstate_set_stack(tstate, base, top);
  241|      2|    _PyThreadStateImpl *ts = (_PyThreadStateImpl *)tstate;
  242|      2|    ts->c_stack_init_base = base;
  243|      2|    ts->c_stack_init_top = top;
  244|      2|}
PyEval_EvalCode:
  661|     32|{
  662|     32|    PyThreadState *tstate = _PyThreadState_GET();
  663|     32|    if (locals == NULL) {
  ------------------
  |  Branch (663:9): [True: 0, False: 32]
  ------------------
  664|      0|        locals = globals;
  665|      0|    }
  666|     32|    PyObject *builtins = _PyDict_LoadBuiltinsFromGlobals(globals);
  667|     32|    if (builtins == NULL) {
  ------------------
  |  Branch (667:9): [True: 0, False: 32]
  ------------------
  668|      0|        return NULL;
  669|      0|    }
  670|     32|    PyFrameConstructor desc = {
  671|     32|        .fc_globals = globals,
  672|     32|        .fc_builtins = builtins,
  673|     32|        .fc_name = ((PyCodeObject *)co)->co_name,
  674|     32|        .fc_qualname = ((PyCodeObject *)co)->co_name,
  675|     32|        .fc_code = co,
  676|     32|        .fc_defaults = NULL,
  677|     32|        .fc_kwdefaults = NULL,
  678|     32|        .fc_closure = NULL
  679|     32|    };
  680|     32|    PyFunctionObject *func = _PyFunction_FromConstructor(&desc);
  681|     32|    _Py_DECREF_BUILTINS(builtins);
  ------------------
  |  |  387|     32|#  define _Py_DECREF_BUILTINS Py_DECREF
  |  |  ------------------
  |  |  |  |   80|     32|    do { \
  |  |  |  |   81|     32|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|     32|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|     32|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 32]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|     32|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|     32|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|     32|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 32]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|     32|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 32]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  682|     32|    if (func == NULL) {
  ------------------
  |  Branch (682:9): [True: 0, False: 32]
  ------------------
  683|      0|        return NULL;
  684|      0|    }
  685|     32|    EVAL_CALL_STAT_INC(EVAL_CALL_LEGACY);
  ------------------
  |  |   79|     32|#define EVAL_CALL_STAT_INC(name) ((void)0)
  ------------------
  686|     32|    PyObject *res = _PyEval_Vector(tstate, func, locals, NULL, 0, NULL);
  687|       |    Py_DECREF(func);
  ------------------
  |  |   80|     32|    do { \
  |  |   81|     32|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|     32|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|     32|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 32]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|     32|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|     32|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|     32|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 32, False: 0]
  |  |  ------------------
  |  |   88|     32|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|     32|    do { \
  |  |  |  |  113|     32|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|     32|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 32]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|     32|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 32]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|     32|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|     32|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|     32|            (*dealloc)(op); \
  |  |   91|     32|        } \
  |  |   92|     32|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 32]
  |  |  ------------------
  ------------------
  688|     32|    return res;
  689|     32|}
_Py_VectorCall_StackRefSteal:
  720|  1.13k|{
  721|  1.13k|    PyObject *res;
  722|  1.13k|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|  1.13k|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|  1.13k|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  723|  1.13k|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|  1.13k|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 1.13k]
  |  |  ------------------
  ------------------
  724|      0|        res = NULL;
  725|      0|        goto cleanup;
  726|      0|    }
  727|  1.13k|    PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  728|  1.13k|    PyObject *kwnames_o = PyStackRef_AsPyObjectBorrow(kwnames);
  729|  1.13k|    int positional_args = total_args;
  730|  1.13k|    if (kwnames_o != NULL) {
  ------------------
  |  Branch (730:9): [True: 88, False: 1.04k]
  ------------------
  731|     88|        positional_args -= (int)PyTuple_GET_SIZE(kwnames_o);
  ------------------
  |  |   27|     88|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     88|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     88|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  732|     88|    }
  733|  1.13k|    res = PyObject_Vectorcall(
  734|  1.13k|        callable_o, args_o,
  735|  1.13k|        positional_args | PY_VECTORCALL_ARGUMENTS_OFFSET,
  ------------------
  |  |  287|  1.13k|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|  1.13k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  736|  1.13k|        kwnames_o);
  737|  1.13k|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|  1.13k|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  738|  1.13k|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (738:5): [True: 1.13k, False: 0]
  ------------------
  739|  1.13k|cleanup:
  740|  1.13k|    PyStackRef_XCLOSE(kwnames);
  741|       |    // arguments is a pointer into the GC visible stack,
  742|       |    // so we must NULL out values as we clear them.
  743|  1.87k|    for (int i = total_args-1; i >= 0; i--) {
  ------------------
  |  Branch (743:32): [True: 744, False: 1.13k]
  ------------------
  744|    744|        _PyStackRef tmp = arguments[i];
  745|    744|        arguments[i] = PyStackRef_NULL;
  746|    744|        PyStackRef_CLOSE(tmp);
  747|    744|    }
  748|  1.13k|    PyStackRef_CLOSE(callable);
  749|  1.13k|    return res;
  750|  1.13k|}
_Py_VectorCallInstrumentation_StackRefSteal:
  762|  1.14k|{
  763|  1.14k|    PyObject* res;
  764|  1.14k|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|  1.14k|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|  1.14k|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  765|  1.14k|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|  1.14k|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 1.14k]
  |  |  ------------------
  ------------------
  766|      0|        res = NULL;
  767|      0|        goto cleanup;
  768|      0|    }
  769|  1.14k|    PyObject* callable_o = PyStackRef_AsPyObjectBorrow(callable);
  770|  1.14k|    PyObject* kwnames_o = PyStackRef_AsPyObjectBorrow(kwnames);
  771|  1.14k|    int positional_args = total_args;
  772|  1.14k|    if (kwnames_o != NULL) {
  ------------------
  |  Branch (772:9): [True: 38, False: 1.10k]
  ------------------
  773|     38|        positional_args -= (int)PyTuple_GET_SIZE(kwnames_o);
  ------------------
  |  |   27|     38|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     38|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     38|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  774|     38|    }
  775|  1.14k|    res = PyObject_Vectorcall(
  776|  1.14k|        callable_o, args_o,
  777|  1.14k|        positional_args | PY_VECTORCALL_ARGUMENTS_OFFSET,
  ------------------
  |  |  287|  1.14k|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|  1.14k|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  778|  1.14k|        kwnames_o);
  779|  1.14k|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|  1.14k|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  780|  1.14k|    if (call_instrumentation) {
  ------------------
  |  Branch (780:9): [True: 0, False: 1.14k]
  ------------------
  781|      0|        PyObject* arg = total_args == 0 ?
  ------------------
  |  Branch (781:25): [True: 0, False: 0]
  ------------------
  782|      0|            &_PyInstrumentation_MISSING : PyStackRef_AsPyObjectBorrow(arguments[0]);
  783|      0|        if (res == NULL) {
  ------------------
  |  Branch (783:13): [True: 0, False: 0]
  ------------------
  784|      0|            _Py_call_instrumentation_exc2(
  785|      0|                tstate, PY_MONITORING_EVENT_C_RAISE,
  ------------------
  |  |   45|      0|#define PY_MONITORING_EVENT_C_RAISE 17
  ------------------
  786|      0|                frame, this_instr, callable_o, arg);
  787|      0|        }
  788|      0|        else {
  789|      0|            int err = _Py_call_instrumentation_2args(
  790|      0|                tstate, PY_MONITORING_EVENT_C_RETURN,
  ------------------
  |  |   44|      0|#define PY_MONITORING_EVENT_C_RETURN 16
  ------------------
  791|      0|                frame, this_instr, callable_o, arg);
  792|      0|            if (err < 0) {
  ------------------
  |  Branch (792:17): [True: 0, False: 0]
  ------------------
  793|      0|                Py_CLEAR(res);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  794|      0|            }
  795|      0|        }
  796|      0|    }
  797|  1.14k|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (797:5): [True: 1.14k, False: 0]
  ------------------
  798|  1.14k|cleanup:
  799|  1.14k|    PyStackRef_XCLOSE(kwnames);
  800|       |    // arguments is a pointer into the GC visible stack,
  801|       |    // so we must NULL out values as we clear them.
  802|  3.10k|    for (int i = total_args - 1; i >= 0; i--) {
  ------------------
  |  Branch (802:34): [True: 1.96k, False: 1.14k]
  ------------------
  803|  1.96k|        _PyStackRef tmp = arguments[i];
  804|  1.96k|        arguments[i] = PyStackRef_NULL;
  805|  1.96k|        PyStackRef_CLOSE(tmp);
  806|  1.96k|    }
  807|  1.14k|    PyStackRef_CLOSE(callable);
  808|  1.14k|    return res;
  809|  1.14k|}
_Py_BuiltinCallFast_StackRef:
  816|    958|{
  817|    958|    PyObject *res;
  818|    958|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|    958|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|    958|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  819|    958|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|    958|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 958]
  |  |  ------------------
  ------------------
  820|      0|        return NULL;
  821|      0|    }
  822|    958|    PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  823|    958|    PyCFunction cfunc = PyCFunction_GET_FUNCTION(callable_o);
  ------------------
  |  |   43|    958|#define PyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    958|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    958|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  824|    958|    res = _PyCFunctionFast_CAST(cfunc)(
  ------------------
  |  |   58|    958|    _Py_FUNC_CAST(PyCFunctionFast, func)
  |  |  ------------------
  |  |  |  |   47|    958|#define _Py_FUNC_CAST(T, func) _Py_CAST(T, _Py_CAST(void(*)(void), (func)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    958|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  825|    958|        PyCFunction_GET_SELF(callable_o),
  ------------------
  |  |   52|    958|#define PyCFunction_GET_SELF(func) PyCFunction_GET_SELF(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    958|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    958|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  826|    958|        args_o,
  827|    958|        total_args
  828|    958|    );
  829|    958|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|    958|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  830|    958|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (830:5): [True: 958, False: 0]
  ------------------
  831|    958|    return res;
  832|    958|}
_Py_BuiltinCallFastWithKeywords_StackRef:
  839|    196|{
  840|    196|    PyObject *res;
  841|    196|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|    196|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|    196|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  842|    196|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|    196|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 196]
  |  |  ------------------
  ------------------
  843|      0|        return NULL;
  844|      0|    }
  845|    196|    PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  846|    196|    PyCFunctionFastWithKeywords cfunc =
  847|    196|        _PyCFunctionFastWithKeywords_CAST(PyCFunction_GET_FUNCTION(callable_o));
  ------------------
  |  |   62|    196|    _Py_FUNC_CAST(PyCFunctionFastWithKeywords, func)
  |  |  ------------------
  |  |  |  |   47|    196|#define _Py_FUNC_CAST(T, func) _Py_CAST(T, _Py_CAST(void(*)(void), (func)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    196|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  848|    196|    res = cfunc(PyCFunction_GET_SELF(callable_o), args_o, total_args, NULL);
  ------------------
  |  |   52|    196|#define PyCFunction_GET_SELF(func) PyCFunction_GET_SELF(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    196|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    196|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  849|    196|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|    196|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  850|    196|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (850:5): [True: 196, False: 0]
  ------------------
  851|    196|    return res;
  852|    196|}
_PyCallMethodDescriptorFast_StackRef:
  861|    594|{
  862|    594|    PyObject *res;
  863|    594|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|    594|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|    594|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  864|    594|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|    594|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 594]
  |  |  ------------------
  ------------------
  865|      0|        return NULL;
  866|      0|    }
  867|    594|    assert(self == PyStackRef_AsPyObjectBorrow(arguments[0]));
  ------------------
  |  Branch (867:5): [True: 594, False: 0]
  ------------------
  868|       |
  869|    594|    res = cfunc(self, (args_o + 1), total_args - 1);
  870|    594|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|    594|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  871|    594|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (871:5): [True: 594, False: 0]
  ------------------
  872|    594|    return res;
  873|    594|}
_PyCallMethodDescriptorFastWithKeywords_StackRef:
  882|     34|{
  883|     34|    PyObject *res;
  884|     34|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|     34|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|     34|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  885|     34|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|     34|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 34]
  |  |  ------------------
  ------------------
  886|      0|        return NULL;
  887|      0|    }
  888|     34|    assert(self == PyStackRef_AsPyObjectBorrow(arguments[0]));
  ------------------
  |  Branch (888:5): [True: 34, False: 0]
  ------------------
  889|       |
  890|     34|    res = cfunc(self, (args_o + 1), total_args-1, NULL);
  891|     34|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|     34|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  892|     34|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (892:5): [True: 34, False: 0]
  ------------------
  893|     34|    return res;
  894|     34|}
_Py_CallBuiltinClass_StackRef:
  901|     62|{
  902|     62|    PyObject *res;
  903|     62|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|     62|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|     62|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  904|     62|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|     62|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 62]
  |  |  ------------------
  ------------------
  905|      0|        return NULL;
  906|      0|    }
  907|     62|    PyTypeObject *tp = (PyTypeObject *)PyStackRef_AsPyObjectBorrow(callable);
  908|     62|    res = tp->tp_vectorcall((PyObject *)tp, args_o, total_args | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
  ------------------
  |  |  287|     62|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  ------------------
  |  |  |  |   34|     62|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  909|     62|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|     62|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  910|     62|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (910:5): [True: 62, False: 0]
  ------------------
  911|     62|    return res;
  912|     62|}
_Py_BuildString_StackRefSteal:
  918|     62|{
  919|     62|    PyObject *res;
  920|     62|    STACKREFS_TO_PYOBJECTS(arguments, total_args, args_o);
  ------------------
  |  |  500|     62|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|     62|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  921|     62|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|     62|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 62]
  |  |  ------------------
  ------------------
  922|      0|        res = NULL;
  923|      0|        goto cleanup;
  924|      0|    }
  925|     62|    res = _PyUnicode_JoinArray(&_Py_STR(empty), args_o, total_args);
  ------------------
  |  |  919|     62|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     62|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     62|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  926|     62|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|     62|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  927|     62|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (927:5): [True: 62, False: 0]
  ------------------
  928|     62|cleanup:
  929|       |    // arguments is a pointer into the GC visible stack,
  930|       |    // so we must NULL out values as we clear them.
  931|    290|    for (int i = total_args-1; i >= 0; i--) {
  ------------------
  |  Branch (931:32): [True: 228, False: 62]
  ------------------
  932|    228|        _PyStackRef tmp = arguments[i];
  933|    228|        arguments[i] = PyStackRef_NULL;
  934|    228|        PyStackRef_CLOSE(tmp);
  935|    228|    }
  936|     62|    return res;
  937|     62|}
_Py_BuildMap_StackRefSteal:
  943|    270|{
  944|    270|    PyObject *res;
  945|    270|    STACKREFS_TO_PYOBJECTS(arguments, half_args*2, args_o);
  ------------------
  |  |  500|    270|    PyObject *NAME##_temp[MAX_STACKREF_SCRATCH+1]; \
  |  |  501|    270|    PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp);
  ------------------
  946|    270|    if (CONVERSION_FAILED(args_o)) {
  ------------------
  |  |  507|    270|#define CONVERSION_FAILED(NAME) ((NAME) == NULL)
  |  |  ------------------
  |  |  |  Branch (507:33): [True: 0, False: 270]
  |  |  ------------------
  ------------------
  947|      0|        res = NULL;
  948|      0|        goto cleanup;
  949|      0|    }
  950|    270|    res = _PyDict_FromItems(
  951|    270|        args_o, 2,
  952|    270|        args_o+1, 2,
  953|    270|        half_args
  954|    270|    );
  955|    270|    STACKREFS_TO_PYOBJECTS_CLEANUP(args_o);
  ------------------
  |  |  505|    270|    _PyObjectArray_Free(NAME - 1, NAME##_temp);
  ------------------
  956|    270|    assert((res != NULL) ^ (PyErr_Occurred() != NULL));
  ------------------
  |  Branch (956:5): [True: 270, False: 0]
  ------------------
  957|    270|cleanup:
  958|       |    // arguments is a pointer into the GC visible stack,
  959|       |    // so we must NULL out values as we clear them.
  960|    402|    for (int i = half_args*2-1; i >= 0; i--) {
  ------------------
  |  Branch (960:33): [True: 132, False: 270]
  ------------------
  961|    132|        _PyStackRef tmp = arguments[i];
  962|    132|        arguments[i] = PyStackRef_NULL;
  963|    132|        PyStackRef_CLOSE(tmp);
  964|    132|    }
  965|    270|    return res;
  966|    270|}
_Py_LoadAttr_StackRefSteal:
  972|    630|{
  973|       |    // Use _PyCStackRefs to ensure that both method and self are visible to
  974|       |    // the GC. Even though self_or_null is on the evaluation stack, it may be
  975|       |    // after the stackpointer and therefore not visible to the GC.
  976|    630|    _PyCStackRef method, self;
  977|    630|    _PyThreadState_PushCStackRef(tstate, &method);
  978|    630|    _PyThreadState_PushCStackRef(tstate, &self);
  979|    630|    self.ref = owner;  // steal reference to owner
  980|       |    // NOTE: method.ref is initialized to PyStackRef_NULL and remains null on
  981|       |    // error, so we don't need to explicitly use the return code from the call.
  982|    630|    _PyObject_GetMethodStackRef(tstate, &self.ref, name, &method.ref);
  983|    630|    *self_or_null = _PyThreadState_PopCStackRefSteal(tstate, &self);
  984|    630|    return _PyThreadState_PopCStackRefSteal(tstate, &method);
  985|    630|}
_PyObjectArray_FromStackRefArray:
 1052|  4.45k|{
 1053|  4.45k|    PyObject **result;
 1054|  4.45k|    if (nargs > MAX_STACKREF_SCRATCH) {
  ------------------
  |  |  496|  4.45k|#define MAX_STACKREF_SCRATCH 10
  ------------------
  |  Branch (1054:9): [True: 2, False: 4.44k]
  ------------------
 1055|       |        // +1 in case PY_VECTORCALL_ARGUMENTS_OFFSET is set.
 1056|      2|        result = PyMem_Malloc((nargs + 1) * sizeof(PyObject *));
 1057|      2|        if (result == NULL) {
  ------------------
  |  Branch (1057:13): [True: 0, False: 2]
  ------------------
 1058|      0|            return NULL;
 1059|      0|        }
 1060|      2|    }
 1061|  4.44k|    else {
 1062|  4.44k|        result = scratch;
 1063|  4.44k|    }
 1064|  4.45k|    result++;
 1065|  4.45k|    result[0] = NULL; /* Keep GCC happy */
 1066|  12.0k|    for (int i = 0; i < nargs; i++) {
  ------------------
  |  Branch (1066:21): [True: 7.58k, False: 4.45k]
  ------------------
 1067|  7.58k|        result[i] = PyStackRef_AsPyObjectBorrow(input[i]);
 1068|  7.58k|    }
 1069|  4.45k|    return result;
 1070|  4.45k|}
_PyObjectArray_Free:
 1074|  4.45k|{
 1075|  4.45k|    if (array != scratch) {
  ------------------
  |  Branch (1075:9): [True: 2, False: 4.44k]
  ------------------
 1076|      2|        PyMem_Free(array);
 1077|      2|    }
 1078|  4.45k|}
_PyEval_GetIter:
 1116|     82|{
 1117|     82|    PyTypeObject *tp = PyStackRef_TYPE(iterable);
 1118|     82|    if (tp->_tp_iteritem != NULL) {
  ------------------
  |  Branch (1118:9): [True: 68, False: 14]
  ------------------
 1119|       |        /* Leave iterable on stack and pushed tagged 0 */
 1120|     68|        *index_or_null = PyStackRef_TagInt(0);
 1121|     68|        return iterable;
 1122|     68|    }
 1123|     14|    *index_or_null = PyStackRef_NULL;
 1124|     14|    if (tp->tp_iter == PyObject_SelfIter) {
  ------------------
  |  Branch (1124:9): [True: 2, False: 12]
  ------------------
 1125|      2|        return iterable;
 1126|      2|    }
 1127|     12|    if (yield_from && tp == &PyCoro_Type) {
  ------------------
  |  Branch (1127:9): [True: 0, False: 12]
  |  Branch (1127:23): [True: 0, False: 0]
  ------------------
 1128|      0|        assert(yield_from != GET_ITER_YIELD_FROM);
  ------------------
  |  Branch (1128:9): [True: 0, False: 0]
  ------------------
 1129|      0|        if (yield_from == GET_ITER_YIELD_FROM_CORO_CHECK) {
  ------------------
  |  |   97|      0|#define GET_ITER_YIELD_FROM_CORO_CHECK 3
  ------------------
  |  Branch (1129:13): [True: 0, False: 0]
  ------------------
 1130|       |            /* `iterable` is a coroutine and it is used in a 'yield from'
 1131|       |            * expression of a regular generator. */
 1132|      0|            PyErr_SetString(PyExc_TypeError,
 1133|      0|                            "cannot 'yield from' a coroutine object "
 1134|      0|                            "in a non-coroutine generator");
 1135|      0|            PyStackRef_CLOSE(iterable);
 1136|      0|            return PyStackRef_ERROR;
 1137|      0|        }
 1138|      0|        return iterable;
 1139|      0|    }
 1140|       |    /* Pop iterable, and push iterator then NULL */
 1141|     12|    PyObject *iter_o = PyObject_GetIter(PyStackRef_AsPyObjectBorrow(iterable));
 1142|     12|    PyStackRef_CLOSE(iterable);
 1143|     12|    if (iter_o == NULL) {
  ------------------
  |  Branch (1143:9): [True: 0, False: 12]
  ------------------
 1144|      0|        return PyStackRef_ERROR;
 1145|      0|    }
 1146|     12|    return PyStackRef_FromPyObjectSteal(iter_o);
 1147|     12|}
_Py_ReachedRecursionLimit:
 1150|    508|_Py_ReachedRecursionLimit(PyThreadState *tstate)  {
 1151|    508|    uintptr_t here_addr = _Py_get_machine_stack_pointer();
 1152|    508|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
 1153|    508|    assert(_tstate->c_stack_hard_limit != 0);
  ------------------
  |  Branch (1153:5): [True: 508, False: 0]
  ------------------
 1154|    508|#if _Py_STACK_GROWS_DOWN
 1155|    508|    return here_addr <= _tstate->c_stack_soft_limit;
 1156|       |#else
 1157|       |    return here_addr >= _tstate->c_stack_soft_limit;
 1158|       |#endif
 1159|    508|}
_PyEval_EvalFrameDefault:
 1211|    906|{
 1212|    906|    _Py_EnsureTstateNotNULL(tstate);
  ------------------
  |  |  196|    906|    _Py_EnsureFuncTstateNotNULL(__func__, (tstate))
  ------------------
 1213|    906|    check_invalid_reentrancy();
 1214|    906|    CALL_STAT_INC(pyeval_calls);
  ------------------
  |  |   76|    906|#define CALL_STAT_INC(name) ((void)0)
  ------------------
 1215|       |
 1216|    906|#if USE_COMPUTED_GOTOS && !_Py_TAIL_CALL_INTERP
 1217|       |/* Import the static jump table */
 1218|    906|#include "opcode_targets.h"
  ------------------
  |  |    1|    906|#if !_Py_TAIL_CALL_INTERP
  |  |    2|    906|static void *opcode_targets_table[256] = {
  |  |    3|    906|    &&TARGET_CACHE,
  |  |    4|    906|    &&TARGET_BINARY_SLICE,
  |  |    5|    906|    &&TARGET_BUILD_TEMPLATE,
  |  |    6|    906|    &&TARGET_BINARY_OP_INPLACE_ADD_UNICODE,
  |  |    7|    906|    &&TARGET_CALL_FUNCTION_EX,
  |  |    8|    906|    &&TARGET_CHECK_EG_MATCH,
  |  |    9|    906|    &&TARGET_CHECK_EXC_MATCH,
  |  |   10|    906|    &&TARGET_CLEANUP_THROW,
  |  |   11|    906|    &&TARGET_DELETE_SUBSCR,
  |  |   12|    906|    &&TARGET_END_FOR,
  |  |   13|    906|    &&TARGET_END_SEND,
  |  |   14|    906|    &&TARGET_EXIT_INIT_CHECK,
  |  |   15|    906|    &&TARGET_FORMAT_SIMPLE,
  |  |   16|    906|    &&TARGET_FORMAT_WITH_SPEC,
  |  |   17|    906|    &&TARGET_GET_AITER,
  |  |   18|    906|    &&TARGET_GET_ANEXT,
  |  |   19|    906|    &&TARGET_GET_LEN,
  |  |   20|    906|    &&TARGET_RESERVED,
  |  |   21|    906|    &&TARGET_INTERPRETER_EXIT,
  |  |   22|    906|    &&TARGET_LOAD_BUILD_CLASS,
  |  |   23|    906|    &&TARGET_LOAD_LOCALS,
  |  |   24|    906|    &&TARGET_MAKE_FUNCTION,
  |  |   25|    906|    &&TARGET_MATCH_KEYS,
  |  |   26|    906|    &&TARGET_MATCH_MAPPING,
  |  |   27|    906|    &&TARGET_MATCH_SEQUENCE,
  |  |   28|    906|    &&TARGET_NOP,
  |  |   29|    906|    &&TARGET_NOT_TAKEN,
  |  |   30|    906|    &&TARGET_POP_EXCEPT,
  |  |   31|    906|    &&TARGET_POP_ITER,
  |  |   32|    906|    &&TARGET_POP_TOP,
  |  |   33|    906|    &&TARGET_PUSH_EXC_INFO,
  |  |   34|    906|    &&TARGET_PUSH_NULL,
  |  |   35|    906|    &&TARGET_RETURN_GENERATOR,
  |  |   36|    906|    &&TARGET_RETURN_VALUE,
  |  |   37|    906|    &&TARGET_SETUP_ANNOTATIONS,
  |  |   38|    906|    &&TARGET_STORE_SLICE,
  |  |   39|    906|    &&TARGET_STORE_SUBSCR,
  |  |   40|    906|    &&TARGET_TO_BOOL,
  |  |   41|    906|    &&TARGET_UNARY_INVERT,
  |  |   42|    906|    &&TARGET_UNARY_NEGATIVE,
  |  |   43|    906|    &&TARGET_UNARY_NOT,
  |  |   44|    906|    &&TARGET_WITH_EXCEPT_START,
  |  |   45|    906|    &&TARGET_BINARY_OP,
  |  |   46|    906|    &&TARGET_BUILD_INTERPOLATION,
  |  |   47|    906|    &&TARGET_BUILD_LIST,
  |  |   48|    906|    &&TARGET_BUILD_MAP,
  |  |   49|    906|    &&TARGET_BUILD_SET,
  |  |   50|    906|    &&TARGET_BUILD_SLICE,
  |  |   51|    906|    &&TARGET_BUILD_STRING,
  |  |   52|    906|    &&TARGET_BUILD_TUPLE,
  |  |   53|    906|    &&TARGET_CALL,
  |  |   54|    906|    &&TARGET_CALL_INTRINSIC_1,
  |  |   55|    906|    &&TARGET_CALL_INTRINSIC_2,
  |  |   56|    906|    &&TARGET_CALL_KW,
  |  |   57|    906|    &&TARGET_COMPARE_OP,
  |  |   58|    906|    &&TARGET_CONTAINS_OP,
  |  |   59|    906|    &&TARGET_CONVERT_VALUE,
  |  |   60|    906|    &&TARGET_COPY,
  |  |   61|    906|    &&TARGET_COPY_FREE_VARS,
  |  |   62|    906|    &&TARGET_DELETE_ATTR,
  |  |   63|    906|    &&TARGET_DELETE_DEREF,
  |  |   64|    906|    &&TARGET_DELETE_FAST,
  |  |   65|    906|    &&TARGET_DELETE_GLOBAL,
  |  |   66|    906|    &&TARGET_DELETE_NAME,
  |  |   67|    906|    &&TARGET_DICT_MERGE,
  |  |   68|    906|    &&TARGET_DICT_UPDATE,
  |  |   69|    906|    &&TARGET_END_ASYNC_FOR,
  |  |   70|    906|    &&TARGET_EXTENDED_ARG,
  |  |   71|    906|    &&TARGET_FOR_ITER,
  |  |   72|    906|    &&TARGET_GET_AWAITABLE,
  |  |   73|    906|    &&TARGET_GET_ITER,
  |  |   74|    906|    &&TARGET_IMPORT_FROM,
  |  |   75|    906|    &&TARGET_IMPORT_NAME,
  |  |   76|    906|    &&TARGET_IS_OP,
  |  |   77|    906|    &&TARGET_JUMP_BACKWARD,
  |  |   78|    906|    &&TARGET_JUMP_BACKWARD_NO_INTERRUPT,
  |  |   79|    906|    &&TARGET_JUMP_FORWARD,
  |  |   80|    906|    &&TARGET_LIST_APPEND,
  |  |   81|    906|    &&TARGET_LIST_EXTEND,
  |  |   82|    906|    &&TARGET_LOAD_ATTR,
  |  |   83|    906|    &&TARGET_LOAD_COMMON_CONSTANT,
  |  |   84|    906|    &&TARGET_LOAD_CONST,
  |  |   85|    906|    &&TARGET_LOAD_DEREF,
  |  |   86|    906|    &&TARGET_LOAD_FAST,
  |  |   87|    906|    &&TARGET_LOAD_FAST_AND_CLEAR,
  |  |   88|    906|    &&TARGET_LOAD_FAST_BORROW,
  |  |   89|    906|    &&TARGET_LOAD_FAST_BORROW_LOAD_FAST_BORROW,
  |  |   90|    906|    &&TARGET_LOAD_FAST_CHECK,
  |  |   91|    906|    &&TARGET_LOAD_FAST_LOAD_FAST,
  |  |   92|    906|    &&TARGET_LOAD_FROM_DICT_OR_DEREF,
  |  |   93|    906|    &&TARGET_LOAD_FROM_DICT_OR_GLOBALS,
  |  |   94|    906|    &&TARGET_LOAD_GLOBAL,
  |  |   95|    906|    &&TARGET_LOAD_NAME,
  |  |   96|    906|    &&TARGET_LOAD_SMALL_INT,
  |  |   97|    906|    &&TARGET_LOAD_SPECIAL,
  |  |   98|    906|    &&TARGET_LOAD_SUPER_ATTR,
  |  |   99|    906|    &&TARGET_MAKE_CELL,
  |  |  100|    906|    &&TARGET_MAP_ADD,
  |  |  101|    906|    &&TARGET_MATCH_CLASS,
  |  |  102|    906|    &&TARGET_POP_JUMP_IF_FALSE,
  |  |  103|    906|    &&TARGET_POP_JUMP_IF_NONE,
  |  |  104|    906|    &&TARGET_POP_JUMP_IF_NOT_NONE,
  |  |  105|    906|    &&TARGET_POP_JUMP_IF_TRUE,
  |  |  106|    906|    &&TARGET_RAISE_VARARGS,
  |  |  107|    906|    &&TARGET_RERAISE,
  |  |  108|    906|    &&TARGET_SEND,
  |  |  109|    906|    &&TARGET_SET_ADD,
  |  |  110|    906|    &&TARGET_SET_FUNCTION_ATTRIBUTE,
  |  |  111|    906|    &&TARGET_SET_UPDATE,
  |  |  112|    906|    &&TARGET_STORE_ATTR,
  |  |  113|    906|    &&TARGET_STORE_DEREF,
  |  |  114|    906|    &&TARGET_STORE_FAST,
  |  |  115|    906|    &&TARGET_STORE_FAST_LOAD_FAST,
  |  |  116|    906|    &&TARGET_STORE_FAST_STORE_FAST,
  |  |  117|    906|    &&TARGET_STORE_GLOBAL,
  |  |  118|    906|    &&TARGET_STORE_NAME,
  |  |  119|    906|    &&TARGET_SWAP,
  |  |  120|    906|    &&TARGET_UNPACK_EX,
  |  |  121|    906|    &&TARGET_UNPACK_SEQUENCE,
  |  |  122|    906|    &&TARGET_YIELD_VALUE,
  |  |  123|    906|    &&_unknown_opcode,
  |  |  124|    906|    &&_unknown_opcode,
  |  |  125|    906|    &&_unknown_opcode,
  |  |  126|    906|    &&_unknown_opcode,
  |  |  127|    906|    &&_unknown_opcode,
  |  |  128|    906|    &&_unknown_opcode,
  |  |  129|    906|    &&_unknown_opcode,
  |  |  130|    906|    &&_unknown_opcode,
  |  |  131|    906|    &&TARGET_RESUME,
  |  |  132|    906|    &&TARGET_BINARY_OP_ADD_FLOAT,
  |  |  133|    906|    &&TARGET_BINARY_OP_ADD_INT,
  |  |  134|    906|    &&TARGET_BINARY_OP_ADD_UNICODE,
  |  |  135|    906|    &&TARGET_BINARY_OP_EXTEND,
  |  |  136|    906|    &&TARGET_BINARY_OP_MULTIPLY_FLOAT,
  |  |  137|    906|    &&TARGET_BINARY_OP_MULTIPLY_INT,
  |  |  138|    906|    &&TARGET_BINARY_OP_SUBSCR_DICT,
  |  |  139|    906|    &&TARGET_BINARY_OP_SUBSCR_GETITEM,
  |  |  140|    906|    &&TARGET_BINARY_OP_SUBSCR_LIST_INT,
  |  |  141|    906|    &&TARGET_BINARY_OP_SUBSCR_LIST_SLICE,
  |  |  142|    906|    &&TARGET_BINARY_OP_SUBSCR_STR_INT,
  |  |  143|    906|    &&TARGET_BINARY_OP_SUBSCR_TUPLE_INT,
  |  |  144|    906|    &&TARGET_BINARY_OP_SUBSCR_USTR_INT,
  |  |  145|    906|    &&TARGET_BINARY_OP_SUBTRACT_FLOAT,
  |  |  146|    906|    &&TARGET_BINARY_OP_SUBTRACT_INT,
  |  |  147|    906|    &&TARGET_CALL_ALLOC_AND_ENTER_INIT,
  |  |  148|    906|    &&TARGET_CALL_BOUND_METHOD_EXACT_ARGS,
  |  |  149|    906|    &&TARGET_CALL_BOUND_METHOD_GENERAL,
  |  |  150|    906|    &&TARGET_CALL_BUILTIN_CLASS,
  |  |  151|    906|    &&TARGET_CALL_BUILTIN_FAST,
  |  |  152|    906|    &&TARGET_CALL_BUILTIN_FAST_WITH_KEYWORDS,
  |  |  153|    906|    &&TARGET_CALL_BUILTIN_O,
  |  |  154|    906|    &&TARGET_CALL_EX_NON_PY_GENERAL,
  |  |  155|    906|    &&TARGET_CALL_EX_PY,
  |  |  156|    906|    &&TARGET_CALL_ISINSTANCE,
  |  |  157|    906|    &&TARGET_CALL_KW_BOUND_METHOD,
  |  |  158|    906|    &&TARGET_CALL_KW_NON_PY,
  |  |  159|    906|    &&TARGET_CALL_KW_PY,
  |  |  160|    906|    &&TARGET_CALL_LEN,
  |  |  161|    906|    &&TARGET_CALL_LIST_APPEND,
  |  |  162|    906|    &&TARGET_CALL_METHOD_DESCRIPTOR_FAST,
  |  |  163|    906|    &&TARGET_CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS,
  |  |  164|    906|    &&TARGET_CALL_METHOD_DESCRIPTOR_NOARGS,
  |  |  165|    906|    &&TARGET_CALL_METHOD_DESCRIPTOR_O,
  |  |  166|    906|    &&TARGET_CALL_NON_PY_GENERAL,
  |  |  167|    906|    &&TARGET_CALL_PY_EXACT_ARGS,
  |  |  168|    906|    &&TARGET_CALL_PY_GENERAL,
  |  |  169|    906|    &&TARGET_CALL_STR_1,
  |  |  170|    906|    &&TARGET_CALL_TUPLE_1,
  |  |  171|    906|    &&TARGET_CALL_TYPE_1,
  |  |  172|    906|    &&TARGET_COMPARE_OP_FLOAT,
  |  |  173|    906|    &&TARGET_COMPARE_OP_INT,
  |  |  174|    906|    &&TARGET_COMPARE_OP_STR,
  |  |  175|    906|    &&TARGET_CONTAINS_OP_DICT,
  |  |  176|    906|    &&TARGET_CONTAINS_OP_SET,
  |  |  177|    906|    &&TARGET_FOR_ITER_GEN,
  |  |  178|    906|    &&TARGET_FOR_ITER_LIST,
  |  |  179|    906|    &&TARGET_FOR_ITER_RANGE,
  |  |  180|    906|    &&TARGET_FOR_ITER_TUPLE,
  |  |  181|    906|    &&TARGET_FOR_ITER_VIRTUAL,
  |  |  182|    906|    &&TARGET_GET_ITER_SELF,
  |  |  183|    906|    &&TARGET_GET_ITER_VIRTUAL,
  |  |  184|    906|    &&TARGET_JUMP_BACKWARD_JIT,
  |  |  185|    906|    &&TARGET_JUMP_BACKWARD_NO_JIT,
  |  |  186|    906|    &&TARGET_LOAD_ATTR_CLASS,
  |  |  187|    906|    &&TARGET_LOAD_ATTR_CLASS_WITH_METACLASS_CHECK,
  |  |  188|    906|    &&TARGET_LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN,
  |  |  189|    906|    &&TARGET_LOAD_ATTR_INSTANCE_VALUE,
  |  |  190|    906|    &&TARGET_LOAD_ATTR_METHOD_LAZY_DICT,
  |  |  191|    906|    &&TARGET_LOAD_ATTR_METHOD_NO_DICT,
  |  |  192|    906|    &&TARGET_LOAD_ATTR_METHOD_WITH_VALUES,
  |  |  193|    906|    &&TARGET_LOAD_ATTR_MODULE,
  |  |  194|    906|    &&TARGET_LOAD_ATTR_NONDESCRIPTOR_NO_DICT,
  |  |  195|    906|    &&TARGET_LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES,
  |  |  196|    906|    &&TARGET_LOAD_ATTR_PROPERTY,
  |  |  197|    906|    &&TARGET_LOAD_ATTR_SLOT,
  |  |  198|    906|    &&TARGET_LOAD_ATTR_WITH_HINT,
  |  |  199|    906|    &&TARGET_LOAD_GLOBAL_BUILTIN,
  |  |  200|    906|    &&TARGET_LOAD_GLOBAL_MODULE,
  |  |  201|    906|    &&TARGET_LOAD_SUPER_ATTR_ATTR,
  |  |  202|    906|    &&TARGET_LOAD_SUPER_ATTR_METHOD,
  |  |  203|    906|    &&TARGET_RESUME_CHECK,
  |  |  204|    906|    &&TARGET_RESUME_CHECK_JIT,
  |  |  205|    906|    &&TARGET_SEND_ASYNC_GEN,
  |  |  206|    906|    &&TARGET_SEND_GEN,
  |  |  207|    906|    &&TARGET_SEND_VIRTUAL,
  |  |  208|    906|    &&TARGET_STORE_ATTR_INSTANCE_VALUE,
  |  |  209|    906|    &&TARGET_STORE_ATTR_SLOT,
  |  |  210|    906|    &&TARGET_STORE_ATTR_WITH_HINT,
  |  |  211|    906|    &&TARGET_STORE_SUBSCR_DICT,
  |  |  212|    906|    &&TARGET_STORE_SUBSCR_LIST_INT,
  |  |  213|    906|    &&TARGET_TO_BOOL_ALWAYS_TRUE,
  |  |  214|    906|    &&TARGET_TO_BOOL_BOOL,
  |  |  215|    906|    &&TARGET_TO_BOOL_INT,
  |  |  216|    906|    &&TARGET_TO_BOOL_LIST,
  |  |  217|    906|    &&TARGET_TO_BOOL_NONE,
  |  |  218|    906|    &&TARGET_TO_BOOL_STR,
  |  |  219|    906|    &&TARGET_UNPACK_SEQUENCE_LIST,
  |  |  220|    906|    &&TARGET_UNPACK_SEQUENCE_TUPLE,
  |  |  221|    906|    &&TARGET_UNPACK_SEQUENCE_TWO_TUPLE,
  |  |  222|    906|    &&_unknown_opcode,
  |  |  223|    906|    &&_unknown_opcode,
  |  |  224|    906|    &&_unknown_opcode,
  |  |  225|    906|    &&_unknown_opcode,
  |  |  226|    906|    &&_unknown_opcode,
  |  |  227|    906|    &&_unknown_opcode,
  |  |  228|    906|    &&_unknown_opcode,
  |  |  229|    906|    &&_unknown_opcode,
  |  |  230|    906|    &&_unknown_opcode,
  |  |  231|    906|    &&_unknown_opcode,
  |  |  232|    906|    &&_unknown_opcode,
  |  |  233|    906|    &&_unknown_opcode,
  |  |  234|    906|    &&_unknown_opcode,
  |  |  235|    906|    &&_unknown_opcode,
  |  |  236|    906|    &&TARGET_INSTRUMENTED_END_FOR,
  |  |  237|    906|    &&TARGET_INSTRUMENTED_POP_ITER,
  |  |  238|    906|    &&TARGET_INSTRUMENTED_END_SEND,
  |  |  239|    906|    &&TARGET_INSTRUMENTED_FOR_ITER,
  |  |  240|    906|    &&TARGET_INSTRUMENTED_INSTRUCTION,
  |  |  241|    906|    &&TARGET_INSTRUMENTED_JUMP_FORWARD,
  |  |  242|    906|    &&TARGET_INSTRUMENTED_NOT_TAKEN,
  |  |  243|    906|    &&TARGET_INSTRUMENTED_POP_JUMP_IF_TRUE,
  |  |  244|    906|    &&TARGET_INSTRUMENTED_POP_JUMP_IF_FALSE,
  |  |  245|    906|    &&TARGET_INSTRUMENTED_POP_JUMP_IF_NONE,
  |  |  246|    906|    &&TARGET_INSTRUMENTED_POP_JUMP_IF_NOT_NONE,
  |  |  247|    906|    &&TARGET_INSTRUMENTED_RESUME,
  |  |  248|    906|    &&TARGET_INSTRUMENTED_RETURN_VALUE,
  |  |  249|    906|    &&TARGET_INSTRUMENTED_YIELD_VALUE,
  |  |  250|    906|    &&TARGET_INSTRUMENTED_END_ASYNC_FOR,
  |  |  251|    906|    &&TARGET_INSTRUMENTED_LOAD_SUPER_ATTR,
  |  |  252|    906|    &&TARGET_INSTRUMENTED_CALL,
  |  |  253|    906|    &&TARGET_INSTRUMENTED_CALL_KW,
  |  |  254|    906|    &&TARGET_INSTRUMENTED_CALL_FUNCTION_EX,
  |  |  255|    906|    &&TARGET_INSTRUMENTED_JUMP_BACKWARD,
  |  |  256|    906|    &&TARGET_INSTRUMENTED_LINE,
  |  |  257|    906|    &&TARGET_ENTER_EXECUTOR,
  |  |  258|    906|    &&TARGET_TRACE_RECORD,
  |  |  259|    906|};
  |  |  260|       |#if _Py_TIER2
  |  |  261|       |static void *opcode_tracing_targets_table[256] = {
  |  |  262|       |    &&TARGET_TRACE_RECORD,
  |  |  263|       |    &&TARGET_TRACE_RECORD,
  |  |  264|       |    &&TARGET_TRACE_RECORD,
  |  |  265|       |    &&TARGET_TRACE_RECORD,
  |  |  266|       |    &&TARGET_TRACE_RECORD,
  |  |  267|       |    &&TARGET_TRACE_RECORD,
  |  |  268|       |    &&TARGET_TRACE_RECORD,
  |  |  269|       |    &&TARGET_TRACE_RECORD,
  |  |  270|       |    &&TARGET_TRACE_RECORD,
  |  |  271|       |    &&TARGET_TRACE_RECORD,
  |  |  272|       |    &&TARGET_TRACE_RECORD,
  |  |  273|       |    &&TARGET_TRACE_RECORD,
  |  |  274|       |    &&TARGET_TRACE_RECORD,
  |  |  275|       |    &&TARGET_TRACE_RECORD,
  |  |  276|       |    &&TARGET_TRACE_RECORD,
  |  |  277|       |    &&TARGET_TRACE_RECORD,
  |  |  278|       |    &&TARGET_TRACE_RECORD,
  |  |  279|       |    &&TARGET_TRACE_RECORD,
  |  |  280|       |    &&TARGET_TRACE_RECORD,
  |  |  281|       |    &&TARGET_TRACE_RECORD,
  |  |  282|       |    &&TARGET_TRACE_RECORD,
  |  |  283|       |    &&TARGET_TRACE_RECORD,
  |  |  284|       |    &&TARGET_TRACE_RECORD,
  |  |  285|       |    &&TARGET_TRACE_RECORD,
  |  |  286|       |    &&TARGET_TRACE_RECORD,
  |  |  287|       |    &&TARGET_TRACE_RECORD,
  |  |  288|       |    &&TARGET_TRACE_RECORD,
  |  |  289|       |    &&TARGET_TRACE_RECORD,
  |  |  290|       |    &&TARGET_TRACE_RECORD,
  |  |  291|       |    &&TARGET_TRACE_RECORD,
  |  |  292|       |    &&TARGET_TRACE_RECORD,
  |  |  293|       |    &&TARGET_TRACE_RECORD,
  |  |  294|       |    &&TARGET_TRACE_RECORD,
  |  |  295|       |    &&TARGET_TRACE_RECORD,
  |  |  296|       |    &&TARGET_TRACE_RECORD,
  |  |  297|       |    &&TARGET_TRACE_RECORD,
  |  |  298|       |    &&TARGET_TRACE_RECORD,
  |  |  299|       |    &&TARGET_TRACE_RECORD,
  |  |  300|       |    &&TARGET_TRACE_RECORD,
  |  |  301|       |    &&TARGET_TRACE_RECORD,
  |  |  302|       |    &&TARGET_TRACE_RECORD,
  |  |  303|       |    &&TARGET_TRACE_RECORD,
  |  |  304|       |    &&TARGET_TRACE_RECORD,
  |  |  305|       |    &&TARGET_TRACE_RECORD,
  |  |  306|       |    &&TARGET_TRACE_RECORD,
  |  |  307|       |    &&TARGET_TRACE_RECORD,
  |  |  308|       |    &&TARGET_TRACE_RECORD,
  |  |  309|       |    &&TARGET_TRACE_RECORD,
  |  |  310|       |    &&TARGET_TRACE_RECORD,
  |  |  311|       |    &&TARGET_TRACE_RECORD,
  |  |  312|       |    &&TARGET_TRACE_RECORD,
  |  |  313|       |    &&TARGET_TRACE_RECORD,
  |  |  314|       |    &&TARGET_TRACE_RECORD,
  |  |  315|       |    &&TARGET_TRACE_RECORD,
  |  |  316|       |    &&TARGET_TRACE_RECORD,
  |  |  317|       |    &&TARGET_TRACE_RECORD,
  |  |  318|       |    &&TARGET_TRACE_RECORD,
  |  |  319|       |    &&TARGET_TRACE_RECORD,
  |  |  320|       |    &&TARGET_TRACE_RECORD,
  |  |  321|       |    &&TARGET_TRACE_RECORD,
  |  |  322|       |    &&TARGET_TRACE_RECORD,
  |  |  323|       |    &&TARGET_TRACE_RECORD,
  |  |  324|       |    &&TARGET_TRACE_RECORD,
  |  |  325|       |    &&TARGET_TRACE_RECORD,
  |  |  326|       |    &&TARGET_TRACE_RECORD,
  |  |  327|       |    &&TARGET_TRACE_RECORD,
  |  |  328|       |    &&TARGET_TRACE_RECORD,
  |  |  329|       |    &&TARGET_TRACE_RECORD,
  |  |  330|       |    &&TARGET_TRACE_RECORD,
  |  |  331|       |    &&TARGET_TRACE_RECORD,
  |  |  332|       |    &&TARGET_TRACE_RECORD,
  |  |  333|       |    &&TARGET_TRACE_RECORD,
  |  |  334|       |    &&TARGET_TRACE_RECORD,
  |  |  335|       |    &&TARGET_TRACE_RECORD,
  |  |  336|       |    &&TARGET_TRACE_RECORD,
  |  |  337|       |    &&TARGET_TRACE_RECORD,
  |  |  338|       |    &&TARGET_TRACE_RECORD,
  |  |  339|       |    &&TARGET_TRACE_RECORD,
  |  |  340|       |    &&TARGET_TRACE_RECORD,
  |  |  341|       |    &&TARGET_TRACE_RECORD,
  |  |  342|       |    &&TARGET_TRACE_RECORD,
  |  |  343|       |    &&TARGET_TRACE_RECORD,
  |  |  344|       |    &&TARGET_TRACE_RECORD,
  |  |  345|       |    &&TARGET_TRACE_RECORD,
  |  |  346|       |    &&TARGET_TRACE_RECORD,
  |  |  347|       |    &&TARGET_TRACE_RECORD,
  |  |  348|       |    &&TARGET_TRACE_RECORD,
  |  |  349|       |    &&TARGET_TRACE_RECORD,
  |  |  350|       |    &&TARGET_TRACE_RECORD,
  |  |  351|       |    &&TARGET_TRACE_RECORD,
  |  |  352|       |    &&TARGET_TRACE_RECORD,
  |  |  353|       |    &&TARGET_TRACE_RECORD,
  |  |  354|       |    &&TARGET_TRACE_RECORD,
  |  |  355|       |    &&TARGET_TRACE_RECORD,
  |  |  356|       |    &&TARGET_TRACE_RECORD,
  |  |  357|       |    &&TARGET_TRACE_RECORD,
  |  |  358|       |    &&TARGET_TRACE_RECORD,
  |  |  359|       |    &&TARGET_TRACE_RECORD,
  |  |  360|       |    &&TARGET_TRACE_RECORD,
  |  |  361|       |    &&TARGET_TRACE_RECORD,
  |  |  362|       |    &&TARGET_TRACE_RECORD,
  |  |  363|       |    &&TARGET_TRACE_RECORD,
  |  |  364|       |    &&TARGET_TRACE_RECORD,
  |  |  365|       |    &&TARGET_TRACE_RECORD,
  |  |  366|       |    &&TARGET_TRACE_RECORD,
  |  |  367|       |    &&TARGET_TRACE_RECORD,
  |  |  368|       |    &&TARGET_TRACE_RECORD,
  |  |  369|       |    &&TARGET_TRACE_RECORD,
  |  |  370|       |    &&TARGET_TRACE_RECORD,
  |  |  371|       |    &&TARGET_TRACE_RECORD,
  |  |  372|       |    &&TARGET_TRACE_RECORD,
  |  |  373|       |    &&TARGET_TRACE_RECORD,
  |  |  374|       |    &&TARGET_TRACE_RECORD,
  |  |  375|       |    &&TARGET_TRACE_RECORD,
  |  |  376|       |    &&TARGET_TRACE_RECORD,
  |  |  377|       |    &&TARGET_TRACE_RECORD,
  |  |  378|       |    &&TARGET_TRACE_RECORD,
  |  |  379|       |    &&TARGET_TRACE_RECORD,
  |  |  380|       |    &&TARGET_TRACE_RECORD,
  |  |  381|       |    &&TARGET_TRACE_RECORD,
  |  |  382|       |    &&_unknown_opcode,
  |  |  383|       |    &&_unknown_opcode,
  |  |  384|       |    &&_unknown_opcode,
  |  |  385|       |    &&_unknown_opcode,
  |  |  386|       |    &&_unknown_opcode,
  |  |  387|       |    &&_unknown_opcode,
  |  |  388|       |    &&_unknown_opcode,
  |  |  389|       |    &&_unknown_opcode,
  |  |  390|       |    &&TARGET_TRACE_RECORD,
  |  |  391|       |    &&TARGET_TRACE_RECORD,
  |  |  392|       |    &&TARGET_TRACE_RECORD,
  |  |  393|       |    &&TARGET_TRACE_RECORD,
  |  |  394|       |    &&TARGET_TRACE_RECORD,
  |  |  395|       |    &&TARGET_TRACE_RECORD,
  |  |  396|       |    &&TARGET_TRACE_RECORD,
  |  |  397|       |    &&TARGET_TRACE_RECORD,
  |  |  398|       |    &&TARGET_TRACE_RECORD,
  |  |  399|       |    &&TARGET_TRACE_RECORD,
  |  |  400|       |    &&TARGET_TRACE_RECORD,
  |  |  401|       |    &&TARGET_TRACE_RECORD,
  |  |  402|       |    &&TARGET_TRACE_RECORD,
  |  |  403|       |    &&TARGET_TRACE_RECORD,
  |  |  404|       |    &&TARGET_TRACE_RECORD,
  |  |  405|       |    &&TARGET_TRACE_RECORD,
  |  |  406|       |    &&TARGET_TRACE_RECORD,
  |  |  407|       |    &&TARGET_TRACE_RECORD,
  |  |  408|       |    &&TARGET_TRACE_RECORD,
  |  |  409|       |    &&TARGET_TRACE_RECORD,
  |  |  410|       |    &&TARGET_TRACE_RECORD,
  |  |  411|       |    &&TARGET_TRACE_RECORD,
  |  |  412|       |    &&TARGET_TRACE_RECORD,
  |  |  413|       |    &&TARGET_TRACE_RECORD,
  |  |  414|       |    &&TARGET_TRACE_RECORD,
  |  |  415|       |    &&TARGET_TRACE_RECORD,
  |  |  416|       |    &&TARGET_TRACE_RECORD,
  |  |  417|       |    &&TARGET_TRACE_RECORD,
  |  |  418|       |    &&TARGET_TRACE_RECORD,
  |  |  419|       |    &&TARGET_TRACE_RECORD,
  |  |  420|       |    &&TARGET_TRACE_RECORD,
  |  |  421|       |    &&TARGET_TRACE_RECORD,
  |  |  422|       |    &&TARGET_TRACE_RECORD,
  |  |  423|       |    &&TARGET_TRACE_RECORD,
  |  |  424|       |    &&TARGET_TRACE_RECORD,
  |  |  425|       |    &&TARGET_TRACE_RECORD,
  |  |  426|       |    &&TARGET_TRACE_RECORD,
  |  |  427|       |    &&TARGET_TRACE_RECORD,
  |  |  428|       |    &&TARGET_TRACE_RECORD,
  |  |  429|       |    &&TARGET_TRACE_RECORD,
  |  |  430|       |    &&TARGET_TRACE_RECORD,
  |  |  431|       |    &&TARGET_TRACE_RECORD,
  |  |  432|       |    &&TARGET_TRACE_RECORD,
  |  |  433|       |    &&TARGET_TRACE_RECORD,
  |  |  434|       |    &&TARGET_TRACE_RECORD,
  |  |  435|       |    &&TARGET_TRACE_RECORD,
  |  |  436|       |    &&TARGET_TRACE_RECORD,
  |  |  437|       |    &&TARGET_TRACE_RECORD,
  |  |  438|       |    &&TARGET_TRACE_RECORD,
  |  |  439|       |    &&TARGET_TRACE_RECORD,
  |  |  440|       |    &&TARGET_TRACE_RECORD,
  |  |  441|       |    &&TARGET_TRACE_RECORD,
  |  |  442|       |    &&TARGET_TRACE_RECORD,
  |  |  443|       |    &&TARGET_TRACE_RECORD,
  |  |  444|       |    &&TARGET_TRACE_RECORD,
  |  |  445|       |    &&TARGET_TRACE_RECORD,
  |  |  446|       |    &&TARGET_TRACE_RECORD,
  |  |  447|       |    &&TARGET_TRACE_RECORD,
  |  |  448|       |    &&TARGET_TRACE_RECORD,
  |  |  449|       |    &&TARGET_TRACE_RECORD,
  |  |  450|       |    &&TARGET_TRACE_RECORD,
  |  |  451|       |    &&TARGET_TRACE_RECORD,
  |  |  452|       |    &&TARGET_TRACE_RECORD,
  |  |  453|       |    &&TARGET_TRACE_RECORD,
  |  |  454|       |    &&TARGET_TRACE_RECORD,
  |  |  455|       |    &&TARGET_TRACE_RECORD,
  |  |  456|       |    &&TARGET_TRACE_RECORD,
  |  |  457|       |    &&TARGET_TRACE_RECORD,
  |  |  458|       |    &&TARGET_TRACE_RECORD,
  |  |  459|       |    &&TARGET_TRACE_RECORD,
  |  |  460|       |    &&TARGET_TRACE_RECORD,
  |  |  461|       |    &&TARGET_TRACE_RECORD,
  |  |  462|       |    &&TARGET_TRACE_RECORD,
  |  |  463|       |    &&TARGET_TRACE_RECORD,
  |  |  464|       |    &&TARGET_TRACE_RECORD,
  |  |  465|       |    &&TARGET_TRACE_RECORD,
  |  |  466|       |    &&TARGET_TRACE_RECORD,
  |  |  467|       |    &&TARGET_TRACE_RECORD,
  |  |  468|       |    &&TARGET_TRACE_RECORD,
  |  |  469|       |    &&TARGET_TRACE_RECORD,
  |  |  470|       |    &&TARGET_TRACE_RECORD,
  |  |  471|       |    &&TARGET_TRACE_RECORD,
  |  |  472|       |    &&TARGET_TRACE_RECORD,
  |  |  473|       |    &&TARGET_TRACE_RECORD,
  |  |  474|       |    &&TARGET_TRACE_RECORD,
  |  |  475|       |    &&TARGET_TRACE_RECORD,
  |  |  476|       |    &&TARGET_TRACE_RECORD,
  |  |  477|       |    &&TARGET_TRACE_RECORD,
  |  |  478|       |    &&TARGET_TRACE_RECORD,
  |  |  479|       |    &&TARGET_TRACE_RECORD,
  |  |  480|       |    &&TARGET_TRACE_RECORD,
  |  |  481|       |    &&_unknown_opcode,
  |  |  482|       |    &&_unknown_opcode,
  |  |  483|       |    &&_unknown_opcode,
  |  |  484|       |    &&_unknown_opcode,
  |  |  485|       |    &&_unknown_opcode,
  |  |  486|       |    &&_unknown_opcode,
  |  |  487|       |    &&_unknown_opcode,
  |  |  488|       |    &&_unknown_opcode,
  |  |  489|       |    &&_unknown_opcode,
  |  |  490|       |    &&_unknown_opcode,
  |  |  491|       |    &&_unknown_opcode,
  |  |  492|       |    &&_unknown_opcode,
  |  |  493|       |    &&_unknown_opcode,
  |  |  494|       |    &&_unknown_opcode,
  |  |  495|       |    &&TARGET_TRACE_RECORD,
  |  |  496|       |    &&TARGET_TRACE_RECORD,
  |  |  497|       |    &&TARGET_TRACE_RECORD,
  |  |  498|       |    &&TARGET_TRACE_RECORD,
  |  |  499|       |    &&TARGET_TRACE_RECORD,
  |  |  500|       |    &&TARGET_TRACE_RECORD,
  |  |  501|       |    &&TARGET_TRACE_RECORD,
  |  |  502|       |    &&TARGET_TRACE_RECORD,
  |  |  503|       |    &&TARGET_TRACE_RECORD,
  |  |  504|       |    &&TARGET_TRACE_RECORD,
  |  |  505|       |    &&TARGET_TRACE_RECORD,
  |  |  506|       |    &&TARGET_TRACE_RECORD,
  |  |  507|       |    &&TARGET_TRACE_RECORD,
  |  |  508|       |    &&TARGET_TRACE_RECORD,
  |  |  509|       |    &&TARGET_TRACE_RECORD,
  |  |  510|       |    &&TARGET_TRACE_RECORD,
  |  |  511|       |    &&TARGET_TRACE_RECORD,
  |  |  512|       |    &&TARGET_TRACE_RECORD,
  |  |  513|       |    &&TARGET_TRACE_RECORD,
  |  |  514|       |    &&TARGET_TRACE_RECORD,
  |  |  515|       |    &&TARGET_TRACE_RECORD,
  |  |  516|       |    &&TARGET_TRACE_RECORD,
  |  |  517|       |    &&TARGET_TRACE_RECORD,
  |  |  518|       |};
  |  |  519|       |#endif
  |  |  520|       |#else /* _Py_TAIL_CALL_INTERP */
  |  |  521|       |static py_tail_call_funcptr instruction_funcptr_handler_table[256];
  |  |  522|       |
  |  |  523|       |static py_tail_call_funcptr instruction_funcptr_tracing_table[256];
  |  |  524|       |
  |  |  525|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_pop_2_error(TAIL_CALL_PARAMS);
  |  |  526|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_pop_1_error(TAIL_CALL_PARAMS);
  |  |  527|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_error(TAIL_CALL_PARAMS);
  |  |  528|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_exception_unwind(TAIL_CALL_PARAMS);
  |  |  529|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_exit_unwind(TAIL_CALL_PARAMS);
  |  |  530|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_exit_unwind_notrace(TAIL_CALL_PARAMS);
  |  |  531|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_start_frame(TAIL_CALL_PARAMS);
  |  |  532|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_stop_tracing(TAIL_CALL_PARAMS);
  |  |  533|       |
  |  |  534|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP(TAIL_CALL_PARAMS);
  |  |  535|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_ADD_FLOAT(TAIL_CALL_PARAMS);
  |  |  536|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_ADD_INT(TAIL_CALL_PARAMS);
  |  |  537|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_ADD_UNICODE(TAIL_CALL_PARAMS);
  |  |  538|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_EXTEND(TAIL_CALL_PARAMS);
  |  |  539|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_INPLACE_ADD_UNICODE(TAIL_CALL_PARAMS);
  |  |  540|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_MULTIPLY_FLOAT(TAIL_CALL_PARAMS);
  |  |  541|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_MULTIPLY_INT(TAIL_CALL_PARAMS);
  |  |  542|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBSCR_DICT(TAIL_CALL_PARAMS);
  |  |  543|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBSCR_GETITEM(TAIL_CALL_PARAMS);
  |  |  544|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBSCR_LIST_INT(TAIL_CALL_PARAMS);
  |  |  545|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBSCR_LIST_SLICE(TAIL_CALL_PARAMS);
  |  |  546|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBSCR_STR_INT(TAIL_CALL_PARAMS);
  |  |  547|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBSCR_TUPLE_INT(TAIL_CALL_PARAMS);
  |  |  548|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBSCR_USTR_INT(TAIL_CALL_PARAMS);
  |  |  549|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBTRACT_FLOAT(TAIL_CALL_PARAMS);
  |  |  550|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_OP_SUBTRACT_INT(TAIL_CALL_PARAMS);
  |  |  551|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BINARY_SLICE(TAIL_CALL_PARAMS);
  |  |  552|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_INTERPOLATION(TAIL_CALL_PARAMS);
  |  |  553|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_LIST(TAIL_CALL_PARAMS);
  |  |  554|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_MAP(TAIL_CALL_PARAMS);
  |  |  555|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_SET(TAIL_CALL_PARAMS);
  |  |  556|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_SLICE(TAIL_CALL_PARAMS);
  |  |  557|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_STRING(TAIL_CALL_PARAMS);
  |  |  558|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_TEMPLATE(TAIL_CALL_PARAMS);
  |  |  559|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_BUILD_TUPLE(TAIL_CALL_PARAMS);
  |  |  560|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CACHE(TAIL_CALL_PARAMS);
  |  |  561|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL(TAIL_CALL_PARAMS);
  |  |  562|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_ALLOC_AND_ENTER_INIT(TAIL_CALL_PARAMS);
  |  |  563|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_BOUND_METHOD_EXACT_ARGS(TAIL_CALL_PARAMS);
  |  |  564|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_BOUND_METHOD_GENERAL(TAIL_CALL_PARAMS);
  |  |  565|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_BUILTIN_CLASS(TAIL_CALL_PARAMS);
  |  |  566|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_BUILTIN_FAST(TAIL_CALL_PARAMS);
  |  |  567|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_BUILTIN_FAST_WITH_KEYWORDS(TAIL_CALL_PARAMS);
  |  |  568|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_BUILTIN_O(TAIL_CALL_PARAMS);
  |  |  569|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_EX_NON_PY_GENERAL(TAIL_CALL_PARAMS);
  |  |  570|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_EX_PY(TAIL_CALL_PARAMS);
  |  |  571|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_FUNCTION_EX(TAIL_CALL_PARAMS);
  |  |  572|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_INTRINSIC_1(TAIL_CALL_PARAMS);
  |  |  573|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_INTRINSIC_2(TAIL_CALL_PARAMS);
  |  |  574|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_ISINSTANCE(TAIL_CALL_PARAMS);
  |  |  575|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_KW(TAIL_CALL_PARAMS);
  |  |  576|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_KW_BOUND_METHOD(TAIL_CALL_PARAMS);
  |  |  577|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_KW_NON_PY(TAIL_CALL_PARAMS);
  |  |  578|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_KW_PY(TAIL_CALL_PARAMS);
  |  |  579|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_LEN(TAIL_CALL_PARAMS);
  |  |  580|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_LIST_APPEND(TAIL_CALL_PARAMS);
  |  |  581|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_METHOD_DESCRIPTOR_FAST(TAIL_CALL_PARAMS);
  |  |  582|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS(TAIL_CALL_PARAMS);
  |  |  583|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_METHOD_DESCRIPTOR_NOARGS(TAIL_CALL_PARAMS);
  |  |  584|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_METHOD_DESCRIPTOR_O(TAIL_CALL_PARAMS);
  |  |  585|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_NON_PY_GENERAL(TAIL_CALL_PARAMS);
  |  |  586|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_PY_EXACT_ARGS(TAIL_CALL_PARAMS);
  |  |  587|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_PY_GENERAL(TAIL_CALL_PARAMS);
  |  |  588|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_STR_1(TAIL_CALL_PARAMS);
  |  |  589|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_TUPLE_1(TAIL_CALL_PARAMS);
  |  |  590|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CALL_TYPE_1(TAIL_CALL_PARAMS);
  |  |  591|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CHECK_EG_MATCH(TAIL_CALL_PARAMS);
  |  |  592|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CHECK_EXC_MATCH(TAIL_CALL_PARAMS);
  |  |  593|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CLEANUP_THROW(TAIL_CALL_PARAMS);
  |  |  594|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_COMPARE_OP(TAIL_CALL_PARAMS);
  |  |  595|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_COMPARE_OP_FLOAT(TAIL_CALL_PARAMS);
  |  |  596|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_COMPARE_OP_INT(TAIL_CALL_PARAMS);
  |  |  597|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_COMPARE_OP_STR(TAIL_CALL_PARAMS);
  |  |  598|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CONTAINS_OP(TAIL_CALL_PARAMS);
  |  |  599|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CONTAINS_OP_DICT(TAIL_CALL_PARAMS);
  |  |  600|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CONTAINS_OP_SET(TAIL_CALL_PARAMS);
  |  |  601|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_CONVERT_VALUE(TAIL_CALL_PARAMS);
  |  |  602|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_COPY(TAIL_CALL_PARAMS);
  |  |  603|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_COPY_FREE_VARS(TAIL_CALL_PARAMS);
  |  |  604|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DELETE_ATTR(TAIL_CALL_PARAMS);
  |  |  605|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DELETE_DEREF(TAIL_CALL_PARAMS);
  |  |  606|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DELETE_FAST(TAIL_CALL_PARAMS);
  |  |  607|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DELETE_GLOBAL(TAIL_CALL_PARAMS);
  |  |  608|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DELETE_NAME(TAIL_CALL_PARAMS);
  |  |  609|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DELETE_SUBSCR(TAIL_CALL_PARAMS);
  |  |  610|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DICT_MERGE(TAIL_CALL_PARAMS);
  |  |  611|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_DICT_UPDATE(TAIL_CALL_PARAMS);
  |  |  612|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_END_ASYNC_FOR(TAIL_CALL_PARAMS);
  |  |  613|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_END_FOR(TAIL_CALL_PARAMS);
  |  |  614|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_END_SEND(TAIL_CALL_PARAMS);
  |  |  615|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_ENTER_EXECUTOR(TAIL_CALL_PARAMS);
  |  |  616|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_EXIT_INIT_CHECK(TAIL_CALL_PARAMS);
  |  |  617|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_EXTENDED_ARG(TAIL_CALL_PARAMS);
  |  |  618|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FORMAT_SIMPLE(TAIL_CALL_PARAMS);
  |  |  619|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FORMAT_WITH_SPEC(TAIL_CALL_PARAMS);
  |  |  620|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FOR_ITER(TAIL_CALL_PARAMS);
  |  |  621|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FOR_ITER_GEN(TAIL_CALL_PARAMS);
  |  |  622|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FOR_ITER_LIST(TAIL_CALL_PARAMS);
  |  |  623|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FOR_ITER_RANGE(TAIL_CALL_PARAMS);
  |  |  624|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FOR_ITER_TUPLE(TAIL_CALL_PARAMS);
  |  |  625|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_FOR_ITER_VIRTUAL(TAIL_CALL_PARAMS);
  |  |  626|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_GET_AITER(TAIL_CALL_PARAMS);
  |  |  627|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_GET_ANEXT(TAIL_CALL_PARAMS);
  |  |  628|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_GET_AWAITABLE(TAIL_CALL_PARAMS);
  |  |  629|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_GET_ITER(TAIL_CALL_PARAMS);
  |  |  630|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_GET_ITER_SELF(TAIL_CALL_PARAMS);
  |  |  631|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_GET_ITER_VIRTUAL(TAIL_CALL_PARAMS);
  |  |  632|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_GET_LEN(TAIL_CALL_PARAMS);
  |  |  633|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_IMPORT_FROM(TAIL_CALL_PARAMS);
  |  |  634|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_IMPORT_NAME(TAIL_CALL_PARAMS);
  |  |  635|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_CALL(TAIL_CALL_PARAMS);
  |  |  636|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_CALL_FUNCTION_EX(TAIL_CALL_PARAMS);
  |  |  637|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_CALL_KW(TAIL_CALL_PARAMS);
  |  |  638|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_END_ASYNC_FOR(TAIL_CALL_PARAMS);
  |  |  639|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_END_FOR(TAIL_CALL_PARAMS);
  |  |  640|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_END_SEND(TAIL_CALL_PARAMS);
  |  |  641|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_FOR_ITER(TAIL_CALL_PARAMS);
  |  |  642|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_INSTRUCTION(TAIL_CALL_PARAMS);
  |  |  643|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_JUMP_BACKWARD(TAIL_CALL_PARAMS);
  |  |  644|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_JUMP_FORWARD(TAIL_CALL_PARAMS);
  |  |  645|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_LINE(TAIL_CALL_PARAMS);
  |  |  646|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_LOAD_SUPER_ATTR(TAIL_CALL_PARAMS);
  |  |  647|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_NOT_TAKEN(TAIL_CALL_PARAMS);
  |  |  648|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_POP_ITER(TAIL_CALL_PARAMS);
  |  |  649|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_FALSE(TAIL_CALL_PARAMS);
  |  |  650|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_NONE(TAIL_CALL_PARAMS);
  |  |  651|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_NOT_NONE(TAIL_CALL_PARAMS);
  |  |  652|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_TRUE(TAIL_CALL_PARAMS);
  |  |  653|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_RESUME(TAIL_CALL_PARAMS);
  |  |  654|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_RETURN_VALUE(TAIL_CALL_PARAMS);
  |  |  655|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INSTRUMENTED_YIELD_VALUE(TAIL_CALL_PARAMS);
  |  |  656|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_INTERPRETER_EXIT(TAIL_CALL_PARAMS);
  |  |  657|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_IS_OP(TAIL_CALL_PARAMS);
  |  |  658|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_JUMP_BACKWARD(TAIL_CALL_PARAMS);
  |  |  659|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_JUMP_BACKWARD_JIT(TAIL_CALL_PARAMS);
  |  |  660|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_JUMP_BACKWARD_NO_INTERRUPT(TAIL_CALL_PARAMS);
  |  |  661|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_JUMP_BACKWARD_NO_JIT(TAIL_CALL_PARAMS);
  |  |  662|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_JUMP_FORWARD(TAIL_CALL_PARAMS);
  |  |  663|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LIST_APPEND(TAIL_CALL_PARAMS);
  |  |  664|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LIST_EXTEND(TAIL_CALL_PARAMS);
  |  |  665|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR(TAIL_CALL_PARAMS);
  |  |  666|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_CLASS(TAIL_CALL_PARAMS);
  |  |  667|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_CLASS_WITH_METACLASS_CHECK(TAIL_CALL_PARAMS);
  |  |  668|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN(TAIL_CALL_PARAMS);
  |  |  669|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_INSTANCE_VALUE(TAIL_CALL_PARAMS);
  |  |  670|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_METHOD_LAZY_DICT(TAIL_CALL_PARAMS);
  |  |  671|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_METHOD_NO_DICT(TAIL_CALL_PARAMS);
  |  |  672|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_METHOD_WITH_VALUES(TAIL_CALL_PARAMS);
  |  |  673|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_MODULE(TAIL_CALL_PARAMS);
  |  |  674|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_NONDESCRIPTOR_NO_DICT(TAIL_CALL_PARAMS);
  |  |  675|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES(TAIL_CALL_PARAMS);
  |  |  676|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_PROPERTY(TAIL_CALL_PARAMS);
  |  |  677|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_SLOT(TAIL_CALL_PARAMS);
  |  |  678|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_ATTR_WITH_HINT(TAIL_CALL_PARAMS);
  |  |  679|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_BUILD_CLASS(TAIL_CALL_PARAMS);
  |  |  680|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_COMMON_CONSTANT(TAIL_CALL_PARAMS);
  |  |  681|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_CONST(TAIL_CALL_PARAMS);
  |  |  682|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_DEREF(TAIL_CALL_PARAMS);
  |  |  683|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FAST(TAIL_CALL_PARAMS);
  |  |  684|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FAST_AND_CLEAR(TAIL_CALL_PARAMS);
  |  |  685|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FAST_BORROW(TAIL_CALL_PARAMS);
  |  |  686|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FAST_BORROW_LOAD_FAST_BORROW(TAIL_CALL_PARAMS);
  |  |  687|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FAST_CHECK(TAIL_CALL_PARAMS);
  |  |  688|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FAST_LOAD_FAST(TAIL_CALL_PARAMS);
  |  |  689|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FROM_DICT_OR_DEREF(TAIL_CALL_PARAMS);
  |  |  690|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_FROM_DICT_OR_GLOBALS(TAIL_CALL_PARAMS);
  |  |  691|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_GLOBAL(TAIL_CALL_PARAMS);
  |  |  692|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_GLOBAL_BUILTIN(TAIL_CALL_PARAMS);
  |  |  693|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_GLOBAL_MODULE(TAIL_CALL_PARAMS);
  |  |  694|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_LOCALS(TAIL_CALL_PARAMS);
  |  |  695|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_NAME(TAIL_CALL_PARAMS);
  |  |  696|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_SMALL_INT(TAIL_CALL_PARAMS);
  |  |  697|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_SPECIAL(TAIL_CALL_PARAMS);
  |  |  698|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_SUPER_ATTR(TAIL_CALL_PARAMS);
  |  |  699|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_SUPER_ATTR_ATTR(TAIL_CALL_PARAMS);
  |  |  700|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_LOAD_SUPER_ATTR_METHOD(TAIL_CALL_PARAMS);
  |  |  701|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_MAKE_CELL(TAIL_CALL_PARAMS);
  |  |  702|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_MAKE_FUNCTION(TAIL_CALL_PARAMS);
  |  |  703|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_MAP_ADD(TAIL_CALL_PARAMS);
  |  |  704|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_MATCH_CLASS(TAIL_CALL_PARAMS);
  |  |  705|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_MATCH_KEYS(TAIL_CALL_PARAMS);
  |  |  706|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_MATCH_MAPPING(TAIL_CALL_PARAMS);
  |  |  707|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_MATCH_SEQUENCE(TAIL_CALL_PARAMS);
  |  |  708|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_NOP(TAIL_CALL_PARAMS);
  |  |  709|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_NOT_TAKEN(TAIL_CALL_PARAMS);
  |  |  710|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_POP_EXCEPT(TAIL_CALL_PARAMS);
  |  |  711|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_POP_ITER(TAIL_CALL_PARAMS);
  |  |  712|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_POP_JUMP_IF_FALSE(TAIL_CALL_PARAMS);
  |  |  713|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_POP_JUMP_IF_NONE(TAIL_CALL_PARAMS);
  |  |  714|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_POP_JUMP_IF_NOT_NONE(TAIL_CALL_PARAMS);
  |  |  715|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_POP_JUMP_IF_TRUE(TAIL_CALL_PARAMS);
  |  |  716|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_POP_TOP(TAIL_CALL_PARAMS);
  |  |  717|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_PUSH_EXC_INFO(TAIL_CALL_PARAMS);
  |  |  718|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_PUSH_NULL(TAIL_CALL_PARAMS);
  |  |  719|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RAISE_VARARGS(TAIL_CALL_PARAMS);
  |  |  720|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RERAISE(TAIL_CALL_PARAMS);
  |  |  721|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RESERVED(TAIL_CALL_PARAMS);
  |  |  722|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RESUME(TAIL_CALL_PARAMS);
  |  |  723|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RESUME_CHECK(TAIL_CALL_PARAMS);
  |  |  724|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RESUME_CHECK_JIT(TAIL_CALL_PARAMS);
  |  |  725|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RETURN_GENERATOR(TAIL_CALL_PARAMS);
  |  |  726|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_RETURN_VALUE(TAIL_CALL_PARAMS);
  |  |  727|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SEND(TAIL_CALL_PARAMS);
  |  |  728|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SEND_ASYNC_GEN(TAIL_CALL_PARAMS);
  |  |  729|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SEND_GEN(TAIL_CALL_PARAMS);
  |  |  730|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SEND_VIRTUAL(TAIL_CALL_PARAMS);
  |  |  731|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SETUP_ANNOTATIONS(TAIL_CALL_PARAMS);
  |  |  732|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SET_ADD(TAIL_CALL_PARAMS);
  |  |  733|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SET_FUNCTION_ATTRIBUTE(TAIL_CALL_PARAMS);
  |  |  734|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SET_UPDATE(TAIL_CALL_PARAMS);
  |  |  735|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_ATTR(TAIL_CALL_PARAMS);
  |  |  736|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_ATTR_INSTANCE_VALUE(TAIL_CALL_PARAMS);
  |  |  737|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_ATTR_SLOT(TAIL_CALL_PARAMS);
  |  |  738|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_ATTR_WITH_HINT(TAIL_CALL_PARAMS);
  |  |  739|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_DEREF(TAIL_CALL_PARAMS);
  |  |  740|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_FAST(TAIL_CALL_PARAMS);
  |  |  741|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_FAST_LOAD_FAST(TAIL_CALL_PARAMS);
  |  |  742|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_FAST_STORE_FAST(TAIL_CALL_PARAMS);
  |  |  743|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_GLOBAL(TAIL_CALL_PARAMS);
  |  |  744|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_NAME(TAIL_CALL_PARAMS);
  |  |  745|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_SLICE(TAIL_CALL_PARAMS);
  |  |  746|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_SUBSCR(TAIL_CALL_PARAMS);
  |  |  747|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_SUBSCR_DICT(TAIL_CALL_PARAMS);
  |  |  748|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_STORE_SUBSCR_LIST_INT(TAIL_CALL_PARAMS);
  |  |  749|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_SWAP(TAIL_CALL_PARAMS);
  |  |  750|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TO_BOOL(TAIL_CALL_PARAMS);
  |  |  751|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TO_BOOL_ALWAYS_TRUE(TAIL_CALL_PARAMS);
  |  |  752|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TO_BOOL_BOOL(TAIL_CALL_PARAMS);
  |  |  753|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TO_BOOL_INT(TAIL_CALL_PARAMS);
  |  |  754|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TO_BOOL_LIST(TAIL_CALL_PARAMS);
  |  |  755|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TO_BOOL_NONE(TAIL_CALL_PARAMS);
  |  |  756|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TO_BOOL_STR(TAIL_CALL_PARAMS);
  |  |  757|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_TRACE_RECORD(TAIL_CALL_PARAMS);
  |  |  758|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNARY_INVERT(TAIL_CALL_PARAMS);
  |  |  759|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNARY_NEGATIVE(TAIL_CALL_PARAMS);
  |  |  760|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNARY_NOT(TAIL_CALL_PARAMS);
  |  |  761|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNPACK_EX(TAIL_CALL_PARAMS);
  |  |  762|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNPACK_SEQUENCE(TAIL_CALL_PARAMS);
  |  |  763|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNPACK_SEQUENCE_LIST(TAIL_CALL_PARAMS);
  |  |  764|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNPACK_SEQUENCE_TUPLE(TAIL_CALL_PARAMS);
  |  |  765|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNPACK_SEQUENCE_TWO_TUPLE(TAIL_CALL_PARAMS);
  |  |  766|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_WITH_EXCEPT_START(TAIL_CALL_PARAMS);
  |  |  767|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_YIELD_VALUE(TAIL_CALL_PARAMS);
  |  |  768|       |
  |  |  769|       |static PyObject *Py_PRESERVE_NONE_CC _TAIL_CALL_UNKNOWN_OPCODE(TAIL_CALL_PARAMS) {
  |  |  770|       |    int opcode = next_instr->op.code;
  |  |  771|       |    _PyErr_Format(tstate, PyExc_SystemError,
  |  |  772|       |              "%U:%d: unknown opcode %d",
  |  |  773|       |              _PyFrame_GetCode(frame)->co_filename,
  |  |  774|       |              PyUnstable_InterpreterFrame_GetLine(frame),
  |  |  775|       |              opcode);
  |  |  776|       |JUMP_TO_LABEL(error);
  |  |  777|       |}
  |  |  778|       |
  |  |  779|       |static py_tail_call_funcptr instruction_funcptr_handler_table[256] = {
  |  |  780|       |    [BINARY_OP] = _TAIL_CALL_BINARY_OP,
  |  |  781|       |    [BINARY_OP_ADD_FLOAT] = _TAIL_CALL_BINARY_OP_ADD_FLOAT,
  |  |  782|       |    [BINARY_OP_ADD_INT] = _TAIL_CALL_BINARY_OP_ADD_INT,
  |  |  783|       |    [BINARY_OP_ADD_UNICODE] = _TAIL_CALL_BINARY_OP_ADD_UNICODE,
  |  |  784|       |    [BINARY_OP_EXTEND] = _TAIL_CALL_BINARY_OP_EXTEND,
  |  |  785|       |    [BINARY_OP_INPLACE_ADD_UNICODE] = _TAIL_CALL_BINARY_OP_INPLACE_ADD_UNICODE,
  |  |  786|       |    [BINARY_OP_MULTIPLY_FLOAT] = _TAIL_CALL_BINARY_OP_MULTIPLY_FLOAT,
  |  |  787|       |    [BINARY_OP_MULTIPLY_INT] = _TAIL_CALL_BINARY_OP_MULTIPLY_INT,
  |  |  788|       |    [BINARY_OP_SUBSCR_DICT] = _TAIL_CALL_BINARY_OP_SUBSCR_DICT,
  |  |  789|       |    [BINARY_OP_SUBSCR_GETITEM] = _TAIL_CALL_BINARY_OP_SUBSCR_GETITEM,
  |  |  790|       |    [BINARY_OP_SUBSCR_LIST_INT] = _TAIL_CALL_BINARY_OP_SUBSCR_LIST_INT,
  |  |  791|       |    [BINARY_OP_SUBSCR_LIST_SLICE] = _TAIL_CALL_BINARY_OP_SUBSCR_LIST_SLICE,
  |  |  792|       |    [BINARY_OP_SUBSCR_STR_INT] = _TAIL_CALL_BINARY_OP_SUBSCR_STR_INT,
  |  |  793|       |    [BINARY_OP_SUBSCR_TUPLE_INT] = _TAIL_CALL_BINARY_OP_SUBSCR_TUPLE_INT,
  |  |  794|       |    [BINARY_OP_SUBSCR_USTR_INT] = _TAIL_CALL_BINARY_OP_SUBSCR_USTR_INT,
  |  |  795|       |    [BINARY_OP_SUBTRACT_FLOAT] = _TAIL_CALL_BINARY_OP_SUBTRACT_FLOAT,
  |  |  796|       |    [BINARY_OP_SUBTRACT_INT] = _TAIL_CALL_BINARY_OP_SUBTRACT_INT,
  |  |  797|       |    [BINARY_SLICE] = _TAIL_CALL_BINARY_SLICE,
  |  |  798|       |    [BUILD_INTERPOLATION] = _TAIL_CALL_BUILD_INTERPOLATION,
  |  |  799|       |    [BUILD_LIST] = _TAIL_CALL_BUILD_LIST,
  |  |  800|       |    [BUILD_MAP] = _TAIL_CALL_BUILD_MAP,
  |  |  801|       |    [BUILD_SET] = _TAIL_CALL_BUILD_SET,
  |  |  802|       |    [BUILD_SLICE] = _TAIL_CALL_BUILD_SLICE,
  |  |  803|       |    [BUILD_STRING] = _TAIL_CALL_BUILD_STRING,
  |  |  804|       |    [BUILD_TEMPLATE] = _TAIL_CALL_BUILD_TEMPLATE,
  |  |  805|       |    [BUILD_TUPLE] = _TAIL_CALL_BUILD_TUPLE,
  |  |  806|       |    [CACHE] = _TAIL_CALL_CACHE,
  |  |  807|       |    [CALL] = _TAIL_CALL_CALL,
  |  |  808|       |    [CALL_ALLOC_AND_ENTER_INIT] = _TAIL_CALL_CALL_ALLOC_AND_ENTER_INIT,
  |  |  809|       |    [CALL_BOUND_METHOD_EXACT_ARGS] = _TAIL_CALL_CALL_BOUND_METHOD_EXACT_ARGS,
  |  |  810|       |    [CALL_BOUND_METHOD_GENERAL] = _TAIL_CALL_CALL_BOUND_METHOD_GENERAL,
  |  |  811|       |    [CALL_BUILTIN_CLASS] = _TAIL_CALL_CALL_BUILTIN_CLASS,
  |  |  812|       |    [CALL_BUILTIN_FAST] = _TAIL_CALL_CALL_BUILTIN_FAST,
  |  |  813|       |    [CALL_BUILTIN_FAST_WITH_KEYWORDS] = _TAIL_CALL_CALL_BUILTIN_FAST_WITH_KEYWORDS,
  |  |  814|       |    [CALL_BUILTIN_O] = _TAIL_CALL_CALL_BUILTIN_O,
  |  |  815|       |    [CALL_EX_NON_PY_GENERAL] = _TAIL_CALL_CALL_EX_NON_PY_GENERAL,
  |  |  816|       |    [CALL_EX_PY] = _TAIL_CALL_CALL_EX_PY,
  |  |  817|       |    [CALL_FUNCTION_EX] = _TAIL_CALL_CALL_FUNCTION_EX,
  |  |  818|       |    [CALL_INTRINSIC_1] = _TAIL_CALL_CALL_INTRINSIC_1,
  |  |  819|       |    [CALL_INTRINSIC_2] = _TAIL_CALL_CALL_INTRINSIC_2,
  |  |  820|       |    [CALL_ISINSTANCE] = _TAIL_CALL_CALL_ISINSTANCE,
  |  |  821|       |    [CALL_KW] = _TAIL_CALL_CALL_KW,
  |  |  822|       |    [CALL_KW_BOUND_METHOD] = _TAIL_CALL_CALL_KW_BOUND_METHOD,
  |  |  823|       |    [CALL_KW_NON_PY] = _TAIL_CALL_CALL_KW_NON_PY,
  |  |  824|       |    [CALL_KW_PY] = _TAIL_CALL_CALL_KW_PY,
  |  |  825|       |    [CALL_LEN] = _TAIL_CALL_CALL_LEN,
  |  |  826|       |    [CALL_LIST_APPEND] = _TAIL_CALL_CALL_LIST_APPEND,
  |  |  827|       |    [CALL_METHOD_DESCRIPTOR_FAST] = _TAIL_CALL_CALL_METHOD_DESCRIPTOR_FAST,
  |  |  828|       |    [CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS] = _TAIL_CALL_CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS,
  |  |  829|       |    [CALL_METHOD_DESCRIPTOR_NOARGS] = _TAIL_CALL_CALL_METHOD_DESCRIPTOR_NOARGS,
  |  |  830|       |    [CALL_METHOD_DESCRIPTOR_O] = _TAIL_CALL_CALL_METHOD_DESCRIPTOR_O,
  |  |  831|       |    [CALL_NON_PY_GENERAL] = _TAIL_CALL_CALL_NON_PY_GENERAL,
  |  |  832|       |    [CALL_PY_EXACT_ARGS] = _TAIL_CALL_CALL_PY_EXACT_ARGS,
  |  |  833|       |    [CALL_PY_GENERAL] = _TAIL_CALL_CALL_PY_GENERAL,
  |  |  834|       |    [CALL_STR_1] = _TAIL_CALL_CALL_STR_1,
  |  |  835|       |    [CALL_TUPLE_1] = _TAIL_CALL_CALL_TUPLE_1,
  |  |  836|       |    [CALL_TYPE_1] = _TAIL_CALL_CALL_TYPE_1,
  |  |  837|       |    [CHECK_EG_MATCH] = _TAIL_CALL_CHECK_EG_MATCH,
  |  |  838|       |    [CHECK_EXC_MATCH] = _TAIL_CALL_CHECK_EXC_MATCH,
  |  |  839|       |    [CLEANUP_THROW] = _TAIL_CALL_CLEANUP_THROW,
  |  |  840|       |    [COMPARE_OP] = _TAIL_CALL_COMPARE_OP,
  |  |  841|       |    [COMPARE_OP_FLOAT] = _TAIL_CALL_COMPARE_OP_FLOAT,
  |  |  842|       |    [COMPARE_OP_INT] = _TAIL_CALL_COMPARE_OP_INT,
  |  |  843|       |    [COMPARE_OP_STR] = _TAIL_CALL_COMPARE_OP_STR,
  |  |  844|       |    [CONTAINS_OP] = _TAIL_CALL_CONTAINS_OP,
  |  |  845|       |    [CONTAINS_OP_DICT] = _TAIL_CALL_CONTAINS_OP_DICT,
  |  |  846|       |    [CONTAINS_OP_SET] = _TAIL_CALL_CONTAINS_OP_SET,
  |  |  847|       |    [CONVERT_VALUE] = _TAIL_CALL_CONVERT_VALUE,
  |  |  848|       |    [COPY] = _TAIL_CALL_COPY,
  |  |  849|       |    [COPY_FREE_VARS] = _TAIL_CALL_COPY_FREE_VARS,
  |  |  850|       |    [DELETE_ATTR] = _TAIL_CALL_DELETE_ATTR,
  |  |  851|       |    [DELETE_DEREF] = _TAIL_CALL_DELETE_DEREF,
  |  |  852|       |    [DELETE_FAST] = _TAIL_CALL_DELETE_FAST,
  |  |  853|       |    [DELETE_GLOBAL] = _TAIL_CALL_DELETE_GLOBAL,
  |  |  854|       |    [DELETE_NAME] = _TAIL_CALL_DELETE_NAME,
  |  |  855|       |    [DELETE_SUBSCR] = _TAIL_CALL_DELETE_SUBSCR,
  |  |  856|       |    [DICT_MERGE] = _TAIL_CALL_DICT_MERGE,
  |  |  857|       |    [DICT_UPDATE] = _TAIL_CALL_DICT_UPDATE,
  |  |  858|       |    [END_ASYNC_FOR] = _TAIL_CALL_END_ASYNC_FOR,
  |  |  859|       |    [END_FOR] = _TAIL_CALL_END_FOR,
  |  |  860|       |    [END_SEND] = _TAIL_CALL_END_SEND,
  |  |  861|       |    [ENTER_EXECUTOR] = _TAIL_CALL_ENTER_EXECUTOR,
  |  |  862|       |    [EXIT_INIT_CHECK] = _TAIL_CALL_EXIT_INIT_CHECK,
  |  |  863|       |    [EXTENDED_ARG] = _TAIL_CALL_EXTENDED_ARG,
  |  |  864|       |    [FORMAT_SIMPLE] = _TAIL_CALL_FORMAT_SIMPLE,
  |  |  865|       |    [FORMAT_WITH_SPEC] = _TAIL_CALL_FORMAT_WITH_SPEC,
  |  |  866|       |    [FOR_ITER] = _TAIL_CALL_FOR_ITER,
  |  |  867|       |    [FOR_ITER_GEN] = _TAIL_CALL_FOR_ITER_GEN,
  |  |  868|       |    [FOR_ITER_LIST] = _TAIL_CALL_FOR_ITER_LIST,
  |  |  869|       |    [FOR_ITER_RANGE] = _TAIL_CALL_FOR_ITER_RANGE,
  |  |  870|       |    [FOR_ITER_TUPLE] = _TAIL_CALL_FOR_ITER_TUPLE,
  |  |  871|       |    [FOR_ITER_VIRTUAL] = _TAIL_CALL_FOR_ITER_VIRTUAL,
  |  |  872|       |    [GET_AITER] = _TAIL_CALL_GET_AITER,
  |  |  873|       |    [GET_ANEXT] = _TAIL_CALL_GET_ANEXT,
  |  |  874|       |    [GET_AWAITABLE] = _TAIL_CALL_GET_AWAITABLE,
  |  |  875|       |    [GET_ITER] = _TAIL_CALL_GET_ITER,
  |  |  876|       |    [GET_ITER_SELF] = _TAIL_CALL_GET_ITER_SELF,
  |  |  877|       |    [GET_ITER_VIRTUAL] = _TAIL_CALL_GET_ITER_VIRTUAL,
  |  |  878|       |    [GET_LEN] = _TAIL_CALL_GET_LEN,
  |  |  879|       |    [IMPORT_FROM] = _TAIL_CALL_IMPORT_FROM,
  |  |  880|       |    [IMPORT_NAME] = _TAIL_CALL_IMPORT_NAME,
  |  |  881|       |    [INSTRUMENTED_CALL] = _TAIL_CALL_INSTRUMENTED_CALL,
  |  |  882|       |    [INSTRUMENTED_CALL_FUNCTION_EX] = _TAIL_CALL_INSTRUMENTED_CALL_FUNCTION_EX,
  |  |  883|       |    [INSTRUMENTED_CALL_KW] = _TAIL_CALL_INSTRUMENTED_CALL_KW,
  |  |  884|       |    [INSTRUMENTED_END_ASYNC_FOR] = _TAIL_CALL_INSTRUMENTED_END_ASYNC_FOR,
  |  |  885|       |    [INSTRUMENTED_END_FOR] = _TAIL_CALL_INSTRUMENTED_END_FOR,
  |  |  886|       |    [INSTRUMENTED_END_SEND] = _TAIL_CALL_INSTRUMENTED_END_SEND,
  |  |  887|       |    [INSTRUMENTED_FOR_ITER] = _TAIL_CALL_INSTRUMENTED_FOR_ITER,
  |  |  888|       |    [INSTRUMENTED_INSTRUCTION] = _TAIL_CALL_INSTRUMENTED_INSTRUCTION,
  |  |  889|       |    [INSTRUMENTED_JUMP_BACKWARD] = _TAIL_CALL_INSTRUMENTED_JUMP_BACKWARD,
  |  |  890|       |    [INSTRUMENTED_JUMP_FORWARD] = _TAIL_CALL_INSTRUMENTED_JUMP_FORWARD,
  |  |  891|       |    [INSTRUMENTED_LINE] = _TAIL_CALL_INSTRUMENTED_LINE,
  |  |  892|       |    [INSTRUMENTED_LOAD_SUPER_ATTR] = _TAIL_CALL_INSTRUMENTED_LOAD_SUPER_ATTR,
  |  |  893|       |    [INSTRUMENTED_NOT_TAKEN] = _TAIL_CALL_INSTRUMENTED_NOT_TAKEN,
  |  |  894|       |    [INSTRUMENTED_POP_ITER] = _TAIL_CALL_INSTRUMENTED_POP_ITER,
  |  |  895|       |    [INSTRUMENTED_POP_JUMP_IF_FALSE] = _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_FALSE,
  |  |  896|       |    [INSTRUMENTED_POP_JUMP_IF_NONE] = _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_NONE,
  |  |  897|       |    [INSTRUMENTED_POP_JUMP_IF_NOT_NONE] = _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_NOT_NONE,
  |  |  898|       |    [INSTRUMENTED_POP_JUMP_IF_TRUE] = _TAIL_CALL_INSTRUMENTED_POP_JUMP_IF_TRUE,
  |  |  899|       |    [INSTRUMENTED_RESUME] = _TAIL_CALL_INSTRUMENTED_RESUME,
  |  |  900|       |    [INSTRUMENTED_RETURN_VALUE] = _TAIL_CALL_INSTRUMENTED_RETURN_VALUE,
  |  |  901|       |    [INSTRUMENTED_YIELD_VALUE] = _TAIL_CALL_INSTRUMENTED_YIELD_VALUE,
  |  |  902|       |    [INTERPRETER_EXIT] = _TAIL_CALL_INTERPRETER_EXIT,
  |  |  903|       |    [IS_OP] = _TAIL_CALL_IS_OP,
  |  |  904|       |    [JUMP_BACKWARD] = _TAIL_CALL_JUMP_BACKWARD,
  |  |  905|       |    [JUMP_BACKWARD_JIT] = _TAIL_CALL_JUMP_BACKWARD_JIT,
  |  |  906|       |    [JUMP_BACKWARD_NO_INTERRUPT] = _TAIL_CALL_JUMP_BACKWARD_NO_INTERRUPT,
  |  |  907|       |    [JUMP_BACKWARD_NO_JIT] = _TAIL_CALL_JUMP_BACKWARD_NO_JIT,
  |  |  908|       |    [JUMP_FORWARD] = _TAIL_CALL_JUMP_FORWARD,
  |  |  909|       |    [LIST_APPEND] = _TAIL_CALL_LIST_APPEND,
  |  |  910|       |    [LIST_EXTEND] = _TAIL_CALL_LIST_EXTEND,
  |  |  911|       |    [LOAD_ATTR] = _TAIL_CALL_LOAD_ATTR,
  |  |  912|       |    [LOAD_ATTR_CLASS] = _TAIL_CALL_LOAD_ATTR_CLASS,
  |  |  913|       |    [LOAD_ATTR_CLASS_WITH_METACLASS_CHECK] = _TAIL_CALL_LOAD_ATTR_CLASS_WITH_METACLASS_CHECK,
  |  |  914|       |    [LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN] = _TAIL_CALL_LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN,
  |  |  915|       |    [LOAD_ATTR_INSTANCE_VALUE] = _TAIL_CALL_LOAD_ATTR_INSTANCE_VALUE,
  |  |  916|       |    [LOAD_ATTR_METHOD_LAZY_DICT] = _TAIL_CALL_LOAD_ATTR_METHOD_LAZY_DICT,
  |  |  917|       |    [LOAD_ATTR_METHOD_NO_DICT] = _TAIL_CALL_LOAD_ATTR_METHOD_NO_DICT,
  |  |  918|       |    [LOAD_ATTR_METHOD_WITH_VALUES] = _TAIL_CALL_LOAD_ATTR_METHOD_WITH_VALUES,
  |  |  919|       |    [LOAD_ATTR_MODULE] = _TAIL_CALL_LOAD_ATTR_MODULE,
  |  |  920|       |    [LOAD_ATTR_NONDESCRIPTOR_NO_DICT] = _TAIL_CALL_LOAD_ATTR_NONDESCRIPTOR_NO_DICT,
  |  |  921|       |    [LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES] = _TAIL_CALL_LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES,
  |  |  922|       |    [LOAD_ATTR_PROPERTY] = _TAIL_CALL_LOAD_ATTR_PROPERTY,
  |  |  923|       |    [LOAD_ATTR_SLOT] = _TAIL_CALL_LOAD_ATTR_SLOT,
  |  |  924|       |    [LOAD_ATTR_WITH_HINT] = _TAIL_CALL_LOAD_ATTR_WITH_HINT,
  |  |  925|       |    [LOAD_BUILD_CLASS] = _TAIL_CALL_LOAD_BUILD_CLASS,
  |  |  926|       |    [LOAD_COMMON_CONSTANT] = _TAIL_CALL_LOAD_COMMON_CONSTANT,
  |  |  927|       |    [LOAD_CONST] = _TAIL_CALL_LOAD_CONST,
  |  |  928|       |    [LOAD_DEREF] = _TAIL_CALL_LOAD_DEREF,
  |  |  929|       |    [LOAD_FAST] = _TAIL_CALL_LOAD_FAST,
  |  |  930|       |    [LOAD_FAST_AND_CLEAR] = _TAIL_CALL_LOAD_FAST_AND_CLEAR,
  |  |  931|       |    [LOAD_FAST_BORROW] = _TAIL_CALL_LOAD_FAST_BORROW,
  |  |  932|       |    [LOAD_FAST_BORROW_LOAD_FAST_BORROW] = _TAIL_CALL_LOAD_FAST_BORROW_LOAD_FAST_BORROW,
  |  |  933|       |    [LOAD_FAST_CHECK] = _TAIL_CALL_LOAD_FAST_CHECK,
  |  |  934|       |    [LOAD_FAST_LOAD_FAST] = _TAIL_CALL_LOAD_FAST_LOAD_FAST,
  |  |  935|       |    [LOAD_FROM_DICT_OR_DEREF] = _TAIL_CALL_LOAD_FROM_DICT_OR_DEREF,
  |  |  936|       |    [LOAD_FROM_DICT_OR_GLOBALS] = _TAIL_CALL_LOAD_FROM_DICT_OR_GLOBALS,
  |  |  937|       |    [LOAD_GLOBAL] = _TAIL_CALL_LOAD_GLOBAL,
  |  |  938|       |    [LOAD_GLOBAL_BUILTIN] = _TAIL_CALL_LOAD_GLOBAL_BUILTIN,
  |  |  939|       |    [LOAD_GLOBAL_MODULE] = _TAIL_CALL_LOAD_GLOBAL_MODULE,
  |  |  940|       |    [LOAD_LOCALS] = _TAIL_CALL_LOAD_LOCALS,
  |  |  941|       |    [LOAD_NAME] = _TAIL_CALL_LOAD_NAME,
  |  |  942|       |    [LOAD_SMALL_INT] = _TAIL_CALL_LOAD_SMALL_INT,
  |  |  943|       |    [LOAD_SPECIAL] = _TAIL_CALL_LOAD_SPECIAL,
  |  |  944|       |    [LOAD_SUPER_ATTR] = _TAIL_CALL_LOAD_SUPER_ATTR,
  |  |  945|       |    [LOAD_SUPER_ATTR_ATTR] = _TAIL_CALL_LOAD_SUPER_ATTR_ATTR,
  |  |  946|       |    [LOAD_SUPER_ATTR_METHOD] = _TAIL_CALL_LOAD_SUPER_ATTR_METHOD,
  |  |  947|       |    [MAKE_CELL] = _TAIL_CALL_MAKE_CELL,
  |  |  948|       |    [MAKE_FUNCTION] = _TAIL_CALL_MAKE_FUNCTION,
  |  |  949|       |    [MAP_ADD] = _TAIL_CALL_MAP_ADD,
  |  |  950|       |    [MATCH_CLASS] = _TAIL_CALL_MATCH_CLASS,
  |  |  951|       |    [MATCH_KEYS] = _TAIL_CALL_MATCH_KEYS,
  |  |  952|       |    [MATCH_MAPPING] = _TAIL_CALL_MATCH_MAPPING,
  |  |  953|       |    [MATCH_SEQUENCE] = _TAIL_CALL_MATCH_SEQUENCE,
  |  |  954|       |    [NOP] = _TAIL_CALL_NOP,
  |  |  955|       |    [NOT_TAKEN] = _TAIL_CALL_NOT_TAKEN,
  |  |  956|       |    [POP_EXCEPT] = _TAIL_CALL_POP_EXCEPT,
  |  |  957|       |    [POP_ITER] = _TAIL_CALL_POP_ITER,
  |  |  958|       |    [POP_JUMP_IF_FALSE] = _TAIL_CALL_POP_JUMP_IF_FALSE,
  |  |  959|       |    [POP_JUMP_IF_NONE] = _TAIL_CALL_POP_JUMP_IF_NONE,
  |  |  960|       |    [POP_JUMP_IF_NOT_NONE] = _TAIL_CALL_POP_JUMP_IF_NOT_NONE,
  |  |  961|       |    [POP_JUMP_IF_TRUE] = _TAIL_CALL_POP_JUMP_IF_TRUE,
  |  |  962|       |    [POP_TOP] = _TAIL_CALL_POP_TOP,
  |  |  963|       |    [PUSH_EXC_INFO] = _TAIL_CALL_PUSH_EXC_INFO,
  |  |  964|       |    [PUSH_NULL] = _TAIL_CALL_PUSH_NULL,
  |  |  965|       |    [RAISE_VARARGS] = _TAIL_CALL_RAISE_VARARGS,
  |  |  966|       |    [RERAISE] = _TAIL_CALL_RERAISE,
  |  |  967|       |    [RESERVED] = _TAIL_CALL_RESERVED,
  |  |  968|       |    [RESUME] = _TAIL_CALL_RESUME,
  |  |  969|       |    [RESUME_CHECK] = _TAIL_CALL_RESUME_CHECK,
  |  |  970|       |    [RESUME_CHECK_JIT] = _TAIL_CALL_RESUME_CHECK_JIT,
  |  |  971|       |    [RETURN_GENERATOR] = _TAIL_CALL_RETURN_GENERATOR,
  |  |  972|       |    [RETURN_VALUE] = _TAIL_CALL_RETURN_VALUE,
  |  |  973|       |    [SEND] = _TAIL_CALL_SEND,
  |  |  974|       |    [SEND_ASYNC_GEN] = _TAIL_CALL_SEND_ASYNC_GEN,
  |  |  975|       |    [SEND_GEN] = _TAIL_CALL_SEND_GEN,
  |  |  976|       |    [SEND_VIRTUAL] = _TAIL_CALL_SEND_VIRTUAL,
  |  |  977|       |    [SETUP_ANNOTATIONS] = _TAIL_CALL_SETUP_ANNOTATIONS,
  |  |  978|       |    [SET_ADD] = _TAIL_CALL_SET_ADD,
  |  |  979|       |    [SET_FUNCTION_ATTRIBUTE] = _TAIL_CALL_SET_FUNCTION_ATTRIBUTE,
  |  |  980|       |    [SET_UPDATE] = _TAIL_CALL_SET_UPDATE,
  |  |  981|       |    [STORE_ATTR] = _TAIL_CALL_STORE_ATTR,
  |  |  982|       |    [STORE_ATTR_INSTANCE_VALUE] = _TAIL_CALL_STORE_ATTR_INSTANCE_VALUE,
  |  |  983|       |    [STORE_ATTR_SLOT] = _TAIL_CALL_STORE_ATTR_SLOT,
  |  |  984|       |    [STORE_ATTR_WITH_HINT] = _TAIL_CALL_STORE_ATTR_WITH_HINT,
  |  |  985|       |    [STORE_DEREF] = _TAIL_CALL_STORE_DEREF,
  |  |  986|       |    [STORE_FAST] = _TAIL_CALL_STORE_FAST,
  |  |  987|       |    [STORE_FAST_LOAD_FAST] = _TAIL_CALL_STORE_FAST_LOAD_FAST,
  |  |  988|       |    [STORE_FAST_STORE_FAST] = _TAIL_CALL_STORE_FAST_STORE_FAST,
  |  |  989|       |    [STORE_GLOBAL] = _TAIL_CALL_STORE_GLOBAL,
  |  |  990|       |    [STORE_NAME] = _TAIL_CALL_STORE_NAME,
  |  |  991|       |    [STORE_SLICE] = _TAIL_CALL_STORE_SLICE,
  |  |  992|       |    [STORE_SUBSCR] = _TAIL_CALL_STORE_SUBSCR,
  |  |  993|       |    [STORE_SUBSCR_DICT] = _TAIL_CALL_STORE_SUBSCR_DICT,
  |  |  994|       |    [STORE_SUBSCR_LIST_INT] = _TAIL_CALL_STORE_SUBSCR_LIST_INT,
  |  |  995|       |    [SWAP] = _TAIL_CALL_SWAP,
  |  |  996|       |    [TO_BOOL] = _TAIL_CALL_TO_BOOL,
  |  |  997|       |    [TO_BOOL_ALWAYS_TRUE] = _TAIL_CALL_TO_BOOL_ALWAYS_TRUE,
  |  |  998|       |    [TO_BOOL_BOOL] = _TAIL_CALL_TO_BOOL_BOOL,
  |  |  999|       |    [TO_BOOL_INT] = _TAIL_CALL_TO_BOOL_INT,
  |  | 1000|       |    [TO_BOOL_LIST] = _TAIL_CALL_TO_BOOL_LIST,
  |  | 1001|       |    [TO_BOOL_NONE] = _TAIL_CALL_TO_BOOL_NONE,
  |  | 1002|       |    [TO_BOOL_STR] = _TAIL_CALL_TO_BOOL_STR,
  |  | 1003|       |    [TRACE_RECORD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1004|       |    [UNARY_INVERT] = _TAIL_CALL_UNARY_INVERT,
  |  | 1005|       |    [UNARY_NEGATIVE] = _TAIL_CALL_UNARY_NEGATIVE,
  |  | 1006|       |    [UNARY_NOT] = _TAIL_CALL_UNARY_NOT,
  |  | 1007|       |    [UNPACK_EX] = _TAIL_CALL_UNPACK_EX,
  |  | 1008|       |    [UNPACK_SEQUENCE] = _TAIL_CALL_UNPACK_SEQUENCE,
  |  | 1009|       |    [UNPACK_SEQUENCE_LIST] = _TAIL_CALL_UNPACK_SEQUENCE_LIST,
  |  | 1010|       |    [UNPACK_SEQUENCE_TUPLE] = _TAIL_CALL_UNPACK_SEQUENCE_TUPLE,
  |  | 1011|       |    [UNPACK_SEQUENCE_TWO_TUPLE] = _TAIL_CALL_UNPACK_SEQUENCE_TWO_TUPLE,
  |  | 1012|       |    [WITH_EXCEPT_START] = _TAIL_CALL_WITH_EXCEPT_START,
  |  | 1013|       |    [YIELD_VALUE] = _TAIL_CALL_YIELD_VALUE,
  |  | 1014|       |    [120] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1015|       |    [121] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1016|       |    [122] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1017|       |    [123] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1018|       |    [124] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1019|       |    [125] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1020|       |    [126] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1021|       |    [127] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1022|       |    [219] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1023|       |    [220] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1024|       |    [221] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1025|       |    [222] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1026|       |    [223] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1027|       |    [224] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1028|       |    [225] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1029|       |    [226] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1030|       |    [227] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1031|       |    [228] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1032|       |    [229] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1033|       |    [230] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1034|       |    [231] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1035|       |    [232] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1036|       |};
  |  | 1037|       |static py_tail_call_funcptr instruction_funcptr_tracing_table[256] = {
  |  | 1038|       |    [BINARY_OP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1039|       |    [BINARY_OP_ADD_FLOAT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1040|       |    [BINARY_OP_ADD_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1041|       |    [BINARY_OP_ADD_UNICODE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1042|       |    [BINARY_OP_EXTEND] = _TAIL_CALL_TRACE_RECORD,
  |  | 1043|       |    [BINARY_OP_INPLACE_ADD_UNICODE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1044|       |    [BINARY_OP_MULTIPLY_FLOAT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1045|       |    [BINARY_OP_MULTIPLY_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1046|       |    [BINARY_OP_SUBSCR_DICT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1047|       |    [BINARY_OP_SUBSCR_GETITEM] = _TAIL_CALL_TRACE_RECORD,
  |  | 1048|       |    [BINARY_OP_SUBSCR_LIST_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1049|       |    [BINARY_OP_SUBSCR_LIST_SLICE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1050|       |    [BINARY_OP_SUBSCR_STR_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1051|       |    [BINARY_OP_SUBSCR_TUPLE_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1052|       |    [BINARY_OP_SUBSCR_USTR_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1053|       |    [BINARY_OP_SUBTRACT_FLOAT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1054|       |    [BINARY_OP_SUBTRACT_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1055|       |    [BINARY_SLICE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1056|       |    [BUILD_INTERPOLATION] = _TAIL_CALL_TRACE_RECORD,
  |  | 1057|       |    [BUILD_LIST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1058|       |    [BUILD_MAP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1059|       |    [BUILD_SET] = _TAIL_CALL_TRACE_RECORD,
  |  | 1060|       |    [BUILD_SLICE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1061|       |    [BUILD_STRING] = _TAIL_CALL_TRACE_RECORD,
  |  | 1062|       |    [BUILD_TEMPLATE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1063|       |    [BUILD_TUPLE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1064|       |    [CACHE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1065|       |    [CALL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1066|       |    [CALL_ALLOC_AND_ENTER_INIT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1067|       |    [CALL_BOUND_METHOD_EXACT_ARGS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1068|       |    [CALL_BOUND_METHOD_GENERAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1069|       |    [CALL_BUILTIN_CLASS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1070|       |    [CALL_BUILTIN_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1071|       |    [CALL_BUILTIN_FAST_WITH_KEYWORDS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1072|       |    [CALL_BUILTIN_O] = _TAIL_CALL_TRACE_RECORD,
  |  | 1073|       |    [CALL_EX_NON_PY_GENERAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1074|       |    [CALL_EX_PY] = _TAIL_CALL_TRACE_RECORD,
  |  | 1075|       |    [CALL_FUNCTION_EX] = _TAIL_CALL_TRACE_RECORD,
  |  | 1076|       |    [CALL_INTRINSIC_1] = _TAIL_CALL_TRACE_RECORD,
  |  | 1077|       |    [CALL_INTRINSIC_2] = _TAIL_CALL_TRACE_RECORD,
  |  | 1078|       |    [CALL_ISINSTANCE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1079|       |    [CALL_KW] = _TAIL_CALL_TRACE_RECORD,
  |  | 1080|       |    [CALL_KW_BOUND_METHOD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1081|       |    [CALL_KW_NON_PY] = _TAIL_CALL_TRACE_RECORD,
  |  | 1082|       |    [CALL_KW_PY] = _TAIL_CALL_TRACE_RECORD,
  |  | 1083|       |    [CALL_LEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1084|       |    [CALL_LIST_APPEND] = _TAIL_CALL_TRACE_RECORD,
  |  | 1085|       |    [CALL_METHOD_DESCRIPTOR_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1086|       |    [CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1087|       |    [CALL_METHOD_DESCRIPTOR_NOARGS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1088|       |    [CALL_METHOD_DESCRIPTOR_O] = _TAIL_CALL_TRACE_RECORD,
  |  | 1089|       |    [CALL_NON_PY_GENERAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1090|       |    [CALL_PY_EXACT_ARGS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1091|       |    [CALL_PY_GENERAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1092|       |    [CALL_STR_1] = _TAIL_CALL_TRACE_RECORD,
  |  | 1093|       |    [CALL_TUPLE_1] = _TAIL_CALL_TRACE_RECORD,
  |  | 1094|       |    [CALL_TYPE_1] = _TAIL_CALL_TRACE_RECORD,
  |  | 1095|       |    [CHECK_EG_MATCH] = _TAIL_CALL_TRACE_RECORD,
  |  | 1096|       |    [CHECK_EXC_MATCH] = _TAIL_CALL_TRACE_RECORD,
  |  | 1097|       |    [CLEANUP_THROW] = _TAIL_CALL_TRACE_RECORD,
  |  | 1098|       |    [COMPARE_OP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1099|       |    [COMPARE_OP_FLOAT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1100|       |    [COMPARE_OP_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1101|       |    [COMPARE_OP_STR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1102|       |    [CONTAINS_OP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1103|       |    [CONTAINS_OP_DICT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1104|       |    [CONTAINS_OP_SET] = _TAIL_CALL_TRACE_RECORD,
  |  | 1105|       |    [CONVERT_VALUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1106|       |    [COPY] = _TAIL_CALL_TRACE_RECORD,
  |  | 1107|       |    [COPY_FREE_VARS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1108|       |    [DELETE_ATTR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1109|       |    [DELETE_DEREF] = _TAIL_CALL_TRACE_RECORD,
  |  | 1110|       |    [DELETE_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1111|       |    [DELETE_GLOBAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1112|       |    [DELETE_NAME] = _TAIL_CALL_TRACE_RECORD,
  |  | 1113|       |    [DELETE_SUBSCR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1114|       |    [DICT_MERGE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1115|       |    [DICT_UPDATE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1116|       |    [END_ASYNC_FOR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1117|       |    [END_FOR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1118|       |    [END_SEND] = _TAIL_CALL_TRACE_RECORD,
  |  | 1119|       |    [ENTER_EXECUTOR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1120|       |    [EXIT_INIT_CHECK] = _TAIL_CALL_TRACE_RECORD,
  |  | 1121|       |    [EXTENDED_ARG] = _TAIL_CALL_TRACE_RECORD,
  |  | 1122|       |    [FORMAT_SIMPLE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1123|       |    [FORMAT_WITH_SPEC] = _TAIL_CALL_TRACE_RECORD,
  |  | 1124|       |    [FOR_ITER] = _TAIL_CALL_TRACE_RECORD,
  |  | 1125|       |    [FOR_ITER_GEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1126|       |    [FOR_ITER_LIST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1127|       |    [FOR_ITER_RANGE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1128|       |    [FOR_ITER_TUPLE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1129|       |    [FOR_ITER_VIRTUAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1130|       |    [GET_AITER] = _TAIL_CALL_TRACE_RECORD,
  |  | 1131|       |    [GET_ANEXT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1132|       |    [GET_AWAITABLE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1133|       |    [GET_ITER] = _TAIL_CALL_TRACE_RECORD,
  |  | 1134|       |    [GET_ITER_SELF] = _TAIL_CALL_TRACE_RECORD,
  |  | 1135|       |    [GET_ITER_VIRTUAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1136|       |    [GET_LEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1137|       |    [IMPORT_FROM] = _TAIL_CALL_TRACE_RECORD,
  |  | 1138|       |    [IMPORT_NAME] = _TAIL_CALL_TRACE_RECORD,
  |  | 1139|       |    [INSTRUMENTED_CALL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1140|       |    [INSTRUMENTED_CALL_FUNCTION_EX] = _TAIL_CALL_TRACE_RECORD,
  |  | 1141|       |    [INSTRUMENTED_CALL_KW] = _TAIL_CALL_TRACE_RECORD,
  |  | 1142|       |    [INSTRUMENTED_END_ASYNC_FOR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1143|       |    [INSTRUMENTED_END_FOR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1144|       |    [INSTRUMENTED_END_SEND] = _TAIL_CALL_TRACE_RECORD,
  |  | 1145|       |    [INSTRUMENTED_FOR_ITER] = _TAIL_CALL_TRACE_RECORD,
  |  | 1146|       |    [INSTRUMENTED_INSTRUCTION] = _TAIL_CALL_TRACE_RECORD,
  |  | 1147|       |    [INSTRUMENTED_JUMP_BACKWARD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1148|       |    [INSTRUMENTED_JUMP_FORWARD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1149|       |    [INSTRUMENTED_LINE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1150|       |    [INSTRUMENTED_LOAD_SUPER_ATTR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1151|       |    [INSTRUMENTED_NOT_TAKEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1152|       |    [INSTRUMENTED_POP_ITER] = _TAIL_CALL_TRACE_RECORD,
  |  | 1153|       |    [INSTRUMENTED_POP_JUMP_IF_FALSE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1154|       |    [INSTRUMENTED_POP_JUMP_IF_NONE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1155|       |    [INSTRUMENTED_POP_JUMP_IF_NOT_NONE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1156|       |    [INSTRUMENTED_POP_JUMP_IF_TRUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1157|       |    [INSTRUMENTED_RESUME] = _TAIL_CALL_TRACE_RECORD,
  |  | 1158|       |    [INSTRUMENTED_RETURN_VALUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1159|       |    [INSTRUMENTED_YIELD_VALUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1160|       |    [INTERPRETER_EXIT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1161|       |    [IS_OP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1162|       |    [JUMP_BACKWARD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1163|       |    [JUMP_BACKWARD_JIT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1164|       |    [JUMP_BACKWARD_NO_INTERRUPT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1165|       |    [JUMP_BACKWARD_NO_JIT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1166|       |    [JUMP_FORWARD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1167|       |    [LIST_APPEND] = _TAIL_CALL_TRACE_RECORD,
  |  | 1168|       |    [LIST_EXTEND] = _TAIL_CALL_TRACE_RECORD,
  |  | 1169|       |    [LOAD_ATTR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1170|       |    [LOAD_ATTR_CLASS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1171|       |    [LOAD_ATTR_CLASS_WITH_METACLASS_CHECK] = _TAIL_CALL_TRACE_RECORD,
  |  | 1172|       |    [LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1173|       |    [LOAD_ATTR_INSTANCE_VALUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1174|       |    [LOAD_ATTR_METHOD_LAZY_DICT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1175|       |    [LOAD_ATTR_METHOD_NO_DICT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1176|       |    [LOAD_ATTR_METHOD_WITH_VALUES] = _TAIL_CALL_TRACE_RECORD,
  |  | 1177|       |    [LOAD_ATTR_MODULE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1178|       |    [LOAD_ATTR_NONDESCRIPTOR_NO_DICT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1179|       |    [LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES] = _TAIL_CALL_TRACE_RECORD,
  |  | 1180|       |    [LOAD_ATTR_PROPERTY] = _TAIL_CALL_TRACE_RECORD,
  |  | 1181|       |    [LOAD_ATTR_SLOT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1182|       |    [LOAD_ATTR_WITH_HINT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1183|       |    [LOAD_BUILD_CLASS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1184|       |    [LOAD_COMMON_CONSTANT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1185|       |    [LOAD_CONST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1186|       |    [LOAD_DEREF] = _TAIL_CALL_TRACE_RECORD,
  |  | 1187|       |    [LOAD_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1188|       |    [LOAD_FAST_AND_CLEAR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1189|       |    [LOAD_FAST_BORROW] = _TAIL_CALL_TRACE_RECORD,
  |  | 1190|       |    [LOAD_FAST_BORROW_LOAD_FAST_BORROW] = _TAIL_CALL_TRACE_RECORD,
  |  | 1191|       |    [LOAD_FAST_CHECK] = _TAIL_CALL_TRACE_RECORD,
  |  | 1192|       |    [LOAD_FAST_LOAD_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1193|       |    [LOAD_FROM_DICT_OR_DEREF] = _TAIL_CALL_TRACE_RECORD,
  |  | 1194|       |    [LOAD_FROM_DICT_OR_GLOBALS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1195|       |    [LOAD_GLOBAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1196|       |    [LOAD_GLOBAL_BUILTIN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1197|       |    [LOAD_GLOBAL_MODULE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1198|       |    [LOAD_LOCALS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1199|       |    [LOAD_NAME] = _TAIL_CALL_TRACE_RECORD,
  |  | 1200|       |    [LOAD_SMALL_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1201|       |    [LOAD_SPECIAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1202|       |    [LOAD_SUPER_ATTR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1203|       |    [LOAD_SUPER_ATTR_ATTR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1204|       |    [LOAD_SUPER_ATTR_METHOD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1205|       |    [MAKE_CELL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1206|       |    [MAKE_FUNCTION] = _TAIL_CALL_TRACE_RECORD,
  |  | 1207|       |    [MAP_ADD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1208|       |    [MATCH_CLASS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1209|       |    [MATCH_KEYS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1210|       |    [MATCH_MAPPING] = _TAIL_CALL_TRACE_RECORD,
  |  | 1211|       |    [MATCH_SEQUENCE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1212|       |    [NOP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1213|       |    [NOT_TAKEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1214|       |    [POP_EXCEPT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1215|       |    [POP_ITER] = _TAIL_CALL_TRACE_RECORD,
  |  | 1216|       |    [POP_JUMP_IF_FALSE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1217|       |    [POP_JUMP_IF_NONE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1218|       |    [POP_JUMP_IF_NOT_NONE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1219|       |    [POP_JUMP_IF_TRUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1220|       |    [POP_TOP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1221|       |    [PUSH_EXC_INFO] = _TAIL_CALL_TRACE_RECORD,
  |  | 1222|       |    [PUSH_NULL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1223|       |    [RAISE_VARARGS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1224|       |    [RERAISE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1225|       |    [RESERVED] = _TAIL_CALL_TRACE_RECORD,
  |  | 1226|       |    [RESUME] = _TAIL_CALL_TRACE_RECORD,
  |  | 1227|       |    [RESUME_CHECK] = _TAIL_CALL_TRACE_RECORD,
  |  | 1228|       |    [RESUME_CHECK_JIT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1229|       |    [RETURN_GENERATOR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1230|       |    [RETURN_VALUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1231|       |    [SEND] = _TAIL_CALL_TRACE_RECORD,
  |  | 1232|       |    [SEND_ASYNC_GEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1233|       |    [SEND_GEN] = _TAIL_CALL_TRACE_RECORD,
  |  | 1234|       |    [SEND_VIRTUAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1235|       |    [SETUP_ANNOTATIONS] = _TAIL_CALL_TRACE_RECORD,
  |  | 1236|       |    [SET_ADD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1237|       |    [SET_FUNCTION_ATTRIBUTE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1238|       |    [SET_UPDATE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1239|       |    [STORE_ATTR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1240|       |    [STORE_ATTR_INSTANCE_VALUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1241|       |    [STORE_ATTR_SLOT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1242|       |    [STORE_ATTR_WITH_HINT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1243|       |    [STORE_DEREF] = _TAIL_CALL_TRACE_RECORD,
  |  | 1244|       |    [STORE_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1245|       |    [STORE_FAST_LOAD_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1246|       |    [STORE_FAST_STORE_FAST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1247|       |    [STORE_GLOBAL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1248|       |    [STORE_NAME] = _TAIL_CALL_TRACE_RECORD,
  |  | 1249|       |    [STORE_SLICE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1250|       |    [STORE_SUBSCR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1251|       |    [STORE_SUBSCR_DICT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1252|       |    [STORE_SUBSCR_LIST_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1253|       |    [SWAP] = _TAIL_CALL_TRACE_RECORD,
  |  | 1254|       |    [TO_BOOL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1255|       |    [TO_BOOL_ALWAYS_TRUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1256|       |    [TO_BOOL_BOOL] = _TAIL_CALL_TRACE_RECORD,
  |  | 1257|       |    [TO_BOOL_INT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1258|       |    [TO_BOOL_LIST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1259|       |    [TO_BOOL_NONE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1260|       |    [TO_BOOL_STR] = _TAIL_CALL_TRACE_RECORD,
  |  | 1261|       |    [TRACE_RECORD] = _TAIL_CALL_TRACE_RECORD,
  |  | 1262|       |    [UNARY_INVERT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1263|       |    [UNARY_NEGATIVE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1264|       |    [UNARY_NOT] = _TAIL_CALL_TRACE_RECORD,
  |  | 1265|       |    [UNPACK_EX] = _TAIL_CALL_TRACE_RECORD,
  |  | 1266|       |    [UNPACK_SEQUENCE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1267|       |    [UNPACK_SEQUENCE_LIST] = _TAIL_CALL_TRACE_RECORD,
  |  | 1268|       |    [UNPACK_SEQUENCE_TUPLE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1269|       |    [UNPACK_SEQUENCE_TWO_TUPLE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1270|       |    [WITH_EXCEPT_START] = _TAIL_CALL_TRACE_RECORD,
  |  | 1271|       |    [YIELD_VALUE] = _TAIL_CALL_TRACE_RECORD,
  |  | 1272|       |    [120] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1273|       |    [121] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1274|       |    [122] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1275|       |    [123] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1276|       |    [124] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1277|       |    [125] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1278|       |    [126] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1279|       |    [127] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1280|       |    [219] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1281|       |    [220] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1282|       |    [221] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1283|       |    [222] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1284|       |    [223] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1285|       |    [224] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1286|       |    [225] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1287|       |    [226] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1288|       |    [227] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1289|       |    [228] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1290|       |    [229] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1291|       |    [230] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1292|       |    [231] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1293|       |    [232] = _TAIL_CALL_UNKNOWN_OPCODE,
  |  | 1294|       |};
  |  | 1295|       |#endif /* _Py_TAIL_CALL_INTERP */
  ------------------
 1219|    906|    void **opcode_targets = opcode_targets_table;
 1220|    906|#endif
 1221|       |
 1222|       |#ifdef Py_STATS
 1223|       |    int lastopcode = 0;
 1224|       |#endif
 1225|    906|#if !_Py_TAIL_CALL_INTERP
 1226|    906|    uint8_t opcode;    /* Current opcode */
 1227|    906|    int oparg;         /* Current opcode argument, if any */
 1228|    906|    assert(tstate->current_frame == NULL || tstate->current_frame->stackpointer != NULL);
  ------------------
  |  Branch (1228:5): [True: 0, False: 906]
  |  Branch (1228:5): [True: 906, False: 0]
  ------------------
 1229|       |#if !USE_COMPUTED_GOTOS
 1230|       |    uint8_t tracing_mode = 0;
 1231|       |    uint8_t dispatch_code;
 1232|       |#endif
 1233|    906|#endif
 1234|    906|    _PyEntryFrame entry;
 1235|       |
 1236|    906|    if (_Py_EnterRecursiveCallTstate(tstate, "")) {
  ------------------
  |  Branch (1236:9): [True: 0, False: 906]
  ------------------
 1237|      0|        assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  ------------------
  |  Branch (1237:9): [True: 0, False: 0]
  ------------------
 1238|      0|        _PyEval_FrameClearAndPop(tstate, frame);
 1239|      0|        return NULL;
 1240|      0|    }
 1241|       |
 1242|       |    /* Local "register" variables.
 1243|       |     * These are cached values from the frame and code object.  */
 1244|    906|    _Py_CODEUNIT *next_instr;
 1245|    906|    _PyStackRef *stack_pointer;
 1246|    906|    entry.stack[0] = PyStackRef_NULL;
 1247|       |#ifdef Py_STACKREF_DEBUG
 1248|       |    entry.frame.f_funcobj = PyStackRef_None;
 1249|       |#elif defined(Py_DEBUG)
 1250|       |    /* Set these to invalid but identifiable values for debugging. */
 1251|       |    entry.frame.f_funcobj = (_PyStackRef){.bits = 0xaaa0};
 1252|       |    entry.frame.f_locals = (PyObject*)0xaaa1;
 1253|       |    entry.frame.frame_obj = (PyFrameObject*)0xaaa2;
 1254|       |    entry.frame.f_globals = (PyObject*)0xaaa3;
 1255|       |    entry.frame.f_builtins = (PyObject*)0xaaa4;
 1256|       |#endif
 1257|    906|    entry.frame.f_executable = PyStackRef_None;
  ------------------
  |  |  473|    906|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  ------------------
  |  |  |  |   55|    906|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
 1258|    906|    entry.frame.instr_ptr = (_Py_CODEUNIT *)_Py_INTERPRETER_TRAMPOLINE_INSTRUCTIONS + 1;
 1259|    906|    entry.frame.stackpointer = entry.stack;
 1260|    906|    entry.frame.owner = FRAME_OWNED_BY_INTERPRETER;
 1261|    906|    entry.frame.visited = 0;
 1262|    906|    entry.frame.return_offset = 0;
 1263|       |#ifdef Py_DEBUG
 1264|       |    entry.frame.lltrace = 0;
 1265|       |#endif
 1266|       |    /* Push frame */
 1267|    906|    entry.frame.previous = tstate->current_frame;
 1268|    906|    frame->previous = &entry.frame;
 1269|    906|    tstate->current_frame = frame;
 1270|    906|    entry.frame.localsplus[0] = PyStackRef_NULL;
 1271|       |#ifdef _Py_TIER2
 1272|       |    if (tstate->current_executor != NULL) {
 1273|       |        entry.frame.localsplus[0] = PyStackRef_FromPyObjectNew(tstate->current_executor);
 1274|       |        tstate->current_executor = NULL;
 1275|       |    }
 1276|       |#endif
 1277|       |
 1278|       |    /* support for generator.throw() */
 1279|    906|    if (throwflag) {
  ------------------
  |  Branch (1279:9): [True: 0, False: 906]
  ------------------
 1280|      0|        if (_Py_EnterRecursivePy(tstate)) {
  ------------------
  |  Branch (1280:13): [True: 0, False: 0]
  ------------------
 1281|      0|            goto early_exit;
 1282|      0|        }
 1283|       |#ifdef Py_GIL_DISABLED
 1284|       |        /* Load thread-local bytecode */
 1285|       |        if (frame->tlbc_index != ((_PyThreadStateImpl *)tstate)->tlbc_index) {
 1286|       |            _Py_CODEUNIT *bytecode =
 1287|       |                _PyEval_GetExecutableCode(tstate, _PyFrame_GetCode(frame));
 1288|       |            if (bytecode == NULL) {
 1289|       |                goto early_exit;
 1290|       |            }
 1291|       |            ptrdiff_t off = frame->instr_ptr - _PyFrame_GetBytecode(frame);
 1292|       |            frame->tlbc_index = ((_PyThreadStateImpl *)tstate)->tlbc_index;
 1293|       |            frame->instr_ptr = bytecode + off;
 1294|       |        }
 1295|       |#endif
 1296|       |        /* Because this avoids the RESUME, we need to update instrumentation */
 1297|      0|        _Py_Instrument(_PyFrame_GetCode(frame), tstate->interp);
 1298|      0|        next_instr = frame->instr_ptr;
 1299|      0|        monitor_throw(tstate, frame, next_instr);
 1300|      0|        stack_pointer = _PyFrame_GetStackPointer(frame);
 1301|       |#if _Py_TAIL_CALL_INTERP
 1302|       |#   if Py_STATS
 1303|       |        return _TAIL_CALL_error(frame, stack_pointer, tstate, next_instr, instruction_funcptr_handler_table, 0, lastopcode);
 1304|       |#   else
 1305|       |        return _TAIL_CALL_error(frame, stack_pointer, tstate, next_instr, instruction_funcptr_handler_table, 0);
 1306|       |#   endif
 1307|       |#else
 1308|      0|        goto error;
 1309|      0|#endif
 1310|      0|    }
 1311|       |
 1312|       |#if _Py_TAIL_CALL_INTERP
 1313|       |#   if Py_STATS
 1314|       |        return _TAIL_CALL_start_frame(frame, NULL, tstate, NULL, instruction_funcptr_handler_table, 0, lastopcode);
 1315|       |#   else
 1316|       |        return _TAIL_CALL_start_frame(frame, NULL, tstate, NULL, instruction_funcptr_handler_table, 0);
 1317|       |#   endif
 1318|       |#else
 1319|    906|    goto start_frame;
 1320|    906|#   include "generated_cases.c.h"
  ------------------
  |  |    1|       |// This file is generated by Tools/cases_generator/tier1_generator.py
  |  |    2|       |// from:
  |  |    3|       |//   Python/bytecodes.c
  |  |    4|       |// Do not edit!
  |  |    5|       |
  |  |    6|       |#ifdef TIER_TWO
  |  |    7|       |    #error "This file is for Tier 1 only"
  |  |    8|       |#endif
  |  |    9|      0|#define TIER_ONE 1
  |  |   10|       |
  |  |   11|      0|#if !_Py_TAIL_CALL_INTERP
  |  |   12|       |#if !USE_COMPUTED_GOTOS
  |  |   13|       |    dispatch_opcode:
  |  |   14|       |        switch (dispatch_code)
  |  |   15|       |#endif
  |  |   16|      0|        {
  |  |   17|      0|#endif /* _Py_TAIL_CALL_INTERP */
  |  |   18|       |            /* BEGIN INSTRUCTIONS */
  |  |   19|       |
  |  |   20|       |
  |  |   21|    226|        TARGET(BINARY_OP) {
  |  |  ------------------
  |  |  |  |  132|    226|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |   22|       |            #if _Py_TAIL_CALL_INTERP
  |  |   23|       |            int opcode = BINARY_OP;
  |  |   24|       |            (void)(opcode);
  |  |   25|       |            #endif
  |  |   26|    226|            frame->instr_ptr = next_instr;
  |  |   27|    226|            next_instr += 6;
  |  |   28|    226|            INSTRUCTION_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |   71|    226|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |   29|    226|            PREDICTED_BINARY_OP:;
  |  |   30|    226|            _Py_CODEUNIT* const this_instr = next_instr - 6;
  |  |   31|    226|            (void)this_instr;
  |  |   32|    226|            _PyStackRef lhs;
  |  |   33|    226|            _PyStackRef rhs;
  |  |   34|    226|            _PyStackRef res;
  |  |   35|    226|            _PyStackRef l;
  |  |   36|    226|            _PyStackRef r;
  |  |   37|    226|            _PyStackRef value;
  |  |   38|       |            // _SPECIALIZE_BINARY_OP
  |  |   39|    226|            {
  |  |   40|    226|                rhs = stack_pointer[-1];
  |  |   41|    226|                lhs = stack_pointer[-2];
  |  |   42|    226|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  |   43|    226|                (void)counter;
  |  |   44|    226|                #if ENABLE_SPECIALIZATION
  |  |   45|    226|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|    226|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 50, False: 176]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   46|     50|                    next_instr = this_instr;
  |  |   47|     50|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |   48|     50|                    _Py_Specialize_BinaryOp(lhs, rhs, next_instr, oparg, LOCALS_ARRAY);
  |  |  ------------------
  |  |  |  |  283|     50|#define LOCALS_ARRAY    (frame->localsplus)
  |  |  ------------------
  |  |   49|     50|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |   50|     50|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     50|    { \
  |  |  |  |  217|     50|        opcode = next_instr->op.code; \
  |  |  |  |  218|     50|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     50|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     50|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     50|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     50|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     50|    }
  |  |  ------------------
  |  |   51|     50|                }
  |  |   52|    226|                OPCODE_DEFERRED_INC(BINARY_OP);
  |  |  ------------------
  |  |  |  |   90|    226|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  |   53|    226|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|    226|    do { \
  |  |  |  |  358|    226|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|    226|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 226]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    226|                #endif  /* ENABLE_SPECIALIZATION */
  |  |   55|    226|                assert(NB_ADD <= oparg);
  |  |  ------------------
  |  |  |  Branch (55:17): [True: 176, False: 50]
  |  |  ------------------
  |  |   56|    226|                assert(oparg <= NB_OPARG_LAST);
  |  |  ------------------
  |  |  |  Branch (56:17): [True: 176, False: 0]
  |  |  ------------------
  |  |   57|    176|            }
  |  |   58|       |            /* Skip 4 cache entries */
  |  |   59|       |            // _BINARY_OP
  |  |   60|    176|            {
  |  |   61|    176|                PyObject *lhs_o = PyStackRef_AsPyObjectBorrow(lhs);
  |  |   62|    176|                PyObject *rhs_o = PyStackRef_AsPyObjectBorrow(rhs);
  |  |   63|    176|                assert(_PyEval_BinaryOps[oparg]);
  |  |  ------------------
  |  |  |  Branch (63:17): [True: 176, False: 0]
  |  |  ------------------
  |  |   64|    176|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |   65|    176|                PyObject *res_o = _PyEval_BinaryOps[oparg](lhs_o, rhs_o);
  |  |   66|    176|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |   67|    176|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (67:21): [True: 10, False: 166]
  |  |  ------------------
  |  |   68|     10|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|     10|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |   69|      0|                }
  |  |   70|    166|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |   71|    166|                l = lhs;
  |  |   72|    166|                r = rhs;
  |  |   73|    166|            }
  |  |   74|       |            // _POP_TOP
  |  |   75|      0|            {
  |  |   76|    166|                value = r;
  |  |   77|    166|                stack_pointer[-2] = res;
  |  |   78|    166|                stack_pointer[-1] = l;
  |  |   79|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |   80|    166|                PyStackRef_XCLOSE(value);
  |  |   81|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |   82|    166|            }
  |  |   83|       |            // _POP_TOP
  |  |   84|    166|            {
  |  |   85|    166|                value = l;
  |  |   86|    166|                stack_pointer += -1;
  |  |   87|    166|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |   88|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |   89|    166|                PyStackRef_XCLOSE(value);
  |  |   90|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |   91|    166|            }
  |  |   92|    166|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    166|    { \
  |  |  |  |  201|    166|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    166|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    166|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    166|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    166|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    166|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    166|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    166|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 166]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    166|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    166|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    166|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    166|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    166|    }
  |  |  ------------------
  |  |  |  Branch (92:13): [True: 166, False: 0]
  |  |  ------------------
  |  |   93|    166|        }
  |  |   94|       |
  |  |   95|      0|        TARGET(BINARY_OP_ADD_FLOAT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |   96|       |            #if _Py_TAIL_CALL_INTERP
  |  |   97|       |            int opcode = BINARY_OP_ADD_FLOAT;
  |  |   98|       |            (void)(opcode);
  |  |   99|       |            #endif
  |  |  100|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  101|      0|            (void)this_instr;
  |  |  102|      0|            frame->instr_ptr = next_instr;
  |  |  103|      0|            next_instr += 6;
  |  |  104|      0|            INSTRUCTION_STATS(BINARY_OP_ADD_FLOAT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  105|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  106|      0|            _PyStackRef value;
  |  |  107|      0|            _PyStackRef left;
  |  |  108|      0|            _PyStackRef right;
  |  |  109|      0|            _PyStackRef res;
  |  |  110|      0|            _PyStackRef l;
  |  |  111|      0|            _PyStackRef r;
  |  |  112|       |            // _GUARD_TOS_FLOAT
  |  |  113|      0|            {
  |  |  114|      0|                value = stack_pointer[-1];
  |  |  115|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  116|      0|                if (!PyFloat_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (116:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  117|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  118|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (118:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  119|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  120|      0|                }
  |  |  121|      0|            }
  |  |  122|       |            // _GUARD_NOS_FLOAT
  |  |  123|      0|            {
  |  |  124|      0|                left = stack_pointer[-2];
  |  |  125|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  126|      0|                if (!PyFloat_CheckExact(left_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (126:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  127|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  128|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (128:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  129|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  130|      0|                }
  |  |  131|      0|            }
  |  |  132|       |            /* Skip 5 cache entries */
  |  |  133|       |            // _BINARY_OP_ADD_FLOAT
  |  |  134|      0|            {
  |  |  135|      0|                right = value;
  |  |  136|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  137|      0|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  |  138|      0|                assert(PyFloat_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (138:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  139|      0|                assert(PyFloat_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (139:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  140|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  141|      0|                double dres =
  |  |  142|      0|                ((PyFloatObject *)left_o)->ob_fval +
  |  |  143|      0|                ((PyFloatObject *)right_o)->ob_fval;
  |  |  144|      0|                PyObject *d = PyFloat_FromDouble(dres);
  |  |  145|      0|                if (d == NULL) {
  |  |  ------------------
  |  |  |  Branch (145:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  146|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |  147|      0|                }
  |  |  148|      0|                res = PyStackRef_FromPyObjectSteal(d);
  |  |  149|      0|                l = left;
  |  |  150|      0|                r = right;
  |  |  151|      0|            }
  |  |  152|       |            // _POP_TOP_FLOAT
  |  |  153|      0|            {
  |  |  154|      0|                value = r;
  |  |  155|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (155:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  156|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  |  157|      0|            }
  |  |  158|       |            // _POP_TOP_FLOAT
  |  |  159|      0|            {
  |  |  160|      0|                value = l;
  |  |  161|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (161:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  162|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  |  163|      0|            }
  |  |  164|      0|            stack_pointer[-2] = res;
  |  |  165|      0|            stack_pointer += -1;
  |  |  166|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  167|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (167:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  168|      0|        }
  |  |  169|       |
  |  |  170|      8|        TARGET(BINARY_OP_ADD_INT) {
  |  |  ------------------
  |  |  |  |  132|      8|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  171|       |            #if _Py_TAIL_CALL_INTERP
  |  |  172|       |            int opcode = BINARY_OP_ADD_INT;
  |  |  173|       |            (void)(opcode);
  |  |  174|       |            #endif
  |  |  175|      8|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  176|      8|            (void)this_instr;
  |  |  177|      8|            frame->instr_ptr = next_instr;
  |  |  178|      8|            next_instr += 6;
  |  |  179|      8|            INSTRUCTION_STATS(BINARY_OP_ADD_INT);
  |  |  ------------------
  |  |  |  |   71|      8|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  180|      8|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  181|      8|            _PyStackRef value;
  |  |  182|      8|            _PyStackRef left;
  |  |  183|      8|            _PyStackRef right;
  |  |  184|      8|            _PyStackRef res;
  |  |  185|      8|            _PyStackRef l;
  |  |  186|      8|            _PyStackRef r;
  |  |  187|       |            // _GUARD_TOS_INT
  |  |  188|      8|            {
  |  |  189|      8|                value = stack_pointer[-1];
  |  |  190|      8|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  191|      8|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (191:21): [True: 0, False: 8]
  |  |  ------------------
  |  |  192|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  193|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (193:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  194|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  195|      0|                }
  |  |  196|      8|            }
  |  |  197|       |            // _GUARD_NOS_INT
  |  |  198|      8|            {
  |  |  199|      8|                left = stack_pointer[-2];
  |  |  200|      8|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  201|      8|                if (!_PyLong_CheckExactAndCompact(left_o)) {
  |  |  ------------------
  |  |  |  Branch (201:21): [True: 0, False: 8]
  |  |  ------------------
  |  |  202|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  203|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (203:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  204|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  205|      0|                }
  |  |  206|      8|            }
  |  |  207|       |            /* Skip 5 cache entries */
  |  |  208|       |            // _BINARY_OP_ADD_INT
  |  |  209|      8|            {
  |  |  210|      8|                right = value;
  |  |  211|      8|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  212|      8|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  |  213|      8|                assert(PyLong_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (213:17): [True: 8, False: 0]
  |  |  ------------------
  |  |  214|      8|                assert(PyLong_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (214:17): [True: 8, False: 0]
  |  |  ------------------
  |  |  215|      8|                assert(_PyLong_BothAreCompact((PyLongObject *)left_o, (PyLongObject *)right_o));
  |  |  ------------------
  |  |  |  Branch (215:17): [True: 8, False: 0]
  |  |  ------------------
  |  |  216|      8|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      8|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  217|      8|                res = _PyCompactLong_Add((PyLongObject *)left_o, (PyLongObject *)right_o);
  |  |  218|      8|                if (PyStackRef_IsNull(res)) {
  |  |  ------------------
  |  |  |  |  470|      8|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      8|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      8|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  219|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  220|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (220:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  221|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  222|      0|                }
  |  |  223|      8|                l = left;
  |  |  224|      8|                r = right;
  |  |  225|      8|            }
  |  |  226|       |            // _POP_TOP_INT
  |  |  227|      0|            {
  |  |  228|      8|                value = r;
  |  |  229|      8|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (229:17): [True: 8, False: 0]
  |  |  ------------------
  |  |  230|      8|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  |  231|      8|            }
  |  |  232|       |            // _POP_TOP_INT
  |  |  233|      0|            {
  |  |  234|      8|                value = l;
  |  |  235|      8|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (235:17): [True: 8, False: 0]
  |  |  ------------------
  |  |  236|      8|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  |  237|      8|            }
  |  |  238|      0|            stack_pointer[-2] = res;
  |  |  239|      8|            stack_pointer += -1;
  |  |  240|      8|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  241|      8|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      8|    { \
  |  |  |  |  201|      8|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      8|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      8|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      8|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      8|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      8|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      8|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      8|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      8|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      8|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      8|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      8|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      8|    }
  |  |  ------------------
  |  |  |  Branch (241:13): [True: 8, False: 0]
  |  |  ------------------
  |  |  242|      8|        }
  |  |  243|       |
  |  |  244|    166|        TARGET(BINARY_OP_ADD_UNICODE) {
  |  |  ------------------
  |  |  |  |  132|    166|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  245|       |            #if _Py_TAIL_CALL_INTERP
  |  |  246|       |            int opcode = BINARY_OP_ADD_UNICODE;
  |  |  247|       |            (void)(opcode);
  |  |  248|       |            #endif
  |  |  249|    166|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  250|    166|            (void)this_instr;
  |  |  251|    166|            frame->instr_ptr = next_instr;
  |  |  252|    166|            next_instr += 6;
  |  |  253|    166|            INSTRUCTION_STATS(BINARY_OP_ADD_UNICODE);
  |  |  ------------------
  |  |  |  |   71|    166|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  254|    166|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  255|    166|            _PyStackRef value;
  |  |  256|    166|            _PyStackRef nos;
  |  |  257|    166|            _PyStackRef left;
  |  |  258|    166|            _PyStackRef right;
  |  |  259|    166|            _PyStackRef res;
  |  |  260|    166|            _PyStackRef l;
  |  |  261|    166|            _PyStackRef r;
  |  |  262|       |            // _GUARD_TOS_UNICODE
  |  |  263|    166|            {
  |  |  264|    166|                value = stack_pointer[-1];
  |  |  265|    166|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  266|    166|                if (!PyUnicode_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |  104|    166|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    166|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (266:21): [True: 0, False: 166]
  |  |  ------------------
  |  |  267|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  268|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (268:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  269|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  270|      0|                }
  |  |  271|    166|            }
  |  |  272|       |            // _GUARD_NOS_UNICODE
  |  |  273|    166|            {
  |  |  274|    166|                nos = stack_pointer[-2];
  |  |  275|    166|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |  276|    166|                if (!PyUnicode_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |  104|    166|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    166|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (276:21): [True: 0, False: 166]
  |  |  ------------------
  |  |  277|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  278|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (278:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  280|      0|                }
  |  |  281|    166|            }
  |  |  282|       |            /* Skip 5 cache entries */
  |  |  283|       |            // _BINARY_OP_ADD_UNICODE
  |  |  284|    166|            {
  |  |  285|    166|                right = value;
  |  |  286|    166|                left = nos;
  |  |  287|    166|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  288|    166|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  |  289|    166|                assert(PyUnicode_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (289:17): [True: 166, False: 0]
  |  |  ------------------
  |  |  290|    166|                assert(PyUnicode_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (290:17): [True: 166, False: 0]
  |  |  ------------------
  |  |  291|    166|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|    166|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  292|    166|                PyObject *res_o = PyUnicode_Concat(left_o, right_o);
  |  |  293|    166|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (293:21): [True: 0, False: 166]
  |  |  ------------------
  |  |  294|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |  295|      0|                }
  |  |  296|    166|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |  297|    166|                l = left;
  |  |  298|    166|                r = right;
  |  |  299|    166|            }
  |  |  300|       |            // _POP_TOP_UNICODE
  |  |  301|      0|            {
  |  |  302|    166|                value = r;
  |  |  303|    166|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (303:17): [True: 166, False: 0]
  |  |  ------------------
  |  |  304|    166|                PyStackRef_CLOSE_SPECIALIZED(value, _PyUnicode_ExactDealloc);
  |  |  305|    166|            }
  |  |  306|       |            // _POP_TOP_UNICODE
  |  |  307|      0|            {
  |  |  308|    166|                value = l;
  |  |  309|    166|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (309:17): [True: 166, False: 0]
  |  |  ------------------
  |  |  310|    166|                PyStackRef_CLOSE_SPECIALIZED(value, _PyUnicode_ExactDealloc);
  |  |  311|    166|            }
  |  |  312|      0|            stack_pointer[-2] = res;
  |  |  313|    166|            stack_pointer += -1;
  |  |  314|    166|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  315|    166|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    166|    { \
  |  |  |  |  201|    166|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    166|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    166|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    166|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    166|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    166|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    166|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    166|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 166]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    166|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    166|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    166|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    166|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    166|    }
  |  |  ------------------
  |  |  |  Branch (315:13): [True: 166, False: 0]
  |  |  ------------------
  |  |  316|    166|        }
  |  |  317|       |
  |  |  318|     12|        TARGET(BINARY_OP_EXTEND) {
  |  |  ------------------
  |  |  |  |  132|     12|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  319|       |            #if _Py_TAIL_CALL_INTERP
  |  |  320|       |            int opcode = BINARY_OP_EXTEND;
  |  |  321|       |            (void)(opcode);
  |  |  322|       |            #endif
  |  |  323|     12|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  324|     12|            (void)this_instr;
  |  |  325|     12|            frame->instr_ptr = next_instr;
  |  |  326|     12|            next_instr += 6;
  |  |  327|     12|            INSTRUCTION_STATS(BINARY_OP_EXTEND);
  |  |  ------------------
  |  |  |  |   71|     12|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  328|     12|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  329|     12|            _PyStackRef left;
  |  |  330|     12|            _PyStackRef right;
  |  |  331|     12|            _PyStackRef res;
  |  |  332|     12|            _PyStackRef l;
  |  |  333|     12|            _PyStackRef r;
  |  |  334|     12|            _PyStackRef value;
  |  |  335|       |            /* Skip 1 cache entry */
  |  |  336|       |            // _GUARD_BINARY_OP_EXTEND
  |  |  337|     12|            {
  |  |  338|     12|                right = stack_pointer[-1];
  |  |  339|     12|                left = stack_pointer[-2];
  |  |  340|     12|                PyObject *descr = read_obj(&this_instr[2].cache);
  |  |  341|     12|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  342|     12|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  |  343|     12|                _PyBinaryOpSpecializationDescr *d = (_PyBinaryOpSpecializationDescr*)descr;
  |  |  344|     12|                assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5);
  |  |  ------------------
  |  |  |  Branch (344:17): [True: 12, Folded]
  |  |  ------------------
  |  |  345|     12|                assert(d != NULL);
  |  |  ------------------
  |  |  |  Branch (345:17): [True: 12, False: 0]
  |  |  ------------------
  |  |  346|     12|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  347|     12|                int match = (d->guard != NULL)
  |  |  ------------------
  |  |  |  Branch (347:29): [True: 10, False: 2]
  |  |  ------------------
  |  |  348|     12|                ? d->guard(left_o, right_o)
  |  |  349|     12|            : (Py_TYPE(left_o) == d->lhs_type && Py_TYPE(right_o) == d->rhs_type);
  |  |  ------------------
  |  |  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                           : (Py_TYPE(left_o) == d->lhs_type && Py_TYPE(right_o) == d->rhs_type);
  |  |  ------------------
  |  |  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (349:16): [True: 2, False: 0]
  |  |  |  Branch (349:50): [True: 2, False: 0]
  |  |  ------------------
  |  |  350|     12|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  351|     12|                if (!match) {
  |  |  ------------------
  |  |  |  Branch (351:21): [True: 0, False: 12]
  |  |  ------------------
  |  |  352|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  353|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (353:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  354|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  355|      0|                }
  |  |  356|     12|            }
  |  |  357|       |            /* Skip -4 cache entry */
  |  |  358|       |            // _BINARY_OP_EXTEND
  |  |  359|     12|            {
  |  |  360|     12|                PyObject *descr = read_obj(&this_instr[2].cache);
  |  |  361|     12|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  362|     12|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  |  363|     12|                assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5);
  |  |  ------------------
  |  |  |  Branch (363:17): [True: 12, Folded]
  |  |  ------------------
  |  |  364|     12|                _PyBinaryOpSpecializationDescr *d = (_PyBinaryOpSpecializationDescr*)descr;
  |  |  365|     12|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|     12|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  366|     12|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  367|     12|                PyObject *res_o = d->action(left_o, right_o);
  |  |  368|     12|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  369|     12|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (369:21): [True: 0, False: 12]
  |  |  ------------------
  |  |  370|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |  371|      0|                }
  |  |  372|     12|                assert(d->result_type == NULL || Py_TYPE(res_o) == d->result_type);
  |  |  ------------------
  |  |  |  Branch (372:17): [True: 0, False: 12]
  |  |  |  Branch (372:17): [True: 12, False: 0]
  |  |  ------------------
  |  |  373|     12|                assert(!d->result_unique || Py_REFCNT(res_o) == 1 || _Py_IsImmortal(res_o));
  |  |  ------------------
  |  |  |  Branch (373:17): [True: 2, False: 10]
  |  |  |  Branch (373:17): [True: 10, False: 0]
  |  |  |  Branch (373:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  374|     12|                assert(!PyFloat_CheckExact(res_o) || Py_REFCNT(res_o) == 1);
  |  |  ------------------
  |  |  |  Branch (374:17): [True: 12, False: 0]
  |  |  |  Branch (374:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  375|     12|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |  376|     12|                l = left;
  |  |  377|     12|                r = right;
  |  |  378|     12|            }
  |  |  379|       |            // _POP_TOP
  |  |  380|      0|            {
  |  |  381|     12|                value = r;
  |  |  382|     12|                stack_pointer[-2] = res;
  |  |  383|     12|                stack_pointer[-1] = l;
  |  |  384|     12|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  385|     12|                PyStackRef_XCLOSE(value);
  |  |  386|     12|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  387|     12|            }
  |  |  388|       |            // _POP_TOP
  |  |  389|     12|            {
  |  |  390|     12|                value = l;
  |  |  391|     12|                stack_pointer += -1;
  |  |  392|     12|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     12|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  393|     12|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  394|     12|                PyStackRef_XCLOSE(value);
  |  |  395|     12|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  396|     12|            }
  |  |  397|     12|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     12|    { \
  |  |  |  |  201|     12|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     12|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     12|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     12|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     12|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     12|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     12|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     12|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 12]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     12|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     12|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     12|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     12|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     12|    }
  |  |  ------------------
  |  |  |  Branch (397:13): [True: 12, False: 0]
  |  |  ------------------
  |  |  398|     12|        }
  |  |  399|       |
  |  |  400|     24|        TARGET(BINARY_OP_INPLACE_ADD_UNICODE) {
  |  |  ------------------
  |  |  |  |  132|     24|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  401|       |            #if _Py_TAIL_CALL_INTERP
  |  |  402|       |            int opcode = BINARY_OP_INPLACE_ADD_UNICODE;
  |  |  403|       |            (void)(opcode);
  |  |  404|       |            #endif
  |  |  405|     24|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  406|     24|            (void)this_instr;
  |  |  407|     24|            frame->instr_ptr = next_instr;
  |  |  408|     24|            next_instr += 6;
  |  |  409|     24|            INSTRUCTION_STATS(BINARY_OP_INPLACE_ADD_UNICODE);
  |  |  ------------------
  |  |  |  |   71|     24|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  410|     24|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  411|     24|            _PyStackRef value;
  |  |  412|     24|            _PyStackRef nos;
  |  |  413|     24|            _PyStackRef left;
  |  |  414|     24|            _PyStackRef right;
  |  |  415|     24|            _PyStackRef res;
  |  |  416|       |            // _GUARD_TOS_UNICODE
  |  |  417|     24|            {
  |  |  418|     24|                value = stack_pointer[-1];
  |  |  419|     24|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  420|     24|                if (!PyUnicode_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |  104|     24|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     24|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (420:21): [True: 0, False: 24]
  |  |  ------------------
  |  |  421|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  422|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (422:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  423|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  424|      0|                }
  |  |  425|     24|            }
  |  |  426|       |            // _GUARD_NOS_UNICODE
  |  |  427|     24|            {
  |  |  428|     24|                nos = stack_pointer[-2];
  |  |  429|     24|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |  430|     24|                if (!PyUnicode_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |  104|     24|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     24|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (430:21): [True: 0, False: 24]
  |  |  ------------------
  |  |  431|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  432|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (432:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  433|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  434|      0|                }
  |  |  435|     24|            }
  |  |  436|       |            /* Skip 5 cache entries */
  |  |  437|       |            // _BINARY_OP_INPLACE_ADD_UNICODE
  |  |  438|     24|            {
  |  |  439|     24|                right = value;
  |  |  440|     24|                left = nos;
  |  |  441|     24|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  442|     24|                assert(PyUnicode_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (442:17): [True: 24, False: 0]
  |  |  ------------------
  |  |  443|     24|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(right)));
  |  |  ------------------
  |  |  |  Branch (443:17): [True: 24, False: 0]
  |  |  ------------------
  |  |  444|     24|                int next_oparg;
  |  |  445|     24|                #if TIER_ONE
  |  |  446|     24|                assert(next_instr->op.code == STORE_FAST);
  |  |  ------------------
  |  |  |  Branch (446:17): [True: 24, False: 0]
  |  |  ------------------
  |  |  447|     24|                next_oparg = next_instr->op.arg;
  |  |  448|       |                #else
  |  |  449|       |                next_oparg = (int)CURRENT_OPERAND0_16();
  |  |  450|       |                #endif
  |  |  451|     24|                _PyStackRef *target_local = &GETLOCAL(next_oparg);
  |  |  ------------------
  |  |  |  |  284|     24|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |  452|     24|                assert(PyUnicode_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (452:17): [True: 24, False: 0]
  |  |  ------------------
  |  |  453|     24|                if (PyStackRef_AsPyObjectBorrow(*target_local) != left_o) {
  |  |  ------------------
  |  |  |  Branch (453:21): [True: 0, False: 24]
  |  |  ------------------
  |  |  454|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  455|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (455:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  456|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  457|      0|                }
  |  |  458|     24|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|     24|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  459|     24|                assert(Py_REFCNT(left_o) >= 2 || !PyStackRef_IsHeapSafe(left));
  |  |  ------------------
  |  |  |  Branch (459:17): [True: 20, False: 4]
  |  |  |  Branch (459:17): [True: 4, False: 0]
  |  |  ------------------
  |  |  460|     24|                PyObject *temp = PyStackRef_AsPyObjectSteal(*target_local);
  |  |  461|     24|                PyObject *right_o = PyStackRef_AsPyObjectSteal(right);
  |  |  462|     24|                PyStackRef_CLOSE_SPECIALIZED(left, _PyUnicode_ExactDealloc);
  |  |  463|     24|                stack_pointer += -2;
  |  |  464|     24|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     24|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  465|     24|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  466|     24|                PyUnicode_Append(&temp, right_o);
  |  |  467|     24|                _Py_DECREF_SPECIALIZED(right_o, _PyUnicode_ExactDealloc);
  |  |  ------------------
  |  |  |  |   96|     24|    do { \
  |  |  |  |   97|     24|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   98|     24|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|     24|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 24]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   99|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  100|      0|            break; \
  |  |  |  |  101|      0|        } \
  |  |  |  |  102|     24|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|     24|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  103|     24|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (103:13): [True: 24, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  104|     24|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|     24|    do { \
  |  |  |  |  |  |  113|     24|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|     24|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 24]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|     24|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 24]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  105|     24|            destructor d = (destructor)(dealloc); \
  |  |  |  |  106|     24|            d(op); \
  |  |  |  |  107|     24|        } \
  |  |  |  |  108|     24|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (108:14): [Folded, False: 24]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  468|     24|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  469|     24|                *target_local = PyStackRef_NULL;
  |  |  470|     24|                if (temp == NULL) {
  |  |  ------------------
  |  |  |  Branch (470:21): [True: 0, False: 24]
  |  |  ------------------
  |  |  471|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |  472|      0|                }
  |  |  473|     24|                res = PyStackRef_FromPyObjectSteal(temp);
  |  |  474|     24|            }
  |  |  475|      0|            stack_pointer[0] = res;
  |  |  476|     24|            stack_pointer += 1;
  |  |  477|     24|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     24|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  478|     24|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     24|    { \
  |  |  |  |  201|     24|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     24|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     24|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     24|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     24|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     24|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     24|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     24|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 24]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     24|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     24|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     24|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     24|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     24|    }
  |  |  ------------------
  |  |  |  Branch (478:13): [True: 24, False: 0]
  |  |  ------------------
  |  |  479|     24|        }
  |  |  480|       |
  |  |  481|      0|        TARGET(BINARY_OP_MULTIPLY_FLOAT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  482|       |            #if _Py_TAIL_CALL_INTERP
  |  |  483|       |            int opcode = BINARY_OP_MULTIPLY_FLOAT;
  |  |  484|       |            (void)(opcode);
  |  |  485|       |            #endif
  |  |  486|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  487|      0|            (void)this_instr;
  |  |  488|      0|            frame->instr_ptr = next_instr;
  |  |  489|      0|            next_instr += 6;
  |  |  490|      0|            INSTRUCTION_STATS(BINARY_OP_MULTIPLY_FLOAT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  491|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  492|      0|            _PyStackRef value;
  |  |  493|      0|            _PyStackRef left;
  |  |  494|      0|            _PyStackRef right;
  |  |  495|      0|            _PyStackRef res;
  |  |  496|      0|            _PyStackRef l;
  |  |  497|      0|            _PyStackRef r;
  |  |  498|       |            // _GUARD_TOS_FLOAT
  |  |  499|      0|            {
  |  |  500|      0|                value = stack_pointer[-1];
  |  |  501|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  502|      0|                if (!PyFloat_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (502:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  503|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  504|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (504:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  505|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  506|      0|                }
  |  |  507|      0|            }
  |  |  508|       |            // _GUARD_NOS_FLOAT
  |  |  509|      0|            {
  |  |  510|      0|                left = stack_pointer[-2];
  |  |  511|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  512|      0|                if (!PyFloat_CheckExact(left_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (512:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  513|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  514|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (514:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  515|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  516|      0|                }
  |  |  517|      0|            }
  |  |  518|       |            /* Skip 5 cache entries */
  |  |  519|       |            // _BINARY_OP_MULTIPLY_FLOAT
  |  |  520|      0|            {
  |  |  521|      0|                right = value;
  |  |  522|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  523|      0|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  |  524|      0|                assert(PyFloat_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (524:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  525|      0|                assert(PyFloat_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (525:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  526|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  527|      0|                double dres =
  |  |  528|      0|                ((PyFloatObject *)left_o)->ob_fval *
  |  |  529|      0|                ((PyFloatObject *)right_o)->ob_fval;
  |  |  530|      0|                PyObject *d = PyFloat_FromDouble(dres);
  |  |  531|      0|                if (d == NULL) {
  |  |  ------------------
  |  |  |  Branch (531:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  532|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |  533|      0|                }
  |  |  534|      0|                res = PyStackRef_FromPyObjectSteal(d);
  |  |  535|      0|                l = left;
  |  |  536|      0|                r = right;
  |  |  537|      0|            }
  |  |  538|       |            // _POP_TOP_FLOAT
  |  |  539|      0|            {
  |  |  540|      0|                value = r;
  |  |  541|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (541:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  542|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  |  543|      0|            }
  |  |  544|       |            // _POP_TOP_FLOAT
  |  |  545|      0|            {
  |  |  546|      0|                value = l;
  |  |  547|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (547:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  548|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  |  549|      0|            }
  |  |  550|      0|            stack_pointer[-2] = res;
  |  |  551|      0|            stack_pointer += -1;
  |  |  552|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  553|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (553:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  554|      0|        }
  |  |  555|       |
  |  |  556|      0|        TARGET(BINARY_OP_MULTIPLY_INT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  557|       |            #if _Py_TAIL_CALL_INTERP
  |  |  558|       |            int opcode = BINARY_OP_MULTIPLY_INT;
  |  |  559|       |            (void)(opcode);
  |  |  560|       |            #endif
  |  |  561|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  562|      0|            (void)this_instr;
  |  |  563|      0|            frame->instr_ptr = next_instr;
  |  |  564|      0|            next_instr += 6;
  |  |  565|      0|            INSTRUCTION_STATS(BINARY_OP_MULTIPLY_INT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  566|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  567|      0|            _PyStackRef value;
  |  |  568|      0|            _PyStackRef left;
  |  |  569|      0|            _PyStackRef right;
  |  |  570|      0|            _PyStackRef res;
  |  |  571|      0|            _PyStackRef l;
  |  |  572|      0|            _PyStackRef r;
  |  |  573|       |            // _GUARD_TOS_INT
  |  |  574|      0|            {
  |  |  575|      0|                value = stack_pointer[-1];
  |  |  576|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  577|      0|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (577:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  578|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  579|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (579:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  580|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  581|      0|                }
  |  |  582|      0|            }
  |  |  583|       |            // _GUARD_NOS_INT
  |  |  584|      0|            {
  |  |  585|      0|                left = stack_pointer[-2];
  |  |  586|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  587|      0|                if (!_PyLong_CheckExactAndCompact(left_o)) {
  |  |  ------------------
  |  |  |  Branch (587:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  588|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  589|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (589:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  590|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  591|      0|                }
  |  |  592|      0|            }
  |  |  593|       |            /* Skip 5 cache entries */
  |  |  594|       |            // _BINARY_OP_MULTIPLY_INT
  |  |  595|      0|            {
  |  |  596|      0|                right = value;
  |  |  597|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  |  598|      0|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  |  599|      0|                assert(PyLong_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (599:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  600|      0|                assert(PyLong_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (600:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  601|      0|                assert(_PyLong_BothAreCompact((PyLongObject *)left_o, (PyLongObject *)right_o));
  |  |  ------------------
  |  |  |  Branch (601:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  602|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  603|      0|                res = _PyCompactLong_Multiply((PyLongObject *)left_o, (PyLongObject *)right_o);
  |  |  604|      0|                if (PyStackRef_IsNull(res)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  605|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  606|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (606:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  607|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  608|      0|                }
  |  |  609|      0|                l = left;
  |  |  610|      0|                r = right;
  |  |  611|      0|            }
  |  |  612|       |            // _POP_TOP_INT
  |  |  613|      0|            {
  |  |  614|      0|                value = r;
  |  |  615|      0|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (615:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  616|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  |  617|      0|            }
  |  |  618|       |            // _POP_TOP_INT
  |  |  619|      0|            {
  |  |  620|      0|                value = l;
  |  |  621|      0|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (621:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  622|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  |  623|      0|            }
  |  |  624|      0|            stack_pointer[-2] = res;
  |  |  625|      0|            stack_pointer += -1;
  |  |  626|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  627|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (627:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  628|      0|        }
  |  |  629|       |
  |  |  630|    212|        TARGET(BINARY_OP_SUBSCR_DICT) {
  |  |  ------------------
  |  |  |  |  132|    212|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  631|       |            #if _Py_TAIL_CALL_INTERP
  |  |  632|       |            int opcode = BINARY_OP_SUBSCR_DICT;
  |  |  633|       |            (void)(opcode);
  |  |  634|       |            #endif
  |  |  635|    212|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  636|    212|            (void)this_instr;
  |  |  637|    212|            frame->instr_ptr = next_instr;
  |  |  638|    212|            next_instr += 6;
  |  |  639|    212|            INSTRUCTION_STATS(BINARY_OP_SUBSCR_DICT);
  |  |  ------------------
  |  |  |  |   71|    212|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  640|    212|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  641|    212|            _PyStackRef nos;
  |  |  642|    212|            _PyStackRef dict_st;
  |  |  643|    212|            _PyStackRef sub_st;
  |  |  644|    212|            _PyStackRef res;
  |  |  645|    212|            _PyStackRef ds;
  |  |  646|    212|            _PyStackRef ss;
  |  |  647|    212|            _PyStackRef value;
  |  |  648|       |            // _GUARD_NOS_DICT_SUBSCRIPT
  |  |  649|    212|            {
  |  |  650|    212|                nos = stack_pointer[-2];
  |  |  651|    212|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |  652|    212|                if (!Py_TYPE(o)->tp_as_mapping) {
  |  |  ------------------
  |  |  |  |  213|    212|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    212|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    212|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (652:21): [True: 0, False: 212]
  |  |  ------------------
  |  |  653|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  654|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (654:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  655|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  656|      0|                }
  |  |  657|    212|                if (Py_TYPE(o)->tp_as_mapping->mp_subscript != _PyDict_Subscript) {
  |  |  ------------------
  |  |  |  |  213|    212|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    212|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    212|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (657:21): [True: 0, False: 212]
  |  |  ------------------
  |  |  658|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  659|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (659:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  660|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  661|      0|                }
  |  |  662|    212|            }
  |  |  663|       |            /* Skip 5 cache entries */
  |  |  664|       |            // _BINARY_OP_SUBSCR_DICT
  |  |  665|    212|            {
  |  |  666|    212|                sub_st = stack_pointer[-1];
  |  |  667|    212|                dict_st = nos;
  |  |  668|    212|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  |  669|    212|                PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st);
  |  |  670|    212|                assert(Py_TYPE(dict)->tp_as_mapping->mp_subscript == _PyDict_Subscript);
  |  |  ------------------
  |  |  |  Branch (670:17): [True: 212, False: 0]
  |  |  ------------------
  |  |  671|    212|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|    212|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  672|    212|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  673|    212|                PyObject *res_o = _PyDict_Subscript(dict, sub);
  |  |  674|    212|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  675|    212|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (675:21): [True: 110, False: 102]
  |  |  ------------------
  |  |  676|    110|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|    110|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |  677|      0|                }
  |  |  678|    102|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |  679|    102|                ds = dict_st;
  |  |  680|    102|                ss = sub_st;
  |  |  681|    102|            }
  |  |  682|       |            // _POP_TOP
  |  |  683|      0|            {
  |  |  684|    102|                value = ss;
  |  |  685|    102|                stack_pointer[-2] = res;
  |  |  686|    102|                stack_pointer[-1] = ds;
  |  |  687|    102|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  688|    102|                PyStackRef_XCLOSE(value);
  |  |  689|    102|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  690|    102|            }
  |  |  691|       |            // _POP_TOP
  |  |  692|    102|            {
  |  |  693|    102|                value = ds;
  |  |  694|    102|                stack_pointer += -1;
  |  |  695|    102|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    102|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  696|    102|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  697|    102|                PyStackRef_XCLOSE(value);
  |  |  698|    102|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  699|    102|            }
  |  |  700|    102|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    102|    { \
  |  |  |  |  201|    102|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    102|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    102|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    102|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    102|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    102|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    102|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    102|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 102]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    102|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    102|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    102|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    102|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    102|    }
  |  |  ------------------
  |  |  |  Branch (700:13): [True: 102, False: 0]
  |  |  ------------------
  |  |  701|    102|        }
  |  |  702|       |
  |  |  703|      0|        TARGET(BINARY_OP_SUBSCR_GETITEM) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  704|       |            #if _Py_TAIL_CALL_INTERP
  |  |  705|       |            int opcode = BINARY_OP_SUBSCR_GETITEM;
  |  |  706|       |            (void)(opcode);
  |  |  707|       |            #endif
  |  |  708|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  709|      0|            (void)this_instr;
  |  |  710|      0|            frame->instr_ptr = next_instr;
  |  |  711|      0|            next_instr += 6;
  |  |  712|      0|            INSTRUCTION_STATS(BINARY_OP_SUBSCR_GETITEM);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  713|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  714|      0|            _PyStackRef container;
  |  |  715|      0|            _PyStackRef getitem;
  |  |  716|      0|            _PyStackRef sub;
  |  |  717|      0|            _PyStackRef new_frame;
  |  |  718|       |            /* Skip 5 cache entries */
  |  |  719|       |            // _CHECK_PEP_523
  |  |  720|      0|            {
  |  |  721|      0|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  722|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  723|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (723:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  724|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  725|      0|                }
  |  |  726|      0|            }
  |  |  727|       |            // _BINARY_OP_SUBSCR_CHECK_FUNC
  |  |  728|      0|            {
  |  |  729|      0|                container = stack_pointer[-2];
  |  |  730|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(container));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  731|      0|                if (!PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE)) {
  |  |  ------------------
  |  |  |  |  503|      0|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  |  |  ------------------
  |  |  |  Branch (731:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  732|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  733|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (733:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  734|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  735|      0|                }
  |  |  736|      0|                PyHeapTypeObject *ht = (PyHeapTypeObject *)tp;
  |  |  737|      0|                PyObject *getitem_o = FT_ATOMIC_LOAD_PTR_ACQUIRE(ht->_spec_cache.getitem);
  |  |  ------------------
  |  |  |  |  150|      0|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  |  738|      0|                if (getitem_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (738:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  739|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  740|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (740:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  741|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  742|      0|                }
  |  |  743|      0|                assert(PyFunction_Check(getitem_o));
  |  |  ------------------
  |  |  |  Branch (743:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  744|      0|                uint32_t cached_version = FT_ATOMIC_LOAD_UINT32_RELAXED(ht->_spec_cache.getitem_version);
  |  |  ------------------
  |  |  |  |  159|      0|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  745|      0|                if (((PyFunctionObject *)getitem_o)->func_version != cached_version) {
  |  |  ------------------
  |  |  |  Branch (745:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  746|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  747|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (747:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  748|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  749|      0|                }
  |  |  750|      0|                PyCodeObject *code = (PyCodeObject *)PyFunction_GET_CODE(getitem_o);
  |  |  ------------------
  |  |  |  |   93|      0|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  751|      0|                assert(code->co_argcount == 2);
  |  |  ------------------
  |  |  |  Branch (751:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  752|      0|                if (!_PyThreadState_HasStackSpace(tstate, code->co_framesize)) {
  |  |  ------------------
  |  |  |  Branch (752:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  753|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  754|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (754:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  755|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  756|      0|                }
  |  |  757|      0|                getitem = PyStackRef_FromPyObjectNew(getitem_o);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  758|      0|            }
  |  |  759|       |            // _BINARY_OP_SUBSCR_INIT_CALL
  |  |  760|      0|            {
  |  |  761|      0|                sub = stack_pointer[-1];
  |  |  762|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  763|      0|                _PyInterpreterFrame* pushed_frame = _PyFrame_PushUnchecked(tstate, getitem, 2, frame);
  |  |  764|      0|                pushed_frame->localsplus[0] = container;
  |  |  765|      0|                pushed_frame->localsplus[1] = sub;
  |  |  766|      0|                frame->return_offset = 6u ;
  |  |  767|      0|                new_frame = PyStackRef_Wrap(pushed_frame);
  |  |  768|      0|            }
  |  |  769|       |            // _PUSH_FRAME
  |  |  770|      0|            {
  |  |  771|      0|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (771:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  772|      0|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  |  773|      0|                stack_pointer += -2;
  |  |  774|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  775|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  776|      0|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (776:17): [True: 0, False: 0]
  |  |  |  Branch (776:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  777|      0|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  |  778|      0|                frame = tstate->current_frame = temp;
  |  |  779|      0|                tstate->py_recursion_remaining--;
  |  |  780|      0|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|      0|#define LOAD_SP() \
  |  |  |  |  426|      0|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  |  781|      0|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|      0|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      0|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  782|      0|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|      0|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  |  783|      0|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      0|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  |  784|      0|            }
  |  |  785|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (785:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  786|      0|        }
  |  |  787|       |
  |  |  788|      0|        TARGET(BINARY_OP_SUBSCR_LIST_INT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  789|       |            #if _Py_TAIL_CALL_INTERP
  |  |  790|       |            int opcode = BINARY_OP_SUBSCR_LIST_INT;
  |  |  791|       |            (void)(opcode);
  |  |  792|       |            #endif
  |  |  793|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  794|      0|            (void)this_instr;
  |  |  795|      0|            frame->instr_ptr = next_instr;
  |  |  796|      0|            next_instr += 6;
  |  |  797|      0|            INSTRUCTION_STATS(BINARY_OP_SUBSCR_LIST_INT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  798|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  799|      0|            _PyStackRef value;
  |  |  800|      0|            _PyStackRef nos;
  |  |  801|      0|            _PyStackRef list_st;
  |  |  802|      0|            _PyStackRef sub_st;
  |  |  803|      0|            _PyStackRef res;
  |  |  804|      0|            _PyStackRef ls;
  |  |  805|      0|            _PyStackRef ss;
  |  |  806|       |            // _GUARD_TOS_INT
  |  |  807|      0|            {
  |  |  808|      0|                value = stack_pointer[-1];
  |  |  809|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  810|      0|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (810:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  811|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  812|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (812:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  813|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  814|      0|                }
  |  |  815|      0|            }
  |  |  816|       |            // _GUARD_NOS_LIST
  |  |  817|      0|            {
  |  |  818|      0|                nos = stack_pointer[-2];
  |  |  819|      0|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |  820|      0|                if (!PyList_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   26|      0|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (820:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  821|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  822|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (822:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  823|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  824|      0|                }
  |  |  825|      0|            }
  |  |  826|       |            /* Skip 5 cache entries */
  |  |  827|       |            // _BINARY_OP_SUBSCR_LIST_INT
  |  |  828|      0|            {
  |  |  829|      0|                sub_st = value;
  |  |  830|      0|                list_st = nos;
  |  |  831|      0|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  |  832|      0|                PyObject *list = PyStackRef_AsPyObjectBorrow(list_st);
  |  |  833|      0|                assert(PyLong_CheckExact(sub));
  |  |  ------------------
  |  |  |  Branch (833:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  834|      0|                assert(PyList_CheckExact(list));
  |  |  ------------------
  |  |  |  Branch (834:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  835|      0|                Py_ssize_t index = _PyLong_CompactValue((PyLongObject *)sub);
  |  |  836|      0|                if (index < 0) {
  |  |  ------------------
  |  |  |  Branch (836:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  837|      0|                    index += PyList_GET_SIZE(list);
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  838|      0|                }
  |  |  839|       |                #ifdef Py_GIL_DISABLED
  |  |  840|       |                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  841|       |                PyObject *res_o = _PyList_GetItemRef((PyListObject*)list, index);
  |  |  842|       |                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  843|       |                if (res_o == NULL) {
  |  |  844|       |                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  845|       |                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  846|       |                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  847|       |                }
  |  |  848|       |                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |  849|       |                #else
  |  |  850|      0|                if (index < 0 || index >= PyList_GET_SIZE(list)) {
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (850:21): [True: 0, False: 0]
  |  |  |  Branch (850:34): [True: 0, False: 0]
  |  |  ------------------
  |  |  851|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  852|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (852:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  853|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  854|      0|                }
  |  |  855|      0|                PyObject *res_o = PyList_GET_ITEM(list, index);
  |  |  ------------------
  |  |  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (855:35): [True: 0, False: 0]
  |  |  ------------------
  |  |  856|      0|                assert(res_o != NULL);
  |  |  ------------------
  |  |  |  Branch (856:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  857|      0|                res = PyStackRef_FromPyObjectNew(res_o);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  858|      0|                #endif
  |  |  859|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  860|      0|                ls = list_st;
  |  |  861|      0|                ss = sub_st;
  |  |  862|      0|            }
  |  |  863|       |            // _POP_TOP_INT
  |  |  864|      0|            {
  |  |  865|      0|                value = ss;
  |  |  866|      0|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (866:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  867|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  |  868|      0|            }
  |  |  869|       |            // _POP_TOP
  |  |  870|      0|            {
  |  |  871|      0|                value = ls;
  |  |  872|      0|                stack_pointer[-2] = res;
  |  |  873|      0|                stack_pointer += -1;
  |  |  874|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  875|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  876|      0|                PyStackRef_XCLOSE(value);
  |  |  877|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  878|      0|            }
  |  |  879|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (879:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  880|      0|        }
  |  |  881|       |
  |  |  882|      0|        TARGET(BINARY_OP_SUBSCR_LIST_SLICE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  883|       |            #if _Py_TAIL_CALL_INTERP
  |  |  884|       |            int opcode = BINARY_OP_SUBSCR_LIST_SLICE;
  |  |  885|       |            (void)(opcode);
  |  |  886|       |            #endif
  |  |  887|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  888|      0|            (void)this_instr;
  |  |  889|      0|            frame->instr_ptr = next_instr;
  |  |  890|      0|            next_instr += 6;
  |  |  891|      0|            INSTRUCTION_STATS(BINARY_OP_SUBSCR_LIST_SLICE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  892|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  893|      0|            _PyStackRef tos;
  |  |  894|      0|            _PyStackRef nos;
  |  |  895|      0|            _PyStackRef list_st;
  |  |  896|      0|            _PyStackRef sub_st;
  |  |  897|      0|            _PyStackRef res;
  |  |  898|      0|            _PyStackRef ls;
  |  |  899|      0|            _PyStackRef ss;
  |  |  900|      0|            _PyStackRef value;
  |  |  901|       |            // _GUARD_TOS_SLICE
  |  |  902|      0|            {
  |  |  903|      0|                tos = stack_pointer[-1];
  |  |  904|      0|                PyObject *o = PyStackRef_AsPyObjectBorrow(tos);
  |  |  905|      0|                if (!PySlice_Check(o)) {
  |  |  ------------------
  |  |  |  |   22|      0|#define PySlice_Check(op) Py_IS_TYPE((op), &PySlice_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (905:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  906|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  907|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (907:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  908|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  909|      0|                }
  |  |  910|      0|            }
  |  |  911|       |            // _GUARD_NOS_LIST
  |  |  912|      0|            {
  |  |  913|      0|                nos = stack_pointer[-2];
  |  |  914|      0|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |  915|      0|                if (!PyList_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   26|      0|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (915:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  916|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  917|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (917:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  918|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  919|      0|                }
  |  |  920|      0|            }
  |  |  921|       |            /* Skip 5 cache entries */
  |  |  922|       |            // _BINARY_OP_SUBSCR_LIST_SLICE
  |  |  923|      0|            {
  |  |  924|      0|                sub_st = tos;
  |  |  925|      0|                list_st = nos;
  |  |  926|      0|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  |  927|      0|                PyObject *list = PyStackRef_AsPyObjectBorrow(list_st);
  |  |  928|      0|                assert(PySlice_Check(sub));
  |  |  ------------------
  |  |  |  Branch (928:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  929|      0|                assert(PyList_CheckExact(list));
  |  |  ------------------
  |  |  |  Branch (929:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  930|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  931|      0|                PyObject *res_o = _PyList_SliceSubscript(list, sub);
  |  |  932|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  933|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |  934|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (934:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  935|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |  936|      0|                }
  |  |  937|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |  938|      0|                ls = list_st;
  |  |  939|      0|                ss = sub_st;
  |  |  940|      0|            }
  |  |  941|       |            // _POP_TOP
  |  |  942|      0|            {
  |  |  943|      0|                value = ss;
  |  |  944|      0|                stack_pointer[-2] = res;
  |  |  945|      0|                stack_pointer[-1] = ls;
  |  |  946|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  947|      0|                PyStackRef_XCLOSE(value);
  |  |  948|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  949|      0|            }
  |  |  950|       |            // _POP_TOP
  |  |  951|      0|            {
  |  |  952|      0|                value = ls;
  |  |  953|      0|                stack_pointer += -1;
  |  |  954|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |  955|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |  956|      0|                PyStackRef_XCLOSE(value);
  |  |  957|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |  958|      0|            }
  |  |  959|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (959:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  960|      0|        }
  |  |  961|       |
  |  |  962|    750|        TARGET(BINARY_OP_SUBSCR_STR_INT) {
  |  |  ------------------
  |  |  |  |  132|    750|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |  963|       |            #if _Py_TAIL_CALL_INTERP
  |  |  964|       |            int opcode = BINARY_OP_SUBSCR_STR_INT;
  |  |  965|       |            (void)(opcode);
  |  |  966|       |            #endif
  |  |  967|    750|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |  968|    750|            (void)this_instr;
  |  |  969|    750|            frame->instr_ptr = next_instr;
  |  |  970|    750|            next_instr += 6;
  |  |  971|    750|            INSTRUCTION_STATS(BINARY_OP_SUBSCR_STR_INT);
  |  |  ------------------
  |  |  |  |   71|    750|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |  972|    750|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  |  973|    750|            _PyStackRef value;
  |  |  974|    750|            _PyStackRef nos;
  |  |  975|    750|            _PyStackRef str_st;
  |  |  976|    750|            _PyStackRef sub_st;
  |  |  977|    750|            _PyStackRef res;
  |  |  978|    750|            _PyStackRef s;
  |  |  979|    750|            _PyStackRef i;
  |  |  980|       |            // _GUARD_TOS_INT
  |  |  981|    750|            {
  |  |  982|    750|                value = stack_pointer[-1];
  |  |  983|    750|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |  984|    750|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (984:21): [True: 0, False: 750]
  |  |  ------------------
  |  |  985|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  986|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (986:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  987|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  988|      0|                }
  |  |  989|    750|            }
  |  |  990|       |            // _GUARD_NOS_COMPACT_ASCII
  |  |  991|    750|            {
  |  |  992|    750|                nos = stack_pointer[-2];
  |  |  993|    750|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |  994|    750|                if (!PyUnicode_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |  104|    750|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    750|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    750|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (994:21): [True: 0, False: 750]
  |  |  ------------------
  |  |  995|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |  996|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (996:21): [True: 0, False: 0]
  |  |  ------------------
  |  |  997|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |  998|      0|                }
  |  |  999|    750|                if (!PyUnicode_IS_COMPACT_ASCII(o)) {
  |  |  ------------------
  |  |  |  |  241|    750|#define PyUnicode_IS_COMPACT_ASCII(op) PyUnicode_IS_COMPACT_ASCII(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    750|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (999:21): [True: 0, False: 750]
  |  |  ------------------
  |  | 1000|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1001|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1001:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1002|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1003|      0|                }
  |  | 1004|    750|            }
  |  | 1005|       |            /* Skip 5 cache entries */
  |  | 1006|       |            // _BINARY_OP_SUBSCR_STR_INT
  |  | 1007|    750|            {
  |  | 1008|    750|                sub_st = value;
  |  | 1009|    750|                str_st = nos;
  |  | 1010|    750|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  | 1011|    750|                PyObject *str = PyStackRef_AsPyObjectBorrow(str_st);
  |  | 1012|    750|                assert(PyLong_CheckExact(sub));
  |  |  ------------------
  |  |  |  Branch (1012:17): [True: 750, False: 0]
  |  |  ------------------
  |  | 1013|    750|                assert(PyUnicode_CheckExact(str));
  |  |  ------------------
  |  |  |  Branch (1013:17): [True: 750, False: 0]
  |  |  ------------------
  |  | 1014|    750|                if (!_PyLong_IsNonNegativeCompact((PyLongObject*)sub)) {
  |  |  ------------------
  |  |  |  Branch (1014:21): [True: 0, False: 750]
  |  |  ------------------
  |  | 1015|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1016|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1016:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1017|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1018|      0|                }
  |  | 1019|    750|                Py_ssize_t index = ((PyLongObject*)sub)->long_value.ob_digit[0];
  |  | 1020|    750|                if (PyUnicode_GET_LENGTH(str) <= index) {
  |  |  ------------------
  |  |  |  |  299|    750|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    750|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    750|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1020:21): [True: 0, False: 750]
  |  |  ------------------
  |  | 1021|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1022|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1022:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1023|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1024|      0|                }
  |  | 1025|    750|                uint8_t c = PyUnicode_1BYTE_DATA(str)[index];
  |  |  ------------------
  |  |  |  |  291|    750|#define PyUnicode_1BYTE_DATA(op) _Py_STATIC_CAST(Py_UCS1*, PyUnicode_DATA(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   34|    750|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1026|    750|                assert(c < 128);
  |  |  ------------------
  |  |  |  Branch (1026:17): [True: 750, False: 0]
  |  |  ------------------
  |  | 1027|    750|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|    750|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 1028|    750|                PyObject *res_o = (PyObject*)&_Py_SINGLETON(strings).ascii[c];
  |  |  ------------------
  |  |  |  |   18|    750|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    750|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1029|    750|                s = str_st;
  |  | 1030|    750|                i = sub_st;
  |  | 1031|    750|                res = PyStackRef_FromPyObjectBorrow(res_o);
  |  | 1032|    750|            }
  |  | 1033|       |            // _POP_TOP_INT
  |  | 1034|      0|            {
  |  | 1035|    750|                value = i;
  |  | 1036|    750|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1036:17): [True: 750, False: 0]
  |  |  ------------------
  |  | 1037|    750|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  | 1038|    750|            }
  |  | 1039|       |            // _POP_TOP_UNICODE
  |  | 1040|      0|            {
  |  | 1041|    750|                value = s;
  |  | 1042|    750|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1042:17): [True: 750, False: 0]
  |  |  ------------------
  |  | 1043|    750|                PyStackRef_CLOSE_SPECIALIZED(value, _PyUnicode_ExactDealloc);
  |  | 1044|    750|            }
  |  | 1045|      0|            stack_pointer[-2] = res;
  |  | 1046|    750|            stack_pointer += -1;
  |  | 1047|    750|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    750|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1048|    750|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    750|    { \
  |  |  |  |  201|    750|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    750|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    750|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    750|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    750|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    750|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    750|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    750|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 750]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    750|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    750|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    750|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    750|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    750|    }
  |  |  ------------------
  |  |  |  Branch (1048:13): [True: 750, False: 0]
  |  |  ------------------
  |  | 1049|    750|        }
  |  | 1050|       |
  |  | 1051|    112|        TARGET(BINARY_OP_SUBSCR_TUPLE_INT) {
  |  |  ------------------
  |  |  |  |  132|    112|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1052|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1053|       |            int opcode = BINARY_OP_SUBSCR_TUPLE_INT;
  |  | 1054|       |            (void)(opcode);
  |  | 1055|       |            #endif
  |  | 1056|    112|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 1057|    112|            (void)this_instr;
  |  | 1058|    112|            frame->instr_ptr = next_instr;
  |  | 1059|    112|            next_instr += 6;
  |  | 1060|    112|            INSTRUCTION_STATS(BINARY_OP_SUBSCR_TUPLE_INT);
  |  |  ------------------
  |  |  |  |   71|    112|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1061|    112|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  | 1062|    112|            _PyStackRef value;
  |  | 1063|    112|            _PyStackRef nos;
  |  | 1064|    112|            _PyStackRef tuple_st;
  |  | 1065|    112|            _PyStackRef sub_st;
  |  | 1066|    112|            _PyStackRef res;
  |  | 1067|    112|            _PyStackRef ts;
  |  | 1068|    112|            _PyStackRef ss;
  |  | 1069|       |            // _GUARD_TOS_INT
  |  | 1070|    112|            {
  |  | 1071|    112|                value = stack_pointer[-1];
  |  | 1072|    112|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 1073|    112|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (1073:21): [True: 0, False: 112]
  |  |  ------------------
  |  | 1074|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1075|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1075:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1076|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1077|      0|                }
  |  | 1078|    112|            }
  |  | 1079|       |            // _GUARD_NOS_TUPLE
  |  | 1080|    112|            {
  |  | 1081|    112|                nos = stack_pointer[-2];
  |  | 1082|    112|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  | 1083|    112|                if (!PyTuple_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   28|    112|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    112|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1083:21): [True: 0, False: 112]
  |  |  ------------------
  |  | 1084|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1085|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1085:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1086|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1087|      0|                }
  |  | 1088|    112|            }
  |  | 1089|       |            // _GUARD_BINARY_OP_SUBSCR_TUPLE_INT_BOUNDS
  |  | 1090|    112|            {
  |  | 1091|    112|                sub_st = value;
  |  | 1092|    112|                tuple_st = nos;
  |  | 1093|    112|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  | 1094|    112|                PyObject *tuple = PyStackRef_AsPyObjectBorrow(tuple_st);
  |  | 1095|    112|                assert(PyLong_CheckExact(sub));
  |  |  ------------------
  |  |  |  Branch (1095:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 1096|    112|                assert(PyTuple_CheckExact(tuple));
  |  |  ------------------
  |  |  |  Branch (1096:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 1097|    112|                if (!_PyLong_IsNonNegativeCompact((PyLongObject *)sub)) {
  |  |  ------------------
  |  |  |  Branch (1097:21): [True: 0, False: 112]
  |  |  ------------------
  |  | 1098|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1099|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1099:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1100|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1101|      0|                }
  |  | 1102|    112|                Py_ssize_t index = ((PyLongObject*)sub)->long_value.ob_digit[0];
  |  | 1103|    112|                if (index >= PyTuple_GET_SIZE(tuple)) {
  |  |  ------------------
  |  |  |  |   27|    112|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1103:21): [True: 0, False: 112]
  |  |  ------------------
  |  | 1104|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1105|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1105:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1106|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1107|      0|                }
  |  | 1108|    112|            }
  |  | 1109|       |            /* Skip 5 cache entries */
  |  | 1110|       |            // _BINARY_OP_SUBSCR_TUPLE_INT
  |  | 1111|    112|            {
  |  | 1112|    112|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  | 1113|    112|                PyObject *tuple = PyStackRef_AsPyObjectBorrow(tuple_st);
  |  | 1114|    112|                assert(PyLong_CheckExact(sub));
  |  |  ------------------
  |  |  |  Branch (1114:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 1115|    112|                assert(PyTuple_CheckExact(tuple));
  |  |  ------------------
  |  |  |  Branch (1115:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 1116|    112|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|    112|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 1117|    112|                Py_ssize_t index = ((PyLongObject*)sub)->long_value.ob_digit[0];
  |  | 1118|    112|                PyObject *res_o = PyTuple_GET_ITEM(tuple, index);
  |  |  ------------------
  |  |  |  |   29|    112|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|    112|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1118:35): [True: 112, False: 0]
  |  |  ------------------
  |  | 1119|    112|                assert(res_o != NULL);
  |  |  ------------------
  |  |  |  Branch (1119:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 1120|    112|                res = PyStackRef_FromPyObjectNew(res_o);
  |  |  ------------------
  |  |  |  |  599|    112|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1121|    112|                ts = tuple_st;
  |  | 1122|    112|                ss = sub_st;
  |  | 1123|    112|            }
  |  | 1124|       |            // _POP_TOP_INT
  |  | 1125|      0|            {
  |  | 1126|    112|                value = ss;
  |  | 1127|    112|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1127:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 1128|    112|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  | 1129|    112|            }
  |  | 1130|       |            // _POP_TOP
  |  | 1131|      0|            {
  |  | 1132|    112|                value = ts;
  |  | 1133|    112|                stack_pointer[-2] = res;
  |  | 1134|    112|                stack_pointer += -1;
  |  | 1135|    112|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    112|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1136|    112|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1137|    112|                PyStackRef_XCLOSE(value);
  |  | 1138|    112|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1139|    112|            }
  |  | 1140|    112|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    112|    { \
  |  |  |  |  201|    112|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    112|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    112|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    112|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    112|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    112|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    112|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    112|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 112]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    112|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    112|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    112|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    112|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    112|    }
  |  |  ------------------
  |  |  |  Branch (1140:13): [True: 112, False: 0]
  |  |  ------------------
  |  | 1141|    112|        }
  |  | 1142|       |
  |  | 1143|      0|        TARGET(BINARY_OP_SUBSCR_USTR_INT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1144|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1145|       |            int opcode = BINARY_OP_SUBSCR_USTR_INT;
  |  | 1146|       |            (void)(opcode);
  |  | 1147|       |            #endif
  |  | 1148|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 1149|      0|            (void)this_instr;
  |  | 1150|      0|            frame->instr_ptr = next_instr;
  |  | 1151|      0|            next_instr += 6;
  |  | 1152|      0|            INSTRUCTION_STATS(BINARY_OP_SUBSCR_USTR_INT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1153|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  | 1154|      0|            _PyStackRef value;
  |  | 1155|      0|            _PyStackRef nos;
  |  | 1156|      0|            _PyStackRef str_st;
  |  | 1157|      0|            _PyStackRef sub_st;
  |  | 1158|      0|            _PyStackRef res;
  |  | 1159|      0|            _PyStackRef s;
  |  | 1160|      0|            _PyStackRef i;
  |  | 1161|       |            // _GUARD_TOS_INT
  |  | 1162|      0|            {
  |  | 1163|      0|                value = stack_pointer[-1];
  |  | 1164|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 1165|      0|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (1165:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1166|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1167|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1167:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1168|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1169|      0|                }
  |  | 1170|      0|            }
  |  | 1171|       |            // _GUARD_NOS_UNICODE
  |  | 1172|      0|            {
  |  | 1173|      0|                nos = stack_pointer[-2];
  |  | 1174|      0|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  | 1175|      0|                if (!PyUnicode_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |  104|      0|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1175:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1176|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1177|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1177:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1178|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1179|      0|                }
  |  | 1180|      0|            }
  |  | 1181|       |            /* Skip 5 cache entries */
  |  | 1182|       |            // _BINARY_OP_SUBSCR_USTR_INT
  |  | 1183|      0|            {
  |  | 1184|      0|                sub_st = value;
  |  | 1185|      0|                str_st = nos;
  |  | 1186|      0|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  | 1187|      0|                PyObject *str = PyStackRef_AsPyObjectBorrow(str_st);
  |  | 1188|      0|                assert(PyLong_CheckExact(sub));
  |  |  ------------------
  |  |  |  Branch (1188:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1189|      0|                assert(PyUnicode_CheckExact(str));
  |  |  ------------------
  |  |  |  Branch (1189:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1190|      0|                if (!_PyLong_IsNonNegativeCompact((PyLongObject*)sub)) {
  |  |  ------------------
  |  |  |  Branch (1190:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1191|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1192|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1192:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1193|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1194|      0|                }
  |  | 1195|      0|                Py_ssize_t index = ((PyLongObject*)sub)->long_value.ob_digit[0];
  |  | 1196|      0|                if (PyUnicode_GET_LENGTH(str) <= index) {
  |  |  ------------------
  |  |  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1196:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1197|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1198|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1198:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1199|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1200|      0|                }
  |  | 1201|      0|                Py_UCS4 c = PyUnicode_READ_CHAR(str, index);
  |  |  ------------------
  |  |  |  |  381|      0|    PyUnicode_READ_CHAR(_PyObject_CAST(unicode), (index))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1202|      0|                if (Py_ARRAY_LENGTH(_Py_SINGLETON(strings).ascii) <= c) {
  |  |  ------------------
  |  |  |  |  196|      0|    (sizeof(array) / sizeof((array)[0]))
  |  |  ------------------
  |  |  |  Branch (1202:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1203|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1204|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1204:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1206|      0|                }
  |  | 1207|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 1208|      0|                PyObject *res_o = (PyObject*)&_Py_SINGLETON(strings).ascii[c];
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1209|      0|                s = str_st;
  |  | 1210|      0|                i = sub_st;
  |  | 1211|      0|                res = PyStackRef_FromPyObjectBorrow(res_o);
  |  | 1212|      0|            }
  |  | 1213|       |            // _POP_TOP_INT
  |  | 1214|      0|            {
  |  | 1215|      0|                value = i;
  |  | 1216|      0|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1216:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1217|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  | 1218|      0|            }
  |  | 1219|       |            // _POP_TOP_UNICODE
  |  | 1220|      0|            {
  |  | 1221|      0|                value = s;
  |  | 1222|      0|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1222:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1223|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyUnicode_ExactDealloc);
  |  | 1224|      0|            }
  |  | 1225|      0|            stack_pointer[-2] = res;
  |  | 1226|      0|            stack_pointer += -1;
  |  | 1227|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1228|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (1228:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1229|      0|        }
  |  | 1230|       |
  |  | 1231|      0|        TARGET(BINARY_OP_SUBTRACT_FLOAT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1232|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1233|       |            int opcode = BINARY_OP_SUBTRACT_FLOAT;
  |  | 1234|       |            (void)(opcode);
  |  | 1235|       |            #endif
  |  | 1236|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 1237|      0|            (void)this_instr;
  |  | 1238|      0|            frame->instr_ptr = next_instr;
  |  | 1239|      0|            next_instr += 6;
  |  | 1240|      0|            INSTRUCTION_STATS(BINARY_OP_SUBTRACT_FLOAT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1241|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  | 1242|      0|            _PyStackRef value;
  |  | 1243|      0|            _PyStackRef left;
  |  | 1244|      0|            _PyStackRef right;
  |  | 1245|      0|            _PyStackRef res;
  |  | 1246|      0|            _PyStackRef l;
  |  | 1247|      0|            _PyStackRef r;
  |  | 1248|       |            // _GUARD_TOS_FLOAT
  |  | 1249|      0|            {
  |  | 1250|      0|                value = stack_pointer[-1];
  |  | 1251|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 1252|      0|                if (!PyFloat_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1252:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1253|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1254|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1254:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1255|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1256|      0|                }
  |  | 1257|      0|            }
  |  | 1258|       |            // _GUARD_NOS_FLOAT
  |  | 1259|      0|            {
  |  | 1260|      0|                left = stack_pointer[-2];
  |  | 1261|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 1262|      0|                if (!PyFloat_CheckExact(left_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1262:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1263|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1264|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1264:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1265|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1266|      0|                }
  |  | 1267|      0|            }
  |  | 1268|       |            /* Skip 5 cache entries */
  |  | 1269|       |            // _BINARY_OP_SUBTRACT_FLOAT
  |  | 1270|      0|            {
  |  | 1271|      0|                right = value;
  |  | 1272|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 1273|      0|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 1274|      0|                assert(PyFloat_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (1274:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1275|      0|                assert(PyFloat_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (1275:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1276|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 1277|      0|                double dres =
  |  | 1278|      0|                ((PyFloatObject *)left_o)->ob_fval -
  |  | 1279|      0|                ((PyFloatObject *)right_o)->ob_fval;
  |  | 1280|      0|                PyObject *d = PyFloat_FromDouble(dres);
  |  | 1281|      0|                if (d == NULL) {
  |  |  ------------------
  |  |  |  Branch (1281:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1282|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1283|      0|                }
  |  | 1284|      0|                res = PyStackRef_FromPyObjectSteal(d);
  |  | 1285|      0|                l = left;
  |  | 1286|      0|                r = right;
  |  | 1287|      0|            }
  |  | 1288|       |            // _POP_TOP_FLOAT
  |  | 1289|      0|            {
  |  | 1290|      0|                value = r;
  |  | 1291|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1291:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1292|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  | 1293|      0|            }
  |  | 1294|       |            // _POP_TOP_FLOAT
  |  | 1295|      0|            {
  |  | 1296|      0|                value = l;
  |  | 1297|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1297:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1298|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  | 1299|      0|            }
  |  | 1300|      0|            stack_pointer[-2] = res;
  |  | 1301|      0|            stack_pointer += -1;
  |  | 1302|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1303|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (1303:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1304|      0|        }
  |  | 1305|       |
  |  | 1306|      0|        TARGET(BINARY_OP_SUBTRACT_INT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1307|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1308|       |            int opcode = BINARY_OP_SUBTRACT_INT;
  |  | 1309|       |            (void)(opcode);
  |  | 1310|       |            #endif
  |  | 1311|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 1312|      0|            (void)this_instr;
  |  | 1313|      0|            frame->instr_ptr = next_instr;
  |  | 1314|      0|            next_instr += 6;
  |  | 1315|      0|            INSTRUCTION_STATS(BINARY_OP_SUBTRACT_INT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1316|      0|            static_assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5, "incorrect cache size");
  |  | 1317|      0|            _PyStackRef value;
  |  | 1318|      0|            _PyStackRef left;
  |  | 1319|      0|            _PyStackRef right;
  |  | 1320|      0|            _PyStackRef res;
  |  | 1321|      0|            _PyStackRef l;
  |  | 1322|      0|            _PyStackRef r;
  |  | 1323|       |            // _GUARD_TOS_INT
  |  | 1324|      0|            {
  |  | 1325|      0|                value = stack_pointer[-1];
  |  | 1326|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 1327|      0|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (1327:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1328|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1329|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1329:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1330|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1331|      0|                }
  |  | 1332|      0|            }
  |  | 1333|       |            // _GUARD_NOS_INT
  |  | 1334|      0|            {
  |  | 1335|      0|                left = stack_pointer[-2];
  |  | 1336|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 1337|      0|                if (!_PyLong_CheckExactAndCompact(left_o)) {
  |  |  ------------------
  |  |  |  Branch (1337:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1338|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1339|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1339:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1340|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1341|      0|                }
  |  | 1342|      0|            }
  |  | 1343|       |            /* Skip 5 cache entries */
  |  | 1344|       |            // _BINARY_OP_SUBTRACT_INT
  |  | 1345|      0|            {
  |  | 1346|      0|                right = value;
  |  | 1347|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 1348|      0|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 1349|      0|                assert(PyLong_CheckExact(left_o));
  |  |  ------------------
  |  |  |  Branch (1349:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1350|      0|                assert(PyLong_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (1350:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1351|      0|                assert(_PyLong_BothAreCompact((PyLongObject *)left_o, (PyLongObject *)right_o));
  |  |  ------------------
  |  |  |  Branch (1351:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1352|      0|                STAT_INC(BINARY_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 1353|      0|                res = _PyCompactLong_Subtract((PyLongObject *)left_o, (PyLongObject *)right_o);
  |  | 1354|      0|                if (PyStackRef_IsNull(res)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1355|      0|                    UPDATE_MISS_STATS(BINARY_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1356|      0|                    assert(_PyOpcode_Deopt[opcode] == (BINARY_OP));
  |  |  ------------------
  |  |  |  Branch (1356:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1357|      0|                    JUMP_TO_PREDICTED(BINARY_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1358|      0|                }
  |  | 1359|      0|                l = left;
  |  | 1360|      0|                r = right;
  |  | 1361|      0|            }
  |  | 1362|       |            // _POP_TOP_INT
  |  | 1363|      0|            {
  |  | 1364|      0|                value = r;
  |  | 1365|      0|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1365:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1366|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  | 1367|      0|            }
  |  | 1368|       |            // _POP_TOP_INT
  |  | 1369|      0|            {
  |  | 1370|      0|                value = l;
  |  | 1371|      0|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (1371:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1372|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  | 1373|      0|            }
  |  | 1374|      0|            stack_pointer[-2] = res;
  |  | 1375|      0|            stack_pointer += -1;
  |  | 1376|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1377|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (1377:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1378|      0|        }
  |  | 1379|       |
  |  | 1380|     18|        TARGET(BINARY_SLICE) {
  |  |  ------------------
  |  |  |  |  132|     18|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1381|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1382|       |            int opcode = BINARY_SLICE;
  |  | 1383|       |            (void)(opcode);
  |  | 1384|       |            #endif
  |  | 1385|     18|            frame->instr_ptr = next_instr;
  |  | 1386|     18|            next_instr += 1;
  |  | 1387|     18|            INSTRUCTION_STATS(BINARY_SLICE);
  |  |  ------------------
  |  |  |  |   71|     18|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1388|     18|            _PyStackRef container;
  |  | 1389|     18|            _PyStackRef start;
  |  | 1390|     18|            _PyStackRef stop;
  |  | 1391|     18|            _PyStackRef res;
  |  | 1392|       |            // _SPECIALIZE_BINARY_SLICE
  |  | 1393|     18|            {
  |  | 1394|     18|                #if ENABLE_SPECIALIZATION
  |  | 1395|     18|                OPCODE_DEFERRED_INC(BINARY_SLICE);
  |  |  ------------------
  |  |  |  |   90|     18|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 1396|     18|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 1397|     18|            }
  |  | 1398|       |            // _BINARY_SLICE
  |  | 1399|     18|            {
  |  | 1400|     18|                stop = stack_pointer[-1];
  |  | 1401|     18|                start = stack_pointer[-2];
  |  | 1402|     18|                container = stack_pointer[-3];
  |  | 1403|     18|                PyObject *container_o = PyStackRef_AsPyObjectBorrow(container);
  |  | 1404|     18|                PyObject *start_o = PyStackRef_AsPyObjectBorrow(start);
  |  | 1405|     18|                PyObject *stop_o = PyStackRef_AsPyObjectBorrow(stop);
  |  | 1406|     18|                PyObject *res_o;
  |  | 1407|     18|                if (PyList_CheckExact(container_o)) {
  |  |  ------------------
  |  |  |  |   26|     18|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     18|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 8, False: 10]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1408|      8|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1409|      8|                    res_o = _PyList_BinarySlice(container_o, start_o, stop_o);
  |  | 1410|      8|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1411|      8|                }
  |  | 1412|     10|                else if (PyTuple_CheckExact(container_o)) {
  |  |  ------------------
  |  |  |  |   28|     10|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     10|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 10]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1413|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1414|      0|                    res_o = _PyTuple_BinarySlice(container_o, start_o, stop_o);
  |  | 1415|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1416|      0|                }
  |  | 1417|     10|                else if (PyUnicode_CheckExact(container_o)) {
  |  |  ------------------
  |  |  |  |  104|     10|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     10|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 10, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1418|     10|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1419|     10|                    res_o = _PyUnicode_BinarySlice(container_o, start_o, stop_o);
  |  | 1420|     10|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1421|     10|                }
  |  | 1422|      0|                else {
  |  | 1423|      0|                    PyObject *slice = PySlice_New(start_o, stop_o, NULL);
  |  | 1424|      0|                    if (slice == NULL) {
  |  |  ------------------
  |  |  |  Branch (1424:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 1425|      0|                        res_o = NULL;
  |  | 1426|      0|                    }
  |  | 1427|      0|                    else {
  |  | 1428|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1429|      0|                        res_o = PyObject_GetItem(container_o, slice);
  |  | 1430|      0|                        Py_DECREF(slice);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1431|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1432|      0|                    }
  |  | 1433|      0|                }
  |  | 1434|     18|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1435|     18|                _PyStackRef tmp = stop;
  |  | 1436|     18|                stop = PyStackRef_NULL;
  |  | 1437|     18|                stack_pointer[-1] = stop;
  |  | 1438|     18|                PyStackRef_CLOSE(tmp);
  |  | 1439|     18|                tmp = start;
  |  | 1440|     18|                start = PyStackRef_NULL;
  |  | 1441|     18|                stack_pointer[-2] = start;
  |  | 1442|     18|                PyStackRef_CLOSE(tmp);
  |  | 1443|     18|                tmp = container;
  |  | 1444|     18|                container = PyStackRef_NULL;
  |  | 1445|     18|                stack_pointer[-3] = container;
  |  | 1446|     18|                PyStackRef_CLOSE(tmp);
  |  | 1447|     18|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1448|     18|                stack_pointer += -3;
  |  | 1449|     18|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     18|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1450|     18|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1450:21): [True: 0, False: 18]
  |  |  ------------------
  |  | 1451|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1452|      0|                }
  |  | 1453|     18|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 1454|     18|            }
  |  | 1455|      0|            stack_pointer[0] = res;
  |  | 1456|     18|            stack_pointer += 1;
  |  | 1457|     18|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     18|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1458|     18|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     18|    { \
  |  |  |  |  201|     18|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     18|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     18|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     18|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     18|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     18|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     18|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     18|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 18]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     18|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     18|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     18|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     18|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     18|    }
  |  |  ------------------
  |  |  |  Branch (1458:13): [True: 18, False: 0]
  |  |  ------------------
  |  | 1459|     18|        }
  |  | 1460|       |
  |  | 1461|      0|        TARGET(BUILD_INTERPOLATION) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1462|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1463|       |            int opcode = BUILD_INTERPOLATION;
  |  | 1464|       |            (void)(opcode);
  |  | 1465|       |            #endif
  |  | 1466|      0|            frame->instr_ptr = next_instr;
  |  | 1467|      0|            next_instr += 1;
  |  | 1468|      0|            INSTRUCTION_STATS(BUILD_INTERPOLATION);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1469|      0|            _PyStackRef value;
  |  | 1470|      0|            _PyStackRef str;
  |  | 1471|      0|            _PyStackRef *format;
  |  | 1472|      0|            _PyStackRef interpolation;
  |  | 1473|      0|            format = &stack_pointer[-(oparg & 1)];
  |  | 1474|      0|            str = stack_pointer[-1 - (oparg & 1)];
  |  | 1475|      0|            value = stack_pointer[-2 - (oparg & 1)];
  |  | 1476|      0|            PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 1477|      0|            PyObject *str_o = PyStackRef_AsPyObjectBorrow(str);
  |  | 1478|      0|            int conversion = oparg >> 2;
  |  | 1479|      0|            PyObject *format_o;
  |  | 1480|      0|            if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (1480:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1481|      0|                format_o = PyStackRef_AsPyObjectBorrow(format[0]);
  |  | 1482|      0|            }
  |  | 1483|      0|            else {
  |  | 1484|      0|                format_o = &_Py_STR(empty);
  |  |  ------------------
  |  |  |  |  919|      0|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1485|      0|            }
  |  | 1486|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1487|      0|            PyObject *interpolation_o = _PyInterpolation_Build(value_o, str_o, conversion, format_o);
  |  | 1488|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1489|      0|            if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (1489:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1490|      0|                stack_pointer += -(oparg & 1);
  |  | 1491|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1492|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1493|      0|                PyStackRef_CLOSE(format[0]);
  |  | 1494|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1495|      0|            }
  |  | 1496|      0|            else {
  |  | 1497|      0|                stack_pointer += -(oparg & 1);
  |  | 1498|      0|            }
  |  | 1499|      0|            stack_pointer += -1;
  |  | 1500|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1501|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1502|      0|            PyStackRef_CLOSE(str);
  |  | 1503|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1504|      0|            stack_pointer += -1;
  |  | 1505|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1506|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1507|      0|            PyStackRef_CLOSE(value);
  |  | 1508|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1509|      0|            if (interpolation_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1509:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1510|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1511|      0|            }
  |  | 1512|      0|            interpolation = PyStackRef_FromPyObjectSteal(interpolation_o);
  |  | 1513|      0|            stack_pointer[0] = interpolation;
  |  | 1514|      0|            stack_pointer += 1;
  |  | 1515|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1516|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (1516:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1517|      0|        }
  |  | 1518|       |
  |  | 1519|    410|        TARGET(BUILD_LIST) {
  |  |  ------------------
  |  |  |  |  132|    410|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1520|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1521|       |            int opcode = BUILD_LIST;
  |  | 1522|       |            (void)(opcode);
  |  | 1523|       |            #endif
  |  | 1524|    410|            frame->instr_ptr = next_instr;
  |  | 1525|    410|            next_instr += 1;
  |  | 1526|    410|            INSTRUCTION_STATS(BUILD_LIST);
  |  |  ------------------
  |  |  |  |   71|    410|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1527|    410|            _PyStackRef *values;
  |  | 1528|    410|            _PyStackRef list;
  |  | 1529|    410|            values = &stack_pointer[-oparg];
  |  | 1530|    410|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1531|    410|            PyObject *list_o = _PyList_FromStackRefStealOnSuccess(values, oparg);
  |  | 1532|    410|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1533|    410|            if (list_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1533:17): [True: 0, False: 410]
  |  |  ------------------
  |  | 1534|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1535|      0|            }
  |  | 1536|    410|            list = PyStackRef_FromPyObjectStealMortal(list_o);
  |  | 1537|    410|            stack_pointer[-oparg] = list;
  |  | 1538|    410|            stack_pointer += 1 - oparg;
  |  | 1539|    410|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    410|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1540|    410|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    410|    { \
  |  |  |  |  201|    410|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    410|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    410|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    410|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    410|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    410|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    410|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    410|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 410]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    410|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    410|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    410|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    410|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    410|    }
  |  |  ------------------
  |  |  |  Branch (1540:13): [True: 410, False: 0]
  |  |  ------------------
  |  | 1541|    410|        }
  |  | 1542|       |
  |  | 1543|    270|        TARGET(BUILD_MAP) {
  |  |  ------------------
  |  |  |  |  132|    270|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1544|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1545|       |            int opcode = BUILD_MAP;
  |  | 1546|       |            (void)(opcode);
  |  | 1547|       |            #endif
  |  | 1548|    270|            frame->instr_ptr = next_instr;
  |  | 1549|    270|            next_instr += 1;
  |  | 1550|    270|            INSTRUCTION_STATS(BUILD_MAP);
  |  |  ------------------
  |  |  |  |   71|    270|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1551|    270|            _PyStackRef *values;
  |  | 1552|    270|            _PyStackRef map;
  |  | 1553|    270|            values = &stack_pointer[-oparg*2];
  |  | 1554|    270|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1555|    270|            PyObject *map_o = _Py_BuildMap_StackRefSteal(values, oparg);
  |  | 1556|    270|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1557|    270|            if (map_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1557:17): [True: 0, False: 270]
  |  |  ------------------
  |  | 1558|      0|                stack_pointer += -oparg*2;
  |  | 1559|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1560|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1561|      0|            }
  |  | 1562|    270|            map = PyStackRef_FromPyObjectStealMortal(map_o);
  |  | 1563|    270|            stack_pointer[-oparg*2] = map;
  |  | 1564|    270|            stack_pointer += 1 - oparg*2;
  |  | 1565|    270|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    270|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1566|    270|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    270|    { \
  |  |  |  |  201|    270|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    270|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    270|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    270|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    270|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    270|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    270|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    270|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 270]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    270|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    270|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    270|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    270|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    270|    }
  |  |  ------------------
  |  |  |  Branch (1566:13): [True: 270, False: 0]
  |  |  ------------------
  |  | 1567|    270|        }
  |  | 1568|       |
  |  | 1569|      6|        TARGET(BUILD_SET) {
  |  |  ------------------
  |  |  |  |  132|      6|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1570|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1571|       |            int opcode = BUILD_SET;
  |  | 1572|       |            (void)(opcode);
  |  | 1573|       |            #endif
  |  | 1574|      6|            frame->instr_ptr = next_instr;
  |  | 1575|      6|            next_instr += 1;
  |  | 1576|      6|            INSTRUCTION_STATS(BUILD_SET);
  |  |  ------------------
  |  |  |  |   71|      6|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1577|      6|            _PyStackRef *values;
  |  | 1578|      6|            _PyStackRef set;
  |  | 1579|      6|            values = &stack_pointer[-oparg];
  |  | 1580|      6|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1581|      6|            PyObject *set_o = PySet_New(NULL);
  |  | 1582|      6|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1583|      6|            if (set_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1583:17): [True: 0, False: 6]
  |  |  ------------------
  |  | 1584|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1585|      0|                _PyStackRef tmp;
  |  | 1586|      0|                for (int _i = oparg; --_i >= 0;) {
  |  |  ------------------
  |  |  |  Branch (1586:38): [True: 0, False: 0]
  |  |  ------------------
  |  | 1587|      0|                    tmp = values[_i];
  |  | 1588|      0|                    values[_i] = PyStackRef_NULL;
  |  | 1589|      0|                    PyStackRef_CLOSE(tmp);
  |  | 1590|      0|                }
  |  | 1591|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1592|      0|                stack_pointer += -oparg;
  |  | 1593|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1594|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1595|      0|            }
  |  | 1596|      6|            int err = 0;
  |  | 1597|     14|            for (Py_ssize_t i = 0; i < oparg; i++) {
  |  |  ------------------
  |  |  |  Branch (1597:36): [True: 8, False: 6]
  |  |  ------------------
  |  | 1598|      8|                _PyStackRef value = values[i];
  |  | 1599|      8|                values[i] = PyStackRef_NULL;
  |  | 1600|      8|                if (err == 0) {
  |  |  ------------------
  |  |  |  Branch (1600:21): [True: 8, False: 0]
  |  |  ------------------
  |  | 1601|      8|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1602|      8|                    err = _PySet_AddTakeRef((PySetObject *)set_o, PyStackRef_AsPyObjectSteal(value));
  |  | 1603|      8|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1604|      8|                }
  |  | 1605|      0|                else {
  |  | 1606|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1607|      0|                    PyStackRef_CLOSE(value);
  |  | 1608|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1609|      0|                }
  |  | 1610|      8|            }
  |  | 1611|      6|            if (err) {
  |  |  ------------------
  |  |  |  Branch (1611:17): [True: 0, False: 6]
  |  |  ------------------
  |  | 1612|      0|                stack_pointer += -oparg;
  |  | 1613|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1614|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1615|      0|                Py_DECREF(set_o);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1616|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1617|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1618|      0|            }
  |  | 1619|      6|            set = PyStackRef_FromPyObjectStealMortal(set_o);
  |  | 1620|      6|            stack_pointer[-oparg] = set;
  |  | 1621|      6|            stack_pointer += 1 - oparg;
  |  | 1622|      6|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      6|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1623|      6|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      6|    { \
  |  |  |  |  201|      6|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      6|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      6|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      6|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      6|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      6|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      6|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      6|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 6]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      6|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      6|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      6|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      6|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      6|    }
  |  |  ------------------
  |  |  |  Branch (1623:13): [True: 6, False: 0]
  |  |  ------------------
  |  | 1624|      6|        }
  |  | 1625|       |
  |  | 1626|      0|        TARGET(BUILD_SLICE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1627|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1628|       |            int opcode = BUILD_SLICE;
  |  | 1629|       |            (void)(opcode);
  |  | 1630|       |            #endif
  |  | 1631|      0|            frame->instr_ptr = next_instr;
  |  | 1632|      0|            next_instr += 1;
  |  | 1633|      0|            INSTRUCTION_STATS(BUILD_SLICE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1634|      0|            _PyStackRef *args;
  |  | 1635|      0|            _PyStackRef slice;
  |  | 1636|      0|            args = &stack_pointer[-oparg];
  |  | 1637|      0|            PyObject *start_o = PyStackRef_AsPyObjectBorrow(args[0]);
  |  | 1638|      0|            PyObject *stop_o = PyStackRef_AsPyObjectBorrow(args[1]);
  |  | 1639|      0|            PyObject *step_o = oparg == 3 ? PyStackRef_AsPyObjectBorrow(args[2]) : NULL;
  |  |  ------------------
  |  |  |  Branch (1639:32): [True: 0, False: 0]
  |  |  ------------------
  |  | 1640|      0|            PyObject *slice_o = PySlice_New(start_o, stop_o, step_o);
  |  | 1641|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1642|      0|            _PyStackRef tmp;
  |  | 1643|      0|            for (int _i = oparg; --_i >= 0;) {
  |  |  ------------------
  |  |  |  Branch (1643:34): [True: 0, False: 0]
  |  |  ------------------
  |  | 1644|      0|                tmp = args[_i];
  |  | 1645|      0|                args[_i] = PyStackRef_NULL;
  |  | 1646|      0|                PyStackRef_CLOSE(tmp);
  |  | 1647|      0|            }
  |  | 1648|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1649|      0|            stack_pointer += -oparg;
  |  | 1650|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1651|      0|            if (slice_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1651:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1652|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1653|      0|            }
  |  | 1654|      0|            slice = PyStackRef_FromPyObjectStealMortal(slice_o);
  |  | 1655|      0|            stack_pointer[0] = slice;
  |  | 1656|      0|            stack_pointer += 1;
  |  | 1657|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1658|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (1658:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1659|      0|        }
  |  | 1660|       |
  |  | 1661|     62|        TARGET(BUILD_STRING) {
  |  |  ------------------
  |  |  |  |  132|     62|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1662|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1663|       |            int opcode = BUILD_STRING;
  |  | 1664|       |            (void)(opcode);
  |  | 1665|       |            #endif
  |  | 1666|     62|            frame->instr_ptr = next_instr;
  |  | 1667|     62|            next_instr += 1;
  |  | 1668|     62|            INSTRUCTION_STATS(BUILD_STRING);
  |  |  ------------------
  |  |  |  |   71|     62|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1669|     62|            _PyStackRef *pieces;
  |  | 1670|     62|            _PyStackRef str;
  |  | 1671|     62|            pieces = &stack_pointer[-oparg];
  |  | 1672|     62|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1673|     62|            PyObject *str_o = _Py_BuildString_StackRefSteal(pieces, oparg);
  |  | 1674|     62|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1675|     62|            if (str_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1675:17): [True: 0, False: 62]
  |  |  ------------------
  |  | 1676|      0|                stack_pointer += -oparg;
  |  | 1677|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1678|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1679|      0|            }
  |  | 1680|     62|            str = PyStackRef_FromPyObjectSteal(str_o);
  |  | 1681|     62|            stack_pointer[-oparg] = str;
  |  | 1682|     62|            stack_pointer += 1 - oparg;
  |  | 1683|     62|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     62|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1684|     62|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     62|    { \
  |  |  |  |  201|     62|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     62|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     62|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     62|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     62|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     62|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     62|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     62|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 62]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     62|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     62|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     62|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     62|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     62|    }
  |  |  ------------------
  |  |  |  Branch (1684:13): [True: 62, False: 0]
  |  |  ------------------
  |  | 1685|     62|        }
  |  | 1686|       |
  |  | 1687|      0|        TARGET(BUILD_TEMPLATE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1688|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1689|       |            int opcode = BUILD_TEMPLATE;
  |  | 1690|       |            (void)(opcode);
  |  | 1691|       |            #endif
  |  | 1692|      0|            frame->instr_ptr = next_instr;
  |  | 1693|      0|            next_instr += 1;
  |  | 1694|      0|            INSTRUCTION_STATS(BUILD_TEMPLATE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1695|      0|            _PyStackRef strings;
  |  | 1696|      0|            _PyStackRef interpolations;
  |  | 1697|      0|            _PyStackRef template;
  |  | 1698|      0|            interpolations = stack_pointer[-1];
  |  | 1699|      0|            strings = stack_pointer[-2];
  |  | 1700|      0|            PyObject *strings_o = PyStackRef_AsPyObjectBorrow(strings);
  |  | 1701|      0|            PyObject *interpolations_o = PyStackRef_AsPyObjectBorrow(interpolations);
  |  | 1702|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1703|      0|            PyObject *template_o = _PyTemplate_Build(strings_o, interpolations_o);
  |  | 1704|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1705|      0|            stack_pointer += -1;
  |  | 1706|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1707|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1708|      0|            PyStackRef_CLOSE(interpolations);
  |  | 1709|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1710|      0|            stack_pointer += -1;
  |  | 1711|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1712|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1713|      0|            PyStackRef_CLOSE(strings);
  |  | 1714|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1715|      0|            if (template_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1715:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 1716|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1717|      0|            }
  |  | 1718|      0|            template = PyStackRef_FromPyObjectSteal(template_o);
  |  | 1719|      0|            stack_pointer[0] = template;
  |  | 1720|      0|            stack_pointer += 1;
  |  | 1721|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1722|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (1722:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1723|      0|        }
  |  | 1724|       |
  |  | 1725|    380|        TARGET(BUILD_TUPLE) {
  |  |  ------------------
  |  |  |  |  132|    380|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1726|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1727|       |            int opcode = BUILD_TUPLE;
  |  | 1728|       |            (void)(opcode);
  |  | 1729|       |            #endif
  |  | 1730|    380|            frame->instr_ptr = next_instr;
  |  | 1731|    380|            next_instr += 1;
  |  | 1732|    380|            INSTRUCTION_STATS(BUILD_TUPLE);
  |  |  ------------------
  |  |  |  |   71|    380|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1733|    380|            _PyStackRef *values;
  |  | 1734|    380|            _PyStackRef tup;
  |  | 1735|    380|            values = &stack_pointer[-oparg];
  |  | 1736|    380|            PyObject *tup_o = _PyTuple_FromStackRefStealOnSuccess(values, oparg);
  |  | 1737|    380|            if (tup_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1737:17): [True: 0, False: 380]
  |  |  ------------------
  |  | 1738|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1739|      0|            }
  |  | 1740|    380|            tup = PyStackRef_FromPyObjectStealMortal(tup_o);
  |  | 1741|    380|            stack_pointer[-oparg] = tup;
  |  | 1742|    380|            stack_pointer += 1 - oparg;
  |  | 1743|    380|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    380|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1744|    380|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    380|    { \
  |  |  |  |  201|    380|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    380|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    380|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    380|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    380|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    380|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    380|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    380|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 380]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    380|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    380|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    380|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    380|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    380|    }
  |  |  ------------------
  |  |  |  Branch (1744:13): [True: 380, False: 0]
  |  |  ------------------
  |  | 1745|    380|        }
  |  | 1746|       |
  |  | 1747|      0|        TARGET(CACHE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1748|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1749|       |            int opcode = CACHE;
  |  | 1750|       |            (void)(opcode);
  |  | 1751|       |            #endif
  |  | 1752|      0|            frame->instr_ptr = next_instr;
  |  | 1753|      0|            next_instr += 1;
  |  | 1754|      0|            INSTRUCTION_STATS(CACHE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1755|      0|            assert(0 && "Executing a cache.");
  |  |  ------------------
  |  |  |  Branch (1755:13): [Folded, False: 0]
  |  |  |  Branch (1755:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1756|      0|            Py_FatalError("Executing a cache.");
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  |  | 1757|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (1757:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1758|      0|        }
  |  | 1759|       |
  |  | 1760|  1.92k|        TARGET(CALL) {
  |  |  ------------------
  |  |  |  |  132|  1.92k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1761|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1762|       |            int opcode = CALL;
  |  | 1763|       |            (void)(opcode);
  |  | 1764|       |            #endif
  |  | 1765|  1.92k|            frame->instr_ptr = next_instr;
  |  | 1766|  1.92k|            next_instr += 4;
  |  | 1767|  1.92k|            INSTRUCTION_STATS(CALL);
  |  |  ------------------
  |  |  |  |   71|  1.92k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1768|  2.16k|            PREDICTED_CALL:;
  |  | 1769|  2.16k|            _Py_CODEUNIT* const this_instr = next_instr - 4;
  |  | 1770|  2.16k|            (void)this_instr;
  |  | 1771|  2.16k|            opcode = CALL;
  |  |  ------------------
  |  |  |  |   63|  2.16k|#define CALL                                    50
  |  |  ------------------
  |  | 1772|  2.16k|            _PyStackRef callable;
  |  | 1773|  2.16k|            _PyStackRef self_or_null;
  |  | 1774|  2.16k|            _PyStackRef *args;
  |  | 1775|  2.16k|            _PyStackRef res;
  |  | 1776|       |            // _SPECIALIZE_CALL
  |  | 1777|  2.16k|            {
  |  | 1778|  2.16k|                self_or_null = stack_pointer[-1 - oparg];
  |  | 1779|  2.16k|                callable = stack_pointer[-2 - oparg];
  |  | 1780|  2.16k|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 1781|  2.16k|                (void)counter;
  |  | 1782|  2.16k|                #if ENABLE_SPECIALIZATION
  |  | 1783|  2.16k|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|  2.16k|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 408, False: 1.75k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1784|    408|                    next_instr = this_instr;
  |  | 1785|    408|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1786|    408|                    _Py_Specialize_Call(callable, self_or_null, next_instr, oparg + !PyStackRef_IsNull(self_or_null));
  |  |  ------------------
  |  |  |  |  470|    408|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    408|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    408|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1787|    408|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1788|    408|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|    408|    { \
  |  |  |  |  217|    408|        opcode = next_instr->op.code; \
  |  |  |  |  218|    408|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    408|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|    408|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|    408|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|    408|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|    408|    }
  |  |  ------------------
  |  | 1789|    408|                }
  |  | 1790|  2.16k|                OPCODE_DEFERRED_INC(CALL);
  |  |  ------------------
  |  |  |  |   90|  2.16k|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 1791|  2.16k|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|  2.16k|    do { \
  |  |  |  |  358|  2.16k|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|  2.16k|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 2.16k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1792|  2.16k|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 1793|  2.16k|            }
  |  | 1794|       |            /* Skip 2 cache entries */
  |  | 1795|       |            // _MAYBE_EXPAND_METHOD
  |  | 1796|  2.16k|            {
  |  | 1797|  2.16k|                if (PyStackRef_TYPE(callable) == &PyMethod_Type && PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|     84|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     84|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     84|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 84, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1797:21): [True: 84, False: 2.07k]
  |  |  ------------------
  |  | 1798|     84|                    PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 1799|     84|                    PyObject *self = ((PyMethodObject *)callable_o)->im_self;
  |  | 1800|     84|                    self_or_null = PyStackRef_FromPyObjectNew(self);
  |  |  ------------------
  |  |  |  |  599|     84|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     84|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     84|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1801|     84|                    PyObject *method = ((PyMethodObject *)callable_o)->im_func;
  |  | 1802|     84|                    _PyStackRef temp = callable;
  |  | 1803|     84|                    callable = PyStackRef_FromPyObjectNew(method);
  |  |  ------------------
  |  |  |  |  599|     84|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     84|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     84|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1804|     84|                    stack_pointer[-2 - oparg] = callable;
  |  | 1805|     84|                    stack_pointer[-1 - oparg] = self_or_null;
  |  | 1806|     84|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1807|     84|                    PyStackRef_CLOSE(temp);
  |  | 1808|     84|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1809|     84|                }
  |  | 1810|  2.16k|            }
  |  | 1811|       |            // _DO_CALL
  |  | 1812|  2.16k|            {
  |  | 1813|  2.16k|                args = &stack_pointer[-oparg];
  |  | 1814|  2.16k|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 1815|  2.16k|                int total_args = oparg;
  |  | 1816|  2.16k|                _PyStackRef *arguments = args;
  |  | 1817|  2.16k|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|  2.16k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|  2.16k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  2.16k|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1817:21): [True: 734, False: 1.42k]
  |  |  ------------------
  |  | 1818|    734|                    arguments--;
  |  | 1819|    734|                    total_args++;
  |  | 1820|    734|                }
  |  | 1821|  2.16k|                if (Py_TYPE(callable_o) == &PyFunction_Type &&
  |  |  ------------------
  |  |  |  |  213|  2.16k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.16k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.16k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1821:21): [True: 646, False: 1.51k]
  |  |  ------------------
  |  | 1822|    646|                    !IS_PEP523_HOOKED(tstate) &&
  |  |  ------------------
  |  |  |  |  517|  2.80k|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  ------------------
  |  |  |  Branch (1822:21): [True: 646, False: 0]
  |  |  ------------------
  |  | 1823|    646|                    ((PyFunctionObject *)callable_o)->vectorcall == _PyFunction_Vectorcall)
  |  |  ------------------
  |  |  |  Branch (1823:21): [True: 646, False: 0]
  |  |  ------------------
  |  | 1824|    646|                {
  |  | 1825|    646|                    int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|    646|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    646|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    646|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1826|    646|                    PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|    646|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                                   PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1826:40): [True: 646, False: 0]
  |  |  ------------------
  |  | 1827|    646|                    stack_pointer[-2 - oparg] = callable;
  |  | 1828|    646|                    stack_pointer[-1 - oparg] = self_or_null;
  |  | 1829|    646|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1830|    646|                    _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit(
  |  | 1831|    646|                        tstate, callable, locals,
  |  | 1832|    646|                        arguments, total_args, NULL, frame
  |  | 1833|    646|                    );
  |  | 1834|    646|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1835|    646|                    stack_pointer += -2 - oparg;
  |  | 1836|    646|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    646|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1837|    646|                    if (new_frame == NULL) {
  |  |  ------------------
  |  |  |  Branch (1837:25): [True: 0, False: 646]
  |  |  ------------------
  |  | 1838|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1839|      0|                    }
  |  | 1840|    646|                    frame->return_offset = 4u ;
  |  | 1841|    646|                    DISPATCH_INLINED(new_frame);
  |  |  ------------------
  |  |  |  |  223|    646|    do {                                                         \
  |  |  |  |  224|    646|        assert(!IS_PEP523_HOOKED(tstate));                       \
  |  |  |  |  225|    646|        _PyFrame_SetStackPointer(frame, stack_pointer);          \
  |  |  |  |  226|    646|        assert((NEW_FRAME)->previous == frame);                  \
  |  |  |  |  227|    646|        frame = tstate->current_frame = (NEW_FRAME);             \
  |  |  |  |  228|    646|        CALL_STAT_INC(inlined_py_calls);                         \
  |  |  |  |  ------------------
  |  |  |  |  |  |   76|    646|#define CALL_STAT_INC(name) ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  229|    646|        JUMP_TO_LABEL(start_frame);                              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|    646|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  230|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (230:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1841:21): [True: 646, False: 0]
  |  |  |  Branch (1841:21): [True: 646, False: 0]
  |  |  ------------------
  |  | 1842|    646|                }
  |  | 1843|  1.51k|                stack_pointer[-2 - oparg] = callable;
  |  | 1844|  1.51k|                stack_pointer[-1 - oparg] = self_or_null;
  |  | 1845|  1.51k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1846|  1.51k|                PyObject* res_o = _Py_VectorCallInstrumentation_StackRefSteal(
  |  | 1847|  1.51k|                    callable,
  |  | 1848|  1.51k|                    arguments,
  |  | 1849|  1.51k|                    total_args,
  |  | 1850|  1.51k|                    PyStackRef_NULL,
  |  | 1851|  1.51k|                    opcode == INSTRUMENTED_CALL,
  |  |  ------------------
  |  |  |  |  240|  1.51k|#define INSTRUMENTED_CALL                      249
  |  |  ------------------
  |  | 1852|  1.51k|                    frame,
  |  | 1853|  1.51k|                    this_instr,
  |  | 1854|  1.51k|                    tstate);
  |  | 1855|  1.51k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1856|  1.51k|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1856:21): [True: 22, False: 1.49k]
  |  |  ------------------
  |  | 1857|     22|                    stack_pointer += -2 - oparg;
  |  | 1858|     22|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     22|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1859|     22|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|     22|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1860|      0|                }
  |  | 1861|  1.49k|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 1862|  1.49k|            }
  |  | 1863|       |            // _CHECK_PERIODIC_AT_END
  |  | 1864|      0|            {
  |  | 1865|  1.49k|                stack_pointer[-2 - oparg] = res;
  |  | 1866|  1.49k|                stack_pointer += -1 - oparg;
  |  | 1867|  1.49k|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.49k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1868|  1.49k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1869|  1.49k|                int err = check_periodics(tstate);
  |  | 1870|  1.49k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1871|  1.49k|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (1871:21): [True: 0, False: 1.49k]
  |  |  ------------------
  |  | 1872|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1873|      0|                }
  |  | 1874|  1.49k|            }
  |  | 1875|  1.49k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.49k|    { \
  |  |  |  |  201|  1.49k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.49k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.08k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.08k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.08k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.08k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.08k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.08k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.08k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.08k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.08k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.08k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.08k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.08k|    }
  |  |  ------------------
  |  |  |  Branch (1875:13): [True: 1.08k, False: 408]
  |  |  ------------------
  |  | 1876|  1.08k|        }
  |  | 1877|       |
  |  | 1878|    148|        TARGET(CALL_ALLOC_AND_ENTER_INIT) {
  |  |  ------------------
  |  |  |  |  132|    148|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 1879|       |            #if _Py_TAIL_CALL_INTERP
  |  | 1880|       |            int opcode = CALL_ALLOC_AND_ENTER_INIT;
  |  | 1881|       |            (void)(opcode);
  |  | 1882|       |            #endif
  |  | 1883|    148|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 1884|    148|            (void)this_instr;
  |  | 1885|    148|            frame->instr_ptr = next_instr;
  |  | 1886|    148|            next_instr += 4;
  |  | 1887|    148|            INSTRUCTION_STATS(CALL_ALLOC_AND_ENTER_INIT);
  |  |  ------------------
  |  |  |  |   71|    148|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 1888|    148|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 1889|    148|            _PyStackRef callable;
  |  | 1890|    148|            _PyStackRef self_or_null;
  |  | 1891|    148|            _PyStackRef init;
  |  | 1892|    148|            _PyStackRef self;
  |  | 1893|    148|            _PyStackRef *args;
  |  | 1894|    148|            _PyStackRef init_frame;
  |  | 1895|    148|            _PyStackRef new_frame;
  |  | 1896|       |            /* Skip 1 cache entry */
  |  | 1897|       |            // _CHECK_PEP_523
  |  | 1898|    148|            {
  |  | 1899|    148|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|    148|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 148]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1900|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1901|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (1901:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1902|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1903|      0|                }
  |  | 1904|    148|            }
  |  | 1905|       |            // _CHECK_OBJECT
  |  | 1906|    148|            {
  |  | 1907|    148|                self_or_null = stack_pointer[-1 - oparg];
  |  | 1908|    148|                callable = stack_pointer[-2 - oparg];
  |  | 1909|    148|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 1910|    148|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 1911|    148|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    148|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    148|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    148|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1911:21): [True: 0, False: 148]
  |  |  ------------------
  |  | 1912|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1913|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (1913:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1914|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1915|      0|                }
  |  | 1916|    148|                if (!PyType_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |  766|    148|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (1916:21): [True: 0, False: 148]
  |  |  ------------------
  |  | 1917|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1918|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (1918:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1919|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1920|      0|                }
  |  | 1921|    148|                PyTypeObject *tp = (PyTypeObject *)callable_o;
  |  | 1922|    148|                if (FT_ATOMIC_LOAD_UINT32_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  159|    148|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (1922:21): [True: 0, False: 148]
  |  |  ------------------
  |  | 1923|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1924|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (1924:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1925|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1926|      0|                }
  |  | 1927|    148|            }
  |  | 1928|       |            // _CHECK_RECURSION_REMAINING
  |  | 1929|    148|            {
  |  | 1930|    148|                if (tstate->py_recursion_remaining <= 1) {
  |  |  ------------------
  |  |  |  Branch (1930:21): [True: 0, False: 148]
  |  |  ------------------
  |  | 1931|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1932|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (1932:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1933|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1934|      0|                }
  |  | 1935|    148|            }
  |  | 1936|       |            // _ALLOCATE_OBJECT
  |  | 1937|    148|            {
  |  | 1938|    148|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 1939|    148|                assert(PyStackRef_IsNull(self_or_null));
  |  |  ------------------
  |  |  |  Branch (1939:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 1940|    148|                assert(PyType_Check(callable_o));
  |  |  ------------------
  |  |  |  Branch (1940:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 1941|    148|                PyTypeObject *tp = (PyTypeObject *)callable_o;
  |  | 1942|    148|                assert(tp->tp_new == PyBaseObject_Type.tp_new);
  |  |  ------------------
  |  |  |  Branch (1942:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 1943|    148|                assert(tp->tp_flags & Py_TPFLAGS_HEAPTYPE);
  |  |  ------------------
  |  |  |  Branch (1943:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 1944|    148|                assert(tp->tp_alloc == PyType_GenericAlloc);
  |  |  ------------------
  |  |  |  Branch (1944:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 1945|    148|                PyHeapTypeObject *cls = (PyHeapTypeObject *)callable_o;
  |  | 1946|    148|                PyFunctionObject *init_func = (PyFunctionObject *)FT_ATOMIC_LOAD_PTR_ACQUIRE(cls->_spec_cache.init);
  |  |  ------------------
  |  |  |  |  150|    148|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 1947|    148|                PyCodeObject *code = (PyCodeObject *)init_func->func_code;
  |  | 1948|    148|                if (!_PyThreadState_HasStackSpace(tstate, code->co_framesize + _Py_InitCleanup.co_framesize)) {
  |  |  ------------------
  |  |  |  Branch (1948:21): [True: 0, False: 148]
  |  |  ------------------
  |  | 1949|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 1950|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (1950:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 1951|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 1952|      0|                }
  |  | 1953|    148|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    148|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 1954|    148|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1955|    148|                PyObject *self_o = PyType_GenericAlloc(tp, 0);
  |  | 1956|    148|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1957|    148|                if (self_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (1957:21): [True: 0, False: 148]
  |  |  ------------------
  |  | 1958|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1959|      0|                }
  |  | 1960|    148|                self_or_null = PyStackRef_FromPyObjectSteal(self_o);
  |  | 1961|    148|                _PyStackRef temp = callable;
  |  | 1962|    148|                callable = PyStackRef_FromPyObjectNew(init_func);
  |  |  ------------------
  |  |  |  |  599|    148|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1963|    148|                stack_pointer[-2 - oparg] = callable;
  |  | 1964|    148|                stack_pointer[-1 - oparg] = self_or_null;
  |  | 1965|    148|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1966|    148|                PyStackRef_CLOSE(temp);
  |  | 1967|    148|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1968|    148|            }
  |  | 1969|       |            // _CREATE_INIT_FRAME
  |  | 1970|      0|            {
  |  | 1971|    148|                args = &stack_pointer[-oparg];
  |  | 1972|    148|                self = self_or_null;
  |  | 1973|    148|                init = callable;
  |  | 1974|    148|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1975|    148|                _PyInterpreterFrame *shim = _PyFrame_PushTrampolineUnchecked(
  |  | 1976|    148|                    tstate, (PyCodeObject *)&_Py_InitCleanup, 1, frame);
  |  | 1977|    148|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1978|    148|                assert(_PyFrame_GetBytecode(shim)[0].op.code == EXIT_INIT_CHECK);
  |  |  ------------------
  |  |  |  Branch (1978:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 1979|    148|                assert(_PyFrame_GetBytecode(shim)[1].op.code == RETURN_VALUE);
  |  |  ------------------
  |  |  |  Branch (1979:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 1980|    148|                shim->localsplus[0] = PyStackRef_DUP(self);
  |  | 1981|    148|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1982|    148|                _PyInterpreterFrame *temp = _PyEvalFramePushAndInit(
  |  | 1983|    148|                    tstate, init, NULL, args-1, oparg+1, NULL, shim);
  |  | 1984|    148|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1985|    148|                stack_pointer += -2 - oparg;
  |  | 1986|    148|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    148|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 1987|    148|                if (temp == NULL) {
  |  |  ------------------
  |  |  |  Branch (1987:21): [True: 0, False: 148]
  |  |  ------------------
  |  | 1988|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 1989|      0|                    _PyEval_FrameClearAndPop(tstate, shim);
  |  | 1990|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 1991|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 1992|      0|                }
  |  | 1993|    148|                frame->return_offset = 1 + INLINE_CACHE_ENTRIES_CALL;
  |  |  ------------------
  |  |  |  |  129|    148|#define INLINE_CACHE_ENTRIES_CALL CACHE_ENTRIES(_PyCallCache)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    148|#define CACHE_ENTRIES(cache) (sizeof(cache)/sizeof(_Py_CODEUNIT))
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1994|    148|                tstate->py_recursion_remaining--;
  |  | 1995|    148|                init_frame = PyStackRef_Wrap(temp);
  |  | 1996|    148|            }
  |  | 1997|       |            // _PUSH_FRAME
  |  | 1998|      0|            {
  |  | 1999|    148|                new_frame = init_frame;
  |  | 2000|    148|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (2000:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 2001|    148|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 2002|    148|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2003|    148|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (2003:17): [True: 0, False: 148]
  |  |  |  Branch (2003:17): [True: 148, False: 0]
  |  |  ------------------
  |  | 2004|    148|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|    148|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 2005|    148|                frame = tstate->current_frame = temp;
  |  | 2006|    148|                tstate->py_recursion_remaining--;
  |  | 2007|    148|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|    148|#define LOAD_SP() \
  |  |  |  |  426|    148|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 2008|    148|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|    148|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|    148|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|    148|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 148]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2009|    148|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|    148|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 2010|    148|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|    148|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 2011|    148|            }
  |  | 2012|    148|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    148|    { \
  |  |  |  |  201|    148|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    148|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    148|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    148|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    148|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    148|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    148|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    148|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 148]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    148|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    148|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    148|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    148|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    148|    }
  |  |  ------------------
  |  |  |  Branch (2012:13): [True: 148, False: 0]
  |  |  ------------------
  |  | 2013|    148|        }
  |  | 2014|       |
  |  | 2015|    144|        TARGET(CALL_BOUND_METHOD_EXACT_ARGS) {
  |  |  ------------------
  |  |  |  |  132|    144|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2016|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2017|       |            int opcode = CALL_BOUND_METHOD_EXACT_ARGS;
  |  | 2018|       |            (void)(opcode);
  |  | 2019|       |            #endif
  |  | 2020|    144|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2021|    144|            (void)this_instr;
  |  | 2022|    144|            frame->instr_ptr = next_instr;
  |  | 2023|    144|            next_instr += 4;
  |  | 2024|    144|            INSTRUCTION_STATS(CALL_BOUND_METHOD_EXACT_ARGS);
  |  |  ------------------
  |  |  |  |   71|    144|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2025|    144|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 2026|    144|            _PyStackRef callable;
  |  | 2027|    144|            _PyStackRef null;
  |  | 2028|    144|            _PyStackRef self_or_null;
  |  | 2029|    144|            _PyStackRef *args;
  |  | 2030|    144|            _PyStackRef new_frame;
  |  | 2031|       |            /* Skip 1 cache entry */
  |  | 2032|       |            // _CHECK_PEP_523
  |  | 2033|    144|            {
  |  | 2034|    144|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|    144|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 144]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2035|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2036|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2036:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2037|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2038|      0|                }
  |  | 2039|    144|            }
  |  | 2040|       |            // _CHECK_CALL_BOUND_METHOD_EXACT_ARGS
  |  | 2041|    144|            {
  |  | 2042|    144|                null = stack_pointer[-1 - oparg];
  |  | 2043|    144|                callable = stack_pointer[-2 - oparg];
  |  | 2044|    144|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|    144|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    144|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    144|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2044:21): [True: 0, False: 144]
  |  |  ------------------
  |  | 2045|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2046|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2046:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2047|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2048|      0|                }
  |  | 2049|    144|                if (Py_TYPE(PyStackRef_AsPyObjectBorrow(callable)) != &PyMethod_Type) {
  |  |  ------------------
  |  |  |  |  213|    144|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    144|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    144|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2049:21): [True: 0, False: 144]
  |  |  ------------------
  |  | 2050|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2051|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2051:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2052|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2053|      0|                }
  |  | 2054|    144|            }
  |  | 2055|       |            // _INIT_CALL_BOUND_METHOD_EXACT_ARGS
  |  | 2056|    144|            {
  |  | 2057|    144|                self_or_null = null;
  |  | 2058|    144|                assert(PyStackRef_IsNull(self_or_null));
  |  |  ------------------
  |  |  |  Branch (2058:17): [True: 144, False: 0]
  |  |  ------------------
  |  | 2059|    144|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2060|    144|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    144|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 2061|    144|                self_or_null = PyStackRef_FromPyObjectNew(((PyMethodObject *)callable_o)->im_self);
  |  |  ------------------
  |  |  |  |  599|    144|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    144|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    144|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2062|    144|                _PyStackRef temp = callable;
  |  | 2063|    144|                callable = PyStackRef_FromPyObjectNew(((PyMethodObject *)callable_o)->im_func);
  |  |  ------------------
  |  |  |  |  599|    144|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    144|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    144|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2064|    144|                stack_pointer[-2 - oparg] = callable;
  |  | 2065|    144|                stack_pointer[-1 - oparg] = self_or_null;
  |  | 2066|    144|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2067|    144|                PyStackRef_CLOSE(temp);
  |  | 2068|    144|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2069|    144|            }
  |  | 2070|       |            // flush
  |  | 2071|       |            // _CHECK_FUNCTION_VERSION
  |  | 2072|      0|            {
  |  | 2073|    144|                uint32_t func_version = read_u32(&this_instr[2].cache);
  |  | 2074|    144|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2075|    144|                if (!PyFunction_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |   68|    144|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    144|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    144|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    144|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2075:21): [True: 0, False: 144]
  |  |  ------------------
  |  | 2076|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2077|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2077:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2078|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2079|      0|                }
  |  | 2080|    144|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 2081|    144|                if (func->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (2081:21): [True: 50, False: 94]
  |  |  ------------------
  |  | 2082|     50|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|     50|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2083|     50|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2083:21): [True: 50, False: 0]
  |  |  ------------------
  |  | 2084|     50|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|     50|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2085|      0|                }
  |  | 2086|    144|            }
  |  | 2087|       |            // _CHECK_FUNCTION_EXACT_ARGS
  |  | 2088|     94|            {
  |  | 2089|     94|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2090|     94|                assert(PyFunction_Check(callable_o));
  |  |  ------------------
  |  |  |  Branch (2090:17): [True: 94, False: 0]
  |  |  ------------------
  |  | 2091|     94|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 2092|     94|                PyCodeObject *code = (PyCodeObject *)func->func_code;
  |  | 2093|     94|                if (code->co_argcount != oparg + (!PyStackRef_IsNull(self_or_null))) {
  |  |  ------------------
  |  |  |  |  470|     94|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     94|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     94|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2093:21): [True: 0, False: 94]
  |  |  ------------------
  |  | 2094|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2095|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2095:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2096|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2097|      0|                }
  |  | 2098|     94|            }
  |  | 2099|       |            // _CHECK_STACK_SPACE
  |  | 2100|     94|            {
  |  | 2101|     94|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2102|     94|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 2103|     94|                PyCodeObject *code = (PyCodeObject *)func->func_code;
  |  | 2104|     94|                if (!_PyThreadState_HasStackSpace(tstate, code->co_framesize)) {
  |  |  ------------------
  |  |  |  Branch (2104:21): [True: 0, False: 94]
  |  |  ------------------
  |  | 2105|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2106|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2106:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2107|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2108|      0|                }
  |  | 2109|     94|            }
  |  | 2110|       |            // _CHECK_RECURSION_REMAINING
  |  | 2111|     94|            {
  |  | 2112|     94|                if (tstate->py_recursion_remaining <= 1) {
  |  |  ------------------
  |  |  |  Branch (2112:21): [True: 0, False: 94]
  |  |  ------------------
  |  | 2113|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2114|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2114:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2115|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2116|      0|                }
  |  | 2117|     94|            }
  |  | 2118|       |            // _INIT_CALL_PY_EXACT_ARGS
  |  | 2119|     94|            {
  |  | 2120|     94|                args = &stack_pointer[-oparg];
  |  | 2121|     94|                int has_self = !PyStackRef_IsNull(self_or_null);
  |  |  ------------------
  |  |  |  |  470|     94|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     94|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     94|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2122|     94|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|     94|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 2123|     94|                _PyInterpreterFrame *pushed_frame = _PyFrame_PushUnchecked(tstate, callable, oparg + has_self, frame);
  |  | 2124|     94|                _PyStackRef *first_non_self_local = pushed_frame->localsplus + has_self;
  |  | 2125|     94|                pushed_frame->localsplus[0] = self_or_null;
  |  | 2126|    308|                for (int i = 0; i < oparg; i++) {
  |  |  ------------------
  |  |  |  Branch (2126:33): [True: 214, False: 94]
  |  |  ------------------
  |  | 2127|    214|                    first_non_self_local[i] = args[i];
  |  | 2128|    214|                }
  |  | 2129|     94|                new_frame = PyStackRef_Wrap(pushed_frame);
  |  | 2130|     94|            }
  |  | 2131|       |            // _SAVE_RETURN_OFFSET
  |  | 2132|     94|            {
  |  | 2133|     94|                #if TIER_ONE
  |  | 2134|     94|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 2135|     94|                #endif
  |  | 2136|       |                #if TIER_TWO
  |  | 2137|       |                frame->return_offset = oparg;
  |  | 2138|       |                #endif
  |  | 2139|     94|            }
  |  | 2140|       |            // _PUSH_FRAME
  |  | 2141|     94|            {
  |  | 2142|     94|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (2142:17): [True: 94, False: 0]
  |  |  ------------------
  |  | 2143|     94|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 2144|     94|                stack_pointer += -2 - oparg;
  |  | 2145|     94|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     94|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2146|     94|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2147|     94|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (2147:17): [True: 94, False: 0]
  |  |  |  Branch (2147:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2148|     94|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|     94|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 2149|     94|                frame = tstate->current_frame = temp;
  |  | 2150|     94|                tstate->py_recursion_remaining--;
  |  | 2151|     94|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|     94|#define LOAD_SP() \
  |  |  |  |  426|     94|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 2152|     94|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|     94|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|     94|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|     94|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 94]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2153|     94|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|     94|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 2154|     94|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|     94|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 2155|     94|            }
  |  | 2156|     94|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     94|    { \
  |  |  |  |  201|     94|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     94|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     94|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     94|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     94|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     94|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     94|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     94|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 94]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     94|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     94|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     94|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     94|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     94|    }
  |  |  ------------------
  |  |  |  Branch (2156:13): [True: 94, False: 0]
  |  |  ------------------
  |  | 2157|     94|        }
  |  | 2158|       |
  |  | 2159|      4|        TARGET(CALL_BOUND_METHOD_GENERAL) {
  |  |  ------------------
  |  |  |  |  132|      4|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2160|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2161|       |            int opcode = CALL_BOUND_METHOD_GENERAL;
  |  | 2162|       |            (void)(opcode);
  |  | 2163|       |            #endif
  |  | 2164|      4|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2165|      4|            (void)this_instr;
  |  | 2166|      4|            frame->instr_ptr = next_instr;
  |  | 2167|      4|            next_instr += 4;
  |  | 2168|      4|            INSTRUCTION_STATS(CALL_BOUND_METHOD_GENERAL);
  |  |  ------------------
  |  |  |  |   71|      4|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2169|      4|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 2170|      4|            _PyStackRef callable;
  |  | 2171|      4|            _PyStackRef null;
  |  | 2172|      4|            _PyStackRef self_or_null;
  |  | 2173|      4|            _PyStackRef *args;
  |  | 2174|      4|            _PyStackRef new_frame;
  |  | 2175|       |            /* Skip 1 cache entry */
  |  | 2176|       |            // _CHECK_PEP_523
  |  | 2177|      4|            {
  |  | 2178|      4|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|      4|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2179|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2180|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2180:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2181|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2182|      0|                }
  |  | 2183|      4|            }
  |  | 2184|       |            // _CHECK_METHOD_VERSION
  |  | 2185|      4|            {
  |  | 2186|      4|                null = stack_pointer[-1 - oparg];
  |  | 2187|      4|                callable = stack_pointer[-2 - oparg];
  |  | 2188|      4|                uint32_t func_version = read_u32(&this_instr[2].cache);
  |  | 2189|      4|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2190|      4|                if (Py_TYPE(callable_o) != &PyMethod_Type) {
  |  |  ------------------
  |  |  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2190:21): [True: 0, False: 4]
  |  |  ------------------
  |  | 2191|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2192|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2192:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2193|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2194|      0|                }
  |  | 2195|      4|                PyObject *func = ((PyMethodObject *)callable_o)->im_func;
  |  | 2196|      4|                if (!PyFunction_Check(func)) {
  |  |  ------------------
  |  |  |  |   68|      4|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      4|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2196:21): [True: 0, False: 4]
  |  |  ------------------
  |  | 2197|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2198|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2198:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2199|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2200|      0|                }
  |  | 2201|      4|                if (((PyFunctionObject *)func)->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (2201:21): [True: 0, False: 4]
  |  |  ------------------
  |  | 2202|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2203|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2203:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2204|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2205|      0|                }
  |  | 2206|      4|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|      4|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      4|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      4|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2206:21): [True: 0, False: 4]
  |  |  ------------------
  |  | 2207|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2208|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2208:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2209|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2210|      0|                }
  |  | 2211|      4|            }
  |  | 2212|       |            // _EXPAND_METHOD
  |  | 2213|      4|            {
  |  | 2214|      4|                self_or_null = null;
  |  | 2215|      4|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2216|      4|                assert(PyStackRef_IsNull(self_or_null));
  |  |  ------------------
  |  |  |  Branch (2216:17): [True: 4, False: 0]
  |  |  ------------------
  |  | 2217|      4|                assert(Py_TYPE(callable_o) == &PyMethod_Type);
  |  |  ------------------
  |  |  |  Branch (2217:17): [True: 4, False: 0]
  |  |  ------------------
  |  | 2218|      4|                self_or_null = PyStackRef_FromPyObjectNew(((PyMethodObject *)callable_o)->im_self);
  |  |  ------------------
  |  |  |  |  599|      4|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2219|      4|                _PyStackRef temp = callable;
  |  | 2220|      4|                callable = PyStackRef_FromPyObjectNew(((PyMethodObject *)callable_o)->im_func);
  |  |  ------------------
  |  |  |  |  599|      4|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2221|      4|                assert(PyStackRef_FunctionCheck(callable));
  |  |  ------------------
  |  |  |  Branch (2221:17): [True: 4, False: 0]
  |  |  ------------------
  |  | 2222|      4|                stack_pointer[-2 - oparg] = callable;
  |  | 2223|      4|                stack_pointer[-1 - oparg] = self_or_null;
  |  | 2224|      4|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2225|      4|                PyStackRef_CLOSE(temp);
  |  | 2226|      4|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2227|      4|            }
  |  | 2228|       |            // flush
  |  | 2229|       |            // _CHECK_RECURSION_REMAINING
  |  | 2230|      0|            {
  |  | 2231|      4|                if (tstate->py_recursion_remaining <= 1) {
  |  |  ------------------
  |  |  |  Branch (2231:21): [True: 0, False: 4]
  |  |  ------------------
  |  | 2232|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2233|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2233:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2234|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2235|      0|                }
  |  | 2236|      4|            }
  |  | 2237|       |            // _PY_FRAME_GENERAL
  |  | 2238|      4|            {
  |  | 2239|      4|                args = &stack_pointer[-oparg];
  |  | 2240|      4|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2241|      4|                int total_args = oparg;
  |  | 2242|      4|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|      4|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      4|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      4|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2242:21): [True: 4, False: 0]
  |  |  ------------------
  |  | 2243|      4|                    args--;
  |  | 2244|      4|                    total_args++;
  |  | 2245|      4|                }
  |  | 2246|      4|                assert(Py_TYPE(callable_o) == &PyFunction_Type);
  |  |  ------------------
  |  |  |  Branch (2246:17): [True: 4, False: 0]
  |  |  ------------------
  |  | 2247|      4|                int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|      4|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2248|      4|                PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|      4|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                               PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2248:36): [True: 4, False: 0]
  |  |  ------------------
  |  | 2249|      4|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2250|      4|                _PyInterpreterFrame *temp = _PyEvalFramePushAndInit(
  |  | 2251|      4|                    tstate, callable, locals,
  |  | 2252|      4|                    args, total_args, NULL, frame
  |  | 2253|      4|                );
  |  | 2254|      4|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2255|      4|                stack_pointer += -2 - oparg;
  |  | 2256|      4|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      4|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2257|      4|                if (temp == NULL) {
  |  |  ------------------
  |  |  |  Branch (2257:21): [True: 0, False: 4]
  |  |  ------------------
  |  | 2258|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2259|      0|                }
  |  | 2260|      4|                new_frame = PyStackRef_Wrap(temp);
  |  | 2261|      4|            }
  |  | 2262|       |            // _SAVE_RETURN_OFFSET
  |  | 2263|      0|            {
  |  | 2264|      4|                #if TIER_ONE
  |  | 2265|      4|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 2266|      4|                #endif
  |  | 2267|       |                #if TIER_TWO
  |  | 2268|       |                frame->return_offset = oparg;
  |  | 2269|       |                #endif
  |  | 2270|      4|            }
  |  | 2271|       |            // _PUSH_FRAME
  |  | 2272|      4|            {
  |  | 2273|      4|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (2273:17): [True: 4, False: 0]
  |  |  ------------------
  |  | 2274|      4|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 2275|      4|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2276|      4|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (2276:17): [True: 4, False: 0]
  |  |  |  Branch (2276:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2277|      4|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|      4|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 2278|      4|                frame = tstate->current_frame = temp;
  |  | 2279|      4|                tstate->py_recursion_remaining--;
  |  | 2280|      4|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|      4|#define LOAD_SP() \
  |  |  |  |  426|      4|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 2281|      4|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|      4|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      4|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2282|      4|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|      4|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 2283|      4|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      4|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 2284|      4|            }
  |  | 2285|      4|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      4|    { \
  |  |  |  |  201|      4|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      4|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      4|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      4|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      4|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      4|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      4|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      4|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 4]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      4|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      4|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      4|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      4|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      4|    }
  |  |  ------------------
  |  |  |  Branch (2285:13): [True: 4, False: 0]
  |  |  ------------------
  |  | 2286|      4|        }
  |  | 2287|       |
  |  | 2288|     62|        TARGET(CALL_BUILTIN_CLASS) {
  |  |  ------------------
  |  |  |  |  132|     62|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2289|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2290|       |            int opcode = CALL_BUILTIN_CLASS;
  |  | 2291|       |            (void)(opcode);
  |  | 2292|       |            #endif
  |  | 2293|     62|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2294|     62|            (void)this_instr;
  |  | 2295|     62|            frame->instr_ptr = next_instr;
  |  | 2296|     62|            next_instr += 4;
  |  | 2297|     62|            INSTRUCTION_STATS(CALL_BUILTIN_CLASS);
  |  |  ------------------
  |  |  |  |   71|     62|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2298|     62|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 2299|     62|            _PyStackRef callable;
  |  | 2300|     62|            _PyStackRef self_or_null;
  |  | 2301|     62|            _PyStackRef *args;
  |  | 2302|     62|            _PyStackRef value;
  |  | 2303|       |            /* Skip 1 cache entry */
  |  | 2304|       |            /* Skip 2 cache entries */
  |  | 2305|       |            // _GUARD_CALLABLE_BUILTIN_CLASS
  |  | 2306|     62|            {
  |  | 2307|     62|                callable = stack_pointer[-2 - oparg];
  |  | 2308|     62|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2309|     62|                if (!PyType_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |  766|     62|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2309:21): [True: 0, False: 62]
  |  |  ------------------
  |  | 2310|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2311|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2311:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2312|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2313|      0|                }
  |  | 2314|     62|                PyTypeObject *tp = (PyTypeObject *)callable_o;
  |  | 2315|     62|                if (tp->tp_vectorcall == NULL) {
  |  |  ------------------
  |  |  |  Branch (2315:21): [True: 0, False: 62]
  |  |  ------------------
  |  | 2316|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2317|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2317:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2318|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2319|      0|                }
  |  | 2320|     62|            }
  |  | 2321|       |            // _CALL_BUILTIN_CLASS
  |  | 2322|     62|            {
  |  | 2323|     62|                args = &stack_pointer[-oparg];
  |  | 2324|     62|                self_or_null = stack_pointer[-1 - oparg];
  |  | 2325|     62|                int total_args = oparg;
  |  | 2326|     62|                _PyStackRef *arguments = args;
  |  | 2327|     62|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|     62|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     62|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     62|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2327:21): [True: 0, False: 62]
  |  |  ------------------
  |  | 2328|      0|                    arguments--;
  |  | 2329|      0|                    total_args++;
  |  | 2330|      0|                }
  |  | 2331|     62|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|     62|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 2332|     62|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2333|     62|                PyObject *res_o = _Py_CallBuiltinClass_StackRef(
  |  | 2334|     62|                    callable,
  |  | 2335|     62|                    arguments,
  |  | 2336|     62|                    total_args);
  |  | 2337|     62|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2338|     62|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2338:21): [True: 0, False: 62]
  |  |  ------------------
  |  | 2339|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2340|      0|                }
  |  | 2341|     62|                _PyStackRef temp = callable;
  |  | 2342|     62|                callable = PyStackRef_FromPyObjectSteal(res_o);
  |  | 2343|     62|                stack_pointer[-2 - oparg] = callable;
  |  | 2344|     62|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2345|     62|                PyStackRef_CLOSE(temp);
  |  | 2346|     62|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2347|     62|            }
  |  | 2348|       |            // _POP_TOP_OPARG
  |  | 2349|      0|            {
  |  | 2350|     62|                args = &stack_pointer[-oparg];
  |  | 2351|     62|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2352|     62|                _PyStackRef_CloseStack(args, oparg);
  |  | 2353|     62|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2354|     62|            }
  |  | 2355|       |            // _POP_TOP
  |  | 2356|     62|            {
  |  | 2357|     62|                value = self_or_null;
  |  | 2358|     62|                stack_pointer += -1 - oparg;
  |  | 2359|     62|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     62|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2360|     62|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2361|     62|                PyStackRef_XCLOSE(value);
  |  | 2362|     62|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2363|     62|            }
  |  | 2364|       |            // _CHECK_PERIODIC_AT_END
  |  | 2365|     62|            {
  |  | 2366|     62|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2367|     62|                int err = check_periodics(tstate);
  |  | 2368|     62|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2369|     62|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (2369:21): [True: 0, False: 62]
  |  |  ------------------
  |  | 2370|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2371|      0|                }
  |  | 2372|     62|            }
  |  | 2373|     62|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     62|    { \
  |  |  |  |  201|     62|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     62|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     62|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     62|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     62|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     62|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     62|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     62|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 62]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     62|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     62|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     62|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     62|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     62|    }
  |  |  ------------------
  |  |  |  Branch (2373:13): [True: 62, False: 0]
  |  |  ------------------
  |  | 2374|     62|        }
  |  | 2375|       |
  |  | 2376|    958|        TARGET(CALL_BUILTIN_FAST) {
  |  |  ------------------
  |  |  |  |  132|    958|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2377|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2378|       |            int opcode = CALL_BUILTIN_FAST;
  |  | 2379|       |            (void)(opcode);
  |  | 2380|       |            #endif
  |  | 2381|    958|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2382|    958|            (void)this_instr;
  |  | 2383|    958|            frame->instr_ptr = next_instr;
  |  | 2384|    958|            next_instr += 4;
  |  | 2385|    958|            INSTRUCTION_STATS(CALL_BUILTIN_FAST);
  |  |  ------------------
  |  |  |  |   71|    958|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2386|    958|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 2387|    958|            _PyStackRef callable;
  |  | 2388|    958|            _PyStackRef self_or_null;
  |  | 2389|    958|            _PyStackRef *args;
  |  | 2390|    958|            _PyStackRef value;
  |  | 2391|       |            /* Skip 1 cache entry */
  |  | 2392|       |            /* Skip 2 cache entries */
  |  | 2393|       |            // _GUARD_CALLABLE_BUILTIN_FAST
  |  | 2394|    958|            {
  |  | 2395|    958|                callable = stack_pointer[-2 - oparg];
  |  | 2396|    958|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2397|    958|                if (!PyCFunction_CheckExact(callable_o)) {
  |  |  ------------------
  |  |  |  |   16|    958|#define PyCFunction_CheckExact(op) Py_IS_TYPE((op), &PyCFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    958|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    958|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    958|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2397:21): [True: 0, False: 958]
  |  |  ------------------
  |  | 2398|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2399|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2399:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2400|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2401|      0|                }
  |  | 2402|    958|                if (PyCFunction_GET_FLAGS(callable_o) != METH_FASTCALL) {
  |  |  ------------------
  |  |  |  |   57|    958|#define PyCFunction_GET_FLAGS(func) PyCFunction_GET_FLAGS(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    958|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    958|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               if (PyCFunction_GET_FLAGS(callable_o) != METH_FASTCALL) {
  |  |  ------------------
  |  |  |  |  115|    958|#  define METH_FASTCALL  0x0080
  |  |  ------------------
  |  |  |  Branch (2402:21): [True: 0, False: 958]
  |  |  ------------------
  |  | 2403|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2404|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2404:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2405|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2406|      0|                }
  |  | 2407|    958|            }
  |  | 2408|       |            // _CALL_BUILTIN_FAST
  |  | 2409|    958|            {
  |  | 2410|    958|                args = &stack_pointer[-oparg];
  |  | 2411|    958|                self_or_null = stack_pointer[-1 - oparg];
  |  | 2412|    958|                int total_args = oparg;
  |  | 2413|    958|                _PyStackRef *arguments = args;
  |  | 2414|    958|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    958|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    958|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    958|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2414:21): [True: 0, False: 958]
  |  |  ------------------
  |  | 2415|      0|                    arguments--;
  |  | 2416|      0|                    total_args++;
  |  | 2417|      0|                }
  |  | 2418|    958|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    958|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 2419|    958|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2420|    958|                PyObject *res_o = _Py_BuiltinCallFast_StackRef(
  |  | 2421|    958|                    callable,
  |  | 2422|    958|                    arguments,
  |  | 2423|    958|                    total_args
  |  | 2424|    958|                );
  |  | 2425|    958|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2426|    958|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2426:21): [True: 0, False: 958]
  |  |  ------------------
  |  | 2427|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2428|      0|                }
  |  | 2429|    958|                _PyStackRef temp = callable;
  |  | 2430|    958|                callable = PyStackRef_FromPyObjectSteal(res_o);
  |  | 2431|    958|                stack_pointer[-2 - oparg] = callable;
  |  | 2432|    958|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2433|    958|                PyStackRef_CLOSE(temp);
  |  | 2434|    958|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2435|    958|            }
  |  | 2436|       |            // _POP_TOP_OPARG
  |  | 2437|      0|            {
  |  | 2438|    958|                args = &stack_pointer[-oparg];
  |  | 2439|    958|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2440|    958|                _PyStackRef_CloseStack(args, oparg);
  |  | 2441|    958|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2442|    958|            }
  |  | 2443|       |            // _POP_TOP
  |  | 2444|    958|            {
  |  | 2445|    958|                value = self_or_null;
  |  | 2446|    958|                stack_pointer += -1 - oparg;
  |  | 2447|    958|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    958|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2448|    958|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2449|    958|                PyStackRef_XCLOSE(value);
  |  | 2450|    958|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2451|    958|            }
  |  | 2452|       |            // _CHECK_PERIODIC_AT_END
  |  | 2453|    958|            {
  |  | 2454|    958|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2455|    958|                int err = check_periodics(tstate);
  |  | 2456|    958|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2457|    958|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (2457:21): [True: 0, False: 958]
  |  |  ------------------
  |  | 2458|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2459|      0|                }
  |  | 2460|    958|            }
  |  | 2461|    958|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    958|    { \
  |  |  |  |  201|    958|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    958|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    958|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    958|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    958|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    958|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    958|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    958|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 958]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    958|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    958|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    958|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    958|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    958|    }
  |  |  ------------------
  |  |  |  Branch (2461:13): [True: 958, False: 0]
  |  |  ------------------
  |  | 2462|    958|        }
  |  | 2463|       |
  |  | 2464|    196|        TARGET(CALL_BUILTIN_FAST_WITH_KEYWORDS) {
  |  |  ------------------
  |  |  |  |  132|    196|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2465|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2466|       |            int opcode = CALL_BUILTIN_FAST_WITH_KEYWORDS;
  |  | 2467|       |            (void)(opcode);
  |  | 2468|       |            #endif
  |  | 2469|    196|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2470|    196|            (void)this_instr;
  |  | 2471|    196|            frame->instr_ptr = next_instr;
  |  | 2472|    196|            next_instr += 4;
  |  | 2473|    196|            INSTRUCTION_STATS(CALL_BUILTIN_FAST_WITH_KEYWORDS);
  |  |  ------------------
  |  |  |  |   71|    196|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2474|    196|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 2475|    196|            _PyStackRef callable;
  |  | 2476|    196|            _PyStackRef self_or_null;
  |  | 2477|    196|            _PyStackRef *args;
  |  | 2478|    196|            _PyStackRef value;
  |  | 2479|       |            /* Skip 1 cache entry */
  |  | 2480|       |            /* Skip 2 cache entries */
  |  | 2481|       |            // _GUARD_CALLABLE_BUILTIN_FAST_WITH_KEYWORDS
  |  | 2482|    196|            {
  |  | 2483|    196|                callable = stack_pointer[-2 - oparg];
  |  | 2484|    196|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2485|    196|                if (!PyCFunction_CheckExact(callable_o)) {
  |  |  ------------------
  |  |  |  |   16|    196|#define PyCFunction_CheckExact(op) Py_IS_TYPE((op), &PyCFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    196|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    196|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    196|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2485:21): [True: 0, False: 196]
  |  |  ------------------
  |  | 2486|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2487|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2487:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2488|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2489|      0|                }
  |  | 2490|    196|                if (PyCFunction_GET_FLAGS(callable_o) != (METH_FASTCALL | METH_KEYWORDS)) {
  |  |  ------------------
  |  |  |  |   57|    196|#define PyCFunction_GET_FLAGS(func) PyCFunction_GET_FLAGS(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    196|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    196|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               if (PyCFunction_GET_FLAGS(callable_o) != (METH_FASTCALL | METH_KEYWORDS)) {
  |  |  ------------------
  |  |  |  |  115|    196|#  define METH_FASTCALL  0x0080
  |  |  ------------------
  |  |                               if (PyCFunction_GET_FLAGS(callable_o) != (METH_FASTCALL | METH_KEYWORDS)) {
  |  |  ------------------
  |  |  |  |   96|    196|#define METH_KEYWORDS 0x0002
  |  |  ------------------
  |  |  |  Branch (2490:21): [True: 0, False: 196]
  |  |  ------------------
  |  | 2491|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2492|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2492:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2493|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2494|      0|                }
  |  | 2495|    196|            }
  |  | 2496|       |            // _CALL_BUILTIN_FAST_WITH_KEYWORDS
  |  | 2497|    196|            {
  |  | 2498|    196|                args = &stack_pointer[-oparg];
  |  | 2499|    196|                self_or_null = stack_pointer[-1 - oparg];
  |  | 2500|    196|                int total_args = oparg;
  |  | 2501|    196|                _PyStackRef *arguments = args;
  |  | 2502|    196|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    196|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    196|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    196|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2502:21): [True: 0, False: 196]
  |  |  ------------------
  |  | 2503|      0|                    arguments--;
  |  | 2504|      0|                    total_args++;
  |  | 2505|      0|                }
  |  | 2506|    196|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    196|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 2507|    196|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2508|    196|                PyObject *res_o = _Py_BuiltinCallFastWithKeywords_StackRef(callable, arguments, total_args);
  |  | 2509|    196|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2510|    196|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2510:21): [True: 4, False: 192]
  |  |  ------------------
  |  | 2511|      4|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      4|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2512|      0|                }
  |  | 2513|    192|                _PyStackRef temp = callable;
  |  | 2514|    192|                callable = PyStackRef_FromPyObjectSteal(res_o);
  |  | 2515|    192|                stack_pointer[-2 - oparg] = callable;
  |  | 2516|    192|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2517|    192|                PyStackRef_CLOSE(temp);
  |  | 2518|    192|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2519|    192|            }
  |  | 2520|       |            // _POP_TOP_OPARG
  |  | 2521|      0|            {
  |  | 2522|    192|                args = &stack_pointer[-oparg];
  |  | 2523|    192|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2524|    192|                _PyStackRef_CloseStack(args, oparg);
  |  | 2525|    192|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2526|    192|            }
  |  | 2527|       |            // _POP_TOP
  |  | 2528|    192|            {
  |  | 2529|    192|                value = self_or_null;
  |  | 2530|    192|                stack_pointer += -1 - oparg;
  |  | 2531|    192|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    192|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2532|    192|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2533|    192|                PyStackRef_XCLOSE(value);
  |  | 2534|    192|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2535|    192|            }
  |  | 2536|       |            // _CHECK_PERIODIC_AT_END
  |  | 2537|    192|            {
  |  | 2538|    192|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2539|    192|                int err = check_periodics(tstate);
  |  | 2540|    192|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2541|    192|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (2541:21): [True: 0, False: 192]
  |  |  ------------------
  |  | 2542|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2543|      0|                }
  |  | 2544|    192|            }
  |  | 2545|    192|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    192|    { \
  |  |  |  |  201|    192|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    192|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    192|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    192|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    192|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    192|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    192|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    192|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 192]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    192|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    192|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    192|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    192|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    192|    }
  |  |  ------------------
  |  |  |  Branch (2545:13): [True: 192, False: 0]
  |  |  ------------------
  |  | 2546|    192|        }
  |  | 2547|       |
  |  | 2548|    108|        TARGET(CALL_BUILTIN_O) {
  |  |  ------------------
  |  |  |  |  132|    108|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2549|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2550|       |            int opcode = CALL_BUILTIN_O;
  |  | 2551|       |            (void)(opcode);
  |  | 2552|       |            #endif
  |  | 2553|    108|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2554|    108|            (void)this_instr;
  |  | 2555|    108|            frame->instr_ptr = next_instr;
  |  | 2556|    108|            next_instr += 4;
  |  | 2557|    108|            INSTRUCTION_STATS(CALL_BUILTIN_O);
  |  |  ------------------
  |  |  |  |   71|    108|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2558|    108|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 2559|    108|            _PyStackRef callable;
  |  | 2560|    108|            _PyStackRef self_or_null;
  |  | 2561|    108|            _PyStackRef *args;
  |  | 2562|    108|            _PyStackRef res;
  |  | 2563|    108|            _PyStackRef c;
  |  | 2564|    108|            _PyStackRef s;
  |  | 2565|    108|            _PyStackRef value;
  |  | 2566|       |            /* Skip 1 cache entry */
  |  | 2567|       |            /* Skip 2 cache entries */
  |  | 2568|       |            // _GUARD_CALLABLE_BUILTIN_O
  |  | 2569|    108|            {
  |  | 2570|    108|                self_or_null = stack_pointer[-1 - oparg];
  |  | 2571|    108|                callable = stack_pointer[-2 - oparg];
  |  | 2572|    108|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2573|    108|                if (!PyCFunction_CheckExact(callable_o)) {
  |  |  ------------------
  |  |  |  |   16|    108|#define PyCFunction_CheckExact(op) Py_IS_TYPE((op), &PyCFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    108|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2573:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2574|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2575|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2575:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2576|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2577|      0|                }
  |  | 2578|    108|                if (PyCFunction_GET_FLAGS(callable_o) != METH_O) {
  |  |  ------------------
  |  |  |  |   57|    108|#define PyCFunction_GET_FLAGS(func) PyCFunction_GET_FLAGS(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               if (PyCFunction_GET_FLAGS(callable_o) != METH_O) {
  |  |  ------------------
  |  |  |  |   99|    108|#define METH_O        0x0008
  |  |  ------------------
  |  |  |  Branch (2578:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2579|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2580|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2580:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2581|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2582|      0|                }
  |  | 2583|    108|                int total_args = oparg;
  |  | 2584|    108|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    108|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    108|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    108|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2584:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2585|      0|                    total_args++;
  |  | 2586|      0|                }
  |  | 2587|    108|                if (total_args != 1) {
  |  |  ------------------
  |  |  |  Branch (2587:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2588|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2589|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2589:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2590|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2591|      0|                }
  |  | 2592|    108|            }
  |  | 2593|       |            // _CHECK_RECURSION_LIMIT
  |  | 2594|    108|            {
  |  | 2595|    108|                if (_Py_ReachedRecursionLimit(tstate)) {
  |  |  ------------------
  |  |  |  Branch (2595:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2596|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2597|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (2597:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2598|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2599|      0|                }
  |  | 2600|    108|            }
  |  | 2601|       |            // _CALL_BUILTIN_O
  |  | 2602|    108|            {
  |  | 2603|    108|                args = &stack_pointer[-oparg];
  |  | 2604|    108|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 2605|    108|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    108|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    108|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    108|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2605:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2606|      0|                    args--;
  |  | 2607|      0|                }
  |  | 2608|    108|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    108|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 2609|    108|                PyCFunction cfunc = PyCFunction_GET_FUNCTION(callable_o);
  |  |  ------------------
  |  |  |  |   43|    108|#define PyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    108|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    108|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2610|    108|                _PyStackRef arg = args[0];
  |  | 2611|    108|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2612|    108|                PyObject *res_o = _PyCFunction_TrampolineCall(cfunc, PyCFunction_GET_SELF(callable_o), PyStackRef_AsPyObjectBorrow(arg));
  |  |  ------------------
  |  |  |  |  997|    108|    (meth)((self), (args))
  |  |  ------------------
  |  | 2613|    108|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2614|    108|                _Py_LeaveRecursiveCallTstate(tstate);
  |  | 2615|    108|                assert((res_o != NULL) ^ (_PyErr_Occurred(tstate) != NULL));
  |  |  ------------------
  |  |  |  Branch (2615:17): [True: 108, False: 0]
  |  |  ------------------
  |  | 2616|    108|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2616:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2617|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2618|      0|                }
  |  | 2619|    108|                c = callable;
  |  | 2620|    108|                s = args[0];
  |  | 2621|    108|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 2622|    108|            }
  |  | 2623|       |            // _POP_TOP
  |  | 2624|      0|            {
  |  | 2625|    108|                value = s;
  |  | 2626|    108|                stack_pointer[-2 - oparg] = res;
  |  | 2627|    108|                stack_pointer[-1 - oparg] = c;
  |  | 2628|    108|                stack_pointer += -oparg;
  |  | 2629|    108|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    108|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2630|    108|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2631|    108|                PyStackRef_XCLOSE(value);
  |  | 2632|    108|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2633|    108|            }
  |  | 2634|       |            // _POP_TOP
  |  | 2635|    108|            {
  |  | 2636|    108|                value = c;
  |  | 2637|    108|                stack_pointer += -1;
  |  | 2638|    108|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    108|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2639|    108|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2640|    108|                PyStackRef_XCLOSE(value);
  |  | 2641|    108|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2642|    108|            }
  |  | 2643|       |            // _CHECK_PERIODIC_AT_END
  |  | 2644|    108|            {
  |  | 2645|    108|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2646|    108|                int err = check_periodics(tstate);
  |  | 2647|    108|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2648|    108|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (2648:21): [True: 0, False: 108]
  |  |  ------------------
  |  | 2649|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2650|      0|                }
  |  | 2651|    108|            }
  |  | 2652|    108|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    108|    { \
  |  |  |  |  201|    108|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    108|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    108|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    108|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    108|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    108|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    108|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    108|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 108]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    108|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    108|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    108|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    108|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    108|    }
  |  |  ------------------
  |  |  |  Branch (2652:13): [True: 108, False: 0]
  |  |  ------------------
  |  | 2653|    108|        }
  |  | 2654|       |
  |  | 2655|    166|        TARGET(CALL_EX_NON_PY_GENERAL) {
  |  |  ------------------
  |  |  |  |  132|    166|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2656|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2657|       |            int opcode = CALL_EX_NON_PY_GENERAL;
  |  | 2658|       |            (void)(opcode);
  |  | 2659|       |            #endif
  |  | 2660|    166|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2661|    166|            (void)this_instr;
  |  | 2662|    166|            frame->instr_ptr = next_instr;
  |  | 2663|    166|            next_instr += 2;
  |  | 2664|    166|            INSTRUCTION_STATS(CALL_EX_NON_PY_GENERAL);
  |  |  ------------------
  |  |  |  |   71|    166|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2665|    166|            static_assert(INLINE_CACHE_ENTRIES_CALL_FUNCTION_EX == 1, "incorrect cache size");
  |  | 2666|    166|            _PyStackRef func_st;
  |  | 2667|    166|            _PyStackRef func;
  |  | 2668|    166|            _PyStackRef callargs;
  |  | 2669|    166|            _PyStackRef null;
  |  | 2670|    166|            _PyStackRef callargs_st;
  |  | 2671|    166|            _PyStackRef kwargs_st;
  |  | 2672|    166|            _PyStackRef result;
  |  | 2673|       |            /* Skip 1 cache entry */
  |  | 2674|       |            // _CHECK_IS_NOT_PY_CALLABLE_EX
  |  | 2675|    166|            {
  |  | 2676|    166|                func_st = stack_pointer[-4];
  |  | 2677|    166|                PyObject *func = PyStackRef_AsPyObjectBorrow(func_st);
  |  | 2678|    166|                if (Py_TYPE(func) == &PyFunction_Type && ((PyFunctionObject *)func)->vectorcall == _PyFunction_Vectorcall) {
  |  |  ------------------
  |  |  |  |  213|    166|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2678:21): [True: 0, False: 166]
  |  |  |  Branch (2678:58): [True: 0, False: 0]
  |  |  ------------------
  |  | 2679|      0|                    UPDATE_MISS_STATS(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2680|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_FUNCTION_EX));
  |  |  ------------------
  |  |  |  Branch (2680:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2681|      0|                    JUMP_TO_PREDICTED(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2682|      0|                }
  |  | 2683|    166|            }
  |  | 2684|       |            // _MAKE_CALLARGS_A_TUPLE
  |  | 2685|    166|            {
  |  | 2686|    166|                callargs = stack_pointer[-2];
  |  | 2687|    166|                func = func_st;
  |  | 2688|    166|                PyObject *callargs_o = PyStackRef_AsPyObjectBorrow(callargs);
  |  | 2689|    166|                if (!PyTuple_CheckExact(callargs_o)) {
  |  |  ------------------
  |  |  |  |   28|    166|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    166|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2689:21): [True: 0, False: 166]
  |  |  ------------------
  |  | 2690|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2691|      0|                    int err = _Py_Check_ArgsIterable(tstate, PyStackRef_AsPyObjectBorrow(func), callargs_o);
  |  | 2692|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2693|      0|                    if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (2693:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 2694|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2695|      0|                    }
  |  | 2696|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2697|      0|                    PyObject *tuple_o = PySequence_Tuple(callargs_o);
  |  | 2698|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2699|      0|                    if (tuple_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2699:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 2700|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2701|      0|                    }
  |  | 2702|      0|                    _PyStackRef temp = callargs;
  |  | 2703|      0|                    callargs = PyStackRef_FromPyObjectSteal(tuple_o);
  |  | 2704|      0|                    stack_pointer[-2] = callargs;
  |  | 2705|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2706|      0|                    PyStackRef_CLOSE(temp);
  |  | 2707|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2708|      0|                }
  |  | 2709|    166|            }
  |  | 2710|       |            // _CALL_FUNCTION_EX_NON_PY_GENERAL
  |  | 2711|    166|            {
  |  | 2712|    166|                kwargs_st = stack_pointer[-1];
  |  | 2713|    166|                callargs_st = callargs;
  |  | 2714|    166|                null = stack_pointer[-3];
  |  | 2715|    166|                func_st = func;
  |  | 2716|    166|                PyObject *func = PyStackRef_AsPyObjectBorrow(func_st);
  |  | 2717|    166|                PyObject *callargs = PyStackRef_AsPyObjectBorrow(callargs_st);
  |  | 2718|    166|                (void)null;
  |  | 2719|    166|                assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (2719:17): [True: 166, False: 0]
  |  |  ------------------
  |  | 2720|    166|                PyObject *kwargs = PyStackRef_AsPyObjectBorrow(kwargs_st);
  |  | 2721|    166|                assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (2721:17): [True: 4, False: 162]
  |  |  |  Branch (2721:17): [True: 162, False: 0]
  |  |  ------------------
  |  | 2722|    166|                stack_pointer[-2] = callargs_st;
  |  | 2723|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2724|    166|                PyObject *result_o = PyObject_Call(func, callargs, kwargs);
  |  | 2725|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2726|    166|                stack_pointer += -1;
  |  | 2727|    166|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2728|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2729|    166|                PyStackRef_XCLOSE(kwargs_st);
  |  | 2730|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2731|    166|                stack_pointer += -1;
  |  | 2732|    166|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2733|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2734|    166|                PyStackRef_CLOSE(callargs_st);
  |  | 2735|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2736|    166|                stack_pointer += -2;
  |  | 2737|    166|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2738|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2739|    166|                PyStackRef_CLOSE(func_st);
  |  | 2740|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2741|    166|                if (result_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2741:21): [True: 0, False: 166]
  |  |  ------------------
  |  | 2742|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2743|      0|                }
  |  | 2744|    166|                result = PyStackRef_FromPyObjectSteal(result_o);
  |  | 2745|    166|            }
  |  | 2746|       |            // _CHECK_PERIODIC_AT_END
  |  | 2747|      0|            {
  |  | 2748|    166|                stack_pointer[0] = result;
  |  | 2749|    166|                stack_pointer += 1;
  |  | 2750|    166|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2751|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2752|    166|                int err = check_periodics(tstate);
  |  | 2753|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2754|    166|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (2754:21): [True: 0, False: 166]
  |  |  ------------------
  |  | 2755|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2756|      0|                }
  |  | 2757|    166|            }
  |  | 2758|    166|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    166|    { \
  |  |  |  |  201|    166|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    166|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    166|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    166|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    166|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    166|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    166|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    166|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 166]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    166|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    166|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    166|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    166|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    166|    }
  |  |  ------------------
  |  |  |  Branch (2758:13): [True: 166, False: 0]
  |  |  ------------------
  |  | 2759|    166|        }
  |  | 2760|       |
  |  | 2761|      6|        TARGET(CALL_EX_PY) {
  |  |  ------------------
  |  |  |  |  132|      6|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2762|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2763|       |            int opcode = CALL_EX_PY;
  |  | 2764|       |            (void)(opcode);
  |  | 2765|       |            #endif
  |  | 2766|      6|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 2767|      6|            (void)this_instr;
  |  | 2768|      6|            frame->instr_ptr = next_instr;
  |  | 2769|      6|            next_instr += 2;
  |  | 2770|      6|            INSTRUCTION_STATS(CALL_EX_PY);
  |  |  ------------------
  |  |  |  |   71|      6|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2771|      6|            static_assert(INLINE_CACHE_ENTRIES_CALL_FUNCTION_EX == 1, "incorrect cache size");
  |  | 2772|      6|            _PyStackRef func;
  |  | 2773|      6|            _PyStackRef callargs;
  |  | 2774|      6|            _PyStackRef func_st;
  |  | 2775|      6|            _PyStackRef callargs_st;
  |  | 2776|      6|            _PyStackRef kwargs_st;
  |  | 2777|      6|            _PyStackRef ex_frame;
  |  | 2778|      6|            _PyStackRef new_frame;
  |  | 2779|       |            /* Skip 1 cache entry */
  |  | 2780|       |            // _CHECK_PEP_523
  |  | 2781|      6|            {
  |  | 2782|      6|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|      6|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2783|      0|                    UPDATE_MISS_STATS(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2784|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_FUNCTION_EX));
  |  |  ------------------
  |  |  |  Branch (2784:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2785|      0|                    JUMP_TO_PREDICTED(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2786|      0|                }
  |  | 2787|      6|            }
  |  | 2788|       |            // _MAKE_CALLARGS_A_TUPLE
  |  | 2789|      6|            {
  |  | 2790|      6|                callargs = stack_pointer[-2];
  |  | 2791|      6|                func = stack_pointer[-4];
  |  | 2792|      6|                PyObject *callargs_o = PyStackRef_AsPyObjectBorrow(callargs);
  |  | 2793|      6|                if (!PyTuple_CheckExact(callargs_o)) {
  |  |  ------------------
  |  |  |  |   28|      6|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      6|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2793:21): [True: 0, False: 6]
  |  |  ------------------
  |  | 2794|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2795|      0|                    int err = _Py_Check_ArgsIterable(tstate, PyStackRef_AsPyObjectBorrow(func), callargs_o);
  |  | 2796|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2797|      0|                    if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (2797:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 2798|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2799|      0|                    }
  |  | 2800|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2801|      0|                    PyObject *tuple_o = PySequence_Tuple(callargs_o);
  |  | 2802|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2803|      0|                    if (tuple_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2803:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 2804|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2805|      0|                    }
  |  | 2806|      0|                    _PyStackRef temp = callargs;
  |  | 2807|      0|                    callargs = PyStackRef_FromPyObjectSteal(tuple_o);
  |  | 2808|      0|                    stack_pointer[-2] = callargs;
  |  | 2809|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2810|      0|                    PyStackRef_CLOSE(temp);
  |  | 2811|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2812|      0|                }
  |  | 2813|      6|            }
  |  | 2814|       |            // _CHECK_IS_PY_CALLABLE_EX
  |  | 2815|      6|            {
  |  | 2816|      6|                func_st = func;
  |  | 2817|      6|                PyObject *func = PyStackRef_AsPyObjectBorrow(func_st);
  |  | 2818|      6|                if (Py_TYPE(func) != &PyFunction_Type) {
  |  |  ------------------
  |  |  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2818:21): [True: 0, False: 6]
  |  |  ------------------
  |  | 2819|      0|                    UPDATE_MISS_STATS(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2820|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_FUNCTION_EX));
  |  |  ------------------
  |  |  |  Branch (2820:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2821|      0|                    JUMP_TO_PREDICTED(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2822|      0|                }
  |  | 2823|      6|                if (((PyFunctionObject *)func)->vectorcall != _PyFunction_Vectorcall) {
  |  |  ------------------
  |  |  |  Branch (2823:21): [True: 0, False: 6]
  |  |  ------------------
  |  | 2824|      0|                    UPDATE_MISS_STATS(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 2825|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_FUNCTION_EX));
  |  |  ------------------
  |  |  |  Branch (2825:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2826|      0|                    JUMP_TO_PREDICTED(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 2827|      0|                }
  |  | 2828|      6|            }
  |  | 2829|       |            // _PY_FRAME_EX
  |  | 2830|      6|            {
  |  | 2831|      6|                kwargs_st = stack_pointer[-1];
  |  | 2832|      6|                callargs_st = callargs;
  |  | 2833|      6|                PyObject *func = PyStackRef_AsPyObjectBorrow(func_st);
  |  | 2834|      6|                PyObject *callargs = PyStackRef_AsPyObjectSteal(callargs_st);
  |  | 2835|      6|                assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (2835:17): [True: 6, False: 0]
  |  |  ------------------
  |  | 2836|      6|                assert(Py_TYPE(func) == &PyFunction_Type);
  |  |  ------------------
  |  |  |  Branch (2836:17): [True: 6, False: 0]
  |  |  ------------------
  |  | 2837|      6|                assert(((PyFunctionObject *)func)->vectorcall == _PyFunction_Vectorcall);
  |  |  ------------------
  |  |  |  Branch (2837:17): [True: 6, False: 0]
  |  |  ------------------
  |  | 2838|      6|                PyObject *kwargs = PyStackRef_IsNull(kwargs_st) ? NULL : PyStackRef_AsPyObjectSteal(kwargs_st);
  |  |  ------------------
  |  |  |  |  470|      6|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      6|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      6|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2839|      6|                assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (2839:17): [True: 6, False: 0]
  |  |  |  Branch (2839:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2840|      6|                Py_ssize_t nargs = PyTuple_GET_SIZE(callargs);
  |  |  ------------------
  |  |  |  |   27|      6|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2841|      6|                int code_flags = ((PyCodeObject *)PyFunction_GET_CODE(func))->co_flags;
  |  |  ------------------
  |  |  |  |   93|      6|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2842|      6|                PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(func));
  |  |  ------------------
  |  |  |  |  118|      6|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                               PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(func));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2842:36): [True: 6, False: 0]
  |  |  ------------------
  |  | 2843|      6|                stack_pointer += -3;
  |  | 2844|      6|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      6|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2845|      6|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2846|      6|                _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit_Ex(
  |  | 2847|      6|                    tstate, func_st, locals,
  |  | 2848|      6|                    nargs, callargs, kwargs, frame);
  |  | 2849|      6|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2850|      6|                stack_pointer += -1;
  |  | 2851|      6|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      6|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 2852|      6|                if (new_frame == NULL) {
  |  |  ------------------
  |  |  |  Branch (2852:21): [True: 0, False: 6]
  |  |  ------------------
  |  | 2853|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2854|      0|                }
  |  | 2855|      6|                ex_frame = PyStackRef_Wrap(new_frame);
  |  | 2856|      6|            }
  |  | 2857|       |            // _SAVE_RETURN_OFFSET
  |  | 2858|      0|            {
  |  | 2859|      6|                #if TIER_ONE
  |  | 2860|      6|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 2861|      6|                #endif
  |  | 2862|       |                #if TIER_TWO
  |  | 2863|       |                frame->return_offset = oparg;
  |  | 2864|       |                #endif
  |  | 2865|      6|            }
  |  | 2866|       |            // _PUSH_FRAME
  |  | 2867|      6|            {
  |  | 2868|      6|                new_frame = ex_frame;
  |  | 2869|      6|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (2869:17): [True: 6, False: 0]
  |  |  ------------------
  |  | 2870|      6|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 2871|      6|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2872|      6|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (2872:17): [True: 6, False: 0]
  |  |  |  Branch (2872:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 2873|      6|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|      6|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 2874|      6|                frame = tstate->current_frame = temp;
  |  | 2875|      6|                tstate->py_recursion_remaining--;
  |  | 2876|      6|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|      6|#define LOAD_SP() \
  |  |  |  |  426|      6|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 2877|      6|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|      6|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      6|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      6|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2878|      6|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|      6|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 2879|      6|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      6|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 2880|      6|            }
  |  | 2881|      6|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      6|    { \
  |  |  |  |  201|      6|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      6|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      6|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      6|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      6|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      6|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      6|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      6|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 6]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      6|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      6|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      6|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      6|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      6|    }
  |  |  ------------------
  |  |  |  Branch (2881:13): [True: 6, False: 0]
  |  |  ------------------
  |  | 2882|      6|        }
  |  | 2883|       |
  |  | 2884|     24|        TARGET(CALL_FUNCTION_EX) {
  |  |  ------------------
  |  |  |  |  132|     24|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 2885|       |            #if _Py_TAIL_CALL_INTERP
  |  | 2886|       |            int opcode = CALL_FUNCTION_EX;
  |  | 2887|       |            (void)(opcode);
  |  | 2888|       |            #endif
  |  | 2889|     24|            frame->instr_ptr = next_instr;
  |  | 2890|     24|            next_instr += 2;
  |  | 2891|     24|            INSTRUCTION_STATS(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |   71|     24|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 2892|     24|            PREDICTED_CALL_FUNCTION_EX:;
  |  | 2893|     24|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  | 2894|     24|            (void)this_instr;
  |  | 2895|     24|            opcode = CALL_FUNCTION_EX;
  |  |  ------------------
  |  |  |  |   17|     24|#define CALL_FUNCTION_EX                         4
  |  |  ------------------
  |  | 2896|     24|            _PyStackRef func;
  |  | 2897|     24|            _PyStackRef callargs;
  |  | 2898|     24|            _PyStackRef func_st;
  |  | 2899|     24|            _PyStackRef null;
  |  | 2900|     24|            _PyStackRef callargs_st;
  |  | 2901|     24|            _PyStackRef kwargs_st;
  |  | 2902|     24|            _PyStackRef result;
  |  | 2903|       |            // _SPECIALIZE_CALL_FUNCTION_EX
  |  | 2904|     24|            {
  |  | 2905|     24|                func = stack_pointer[-4];
  |  | 2906|     24|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 2907|     24|                (void)counter;
  |  | 2908|     24|                #if ENABLE_SPECIALIZATION
  |  | 2909|     24|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|     24|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 8, False: 16]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2910|      8|                    next_instr = this_instr;
  |  | 2911|      8|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2912|      8|                    _Py_Specialize_CallFunctionEx(func, next_instr);
  |  | 2913|      8|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2914|      8|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|      8|    { \
  |  |  |  |  217|      8|        opcode = next_instr->op.code; \
  |  |  |  |  218|      8|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      8|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|      8|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|      8|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|      8|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|      8|    }
  |  |  ------------------
  |  | 2915|      8|                }
  |  | 2916|     24|                OPCODE_DEFERRED_INC(CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |   90|     24|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 2917|     24|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|     24|    do { \
  |  |  |  |  358|     24|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|     24|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 24]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2918|     24|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 2919|     24|            }
  |  | 2920|       |            // _MAKE_CALLARGS_A_TUPLE
  |  | 2921|     24|            {
  |  | 2922|     24|                callargs = stack_pointer[-2];
  |  | 2923|     24|                PyObject *callargs_o = PyStackRef_AsPyObjectBorrow(callargs);
  |  | 2924|     24|                if (!PyTuple_CheckExact(callargs_o)) {
  |  |  ------------------
  |  |  |  |   28|     24|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     24|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2924:21): [True: 2, False: 22]
  |  |  ------------------
  |  | 2925|      2|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2926|      2|                    int err = _Py_Check_ArgsIterable(tstate, PyStackRef_AsPyObjectBorrow(func), callargs_o);
  |  | 2927|      2|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2928|      2|                    if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (2928:25): [True: 0, False: 2]
  |  |  ------------------
  |  | 2929|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2930|      0|                    }
  |  | 2931|      2|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2932|      2|                    PyObject *tuple_o = PySequence_Tuple(callargs_o);
  |  | 2933|      2|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2934|      2|                    if (tuple_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2934:25): [True: 0, False: 2]
  |  |  ------------------
  |  | 2935|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2936|      0|                    }
  |  | 2937|      2|                    _PyStackRef temp = callargs;
  |  | 2938|      2|                    callargs = PyStackRef_FromPyObjectSteal(tuple_o);
  |  | 2939|      2|                    stack_pointer[-2] = callargs;
  |  | 2940|      2|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2941|      2|                    PyStackRef_CLOSE(temp);
  |  | 2942|      2|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2943|      2|                }
  |  | 2944|     24|            }
  |  | 2945|       |            // _DO_CALL_FUNCTION_EX
  |  | 2946|     24|            {
  |  | 2947|     24|                kwargs_st = stack_pointer[-1];
  |  | 2948|     24|                callargs_st = callargs;
  |  | 2949|     24|                null = stack_pointer[-3];
  |  | 2950|     24|                func_st = func;
  |  | 2951|     24|                (void)null;
  |  | 2952|     24|                PyObject *func = PyStackRef_AsPyObjectBorrow(func_st);
  |  | 2953|     24|                EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_FUNCTION_EX, func);
  |  |  ------------------
  |  |  |  |   80|     24|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  |  |  ------------------
  |  | 2954|     24|                PyObject *result_o;
  |  | 2955|     24|                assert(!_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (2955:17): [True: 16, False: 8]
  |  |  ------------------
  |  | 2956|     16|                if (opcode == INSTRUMENTED_CALL_FUNCTION_EX) {
  |  |  ------------------
  |  |  |  |  242|     16|#define INSTRUMENTED_CALL_FUNCTION_EX          251
  |  |  ------------------
  |  |  |  Branch (2956:21): [True: 0, False: 16]
  |  |  ------------------
  |  | 2957|      0|                    PyObject *callargs = PyStackRef_AsPyObjectBorrow(callargs_st);
  |  | 2958|      0|                    PyObject *kwargs = PyStackRef_AsPyObjectBorrow(kwargs_st);
  |  | 2959|      0|                    assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (2959:21): [True: 0, False: 0]
  |  |  |  Branch (2959:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2960|      0|                    assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (2960:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2961|      0|                    PyObject *arg = PyTuple_GET_SIZE(callargs) > 0 ?
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2961:37): [True: 0, False: 0]
  |  |  ------------------
  |  | 2962|      0|                    PyTuple_GET_ITEM(callargs, 0) : &_PyInstrumentation_MISSING;
  |  |  ------------------
  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2962:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 2963|      0|                    stack_pointer[-2] = callargs_st;
  |  | 2964|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2965|      0|                    int err = _Py_call_instrumentation_2args(
  |  | 2966|      0|                        tstate, PY_MONITORING_EVENT_CALL,
  |  |  ------------------
  |  |  |  |   18|      0|#define PY_MONITORING_EVENT_CALL 4
  |  |  ------------------
  |  | 2967|      0|                        frame, this_instr, func, arg);
  |  | 2968|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2969|      0|                    if (err) {
  |  |  ------------------
  |  |  |  Branch (2969:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 2970|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 2971|      0|                    }
  |  | 2972|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2973|      0|                    result_o = PyObject_Call(func, callargs, kwargs);
  |  | 2974|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2975|      0|                    if (!PyFunction_Check(func) && !PyMethod_Check(func)) {
  |  |  ------------------
  |  |  |  |   68|      0|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                                   if (!PyFunction_Check(func) && !PyMethod_Check(func)) {
  |  |  ------------------
  |  |  |  |   22|      0|#define PyMethod_Check(op) Py_IS_TYPE((op), &PyMethod_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2975:25): [True: 0, False: 0]
  |  |  |  Branch (2975:52): [True: 0, False: 0]
  |  |  ------------------
  |  | 2976|      0|                        if (result_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (2976:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 2977|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2978|      0|                            _Py_call_instrumentation_exc2(
  |  | 2979|      0|                                tstate, PY_MONITORING_EVENT_C_RAISE,
  |  |  ------------------
  |  |  |  |   45|      0|#define PY_MONITORING_EVENT_C_RAISE 17
  |  |  ------------------
  |  | 2980|      0|                                frame, this_instr, func, arg);
  |  | 2981|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2982|      0|                        }
  |  | 2983|      0|                        else {
  |  | 2984|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2985|      0|                            int err = _Py_call_instrumentation_2args(
  |  | 2986|      0|                                tstate, PY_MONITORING_EVENT_C_RETURN,
  |  |  ------------------
  |  |  |  |   44|      0|#define PY_MONITORING_EVENT_C_RETURN 16
  |  |  ------------------
  |  | 2987|      0|                                frame, this_instr, func, arg);
  |  | 2988|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2989|      0|                            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (2989:33): [True: 0, False: 0]
  |  |  ------------------
  |  | 2990|      0|                                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 2991|      0|                                Py_CLEAR(result_o);
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 2992|      0|                                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 2993|      0|                            }
  |  | 2994|      0|                        }
  |  | 2995|      0|                    }
  |  | 2996|      0|                }
  |  | 2997|     16|                else {
  |  | 2998|     16|                    if (Py_TYPE(func) == &PyFunction_Type &&
  |  |  ------------------
  |  |  |  |  213|     16|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (2998:25): [True: 8, False: 8]
  |  |  ------------------
  |  | 2999|      8|                        !IS_PEP523_HOOKED(tstate) &&
  |  |  ------------------
  |  |  |  |  517|     24|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  ------------------
  |  |  |  Branch (2999:25): [True: 8, False: 0]
  |  |  ------------------
  |  | 3000|      8|                        ((PyFunctionObject *)func)->vectorcall == _PyFunction_Vectorcall) {
  |  |  ------------------
  |  |  |  Branch (3000:25): [True: 8, False: 0]
  |  |  ------------------
  |  | 3001|      8|                        PyObject *callargs = PyStackRef_AsPyObjectSteal(callargs_st);
  |  | 3002|      8|                        assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (3002:25): [True: 8, False: 0]
  |  |  ------------------
  |  | 3003|      8|                        PyObject *kwargs = PyStackRef_IsNull(kwargs_st) ? NULL : PyStackRef_AsPyObjectSteal(kwargs_st);
  |  |  ------------------
  |  |  |  |  470|      8|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      8|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      8|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 6, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3004|      8|                        assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (3004:25): [True: 6, False: 2]
  |  |  |  Branch (3004:25): [True: 2, False: 0]
  |  |  ------------------
  |  | 3005|      8|                        Py_ssize_t nargs = PyTuple_GET_SIZE(callargs);
  |  |  ------------------
  |  |  |  |   27|      8|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3006|      8|                        int code_flags = ((PyCodeObject *)PyFunction_GET_CODE(func))->co_flags;
  |  |  ------------------
  |  |  |  |   93|      8|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3007|      8|                        PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(func));
  |  |  ------------------
  |  |  |  |  118|      8|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                                       PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(func));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3007:44): [True: 8, False: 0]
  |  |  ------------------
  |  | 3008|      8|                        stack_pointer += -2;
  |  | 3009|      8|                        ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3010|      8|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3011|      8|                        _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit_Ex(
  |  | 3012|      8|                            tstate, func_st, locals,
  |  | 3013|      8|                            nargs, callargs, kwargs, frame);
  |  | 3014|      8|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3015|      8|                        stack_pointer += -2;
  |  | 3016|      8|                        ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3017|      8|                        if (new_frame == NULL) {
  |  |  ------------------
  |  |  |  Branch (3017:29): [True: 0, False: 8]
  |  |  ------------------
  |  | 3018|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3019|      0|                        }
  |  | 3020|      8|                        assert( 2u == 1 + INLINE_CACHE_ENTRIES_CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  Branch (3020:25): [True: 8, Folded]
  |  |  ------------------
  |  | 3021|      8|                        frame->return_offset = 2u ;
  |  | 3022|      8|                        DISPATCH_INLINED(new_frame);
  |  |  ------------------
  |  |  |  |  223|      8|    do {                                                         \
  |  |  |  |  224|      8|        assert(!IS_PEP523_HOOKED(tstate));                       \
  |  |  |  |  225|      8|        _PyFrame_SetStackPointer(frame, stack_pointer);          \
  |  |  |  |  226|      8|        assert((NEW_FRAME)->previous == frame);                  \
  |  |  |  |  227|      8|        frame = tstate->current_frame = (NEW_FRAME);             \
  |  |  |  |  228|      8|        CALL_STAT_INC(inlined_py_calls);                         \
  |  |  |  |  ------------------
  |  |  |  |  |  |   76|      8|#define CALL_STAT_INC(name) ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  229|      8|        JUMP_TO_LABEL(start_frame);                              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      8|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  230|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (230:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3022:25): [True: 8, False: 0]
  |  |  |  Branch (3022:25): [True: 8, False: 0]
  |  |  ------------------
  |  | 3023|      8|                    }
  |  | 3024|      8|                    PyObject *callargs = PyStackRef_AsPyObjectBorrow(callargs_st);
  |  | 3025|      8|                    assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (3025:21): [True: 8, False: 0]
  |  |  ------------------
  |  | 3026|      8|                    PyObject *kwargs = PyStackRef_AsPyObjectBorrow(kwargs_st);
  |  | 3027|      8|                    assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (3027:21): [True: 4, False: 4]
  |  |  |  Branch (3027:21): [True: 4, False: 0]
  |  |  ------------------
  |  | 3028|      8|                    stack_pointer[-2] = callargs_st;
  |  | 3029|      8|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3030|      8|                    result_o = PyObject_Call(func, callargs, kwargs);
  |  | 3031|      8|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3032|      8|                }
  |  | 3033|      8|                stack_pointer += -1;
  |  | 3034|      8|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3035|      8|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3036|      8|                PyStackRef_XCLOSE(kwargs_st);
  |  | 3037|      8|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3038|      8|                stack_pointer += -1;
  |  | 3039|      8|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3040|      8|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3041|      8|                PyStackRef_CLOSE(callargs_st);
  |  | 3042|      8|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3043|      8|                stack_pointer += -2;
  |  | 3044|      8|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3045|      8|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3046|      8|                PyStackRef_CLOSE(func_st);
  |  | 3047|      8|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3048|      8|                if (result_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (3048:21): [True: 0, False: 8]
  |  |  ------------------
  |  | 3049|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3050|      0|                }
  |  | 3051|      8|                result = PyStackRef_FromPyObjectSteal(result_o);
  |  | 3052|      8|            }
  |  | 3053|       |            // _CHECK_PERIODIC_AT_END
  |  | 3054|      0|            {
  |  | 3055|      8|                stack_pointer[0] = result;
  |  | 3056|      8|                stack_pointer += 1;
  |  | 3057|      8|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3058|      8|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3059|      8|                int err = check_periodics(tstate);
  |  | 3060|      8|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3061|      8|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (3061:21): [True: 0, False: 8]
  |  |  ------------------
  |  | 3062|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3063|      0|                }
  |  | 3064|      8|            }
  |  | 3065|      8|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      8|    { \
  |  |  |  |  201|      8|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      8|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      8|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      8|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      8|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      8|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      8|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      8|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      8|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      8|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      8|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      8|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      8|    }
  |  |  ------------------
  |  |  |  Branch (3065:13): [True: 8, False: 0]
  |  |  ------------------
  |  | 3066|      8|        }
  |  | 3067|       |
  |  | 3068|     16|        TARGET(CALL_INTRINSIC_1) {
  |  |  ------------------
  |  |  |  |  132|     16|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3069|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3070|       |            int opcode = CALL_INTRINSIC_1;
  |  | 3071|       |            (void)(opcode);
  |  | 3072|       |            #endif
  |  | 3073|     16|            frame->instr_ptr = next_instr;
  |  | 3074|     16|            next_instr += 1;
  |  | 3075|     16|            INSTRUCTION_STATS(CALL_INTRINSIC_1);
  |  |  ------------------
  |  |  |  |   71|     16|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3076|     16|            _PyStackRef value;
  |  | 3077|     16|            _PyStackRef res;
  |  | 3078|     16|            _PyStackRef v;
  |  | 3079|       |            // _CALL_INTRINSIC_1
  |  | 3080|     16|            {
  |  | 3081|     16|                value = stack_pointer[-1];
  |  | 3082|     16|                assert(oparg <= MAX_INTRINSIC_1);
  |  |  ------------------
  |  |  |  Branch (3082:17): [True: 16, False: 0]
  |  |  ------------------
  |  | 3083|     16|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3084|     16|                PyObject *res_o = _PyIntrinsics_UnaryFunctions[oparg].func(tstate, PyStackRef_AsPyObjectBorrow(value));
  |  | 3085|     16|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3086|     16|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (3086:21): [True: 0, False: 16]
  |  |  ------------------
  |  | 3087|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3088|      0|                }
  |  | 3089|     16|                v = value;
  |  | 3090|     16|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 3091|     16|            }
  |  | 3092|       |            // _POP_TOP
  |  | 3093|      0|            {
  |  | 3094|     16|                value = v;
  |  | 3095|     16|                stack_pointer[-1] = res;
  |  | 3096|     16|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3097|     16|                PyStackRef_XCLOSE(value);
  |  | 3098|     16|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3099|     16|            }
  |  | 3100|     16|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     16|    { \
  |  |  |  |  201|     16|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     16|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     16|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     16|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     16|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     16|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     16|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     16|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 16]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     16|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     16|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     16|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     16|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     16|    }
  |  |  ------------------
  |  |  |  Branch (3100:13): [True: 16, False: 0]
  |  |  ------------------
  |  | 3101|     16|        }
  |  | 3102|       |
  |  | 3103|      0|        TARGET(CALL_INTRINSIC_2) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3104|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3105|       |            int opcode = CALL_INTRINSIC_2;
  |  | 3106|       |            (void)(opcode);
  |  | 3107|       |            #endif
  |  | 3108|      0|            frame->instr_ptr = next_instr;
  |  | 3109|      0|            next_instr += 1;
  |  | 3110|      0|            INSTRUCTION_STATS(CALL_INTRINSIC_2);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3111|      0|            _PyStackRef value2_st;
  |  | 3112|      0|            _PyStackRef value1_st;
  |  | 3113|      0|            _PyStackRef res;
  |  | 3114|      0|            _PyStackRef vs1;
  |  | 3115|      0|            _PyStackRef vs2;
  |  | 3116|      0|            _PyStackRef value;
  |  | 3117|       |            // _CALL_INTRINSIC_2
  |  | 3118|      0|            {
  |  | 3119|      0|                value1_st = stack_pointer[-1];
  |  | 3120|      0|                value2_st = stack_pointer[-2];
  |  | 3121|      0|                assert(oparg <= MAX_INTRINSIC_2);
  |  |  ------------------
  |  |  |  Branch (3121:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3122|      0|                PyObject *value1 = PyStackRef_AsPyObjectBorrow(value1_st);
  |  | 3123|      0|                PyObject *value2 = PyStackRef_AsPyObjectBorrow(value2_st);
  |  | 3124|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3125|      0|                PyObject *res_o = _PyIntrinsics_BinaryFunctions[oparg].func(tstate, value2, value1);
  |  | 3126|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3127|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (3127:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3128|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3129|      0|                }
  |  | 3130|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 3131|      0|                vs1 = value1_st;
  |  | 3132|      0|                vs2 = value2_st;
  |  | 3133|      0|            }
  |  | 3134|       |            // _POP_TOP
  |  | 3135|      0|            {
  |  | 3136|      0|                value = vs2;
  |  | 3137|      0|                stack_pointer[-2] = res;
  |  | 3138|      0|                stack_pointer[-1] = vs1;
  |  | 3139|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3140|      0|                PyStackRef_XCLOSE(value);
  |  | 3141|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3142|      0|            }
  |  | 3143|       |            // _POP_TOP
  |  | 3144|      0|            {
  |  | 3145|      0|                value = vs1;
  |  | 3146|      0|                stack_pointer += -1;
  |  | 3147|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3148|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3149|      0|                PyStackRef_XCLOSE(value);
  |  | 3150|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3151|      0|            }
  |  | 3152|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (3152:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 3153|      0|        }
  |  | 3154|       |
  |  | 3155|     72|        TARGET(CALL_ISINSTANCE) {
  |  |  ------------------
  |  |  |  |  132|     72|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3156|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3157|       |            int opcode = CALL_ISINSTANCE;
  |  | 3158|       |            (void)(opcode);
  |  | 3159|       |            #endif
  |  | 3160|     72|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3161|     72|            (void)this_instr;
  |  | 3162|     72|            frame->instr_ptr = next_instr;
  |  | 3163|     72|            next_instr += 4;
  |  | 3164|     72|            INSTRUCTION_STATS(CALL_ISINSTANCE);
  |  |  ------------------
  |  |  |  |   71|     72|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3165|     72|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 3166|     72|            _PyStackRef null;
  |  | 3167|     72|            _PyStackRef callable;
  |  | 3168|     72|            _PyStackRef instance;
  |  | 3169|     72|            _PyStackRef cls;
  |  | 3170|     72|            _PyStackRef res;
  |  | 3171|       |            /* Skip 1 cache entry */
  |  | 3172|       |            /* Skip 2 cache entries */
  |  | 3173|       |            // _GUARD_THIRD_NULL
  |  | 3174|     72|            {
  |  | 3175|     72|                null = stack_pointer[-3];
  |  | 3176|     72|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|     72|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     72|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     72|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3176:21): [True: 0, False: 72]
  |  |  ------------------
  |  | 3177|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3178|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3178:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3179|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3180|      0|                }
  |  | 3181|     72|            }
  |  | 3182|       |            // _GUARD_CALLABLE_ISINSTANCE
  |  | 3183|     72|            {
  |  | 3184|     72|                callable = stack_pointer[-4];
  |  | 3185|     72|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3186|     72|                PyInterpreterState *interp = tstate->interp;
  |  | 3187|     72|                if (callable_o != interp->callable_cache.isinstance) {
  |  |  ------------------
  |  |  |  Branch (3187:21): [True: 0, False: 72]
  |  |  ------------------
  |  | 3188|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3189|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3189:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3190|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3191|      0|                }
  |  | 3192|     72|            }
  |  | 3193|       |            // _CALL_ISINSTANCE
  |  | 3194|     72|            {
  |  | 3195|     72|                cls = stack_pointer[-1];
  |  | 3196|     72|                instance = stack_pointer[-2];
  |  | 3197|     72|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|     72|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 3198|     72|                PyObject *inst_o = PyStackRef_AsPyObjectBorrow(instance);
  |  | 3199|     72|                PyObject *cls_o = PyStackRef_AsPyObjectBorrow(cls);
  |  | 3200|     72|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3201|     72|                int retval = PyObject_IsInstance(inst_o, cls_o);
  |  | 3202|     72|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3203|     72|                if (retval < 0) {
  |  |  ------------------
  |  |  |  Branch (3203:21): [True: 0, False: 72]
  |  |  ------------------
  |  | 3204|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3205|      0|                }
  |  | 3206|     72|                (void)null;
  |  | 3207|     72|                stack_pointer += -1;
  |  | 3208|     72|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     72|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3209|     72|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3210|     72|                PyStackRef_CLOSE(cls);
  |  | 3211|     72|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3212|     72|                stack_pointer += -1;
  |  | 3213|     72|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     72|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3214|     72|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3215|     72|                PyStackRef_CLOSE(instance);
  |  | 3216|     72|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3217|     72|                stack_pointer += -2;
  |  | 3218|     72|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     72|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3219|     72|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3220|     72|                PyStackRef_CLOSE(callable);
  |  | 3221|     72|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3222|     72|                res = retval ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|     30|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     30|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = retval ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    114|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     42|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3222:23): [True: 30, False: 42]
  |  |  ------------------
  |  | 3223|     72|                assert((!PyStackRef_IsNull(res)) ^ (_PyErr_Occurred(tstate) != NULL));
  |  |  ------------------
  |  |  |  Branch (3223:17): [True: 72, False: 0]
  |  |  ------------------
  |  | 3224|     72|            }
  |  | 3225|     72|            stack_pointer[0] = res;
  |  | 3226|     72|            stack_pointer += 1;
  |  | 3227|     72|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     72|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3228|     72|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     72|    { \
  |  |  |  |  201|     72|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     72|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     72|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     72|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     72|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     72|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     72|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     72|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 72]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     72|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     72|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     72|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     72|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     72|    }
  |  |  ------------------
  |  |  |  Branch (3228:13): [True: 72, False: 0]
  |  |  ------------------
  |  | 3229|     72|        }
  |  | 3230|       |
  |  | 3231|     66|        TARGET(CALL_KW) {
  |  |  ------------------
  |  |  |  |  132|     66|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3232|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3233|       |            int opcode = CALL_KW;
  |  | 3234|       |            (void)(opcode);
  |  | 3235|       |            #endif
  |  | 3236|     66|            frame->instr_ptr = next_instr;
  |  | 3237|     66|            next_instr += 4;
  |  | 3238|     66|            INSTRUCTION_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |   71|     66|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3239|     66|            PREDICTED_CALL_KW:;
  |  | 3240|     66|            _Py_CODEUNIT* const this_instr = next_instr - 4;
  |  | 3241|     66|            (void)this_instr;
  |  | 3242|     66|            opcode = CALL_KW;
  |  |  ------------------
  |  |  |  |   66|     66|#define CALL_KW                                 53
  |  |  ------------------
  |  | 3243|     66|            _PyStackRef callable;
  |  | 3244|     66|            _PyStackRef self_or_null;
  |  | 3245|     66|            _PyStackRef *args;
  |  | 3246|     66|            _PyStackRef kwnames;
  |  | 3247|     66|            _PyStackRef res;
  |  | 3248|       |            // _SPECIALIZE_CALL_KW
  |  | 3249|     66|            {
  |  | 3250|     66|                self_or_null = stack_pointer[-2 - oparg];
  |  | 3251|     66|                callable = stack_pointer[-3 - oparg];
  |  | 3252|     66|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 3253|     66|                (void)counter;
  |  | 3254|     66|                #if ENABLE_SPECIALIZATION
  |  | 3255|     66|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|     66|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 16, False: 50]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3256|     16|                    next_instr = this_instr;
  |  | 3257|     16|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3258|     16|                    _Py_Specialize_CallKw(callable, next_instr, oparg + !PyStackRef_IsNull(self_or_null));
  |  |  ------------------
  |  |  |  |  470|     16|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     16|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     16|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3259|     16|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3260|     16|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     16|    { \
  |  |  |  |  217|     16|        opcode = next_instr->op.code; \
  |  |  |  |  218|     16|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     16|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     16|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     16|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     16|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     16|    }
  |  |  ------------------
  |  | 3261|     16|                }
  |  | 3262|     66|                OPCODE_DEFERRED_INC(CALL_KW);
  |  |  ------------------
  |  |  |  |   90|     66|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 3263|     66|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|     66|    do { \
  |  |  |  |  358|     66|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|     66|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 66]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3264|     66|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 3265|     66|            }
  |  | 3266|       |            /* Skip 2 cache entries */
  |  | 3267|       |            // _MAYBE_EXPAND_METHOD_KW
  |  | 3268|     66|            {
  |  | 3269|     66|                if (PyStackRef_TYPE(callable) == &PyMethod_Type && PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3269:21): [True: 0, False: 66]
  |  |  ------------------
  |  | 3270|      0|                    PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3271|      0|                    PyObject *self = ((PyMethodObject *)callable_o)->im_self;
  |  | 3272|      0|                    self_or_null = PyStackRef_FromPyObjectNew(self);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3273|      0|                    PyObject *method = ((PyMethodObject *)callable_o)->im_func;
  |  | 3274|      0|                    _PyStackRef temp = callable;
  |  | 3275|      0|                    callable = PyStackRef_FromPyObjectNew(method);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3276|      0|                    stack_pointer[-3 - oparg] = callable;
  |  | 3277|      0|                    stack_pointer[-2 - oparg] = self_or_null;
  |  | 3278|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3279|      0|                    PyStackRef_CLOSE(temp);
  |  | 3280|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3281|      0|                }
  |  | 3282|     66|            }
  |  | 3283|       |            // _DO_CALL_KW
  |  | 3284|     66|            {
  |  | 3285|     66|                kwnames = stack_pointer[-1];
  |  | 3286|     66|                args = &stack_pointer[-1 - oparg];
  |  | 3287|     66|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3288|     66|                PyObject *kwnames_o = PyStackRef_AsPyObjectBorrow(kwnames);
  |  | 3289|     66|                int total_args = oparg;
  |  | 3290|     66|                _PyStackRef *arguments = args;
  |  | 3291|     66|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|     66|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     66|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     66|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3291:21): [True: 0, False: 66]
  |  |  ------------------
  |  | 3292|      0|                    arguments--;
  |  | 3293|      0|                    total_args++;
  |  | 3294|      0|                }
  |  | 3295|     66|                int positional_args = total_args - (int)PyTuple_GET_SIZE(kwnames_o);
  |  |  ------------------
  |  |  |  |   27|     66|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3296|     66|                if (Py_TYPE(callable_o) == &PyFunction_Type &&
  |  |  ------------------
  |  |  |  |  213|     66|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3296:21): [True: 12, False: 54]
  |  |  ------------------
  |  | 3297|     12|                    !IS_PEP523_HOOKED(tstate) &&
  |  |  ------------------
  |  |  |  |  517|     78|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  ------------------
  |  |  |  Branch (3297:21): [True: 12, False: 0]
  |  |  ------------------
  |  | 3298|     12|                    ((PyFunctionObject *)callable_o)->vectorcall == _PyFunction_Vectorcall)
  |  |  ------------------
  |  |  |  Branch (3298:21): [True: 12, False: 0]
  |  |  ------------------
  |  | 3299|     12|                {
  |  | 3300|     12|                    int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|     12|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3301|     12|                    PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|     12|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                                   PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3301:40): [True: 12, False: 0]
  |  |  ------------------
  |  | 3302|     12|                    stack_pointer[-3 - oparg] = callable;
  |  | 3303|     12|                    stack_pointer[-2 - oparg] = self_or_null;
  |  | 3304|     12|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3305|     12|                    _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit(
  |  | 3306|     12|                        tstate, callable, locals,
  |  | 3307|     12|                        arguments, positional_args, kwnames_o, frame
  |  | 3308|     12|                    );
  |  | 3309|     12|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3310|     12|                    stack_pointer += -3 - oparg;
  |  | 3311|     12|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     12|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3312|     12|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3313|     12|                    PyStackRef_CLOSE(kwnames);
  |  | 3314|     12|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3315|     12|                    if (new_frame == NULL) {
  |  |  ------------------
  |  |  |  Branch (3315:25): [True: 0, False: 12]
  |  |  ------------------
  |  | 3316|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3317|      0|                    }
  |  | 3318|     12|                    assert( 4u == 1 + INLINE_CACHE_ENTRIES_CALL_KW);
  |  |  ------------------
  |  |  |  Branch (3318:21): [True: 12, Folded]
  |  |  ------------------
  |  | 3319|     12|                    frame->return_offset = 4u ;
  |  | 3320|     12|                    DISPATCH_INLINED(new_frame);
  |  |  ------------------
  |  |  |  |  223|     12|    do {                                                         \
  |  |  |  |  224|     12|        assert(!IS_PEP523_HOOKED(tstate));                       \
  |  |  |  |  225|     12|        _PyFrame_SetStackPointer(frame, stack_pointer);          \
  |  |  |  |  226|     12|        assert((NEW_FRAME)->previous == frame);                  \
  |  |  |  |  227|     12|        frame = tstate->current_frame = (NEW_FRAME);             \
  |  |  |  |  228|     12|        CALL_STAT_INC(inlined_py_calls);                         \
  |  |  |  |  ------------------
  |  |  |  |  |  |   76|     12|#define CALL_STAT_INC(name) ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  229|     12|        JUMP_TO_LABEL(start_frame);                              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|     12|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  230|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (230:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3320:21): [True: 12, False: 0]
  |  |  |  Branch (3320:21): [True: 12, False: 0]
  |  |  ------------------
  |  | 3321|     12|                }
  |  | 3322|     54|                stack_pointer[-3 - oparg] = callable;
  |  | 3323|     54|                stack_pointer[-2 - oparg] = self_or_null;
  |  | 3324|     54|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3325|     54|                PyObject* res_o = _Py_VectorCallInstrumentation_StackRefSteal(
  |  | 3326|     54|                    callable,
  |  | 3327|     54|                    arguments,
  |  | 3328|     54|                    total_args,
  |  | 3329|     54|                    kwnames,
  |  | 3330|     54|                    opcode == INSTRUMENTED_CALL_KW,
  |  |  ------------------
  |  |  |  |  241|     54|#define INSTRUMENTED_CALL_KW                   250
  |  |  ------------------
  |  | 3331|     54|                    frame,
  |  | 3332|     54|                    this_instr,
  |  | 3333|     54|                    tstate);
  |  | 3334|     54|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3335|     54|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (3335:21): [True: 0, False: 54]
  |  |  ------------------
  |  | 3336|      0|                    stack_pointer += -3 - oparg;
  |  | 3337|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3338|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3339|      0|                }
  |  | 3340|     54|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 3341|     54|            }
  |  | 3342|      0|            stack_pointer[-3 - oparg] = res;
  |  | 3343|     54|            stack_pointer += -2 - oparg;
  |  | 3344|     54|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     54|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3345|     54|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     54|    { \
  |  |  |  |  201|     54|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     54|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     38|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     38|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     38|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     38|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     38|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     38|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 38]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     38|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     38|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     38|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     38|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     38|    }
  |  |  ------------------
  |  |  |  Branch (3345:13): [True: 38, False: 16]
  |  |  ------------------
  |  | 3346|     38|        }
  |  | 3347|       |
  |  | 3348|      0|        TARGET(CALL_KW_BOUND_METHOD) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3349|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3350|       |            int opcode = CALL_KW_BOUND_METHOD;
  |  | 3351|       |            (void)(opcode);
  |  | 3352|       |            #endif
  |  | 3353|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3354|      0|            (void)this_instr;
  |  | 3355|      0|            frame->instr_ptr = next_instr;
  |  | 3356|      0|            next_instr += 4;
  |  | 3357|      0|            INSTRUCTION_STATS(CALL_KW_BOUND_METHOD);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3358|      0|            static_assert(INLINE_CACHE_ENTRIES_CALL_KW == 3, "incorrect cache size");
  |  | 3359|      0|            _PyStackRef callable;
  |  | 3360|      0|            _PyStackRef null;
  |  | 3361|      0|            _PyStackRef self_or_null;
  |  | 3362|      0|            _PyStackRef *args;
  |  | 3363|      0|            _PyStackRef kwnames;
  |  | 3364|      0|            _PyStackRef new_frame;
  |  | 3365|       |            /* Skip 1 cache entry */
  |  | 3366|       |            // _CHECK_PEP_523
  |  | 3367|      0|            {
  |  | 3368|      0|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3369|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3370|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3370:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3371|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3372|      0|                }
  |  | 3373|      0|            }
  |  | 3374|       |            // _CHECK_METHOD_VERSION_KW
  |  | 3375|      0|            {
  |  | 3376|      0|                null = stack_pointer[-2 - oparg];
  |  | 3377|      0|                callable = stack_pointer[-3 - oparg];
  |  | 3378|      0|                uint32_t func_version = read_u32(&this_instr[2].cache);
  |  | 3379|      0|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3380|      0|                if (Py_TYPE(callable_o) != &PyMethod_Type) {
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3380:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3381|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3382|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3382:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3383|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3384|      0|                }
  |  | 3385|      0|                PyObject *func = ((PyMethodObject *)callable_o)->im_func;
  |  | 3386|      0|                if (!PyFunction_Check(func)) {
  |  |  ------------------
  |  |  |  |   68|      0|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3386:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3387|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3388|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3388:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3389|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3390|      0|                }
  |  | 3391|      0|                if (((PyFunctionObject *)func)->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (3391:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3392|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3393|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3393:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3394|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3395|      0|                }
  |  | 3396|      0|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3396:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3397|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3398|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3398:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3399|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3400|      0|                }
  |  | 3401|      0|            }
  |  | 3402|       |            // _EXPAND_METHOD_KW
  |  | 3403|      0|            {
  |  | 3404|      0|                self_or_null = null;
  |  | 3405|      0|                assert(PyStackRef_IsNull(self_or_null));
  |  |  ------------------
  |  |  |  Branch (3405:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3406|      0|                _PyStackRef callable_s = callable;
  |  | 3407|      0|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3408|      0|                assert(Py_TYPE(callable_o) == &PyMethod_Type);
  |  |  ------------------
  |  |  |  Branch (3408:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3409|      0|                self_or_null = PyStackRef_FromPyObjectNew(((PyMethodObject *)callable_o)->im_self);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3410|      0|                callable = PyStackRef_FromPyObjectNew(((PyMethodObject *)callable_o)->im_func);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3411|      0|                assert(PyStackRef_FunctionCheck(callable));
  |  |  ------------------
  |  |  |  Branch (3411:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3412|      0|                stack_pointer[-3 - oparg] = callable;
  |  | 3413|      0|                stack_pointer[-2 - oparg] = self_or_null;
  |  | 3414|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3415|      0|                PyStackRef_CLOSE(callable_s);
  |  | 3416|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3417|      0|            }
  |  | 3418|       |            // flush
  |  | 3419|       |            // _PY_FRAME_KW
  |  | 3420|      0|            {
  |  | 3421|      0|                kwnames = stack_pointer[-1];
  |  | 3422|      0|                args = &stack_pointer[-1 - oparg];
  |  | 3423|      0|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3424|      0|                int total_args = oparg;
  |  | 3425|      0|                _PyStackRef *arguments = args;
  |  | 3426|      0|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3426:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3427|      0|                    arguments--;
  |  | 3428|      0|                    total_args++;
  |  | 3429|      0|                }
  |  | 3430|      0|                PyObject *kwnames_o = PyStackRef_AsPyObjectBorrow(kwnames);
  |  | 3431|      0|                int positional_args = total_args - (int)PyTuple_GET_SIZE(kwnames_o);
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3432|      0|                assert(Py_TYPE(callable_o) == &PyFunction_Type);
  |  |  ------------------
  |  |  |  Branch (3432:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3433|      0|                int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|      0|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3434|      0|                PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|      0|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                               PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3434:36): [True: 0, False: 0]
  |  |  ------------------
  |  | 3435|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3436|      0|                _PyInterpreterFrame *temp = _PyEvalFramePushAndInit(
  |  | 3437|      0|                    tstate, callable, locals,
  |  | 3438|      0|                    arguments, positional_args, kwnames_o, frame
  |  | 3439|      0|                );
  |  | 3440|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3441|      0|                stack_pointer += -1;
  |  | 3442|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3443|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3444|      0|                PyStackRef_CLOSE(kwnames);
  |  | 3445|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3446|      0|                stack_pointer += -2 - oparg;
  |  | 3447|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3448|      0|                if (temp == NULL) {
  |  |  ------------------
  |  |  |  Branch (3448:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3449|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3450|      0|                }
  |  | 3451|      0|                new_frame = PyStackRef_Wrap(temp);
  |  | 3452|      0|            }
  |  | 3453|       |            // _SAVE_RETURN_OFFSET
  |  | 3454|      0|            {
  |  | 3455|      0|                #if TIER_ONE
  |  | 3456|      0|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 3457|      0|                #endif
  |  | 3458|       |                #if TIER_TWO
  |  | 3459|       |                frame->return_offset = oparg;
  |  | 3460|       |                #endif
  |  | 3461|      0|            }
  |  | 3462|       |            // _PUSH_FRAME
  |  | 3463|      0|            {
  |  | 3464|      0|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (3464:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3465|      0|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 3466|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3467|      0|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (3467:17): [True: 0, False: 0]
  |  |  |  Branch (3467:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3468|      0|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 3469|      0|                frame = tstate->current_frame = temp;
  |  | 3470|      0|                tstate->py_recursion_remaining--;
  |  | 3471|      0|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|      0|#define LOAD_SP() \
  |  |  |  |  426|      0|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 3472|      0|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|      0|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      0|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3473|      0|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|      0|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 3474|      0|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      0|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 3475|      0|            }
  |  | 3476|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (3476:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 3477|      0|        }
  |  | 3478|       |
  |  | 3479|     88|        TARGET(CALL_KW_NON_PY) {
  |  |  ------------------
  |  |  |  |  132|     88|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3480|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3481|       |            int opcode = CALL_KW_NON_PY;
  |  | 3482|       |            (void)(opcode);
  |  | 3483|       |            #endif
  |  | 3484|     88|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3485|     88|            (void)this_instr;
  |  | 3486|     88|            frame->instr_ptr = next_instr;
  |  | 3487|     88|            next_instr += 4;
  |  | 3488|     88|            INSTRUCTION_STATS(CALL_KW_NON_PY);
  |  |  ------------------
  |  |  |  |   71|     88|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3489|     88|            opcode = CALL_KW_NON_PY;
  |  |  ------------------
  |  |  |  |  160|     88|#define CALL_KW_NON_PY                         155
  |  |  ------------------
  |  | 3490|     88|            static_assert(INLINE_CACHE_ENTRIES_CALL_KW == 3, "incorrect cache size");
  |  | 3491|     88|            _PyStackRef callable;
  |  | 3492|     88|            _PyStackRef self_or_null;
  |  | 3493|     88|            _PyStackRef *args;
  |  | 3494|     88|            _PyStackRef kwnames;
  |  | 3495|     88|            _PyStackRef res;
  |  | 3496|       |            /* Skip 1 cache entry */
  |  | 3497|       |            /* Skip 2 cache entries */
  |  | 3498|       |            // _CHECK_IS_NOT_PY_CALLABLE_KW
  |  | 3499|     88|            {
  |  | 3500|     88|                callable = stack_pointer[-3 - oparg];
  |  | 3501|     88|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3502|     88|                if (PyFunction_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |   68|     88|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     88|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     88|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     88|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 88]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3503|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3504|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3504:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3505|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3506|      0|                }
  |  | 3507|     88|                if (Py_TYPE(callable_o) == &PyMethod_Type) {
  |  |  ------------------
  |  |  |  |  213|     88|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     88|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     88|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3507:21): [True: 0, False: 88]
  |  |  ------------------
  |  | 3508|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3509|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3509:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3510|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3511|      0|                }
  |  | 3512|     88|            }
  |  | 3513|       |            // _CALL_KW_NON_PY
  |  | 3514|     88|            {
  |  | 3515|     88|                kwnames = stack_pointer[-1];
  |  | 3516|     88|                args = &stack_pointer[-1 - oparg];
  |  | 3517|     88|                self_or_null = stack_pointer[-2 - oparg];
  |  | 3518|     88|                #if TIER_ONE
  |  | 3519|     88|                assert(opcode != INSTRUMENTED_CALL);
  |  |  ------------------
  |  |  |  Branch (3519:17): [True: 88, False: 0]
  |  |  ------------------
  |  | 3520|     88|                #endif
  |  | 3521|     88|                int total_args = oparg;
  |  | 3522|     88|                _PyStackRef *arguments = args;
  |  | 3523|     88|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|     88|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     88|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     88|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3523:21): [True: 0, False: 88]
  |  |  ------------------
  |  | 3524|      0|                    arguments--;
  |  | 3525|      0|                    total_args++;
  |  | 3526|      0|                }
  |  | 3527|     88|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3528|     88|                PyObject *res_o = _Py_VectorCall_StackRefSteal(
  |  | 3529|     88|                    callable,
  |  | 3530|     88|                    arguments,
  |  | 3531|     88|                    total_args,
  |  | 3532|     88|                    kwnames);
  |  | 3533|     88|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3534|     88|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (3534:21): [True: 0, False: 88]
  |  |  ------------------
  |  | 3535|      0|                    stack_pointer += -3 - oparg;
  |  | 3536|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3537|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3538|      0|                }
  |  | 3539|     88|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 3540|     88|            }
  |  | 3541|       |            // _CHECK_PERIODIC_AT_END
  |  | 3542|      0|            {
  |  | 3543|     88|                stack_pointer[-3 - oparg] = res;
  |  | 3544|     88|                stack_pointer += -2 - oparg;
  |  | 3545|     88|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     88|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3546|     88|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3547|     88|                int err = check_periodics(tstate);
  |  | 3548|     88|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3549|     88|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (3549:21): [True: 0, False: 88]
  |  |  ------------------
  |  | 3550|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3551|      0|                }
  |  | 3552|     88|            }
  |  | 3553|     88|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     88|    { \
  |  |  |  |  201|     88|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     88|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     88|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     88|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     88|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     88|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     88|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     88|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 88]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     88|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     88|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     88|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     88|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     88|    }
  |  |  ------------------
  |  |  |  Branch (3553:13): [True: 88, False: 0]
  |  |  ------------------
  |  | 3554|     88|        }
  |  | 3555|       |
  |  | 3556|    116|        TARGET(CALL_KW_PY) {
  |  |  ------------------
  |  |  |  |  132|    116|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3557|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3558|       |            int opcode = CALL_KW_PY;
  |  | 3559|       |            (void)(opcode);
  |  | 3560|       |            #endif
  |  | 3561|    116|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3562|    116|            (void)this_instr;
  |  | 3563|    116|            frame->instr_ptr = next_instr;
  |  | 3564|    116|            next_instr += 4;
  |  | 3565|    116|            INSTRUCTION_STATS(CALL_KW_PY);
  |  |  ------------------
  |  |  |  |   71|    116|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3566|    116|            static_assert(INLINE_CACHE_ENTRIES_CALL_KW == 3, "incorrect cache size");
  |  | 3567|    116|            _PyStackRef callable;
  |  | 3568|    116|            _PyStackRef self_or_null;
  |  | 3569|    116|            _PyStackRef *args;
  |  | 3570|    116|            _PyStackRef kwnames;
  |  | 3571|    116|            _PyStackRef new_frame;
  |  | 3572|       |            /* Skip 1 cache entry */
  |  | 3573|       |            // _CHECK_PEP_523
  |  | 3574|    116|            {
  |  | 3575|    116|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|    116|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 116]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3576|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3577|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3577:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3578|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3579|      0|                }
  |  | 3580|    116|            }
  |  | 3581|       |            // _CHECK_FUNCTION_VERSION_KW
  |  | 3582|    116|            {
  |  | 3583|    116|                callable = stack_pointer[-3 - oparg];
  |  | 3584|    116|                uint32_t func_version = read_u32(&this_instr[2].cache);
  |  | 3585|    116|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3586|    116|                if (!PyFunction_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |   68|    116|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    116|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3586:21): [True: 0, False: 116]
  |  |  ------------------
  |  | 3587|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3588|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3588:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3589|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3590|      0|                }
  |  | 3591|    116|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 3592|    116|                if (func->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (3592:21): [True: 0, False: 116]
  |  |  ------------------
  |  | 3593|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3594|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3594:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3595|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3596|      0|                }
  |  | 3597|    116|            }
  |  | 3598|       |            // _CHECK_RECURSION_REMAINING
  |  | 3599|    116|            {
  |  | 3600|    116|                if (tstate->py_recursion_remaining <= 1) {
  |  |  ------------------
  |  |  |  Branch (3600:21): [True: 0, False: 116]
  |  |  ------------------
  |  | 3601|      0|                    UPDATE_MISS_STATS(CALL_KW);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3602|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL_KW));
  |  |  ------------------
  |  |  |  Branch (3602:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3603|      0|                    JUMP_TO_PREDICTED(CALL_KW);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3604|      0|                }
  |  | 3605|    116|            }
  |  | 3606|       |            // _PY_FRAME_KW
  |  | 3607|    116|            {
  |  | 3608|    116|                kwnames = stack_pointer[-1];
  |  | 3609|    116|                args = &stack_pointer[-1 - oparg];
  |  | 3610|    116|                self_or_null = stack_pointer[-2 - oparg];
  |  | 3611|    116|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3612|    116|                int total_args = oparg;
  |  | 3613|    116|                _PyStackRef *arguments = args;
  |  | 3614|    116|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    116|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    116|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    116|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3614:21): [True: 0, False: 116]
  |  |  ------------------
  |  | 3615|      0|                    arguments--;
  |  | 3616|      0|                    total_args++;
  |  | 3617|      0|                }
  |  | 3618|    116|                PyObject *kwnames_o = PyStackRef_AsPyObjectBorrow(kwnames);
  |  | 3619|    116|                int positional_args = total_args - (int)PyTuple_GET_SIZE(kwnames_o);
  |  |  ------------------
  |  |  |  |   27|    116|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3620|    116|                assert(Py_TYPE(callable_o) == &PyFunction_Type);
  |  |  ------------------
  |  |  |  Branch (3620:17): [True: 116, False: 0]
  |  |  ------------------
  |  | 3621|    116|                int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|    116|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3622|    116|                PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|    116|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                               PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3622:36): [True: 116, False: 0]
  |  |  ------------------
  |  | 3623|    116|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3624|    116|                _PyInterpreterFrame *temp = _PyEvalFramePushAndInit(
  |  | 3625|    116|                    tstate, callable, locals,
  |  | 3626|    116|                    arguments, positional_args, kwnames_o, frame
  |  | 3627|    116|                );
  |  | 3628|    116|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3629|    116|                stack_pointer += -1;
  |  | 3630|    116|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    116|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3631|    116|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3632|    116|                PyStackRef_CLOSE(kwnames);
  |  | 3633|    116|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3634|    116|                stack_pointer += -2 - oparg;
  |  | 3635|    116|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    116|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3636|    116|                if (temp == NULL) {
  |  |  ------------------
  |  |  |  Branch (3636:21): [True: 0, False: 116]
  |  |  ------------------
  |  | 3637|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3638|      0|                }
  |  | 3639|    116|                new_frame = PyStackRef_Wrap(temp);
  |  | 3640|    116|            }
  |  | 3641|       |            // _SAVE_RETURN_OFFSET
  |  | 3642|      0|            {
  |  | 3643|    116|                #if TIER_ONE
  |  | 3644|    116|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 3645|    116|                #endif
  |  | 3646|       |                #if TIER_TWO
  |  | 3647|       |                frame->return_offset = oparg;
  |  | 3648|       |                #endif
  |  | 3649|    116|            }
  |  | 3650|       |            // _PUSH_FRAME
  |  | 3651|    116|            {
  |  | 3652|    116|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (3652:17): [True: 116, False: 0]
  |  |  ------------------
  |  | 3653|    116|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 3654|    116|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3655|    116|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (3655:17): [True: 116, False: 0]
  |  |  |  Branch (3655:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3656|    116|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|    116|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 3657|    116|                frame = tstate->current_frame = temp;
  |  | 3658|    116|                tstate->py_recursion_remaining--;
  |  | 3659|    116|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|    116|#define LOAD_SP() \
  |  |  |  |  426|    116|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 3660|    116|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|    116|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|    116|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|    116|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 116]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3661|    116|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|    116|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 3662|    116|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|    116|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 3663|    116|            }
  |  | 3664|    116|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    116|    { \
  |  |  |  |  201|    116|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    116|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    116|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    116|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    116|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    116|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    116|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    116|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 116]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    116|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    116|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    116|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    116|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    116|    }
  |  |  ------------------
  |  |  |  Branch (3664:13): [True: 116, False: 0]
  |  |  ------------------
  |  | 3665|    116|        }
  |  | 3666|       |
  |  | 3667|    166|        TARGET(CALL_LEN) {
  |  |  ------------------
  |  |  |  |  132|    166|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3668|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3669|       |            int opcode = CALL_LEN;
  |  | 3670|       |            (void)(opcode);
  |  | 3671|       |            #endif
  |  | 3672|    166|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3673|    166|            (void)this_instr;
  |  | 3674|    166|            frame->instr_ptr = next_instr;
  |  | 3675|    166|            next_instr += 4;
  |  | 3676|    166|            INSTRUCTION_STATS(CALL_LEN);
  |  |  ------------------
  |  |  |  |   71|    166|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3677|    166|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 3678|    166|            _PyStackRef null;
  |  | 3679|    166|            _PyStackRef callable;
  |  | 3680|    166|            _PyStackRef arg;
  |  | 3681|    166|            _PyStackRef res;
  |  | 3682|    166|            _PyStackRef a;
  |  | 3683|    166|            _PyStackRef c;
  |  | 3684|    166|            _PyStackRef value;
  |  | 3685|       |            /* Skip 1 cache entry */
  |  | 3686|       |            /* Skip 2 cache entries */
  |  | 3687|       |            // _GUARD_NOS_NULL
  |  | 3688|    166|            {
  |  | 3689|    166|                null = stack_pointer[-2];
  |  | 3690|    166|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|    166|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    166|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    166|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3690:21): [True: 0, False: 166]
  |  |  ------------------
  |  | 3691|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3692|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3692:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3693|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3694|      0|                }
  |  | 3695|    166|            }
  |  | 3696|       |            // _GUARD_CALLABLE_LEN
  |  | 3697|    166|            {
  |  | 3698|    166|                callable = stack_pointer[-3];
  |  | 3699|    166|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3700|    166|                PyInterpreterState *interp = tstate->interp;
  |  | 3701|    166|                if (callable_o != interp->callable_cache.len) {
  |  |  ------------------
  |  |  |  Branch (3701:21): [True: 0, False: 166]
  |  |  ------------------
  |  | 3702|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3703|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3703:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3704|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3705|      0|                }
  |  | 3706|    166|            }
  |  | 3707|       |            // _CALL_LEN
  |  | 3708|    166|            {
  |  | 3709|    166|                arg = stack_pointer[-1];
  |  | 3710|    166|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    166|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 3711|    166|                PyObject *arg_o = PyStackRef_AsPyObjectBorrow(arg);
  |  | 3712|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3713|    166|                Py_ssize_t len_i = PyObject_Length(arg_o);
  |  |  ------------------
  |  |  |  |  353|    166|#define PyObject_Length PyObject_Size
  |  |  ------------------
  |  | 3714|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3715|    166|                if (len_i < 0) {
  |  |  ------------------
  |  |  |  Branch (3715:21): [True: 0, False: 166]
  |  |  ------------------
  |  | 3716|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3717|      0|                }
  |  | 3718|    166|                PyObject *res_o = PyLong_FromSsize_t(len_i);
  |  | 3719|    166|                assert((res_o != NULL) ^ (_PyErr_Occurred(tstate) != NULL));
  |  |  ------------------
  |  |  |  Branch (3719:17): [True: 166, False: 0]
  |  |  ------------------
  |  | 3720|    166|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (3720:21): [True: 0, False: 166]
  |  |  ------------------
  |  | 3721|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3722|      0|                }
  |  | 3723|    166|                a = arg;
  |  | 3724|    166|                c = callable;
  |  | 3725|    166|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 3726|    166|            }
  |  | 3727|       |            // _POP_TOP
  |  | 3728|      0|            {
  |  | 3729|    166|                value = c;
  |  | 3730|    166|                stack_pointer[-3] = res;
  |  | 3731|    166|                stack_pointer[-2] = a;
  |  | 3732|    166|                stack_pointer += -1;
  |  | 3733|    166|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3734|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3735|    166|                PyStackRef_XCLOSE(value);
  |  | 3736|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3737|    166|            }
  |  | 3738|       |            // _POP_TOP
  |  | 3739|    166|            {
  |  | 3740|    166|                value = a;
  |  | 3741|    166|                stack_pointer += -1;
  |  | 3742|    166|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    166|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3743|    166|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3744|    166|                PyStackRef_XCLOSE(value);
  |  | 3745|    166|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3746|    166|            }
  |  | 3747|    166|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    166|    { \
  |  |  |  |  201|    166|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    166|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    166|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    166|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    166|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    166|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    166|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    166|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 166]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    166|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    166|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    166|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    166|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    166|    }
  |  |  ------------------
  |  |  |  Branch (3747:13): [True: 166, False: 0]
  |  |  ------------------
  |  | 3748|    166|        }
  |  | 3749|       |
  |  | 3750|     68|        TARGET(CALL_LIST_APPEND) {
  |  |  ------------------
  |  |  |  |  132|     68|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3751|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3752|       |            int opcode = CALL_LIST_APPEND;
  |  | 3753|       |            (void)(opcode);
  |  | 3754|       |            #endif
  |  | 3755|     68|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3756|     68|            (void)this_instr;
  |  | 3757|     68|            frame->instr_ptr = next_instr;
  |  | 3758|     68|            next_instr += 4;
  |  | 3759|     68|            INSTRUCTION_STATS(CALL_LIST_APPEND);
  |  |  ------------------
  |  |  |  |   71|     68|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3760|     68|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 3761|     68|            _PyStackRef callable;
  |  | 3762|     68|            _PyStackRef nos;
  |  | 3763|     68|            _PyStackRef self;
  |  | 3764|     68|            _PyStackRef arg;
  |  | 3765|     68|            _PyStackRef none;
  |  | 3766|     68|            _PyStackRef c;
  |  | 3767|     68|            _PyStackRef s;
  |  | 3768|     68|            _PyStackRef value;
  |  | 3769|       |            /* Skip 1 cache entry */
  |  | 3770|       |            /* Skip 2 cache entries */
  |  | 3771|       |            // _GUARD_CALLABLE_LIST_APPEND
  |  | 3772|     68|            {
  |  | 3773|     68|                callable = stack_pointer[-3];
  |  | 3774|     68|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3775|     68|                PyInterpreterState *interp = tstate->interp;
  |  | 3776|     68|                if (callable_o != interp->callable_cache.list_append) {
  |  |  ------------------
  |  |  |  Branch (3776:21): [True: 0, False: 68]
  |  |  ------------------
  |  | 3777|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3778|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3778:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3779|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3780|      0|                }
  |  | 3781|     68|            }
  |  | 3782|       |            // _GUARD_NOS_NOT_NULL
  |  | 3783|     68|            {
  |  | 3784|     68|                nos = stack_pointer[-2];
  |  | 3785|     68|                if (PyStackRef_IsNull(nos)) {
  |  |  ------------------
  |  |  |  |  470|     68|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     68|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     68|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 68]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3786|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3787|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3787:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3788|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3789|      0|                }
  |  | 3790|     68|            }
  |  | 3791|       |            // _GUARD_NOS_LIST
  |  | 3792|     68|            {
  |  | 3793|     68|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  | 3794|     68|                if (!PyList_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   26|     68|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     68|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     68|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     68|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3794:21): [True: 0, False: 68]
  |  |  ------------------
  |  | 3795|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3796|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3796:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3797|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3798|      0|                }
  |  | 3799|     68|            }
  |  | 3800|       |            // _CALL_LIST_APPEND
  |  | 3801|     68|            {
  |  | 3802|     68|                arg = stack_pointer[-1];
  |  | 3803|     68|                self = nos;
  |  | 3804|     68|                assert(oparg == 1);
  |  |  ------------------
  |  |  |  Branch (3804:17): [True: 68, False: 0]
  |  |  ------------------
  |  | 3805|     68|                PyObject *self_o = PyStackRef_AsPyObjectBorrow(self);
  |  | 3806|     68|                if (!LOCK_OBJECT(self_o)) {
  |  |  ------------------
  |  |  |  |  321|     68|#  define LOCK_OBJECT(op) (1)
  |  |  ------------------
  |  |  |  Branch (3806:21): [Folded, False: 68]
  |  |  ------------------
  |  | 3807|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3808|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3808:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3809|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3810|      0|                }
  |  | 3811|     68|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|     68|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 3812|     68|                int err = _PyList_AppendTakeRef((PyListObject *)self_o, PyStackRef_AsPyObjectSteal(arg));
  |  | 3813|     68|                UNLOCK_OBJECT(self_o);
  |  |  ------------------
  |  |  |  |  322|     68|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  | 3814|     68|                if (err) {
  |  |  ------------------
  |  |  |  Branch (3814:21): [True: 0, False: 68]
  |  |  ------------------
  |  | 3815|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3816|      0|                }
  |  | 3817|     68|                c = callable;
  |  | 3818|     68|                s = self;
  |  | 3819|     68|                none = PyStackRef_None;
  |  |  ------------------
  |  |  |  |  473|     68|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     68|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3820|     68|            }
  |  | 3821|       |            // _POP_TOP
  |  | 3822|      0|            {
  |  | 3823|     68|                value = s;
  |  | 3824|     68|                stack_pointer[-3] = none;
  |  | 3825|     68|                stack_pointer[-2] = c;
  |  | 3826|     68|                stack_pointer += -1;
  |  | 3827|     68|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     68|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3828|     68|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3829|     68|                PyStackRef_XCLOSE(value);
  |  | 3830|     68|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3831|     68|            }
  |  | 3832|       |            // _POP_TOP
  |  | 3833|     68|            {
  |  | 3834|     68|                value = c;
  |  | 3835|     68|                stack_pointer += -1;
  |  | 3836|     68|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     68|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3837|     68|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3838|     68|                PyStackRef_XCLOSE(value);
  |  | 3839|     68|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3840|     68|            }
  |  | 3841|     68|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     68|    { \
  |  |  |  |  201|     68|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     68|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     68|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     68|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     68|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     68|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     68|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     68|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 68]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     68|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     68|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     68|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     68|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     68|    }
  |  |  ------------------
  |  |  |  Branch (3841:13): [True: 68, False: 0]
  |  |  ------------------
  |  | 3842|     68|        }
  |  | 3843|       |
  |  | 3844|    594|        TARGET(CALL_METHOD_DESCRIPTOR_FAST) {
  |  |  ------------------
  |  |  |  |  132|    594|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3845|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3846|       |            int opcode = CALL_METHOD_DESCRIPTOR_FAST;
  |  | 3847|       |            (void)(opcode);
  |  | 3848|       |            #endif
  |  | 3849|    594|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3850|    594|            (void)this_instr;
  |  | 3851|    594|            frame->instr_ptr = next_instr;
  |  | 3852|    594|            next_instr += 4;
  |  | 3853|    594|            INSTRUCTION_STATS(CALL_METHOD_DESCRIPTOR_FAST);
  |  |  ------------------
  |  |  |  |   71|    594|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3854|    594|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 3855|    594|            _PyStackRef callable;
  |  | 3856|    594|            _PyStackRef self_or_null;
  |  | 3857|    594|            _PyStackRef *args;
  |  | 3858|    594|            _PyStackRef value;
  |  | 3859|       |            /* Skip 1 cache entry */
  |  | 3860|       |            /* Skip 2 cache entries */
  |  | 3861|       |            // _GUARD_CALLABLE_METHOD_DESCRIPTOR_FAST
  |  | 3862|    594|            {
  |  | 3863|    594|                args = &stack_pointer[-oparg];
  |  | 3864|    594|                self_or_null = stack_pointer[-1 - oparg];
  |  | 3865|    594|                callable = stack_pointer[-2 - oparg];
  |  | 3866|    594|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3867|    594|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 3868|    594|                if (!Py_IS_TYPE(method, &PyMethodDescr_Type)) {
  |  |  ------------------
  |  |  |  |   65|    594|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    594|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    594|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3868:21): [True: 0, False: 594]
  |  |  ------------------
  |  | 3869|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3870|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3870:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3871|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3872|      0|                }
  |  | 3873|    594|                if (method->d_method->ml_flags != METH_FASTCALL) {
  |  |  ------------------
  |  |  |  |  115|    594|#  define METH_FASTCALL  0x0080
  |  |  ------------------
  |  |  |  Branch (3873:21): [True: 0, False: 594]
  |  |  ------------------
  |  | 3874|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3875|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3875:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3876|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3877|      0|                }
  |  | 3878|    594|                int total_args = oparg;
  |  | 3879|    594|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    594|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    594|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    594|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3879:21): [True: 594, False: 0]
  |  |  ------------------
  |  | 3880|    594|                    total_args++;
  |  | 3881|    594|                }
  |  | 3882|    594|                if (total_args == 0) {
  |  |  ------------------
  |  |  |  Branch (3882:21): [True: 0, False: 594]
  |  |  ------------------
  |  | 3883|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3884|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3884:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3885|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3886|      0|                }
  |  | 3887|    594|                PyObject *self = PyStackRef_AsPyObjectBorrow(
  |  | 3888|    594|                    PyStackRef_IsNull(self_or_null) ? args[0] : self_or_null);
  |  |  ------------------
  |  |  |  |  470|    594|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    594|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    594|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 594]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3889|    594|                if (!Py_IS_TYPE(self, method->d_common.d_type)) {
  |  |  ------------------
  |  |  |  |   65|    594|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    594|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    594|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3889:21): [True: 0, False: 594]
  |  |  ------------------
  |  | 3890|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3891|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3891:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3892|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3893|      0|                }
  |  | 3894|    594|            }
  |  | 3895|       |            // _CALL_METHOD_DESCRIPTOR_FAST
  |  | 3896|    594|            {
  |  | 3897|    594|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3898|    594|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 3899|    594|                int total_args = oparg;
  |  | 3900|    594|                _PyStackRef *arguments = args;
  |  | 3901|    594|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    594|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    594|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    594|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3901:21): [True: 594, False: 0]
  |  |  ------------------
  |  | 3902|    594|                    arguments--;
  |  | 3903|    594|                    total_args++;
  |  | 3904|    594|                }
  |  | 3905|    594|                PyObject *self = PyStackRef_AsPyObjectBorrow(arguments[0]);
  |  | 3906|    594|                assert(self != NULL);
  |  |  ------------------
  |  |  |  Branch (3906:17): [True: 594, False: 0]
  |  |  ------------------
  |  | 3907|    594|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    594|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 3908|    594|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3909|    594|                PyCFunctionFast cfunc = _PyCFunctionFast_CAST(method->d_method->ml_meth);
  |  |  ------------------
  |  |  |  |   58|    594|    _Py_FUNC_CAST(PyCFunctionFast, func)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|    594|#define _Py_FUNC_CAST(T, func) _Py_CAST(T, _Py_CAST(void(*)(void), (func)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    594|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3910|    594|                PyObject *res_o = _PyCallMethodDescriptorFast_StackRef(
  |  | 3911|    594|                    callable,
  |  | 3912|    594|                    cfunc,
  |  | 3913|    594|                    self,
  |  | 3914|    594|                    arguments,
  |  | 3915|    594|                    total_args
  |  | 3916|    594|                );
  |  | 3917|    594|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3918|    594|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (3918:21): [True: 0, False: 594]
  |  |  ------------------
  |  | 3919|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3920|      0|                }
  |  | 3921|    594|                _PyStackRef temp = callable;
  |  | 3922|    594|                callable = PyStackRef_FromPyObjectSteal(res_o);
  |  | 3923|    594|                stack_pointer[-2 - oparg] = callable;
  |  | 3924|    594|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3925|    594|                PyStackRef_CLOSE(temp);
  |  | 3926|    594|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3927|    594|            }
  |  | 3928|       |            // _POP_TOP_OPARG
  |  | 3929|      0|            {
  |  | 3930|    594|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3931|    594|                _PyStackRef_CloseStack(args, oparg);
  |  | 3932|    594|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3933|    594|            }
  |  | 3934|       |            // _POP_TOP
  |  | 3935|    594|            {
  |  | 3936|    594|                value = self_or_null;
  |  | 3937|    594|                stack_pointer += -1 - oparg;
  |  | 3938|    594|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    594|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 3939|    594|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3940|    594|                PyStackRef_XCLOSE(value);
  |  | 3941|    594|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3942|    594|            }
  |  | 3943|       |            // _CHECK_PERIODIC_AT_END
  |  | 3944|    594|            {
  |  | 3945|    594|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 3946|    594|                int err = check_periodics(tstate);
  |  | 3947|    594|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 3948|    594|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (3948:21): [True: 0, False: 594]
  |  |  ------------------
  |  | 3949|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 3950|      0|                }
  |  | 3951|    594|            }
  |  | 3952|    594|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    594|    { \
  |  |  |  |  201|    594|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    594|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    594|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    594|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    594|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    594|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    594|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    594|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 594]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    594|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    594|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    594|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    594|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    594|    }
  |  |  ------------------
  |  |  |  Branch (3952:13): [True: 594, False: 0]
  |  |  ------------------
  |  | 3953|    594|        }
  |  | 3954|       |
  |  | 3955|     34|        TARGET(CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS) {
  |  |  ------------------
  |  |  |  |  132|     34|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 3956|       |            #if _Py_TAIL_CALL_INTERP
  |  | 3957|       |            int opcode = CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS;
  |  | 3958|       |            (void)(opcode);
  |  | 3959|       |            #endif
  |  | 3960|     34|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 3961|     34|            (void)this_instr;
  |  | 3962|     34|            frame->instr_ptr = next_instr;
  |  | 3963|     34|            next_instr += 4;
  |  | 3964|     34|            INSTRUCTION_STATS(CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS);
  |  |  ------------------
  |  |  |  |   71|     34|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 3965|     34|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 3966|     34|            _PyStackRef callable;
  |  | 3967|     34|            _PyStackRef self_or_null;
  |  | 3968|     34|            _PyStackRef *args;
  |  | 3969|     34|            _PyStackRef value;
  |  | 3970|       |            /* Skip 1 cache entry */
  |  | 3971|       |            /* Skip 2 cache entries */
  |  | 3972|       |            // _GUARD_CALLABLE_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS
  |  | 3973|     34|            {
  |  | 3974|     34|                args = &stack_pointer[-oparg];
  |  | 3975|     34|                self_or_null = stack_pointer[-1 - oparg];
  |  | 3976|     34|                callable = stack_pointer[-2 - oparg];
  |  | 3977|     34|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 3978|     34|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 3979|     34|                if (!Py_IS_TYPE(method, &PyMethodDescr_Type)) {
  |  |  ------------------
  |  |  |  |   65|     34|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3979:21): [True: 0, False: 34]
  |  |  ------------------
  |  | 3980|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3981|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3981:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3982|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3983|      0|                }
  |  | 3984|     34|                if (method->d_method->ml_flags != (METH_FASTCALL|METH_KEYWORDS)) {
  |  |  ------------------
  |  |  |  |  115|     34|#  define METH_FASTCALL  0x0080
  |  |  ------------------
  |  |                               if (method->d_method->ml_flags != (METH_FASTCALL|METH_KEYWORDS)) {
  |  |  ------------------
  |  |  |  |   96|     34|#define METH_KEYWORDS 0x0002
  |  |  ------------------
  |  |  |  Branch (3984:21): [True: 0, False: 34]
  |  |  ------------------
  |  | 3985|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3986|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3986:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3987|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3988|      0|                }
  |  | 3989|     34|                int total_args = oparg;
  |  | 3990|     34|                _PyStackRef *arguments = args;
  |  | 3991|     34|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|     34|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     34|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     34|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (3991:21): [True: 34, False: 0]
  |  |  ------------------
  |  | 3992|     34|                    arguments--;
  |  | 3993|     34|                    total_args++;
  |  | 3994|     34|                }
  |  | 3995|     34|                if (total_args == 0) {
  |  |  ------------------
  |  |  |  Branch (3995:21): [True: 0, False: 34]
  |  |  ------------------
  |  | 3996|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 3997|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (3997:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 3998|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 3999|      0|                }
  |  | 4000|     34|                PyObject *self = PyStackRef_AsPyObjectBorrow(arguments[0]);
  |  | 4001|     34|                if (!Py_IS_TYPE(self, method->d_common.d_type)) {
  |  |  ------------------
  |  |  |  |   65|     34|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4001:21): [True: 0, False: 34]
  |  |  ------------------
  |  | 4002|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4003|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4003:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4004|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4005|      0|                }
  |  | 4006|     34|            }
  |  | 4007|       |            // _CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS
  |  | 4008|     34|            {
  |  | 4009|     34|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4010|     34|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 4011|     34|                int total_args = oparg;
  |  | 4012|     34|                _PyStackRef *arguments = args;
  |  | 4013|     34|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|     34|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     34|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     34|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4013:21): [True: 34, False: 0]
  |  |  ------------------
  |  | 4014|     34|                    arguments--;
  |  | 4015|     34|                    total_args++;
  |  | 4016|     34|                }
  |  | 4017|     34|                PyObject *self = PyStackRef_AsPyObjectBorrow(arguments[0]);
  |  | 4018|     34|                assert(self != NULL);
  |  |  ------------------
  |  |  |  Branch (4018:17): [True: 34, False: 0]
  |  |  ------------------
  |  | 4019|     34|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|     34|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 4020|     34|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4021|     34|                PyCFunctionFastWithKeywords cfunc = _PyCFunctionFastWithKeywords_CAST(method->d_method->ml_meth);
  |  |  ------------------
  |  |  |  |   62|     34|    _Py_FUNC_CAST(PyCFunctionFastWithKeywords, func)
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|     34|#define _Py_FUNC_CAST(T, func) _Py_CAST(T, _Py_CAST(void(*)(void), (func)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4022|     34|                PyObject *res_o = _PyCallMethodDescriptorFastWithKeywords_StackRef(
  |  | 4023|     34|                    callable,
  |  | 4024|     34|                    cfunc,
  |  | 4025|     34|                    self,
  |  | 4026|     34|                    arguments,
  |  | 4027|     34|                    total_args
  |  | 4028|     34|                );
  |  | 4029|     34|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4030|     34|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (4030:21): [True: 0, False: 34]
  |  |  ------------------
  |  | 4031|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4032|      0|                }
  |  | 4033|     34|                _PyStackRef temp = callable;
  |  | 4034|     34|                callable = PyStackRef_FromPyObjectSteal(res_o);
  |  | 4035|     34|                stack_pointer[-2 - oparg] = callable;
  |  | 4036|     34|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4037|     34|                PyStackRef_CLOSE(temp);
  |  | 4038|     34|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4039|     34|            }
  |  | 4040|       |            // _POP_TOP_OPARG
  |  | 4041|      0|            {
  |  | 4042|     34|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4043|     34|                _PyStackRef_CloseStack(args, oparg);
  |  | 4044|     34|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4045|     34|            }
  |  | 4046|       |            // _POP_TOP
  |  | 4047|     34|            {
  |  | 4048|     34|                value = self_or_null;
  |  | 4049|     34|                stack_pointer += -1 - oparg;
  |  | 4050|     34|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     34|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4051|     34|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4052|     34|                PyStackRef_XCLOSE(value);
  |  | 4053|     34|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4054|     34|            }
  |  | 4055|       |            // _CHECK_PERIODIC_AT_END
  |  | 4056|     34|            {
  |  | 4057|     34|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4058|     34|                int err = check_periodics(tstate);
  |  | 4059|     34|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4060|     34|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (4060:21): [True: 0, False: 34]
  |  |  ------------------
  |  | 4061|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4062|      0|                }
  |  | 4063|     34|            }
  |  | 4064|     34|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     34|    { \
  |  |  |  |  201|     34|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     34|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     34|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     34|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     34|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     34|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     34|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     34|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 34]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     34|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     34|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     34|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     34|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     34|    }
  |  |  ------------------
  |  |  |  Branch (4064:13): [True: 34, False: 0]
  |  |  ------------------
  |  | 4065|     34|        }
  |  | 4066|       |
  |  | 4067|    118|        TARGET(CALL_METHOD_DESCRIPTOR_NOARGS) {
  |  |  ------------------
  |  |  |  |  132|    118|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4068|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4069|       |            int opcode = CALL_METHOD_DESCRIPTOR_NOARGS;
  |  | 4070|       |            (void)(opcode);
  |  | 4071|       |            #endif
  |  | 4072|    118|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4073|    118|            (void)this_instr;
  |  | 4074|    118|            frame->instr_ptr = next_instr;
  |  | 4075|    118|            next_instr += 4;
  |  | 4076|    118|            INSTRUCTION_STATS(CALL_METHOD_DESCRIPTOR_NOARGS);
  |  |  ------------------
  |  |  |  |   71|    118|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4077|    118|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4078|    118|            _PyStackRef callable;
  |  | 4079|    118|            _PyStackRef self_or_null;
  |  | 4080|    118|            _PyStackRef *args;
  |  | 4081|    118|            _PyStackRef res;
  |  | 4082|    118|            _PyStackRef c;
  |  | 4083|    118|            _PyStackRef s;
  |  | 4084|    118|            _PyStackRef value;
  |  | 4085|       |            /* Skip 1 cache entry */
  |  | 4086|       |            /* Skip 2 cache entries */
  |  | 4087|       |            // _GUARD_CALLABLE_METHOD_DESCRIPTOR_NOARGS
  |  | 4088|    118|            {
  |  | 4089|    118|                args = &stack_pointer[-oparg];
  |  | 4090|    118|                self_or_null = stack_pointer[-1 - oparg];
  |  | 4091|    118|                callable = stack_pointer[-2 - oparg];
  |  | 4092|    118|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4093|    118|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 4094|    118|                if (!Py_IS_TYPE(method, &PyMethodDescr_Type)) {
  |  |  ------------------
  |  |  |  |   65|    118|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4094:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 4095|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4096|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4096:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4097|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4098|      0|                }
  |  | 4099|    118|                if (method->d_method->ml_flags != METH_NOARGS) {
  |  |  ------------------
  |  |  |  |   98|    118|#define METH_NOARGS   0x0004
  |  |  ------------------
  |  |  |  Branch (4099:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 4100|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4101|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4101:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4102|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4103|      0|                }
  |  | 4104|    118|                int total_args = oparg;
  |  | 4105|    118|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    118|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    118|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    118|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4105:21): [True: 118, False: 0]
  |  |  ------------------
  |  | 4106|    118|                    total_args++;
  |  | 4107|    118|                }
  |  | 4108|    118|                if (total_args != 1) {
  |  |  ------------------
  |  |  |  Branch (4108:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 4109|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4110|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4110:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4111|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4112|      0|                }
  |  | 4113|    118|                PyObject *self = PyStackRef_AsPyObjectBorrow(
  |  | 4114|    118|                    PyStackRef_IsNull(self_or_null) ? args[0] : self_or_null);
  |  |  ------------------
  |  |  |  |  470|    118|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    118|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    118|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 118]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4115|    118|                if (!Py_IS_TYPE(self, method->d_common.d_type)) {
  |  |  ------------------
  |  |  |  |   65|    118|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4115:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 4116|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4117|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4117:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4118|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4119|      0|                }
  |  | 4120|    118|            }
  |  | 4121|       |            // _CHECK_RECURSION_LIMIT
  |  | 4122|    118|            {
  |  | 4123|    118|                if (_Py_ReachedRecursionLimit(tstate)) {
  |  |  ------------------
  |  |  |  Branch (4123:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 4124|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4125|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4125:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4126|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4127|      0|                }
  |  | 4128|    118|            }
  |  | 4129|       |            // _CALL_METHOD_DESCRIPTOR_NOARGS
  |  | 4130|    118|            {
  |  | 4131|    118|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4132|    118|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 4133|    118|                assert(oparg == 1 || !PyStackRef_IsNull(self_or_null));
  |  |  ------------------
  |  |  |  Branch (4133:17): [True: 0, False: 118]
  |  |  |  Branch (4133:17): [True: 118, False: 0]
  |  |  ------------------
  |  | 4134|    118|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    118|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    118|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    118|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4134:21): [True: 118, False: 0]
  |  |  ------------------
  |  | 4135|    118|                    args--;
  |  | 4136|    118|                }
  |  | 4137|    118|                _PyStackRef self_stackref = args[0];
  |  | 4138|    118|                PyObject *self = PyStackRef_AsPyObjectBorrow(self_stackref);
  |  | 4139|    118|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    118|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 4140|    118|                PyCFunction cfunc = method->d_method->ml_meth;
  |  | 4141|    118|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4142|    118|                PyObject *res_o = _PyCFunction_TrampolineCall(cfunc, self, NULL);
  |  |  ------------------
  |  |  |  |  997|    118|    (meth)((self), (args))
  |  |  ------------------
  |  | 4143|    118|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4144|    118|                _Py_LeaveRecursiveCallTstate(tstate);
  |  | 4145|    118|                assert((res_o != NULL) ^ (_PyErr_Occurred(tstate) != NULL));
  |  |  ------------------
  |  |  |  Branch (4145:17): [True: 118, False: 0]
  |  |  ------------------
  |  | 4146|    118|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (4146:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 4147|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4148|      0|                }
  |  | 4149|    118|                c = callable;
  |  | 4150|    118|                s = args[0];
  |  | 4151|    118|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 4152|    118|            }
  |  | 4153|       |            // _POP_TOP
  |  | 4154|      0|            {
  |  | 4155|    118|                value = s;
  |  | 4156|    118|                stack_pointer[-2 - oparg] = res;
  |  | 4157|    118|                stack_pointer[-1 - oparg] = c;
  |  | 4158|    118|                stack_pointer += -oparg;
  |  | 4159|    118|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    118|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4160|    118|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4161|    118|                PyStackRef_XCLOSE(value);
  |  | 4162|    118|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4163|    118|            }
  |  | 4164|       |            // _POP_TOP
  |  | 4165|    118|            {
  |  | 4166|    118|                value = c;
  |  | 4167|    118|                stack_pointer += -1;
  |  | 4168|    118|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    118|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4169|    118|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4170|    118|                PyStackRef_XCLOSE(value);
  |  | 4171|    118|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4172|    118|            }
  |  | 4173|       |            // _CHECK_PERIODIC_AT_END
  |  | 4174|    118|            {
  |  | 4175|    118|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4176|    118|                int err = check_periodics(tstate);
  |  | 4177|    118|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4178|    118|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (4178:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 4179|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4180|      0|                }
  |  | 4181|    118|            }
  |  | 4182|    118|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    118|    { \
  |  |  |  |  201|    118|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    118|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    118|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    118|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    118|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    118|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    118|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    118|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 118]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    118|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    118|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    118|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    118|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    118|    }
  |  |  ------------------
  |  |  |  Branch (4182:13): [True: 118, False: 0]
  |  |  ------------------
  |  | 4183|    118|        }
  |  | 4184|       |
  |  | 4185|    398|        TARGET(CALL_METHOD_DESCRIPTOR_O) {
  |  |  ------------------
  |  |  |  |  132|    398|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4186|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4187|       |            int opcode = CALL_METHOD_DESCRIPTOR_O;
  |  | 4188|       |            (void)(opcode);
  |  | 4189|       |            #endif
  |  | 4190|    398|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4191|    398|            (void)this_instr;
  |  | 4192|    398|            frame->instr_ptr = next_instr;
  |  | 4193|    398|            next_instr += 4;
  |  | 4194|    398|            INSTRUCTION_STATS(CALL_METHOD_DESCRIPTOR_O);
  |  |  ------------------
  |  |  |  |   71|    398|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4195|    398|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4196|    398|            _PyStackRef callable;
  |  | 4197|    398|            _PyStackRef self_or_null;
  |  | 4198|    398|            _PyStackRef *args;
  |  | 4199|    398|            _PyStackRef res;
  |  | 4200|    398|            _PyStackRef c;
  |  | 4201|    398|            _PyStackRef s;
  |  | 4202|    398|            _PyStackRef a;
  |  | 4203|    398|            _PyStackRef value;
  |  | 4204|       |            /* Skip 1 cache entry */
  |  | 4205|       |            /* Skip 2 cache entries */
  |  | 4206|       |            // _GUARD_CALLABLE_METHOD_DESCRIPTOR_O
  |  | 4207|    398|            {
  |  | 4208|    398|                args = &stack_pointer[-oparg];
  |  | 4209|    398|                self_or_null = stack_pointer[-1 - oparg];
  |  | 4210|    398|                callable = stack_pointer[-2 - oparg];
  |  | 4211|    398|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4212|    398|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 4213|    398|                if (!Py_IS_TYPE(method, &PyMethodDescr_Type)) {
  |  |  ------------------
  |  |  |  |   65|    398|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    398|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    398|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4213:21): [True: 0, False: 398]
  |  |  ------------------
  |  | 4214|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4215|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4215:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4216|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4217|      0|                }
  |  | 4218|    398|                if (method->d_method->ml_flags != METH_O) {
  |  |  ------------------
  |  |  |  |   99|    398|#define METH_O        0x0008
  |  |  ------------------
  |  |  |  Branch (4218:21): [True: 0, False: 398]
  |  |  ------------------
  |  | 4219|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4220|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4220:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4221|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4222|      0|                }
  |  | 4223|    398|                int total_args = oparg;
  |  | 4224|    398|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    398|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    398|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    398|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4224:21): [True: 398, False: 0]
  |  |  ------------------
  |  | 4225|    398|                    total_args++;
  |  | 4226|    398|                }
  |  | 4227|    398|                if (total_args != 2) {
  |  |  ------------------
  |  |  |  Branch (4227:21): [True: 0, False: 398]
  |  |  ------------------
  |  | 4228|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4229|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4229:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4230|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4231|      0|                }
  |  | 4232|    398|                PyObject *self = PyStackRef_AsPyObjectBorrow(
  |  | 4233|    398|                    PyStackRef_IsNull(self_or_null) ? args[0] : self_or_null);
  |  |  ------------------
  |  |  |  |  470|    398|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    398|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    398|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 398]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4234|    398|                if (!Py_IS_TYPE(self, method->d_common.d_type)) {
  |  |  ------------------
  |  |  |  |   65|    398|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    398|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    398|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4234:21): [True: 116, False: 282]
  |  |  ------------------
  |  | 4235|    116|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|    116|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4236|    116|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4236:21): [True: 116, False: 0]
  |  |  ------------------
  |  | 4237|    116|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|    116|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4238|      0|                }
  |  | 4239|    398|            }
  |  | 4240|       |            // _CHECK_RECURSION_LIMIT
  |  | 4241|    282|            {
  |  | 4242|    282|                if (_Py_ReachedRecursionLimit(tstate)) {
  |  |  ------------------
  |  |  |  Branch (4242:21): [True: 0, False: 282]
  |  |  ------------------
  |  | 4243|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4244|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4244:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4245|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4246|      0|                }
  |  | 4247|    282|            }
  |  | 4248|       |            // _CALL_METHOD_DESCRIPTOR_O
  |  | 4249|    282|            {
  |  | 4250|    282|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4251|    282|                PyMethodDescrObject *method = (PyMethodDescrObject *)callable_o;
  |  | 4252|    282|                _PyStackRef *arguments = args;
  |  | 4253|    282|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    282|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    282|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    282|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4253:21): [True: 282, False: 0]
  |  |  ------------------
  |  | 4254|    282|                    arguments--;
  |  | 4255|    282|                }
  |  | 4256|    282|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    282|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 4257|    282|                PyCFunction cfunc = method->d_method->ml_meth;
  |  | 4258|    282|                PyObject *self = PyStackRef_AsPyObjectBorrow(arguments[0]);
  |  | 4259|    282|                PyObject *arg = PyStackRef_AsPyObjectBorrow(arguments[1]);
  |  | 4260|    282|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4261|    282|                PyObject *res_o = _PyCFunction_TrampolineCall(cfunc, self, arg);
  |  |  ------------------
  |  |  |  |  997|    282|    (meth)((self), (args))
  |  |  ------------------
  |  | 4262|    282|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4263|    282|                _Py_LeaveRecursiveCallTstate(tstate);
  |  | 4264|    282|                assert((res_o != NULL) ^ (_PyErr_Occurred(tstate) != NULL));
  |  |  ------------------
  |  |  |  Branch (4264:17): [True: 282, False: 0]
  |  |  ------------------
  |  | 4265|    282|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (4265:21): [True: 0, False: 282]
  |  |  ------------------
  |  | 4266|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4267|      0|                }
  |  | 4268|    282|                c = callable;
  |  | 4269|    282|                s = arguments[0];
  |  | 4270|    282|                a = arguments[1];
  |  | 4271|    282|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 4272|    282|            }
  |  | 4273|       |            // _POP_TOP
  |  | 4274|      0|            {
  |  | 4275|    282|                value = a;
  |  | 4276|    282|                stack_pointer[-2 - oparg] = res;
  |  | 4277|    282|                stack_pointer[-1 - oparg] = c;
  |  | 4278|    282|                stack_pointer[-oparg] = s;
  |  | 4279|    282|                stack_pointer += 1 - oparg;
  |  | 4280|    282|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    282|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4281|    282|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4282|    282|                PyStackRef_XCLOSE(value);
  |  | 4283|    282|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4284|    282|            }
  |  | 4285|       |            // _POP_TOP
  |  | 4286|    282|            {
  |  | 4287|    282|                value = s;
  |  | 4288|    282|                stack_pointer += -1;
  |  | 4289|    282|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    282|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4290|    282|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4291|    282|                PyStackRef_XCLOSE(value);
  |  | 4292|    282|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4293|    282|            }
  |  | 4294|       |            // _POP_TOP
  |  | 4295|    282|            {
  |  | 4296|    282|                value = c;
  |  | 4297|    282|                stack_pointer += -1;
  |  | 4298|    282|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    282|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4299|    282|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4300|    282|                PyStackRef_XCLOSE(value);
  |  | 4301|    282|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4302|    282|            }
  |  | 4303|       |            // _CHECK_PERIODIC_AT_END
  |  | 4304|    282|            {
  |  | 4305|    282|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4306|    282|                int err = check_periodics(tstate);
  |  | 4307|    282|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4308|    282|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (4308:21): [True: 0, False: 282]
  |  |  ------------------
  |  | 4309|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4310|      0|                }
  |  | 4311|    282|            }
  |  | 4312|    282|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    282|    { \
  |  |  |  |  201|    282|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    282|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    282|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    282|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    282|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    282|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    282|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    282|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 282]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    282|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    282|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    282|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    282|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    282|    }
  |  |  ------------------
  |  |  |  Branch (4312:13): [True: 282, False: 0]
  |  |  ------------------
  |  | 4313|    282|        }
  |  | 4314|       |
  |  | 4315|  1.04k|        TARGET(CALL_NON_PY_GENERAL) {
  |  |  ------------------
  |  |  |  |  132|  1.04k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4316|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4317|       |            int opcode = CALL_NON_PY_GENERAL;
  |  | 4318|       |            (void)(opcode);
  |  | 4319|       |            #endif
  |  | 4320|  1.04k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4321|  1.04k|            (void)this_instr;
  |  | 4322|  1.04k|            frame->instr_ptr = next_instr;
  |  | 4323|  1.04k|            next_instr += 4;
  |  | 4324|  1.04k|            INSTRUCTION_STATS(CALL_NON_PY_GENERAL);
  |  |  ------------------
  |  |  |  |   71|  1.04k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4325|  1.04k|            opcode = CALL_NON_PY_GENERAL;
  |  |  ------------------
  |  |  |  |  168|  1.04k|#define CALL_NON_PY_GENERAL                    163
  |  |  ------------------
  |  | 4326|  1.04k|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4327|  1.04k|            _PyStackRef callable;
  |  | 4328|  1.04k|            _PyStackRef self_or_null;
  |  | 4329|  1.04k|            _PyStackRef *args;
  |  | 4330|  1.04k|            _PyStackRef res;
  |  | 4331|       |            /* Skip 1 cache entry */
  |  | 4332|       |            /* Skip 2 cache entries */
  |  | 4333|       |            // _CHECK_IS_NOT_PY_CALLABLE
  |  | 4334|  1.04k|            {
  |  | 4335|  1.04k|                callable = stack_pointer[-2 - oparg];
  |  | 4336|  1.04k|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4337|  1.04k|                if (PyFunction_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |   68|  1.04k|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  1.04k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  1.04k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.04k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 1.04k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4338|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4339|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4339:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4340|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4341|      0|                }
  |  | 4342|  1.04k|                if (Py_TYPE(callable_o) == &PyMethod_Type) {
  |  |  ------------------
  |  |  |  |  213|  1.04k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.04k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.04k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4342:21): [True: 0, False: 1.04k]
  |  |  ------------------
  |  | 4343|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4344|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4344:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4345|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4346|      0|                }
  |  | 4347|  1.04k|            }
  |  | 4348|       |            // _CALL_NON_PY_GENERAL
  |  | 4349|  1.04k|            {
  |  | 4350|  1.04k|                args = &stack_pointer[-oparg];
  |  | 4351|  1.04k|                self_or_null = stack_pointer[-1 - oparg];
  |  | 4352|  1.04k|                #if TIER_ONE
  |  | 4353|  1.04k|                assert(opcode != INSTRUMENTED_CALL);
  |  |  ------------------
  |  |  |  Branch (4353:17): [True: 1.04k, False: 0]
  |  |  ------------------
  |  | 4354|  1.04k|                #endif
  |  | 4355|  1.04k|                int total_args = oparg;
  |  | 4356|  1.04k|                _PyStackRef *arguments = args;
  |  | 4357|  1.04k|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|  1.04k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|  1.04k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  1.04k|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4357:21): [True: 72, False: 970]
  |  |  ------------------
  |  | 4358|     72|                    arguments--;
  |  | 4359|     72|                    total_args++;
  |  | 4360|     72|                }
  |  | 4361|  1.04k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4362|  1.04k|                PyObject *res_o = _Py_VectorCall_StackRefSteal(
  |  | 4363|  1.04k|                    callable,
  |  | 4364|  1.04k|                    arguments,
  |  | 4365|  1.04k|                    total_args,
  |  | 4366|  1.04k|                    PyStackRef_NULL);
  |  | 4367|  1.04k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4368|  1.04k|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (4368:21): [True: 2, False: 1.04k]
  |  |  ------------------
  |  | 4369|      2|                    stack_pointer += -2 - oparg;
  |  | 4370|      2|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      2|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4371|      2|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      2|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4372|      0|                }
  |  | 4373|  1.04k|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 4374|  1.04k|            }
  |  | 4375|       |            // _CHECK_PERIODIC_AT_END
  |  | 4376|      0|            {
  |  | 4377|  1.04k|                stack_pointer[-2 - oparg] = res;
  |  | 4378|  1.04k|                stack_pointer += -1 - oparg;
  |  | 4379|  1.04k|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.04k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4380|  1.04k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4381|  1.04k|                int err = check_periodics(tstate);
  |  | 4382|  1.04k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4383|  1.04k|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (4383:21): [True: 0, False: 1.04k]
  |  |  ------------------
  |  | 4384|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4385|      0|                }
  |  | 4386|  1.04k|            }
  |  | 4387|  1.04k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.04k|    { \
  |  |  |  |  201|  1.04k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.04k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.04k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.04k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.04k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.04k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.04k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.04k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.04k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.04k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.04k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.04k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.04k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.04k|    }
  |  |  ------------------
  |  |  |  Branch (4387:13): [True: 1.04k, False: 0]
  |  |  ------------------
  |  | 4388|  1.04k|        }
  |  | 4389|       |
  |  | 4390|    948|        TARGET(CALL_PY_EXACT_ARGS) {
  |  |  ------------------
  |  |  |  |  132|    948|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4391|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4392|       |            int opcode = CALL_PY_EXACT_ARGS;
  |  | 4393|       |            (void)(opcode);
  |  | 4394|       |            #endif
  |  | 4395|    948|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4396|    948|            (void)this_instr;
  |  | 4397|    948|            frame->instr_ptr = next_instr;
  |  | 4398|    948|            next_instr += 4;
  |  | 4399|    948|            INSTRUCTION_STATS(CALL_PY_EXACT_ARGS);
  |  |  ------------------
  |  |  |  |   71|    948|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4400|    948|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4401|    948|            _PyStackRef callable;
  |  | 4402|    948|            _PyStackRef self_or_null;
  |  | 4403|    948|            _PyStackRef *args;
  |  | 4404|    948|            _PyStackRef new_frame;
  |  | 4405|       |            /* Skip 1 cache entry */
  |  | 4406|       |            // _CHECK_PEP_523
  |  | 4407|    948|            {
  |  | 4408|    948|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|    948|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 948]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4409|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4410|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4410:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4411|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4412|      0|                }
  |  | 4413|    948|            }
  |  | 4414|       |            // _CHECK_FUNCTION_VERSION
  |  | 4415|    948|            {
  |  | 4416|    948|                callable = stack_pointer[-2 - oparg];
  |  | 4417|    948|                uint32_t func_version = read_u32(&this_instr[2].cache);
  |  | 4418|    948|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4419|    948|                if (!PyFunction_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |   68|    948|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    948|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    948|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    948|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4419:21): [True: 6, False: 942]
  |  |  ------------------
  |  | 4420|      6|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      6|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4421|      6|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4421:21): [True: 6, False: 0]
  |  |  ------------------
  |  | 4422|      6|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      6|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4423|      0|                }
  |  | 4424|    942|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 4425|    942|                if (func->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (4425:21): [True: 60, False: 882]
  |  |  ------------------
  |  | 4426|     60|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|     60|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4427|     60|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4427:21): [True: 60, False: 0]
  |  |  ------------------
  |  | 4428|     60|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|     60|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4429|      0|                }
  |  | 4430|    942|            }
  |  | 4431|       |            // _CHECK_FUNCTION_EXACT_ARGS
  |  | 4432|    882|            {
  |  | 4433|    882|                self_or_null = stack_pointer[-1 - oparg];
  |  | 4434|    882|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4435|    882|                assert(PyFunction_Check(callable_o));
  |  |  ------------------
  |  |  |  Branch (4435:17): [True: 882, False: 0]
  |  |  ------------------
  |  | 4436|    882|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 4437|    882|                PyCodeObject *code = (PyCodeObject *)func->func_code;
  |  | 4438|    882|                if (code->co_argcount != oparg + (!PyStackRef_IsNull(self_or_null))) {
  |  |  ------------------
  |  |  |  |  470|    882|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    882|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    882|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4438:21): [True: 0, False: 882]
  |  |  ------------------
  |  | 4439|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4440|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4440:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4441|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4442|      0|                }
  |  | 4443|    882|            }
  |  | 4444|       |            // _CHECK_STACK_SPACE
  |  | 4445|    882|            {
  |  | 4446|    882|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4447|    882|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 4448|    882|                PyCodeObject *code = (PyCodeObject *)func->func_code;
  |  | 4449|    882|                if (!_PyThreadState_HasStackSpace(tstate, code->co_framesize)) {
  |  |  ------------------
  |  |  |  Branch (4449:21): [True: 0, False: 882]
  |  |  ------------------
  |  | 4450|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4451|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4451:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4452|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4453|      0|                }
  |  | 4454|    882|            }
  |  | 4455|       |            // _CHECK_RECURSION_REMAINING
  |  | 4456|    882|            {
  |  | 4457|    882|                if (tstate->py_recursion_remaining <= 1) {
  |  |  ------------------
  |  |  |  Branch (4457:21): [True: 0, False: 882]
  |  |  ------------------
  |  | 4458|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4459|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4459:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4460|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4461|      0|                }
  |  | 4462|    882|            }
  |  | 4463|       |            // _INIT_CALL_PY_EXACT_ARGS
  |  | 4464|    882|            {
  |  | 4465|    882|                args = &stack_pointer[-oparg];
  |  | 4466|    882|                int has_self = !PyStackRef_IsNull(self_or_null);
  |  |  ------------------
  |  |  |  |  470|    882|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    882|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    882|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4467|    882|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|    882|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 4468|    882|                _PyInterpreterFrame *pushed_frame = _PyFrame_PushUnchecked(tstate, callable, oparg + has_self, frame);
  |  | 4469|    882|                _PyStackRef *first_non_self_local = pushed_frame->localsplus + has_self;
  |  | 4470|    882|                pushed_frame->localsplus[0] = self_or_null;
  |  | 4471|  1.75k|                for (int i = 0; i < oparg; i++) {
  |  |  ------------------
  |  |  |  Branch (4471:33): [True: 872, False: 882]
  |  |  ------------------
  |  | 4472|    872|                    first_non_self_local[i] = args[i];
  |  | 4473|    872|                }
  |  | 4474|    882|                new_frame = PyStackRef_Wrap(pushed_frame);
  |  | 4475|    882|            }
  |  | 4476|       |            // _SAVE_RETURN_OFFSET
  |  | 4477|    882|            {
  |  | 4478|    882|                #if TIER_ONE
  |  | 4479|    882|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 4480|    882|                #endif
  |  | 4481|       |                #if TIER_TWO
  |  | 4482|       |                frame->return_offset = oparg;
  |  | 4483|       |                #endif
  |  | 4484|    882|            }
  |  | 4485|       |            // _PUSH_FRAME
  |  | 4486|    882|            {
  |  | 4487|    882|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (4487:17): [True: 882, False: 0]
  |  |  ------------------
  |  | 4488|    882|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 4489|    882|                stack_pointer += -2 - oparg;
  |  | 4490|    882|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    882|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4491|    882|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4492|    882|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (4492:17): [True: 882, False: 0]
  |  |  |  Branch (4492:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4493|    882|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|    882|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 4494|    882|                frame = tstate->current_frame = temp;
  |  | 4495|    882|                tstate->py_recursion_remaining--;
  |  | 4496|    882|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|    882|#define LOAD_SP() \
  |  |  |  |  426|    882|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 4497|    882|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|    882|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|    882|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|    882|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 882]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4498|    882|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|    882|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 4499|    882|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|    882|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 4500|    882|            }
  |  | 4501|    882|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    882|    { \
  |  |  |  |  201|    882|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    882|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    882|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    882|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    882|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    882|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    882|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    882|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 882]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    882|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    882|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    882|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    882|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    882|    }
  |  |  ------------------
  |  |  |  Branch (4501:13): [True: 882, False: 0]
  |  |  ------------------
  |  | 4502|    882|        }
  |  | 4503|       |
  |  | 4504|    458|        TARGET(CALL_PY_GENERAL) {
  |  |  ------------------
  |  |  |  |  132|    458|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4505|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4506|       |            int opcode = CALL_PY_GENERAL;
  |  | 4507|       |            (void)(opcode);
  |  | 4508|       |            #endif
  |  | 4509|    458|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4510|    458|            (void)this_instr;
  |  | 4511|    458|            frame->instr_ptr = next_instr;
  |  | 4512|    458|            next_instr += 4;
  |  | 4513|    458|            INSTRUCTION_STATS(CALL_PY_GENERAL);
  |  |  ------------------
  |  |  |  |   71|    458|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4514|    458|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4515|    458|            _PyStackRef callable;
  |  | 4516|    458|            _PyStackRef self_or_null;
  |  | 4517|    458|            _PyStackRef *args;
  |  | 4518|    458|            _PyStackRef new_frame;
  |  | 4519|       |            /* Skip 1 cache entry */
  |  | 4520|       |            // _CHECK_PEP_523
  |  | 4521|    458|            {
  |  | 4522|    458|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|    458|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 458]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4523|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4524|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4524:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4525|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4526|      0|                }
  |  | 4527|    458|            }
  |  | 4528|       |            // _CHECK_FUNCTION_VERSION
  |  | 4529|    458|            {
  |  | 4530|    458|                callable = stack_pointer[-2 - oparg];
  |  | 4531|    458|                uint32_t func_version = read_u32(&this_instr[2].cache);
  |  | 4532|    458|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4533|    458|                if (!PyFunction_Check(callable_o)) {
  |  |  ------------------
  |  |  |  |   68|    458|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    458|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    458|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    458|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4533:21): [True: 0, False: 458]
  |  |  ------------------
  |  | 4534|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4535|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4535:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4536|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4537|      0|                }
  |  | 4538|    458|                PyFunctionObject *func = (PyFunctionObject *)callable_o;
  |  | 4539|    458|                if (func->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (4539:21): [True: 4, False: 454]
  |  |  ------------------
  |  | 4540|      4|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      4|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4541|      4|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4541:21): [True: 4, False: 0]
  |  |  ------------------
  |  | 4542|      4|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      4|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4543|      0|                }
  |  | 4544|    458|            }
  |  | 4545|       |            // _CHECK_RECURSION_REMAINING
  |  | 4546|    454|            {
  |  | 4547|    454|                if (tstate->py_recursion_remaining <= 1) {
  |  |  ------------------
  |  |  |  Branch (4547:21): [True: 0, False: 454]
  |  |  ------------------
  |  | 4548|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4549|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4549:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4550|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4551|      0|                }
  |  | 4552|    454|            }
  |  | 4553|       |            // _PY_FRAME_GENERAL
  |  | 4554|    454|            {
  |  | 4555|    454|                args = &stack_pointer[-oparg];
  |  | 4556|    454|                self_or_null = stack_pointer[-1 - oparg];
  |  | 4557|    454|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4558|    454|                int total_args = oparg;
  |  | 4559|    454|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|    454|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    454|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    454|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4559:21): [True: 96, False: 358]
  |  |  ------------------
  |  | 4560|     96|                    args--;
  |  | 4561|     96|                    total_args++;
  |  | 4562|     96|                }
  |  | 4563|    454|                assert(Py_TYPE(callable_o) == &PyFunction_Type);
  |  |  ------------------
  |  |  |  Branch (4563:17): [True: 454, False: 0]
  |  |  ------------------
  |  | 4564|    454|                int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|    454|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    454|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    454|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4565|    454|                PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|    454|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                               PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4565:36): [True: 454, False: 0]
  |  |  ------------------
  |  | 4566|    454|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4567|    454|                _PyInterpreterFrame *temp = _PyEvalFramePushAndInit(
  |  | 4568|    454|                    tstate, callable, locals,
  |  | 4569|    454|                    args, total_args, NULL, frame
  |  | 4570|    454|                );
  |  | 4571|    454|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4572|    454|                stack_pointer += -2 - oparg;
  |  | 4573|    454|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    454|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4574|    454|                if (temp == NULL) {
  |  |  ------------------
  |  |  |  Branch (4574:21): [True: 0, False: 454]
  |  |  ------------------
  |  | 4575|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4576|      0|                }
  |  | 4577|    454|                new_frame = PyStackRef_Wrap(temp);
  |  | 4578|    454|            }
  |  | 4579|       |            // _SAVE_RETURN_OFFSET
  |  | 4580|      0|            {
  |  | 4581|    454|                #if TIER_ONE
  |  | 4582|    454|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 4583|    454|                #endif
  |  | 4584|       |                #if TIER_TWO
  |  | 4585|       |                frame->return_offset = oparg;
  |  | 4586|       |                #endif
  |  | 4587|    454|            }
  |  | 4588|       |            // _PUSH_FRAME
  |  | 4589|    454|            {
  |  | 4590|    454|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (4590:17): [True: 454, False: 0]
  |  |  ------------------
  |  | 4591|    454|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 4592|    454|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4593|    454|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (4593:17): [True: 454, False: 0]
  |  |  |  Branch (4593:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4594|    454|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|    454|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 4595|    454|                frame = tstate->current_frame = temp;
  |  | 4596|    454|                tstate->py_recursion_remaining--;
  |  | 4597|    454|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|    454|#define LOAD_SP() \
  |  |  |  |  426|    454|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 4598|    454|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|    454|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|    454|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|    454|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 454]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4599|    454|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|    454|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 4600|    454|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|    454|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 4601|    454|            }
  |  | 4602|    454|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    454|    { \
  |  |  |  |  201|    454|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    454|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    454|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    454|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    454|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    454|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    454|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    454|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 454]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    454|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    454|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    454|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    454|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    454|    }
  |  |  ------------------
  |  |  |  Branch (4602:13): [True: 454, False: 0]
  |  |  ------------------
  |  | 4603|    454|        }
  |  | 4604|       |
  |  | 4605|      0|        TARGET(CALL_STR_1) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4606|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4607|       |            int opcode = CALL_STR_1;
  |  | 4608|       |            (void)(opcode);
  |  | 4609|       |            #endif
  |  | 4610|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4611|      0|            (void)this_instr;
  |  | 4612|      0|            frame->instr_ptr = next_instr;
  |  | 4613|      0|            next_instr += 4;
  |  | 4614|      0|            INSTRUCTION_STATS(CALL_STR_1);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4615|      0|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4616|      0|            _PyStackRef null;
  |  | 4617|      0|            _PyStackRef callable;
  |  | 4618|      0|            _PyStackRef arg;
  |  | 4619|      0|            _PyStackRef res;
  |  | 4620|      0|            _PyStackRef a;
  |  | 4621|      0|            _PyStackRef value;
  |  | 4622|       |            /* Skip 1 cache entry */
  |  | 4623|       |            /* Skip 2 cache entries */
  |  | 4624|       |            // _GUARD_NOS_NULL
  |  | 4625|      0|            {
  |  | 4626|      0|                null = stack_pointer[-2];
  |  | 4627|      0|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4627:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4628|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4629|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4629:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4630|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4631|      0|                }
  |  | 4632|      0|            }
  |  | 4633|       |            // _GUARD_CALLABLE_STR_1
  |  | 4634|      0|            {
  |  | 4635|      0|                callable = stack_pointer[-3];
  |  | 4636|      0|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4637|      0|                if (callable_o != (PyObject *)&PyUnicode_Type) {
  |  |  ------------------
  |  |  |  Branch (4637:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4638|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4639|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4639:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4640|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4641|      0|                }
  |  | 4642|      0|            }
  |  | 4643|       |            // _CALL_STR_1
  |  | 4644|      0|            {
  |  | 4645|      0|                arg = stack_pointer[-1];
  |  | 4646|      0|                PyObject *arg_o = PyStackRef_AsPyObjectBorrow(arg);
  |  | 4647|      0|                assert(oparg == 1);
  |  |  ------------------
  |  |  |  Branch (4647:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4648|      0|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 4649|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4650|      0|                PyObject *res_o = PyObject_Str(arg_o);
  |  | 4651|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4652|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (4652:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4653|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4654|      0|                }
  |  | 4655|      0|                a = arg;
  |  | 4656|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 4657|      0|            }
  |  | 4658|       |            // _POP_TOP
  |  | 4659|      0|            {
  |  | 4660|      0|                value = a;
  |  | 4661|      0|                stack_pointer[-3] = res;
  |  | 4662|      0|                stack_pointer += -2;
  |  | 4663|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4664|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4665|      0|                PyStackRef_XCLOSE(value);
  |  | 4666|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4667|      0|            }
  |  | 4668|       |            // _CHECK_PERIODIC_AT_END
  |  | 4669|      0|            {
  |  | 4670|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4671|      0|                int err = check_periodics(tstate);
  |  | 4672|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4673|      0|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (4673:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4674|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4675|      0|                }
  |  | 4676|      0|            }
  |  | 4677|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (4677:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 4678|      0|        }
  |  | 4679|       |
  |  | 4680|      0|        TARGET(CALL_TUPLE_1) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4681|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4682|       |            int opcode = CALL_TUPLE_1;
  |  | 4683|       |            (void)(opcode);
  |  | 4684|       |            #endif
  |  | 4685|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4686|      0|            (void)this_instr;
  |  | 4687|      0|            frame->instr_ptr = next_instr;
  |  | 4688|      0|            next_instr += 4;
  |  | 4689|      0|            INSTRUCTION_STATS(CALL_TUPLE_1);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4690|      0|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4691|      0|            _PyStackRef null;
  |  | 4692|      0|            _PyStackRef callable;
  |  | 4693|      0|            _PyStackRef arg;
  |  | 4694|      0|            _PyStackRef res;
  |  | 4695|      0|            _PyStackRef a;
  |  | 4696|      0|            _PyStackRef value;
  |  | 4697|       |            /* Skip 1 cache entry */
  |  | 4698|       |            /* Skip 2 cache entries */
  |  | 4699|       |            // _GUARD_NOS_NULL
  |  | 4700|      0|            {
  |  | 4701|      0|                null = stack_pointer[-2];
  |  | 4702|      0|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4702:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4703|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4704|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4704:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4705|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4706|      0|                }
  |  | 4707|      0|            }
  |  | 4708|       |            // _GUARD_CALLABLE_TUPLE_1
  |  | 4709|      0|            {
  |  | 4710|      0|                callable = stack_pointer[-3];
  |  | 4711|      0|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4712|      0|                if (callable_o != (PyObject *)&PyTuple_Type) {
  |  |  ------------------
  |  |  |  Branch (4712:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4713|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4714|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4714:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4715|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4716|      0|                }
  |  | 4717|      0|            }
  |  | 4718|       |            // _CALL_TUPLE_1
  |  | 4719|      0|            {
  |  | 4720|      0|                arg = stack_pointer[-1];
  |  | 4721|      0|                PyObject *arg_o = PyStackRef_AsPyObjectBorrow(arg);
  |  | 4722|      0|                assert(oparg == 1);
  |  |  ------------------
  |  |  |  Branch (4722:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4723|      0|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 4724|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4725|      0|                PyObject *res_o = PySequence_Tuple(arg_o);
  |  | 4726|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4727|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (4727:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4728|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4729|      0|                }
  |  | 4730|      0|                a = arg;
  |  | 4731|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 4732|      0|            }
  |  | 4733|       |            // _POP_TOP
  |  | 4734|      0|            {
  |  | 4735|      0|                value = a;
  |  | 4736|      0|                stack_pointer[-3] = res;
  |  | 4737|      0|                stack_pointer += -2;
  |  | 4738|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4739|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4740|      0|                PyStackRef_XCLOSE(value);
  |  | 4741|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4742|      0|            }
  |  | 4743|       |            // _CHECK_PERIODIC_AT_END
  |  | 4744|      0|            {
  |  | 4745|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4746|      0|                int err = check_periodics(tstate);
  |  | 4747|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4748|      0|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (4748:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4749|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4750|      0|                }
  |  | 4751|      0|            }
  |  | 4752|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (4752:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 4753|      0|        }
  |  | 4754|       |
  |  | 4755|     52|        TARGET(CALL_TYPE_1) {
  |  |  ------------------
  |  |  |  |  132|     52|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4756|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4757|       |            int opcode = CALL_TYPE_1;
  |  | 4758|       |            (void)(opcode);
  |  | 4759|       |            #endif
  |  | 4760|     52|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4761|     52|            (void)this_instr;
  |  | 4762|     52|            frame->instr_ptr = next_instr;
  |  | 4763|     52|            next_instr += 4;
  |  | 4764|     52|            INSTRUCTION_STATS(CALL_TYPE_1);
  |  |  ------------------
  |  |  |  |   71|     52|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4765|     52|            static_assert(INLINE_CACHE_ENTRIES_CALL == 3, "incorrect cache size");
  |  | 4766|     52|            _PyStackRef null;
  |  | 4767|     52|            _PyStackRef callable;
  |  | 4768|     52|            _PyStackRef arg;
  |  | 4769|     52|            _PyStackRef res;
  |  | 4770|     52|            _PyStackRef a;
  |  | 4771|     52|            _PyStackRef value;
  |  | 4772|       |            /* Skip 1 cache entry */
  |  | 4773|       |            /* Skip 2 cache entries */
  |  | 4774|       |            // _GUARD_NOS_NULL
  |  | 4775|     52|            {
  |  | 4776|     52|                null = stack_pointer[-2];
  |  | 4777|     52|                if (!PyStackRef_IsNull(null)) {
  |  |  ------------------
  |  |  |  |  470|     52|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     52|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     52|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4777:21): [True: 0, False: 52]
  |  |  ------------------
  |  | 4778|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4779|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4779:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4780|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4781|      0|                }
  |  | 4782|     52|            }
  |  | 4783|       |            // _GUARD_CALLABLE_TYPE_1
  |  | 4784|     52|            {
  |  | 4785|     52|                callable = stack_pointer[-3];
  |  | 4786|     52|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 4787|     52|                if (callable_o != (PyObject *)&PyType_Type) {
  |  |  ------------------
  |  |  |  Branch (4787:21): [True: 0, False: 52]
  |  |  ------------------
  |  | 4788|      0|                    UPDATE_MISS_STATS(CALL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 4789|      0|                    assert(_PyOpcode_Deopt[opcode] == (CALL));
  |  |  ------------------
  |  |  |  Branch (4789:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 4790|      0|                    JUMP_TO_PREDICTED(CALL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 4791|      0|                }
  |  | 4792|     52|            }
  |  | 4793|       |            // _CALL_TYPE_1
  |  | 4794|     52|            {
  |  | 4795|     52|                arg = stack_pointer[-1];
  |  | 4796|     52|                PyObject *arg_o = PyStackRef_AsPyObjectBorrow(arg);
  |  | 4797|     52|                assert(oparg == 1);
  |  |  ------------------
  |  |  |  Branch (4797:17): [True: 52, False: 0]
  |  |  ------------------
  |  | 4798|     52|                STAT_INC(CALL, hit);
  |  |  ------------------
  |  |  |  |   73|     52|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 4799|     52|                a = arg;
  |  | 4800|     52|                res = PyStackRef_FromPyObjectNew(Py_TYPE(arg_o));
  |  |  ------------------
  |  |  |  |  599|     52|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     52|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4801|     52|            }
  |  | 4802|       |            // _POP_TOP
  |  | 4803|      0|            {
  |  | 4804|     52|                value = a;
  |  | 4805|     52|                stack_pointer[-3] = res;
  |  | 4806|     52|                stack_pointer += -2;
  |  | 4807|     52|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     52|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4808|     52|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4809|     52|                PyStackRef_XCLOSE(value);
  |  | 4810|     52|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4811|     52|            }
  |  | 4812|     52|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     52|    { \
  |  |  |  |  201|     52|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     52|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     52|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     52|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     52|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     52|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     52|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     52|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 52]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     52|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     52|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     52|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     52|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     52|    }
  |  |  ------------------
  |  |  |  Branch (4812:13): [True: 52, False: 0]
  |  |  ------------------
  |  | 4813|     52|        }
  |  | 4814|       |
  |  | 4815|      0|        TARGET(CHECK_EG_MATCH) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4816|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4817|       |            int opcode = CHECK_EG_MATCH;
  |  | 4818|       |            (void)(opcode);
  |  | 4819|       |            #endif
  |  | 4820|      0|            frame->instr_ptr = next_instr;
  |  | 4821|      0|            next_instr += 1;
  |  | 4822|      0|            INSTRUCTION_STATS(CHECK_EG_MATCH);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4823|      0|            _PyStackRef exc_value_st;
  |  | 4824|      0|            _PyStackRef match_type_st;
  |  | 4825|      0|            _PyStackRef rest;
  |  | 4826|      0|            _PyStackRef match;
  |  | 4827|      0|            match_type_st = stack_pointer[-1];
  |  | 4828|      0|            exc_value_st = stack_pointer[-2];
  |  | 4829|      0|            PyObject *exc_value = PyStackRef_AsPyObjectBorrow(exc_value_st);
  |  | 4830|      0|            PyObject *match_type = PyStackRef_AsPyObjectBorrow(match_type_st);
  |  | 4831|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4832|      0|            int err = _PyEval_CheckExceptStarTypeValid(tstate, match_type);
  |  | 4833|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4834|      0|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (4834:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4835|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4836|      0|                _PyStackRef tmp = match_type_st;
  |  | 4837|      0|                match_type_st = PyStackRef_NULL;
  |  | 4838|      0|                stack_pointer[-1] = match_type_st;
  |  | 4839|      0|                PyStackRef_CLOSE(tmp);
  |  | 4840|      0|                tmp = exc_value_st;
  |  | 4841|      0|                exc_value_st = PyStackRef_NULL;
  |  | 4842|      0|                stack_pointer[-2] = exc_value_st;
  |  | 4843|      0|                PyStackRef_CLOSE(tmp);
  |  | 4844|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4845|      0|                stack_pointer += -2;
  |  | 4846|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4847|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4848|      0|            }
  |  | 4849|      0|            PyObject *match_o = NULL;
  |  | 4850|      0|            PyObject *rest_o = NULL;
  |  | 4851|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4852|      0|            int res = _PyEval_ExceptionGroupMatch(frame, exc_value, match_type,
  |  | 4853|      0|                &match_o, &rest_o);
  |  | 4854|      0|            _PyStackRef tmp = match_type_st;
  |  | 4855|      0|            match_type_st = PyStackRef_NULL;
  |  | 4856|      0|            stack_pointer[-1] = match_type_st;
  |  | 4857|      0|            PyStackRef_CLOSE(tmp);
  |  | 4858|      0|            tmp = exc_value_st;
  |  | 4859|      0|            exc_value_st = PyStackRef_NULL;
  |  | 4860|      0|            stack_pointer[-2] = exc_value_st;
  |  | 4861|      0|            PyStackRef_CLOSE(tmp);
  |  | 4862|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4863|      0|            stack_pointer += -2;
  |  | 4864|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4865|      0|            if (res < 0) {
  |  |  ------------------
  |  |  |  Branch (4865:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4866|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4867|      0|            }
  |  | 4868|      0|            assert((match_o == NULL) == (rest_o == NULL));
  |  |  ------------------
  |  |  |  Branch (4868:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 4869|      0|            if (match_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (4869:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4870|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4871|      0|            }
  |  | 4872|      0|            if (!Py_IsNone(match_o)) {
  |  |  ------------------
  |  |  |  |  621|      0|#define Py_IsNone(x) Py_Is((x), Py_None)
  |  |  |  |  ------------------
  |  |  |  |  |  |  187|      0|#define Py_Is(x, y) ((x) == (y))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4872:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4873|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4874|      0|                PyErr_SetHandledException(match_o);
  |  | 4875|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4876|      0|            }
  |  | 4877|      0|            rest = PyStackRef_FromPyObjectSteal(rest_o);
  |  | 4878|      0|            match = PyStackRef_FromPyObjectSteal(match_o);
  |  | 4879|      0|            stack_pointer[0] = rest;
  |  | 4880|      0|            stack_pointer[1] = match;
  |  | 4881|      0|            stack_pointer += 2;
  |  | 4882|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4883|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (4883:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 4884|      0|        }
  |  | 4885|       |
  |  | 4886|    178|        TARGET(CHECK_EXC_MATCH) {
  |  |  ------------------
  |  |  |  |  132|    178|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4887|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4888|       |            int opcode = CHECK_EXC_MATCH;
  |  | 4889|       |            (void)(opcode);
  |  | 4890|       |            #endif
  |  | 4891|    178|            frame->instr_ptr = next_instr;
  |  | 4892|    178|            next_instr += 1;
  |  | 4893|    178|            INSTRUCTION_STATS(CHECK_EXC_MATCH);
  |  |  ------------------
  |  |  |  |   71|    178|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4894|    178|            _PyStackRef left;
  |  | 4895|    178|            _PyStackRef right;
  |  | 4896|    178|            _PyStackRef b;
  |  | 4897|    178|            right = stack_pointer[-1];
  |  | 4898|    178|            left = stack_pointer[-2];
  |  | 4899|    178|            PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 4900|    178|            PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 4901|    178|            assert(PyExceptionInstance_Check(left_o));
  |  |  ------------------
  |  |  |  Branch (4901:13): [True: 178, False: 0]
  |  |  ------------------
  |  | 4902|    178|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4903|    178|            int err = _PyEval_CheckExceptTypeValid(tstate, right_o);
  |  | 4904|    178|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4905|    178|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (4905:17): [True: 0, False: 178]
  |  |  ------------------
  |  | 4906|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4907|      0|            }
  |  | 4908|    178|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4909|    178|            int res = PyErr_GivenExceptionMatches(left_o, right_o);
  |  | 4910|    178|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4911|    178|            stack_pointer += -1;
  |  | 4912|    178|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    178|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4913|    178|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4914|    178|            PyStackRef_CLOSE(right);
  |  | 4915|    178|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4916|    178|            b = res ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|    176|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    176|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                           b = res ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    180|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      2|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (4916:17): [True: 176, False: 2]
  |  |  ------------------
  |  | 4917|    178|            stack_pointer[0] = b;
  |  | 4918|    178|            stack_pointer += 1;
  |  | 4919|    178|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    178|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4920|    178|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    178|    { \
  |  |  |  |  201|    178|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    178|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    178|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    178|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    178|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    178|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    178|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    178|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 178]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    178|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    178|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    178|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    178|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    178|    }
  |  |  ------------------
  |  |  |  Branch (4920:13): [True: 178, False: 0]
  |  |  ------------------
  |  | 4921|    178|        }
  |  | 4922|       |
  |  | 4923|      0|        TARGET(CLEANUP_THROW) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4924|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4925|       |            int opcode = CLEANUP_THROW;
  |  | 4926|       |            (void)(opcode);
  |  | 4927|       |            #endif
  |  | 4928|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 4929|      0|            (void)this_instr;
  |  | 4930|      0|            frame->instr_ptr = next_instr;
  |  | 4931|      0|            next_instr += 1;
  |  | 4932|      0|            INSTRUCTION_STATS(CLEANUP_THROW);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4933|      0|            _PyStackRef sub_iter;
  |  | 4934|      0|            _PyStackRef null_in;
  |  | 4935|      0|            _PyStackRef last_sent_val;
  |  | 4936|      0|            _PyStackRef exc_value_st;
  |  | 4937|      0|            _PyStackRef none;
  |  | 4938|      0|            _PyStackRef null_out;
  |  | 4939|      0|            _PyStackRef value;
  |  | 4940|      0|            exc_value_st = stack_pointer[-1];
  |  | 4941|      0|            last_sent_val = stack_pointer[-2];
  |  | 4942|      0|            null_in = stack_pointer[-3];
  |  | 4943|      0|            sub_iter = stack_pointer[-4];
  |  | 4944|      0|            PyObject *exc_value = PyStackRef_AsPyObjectBorrow(exc_value_st);
  |  | 4945|      0|            #if !_Py_TAIL_CALL_INTERP
  |  | 4946|      0|            assert(throwflag);
  |  |  ------------------
  |  |  |  Branch (4946:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 4947|      0|            #endif
  |  | 4948|      0|            assert(exc_value && PyExceptionInstance_Check(exc_value));
  |  |  ------------------
  |  |  |  Branch (4948:13): [True: 0, False: 0]
  |  |  |  Branch (4948:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 4949|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4950|      0|            int matches = PyErr_GivenExceptionMatches(exc_value, PyExc_StopIteration);
  |  | 4951|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4952|      0|            if (matches) {
  |  |  ------------------
  |  |  |  Branch (4952:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 4953|      0|                value = PyStackRef_FromPyObjectNew(((PyStopIterationObject *)exc_value)->value);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4954|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4955|      0|                _PyStackRef tmp = sub_iter;
  |  | 4956|      0|                sub_iter = value;
  |  | 4957|      0|                stack_pointer[-4] = sub_iter;
  |  | 4958|      0|                PyStackRef_CLOSE(tmp);
  |  | 4959|      0|                tmp = exc_value_st;
  |  | 4960|      0|                exc_value_st = PyStackRef_NULL;
  |  | 4961|      0|                stack_pointer[-1] = exc_value_st;
  |  | 4962|      0|                PyStackRef_CLOSE(tmp);
  |  | 4963|      0|                tmp = last_sent_val;
  |  | 4964|      0|                last_sent_val = PyStackRef_NULL;
  |  | 4965|      0|                stack_pointer[-2] = last_sent_val;
  |  | 4966|      0|                PyStackRef_CLOSE(tmp);
  |  | 4967|      0|                tmp = null_in;
  |  | 4968|      0|                null_in = PyStackRef_NULL;
  |  | 4969|      0|                stack_pointer[-3] = null_in;
  |  | 4970|      0|                PyStackRef_XCLOSE(tmp);
  |  | 4971|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 4972|      0|                stack_pointer += -4;
  |  | 4973|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4974|      0|                null_out = null_in;
  |  | 4975|      0|                none = PyStackRef_None;
  |  |  ------------------
  |  |  |  |  473|      0|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4976|      0|            }
  |  | 4977|      0|            else {
  |  | 4978|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 4979|      0|                _PyErr_SetRaisedException(tstate, Py_NewRef(exc_value));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4980|      0|                monitor_reraise(tstate, frame, this_instr);
  |  | 4981|      0|                JUMP_TO_LABEL(exception_unwind);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 4982|      0|            }
  |  | 4983|      0|            stack_pointer[0] = none;
  |  | 4984|      0|            stack_pointer[1] = null_out;
  |  | 4985|      0|            stack_pointer[2] = value;
  |  | 4986|      0|            stack_pointer += 3;
  |  | 4987|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 4988|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (4988:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 4989|      0|        }
  |  | 4990|       |
  |  | 4991|    292|        TARGET(COMPARE_OP) {
  |  |  ------------------
  |  |  |  |  132|    292|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 4992|       |            #if _Py_TAIL_CALL_INTERP
  |  | 4993|       |            int opcode = COMPARE_OP;
  |  | 4994|       |            (void)(opcode);
  |  | 4995|       |            #endif
  |  | 4996|    292|            frame->instr_ptr = next_instr;
  |  | 4997|    292|            next_instr += 2;
  |  | 4998|    292|            INSTRUCTION_STATS(COMPARE_OP);
  |  |  ------------------
  |  |  |  |   71|    292|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 4999|    292|            PREDICTED_COMPARE_OP:;
  |  | 5000|    292|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  | 5001|    292|            (void)this_instr;
  |  | 5002|    292|            _PyStackRef left;
  |  | 5003|    292|            _PyStackRef right;
  |  | 5004|    292|            _PyStackRef res;
  |  | 5005|       |            // _SPECIALIZE_COMPARE_OP
  |  | 5006|    292|            {
  |  | 5007|    292|                right = stack_pointer[-1];
  |  | 5008|    292|                left = stack_pointer[-2];
  |  | 5009|    292|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 5010|    292|                (void)counter;
  |  | 5011|    292|                #if ENABLE_SPECIALIZATION
  |  | 5012|    292|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|    292|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 36, False: 256]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5013|     36|                    next_instr = this_instr;
  |  | 5014|     36|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5015|     36|                    _Py_Specialize_CompareOp(left, right, next_instr, oparg);
  |  | 5016|     36|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5017|     36|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     36|    { \
  |  |  |  |  217|     36|        opcode = next_instr->op.code; \
  |  |  |  |  218|     36|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     36|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     36|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     36|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     36|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     36|    }
  |  |  ------------------
  |  | 5018|     36|                }
  |  | 5019|    292|                OPCODE_DEFERRED_INC(COMPARE_OP);
  |  |  ------------------
  |  |  |  |   90|    292|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 5020|    292|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|    292|    do { \
  |  |  |  |  358|    292|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|    292|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 292]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5021|    292|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 5022|    292|            }
  |  | 5023|       |            // _COMPARE_OP
  |  | 5024|    292|            {
  |  | 5025|    292|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5026|    292|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 5027|    292|                assert((oparg >> 5) <= Py_GE);
  |  |  ------------------
  |  |  |  Branch (5027:17): [True: 256, False: 36]
  |  |  ------------------
  |  | 5028|    256|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5029|    256|                PyObject *res_o = PyObject_RichCompare(left_o, right_o, oparg >> 5);
  |  | 5030|    256|                _PyStackRef tmp = right;
  |  | 5031|    256|                right = PyStackRef_NULL;
  |  | 5032|    256|                stack_pointer[-1] = right;
  |  | 5033|    256|                PyStackRef_CLOSE(tmp);
  |  | 5034|    256|                tmp = left;
  |  | 5035|    256|                left = PyStackRef_NULL;
  |  | 5036|    256|                stack_pointer[-2] = left;
  |  | 5037|    256|                PyStackRef_CLOSE(tmp);
  |  | 5038|    256|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5039|    256|                stack_pointer += -2;
  |  | 5040|    256|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    256|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5041|    256|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (5041:21): [True: 0, False: 256]
  |  |  ------------------
  |  | 5042|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5043|      0|                }
  |  | 5044|    256|                if (oparg & 16) {
  |  |  ------------------
  |  |  |  Branch (5044:21): [True: 246, False: 10]
  |  |  ------------------
  |  | 5045|    246|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5046|    246|                    int res_bool = PyObject_IsTrue(res_o);
  |  | 5047|    246|                    Py_DECREF(res_o);
  |  |  ------------------
  |  |  |  |   80|    246|    do { \
  |  |  |  |   81|    246|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    246|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    246|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|    246|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|    246|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    246|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    246|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 246, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|    246|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|    246|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|    246|            break; \
  |  |  |  |   85|    246|        } \
  |  |  |  |   86|    246|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5048|    246|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5049|    246|                    if (res_bool < 0) {
  |  |  ------------------
  |  |  |  Branch (5049:25): [True: 0, False: 246]
  |  |  ------------------
  |  | 5050|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5051|      0|                    }
  |  | 5052|    246|                    res = res_bool ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|    100|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    100|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                                   res = res_bool ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    392|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    146|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5052:27): [True: 100, False: 146]
  |  |  ------------------
  |  | 5053|    246|                }
  |  | 5054|     10|                else {
  |  | 5055|     10|                    res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 5056|     10|                }
  |  | 5057|    256|            }
  |  | 5058|    256|            stack_pointer[0] = res;
  |  | 5059|    256|            stack_pointer += 1;
  |  | 5060|    256|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    256|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5061|    256|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    256|    { \
  |  |  |  |  201|    256|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    256|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    256|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    256|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    256|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    256|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    256|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    256|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 256]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    256|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    256|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    256|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    256|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    256|    }
  |  |  ------------------
  |  |  |  Branch (5061:13): [True: 256, False: 0]
  |  |  ------------------
  |  | 5062|    256|        }
  |  | 5063|       |
  |  | 5064|      0|        TARGET(COMPARE_OP_FLOAT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5065|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5066|       |            int opcode = COMPARE_OP_FLOAT;
  |  | 5067|       |            (void)(opcode);
  |  | 5068|       |            #endif
  |  | 5069|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 5070|      0|            (void)this_instr;
  |  | 5071|      0|            frame->instr_ptr = next_instr;
  |  | 5072|      0|            next_instr += 2;
  |  | 5073|      0|            INSTRUCTION_STATS(COMPARE_OP_FLOAT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5074|      0|            static_assert(INLINE_CACHE_ENTRIES_COMPARE_OP == 1, "incorrect cache size");
  |  | 5075|      0|            _PyStackRef value;
  |  | 5076|      0|            _PyStackRef left;
  |  | 5077|      0|            _PyStackRef right;
  |  | 5078|      0|            _PyStackRef res;
  |  | 5079|      0|            _PyStackRef l;
  |  | 5080|      0|            _PyStackRef r;
  |  | 5081|       |            // _GUARD_TOS_FLOAT
  |  | 5082|      0|            {
  |  | 5083|      0|                value = stack_pointer[-1];
  |  | 5084|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 5085|      0|                if (!PyFloat_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5085:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5086|      0|                    UPDATE_MISS_STATS(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5087|      0|                    assert(_PyOpcode_Deopt[opcode] == (COMPARE_OP));
  |  |  ------------------
  |  |  |  Branch (5087:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5088|      0|                    JUMP_TO_PREDICTED(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5089|      0|                }
  |  | 5090|      0|            }
  |  | 5091|       |            // _GUARD_NOS_FLOAT
  |  | 5092|      0|            {
  |  | 5093|      0|                left = stack_pointer[-2];
  |  | 5094|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5095|      0|                if (!PyFloat_CheckExact(left_o)) {
  |  |  ------------------
  |  |  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5095:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5096|      0|                    UPDATE_MISS_STATS(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5097|      0|                    assert(_PyOpcode_Deopt[opcode] == (COMPARE_OP));
  |  |  ------------------
  |  |  |  Branch (5097:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5098|      0|                    JUMP_TO_PREDICTED(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5099|      0|                }
  |  | 5100|      0|            }
  |  | 5101|       |            /* Skip 1 cache entry */
  |  | 5102|       |            // _COMPARE_OP_FLOAT
  |  | 5103|      0|            {
  |  | 5104|      0|                right = value;
  |  | 5105|      0|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5106|      0|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 5107|      0|                STAT_INC(COMPARE_OP, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 5108|      0|                double dleft = PyFloat_AS_DOUBLE(left_o);
  |  |  ------------------
  |  |  |  |   18|      0|#define PyFloat_AS_DOUBLE(op) PyFloat_AS_DOUBLE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5109|      0|                double dright = PyFloat_AS_DOUBLE(right_o);
  |  |  ------------------
  |  |  |  |   18|      0|#define PyFloat_AS_DOUBLE(op) PyFloat_AS_DOUBLE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5110|      0|                int sign_ish = COMPARISON_BIT(dleft, dright);
  |  |  ------------------
  |  |  |  |  523|      0|#define COMPARISON_BIT(x, y) (1 << (2 * ((x) >= (y)) + ((x) <= (y))))
  |  |  ------------------
  |  | 5111|      0|                l = left;
  |  | 5112|      0|                r = right;
  |  | 5113|      0|                res = (sign_ish & oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|      0|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = (sign_ish & oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|      0|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5113:23): [True: 0, False: 0]
  |  |  ------------------
  |  | 5114|      0|            }
  |  | 5115|       |            // _POP_TOP_FLOAT
  |  | 5116|      0|            {
  |  | 5117|      0|                value = r;
  |  | 5118|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (5118:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5119|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  | 5120|      0|            }
  |  | 5121|       |            // _POP_TOP_FLOAT
  |  | 5122|      0|            {
  |  | 5123|      0|                value = l;
  |  | 5124|      0|                assert(PyFloat_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (5124:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5125|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyFloat_ExactDealloc);
  |  | 5126|      0|            }
  |  | 5127|      0|            stack_pointer[-2] = res;
  |  | 5128|      0|            stack_pointer += -1;
  |  | 5129|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5130|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (5130:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5131|      0|        }
  |  | 5132|       |
  |  | 5133|    234|        TARGET(COMPARE_OP_INT) {
  |  |  ------------------
  |  |  |  |  132|    234|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5134|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5135|       |            int opcode = COMPARE_OP_INT;
  |  | 5136|       |            (void)(opcode);
  |  | 5137|       |            #endif
  |  | 5138|    234|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 5139|    234|            (void)this_instr;
  |  | 5140|    234|            frame->instr_ptr = next_instr;
  |  | 5141|    234|            next_instr += 2;
  |  | 5142|    234|            INSTRUCTION_STATS(COMPARE_OP_INT);
  |  |  ------------------
  |  |  |  |   71|    234|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5143|    234|            static_assert(INLINE_CACHE_ENTRIES_COMPARE_OP == 1, "incorrect cache size");
  |  | 5144|    234|            _PyStackRef value;
  |  | 5145|    234|            _PyStackRef left;
  |  | 5146|    234|            _PyStackRef right;
  |  | 5147|    234|            _PyStackRef res;
  |  | 5148|    234|            _PyStackRef l;
  |  | 5149|    234|            _PyStackRef r;
  |  | 5150|       |            // _GUARD_TOS_INT
  |  | 5151|    234|            {
  |  | 5152|    234|                value = stack_pointer[-1];
  |  | 5153|    234|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 5154|    234|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (5154:21): [True: 0, False: 234]
  |  |  ------------------
  |  | 5155|      0|                    UPDATE_MISS_STATS(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5156|      0|                    assert(_PyOpcode_Deopt[opcode] == (COMPARE_OP));
  |  |  ------------------
  |  |  |  Branch (5156:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5157|      0|                    JUMP_TO_PREDICTED(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5158|      0|                }
  |  | 5159|    234|            }
  |  | 5160|       |            // _GUARD_NOS_INT
  |  | 5161|    234|            {
  |  | 5162|    234|                left = stack_pointer[-2];
  |  | 5163|    234|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5164|    234|                if (!_PyLong_CheckExactAndCompact(left_o)) {
  |  |  ------------------
  |  |  |  Branch (5164:21): [True: 0, False: 234]
  |  |  ------------------
  |  | 5165|      0|                    UPDATE_MISS_STATS(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5166|      0|                    assert(_PyOpcode_Deopt[opcode] == (COMPARE_OP));
  |  |  ------------------
  |  |  |  Branch (5166:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5167|      0|                    JUMP_TO_PREDICTED(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5168|      0|                }
  |  | 5169|    234|            }
  |  | 5170|       |            /* Skip 1 cache entry */
  |  | 5171|       |            // _COMPARE_OP_INT
  |  | 5172|    234|            {
  |  | 5173|    234|                right = value;
  |  | 5174|    234|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5175|    234|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 5176|    234|                assert(_PyLong_IsCompact((PyLongObject *)left_o));
  |  |  ------------------
  |  |  |  Branch (5176:17): [True: 234, False: 0]
  |  |  ------------------
  |  | 5177|    234|                assert(_PyLong_IsCompact((PyLongObject *)right_o));
  |  |  ------------------
  |  |  |  Branch (5177:17): [True: 234, False: 0]
  |  |  ------------------
  |  | 5178|    234|                STAT_INC(COMPARE_OP, hit);
  |  |  ------------------
  |  |  |  |   73|    234|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 5179|    234|                assert(_PyLong_DigitCount((PyLongObject *)left_o) <= 1 &&
  |  |  ------------------
  |  |  |  Branch (5179:17): [True: 234, False: 0]
  |  |  |  Branch (5179:17): [True: 234, False: 0]
  |  |  ------------------
  |  | 5180|    234|                   _PyLong_DigitCount((PyLongObject *)right_o) <= 1);
  |  | 5181|    234|                Py_ssize_t ileft = _PyLong_CompactValue((PyLongObject *)left_o);
  |  | 5182|    234|                Py_ssize_t iright = _PyLong_CompactValue((PyLongObject *)right_o);
  |  | 5183|    234|                int sign_ish = COMPARISON_BIT(ileft, iright);
  |  |  ------------------
  |  |  |  |  523|    234|#define COMPARISON_BIT(x, y) (1 << (2 * ((x) >= (y)) + ((x) <= (y))))
  |  |  ------------------
  |  | 5184|    234|                l = left;
  |  | 5185|    234|                r = right;
  |  | 5186|    234|                res =  (sign_ish & oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|     68|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     68|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res =  (sign_ish & oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    400|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    166|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5186:24): [True: 68, False: 166]
  |  |  ------------------
  |  | 5187|    234|            }
  |  | 5188|       |            // _POP_TOP_INT
  |  | 5189|      0|            {
  |  | 5190|    234|                value = r;
  |  | 5191|    234|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (5191:17): [True: 234, False: 0]
  |  |  ------------------
  |  | 5192|    234|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  | 5193|    234|            }
  |  | 5194|       |            // _POP_TOP_INT
  |  | 5195|      0|            {
  |  | 5196|    234|                value = l;
  |  | 5197|    234|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (5197:17): [True: 234, False: 0]
  |  |  ------------------
  |  | 5198|    234|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  | 5199|    234|            }
  |  | 5200|      0|            stack_pointer[-2] = res;
  |  | 5201|    234|            stack_pointer += -1;
  |  | 5202|    234|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    234|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5203|    234|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    234|    { \
  |  |  |  |  201|    234|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    234|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    234|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    234|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    234|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    234|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    234|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    234|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 234]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    234|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    234|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    234|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    234|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    234|    }
  |  |  ------------------
  |  |  |  Branch (5203:13): [True: 234, False: 0]
  |  |  ------------------
  |  | 5204|    234|        }
  |  | 5205|       |
  |  | 5206|    800|        TARGET(COMPARE_OP_STR) {
  |  |  ------------------
  |  |  |  |  132|    800|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5207|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5208|       |            int opcode = COMPARE_OP_STR;
  |  | 5209|       |            (void)(opcode);
  |  | 5210|       |            #endif
  |  | 5211|    800|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 5212|    800|            (void)this_instr;
  |  | 5213|    800|            frame->instr_ptr = next_instr;
  |  | 5214|    800|            next_instr += 2;
  |  | 5215|    800|            INSTRUCTION_STATS(COMPARE_OP_STR);
  |  |  ------------------
  |  |  |  |   71|    800|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5216|    800|            static_assert(INLINE_CACHE_ENTRIES_COMPARE_OP == 1, "incorrect cache size");
  |  | 5217|    800|            _PyStackRef value;
  |  | 5218|    800|            _PyStackRef nos;
  |  | 5219|    800|            _PyStackRef left;
  |  | 5220|    800|            _PyStackRef right;
  |  | 5221|    800|            _PyStackRef res;
  |  | 5222|    800|            _PyStackRef l;
  |  | 5223|    800|            _PyStackRef r;
  |  | 5224|       |            // _GUARD_TOS_UNICODE
  |  | 5225|    800|            {
  |  | 5226|    800|                value = stack_pointer[-1];
  |  | 5227|    800|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 5228|    800|                if (!PyUnicode_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |  104|    800|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    800|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    800|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    800|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5228:21): [True: 0, False: 800]
  |  |  ------------------
  |  | 5229|      0|                    UPDATE_MISS_STATS(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5230|      0|                    assert(_PyOpcode_Deopt[opcode] == (COMPARE_OP));
  |  |  ------------------
  |  |  |  Branch (5230:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5231|      0|                    JUMP_TO_PREDICTED(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5232|      0|                }
  |  | 5233|    800|            }
  |  | 5234|       |            // _GUARD_NOS_UNICODE
  |  | 5235|    800|            {
  |  | 5236|    800|                nos = stack_pointer[-2];
  |  | 5237|    800|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  | 5238|    800|                if (!PyUnicode_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |  104|    800|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    800|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    800|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    800|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5238:21): [True: 0, False: 800]
  |  |  ------------------
  |  | 5239|      0|                    UPDATE_MISS_STATS(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5240|      0|                    assert(_PyOpcode_Deopt[opcode] == (COMPARE_OP));
  |  |  ------------------
  |  |  |  Branch (5240:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5241|      0|                    JUMP_TO_PREDICTED(COMPARE_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5242|      0|                }
  |  | 5243|    800|            }
  |  | 5244|       |            /* Skip 1 cache entry */
  |  | 5245|       |            // _COMPARE_OP_STR
  |  | 5246|    800|            {
  |  | 5247|    800|                right = value;
  |  | 5248|    800|                left = nos;
  |  | 5249|    800|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5250|    800|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 5251|    800|                STAT_INC(COMPARE_OP, hit);
  |  |  ------------------
  |  |  |  |   73|    800|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 5252|    800|                int eq = _PyUnicode_Equal(left_o, right_o);
  |  | 5253|    800|                assert((oparg >> 5) == Py_EQ || (oparg >> 5) == Py_NE);
  |  |  ------------------
  |  |  |  Branch (5253:17): [True: 22, False: 778]
  |  |  |  Branch (5253:17): [True: 778, False: 0]
  |  |  ------------------
  |  | 5254|    800|                l = left;
  |  | 5255|    800|                r = right;
  |  | 5256|    800|                assert(eq == 0 || eq == 1);
  |  |  ------------------
  |  |  |  Branch (5256:17): [True: 748, False: 52]
  |  |  |  Branch (5256:17): [True: 52, False: 0]
  |  |  ------------------
  |  | 5257|    800|                assert((oparg & 0xf) == COMPARISON_NOT_EQUALS || (oparg & 0xf) == COMPARISON_EQUALS);
  |  |  ------------------
  |  |  |  Branch (5257:17): [True: 778, False: 22]
  |  |  |  Branch (5257:17): [True: 22, False: 0]
  |  |  ------------------
  |  | 5258|    800|                assert(COMPARISON_NOT_EQUALS + 1 == COMPARISON_EQUALS);
  |  |  ------------------
  |  |  |  Branch (5258:17): [True: 800, Folded]
  |  |  ------------------
  |  | 5259|    800|                res = ((COMPARISON_NOT_EQUALS + eq) & oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  538|    800|#define COMPARISON_NOT_EQUALS (COMPARISON_UNORDERED | COMPARISON_LESS_THAN | COMPARISON_GREATER_THAN)
  |  |  |  |  ------------------
  |  |  |  |  |  |  532|    800|#define COMPARISON_UNORDERED 1
  |  |  |  |  ------------------
  |  |  |  |               #define COMPARISON_NOT_EQUALS (COMPARISON_UNORDERED | COMPARISON_LESS_THAN | COMPARISON_GREATER_THAN)
  |  |  |  |  ------------------
  |  |  |  |  |  |  534|    800|#define COMPARISON_LESS_THAN 2
  |  |  |  |  ------------------
  |  |  |  |               #define COMPARISON_NOT_EQUALS (COMPARISON_UNORDERED | COMPARISON_LESS_THAN | COMPARISON_GREATER_THAN)
  |  |  |  |  ------------------
  |  |  |  |  |  |  535|    800|#define COMPARISON_GREATER_THAN 4
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = ((COMPARISON_NOT_EQUALS + eq) & oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|    726|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    726|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = ((COMPARISON_NOT_EQUALS + eq) & oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    874|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     74|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5259:23): [True: 726, False: 74]
  |  |  ------------------
  |  | 5260|    800|            }
  |  | 5261|       |            // _POP_TOP_UNICODE
  |  | 5262|      0|            {
  |  | 5263|    800|                value = r;
  |  | 5264|    800|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (5264:17): [True: 800, False: 0]
  |  |  ------------------
  |  | 5265|    800|                PyStackRef_CLOSE_SPECIALIZED(value, _PyUnicode_ExactDealloc);
  |  | 5266|    800|            }
  |  | 5267|       |            // _POP_TOP_UNICODE
  |  | 5268|      0|            {
  |  | 5269|    800|                value = l;
  |  | 5270|    800|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (5270:17): [True: 800, False: 0]
  |  |  ------------------
  |  | 5271|    800|                PyStackRef_CLOSE_SPECIALIZED(value, _PyUnicode_ExactDealloc);
  |  | 5272|    800|            }
  |  | 5273|      0|            stack_pointer[-2] = res;
  |  | 5274|    800|            stack_pointer += -1;
  |  | 5275|    800|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    800|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5276|    800|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    800|    { \
  |  |  |  |  201|    800|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    800|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    800|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    800|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    800|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    800|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    800|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    800|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 800]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    800|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    800|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    800|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    800|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    800|    }
  |  |  ------------------
  |  |  |  Branch (5276:13): [True: 800, False: 0]
  |  |  ------------------
  |  | 5277|    800|        }
  |  | 5278|       |
  |  | 5279|    348|        TARGET(CONTAINS_OP) {
  |  |  ------------------
  |  |  |  |  132|    348|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5280|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5281|       |            int opcode = CONTAINS_OP;
  |  | 5282|       |            (void)(opcode);
  |  | 5283|       |            #endif
  |  | 5284|    348|            frame->instr_ptr = next_instr;
  |  | 5285|    348|            next_instr += 2;
  |  | 5286|    348|            INSTRUCTION_STATS(CONTAINS_OP);
  |  |  ------------------
  |  |  |  |   71|    348|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5287|    348|            PREDICTED_CONTAINS_OP:;
  |  | 5288|    348|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  | 5289|    348|            (void)this_instr;
  |  | 5290|    348|            _PyStackRef right;
  |  | 5291|    348|            _PyStackRef left;
  |  | 5292|    348|            _PyStackRef b;
  |  | 5293|    348|            _PyStackRef l;
  |  | 5294|    348|            _PyStackRef r;
  |  | 5295|    348|            _PyStackRef value;
  |  | 5296|       |            // _SPECIALIZE_CONTAINS_OP
  |  | 5297|    348|            {
  |  | 5298|    348|                right = stack_pointer[-1];
  |  | 5299|    348|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 5300|    348|                (void)counter;
  |  | 5301|    348|                #if ENABLE_SPECIALIZATION
  |  | 5302|    348|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|    348|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 46, False: 302]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5303|     46|                    next_instr = this_instr;
  |  | 5304|     46|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5305|     46|                    _Py_Specialize_ContainsOp(right, next_instr);
  |  | 5306|     46|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5307|     46|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     46|    { \
  |  |  |  |  217|     46|        opcode = next_instr->op.code; \
  |  |  |  |  218|     46|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     46|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     46|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     46|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     46|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     46|    }
  |  |  ------------------
  |  | 5308|     46|                }
  |  | 5309|    348|                OPCODE_DEFERRED_INC(CONTAINS_OP);
  |  |  ------------------
  |  |  |  |   90|    348|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 5310|    348|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|    348|    do { \
  |  |  |  |  358|    348|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|    348|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 348]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5311|    348|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 5312|    348|            }
  |  | 5313|       |            // _CONTAINS_OP
  |  | 5314|    348|            {
  |  | 5315|    348|                left = stack_pointer[-2];
  |  | 5316|    348|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5317|    348|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 5318|    348|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5319|    348|                int res = PySequence_Contains(right_o, left_o);
  |  | 5320|    348|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5321|    348|                if (res < 0) {
  |  |  ------------------
  |  |  |  Branch (5321:21): [True: 0, False: 348]
  |  |  ------------------
  |  | 5322|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5323|      0|                }
  |  | 5324|    348|                b = (res ^ oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|    180|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    180|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               b = (res ^ oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    516|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    168|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5324:21): [True: 180, False: 168]
  |  |  ------------------
  |  | 5325|    348|                l = left;
  |  | 5326|    348|                r = right;
  |  | 5327|    348|            }
  |  | 5328|       |            // _POP_TOP
  |  | 5329|      0|            {
  |  | 5330|    348|                value = r;
  |  | 5331|    348|                stack_pointer[-2] = b;
  |  | 5332|    348|                stack_pointer[-1] = l;
  |  | 5333|    348|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5334|    348|                PyStackRef_XCLOSE(value);
  |  | 5335|    348|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5336|    348|            }
  |  | 5337|       |            // _POP_TOP
  |  | 5338|    348|            {
  |  | 5339|    348|                value = l;
  |  | 5340|    348|                stack_pointer += -1;
  |  | 5341|    348|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    348|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5342|    348|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5343|    348|                PyStackRef_XCLOSE(value);
  |  | 5344|    348|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5345|    348|            }
  |  | 5346|    348|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    348|    { \
  |  |  |  |  201|    348|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    348|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    302|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    302|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    302|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    302|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    302|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    302|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 302]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    302|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    302|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    302|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    302|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    302|    }
  |  |  ------------------
  |  |  |  Branch (5346:13): [True: 302, False: 46]
  |  |  ------------------
  |  | 5347|    302|        }
  |  | 5348|       |
  |  | 5349|    208|        TARGET(CONTAINS_OP_DICT) {
  |  |  ------------------
  |  |  |  |  132|    208|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5350|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5351|       |            int opcode = CONTAINS_OP_DICT;
  |  | 5352|       |            (void)(opcode);
  |  | 5353|       |            #endif
  |  | 5354|    208|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 5355|    208|            (void)this_instr;
  |  | 5356|    208|            frame->instr_ptr = next_instr;
  |  | 5357|    208|            next_instr += 2;
  |  | 5358|    208|            INSTRUCTION_STATS(CONTAINS_OP_DICT);
  |  |  ------------------
  |  |  |  |   71|    208|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5359|    208|            static_assert(INLINE_CACHE_ENTRIES_CONTAINS_OP == 1, "incorrect cache size");
  |  | 5360|    208|            _PyStackRef tos;
  |  | 5361|    208|            _PyStackRef left;
  |  | 5362|    208|            _PyStackRef right;
  |  | 5363|    208|            _PyStackRef b;
  |  | 5364|    208|            _PyStackRef l;
  |  | 5365|    208|            _PyStackRef r;
  |  | 5366|    208|            _PyStackRef value;
  |  | 5367|       |            // _GUARD_TOS_ANY_DICT
  |  | 5368|    208|            {
  |  | 5369|    208|                tos = stack_pointer[-1];
  |  | 5370|    208|                PyObject *o = PyStackRef_AsPyObjectBorrow(tos);
  |  | 5371|    208|                if (!PyAnyDict_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   41|    208|    (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|    208|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   65|    416|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|    208|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|    208|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (65:5): [True: 208, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|      0|#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5372|      0|                    UPDATE_MISS_STATS(CONTAINS_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5373|      0|                    assert(_PyOpcode_Deopt[opcode] == (CONTAINS_OP));
  |  |  ------------------
  |  |  |  Branch (5373:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5374|      0|                    JUMP_TO_PREDICTED(CONTAINS_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5375|      0|                }
  |  | 5376|    208|            }
  |  | 5377|       |            /* Skip 1 cache entry */
  |  | 5378|       |            // _CONTAINS_OP_DICT
  |  | 5379|    208|            {
  |  | 5380|    208|                right = tos;
  |  | 5381|    208|                left = stack_pointer[-2];
  |  | 5382|    208|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5383|    208|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 5384|    208|                assert(PyAnyDict_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (5384:17): [True: 208, False: 0]
  |  |  |  Branch (5384:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5385|    208|                STAT_INC(CONTAINS_OP, hit);
  |  |  ------------------
  |  |  |  |   73|    208|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 5386|    208|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5387|    208|                int res = PyDict_Contains(right_o, left_o);
  |  | 5388|    208|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5389|    208|                if (res < 0) {
  |  |  ------------------
  |  |  |  Branch (5389:21): [True: 0, False: 208]
  |  |  ------------------
  |  | 5390|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5391|      0|                }
  |  | 5392|    208|                b = (res ^ oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|    114|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    114|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               b = (res ^ oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    302|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     94|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5392:21): [True: 114, False: 94]
  |  |  ------------------
  |  | 5393|    208|                l = left;
  |  | 5394|    208|                r = right;
  |  | 5395|    208|            }
  |  | 5396|       |            // _POP_TOP
  |  | 5397|      0|            {
  |  | 5398|    208|                value = r;
  |  | 5399|    208|                stack_pointer[-2] = b;
  |  | 5400|    208|                stack_pointer[-1] = l;
  |  | 5401|    208|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5402|    208|                PyStackRef_XCLOSE(value);
  |  | 5403|    208|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5404|    208|            }
  |  | 5405|       |            // _POP_TOP
  |  | 5406|    208|            {
  |  | 5407|    208|                value = l;
  |  | 5408|    208|                stack_pointer += -1;
  |  | 5409|    208|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    208|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5410|    208|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5411|    208|                PyStackRef_XCLOSE(value);
  |  | 5412|    208|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5413|    208|            }
  |  | 5414|    208|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    208|    { \
  |  |  |  |  201|    208|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    208|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    208|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    208|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    208|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    208|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    208|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    208|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 208]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    208|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    208|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    208|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    208|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    208|    }
  |  |  ------------------
  |  |  |  Branch (5414:13): [True: 208, False: 0]
  |  |  ------------------
  |  | 5415|    208|        }
  |  | 5416|       |
  |  | 5417|     86|        TARGET(CONTAINS_OP_SET) {
  |  |  ------------------
  |  |  |  |  132|     86|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5418|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5419|       |            int opcode = CONTAINS_OP_SET;
  |  | 5420|       |            (void)(opcode);
  |  | 5421|       |            #endif
  |  | 5422|     86|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 5423|     86|            (void)this_instr;
  |  | 5424|     86|            frame->instr_ptr = next_instr;
  |  | 5425|     86|            next_instr += 2;
  |  | 5426|     86|            INSTRUCTION_STATS(CONTAINS_OP_SET);
  |  |  ------------------
  |  |  |  |   71|     86|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5427|     86|            static_assert(INLINE_CACHE_ENTRIES_CONTAINS_OP == 1, "incorrect cache size");
  |  | 5428|     86|            _PyStackRef tos;
  |  | 5429|     86|            _PyStackRef left;
  |  | 5430|     86|            _PyStackRef right;
  |  | 5431|     86|            _PyStackRef b;
  |  | 5432|     86|            _PyStackRef l;
  |  | 5433|     86|            _PyStackRef r;
  |  | 5434|     86|            _PyStackRef value;
  |  | 5435|       |            // _GUARD_TOS_ANY_SET
  |  | 5436|     86|            {
  |  | 5437|     86|                tos = stack_pointer[-1];
  |  | 5438|     86|                PyObject *o = PyStackRef_AsPyObjectBorrow(tos);
  |  | 5439|     86|                if (!PyAnySet_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   29|     86|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type))
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    172|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     86|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     86|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 86, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type))
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5440|      0|                    UPDATE_MISS_STATS(CONTAINS_OP);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 5441|      0|                    assert(_PyOpcode_Deopt[opcode] == (CONTAINS_OP));
  |  |  ------------------
  |  |  |  Branch (5441:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 5442|      0|                    JUMP_TO_PREDICTED(CONTAINS_OP);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 5443|      0|                }
  |  | 5444|     86|            }
  |  | 5445|       |            /* Skip 1 cache entry */
  |  | 5446|       |            // _CONTAINS_OP_SET
  |  | 5447|     86|            {
  |  | 5448|     86|                right = tos;
  |  | 5449|     86|                left = stack_pointer[-2];
  |  | 5450|     86|                PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
  |  | 5451|     86|                PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
  |  | 5452|     86|                assert(PyAnySet_CheckExact(right_o));
  |  |  ------------------
  |  |  |  Branch (5452:17): [True: 86, False: 0]
  |  |  |  Branch (5452:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5453|     86|                STAT_INC(CONTAINS_OP, hit);
  |  |  ------------------
  |  |  |  |   73|     86|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 5454|     86|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5455|     86|                int res = _PySet_Contains((PySetObject *)right_o, left_o);
  |  | 5456|     86|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5457|     86|                if (res < 0) {
  |  |  ------------------
  |  |  |  Branch (5457:21): [True: 0, False: 86]
  |  |  ------------------
  |  | 5458|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5459|      0|                }
  |  | 5460|     86|                b = (res ^ oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|      6|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      6|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               b = (res ^ oparg) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    166|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     80|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5460:21): [True: 6, False: 80]
  |  |  ------------------
  |  | 5461|     86|                l = left;
  |  | 5462|     86|                r = right;
  |  | 5463|     86|            }
  |  | 5464|       |            // _POP_TOP
  |  | 5465|      0|            {
  |  | 5466|     86|                value = r;
  |  | 5467|     86|                stack_pointer[-2] = b;
  |  | 5468|     86|                stack_pointer[-1] = l;
  |  | 5469|     86|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5470|     86|                PyStackRef_XCLOSE(value);
  |  | 5471|     86|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5472|     86|            }
  |  | 5473|       |            // _POP_TOP
  |  | 5474|     86|            {
  |  | 5475|     86|                value = l;
  |  | 5476|     86|                stack_pointer += -1;
  |  | 5477|     86|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     86|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5478|     86|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5479|     86|                PyStackRef_XCLOSE(value);
  |  | 5480|     86|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5481|     86|            }
  |  | 5482|     86|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     86|    { \
  |  |  |  |  201|     86|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     86|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     86|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     86|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     86|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     86|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     86|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     86|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 86]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     86|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     86|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     86|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     86|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     86|    }
  |  |  ------------------
  |  |  |  Branch (5482:13): [True: 86, False: 0]
  |  |  ------------------
  |  | 5483|     86|        }
  |  | 5484|       |
  |  | 5485|     12|        TARGET(CONVERT_VALUE) {
  |  |  ------------------
  |  |  |  |  132|     12|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5486|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5487|       |            int opcode = CONVERT_VALUE;
  |  | 5488|       |            (void)(opcode);
  |  | 5489|       |            #endif
  |  | 5490|     12|            frame->instr_ptr = next_instr;
  |  | 5491|     12|            next_instr += 1;
  |  | 5492|     12|            INSTRUCTION_STATS(CONVERT_VALUE);
  |  |  ------------------
  |  |  |  |   71|     12|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5493|     12|            _PyStackRef value;
  |  | 5494|     12|            _PyStackRef result;
  |  | 5495|     12|            value = stack_pointer[-1];
  |  | 5496|     12|            conversion_func conv_fn;
  |  | 5497|     12|            assert(oparg >= FVC_STR && oparg <= FVC_ASCII);
  |  |  ------------------
  |  |  |  Branch (5497:13): [True: 12, False: 0]
  |  |  |  Branch (5497:13): [True: 12, False: 0]
  |  |  ------------------
  |  | 5498|     12|            conv_fn = _PyEval_ConversionFuncs[oparg];
  |  | 5499|     12|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5500|     12|            PyObject *result_o = conv_fn(PyStackRef_AsPyObjectBorrow(value));
  |  | 5501|     12|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5502|     12|            stack_pointer += -1;
  |  | 5503|     12|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     12|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5504|     12|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5505|     12|            PyStackRef_CLOSE(value);
  |  | 5506|     12|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5507|     12|            if (result_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (5507:17): [True: 0, False: 12]
  |  |  ------------------
  |  | 5508|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5509|      0|            }
  |  | 5510|     12|            result = PyStackRef_FromPyObjectSteal(result_o);
  |  | 5511|     12|            stack_pointer[0] = result;
  |  | 5512|     12|            stack_pointer += 1;
  |  | 5513|     12|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     12|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5514|     12|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     12|    { \
  |  |  |  |  201|     12|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     12|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     12|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     12|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     12|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     12|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     12|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     12|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 12]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     12|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     12|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     12|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     12|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     12|    }
  |  |  ------------------
  |  |  |  Branch (5514:13): [True: 12, False: 0]
  |  |  ------------------
  |  | 5515|     12|        }
  |  | 5516|       |
  |  | 5517|    394|        TARGET(COPY) {
  |  |  ------------------
  |  |  |  |  132|    394|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5518|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5519|       |            int opcode = COPY;
  |  | 5520|       |            (void)(opcode);
  |  | 5521|       |            #endif
  |  | 5522|    394|            frame->instr_ptr = next_instr;
  |  | 5523|    394|            next_instr += 1;
  |  | 5524|    394|            INSTRUCTION_STATS(COPY);
  |  |  ------------------
  |  |  |  |   71|    394|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5525|    394|            _PyStackRef bottom;
  |  | 5526|    394|            _PyStackRef top;
  |  | 5527|    394|            bottom = stack_pointer[-1 - (oparg-1)];
  |  | 5528|    394|            top = PyStackRef_DUP(bottom);
  |  | 5529|    394|            stack_pointer[0] = top;
  |  | 5530|    394|            stack_pointer += 1;
  |  | 5531|    394|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    394|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5532|    394|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    394|    { \
  |  |  |  |  201|    394|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    394|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    394|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    394|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    394|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    394|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    394|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    394|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 394]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    394|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    394|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    394|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    394|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    394|    }
  |  |  ------------------
  |  |  |  Branch (5532:13): [True: 394, False: 0]
  |  |  ------------------
  |  | 5533|    394|        }
  |  | 5534|       |
  |  | 5535|    310|        TARGET(COPY_FREE_VARS) {
  |  |  ------------------
  |  |  |  |  132|    310|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5536|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5537|       |            int opcode = COPY_FREE_VARS;
  |  | 5538|       |            (void)(opcode);
  |  | 5539|       |            #endif
  |  | 5540|    310|            frame->instr_ptr = next_instr;
  |  | 5541|    310|            next_instr += 1;
  |  | 5542|    310|            INSTRUCTION_STATS(COPY_FREE_VARS);
  |  |  ------------------
  |  |  |  |   71|    310|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5543|    310|            PyCodeObject *co = _PyFrame_GetCode(frame);
  |  | 5544|    310|            assert(PyStackRef_FunctionCheck(frame->f_funcobj));
  |  |  ------------------
  |  |  |  Branch (5544:13): [True: 310, False: 0]
  |  |  ------------------
  |  | 5545|    310|            PyFunctionObject *func = (PyFunctionObject *)PyStackRef_AsPyObjectBorrow(frame->f_funcobj);
  |  | 5546|    310|            PyObject *closure = func->func_closure;
  |  | 5547|    310|            assert(oparg == co->co_nfreevars);
  |  |  ------------------
  |  |  |  Branch (5547:13): [True: 310, False: 0]
  |  |  ------------------
  |  | 5548|    310|            int offset = co->co_nlocalsplus - oparg;
  |  | 5549|    636|            for (int i = 0; i < oparg; ++i) {
  |  |  ------------------
  |  |  |  Branch (5549:29): [True: 326, False: 310]
  |  |  ------------------
  |  | 5550|    326|                PyObject *o = PyTuple_GET_ITEM(closure, i);
  |  |  ------------------
  |  |  |  |   29|    326|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|    326|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    326|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5550:31): [True: 326, False: 0]
  |  |  ------------------
  |  | 5551|    326|                frame->localsplus[offset + i] = PyStackRef_FromPyObjectNew(o);
  |  |  ------------------
  |  |  |  |  599|    326|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    326|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    326|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5552|    326|            }
  |  | 5553|    310|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    310|    { \
  |  |  |  |  201|    310|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    310|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    310|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    310|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    310|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    310|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    310|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    310|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 310]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    310|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    310|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    310|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    310|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    310|    }
  |  |  ------------------
  |  |  |  Branch (5553:13): [True: 310, False: 0]
  |  |  ------------------
  |  | 5554|    310|        }
  |  | 5555|       |
  |  | 5556|      0|        TARGET(DELETE_ATTR) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5557|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5558|       |            int opcode = DELETE_ATTR;
  |  | 5559|       |            (void)(opcode);
  |  | 5560|       |            #endif
  |  | 5561|      0|            frame->instr_ptr = next_instr;
  |  | 5562|      0|            next_instr += 1;
  |  | 5563|      0|            INSTRUCTION_STATS(DELETE_ATTR);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5564|      0|            _PyStackRef owner;
  |  | 5565|      0|            owner = stack_pointer[-1];
  |  | 5566|      0|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|      0|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5566:30): [True: 0, False: 0]
  |  |  ------------------
  |  | 5567|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5568|      0|            int err = PyObject_DelAttr(PyStackRef_AsPyObjectBorrow(owner), name);
  |  | 5569|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5570|      0|            stack_pointer += -1;
  |  | 5571|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5572|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5573|      0|            PyStackRef_CLOSE(owner);
  |  | 5574|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5575|      0|            if (err) {
  |  |  ------------------
  |  |  |  Branch (5575:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5576|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5577|      0|            }
  |  | 5578|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (5578:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5579|      0|        }
  |  | 5580|       |
  |  | 5581|      0|        TARGET(DELETE_DEREF) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5582|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5583|       |            int opcode = DELETE_DEREF;
  |  | 5584|       |            (void)(opcode);
  |  | 5585|       |            #endif
  |  | 5586|      0|            frame->instr_ptr = next_instr;
  |  | 5587|      0|            next_instr += 1;
  |  | 5588|      0|            INSTRUCTION_STATS(DELETE_DEREF);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5589|      0|            PyObject *cell = PyStackRef_AsPyObjectBorrow(GETLOCAL(oparg));
  |  |  ------------------
  |  |  |  |  284|      0|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 5590|      0|            PyObject *oldobj = PyCell_SwapTakeRef((PyCellObject *)cell, NULL);
  |  | 5591|      0|            if (oldobj == NULL) {
  |  |  ------------------
  |  |  |  Branch (5591:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5592|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5593|      0|                _PyEval_FormatExcUnbound(tstate, _PyFrame_GetCode(frame), oparg);
  |  | 5594|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5595|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5596|      0|            }
  |  | 5597|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5598|      0|            Py_DECREF(oldobj);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5599|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5600|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (5600:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5601|      0|        }
  |  | 5602|       |
  |  | 5603|      4|        TARGET(DELETE_FAST) {
  |  |  ------------------
  |  |  |  |  132|      4|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5604|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5605|       |            int opcode = DELETE_FAST;
  |  | 5606|       |            (void)(opcode);
  |  | 5607|       |            #endif
  |  | 5608|      4|            frame->instr_ptr = next_instr;
  |  | 5609|      4|            next_instr += 1;
  |  | 5610|      4|            INSTRUCTION_STATS(DELETE_FAST);
  |  |  ------------------
  |  |  |  |   71|      4|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5611|      4|            _PyStackRef v = GETLOCAL(oparg);
  |  |  ------------------
  |  |  |  |  284|      4|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 5612|      4|            if (PyStackRef_IsNull(v)) {
  |  |  ------------------
  |  |  |  |  470|      4|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      4|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      4|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5613|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5614|      0|                _PyEval_FormatExcCheckArg(tstate, PyExc_UnboundLocalError,
  |  | 5615|      0|                    UNBOUNDLOCAL_ERROR_MSG,
  |  |  ------------------
  |  |  |  |  380|      0|    "cannot access local variable '%s' where it is not associated with a value"
  |  |  ------------------
  |  | 5616|      0|                    PyTuple_GetItem(_PyFrame_GetCode(frame)->co_localsplusnames, oparg)
  |  | 5617|      0|                );
  |  | 5618|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5619|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5620|      0|            }
  |  | 5621|      4|            _PyStackRef tmp = GETLOCAL(oparg);
  |  |  ------------------
  |  |  |  |  284|      4|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 5622|      4|            GETLOCAL(oparg) = PyStackRef_NULL;
  |  |  ------------------
  |  |  |  |  284|      4|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 5623|      4|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5624|      4|            PyStackRef_XCLOSE(tmp);
  |  | 5625|      4|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5626|      4|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      4|    { \
  |  |  |  |  201|      4|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      4|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      4|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      4|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      4|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      4|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      4|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      4|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 4]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      4|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      4|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      4|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      4|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      4|    }
  |  |  ------------------
  |  |  |  Branch (5626:13): [True: 4, False: 0]
  |  |  ------------------
  |  | 5627|      4|        }
  |  | 5628|       |
  |  | 5629|      0|        TARGET(DELETE_GLOBAL) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5630|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5631|       |            int opcode = DELETE_GLOBAL;
  |  | 5632|       |            (void)(opcode);
  |  | 5633|       |            #endif
  |  | 5634|      0|            frame->instr_ptr = next_instr;
  |  | 5635|      0|            next_instr += 1;
  |  | 5636|      0|            INSTRUCTION_STATS(DELETE_GLOBAL);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5637|      0|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|      0|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5637:30): [True: 0, False: 0]
  |  |  ------------------
  |  | 5638|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5639|      0|            int err = PyDict_Pop(GLOBALS(), name, NULL);
  |  |  ------------------
  |  |  |  |  325|      0|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 5640|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5641|      0|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (5641:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5642|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5643|      0|            }
  |  | 5644|      0|            if (err == 0) {
  |  |  ------------------
  |  |  |  Branch (5644:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5645|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5646|      0|                _PyEval_FormatExcCheckArg(tstate, PyExc_NameError,
  |  | 5647|      0|                    NAME_ERROR_MSG, name);
  |  |  ------------------
  |  |  |  |  384|      0|#define NAME_ERROR_MSG "name '%.200s' is not defined"
  |  |  ------------------
  |  | 5648|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5649|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5650|      0|            }
  |  | 5651|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (5651:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5652|      0|        }
  |  | 5653|       |
  |  | 5654|     26|        TARGET(DELETE_NAME) {
  |  |  ------------------
  |  |  |  |  132|     26|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5655|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5656|       |            int opcode = DELETE_NAME;
  |  | 5657|       |            (void)(opcode);
  |  | 5658|       |            #endif
  |  | 5659|     26|            frame->instr_ptr = next_instr;
  |  | 5660|     26|            next_instr += 1;
  |  | 5661|     26|            INSTRUCTION_STATS(DELETE_NAME);
  |  |  ------------------
  |  |  |  |   71|     26|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5662|     26|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|     26|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|     26|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|     26|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5662:30): [True: 26, False: 0]
  |  |  ------------------
  |  | 5663|     26|            PyObject *ns = LOCALS();
  |  |  ------------------
  |  |  |  |  327|     26|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  | 5664|     26|            int err;
  |  | 5665|     26|            if (ns == NULL) {
  |  |  ------------------
  |  |  |  Branch (5665:17): [True: 0, False: 26]
  |  |  ------------------
  |  | 5666|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5667|      0|                _PyErr_Format(tstate, PyExc_SystemError,
  |  | 5668|      0|                              "no locals when deleting %R", name);
  |  | 5669|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5670|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5671|      0|            }
  |  | 5672|     26|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5673|     26|            err = PyObject_DelItem(ns, name);
  |  | 5674|     26|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5675|     26|            if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (5675:17): [True: 0, False: 26]
  |  |  ------------------
  |  | 5676|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5677|      0|                _PyEval_FormatExcCheckArg(tstate, PyExc_NameError,
  |  | 5678|      0|                    NAME_ERROR_MSG,
  |  |  ------------------
  |  |  |  |  384|      0|#define NAME_ERROR_MSG "name '%.200s' is not defined"
  |  |  ------------------
  |  | 5679|      0|                    name);
  |  | 5680|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5681|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5682|      0|            }
  |  | 5683|     26|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     26|    { \
  |  |  |  |  201|     26|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     26|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     26|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     26|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     26|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     26|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     26|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     26|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 26]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     26|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     26|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     26|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     26|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     26|    }
  |  |  ------------------
  |  |  |  Branch (5683:13): [True: 26, False: 0]
  |  |  ------------------
  |  | 5684|     26|        }
  |  | 5685|       |
  |  | 5686|     48|        TARGET(DELETE_SUBSCR) {
  |  |  ------------------
  |  |  |  |  132|     48|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5687|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5688|       |            int opcode = DELETE_SUBSCR;
  |  | 5689|       |            (void)(opcode);
  |  | 5690|       |            #endif
  |  | 5691|     48|            frame->instr_ptr = next_instr;
  |  | 5692|     48|            next_instr += 1;
  |  | 5693|     48|            INSTRUCTION_STATS(DELETE_SUBSCR);
  |  |  ------------------
  |  |  |  |   71|     48|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5694|     48|            _PyStackRef container;
  |  | 5695|     48|            _PyStackRef sub;
  |  | 5696|     48|            sub = stack_pointer[-1];
  |  | 5697|     48|            container = stack_pointer[-2];
  |  | 5698|     48|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5699|     48|            int err = PyObject_DelItem(PyStackRef_AsPyObjectBorrow(container),
  |  | 5700|     48|                                       PyStackRef_AsPyObjectBorrow(sub));
  |  | 5701|     48|            _PyStackRef tmp = sub;
  |  | 5702|     48|            sub = PyStackRef_NULL;
  |  | 5703|     48|            stack_pointer[-1] = sub;
  |  | 5704|     48|            PyStackRef_CLOSE(tmp);
  |  | 5705|     48|            tmp = container;
  |  | 5706|     48|            container = PyStackRef_NULL;
  |  | 5707|     48|            stack_pointer[-2] = container;
  |  | 5708|     48|            PyStackRef_CLOSE(tmp);
  |  | 5709|     48|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5710|     48|            stack_pointer += -2;
  |  | 5711|     48|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     48|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5712|     48|            if (err) {
  |  |  ------------------
  |  |  |  Branch (5712:17): [True: 0, False: 48]
  |  |  ------------------
  |  | 5713|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5714|      0|            }
  |  | 5715|     48|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     48|    { \
  |  |  |  |  201|     48|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     48|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     48|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     48|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     48|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     48|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     48|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     48|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 48]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     48|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     48|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     48|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     48|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     48|    }
  |  |  ------------------
  |  |  |  Branch (5715:13): [True: 48, False: 0]
  |  |  ------------------
  |  | 5716|     48|        }
  |  | 5717|       |
  |  | 5718|    168|        TARGET(DICT_MERGE) {
  |  |  ------------------
  |  |  |  |  132|    168|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5719|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5720|       |            int opcode = DICT_MERGE;
  |  | 5721|       |            (void)(opcode);
  |  | 5722|       |            #endif
  |  | 5723|    168|            frame->instr_ptr = next_instr;
  |  | 5724|    168|            next_instr += 1;
  |  | 5725|    168|            INSTRUCTION_STATS(DICT_MERGE);
  |  |  ------------------
  |  |  |  |   71|    168|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5726|    168|            _PyStackRef callable;
  |  | 5727|    168|            _PyStackRef dict;
  |  | 5728|    168|            _PyStackRef update;
  |  | 5729|    168|            _PyStackRef u;
  |  | 5730|    168|            _PyStackRef value;
  |  | 5731|       |            // _DICT_MERGE
  |  | 5732|    168|            {
  |  | 5733|    168|                update = stack_pointer[-1];
  |  | 5734|    168|                dict = stack_pointer[-2 - (oparg - 1)];
  |  | 5735|    168|                callable = stack_pointer[-5 - (oparg - 1)];
  |  | 5736|    168|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 5737|    168|                PyObject *dict_o = PyStackRef_AsPyObjectBorrow(dict);
  |  | 5738|    168|                PyObject *update_o = PyStackRef_AsPyObjectBorrow(update);
  |  | 5739|    168|                PyObject *dupkey = NULL;
  |  | 5740|    168|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5741|    168|                int err = _PyDict_MergeUniq(dict_o, update_o, &dupkey);
  |  | 5742|    168|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5743|    168|                if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (5743:21): [True: 0, False: 168]
  |  |  ------------------
  |  | 5744|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5745|      0|                    _PyEval_FormatKwargsError(tstate, callable_o, update_o, dupkey);
  |  | 5746|      0|                    Py_XDECREF(dupkey);
  |  |  ------------------
  |  |  |  |   69|      0|    do { \
  |  |  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   71|      0|        if (xop != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   72|      0|            Py_DECREF(xop); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   73|      0|        } \
  |  |  |  |   74|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5747|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5748|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5749|      0|                }
  |  | 5750|    168|                u = update;
  |  | 5751|    168|            }
  |  | 5752|       |            // _POP_TOP
  |  | 5753|      0|            {
  |  | 5754|    168|                value = u;
  |  | 5755|    168|                stack_pointer += -1;
  |  | 5756|    168|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    168|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5757|    168|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5758|    168|                PyStackRef_XCLOSE(value);
  |  | 5759|    168|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5760|    168|            }
  |  | 5761|    168|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    168|    { \
  |  |  |  |  201|    168|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    168|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    168|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    168|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    168|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    168|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    168|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    168|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 168]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    168|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    168|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    168|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    168|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    168|    }
  |  |  ------------------
  |  |  |  Branch (5761:13): [True: 168, False: 0]
  |  |  ------------------
  |  | 5762|    168|        }
  |  | 5763|       |
  |  | 5764|     40|        TARGET(DICT_UPDATE) {
  |  |  ------------------
  |  |  |  |  132|     40|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5765|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5766|       |            int opcode = DICT_UPDATE;
  |  | 5767|       |            (void)(opcode);
  |  | 5768|       |            #endif
  |  | 5769|     40|            frame->instr_ptr = next_instr;
  |  | 5770|     40|            next_instr += 1;
  |  | 5771|     40|            INSTRUCTION_STATS(DICT_UPDATE);
  |  |  ------------------
  |  |  |  |   71|     40|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5772|     40|            _PyStackRef dict;
  |  | 5773|     40|            _PyStackRef update;
  |  | 5774|     40|            _PyStackRef upd;
  |  | 5775|     40|            _PyStackRef value;
  |  | 5776|       |            // _DICT_UPDATE
  |  | 5777|     40|            {
  |  | 5778|     40|                update = stack_pointer[-1];
  |  | 5779|     40|                dict = stack_pointer[-2 - (oparg - 1)];
  |  | 5780|     40|                PyObject *dict_o = PyStackRef_AsPyObjectBorrow(dict);
  |  | 5781|     40|                PyObject *update_o = PyStackRef_AsPyObjectBorrow(update);
  |  | 5782|     40|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5783|     40|                int err = PyDict_Update(dict_o, update_o);
  |  | 5784|     40|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5785|     40|                if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (5785:21): [True: 0, False: 40]
  |  |  ------------------
  |  | 5786|      0|                    int matches = _PyErr_ExceptionMatches(tstate, PyExc_AttributeError);
  |  | 5787|      0|                    if (matches) {
  |  |  ------------------
  |  |  |  Branch (5787:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 5788|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5789|      0|                        PyObject *exc = _PyErr_GetRaisedException(tstate);
  |  | 5790|      0|                        int has_keys = PyObject_HasAttrWithError(update_o, &_Py_ID(keys));
  |  |  ------------------
  |  |  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5791|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5792|      0|                        if (has_keys == 0) {
  |  |  ------------------
  |  |  |  Branch (5792:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 5793|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5794|      0|                            _PyErr_Format(tstate, PyExc_TypeError,
  |  | 5795|      0|                                      "'%T' object is not a mapping",
  |  | 5796|      0|                                      update_o);
  |  | 5797|      0|                            Py_DECREF(exc);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5798|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5799|      0|                        }
  |  | 5800|      0|                        else {
  |  | 5801|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5802|      0|                            _PyErr_ChainExceptions1(exc);
  |  | 5803|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5804|      0|                        }
  |  | 5805|      0|                    }
  |  | 5806|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5807|      0|                }
  |  | 5808|     40|                upd = update;
  |  | 5809|     40|            }
  |  | 5810|       |            // _POP_TOP
  |  | 5811|      0|            {
  |  | 5812|     40|                value = upd;
  |  | 5813|     40|                stack_pointer += -1;
  |  | 5814|     40|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     40|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5815|     40|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5816|     40|                PyStackRef_XCLOSE(value);
  |  | 5817|     40|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5818|     40|            }
  |  | 5819|     40|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     40|    { \
  |  |  |  |  201|     40|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     40|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     40|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     40|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     40|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     40|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     40|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     40|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 40]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     40|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     40|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     40|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     40|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     40|    }
  |  |  ------------------
  |  |  |  Branch (5819:13): [True: 40, False: 0]
  |  |  ------------------
  |  | 5820|     40|        }
  |  | 5821|       |
  |  | 5822|      0|        TARGET(END_ASYNC_FOR) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5823|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5824|       |            int opcode = END_ASYNC_FOR;
  |  | 5825|       |            (void)(opcode);
  |  | 5826|       |            #endif
  |  | 5827|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 5828|      0|            (void)this_instr;
  |  | 5829|      0|            frame->instr_ptr = next_instr;
  |  | 5830|      0|            next_instr += 1;
  |  | 5831|      0|            INSTRUCTION_STATS(END_ASYNC_FOR);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5832|      0|            _PyStackRef awaitable_st;
  |  | 5833|      0|            _PyStackRef exc_st;
  |  | 5834|      0|            exc_st = stack_pointer[-1];
  |  | 5835|      0|            awaitable_st = stack_pointer[-2];
  |  | 5836|      0|            JUMPBY(0);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 5837|      0|            (void)oparg;
  |  | 5838|      0|            PyObject *exc = PyStackRef_AsPyObjectBorrow(exc_st);
  |  | 5839|      0|            assert(exc && PyExceptionInstance_Check(exc));
  |  |  ------------------
  |  |  |  Branch (5839:13): [True: 0, False: 0]
  |  |  |  Branch (5839:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5840|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5841|      0|            int matches = PyErr_GivenExceptionMatches(exc, PyExc_StopAsyncIteration);
  |  | 5842|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5843|      0|            if (matches) {
  |  |  ------------------
  |  |  |  Branch (5843:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 5844|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5845|      0|                _PyStackRef tmp = exc_st;
  |  | 5846|      0|                exc_st = PyStackRef_NULL;
  |  | 5847|      0|                stack_pointer[-1] = exc_st;
  |  | 5848|      0|                PyStackRef_CLOSE(tmp);
  |  | 5849|      0|                tmp = awaitable_st;
  |  | 5850|      0|                awaitable_st = PyStackRef_NULL;
  |  | 5851|      0|                stack_pointer[-2] = awaitable_st;
  |  | 5852|      0|                PyStackRef_CLOSE(tmp);
  |  | 5853|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5854|      0|                stack_pointer += -2;
  |  | 5855|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5856|      0|            }
  |  | 5857|      0|            else {
  |  | 5858|      0|                Py_INCREF(exc);
  |  |  ------------------
  |  |  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5859|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5860|      0|                _PyErr_SetRaisedException(tstate, exc);
  |  | 5861|      0|                monitor_reraise(tstate, frame, this_instr);
  |  | 5862|      0|                JUMP_TO_LABEL(exception_unwind);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5863|      0|            }
  |  | 5864|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (5864:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5865|      0|        }
  |  | 5866|       |
  |  | 5867|      8|        TARGET(END_FOR) {
  |  |  ------------------
  |  |  |  |  132|      8|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5868|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5869|       |            int opcode = END_FOR;
  |  | 5870|       |            (void)(opcode);
  |  | 5871|       |            #endif
  |  | 5872|      8|            next_instr += 1;
  |  | 5873|      8|            INSTRUCTION_STATS(END_FOR);
  |  |  ------------------
  |  |  |  |   71|      8|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5874|      8|            _PyStackRef value;
  |  | 5875|      8|            value = stack_pointer[-1];
  |  | 5876|      8|            stack_pointer += -1;
  |  | 5877|      8|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5878|      8|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5879|      8|            PyStackRef_CLOSE(value);
  |  | 5880|      8|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5881|      8|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      8|    { \
  |  |  |  |  201|      8|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      8|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      8|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      8|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      8|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      8|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      8|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      8|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      8|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      8|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      8|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      8|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      8|    }
  |  |  ------------------
  |  |  |  Branch (5881:13): [True: 8, False: 0]
  |  |  ------------------
  |  | 5882|      8|        }
  |  | 5883|       |
  |  | 5884|      0|        TARGET(END_SEND) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5885|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5886|       |            int opcode = END_SEND;
  |  | 5887|       |            (void)(opcode);
  |  | 5888|       |            #endif
  |  | 5889|      0|            frame->instr_ptr = next_instr;
  |  | 5890|      0|            next_instr += 1;
  |  | 5891|      0|            INSTRUCTION_STATS(END_SEND);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5892|      0|            _PyStackRef receiver;
  |  | 5893|      0|            _PyStackRef index_or_null;
  |  | 5894|      0|            _PyStackRef value;
  |  | 5895|      0|            _PyStackRef val;
  |  | 5896|      0|            value = stack_pointer[-1];
  |  | 5897|      0|            index_or_null = stack_pointer[-2];
  |  | 5898|      0|            receiver = stack_pointer[-3];
  |  | 5899|      0|            val = value;
  |  | 5900|      0|            (void)index_or_null;
  |  | 5901|      0|            stack_pointer[-3] = val;
  |  | 5902|      0|            stack_pointer += -2;
  |  | 5903|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5904|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5905|      0|            PyStackRef_CLOSE(receiver);
  |  | 5906|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5907|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (5907:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 5908|      0|        }
  |  | 5909|       |
  |  | 5910|      0|        TARGET(ENTER_EXECUTOR) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5911|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5912|       |            int opcode = ENTER_EXECUTOR;
  |  | 5913|       |            (void)(opcode);
  |  | 5914|       |            #endif
  |  | 5915|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 5916|      0|            (void)this_instr;
  |  | 5917|      0|            frame->instr_ptr = next_instr;
  |  | 5918|      0|            next_instr += 1;
  |  | 5919|      0|            INSTRUCTION_STATS(ENTER_EXECUTOR);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5920|      0|            opcode = ENTER_EXECUTOR;
  |  |  ------------------
  |  |  |  |  245|      0|#define ENTER_EXECUTOR                         254
  |  |  ------------------
  |  | 5921|       |            #ifdef _Py_TIER2
  |  | 5922|       |            PyCodeObject *code = _PyFrame_GetCode(frame);
  |  | 5923|       |            _PyExecutorObject *executor = code->co_executors->executors[oparg & 255];
  |  | 5924|       |            if (IS_JIT_TRACING()) {
  |  | 5925|       |                int og_opcode = executor->vm_data.opcode;
  |  | 5926|       |                int og_oparg = (oparg & ~255) | executor->vm_data.oparg;
  |  | 5927|       |                next_instr = this_instr;
  |  | 5928|       |                if (_PyJit_EnterExecutorShouldStopTracing(og_opcode)) {
  |  | 5929|       |                    if (_PyOpcode_Caches[_PyOpcode_Deopt[og_opcode]]) {
  |  | 5930|       |                        PAUSE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  | 5931|       |                    }
  |  | 5932|       |                    opcode = og_opcode;
  |  | 5933|       |                    oparg = og_oparg;
  |  | 5934|       |                    DISPATCH_GOTO_NON_TRACING();
  |  | 5935|       |                }
  |  | 5936|       |                JUMP_TO_LABEL(stop_tracing);
  |  | 5937|       |            }
  |  | 5938|       |            assert(executor->vm_data.index == INSTR_OFFSET() - 1);
  |  | 5939|       |            assert(executor->vm_data.code == code);
  |  | 5940|       |            assert(executor->vm_data.valid);
  |  | 5941|       |            assert(tstate->current_executor == NULL);
  |  | 5942|       |            uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(code->_co_instrumentation_version);
  |  | 5943|       |            if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) != iversion) {
  |  | 5944|       |                opcode = executor->vm_data.opcode;
  |  | 5945|       |                oparg = (oparg & ~255) | executor->vm_data.oparg;
  |  | 5946|       |                next_instr = this_instr;
  |  | 5947|       |                if (_PyOpcode_Caches[_PyOpcode_Deopt[opcode]]) {
  |  | 5948|       |                    PAUSE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  | 5949|       |                }
  |  | 5950|       |                DISPATCH_GOTO();
  |  | 5951|       |            }
  |  | 5952|       |            assert(executor != tstate->interp->cold_executor);
  |  | 5953|       |            tstate->jit_exit = NULL;
  |  | 5954|       |            TIER1_TO_TIER2(executor);
  |  | 5955|       |            #else
  |  | 5956|      0|            Py_FatalError("ENTER_EXECUTOR is not supported in this build");
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  |  | 5957|      0|            #endif /* _Py_TIER2 */
  |  | 5958|      0|        }
  |  | 5959|       |
  |  | 5960|    148|        TARGET(EXIT_INIT_CHECK) {
  |  |  ------------------
  |  |  |  |  132|    148|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5961|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5962|       |            int opcode = EXIT_INIT_CHECK;
  |  | 5963|       |            (void)(opcode);
  |  | 5964|       |            #endif
  |  | 5965|    148|            frame->instr_ptr = next_instr;
  |  | 5966|    148|            next_instr += 1;
  |  | 5967|    148|            INSTRUCTION_STATS(EXIT_INIT_CHECK);
  |  |  ------------------
  |  |  |  |   71|    148|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5968|    148|            _PyStackRef should_be_none;
  |  | 5969|    148|            should_be_none = stack_pointer[-1];
  |  | 5970|    148|            if (!PyStackRef_IsNone(should_be_none)) {
  |  |  ------------------
  |  |  |  |  483|    148|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    148|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (5970:17): [True: 0, False: 148]
  |  |  ------------------
  |  | 5971|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 5972|      0|                PyErr_Format(PyExc_TypeError,
  |  | 5973|      0|                             "__init__() should return None, not '%.200s'",
  |  | 5974|      0|                             Py_TYPE(PyStackRef_AsPyObjectBorrow(should_be_none))->tp_name);
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 5975|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 5976|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 5977|      0|            }
  |  | 5978|    148|            stack_pointer += -1;
  |  | 5979|    148|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    148|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 5980|    148|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    148|    { \
  |  |  |  |  201|    148|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    148|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    148|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    148|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    148|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    148|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    148|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    148|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 148]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    148|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    148|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    148|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    148|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    148|    }
  |  |  ------------------
  |  |  |  Branch (5980:13): [True: 148, False: 0]
  |  |  ------------------
  |  | 5981|    148|        }
  |  | 5982|       |
  |  | 5983|    648|        TARGET(EXTENDED_ARG) {
  |  |  ------------------
  |  |  |  |  132|    648|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 5984|       |            #if _Py_TAIL_CALL_INTERP
  |  | 5985|       |            int opcode = EXTENDED_ARG;
  |  | 5986|       |            (void)(opcode);
  |  | 5987|       |            #endif
  |  | 5988|    648|            frame->instr_ptr = next_instr;
  |  | 5989|    648|            next_instr += 1;
  |  | 5990|    648|            INSTRUCTION_STATS(EXTENDED_ARG);
  |  |  ------------------
  |  |  |  |   71|    648|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 5991|    648|            opcode = EXTENDED_ARG;
  |  |  ------------------
  |  |  |  |   80|    648|#define EXTENDED_ARG                            67
  |  |  ------------------
  |  | 5992|    648|            assert(oparg);
  |  |  ------------------
  |  |  |  Branch (5992:13): [True: 648, False: 0]
  |  |  ------------------
  |  | 5993|    648|            opcode = next_instr->op.code;
  |  | 5994|    648|            oparg = oparg << 8 | next_instr->op.arg;
  |  | 5995|    648|            PRE_DISPATCH_GOTO();
  |  |  ------------------
  |  |  |  |  176|    648|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  ------------------
  |  | 5996|    648|            DISPATCH_GOTO();
  |  |  ------------------
  |  |  |  |  133|    648|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  ------------------
  |  | 5997|    648|        }
  |  | 5998|       |
  |  | 5999|    158|        TARGET(FORMAT_SIMPLE) {
  |  |  ------------------
  |  |  |  |  132|    158|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6000|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6001|       |            int opcode = FORMAT_SIMPLE;
  |  | 6002|       |            (void)(opcode);
  |  | 6003|       |            #endif
  |  | 6004|    158|            frame->instr_ptr = next_instr;
  |  | 6005|    158|            next_instr += 1;
  |  | 6006|    158|            INSTRUCTION_STATS(FORMAT_SIMPLE);
  |  |  ------------------
  |  |  |  |   71|    158|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6007|    158|            _PyStackRef value;
  |  | 6008|    158|            _PyStackRef res;
  |  | 6009|    158|            value = stack_pointer[-1];
  |  | 6010|    158|            PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  | 6011|    158|            if (!PyUnicode_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |  104|    158|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    158|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    158|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    158|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6011:17): [True: 22, False: 136]
  |  |  ------------------
  |  | 6012|     22|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6013|     22|                PyObject *res_o = PyObject_Format(value_o, NULL);
  |  | 6014|     22|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6015|     22|                stack_pointer += -1;
  |  | 6016|     22|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     22|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6017|     22|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6018|     22|                PyStackRef_CLOSE(value);
  |  | 6019|     22|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6020|     22|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6020:21): [True: 0, False: 22]
  |  |  ------------------
  |  | 6021|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6022|      0|                }
  |  | 6023|     22|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 6024|     22|            }
  |  | 6025|    136|            else {
  |  | 6026|    136|                res = value;
  |  | 6027|    136|                stack_pointer += -1;
  |  | 6028|    136|            }
  |  | 6029|    158|            stack_pointer[0] = res;
  |  | 6030|    158|            stack_pointer += 1;
  |  | 6031|    158|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    158|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6032|    158|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    158|    { \
  |  |  |  |  201|    158|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    158|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    158|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    158|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    158|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    158|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    158|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    158|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 158]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    158|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    158|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    158|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    158|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    158|    }
  |  |  ------------------
  |  |  |  Branch (6032:13): [True: 158, False: 0]
  |  |  ------------------
  |  | 6033|    158|        }
  |  | 6034|       |
  |  | 6035|      0|        TARGET(FORMAT_WITH_SPEC) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6036|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6037|       |            int opcode = FORMAT_WITH_SPEC;
  |  | 6038|       |            (void)(opcode);
  |  | 6039|       |            #endif
  |  | 6040|      0|            frame->instr_ptr = next_instr;
  |  | 6041|      0|            next_instr += 1;
  |  | 6042|      0|            INSTRUCTION_STATS(FORMAT_WITH_SPEC);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6043|      0|            _PyStackRef value;
  |  | 6044|      0|            _PyStackRef fmt_spec;
  |  | 6045|      0|            _PyStackRef res;
  |  | 6046|      0|            fmt_spec = stack_pointer[-1];
  |  | 6047|      0|            value = stack_pointer[-2];
  |  | 6048|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6049|      0|            PyObject *res_o = PyObject_Format(PyStackRef_AsPyObjectBorrow(value), PyStackRef_AsPyObjectBorrow(fmt_spec));
  |  | 6050|      0|            _PyStackRef tmp = fmt_spec;
  |  | 6051|      0|            fmt_spec = PyStackRef_NULL;
  |  | 6052|      0|            stack_pointer[-1] = fmt_spec;
  |  | 6053|      0|            PyStackRef_CLOSE(tmp);
  |  | 6054|      0|            tmp = value;
  |  | 6055|      0|            value = PyStackRef_NULL;
  |  | 6056|      0|            stack_pointer[-2] = value;
  |  | 6057|      0|            PyStackRef_CLOSE(tmp);
  |  | 6058|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6059|      0|            stack_pointer += -2;
  |  | 6060|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6061|      0|            if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6061:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6062|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6063|      0|            }
  |  | 6064|      0|            res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 6065|      0|            stack_pointer[0] = res;
  |  | 6066|      0|            stack_pointer += 1;
  |  | 6067|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6068|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (6068:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 6069|      0|        }
  |  | 6070|       |
  |  | 6071|    170|        TARGET(FOR_ITER) {
  |  |  ------------------
  |  |  |  |  132|    170|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6072|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6073|       |            int opcode = FOR_ITER;
  |  | 6074|       |            (void)(opcode);
  |  | 6075|       |            #endif
  |  | 6076|    170|            frame->instr_ptr = next_instr;
  |  | 6077|    170|            next_instr += 2;
  |  | 6078|    170|            INSTRUCTION_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |   71|    170|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6079|    178|            PREDICTED_FOR_ITER:;
  |  | 6080|    178|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  | 6081|    178|            (void)this_instr;
  |  | 6082|    178|            _PyStackRef iter;
  |  | 6083|    178|            _PyStackRef null_or_index;
  |  | 6084|    178|            _PyStackRef next;
  |  | 6085|       |            // _SPECIALIZE_FOR_ITER
  |  | 6086|    178|            {
  |  | 6087|    178|                null_or_index = stack_pointer[-1];
  |  | 6088|    178|                iter = stack_pointer[-2];
  |  | 6089|    178|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 6090|    178|                (void)counter;
  |  | 6091|    178|                #if ENABLE_SPECIALIZATION
  |  | 6092|    178|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|    178|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 70, False: 108]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6093|     70|                    next_instr = this_instr;
  |  | 6094|     70|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6095|     70|                    _Py_Specialize_ForIter(iter, null_or_index, next_instr, oparg);
  |  | 6096|     70|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6097|     70|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     70|    { \
  |  |  |  |  217|     70|        opcode = next_instr->op.code; \
  |  |  |  |  218|     70|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     70|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     70|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     70|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     70|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     70|    }
  |  |  ------------------
  |  | 6098|     70|                }
  |  | 6099|    178|                OPCODE_DEFERRED_INC(FOR_ITER);
  |  |  ------------------
  |  |  |  |   90|    178|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 6100|    178|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|    178|    do { \
  |  |  |  |  358|    178|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|    178|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 178]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6101|    178|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 6102|    178|            }
  |  | 6103|       |            // _FOR_ITER
  |  | 6104|    178|            {
  |  | 6105|    178|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6106|    178|                _PyStackRef item = _PyForIter_VirtualIteratorNext(tstate, frame, iter, &null_or_index);
  |  | 6107|    178|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6108|    178|                if (!PyStackRef_IsValid(item)) {
  |  |  ------------------
  |  |  |  Branch (6108:21): [True: 24, False: 154]
  |  |  ------------------
  |  | 6109|     24|                    if (PyStackRef_IsError(item)) {
  |  |  ------------------
  |  |  |  Branch (6109:25): [True: 0, False: 24]
  |  |  ------------------
  |  | 6110|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6111|      0|                    }
  |  | 6112|     24|                    JUMPBY(oparg + 1);
  |  |  ------------------
  |  |  |  |  260|     24|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 6113|     24|                    stack_pointer[-1] = null_or_index;
  |  | 6114|     24|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     24|    { \
  |  |  |  |  201|     24|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     24|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     24|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     24|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     24|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     24|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     24|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     24|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 24]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     24|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     24|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     24|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     24|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     24|    }
  |  |  ------------------
  |  |  |  Branch (6114:21): [True: 24, False: 0]
  |  |  ------------------
  |  | 6115|     24|                }
  |  | 6116|    178|                next = item;
  |  | 6117|    178|            }
  |  | 6118|      0|            stack_pointer[-1] = null_or_index;
  |  | 6119|    178|            stack_pointer[0] = next;
  |  | 6120|    178|            stack_pointer += 1;
  |  | 6121|    178|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    178|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6122|    178|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    178|    { \
  |  |  |  |  201|    178|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    178|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     84|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     84|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     84|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     84|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     84|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     84|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 84]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     84|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     84|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     84|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     84|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     84|    }
  |  |  ------------------
  |  |  |  Branch (6122:13): [True: 84, False: 94]
  |  |  ------------------
  |  | 6123|     84|        }
  |  | 6124|       |
  |  | 6125|     14|        TARGET(FOR_ITER_GEN) {
  |  |  ------------------
  |  |  |  |  132|     14|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6126|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6127|       |            int opcode = FOR_ITER_GEN;
  |  | 6128|       |            (void)(opcode);
  |  | 6129|       |            #endif
  |  | 6130|     14|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6131|     14|            (void)this_instr;
  |  | 6132|     14|            frame->instr_ptr = next_instr;
  |  | 6133|     14|            next_instr += 2;
  |  | 6134|     14|            INSTRUCTION_STATS(FOR_ITER_GEN);
  |  |  ------------------
  |  |  |  |   71|     14|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6135|     14|            static_assert(INLINE_CACHE_ENTRIES_FOR_ITER == 1, "incorrect cache size");
  |  | 6136|     14|            _PyStackRef iter;
  |  | 6137|     14|            _PyStackRef gen_frame;
  |  | 6138|     14|            _PyStackRef new_frame;
  |  | 6139|       |            /* Skip 1 cache entry */
  |  | 6140|       |            // _CHECK_PEP_523
  |  | 6141|     14|            {
  |  | 6142|     14|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|     14|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 14]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6143|      0|                    UPDATE_MISS_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6144|      0|                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  |  ------------------
  |  |  |  Branch (6144:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6145|      0|                    JUMP_TO_PREDICTED(FOR_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6146|      0|                }
  |  | 6147|     14|            }
  |  | 6148|       |            // _FOR_ITER_GEN_FRAME
  |  | 6149|     14|            {
  |  | 6150|     14|                iter = stack_pointer[-2];
  |  | 6151|     14|                PyGenObject *gen = (PyGenObject *)PyStackRef_AsPyObjectBorrow(iter);
  |  | 6152|     14|                if (Py_TYPE(gen) != &PyGen_Type) {
  |  |  ------------------
  |  |  |  |  213|     14|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6152:21): [True: 0, False: 14]
  |  |  ------------------
  |  | 6153|      0|                    UPDATE_MISS_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6154|      0|                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  |  ------------------
  |  |  |  Branch (6154:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6155|      0|                    JUMP_TO_PREDICTED(FOR_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6156|      0|                }
  |  | 6157|     14|                if (!gen_try_set_executing((PyGenObject *)gen)) {
  |  |  ------------------
  |  |  |  Branch (6157:21): [True: 0, False: 14]
  |  |  ------------------
  |  | 6158|      0|                    UPDATE_MISS_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6159|      0|                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  |  ------------------
  |  |  |  Branch (6159:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6160|      0|                    JUMP_TO_PREDICTED(FOR_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6161|      0|                }
  |  | 6162|     14|                STAT_INC(FOR_ITER, hit);
  |  |  ------------------
  |  |  |  |   73|     14|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 6163|     14|                _PyInterpreterFrame *pushed_frame = &gen->gi_iframe;
  |  | 6164|     14|                _PyFrame_StackPush(pushed_frame, PyStackRef_None);
  |  |  ------------------
  |  |  |  |  473|     14|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     14|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6165|     14|                gen->gi_exc_state.previous_item = tstate->exc_info;
  |  | 6166|     14|                tstate->exc_info = &gen->gi_exc_state;
  |  | 6167|     14|                pushed_frame->previous = frame;
  |  | 6168|     14|                frame->return_offset = (uint16_t)( 2u + oparg);
  |  | 6169|     14|                gen_frame = PyStackRef_Wrap(pushed_frame);
  |  | 6170|     14|            }
  |  | 6171|       |            // _PUSH_FRAME
  |  | 6172|      0|            {
  |  | 6173|     14|                new_frame = gen_frame;
  |  | 6174|     14|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (6174:17): [True: 14, False: 0]
  |  |  ------------------
  |  | 6175|     14|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 6176|     14|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6177|     14|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (6177:17): [True: 14, False: 0]
  |  |  |  Branch (6177:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6178|     14|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|     14|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 6179|     14|                frame = tstate->current_frame = temp;
  |  | 6180|     14|                tstate->py_recursion_remaining--;
  |  | 6181|     14|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|     14|#define LOAD_SP() \
  |  |  |  |  426|     14|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 6182|     14|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|     14|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|     14|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|     14|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 14]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6183|     14|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|     14|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 6184|     14|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|     14|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 6185|     14|            }
  |  | 6186|     14|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     14|    { \
  |  |  |  |  201|     14|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     14|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     14|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     14|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     14|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     14|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     14|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     14|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 14]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     14|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     14|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     14|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     14|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     14|    }
  |  |  ------------------
  |  |  |  Branch (6186:13): [True: 14, False: 0]
  |  |  ------------------
  |  | 6187|     14|        }
  |  | 6188|       |
  |  | 6189|  1.06k|        TARGET(FOR_ITER_LIST) {
  |  |  ------------------
  |  |  |  |  132|  1.06k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6190|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6191|       |            int opcode = FOR_ITER_LIST;
  |  | 6192|       |            (void)(opcode);
  |  | 6193|       |            #endif
  |  | 6194|  1.06k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6195|  1.06k|            (void)this_instr;
  |  | 6196|  1.06k|            frame->instr_ptr = next_instr;
  |  | 6197|  1.06k|            next_instr += 2;
  |  | 6198|  1.06k|            INSTRUCTION_STATS(FOR_ITER_LIST);
  |  |  ------------------
  |  |  |  |   71|  1.06k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6199|  1.06k|            static_assert(INLINE_CACHE_ENTRIES_FOR_ITER == 1, "incorrect cache size");
  |  | 6200|  1.06k|            _PyStackRef iter;
  |  | 6201|  1.06k|            _PyStackRef null_or_index;
  |  | 6202|  1.06k|            _PyStackRef next;
  |  | 6203|       |            /* Skip 1 cache entry */
  |  | 6204|       |            // _ITER_CHECK_LIST
  |  | 6205|  1.06k|            {
  |  | 6206|  1.06k|                null_or_index = stack_pointer[-1];
  |  | 6207|  1.06k|                iter = stack_pointer[-2];
  |  | 6208|  1.06k|                PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
  |  | 6209|  1.06k|                if (Py_TYPE(iter_o) != &PyList_Type) {
  |  |  ------------------
  |  |  |  |  213|  1.06k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.06k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.06k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6209:21): [True: 0, False: 1.06k]
  |  |  ------------------
  |  | 6210|      0|                    UPDATE_MISS_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6211|      0|                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  |  ------------------
  |  |  |  Branch (6211:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6212|      0|                    JUMP_TO_PREDICTED(FOR_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6213|      0|                }
  |  | 6214|  1.06k|                assert(PyStackRef_IsTaggedInt(null_or_index));
  |  |  ------------------
  |  |  |  Branch (6214:17): [True: 1.06k, False: 0]
  |  |  ------------------
  |  | 6215|       |                #ifdef Py_GIL_DISABLED
  |  | 6216|       |                if (!_Py_IsOwnedByCurrentThread(iter_o) && !_PyObject_GC_IS_SHARED(iter_o)) {
  |  | 6217|       |                    UPDATE_MISS_STATS(FOR_ITER);
  |  | 6218|       |                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  | 6219|       |                    JUMP_TO_PREDICTED(FOR_ITER);
  |  | 6220|       |                }
  |  | 6221|       |                #endif
  |  | 6222|  1.06k|            }
  |  | 6223|       |            // _ITER_JUMP_LIST
  |  | 6224|  1.06k|            {
  |  | 6225|       |                #ifdef Py_GIL_DISABLED
  |  | 6226|       |
  |  | 6227|       |                #else
  |  | 6228|  1.06k|                PyObject *list_o = PyStackRef_AsPyObjectBorrow(iter);
  |  | 6229|  1.06k|                assert(Py_TYPE(list_o) == &PyList_Type);
  |  |  ------------------
  |  |  |  Branch (6229:17): [True: 1.06k, False: 0]
  |  |  ------------------
  |  | 6230|  1.06k|                STAT_INC(FOR_ITER, hit);
  |  |  ------------------
  |  |  |  |   73|  1.06k|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 6231|  1.06k|                if ((size_t)PyStackRef_UntagInt(null_or_index) >= (size_t)PyList_GET_SIZE(list_o)) {
  |  |  ------------------
  |  |  |  |   38|  1.06k|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.06k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.06k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6231:21): [True: 66, False: 994]
  |  |  ------------------
  |  | 6232|     66|                    null_or_index = PyStackRef_TagInt(-1);
  |  | 6233|     66|                    JUMPBY(oparg + 1);
  |  |  ------------------
  |  |  |  |  260|     66|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 6234|     66|                    stack_pointer[-1] = null_or_index;
  |  | 6235|     66|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     66|    { \
  |  |  |  |  201|     66|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     66|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     66|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     66|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     66|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     66|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     66|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     66|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 66]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     66|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     66|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     66|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     66|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     66|    }
  |  |  ------------------
  |  |  |  Branch (6235:21): [True: 66, False: 0]
  |  |  ------------------
  |  | 6236|     66|                }
  |  | 6237|  1.06k|                #endif
  |  | 6238|  1.06k|            }
  |  | 6239|       |            // _ITER_NEXT_LIST
  |  | 6240|  1.06k|            {
  |  | 6241|  1.06k|                PyObject *list_o = PyStackRef_AsPyObjectBorrow(iter);
  |  | 6242|  1.06k|                assert(PyList_CheckExact(list_o));
  |  |  ------------------
  |  |  |  Branch (6242:17): [True: 994, False: 66]
  |  |  ------------------
  |  | 6243|       |                #ifdef Py_GIL_DISABLED
  |  | 6244|       |                assert(_Py_IsOwnedByCurrentThread(list_o) ||
  |  | 6245|       |                  _PyObject_GC_IS_SHARED(list_o));
  |  | 6246|       |                STAT_INC(FOR_ITER, hit);
  |  | 6247|       |                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6248|       |                int result = _PyList_GetItemRefNoLock((PyListObject *)list_o, PyStackRef_UntagInt(null_or_index), &next);
  |  | 6249|       |                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6250|       |                if (result < 0) {
  |  | 6251|       |                    UPDATE_MISS_STATS(FOR_ITER);
  |  | 6252|       |                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  | 6253|       |                    JUMP_TO_PREDICTED(FOR_ITER);
  |  | 6254|       |                }
  |  | 6255|       |                if (result == 0) {
  |  | 6256|       |                    null_or_index = PyStackRef_TagInt(-1);
  |  | 6257|       |                    JUMPBY(oparg + 1);
  |  | 6258|       |                    stack_pointer[-1] = null_or_index;
  |  | 6259|       |                    DISPATCH();
  |  | 6260|       |                }
  |  | 6261|       |                #else
  |  | 6262|    994|                next = PyStackRef_FromPyObjectNew(PyList_GET_ITEM(list_o, PyStackRef_UntagInt(null_or_index)));
  |  |  ------------------
  |  |  |  |  599|    994|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    994|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.98k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (37:38): [True: 994, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6263|      0|                #endif
  |  | 6264|      0|                null_or_index = PyStackRef_IncrementTaggedIntNoOverflow(null_or_index);
  |  | 6265|    994|            }
  |  | 6266|      0|            stack_pointer[-1] = null_or_index;
  |  | 6267|    994|            stack_pointer[0] = next;
  |  | 6268|    994|            stack_pointer += 1;
  |  | 6269|    994|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    994|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6270|    994|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    994|    { \
  |  |  |  |  201|    994|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    994|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    994|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    994|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    994|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    994|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    994|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    994|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 994]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    994|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    994|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    994|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    994|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    994|    }
  |  |  ------------------
  |  |  |  Branch (6270:13): [True: 994, False: 0]
  |  |  ------------------
  |  | 6271|    994|        }
  |  | 6272|       |
  |  | 6273|     10|        TARGET(FOR_ITER_RANGE) {
  |  |  ------------------
  |  |  |  |  132|     10|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6274|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6275|       |            int opcode = FOR_ITER_RANGE;
  |  | 6276|       |            (void)(opcode);
  |  | 6277|       |            #endif
  |  | 6278|     10|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6279|     10|            (void)this_instr;
  |  | 6280|     10|            frame->instr_ptr = next_instr;
  |  | 6281|     10|            next_instr += 2;
  |  | 6282|     10|            INSTRUCTION_STATS(FOR_ITER_RANGE);
  |  |  ------------------
  |  |  |  |   71|     10|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6283|     10|            static_assert(INLINE_CACHE_ENTRIES_FOR_ITER == 1, "incorrect cache size");
  |  | 6284|     10|            _PyStackRef iter;
  |  | 6285|     10|            _PyStackRef next;
  |  | 6286|       |            /* Skip 1 cache entry */
  |  | 6287|       |            // _ITER_CHECK_RANGE
  |  | 6288|     10|            {
  |  | 6289|     10|                iter = stack_pointer[-2];
  |  | 6290|     10|                _PyRangeIterObject *r = (_PyRangeIterObject *)PyStackRef_AsPyObjectBorrow(iter);
  |  | 6291|     10|                if (Py_TYPE(r) != &PyRangeIter_Type) {
  |  |  ------------------
  |  |  |  |  213|     10|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6291:21): [True: 0, False: 10]
  |  |  ------------------
  |  | 6292|      0|                    UPDATE_MISS_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6293|      0|                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  |  ------------------
  |  |  |  Branch (6293:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6294|      0|                    JUMP_TO_PREDICTED(FOR_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6295|      0|                }
  |  | 6296|       |                #ifdef Py_GIL_DISABLED
  |  | 6297|       |                if (!_PyObject_IsUniquelyReferenced((PyObject *)r)) {
  |  | 6298|       |                    UPDATE_MISS_STATS(FOR_ITER);
  |  | 6299|       |                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  | 6300|       |                    JUMP_TO_PREDICTED(FOR_ITER);
  |  | 6301|       |                }
  |  | 6302|       |                #endif
  |  | 6303|     10|            }
  |  | 6304|       |            // _ITER_JUMP_RANGE
  |  | 6305|     10|            {
  |  | 6306|     10|                _PyRangeIterObject *r = (_PyRangeIterObject *)PyStackRef_AsPyObjectBorrow(iter);
  |  | 6307|     10|                assert(Py_TYPE(r) == &PyRangeIter_Type);
  |  |  ------------------
  |  |  |  Branch (6307:17): [True: 10, False: 0]
  |  |  ------------------
  |  | 6308|       |                #ifdef Py_GIL_DISABLED
  |  | 6309|       |                assert(_PyObject_IsUniquelyReferenced((PyObject *)r));
  |  | 6310|       |                #endif
  |  | 6311|     10|                STAT_INC(FOR_ITER, hit);
  |  |  ------------------
  |  |  |  |   73|     10|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 6312|     10|                if (r->len <= 0) {
  |  |  ------------------
  |  |  |  Branch (6312:21): [True: 4, False: 6]
  |  |  ------------------
  |  | 6313|      4|                    JUMPBY(oparg + 1);
  |  |  ------------------
  |  |  |  |  260|      4|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 6314|      4|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      4|    { \
  |  |  |  |  201|      4|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      4|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      4|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      4|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      4|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      4|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      4|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      4|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 4]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      4|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      4|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      4|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      4|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      4|    }
  |  |  ------------------
  |  |  |  Branch (6314:21): [True: 4, False: 0]
  |  |  ------------------
  |  | 6315|      4|                }
  |  | 6316|     10|            }
  |  | 6317|       |            // _ITER_NEXT_RANGE
  |  | 6318|     10|            {
  |  | 6319|     10|                _PyRangeIterObject *r = (_PyRangeIterObject *)PyStackRef_AsPyObjectBorrow(iter);
  |  | 6320|     10|                assert(Py_TYPE(r) == &PyRangeIter_Type);
  |  |  ------------------
  |  |  |  Branch (6320:17): [True: 6, False: 4]
  |  |  ------------------
  |  | 6321|       |                #ifdef Py_GIL_DISABLED
  |  | 6322|       |                assert(_PyObject_IsUniquelyReferenced((PyObject *)r));
  |  | 6323|       |                #endif
  |  | 6324|     10|                assert(r->len > 0);
  |  |  ------------------
  |  |  |  Branch (6324:17): [True: 6, False: 0]
  |  |  ------------------
  |  | 6325|      6|                long value = r->start;
  |  | 6326|      6|                r->start = value + r->step;
  |  | 6327|      6|                r->len--;
  |  | 6328|      6|                PyObject *res = PyLong_FromLong(value);
  |  | 6329|      6|                if (res == NULL) {
  |  |  ------------------
  |  |  |  Branch (6329:21): [True: 0, False: 6]
  |  |  ------------------
  |  | 6330|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6331|      0|                }
  |  | 6332|      6|                next = PyStackRef_FromPyObjectSteal(res);
  |  | 6333|      6|            }
  |  | 6334|      0|            stack_pointer[0] = next;
  |  | 6335|      6|            stack_pointer += 1;
  |  | 6336|      6|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      6|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6337|      6|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      6|    { \
  |  |  |  |  201|      6|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      6|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      6|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      6|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      6|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      6|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      6|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      6|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 6]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      6|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      6|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      6|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      6|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      6|    }
  |  |  ------------------
  |  |  |  Branch (6337:13): [True: 6, False: 0]
  |  |  ------------------
  |  | 6338|      6|        }
  |  | 6339|       |
  |  | 6340|    604|        TARGET(FOR_ITER_TUPLE) {
  |  |  ------------------
  |  |  |  |  132|    604|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6341|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6342|       |            int opcode = FOR_ITER_TUPLE;
  |  | 6343|       |            (void)(opcode);
  |  | 6344|       |            #endif
  |  | 6345|    604|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6346|    604|            (void)this_instr;
  |  | 6347|    604|            frame->instr_ptr = next_instr;
  |  | 6348|    604|            next_instr += 2;
  |  | 6349|    604|            INSTRUCTION_STATS(FOR_ITER_TUPLE);
  |  |  ------------------
  |  |  |  |   71|    604|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6350|    604|            static_assert(INLINE_CACHE_ENTRIES_FOR_ITER == 1, "incorrect cache size");
  |  | 6351|    604|            _PyStackRef iter;
  |  | 6352|    604|            _PyStackRef null_or_index;
  |  | 6353|    604|            _PyStackRef next;
  |  | 6354|       |            /* Skip 1 cache entry */
  |  | 6355|       |            // _ITER_CHECK_TUPLE
  |  | 6356|    604|            {
  |  | 6357|    604|                null_or_index = stack_pointer[-1];
  |  | 6358|    604|                iter = stack_pointer[-2];
  |  | 6359|    604|                PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
  |  | 6360|    604|                if (Py_TYPE(iter_o) != &PyTuple_Type) {
  |  |  ------------------
  |  |  |  |  213|    604|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    604|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    604|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6360:21): [True: 8, False: 596]
  |  |  ------------------
  |  | 6361|      8|                    UPDATE_MISS_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |  298|      8|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6362|      8|                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  |  ------------------
  |  |  |  Branch (6362:21): [True: 8, False: 0]
  |  |  ------------------
  |  | 6363|      8|                    JUMP_TO_PREDICTED(FOR_ITER);
  |  |  ------------------
  |  |  |  |  136|      8|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6364|      0|                }
  |  | 6365|    604|                assert(PyStackRef_IsTaggedInt(null_or_index));
  |  |  ------------------
  |  |  |  Branch (6365:17): [True: 596, False: 0]
  |  |  ------------------
  |  | 6366|    596|            }
  |  | 6367|       |            // _ITER_JUMP_TUPLE
  |  | 6368|    596|            {
  |  | 6369|    596|                PyObject *tuple_o = PyStackRef_AsPyObjectBorrow(iter);
  |  | 6370|    596|                (void)tuple_o;
  |  | 6371|    596|                assert(Py_TYPE(tuple_o) == &PyTuple_Type);
  |  |  ------------------
  |  |  |  Branch (6371:17): [True: 596, False: 0]
  |  |  ------------------
  |  | 6372|    596|                STAT_INC(FOR_ITER, hit);
  |  |  ------------------
  |  |  |  |   73|    596|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 6373|    596|                if ((size_t)PyStackRef_UntagInt(null_or_index) >= (size_t)PyTuple_GET_SIZE(tuple_o)) {
  |  |  ------------------
  |  |  |  |   27|    596|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    596|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    596|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6373:21): [True: 172, False: 424]
  |  |  ------------------
  |  | 6374|    172|                    null_or_index = PyStackRef_TagInt(-1);
  |  | 6375|    172|                    JUMPBY(oparg + 1);
  |  |  ------------------
  |  |  |  |  260|    172|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 6376|    172|                    stack_pointer[-1] = null_or_index;
  |  | 6377|    172|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    172|    { \
  |  |  |  |  201|    172|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    172|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    172|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    172|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    172|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    172|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    172|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    172|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 172]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    172|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    172|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    172|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    172|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    172|    }
  |  |  ------------------
  |  |  |  Branch (6377:21): [True: 172, False: 0]
  |  |  ------------------
  |  | 6378|    172|                }
  |  | 6379|    596|            }
  |  | 6380|       |            // _ITER_NEXT_TUPLE
  |  | 6381|    596|            {
  |  | 6382|    596|                PyObject *tuple_o = PyStackRef_AsPyObjectBorrow(iter);
  |  | 6383|    596|                assert(Py_TYPE(tuple_o) == &PyTuple_Type);
  |  |  ------------------
  |  |  |  Branch (6383:17): [True: 424, False: 172]
  |  |  ------------------
  |  | 6384|    424|                uintptr_t i = PyStackRef_UntagInt(null_or_index);
  |  | 6385|    424|                assert((size_t)i < (size_t)PyTuple_GET_SIZE(tuple_o));
  |  |  ------------------
  |  |  |  Branch (6385:17): [True: 424, False: 0]
  |  |  ------------------
  |  | 6386|    424|                next = PyStackRef_FromPyObjectNew(PyTuple_GET_ITEM(tuple_o, i));
  |  |  ------------------
  |  |  |  |  599|    424|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    424|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    848|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (37:38): [True: 424, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6387|      0|                null_or_index = PyStackRef_IncrementTaggedIntNoOverflow(null_or_index);
  |  | 6388|    424|            }
  |  | 6389|      0|            stack_pointer[-1] = null_or_index;
  |  | 6390|    424|            stack_pointer[0] = next;
  |  | 6391|    424|            stack_pointer += 1;
  |  | 6392|    424|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    424|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6393|    424|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    424|    { \
  |  |  |  |  201|    424|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    424|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    424|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    424|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    424|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    424|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    424|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    424|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 424]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    424|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    424|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    424|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    424|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    424|    }
  |  |  ------------------
  |  |  |  Branch (6393:13): [True: 424, False: 0]
  |  |  ------------------
  |  | 6394|    424|        }
  |  | 6395|       |
  |  | 6396|      4|        TARGET(FOR_ITER_VIRTUAL) {
  |  |  ------------------
  |  |  |  |  132|      4|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6397|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6398|       |            int opcode = FOR_ITER_VIRTUAL;
  |  | 6399|       |            (void)(opcode);
  |  | 6400|       |            #endif
  |  | 6401|      4|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6402|      4|            (void)this_instr;
  |  | 6403|      4|            frame->instr_ptr = next_instr;
  |  | 6404|      4|            next_instr += 2;
  |  | 6405|      4|            INSTRUCTION_STATS(FOR_ITER_VIRTUAL);
  |  |  ------------------
  |  |  |  |   71|      4|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6406|      4|            static_assert(INLINE_CACHE_ENTRIES_FOR_ITER == 1, "incorrect cache size");
  |  | 6407|      4|            _PyStackRef null_or_index;
  |  | 6408|      4|            _PyStackRef iter;
  |  | 6409|      4|            _PyStackRef next;
  |  | 6410|       |            /* Skip 1 cache entry */
  |  | 6411|       |            // _GUARD_TOS_NOT_NULL
  |  | 6412|      4|            {
  |  | 6413|      4|                null_or_index = stack_pointer[-1];
  |  | 6414|      4|                if (PyStackRef_IsNull(null_or_index)) {
  |  |  ------------------
  |  |  |  |  470|      4|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      4|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      4|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6415|      0|                    UPDATE_MISS_STATS(FOR_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6416|      0|                    assert(_PyOpcode_Deopt[opcode] == (FOR_ITER));
  |  |  ------------------
  |  |  |  Branch (6416:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6417|      0|                    JUMP_TO_PREDICTED(FOR_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6418|      0|                }
  |  | 6419|      4|            }
  |  | 6420|       |            // _FOR_ITER_VIRTUAL
  |  | 6421|      4|            {
  |  | 6422|      4|                iter = stack_pointer[-2];
  |  | 6423|      4|                PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
  |  | 6424|      4|                Py_ssize_t index = PyStackRef_UntagInt(null_or_index);
  |  | 6425|      4|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6426|      4|                _PyObjectIndexPair next_index = Py_TYPE(iter_o)->_tp_iteritem(iter_o, index);
  |  |  ------------------
  |  |  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6427|      4|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6428|      4|                PyObject *next_o = next_index.object;
  |  | 6429|      4|                index = next_index.index;
  |  | 6430|      4|                if (next_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6430:21): [True: 4, False: 0]
  |  |  ------------------
  |  | 6431|      4|                    if (index < 0) {
  |  |  ------------------
  |  |  |  Branch (6431:25): [True: 0, False: 4]
  |  |  ------------------
  |  | 6432|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6433|      0|                    }
  |  | 6434|      4|                    JUMPBY(oparg + 1);
  |  |  ------------------
  |  |  |  |  260|      4|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 6435|      4|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      4|    { \
  |  |  |  |  201|      4|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      4|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      4|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      4|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      4|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      4|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      4|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      4|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 4]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      4|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      4|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      4|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      4|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      4|    }
  |  |  ------------------
  |  |  |  Branch (6435:21): [True: 4, False: 0]
  |  |  ------------------
  |  | 6436|      4|                }
  |  | 6437|      4|                null_or_index = PyStackRef_TagInt(index);
  |  | 6438|      4|                next = PyStackRef_FromPyObjectSteal(next_o);
  |  | 6439|      4|            }
  |  | 6440|      0|            stack_pointer[-1] = null_or_index;
  |  | 6441|      4|            stack_pointer[0] = next;
  |  | 6442|      4|            stack_pointer += 1;
  |  | 6443|      4|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      4|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6444|      4|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      4|    { \
  |  |  |  |  201|      4|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      4|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (6444:13): [True: 0, False: 4]
  |  |  ------------------
  |  | 6445|      0|        }
  |  | 6446|       |
  |  | 6447|      0|        TARGET(GET_AITER) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6448|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6449|       |            int opcode = GET_AITER;
  |  | 6450|       |            (void)(opcode);
  |  | 6451|       |            #endif
  |  | 6452|      0|            frame->instr_ptr = next_instr;
  |  | 6453|      0|            next_instr += 1;
  |  | 6454|      0|            INSTRUCTION_STATS(GET_AITER);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6455|      0|            _PyStackRef obj;
  |  | 6456|      0|            _PyStackRef iter;
  |  | 6457|      0|            obj = stack_pointer[-1];
  |  | 6458|      0|            unaryfunc getter = NULL;
  |  | 6459|      0|            PyObject *obj_o = PyStackRef_AsPyObjectBorrow(obj);
  |  | 6460|      0|            PyObject *iter_o;
  |  | 6461|      0|            PyTypeObject *type = Py_TYPE(obj_o);
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6462|      0|            if (type->tp_as_async != NULL) {
  |  |  ------------------
  |  |  |  Branch (6462:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6463|      0|                getter = type->tp_as_async->am_aiter;
  |  | 6464|      0|            }
  |  | 6465|      0|            if (getter == NULL) {
  |  |  ------------------
  |  |  |  Branch (6465:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6466|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6467|      0|                _PyErr_Format(tstate, PyExc_TypeError,
  |  | 6468|      0|                              "'async for' requires an object with "
  |  | 6469|      0|                              "__aiter__ method, got %.100s",
  |  | 6470|      0|                              type->tp_name);
  |  | 6471|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6472|      0|                stack_pointer += -1;
  |  | 6473|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6474|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6475|      0|                PyStackRef_CLOSE(obj);
  |  | 6476|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6477|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6478|      0|            }
  |  | 6479|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6480|      0|            iter_o = (*getter)(obj_o);
  |  | 6481|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6482|      0|            stack_pointer += -1;
  |  | 6483|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6484|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6485|      0|            PyStackRef_CLOSE(obj);
  |  | 6486|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6487|      0|            if (iter_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6487:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6488|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6489|      0|            }
  |  | 6490|      0|            if (Py_TYPE(iter_o)->tp_as_async == NULL ||
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6490:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6491|      0|                Py_TYPE(iter_o)->tp_as_async->am_anext == NULL) {
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6491:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6492|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6493|      0|                _PyErr_Format(tstate, PyExc_TypeError,
  |  | 6494|      0|                              "'async for' received an object from __aiter__ "
  |  | 6495|      0|                              "that does not implement __anext__: %.100s",
  |  | 6496|      0|                              Py_TYPE(iter_o)->tp_name);
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6497|      0|                Py_DECREF(iter_o);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6498|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6499|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6500|      0|            }
  |  | 6501|      0|            iter = PyStackRef_FromPyObjectSteal(iter_o);
  |  | 6502|      0|            stack_pointer[0] = iter;
  |  | 6503|      0|            stack_pointer += 1;
  |  | 6504|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6505|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (6505:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 6506|      0|        }
  |  | 6507|       |
  |  | 6508|      0|        TARGET(GET_ANEXT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6509|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6510|       |            int opcode = GET_ANEXT;
  |  | 6511|       |            (void)(opcode);
  |  | 6512|       |            #endif
  |  | 6513|      0|            frame->instr_ptr = next_instr;
  |  | 6514|      0|            next_instr += 1;
  |  | 6515|      0|            INSTRUCTION_STATS(GET_ANEXT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6516|      0|            _PyStackRef aiter;
  |  | 6517|      0|            _PyStackRef awaitable;
  |  | 6518|      0|            aiter = stack_pointer[-1];
  |  | 6519|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6520|      0|            PyObject *awaitable_o = _PyEval_GetANext(PyStackRef_AsPyObjectBorrow(aiter));
  |  | 6521|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6522|      0|            if (awaitable_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6522:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6523|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6524|      0|            }
  |  | 6525|      0|            awaitable = PyStackRef_FromPyObjectSteal(awaitable_o);
  |  | 6526|      0|            stack_pointer[0] = awaitable;
  |  | 6527|      0|            stack_pointer += 1;
  |  | 6528|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6529|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (6529:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 6530|      0|        }
  |  | 6531|       |
  |  | 6532|      0|        TARGET(GET_AWAITABLE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6533|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6534|       |            int opcode = GET_AWAITABLE;
  |  | 6535|       |            (void)(opcode);
  |  | 6536|       |            #endif
  |  | 6537|      0|            frame->instr_ptr = next_instr;
  |  | 6538|      0|            next_instr += 1;
  |  | 6539|      0|            INSTRUCTION_STATS(GET_AWAITABLE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6540|      0|            _PyStackRef iterable;
  |  | 6541|      0|            _PyStackRef iter;
  |  | 6542|      0|            iterable = stack_pointer[-1];
  |  | 6543|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6544|      0|            PyObject *iter_o = _PyEval_GetAwaitable(PyStackRef_AsPyObjectBorrow(iterable), oparg);
  |  | 6545|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6546|      0|            stack_pointer += -1;
  |  | 6547|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6548|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6549|      0|            PyStackRef_CLOSE(iterable);
  |  | 6550|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6551|      0|            if (iter_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6551:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6552|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6553|      0|            }
  |  | 6554|      0|            iter = PyStackRef_FromPyObjectSteal(iter_o);
  |  | 6555|      0|            stack_pointer[0] = iter;
  |  | 6556|      0|            stack_pointer += 1;
  |  | 6557|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6558|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (6558:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 6559|      0|        }
  |  | 6560|       |
  |  | 6561|    118|        TARGET(GET_ITER) {
  |  |  ------------------
  |  |  |  |  132|    118|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6562|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6563|       |            int opcode = GET_ITER;
  |  | 6564|       |            (void)(opcode);
  |  | 6565|       |            #endif
  |  | 6566|    118|            frame->instr_ptr = next_instr;
  |  | 6567|    118|            next_instr += 2;
  |  | 6568|    118|            INSTRUCTION_STATS(GET_ITER);
  |  |  ------------------
  |  |  |  |   71|    118|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6569|    118|            PREDICTED_GET_ITER:;
  |  | 6570|    118|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  | 6571|    118|            (void)this_instr;
  |  | 6572|    118|            _PyStackRef iterable;
  |  | 6573|    118|            _PyStackRef iter;
  |  | 6574|    118|            _PyStackRef index_or_null;
  |  | 6575|       |            // _SPECIALIZE_GET_ITER
  |  | 6576|    118|            {
  |  | 6577|    118|                iterable = stack_pointer[-1];
  |  | 6578|    118|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 6579|    118|                (void)counter;
  |  | 6580|    118|                #if ENABLE_SPECIALIZATION
  |  | 6581|    118|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|    118|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 36, False: 82]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6582|     36|                    next_instr = this_instr;
  |  | 6583|     36|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6584|     36|                    _Py_Specialize_GetIter(iterable, next_instr);
  |  | 6585|     36|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6586|     36|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     36|    { \
  |  |  |  |  217|     36|        opcode = next_instr->op.code; \
  |  |  |  |  218|     36|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     36|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     36|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     36|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     36|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     36|    }
  |  |  ------------------
  |  | 6587|     36|                }
  |  | 6588|    118|                OPCODE_DEFERRED_INC(GET_ITER);
  |  |  ------------------
  |  |  |  |   90|    118|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 6589|    118|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|    118|    do { \
  |  |  |  |  358|    118|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|    118|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 118]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6590|    118|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 6591|    118|            }
  |  | 6592|       |            // _GET_ITER
  |  | 6593|    118|            {
  |  | 6594|    118|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6595|    118|                _PyStackRef result = _PyEval_GetIter(iterable, &index_or_null, oparg);
  |  | 6596|    118|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6597|    118|                if (PyStackRef_IsError(result)) {
  |  |  ------------------
  |  |  |  Branch (6597:21): [True: 0, False: 118]
  |  |  ------------------
  |  | 6598|      0|                    JUMP_TO_LABEL(pop_1_error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6599|      0|                }
  |  | 6600|    118|                iter = result;
  |  | 6601|    118|            }
  |  | 6602|      0|            stack_pointer[-1] = iter;
  |  | 6603|    118|            stack_pointer[0] = index_or_null;
  |  | 6604|    118|            stack_pointer += 1;
  |  | 6605|    118|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    118|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6606|    118|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    118|    { \
  |  |  |  |  201|    118|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    118|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     82|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     82|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     82|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     82|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     82|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     82|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 82]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     82|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     82|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     82|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     82|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     82|    }
  |  |  ------------------
  |  |  |  Branch (6606:13): [True: 82, False: 36]
  |  |  ------------------
  |  | 6607|     82|        }
  |  | 6608|       |
  |  | 6609|      2|        TARGET(GET_ITER_SELF) {
  |  |  ------------------
  |  |  |  |  132|      2|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6610|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6611|       |            int opcode = GET_ITER_SELF;
  |  | 6612|       |            (void)(opcode);
  |  | 6613|       |            #endif
  |  | 6614|      2|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6615|      2|            (void)this_instr;
  |  | 6616|      2|            frame->instr_ptr = next_instr;
  |  | 6617|      2|            next_instr += 2;
  |  | 6618|      2|            INSTRUCTION_STATS(GET_ITER_SELF);
  |  |  ------------------
  |  |  |  |   71|      2|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6619|      2|            static_assert(INLINE_CACHE_ENTRIES_GET_ITER == 1, "incorrect cache size");
  |  | 6620|      2|            _PyStackRef iterable;
  |  | 6621|      2|            _PyStackRef res;
  |  | 6622|       |            /* Skip 1 cache entry */
  |  | 6623|       |            // _GUARD_ITERATOR
  |  | 6624|      2|            {
  |  | 6625|      2|                iterable = stack_pointer[-1];
  |  | 6626|      2|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(iterable));
  |  |  ------------------
  |  |  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6627|      2|                if (tp->tp_iter != PyObject_SelfIter) {
  |  |  ------------------
  |  |  |  Branch (6627:21): [True: 0, False: 2]
  |  |  ------------------
  |  | 6628|      0|                    UPDATE_MISS_STATS(GET_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6629|      0|                    assert(_PyOpcode_Deopt[opcode] == (GET_ITER));
  |  |  ------------------
  |  |  |  Branch (6629:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6630|      0|                    JUMP_TO_PREDICTED(GET_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6631|      0|                }
  |  | 6632|      2|                STAT_INC(GET_ITER, hit);
  |  |  ------------------
  |  |  |  |   73|      2|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 6633|      2|            }
  |  | 6634|       |            // _PUSH_NULL
  |  | 6635|      0|            {
  |  | 6636|      2|                res = PyStackRef_NULL;
  |  | 6637|      2|            }
  |  | 6638|      2|            stack_pointer[0] = res;
  |  | 6639|      2|            stack_pointer += 1;
  |  | 6640|      2|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      2|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6641|      2|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      2|    { \
  |  |  |  |  201|      2|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      2|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      2|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      2|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      2|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      2|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      2|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      2|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      2|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      2|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      2|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      2|    }
  |  |  ------------------
  |  |  |  Branch (6641:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 6642|      2|        }
  |  | 6643|       |
  |  | 6644|    320|        TARGET(GET_ITER_VIRTUAL) {
  |  |  ------------------
  |  |  |  |  132|    320|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6645|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6646|       |            int opcode = GET_ITER_VIRTUAL;
  |  | 6647|       |            (void)(opcode);
  |  | 6648|       |            #endif
  |  | 6649|    320|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6650|    320|            (void)this_instr;
  |  | 6651|    320|            frame->instr_ptr = next_instr;
  |  | 6652|    320|            next_instr += 2;
  |  | 6653|    320|            INSTRUCTION_STATS(GET_ITER_VIRTUAL);
  |  |  ------------------
  |  |  |  |   71|    320|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6654|    320|            static_assert(INLINE_CACHE_ENTRIES_GET_ITER == 1, "incorrect cache size");
  |  | 6655|    320|            _PyStackRef iterable;
  |  | 6656|    320|            _PyStackRef zero;
  |  | 6657|       |            /* Skip 1 cache entry */
  |  | 6658|       |            // _GUARD_ITER_VIRTUAL
  |  | 6659|    320|            {
  |  | 6660|    320|                iterable = stack_pointer[-1];
  |  | 6661|    320|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(iterable));
  |  |  ------------------
  |  |  |  |  213|    320|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    320|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    320|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6662|    320|                if (tp->_tp_iteritem == NULL) {
  |  |  ------------------
  |  |  |  Branch (6662:21): [True: 0, False: 320]
  |  |  ------------------
  |  | 6663|      0|                    UPDATE_MISS_STATS(GET_ITER);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 6664|      0|                    assert(_PyOpcode_Deopt[opcode] == (GET_ITER));
  |  |  ------------------
  |  |  |  Branch (6664:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6665|      0|                    JUMP_TO_PREDICTED(GET_ITER);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 6666|      0|                }
  |  | 6667|    320|                STAT_INC(GET_ITER, hit);
  |  |  ------------------
  |  |  |  |   73|    320|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 6668|    320|            }
  |  | 6669|       |            // _PUSH_TAGGED_ZERO
  |  | 6670|      0|            {
  |  | 6671|    320|                zero = PyStackRef_TagInt(0);
  |  | 6672|    320|            }
  |  | 6673|    320|            stack_pointer[0] = zero;
  |  | 6674|    320|            stack_pointer += 1;
  |  | 6675|    320|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    320|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6676|    320|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    320|    { \
  |  |  |  |  201|    320|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    320|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    320|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    320|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    320|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    320|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    320|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    320|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 320]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    320|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    320|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    320|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    320|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    320|    }
  |  |  ------------------
  |  |  |  Branch (6676:13): [True: 320, False: 0]
  |  |  ------------------
  |  | 6677|    320|        }
  |  | 6678|       |
  |  | 6679|      0|        TARGET(GET_LEN) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6680|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6681|       |            int opcode = GET_LEN;
  |  | 6682|       |            (void)(opcode);
  |  | 6683|       |            #endif
  |  | 6684|      0|            frame->instr_ptr = next_instr;
  |  | 6685|      0|            next_instr += 1;
  |  | 6686|      0|            INSTRUCTION_STATS(GET_LEN);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6687|      0|            _PyStackRef obj;
  |  | 6688|      0|            _PyStackRef len;
  |  | 6689|      0|            obj = stack_pointer[-1];
  |  | 6690|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6691|      0|            Py_ssize_t len_i = PyObject_Length(PyStackRef_AsPyObjectBorrow(obj));
  |  |  ------------------
  |  |  |  |  353|      0|#define PyObject_Length PyObject_Size
  |  |  ------------------
  |  | 6692|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6693|      0|            if (len_i < 0) {
  |  |  ------------------
  |  |  |  Branch (6693:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6694|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6695|      0|            }
  |  | 6696|      0|            PyObject *len_o = PyLong_FromSsize_t(len_i);
  |  | 6697|      0|            if (len_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6697:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6698|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6699|      0|            }
  |  | 6700|      0|            len = PyStackRef_FromPyObjectSteal(len_o);
  |  | 6701|      0|            stack_pointer[0] = len;
  |  | 6702|      0|            stack_pointer += 1;
  |  | 6703|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6704|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (6704:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 6705|      0|        }
  |  | 6706|       |
  |  | 6707|     64|        TARGET(IMPORT_FROM) {
  |  |  ------------------
  |  |  |  |  132|     64|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6708|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6709|       |            int opcode = IMPORT_FROM;
  |  | 6710|       |            (void)(opcode);
  |  | 6711|       |            #endif
  |  | 6712|     64|            frame->instr_ptr = next_instr;
  |  | 6713|     64|            next_instr += 1;
  |  | 6714|     64|            INSTRUCTION_STATS(IMPORT_FROM);
  |  |  ------------------
  |  |  |  |   71|     64|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6715|     64|            _PyStackRef from;
  |  | 6716|     64|            _PyStackRef res;
  |  | 6717|     64|            from = stack_pointer[-1];
  |  | 6718|     64|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|     64|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|     64|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|     64|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6718:30): [True: 64, False: 0]
  |  |  ------------------
  |  | 6719|      0|            PyObject *res_o;
  |  | 6720|     64|            if (PyLazyImport_CheckExact(PyStackRef_AsPyObjectBorrow(from))) {
  |  |  ------------------
  |  |  |  |   15|     64|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     64|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     64|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     64|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 64]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6721|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6722|      0|                res_o = _PyEval_LazyImportFrom(
  |  | 6723|      0|                    tstate, frame, PyStackRef_AsPyObjectBorrow(from), name);
  |  | 6724|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6725|      0|            }
  |  | 6726|     64|            else {
  |  | 6727|     64|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6728|     64|                res_o = _PyEval_ImportFrom(
  |  | 6729|     64|                    tstate, PyStackRef_AsPyObjectBorrow(from), name);
  |  | 6730|     64|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6731|     64|            }
  |  | 6732|     64|            if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6732:17): [True: 0, False: 64]
  |  |  ------------------
  |  | 6733|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6734|      0|            }
  |  | 6735|     64|            res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 6736|     64|            stack_pointer[0] = res;
  |  | 6737|     64|            stack_pointer += 1;
  |  | 6738|     64|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     64|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6739|     64|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     64|    { \
  |  |  |  |  201|     64|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     64|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     64|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     64|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     64|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     64|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     64|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     64|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 64]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     64|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     64|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     64|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     64|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     64|    }
  |  |  ------------------
  |  |  |  Branch (6739:13): [True: 64, False: 0]
  |  |  ------------------
  |  | 6740|     64|        }
  |  | 6741|       |
  |  | 6742|    132|        TARGET(IMPORT_NAME) {
  |  |  ------------------
  |  |  |  |  132|    132|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6743|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6744|       |            int opcode = IMPORT_NAME;
  |  | 6745|       |            (void)(opcode);
  |  | 6746|       |            #endif
  |  | 6747|    132|            frame->instr_ptr = next_instr;
  |  | 6748|    132|            next_instr += 1;
  |  | 6749|    132|            INSTRUCTION_STATS(IMPORT_NAME);
  |  |  ------------------
  |  |  |  |   71|    132|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6750|    132|            _PyStackRef level;
  |  | 6751|    132|            _PyStackRef fromlist;
  |  | 6752|    132|            _PyStackRef res;
  |  | 6753|    132|            fromlist = stack_pointer[-1];
  |  | 6754|    132|            level = stack_pointer[-2];
  |  | 6755|    132|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg >> 2);
  |  |  ------------------
  |  |  |  |  235|    132|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|    132|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|    132|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6755:30): [True: 132, False: 0]
  |  |  ------------------
  |  | 6756|      0|            PyObject *res_o;
  |  | 6757|    132|            if (!(oparg & 0x02)) {
  |  |  ------------------
  |  |  |  Branch (6757:17): [True: 98, False: 34]
  |  |  ------------------
  |  | 6758|     98|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6759|     98|                res_o = _PyEval_LazyImportName(tstate, BUILTINS(), GLOBALS(),
  |  |  ------------------
  |  |  |  |  326|     98|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  |                               res_o = _PyEval_LazyImportName(tstate, BUILTINS(), GLOBALS(),
  |  |  ------------------
  |  |  |  |  325|     98|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 6760|     98|                    LOCALS(), name,
  |  |  ------------------
  |  |  |  |  327|     98|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  | 6761|     98|                    PyStackRef_AsPyObjectBorrow(fromlist),
  |  | 6762|     98|                    PyStackRef_AsPyObjectBorrow(level),
  |  | 6763|     98|                    oparg & 0x01);
  |  | 6764|     98|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6765|     98|            }
  |  | 6766|     34|            else {
  |  | 6767|     34|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6768|     34|                res_o = _PyEval_ImportName(tstate, BUILTINS(), GLOBALS(),
  |  |  ------------------
  |  |  |  |  326|     34|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  |                               res_o = _PyEval_ImportName(tstate, BUILTINS(), GLOBALS(),
  |  |  ------------------
  |  |  |  |  325|     34|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 6769|     34|                    LOCALS(), name,
  |  |  ------------------
  |  |  |  |  327|     34|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  | 6770|     34|                    PyStackRef_AsPyObjectBorrow(fromlist),
  |  | 6771|     34|                    PyStackRef_AsPyObjectBorrow(level));
  |  | 6772|     34|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6773|     34|            }
  |  | 6774|    132|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6775|    132|            _PyStackRef tmp = fromlist;
  |  | 6776|    132|            fromlist = PyStackRef_NULL;
  |  | 6777|    132|            stack_pointer[-1] = fromlist;
  |  | 6778|    132|            PyStackRef_CLOSE(tmp);
  |  | 6779|    132|            tmp = level;
  |  | 6780|    132|            level = PyStackRef_NULL;
  |  | 6781|    132|            stack_pointer[-2] = level;
  |  | 6782|    132|            PyStackRef_CLOSE(tmp);
  |  | 6783|    132|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6784|    132|            stack_pointer += -2;
  |  | 6785|    132|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    132|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6786|    132|            if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6786:17): [True: 4, False: 128]
  |  |  ------------------
  |  | 6787|      4|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      4|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6788|      0|            }
  |  | 6789|    128|            res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 6790|    128|            stack_pointer[0] = res;
  |  | 6791|    128|            stack_pointer += 1;
  |  | 6792|    128|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    128|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6793|    128|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    128|    { \
  |  |  |  |  201|    128|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    128|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    128|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    128|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    128|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    128|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    128|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    128|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 128]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    128|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    128|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    128|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    128|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    128|    }
  |  |  ------------------
  |  |  |  Branch (6793:13): [True: 128, False: 0]
  |  |  ------------------
  |  | 6794|    128|        }
  |  | 6795|       |
  |  | 6796|      0|        TARGET(INSTRUMENTED_CALL) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6797|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6798|       |            int opcode = INSTRUMENTED_CALL;
  |  | 6799|       |            (void)(opcode);
  |  | 6800|       |            #endif
  |  | 6801|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6802|      0|            (void)this_instr;
  |  | 6803|      0|            frame->instr_ptr = next_instr;
  |  | 6804|      0|            next_instr += 4;
  |  | 6805|      0|            INSTRUCTION_STATS(INSTRUMENTED_CALL);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6806|      0|            opcode = INSTRUMENTED_CALL;
  |  |  ------------------
  |  |  |  |  240|      0|#define INSTRUMENTED_CALL                      249
  |  |  ------------------
  |  | 6807|      0|            _PyStackRef callable;
  |  | 6808|      0|            _PyStackRef self_or_null;
  |  | 6809|      0|            _PyStackRef func;
  |  | 6810|      0|            _PyStackRef maybe_self;
  |  | 6811|      0|            _PyStackRef *args;
  |  | 6812|      0|            _PyStackRef res;
  |  | 6813|       |            /* Skip 3 cache entries */
  |  | 6814|       |            // _MAYBE_EXPAND_METHOD
  |  | 6815|      0|            {
  |  | 6816|      0|                self_or_null = stack_pointer[-1 - oparg];
  |  | 6817|      0|                callable = stack_pointer[-2 - oparg];
  |  | 6818|      0|                if (PyStackRef_TYPE(callable) == &PyMethod_Type && PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6818:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6819|      0|                    PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 6820|      0|                    PyObject *self = ((PyMethodObject *)callable_o)->im_self;
  |  | 6821|      0|                    self_or_null = PyStackRef_FromPyObjectNew(self);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6822|      0|                    PyObject *method = ((PyMethodObject *)callable_o)->im_func;
  |  | 6823|      0|                    _PyStackRef temp = callable;
  |  | 6824|      0|                    callable = PyStackRef_FromPyObjectNew(method);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6825|      0|                    stack_pointer[-2 - oparg] = callable;
  |  | 6826|      0|                    stack_pointer[-1 - oparg] = self_or_null;
  |  | 6827|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6828|      0|                    PyStackRef_CLOSE(temp);
  |  | 6829|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6830|      0|                }
  |  | 6831|      0|            }
  |  | 6832|       |            // _MONITOR_CALL
  |  | 6833|      0|            {
  |  | 6834|      0|                args = &stack_pointer[-oparg];
  |  | 6835|      0|                maybe_self = self_or_null;
  |  | 6836|      0|                func = callable;
  |  | 6837|      0|                int is_meth = !PyStackRef_IsNull(maybe_self);
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6838|      0|                PyObject *function = PyStackRef_AsPyObjectBorrow(func);
  |  | 6839|      0|                PyObject *arg0;
  |  | 6840|      0|                if (is_meth) {
  |  |  ------------------
  |  |  |  Branch (6840:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6841|      0|                    arg0 = PyStackRef_AsPyObjectBorrow(maybe_self);
  |  | 6842|      0|                }
  |  | 6843|      0|                else if (oparg) {
  |  |  ------------------
  |  |  |  Branch (6843:26): [True: 0, False: 0]
  |  |  ------------------
  |  | 6844|      0|                    arg0 = PyStackRef_AsPyObjectBorrow(args[0]);
  |  | 6845|      0|                }
  |  | 6846|      0|                else {
  |  | 6847|      0|                    arg0 = &_PyInstrumentation_MISSING;
  |  | 6848|      0|                }
  |  | 6849|      0|                stack_pointer[-2 - oparg] = func;
  |  | 6850|      0|                stack_pointer[-1 - oparg] = maybe_self;
  |  | 6851|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6852|      0|                int err = _Py_call_instrumentation_2args(
  |  | 6853|      0|                    tstate, PY_MONITORING_EVENT_CALL,
  |  |  ------------------
  |  |  |  |   18|      0|#define PY_MONITORING_EVENT_CALL 4
  |  |  ------------------
  |  | 6854|      0|                    frame, this_instr, function, arg0
  |  | 6855|      0|                );
  |  | 6856|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6857|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (6857:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6858|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6859|      0|                }
  |  | 6860|      0|            }
  |  | 6861|       |            // _DO_CALL
  |  | 6862|      0|            {
  |  | 6863|      0|                args = &stack_pointer[-oparg];
  |  | 6864|      0|                self_or_null = stack_pointer[-1 - oparg];
  |  | 6865|      0|                callable = stack_pointer[-2 - oparg];
  |  | 6866|      0|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 6867|      0|                int total_args = oparg;
  |  | 6868|      0|                _PyStackRef *arguments = args;
  |  | 6869|      0|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6869:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6870|      0|                    arguments--;
  |  | 6871|      0|                    total_args++;
  |  | 6872|      0|                }
  |  | 6873|      0|                if (Py_TYPE(callable_o) == &PyFunction_Type &&
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6873:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6874|      0|                    !IS_PEP523_HOOKED(tstate) &&
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  ------------------
  |  |  |  Branch (6874:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6875|      0|                    ((PyFunctionObject *)callable_o)->vectorcall == _PyFunction_Vectorcall)
  |  |  ------------------
  |  |  |  Branch (6875:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6876|      0|                {
  |  | 6877|      0|                    int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|      0|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 6878|      0|                    PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|      0|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                                   PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6878:40): [True: 0, False: 0]
  |  |  ------------------
  |  | 6879|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6880|      0|                    _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit(
  |  | 6881|      0|                        tstate, callable, locals,
  |  | 6882|      0|                        arguments, total_args, NULL, frame
  |  | 6883|      0|                    );
  |  | 6884|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6885|      0|                    stack_pointer += -2 - oparg;
  |  | 6886|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6887|      0|                    if (new_frame == NULL) {
  |  |  ------------------
  |  |  |  Branch (6887:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 6888|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6889|      0|                    }
  |  | 6890|      0|                    frame->return_offset = 4u ;
  |  | 6891|      0|                    DISPATCH_INLINED(new_frame);
  |  |  ------------------
  |  |  |  |  223|      0|    do {                                                         \
  |  |  |  |  224|      0|        assert(!IS_PEP523_HOOKED(tstate));                       \
  |  |  |  |  225|      0|        _PyFrame_SetStackPointer(frame, stack_pointer);          \
  |  |  |  |  226|      0|        assert((NEW_FRAME)->previous == frame);                  \
  |  |  |  |  227|      0|        frame = tstate->current_frame = (NEW_FRAME);             \
  |  |  |  |  228|      0|        CALL_STAT_INC(inlined_py_calls);                         \
  |  |  |  |  ------------------
  |  |  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  229|      0|        JUMP_TO_LABEL(start_frame);                              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  230|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (230:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6891:21): [True: 0, False: 0]
  |  |  |  Branch (6891:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6892|      0|                }
  |  | 6893|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6894|      0|                PyObject* res_o = _Py_VectorCallInstrumentation_StackRefSteal(
  |  | 6895|      0|                    callable,
  |  | 6896|      0|                    arguments,
  |  | 6897|      0|                    total_args,
  |  | 6898|      0|                    PyStackRef_NULL,
  |  | 6899|      0|                    opcode == INSTRUMENTED_CALL,
  |  |  ------------------
  |  |  |  |  240|      0|#define INSTRUMENTED_CALL                      249
  |  |  ------------------
  |  | 6900|      0|                    frame,
  |  | 6901|      0|                    this_instr,
  |  | 6902|      0|                    tstate);
  |  | 6903|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6904|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6904:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6905|      0|                    stack_pointer += -2 - oparg;
  |  | 6906|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6907|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6908|      0|                }
  |  | 6909|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 6910|      0|            }
  |  | 6911|       |            // _CHECK_PERIODIC_AT_END
  |  | 6912|      0|            {
  |  | 6913|      0|                stack_pointer[-2 - oparg] = res;
  |  | 6914|      0|                stack_pointer += -1 - oparg;
  |  | 6915|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 6916|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6917|      0|                int err = check_periodics(tstate);
  |  | 6918|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6919|      0|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (6919:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6920|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6921|      0|                }
  |  | 6922|      0|            }
  |  | 6923|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (6923:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 6924|      0|        }
  |  | 6925|       |
  |  | 6926|      0|        TARGET(INSTRUMENTED_CALL_FUNCTION_EX) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 6927|       |            #if _Py_TAIL_CALL_INTERP
  |  | 6928|       |            int opcode = INSTRUMENTED_CALL_FUNCTION_EX;
  |  | 6929|       |            (void)(opcode);
  |  | 6930|       |            #endif
  |  | 6931|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 6932|      0|            (void)this_instr;
  |  | 6933|      0|            frame->instr_ptr = next_instr;
  |  | 6934|      0|            next_instr += 2;
  |  | 6935|      0|            INSTRUCTION_STATS(INSTRUMENTED_CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 6936|      0|            opcode = INSTRUMENTED_CALL_FUNCTION_EX;
  |  |  ------------------
  |  |  |  |  242|      0|#define INSTRUMENTED_CALL_FUNCTION_EX          251
  |  |  ------------------
  |  | 6937|      0|            _PyStackRef func;
  |  | 6938|      0|            _PyStackRef callargs;
  |  | 6939|      0|            _PyStackRef func_st;
  |  | 6940|      0|            _PyStackRef null;
  |  | 6941|      0|            _PyStackRef callargs_st;
  |  | 6942|      0|            _PyStackRef kwargs_st;
  |  | 6943|      0|            _PyStackRef result;
  |  | 6944|       |            /* Skip 1 cache entry */
  |  | 6945|       |            // _MAKE_CALLARGS_A_TUPLE
  |  | 6946|      0|            {
  |  | 6947|      0|                callargs = stack_pointer[-2];
  |  | 6948|      0|                func = stack_pointer[-4];
  |  | 6949|      0|                PyObject *callargs_o = PyStackRef_AsPyObjectBorrow(callargs);
  |  | 6950|      0|                if (!PyTuple_CheckExact(callargs_o)) {
  |  |  ------------------
  |  |  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6950:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6951|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6952|      0|                    int err = _Py_Check_ArgsIterable(tstate, PyStackRef_AsPyObjectBorrow(func), callargs_o);
  |  | 6953|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6954|      0|                    if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (6954:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 6955|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6956|      0|                    }
  |  | 6957|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6958|      0|                    PyObject *tuple_o = PySequence_Tuple(callargs_o);
  |  | 6959|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6960|      0|                    if (tuple_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (6960:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 6961|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6962|      0|                    }
  |  | 6963|      0|                    _PyStackRef temp = callargs;
  |  | 6964|      0|                    callargs = PyStackRef_FromPyObjectSteal(tuple_o);
  |  | 6965|      0|                    stack_pointer[-2] = callargs;
  |  | 6966|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6967|      0|                    PyStackRef_CLOSE(temp);
  |  | 6968|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6969|      0|                }
  |  | 6970|      0|            }
  |  | 6971|       |            // _DO_CALL_FUNCTION_EX
  |  | 6972|      0|            {
  |  | 6973|      0|                kwargs_st = stack_pointer[-1];
  |  | 6974|      0|                callargs_st = callargs;
  |  | 6975|      0|                null = stack_pointer[-3];
  |  | 6976|      0|                func_st = func;
  |  | 6977|      0|                (void)null;
  |  | 6978|      0|                PyObject *func = PyStackRef_AsPyObjectBorrow(func_st);
  |  | 6979|      0|                EVAL_CALL_STAT_INC_IF_FUNCTION(EVAL_CALL_FUNCTION_EX, func);
  |  |  ------------------
  |  |  |  |   80|      0|#define EVAL_CALL_STAT_INC_IF_FUNCTION(name, callable) ((void)0)
  |  |  ------------------
  |  | 6980|      0|                PyObject *result_o;
  |  | 6981|      0|                assert(!_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (6981:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 6982|      0|                if (opcode == INSTRUMENTED_CALL_FUNCTION_EX) {
  |  |  ------------------
  |  |  |  |  242|      0|#define INSTRUMENTED_CALL_FUNCTION_EX          251
  |  |  ------------------
  |  |  |  Branch (6982:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6983|      0|                    PyObject *callargs = PyStackRef_AsPyObjectBorrow(callargs_st);
  |  | 6984|      0|                    PyObject *kwargs = PyStackRef_AsPyObjectBorrow(kwargs_st);
  |  | 6985|      0|                    assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (6985:21): [True: 0, False: 0]
  |  |  |  Branch (6985:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6986|      0|                    assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (6986:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6987|      0|                    PyObject *arg = PyTuple_GET_SIZE(callargs) > 0 ?
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6987:37): [True: 0, False: 0]
  |  |  ------------------
  |  | 6988|      0|                    PyTuple_GET_ITEM(callargs, 0) : &_PyInstrumentation_MISSING;
  |  |  ------------------
  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (6988:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 6989|      0|                    stack_pointer[-2] = callargs_st;
  |  | 6990|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6991|      0|                    int err = _Py_call_instrumentation_2args(
  |  | 6992|      0|                        tstate, PY_MONITORING_EVENT_CALL,
  |  |  ------------------
  |  |  |  |   18|      0|#define PY_MONITORING_EVENT_CALL 4
  |  |  ------------------
  |  | 6993|      0|                        frame, this_instr, func, arg);
  |  | 6994|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 6995|      0|                    if (err) {
  |  |  ------------------
  |  |  |  Branch (6995:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 6996|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 6997|      0|                    }
  |  | 6998|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 6999|      0|                    result_o = PyObject_Call(func, callargs, kwargs);
  |  | 7000|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7001|      0|                    if (!PyFunction_Check(func) && !PyMethod_Check(func)) {
  |  |  ------------------
  |  |  |  |   68|      0|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                                   if (!PyFunction_Check(func) && !PyMethod_Check(func)) {
  |  |  ------------------
  |  |  |  |   22|      0|#define PyMethod_Check(op) Py_IS_TYPE((op), &PyMethod_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7001:25): [True: 0, False: 0]
  |  |  |  Branch (7001:52): [True: 0, False: 0]
  |  |  ------------------
  |  | 7002|      0|                        if (result_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (7002:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 7003|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7004|      0|                            _Py_call_instrumentation_exc2(
  |  | 7005|      0|                                tstate, PY_MONITORING_EVENT_C_RAISE,
  |  |  ------------------
  |  |  |  |   45|      0|#define PY_MONITORING_EVENT_C_RAISE 17
  |  |  ------------------
  |  | 7006|      0|                                frame, this_instr, func, arg);
  |  | 7007|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7008|      0|                        }
  |  | 7009|      0|                        else {
  |  | 7010|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7011|      0|                            int err = _Py_call_instrumentation_2args(
  |  | 7012|      0|                                tstate, PY_MONITORING_EVENT_C_RETURN,
  |  |  ------------------
  |  |  |  |   44|      0|#define PY_MONITORING_EVENT_C_RETURN 16
  |  |  ------------------
  |  | 7013|      0|                                frame, this_instr, func, arg);
  |  | 7014|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7015|      0|                            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (7015:33): [True: 0, False: 0]
  |  |  ------------------
  |  | 7016|      0|                                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7017|      0|                                Py_CLEAR(result_o);
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7018|      0|                                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7019|      0|                            }
  |  | 7020|      0|                        }
  |  | 7021|      0|                    }
  |  | 7022|      0|                }
  |  | 7023|      0|                else {
  |  | 7024|      0|                    if (Py_TYPE(func) == &PyFunction_Type &&
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7024:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7025|      0|                        !IS_PEP523_HOOKED(tstate) &&
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  ------------------
  |  |  |  Branch (7025:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7026|      0|                        ((PyFunctionObject *)func)->vectorcall == _PyFunction_Vectorcall) {
  |  |  ------------------
  |  |  |  Branch (7026:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7027|      0|                        PyObject *callargs = PyStackRef_AsPyObjectSteal(callargs_st);
  |  | 7028|      0|                        assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (7028:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7029|      0|                        PyObject *kwargs = PyStackRef_IsNull(kwargs_st) ? NULL : PyStackRef_AsPyObjectSteal(kwargs_st);
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7030|      0|                        assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (7030:25): [True: 0, False: 0]
  |  |  |  Branch (7030:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7031|      0|                        Py_ssize_t nargs = PyTuple_GET_SIZE(callargs);
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7032|      0|                        int code_flags = ((PyCodeObject *)PyFunction_GET_CODE(func))->co_flags;
  |  |  ------------------
  |  |  |  |   93|      0|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7033|      0|                        PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(func));
  |  |  ------------------
  |  |  |  |  118|      0|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                                       PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(func));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7033:44): [True: 0, False: 0]
  |  |  ------------------
  |  | 7034|      0|                        stack_pointer += -2;
  |  | 7035|      0|                        ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7036|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7037|      0|                        _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit_Ex(
  |  | 7038|      0|                            tstate, func_st, locals,
  |  | 7039|      0|                            nargs, callargs, kwargs, frame);
  |  | 7040|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7041|      0|                        stack_pointer += -2;
  |  | 7042|      0|                        ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7043|      0|                        if (new_frame == NULL) {
  |  |  ------------------
  |  |  |  Branch (7043:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 7044|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7045|      0|                        }
  |  | 7046|      0|                        assert( 2u == 1 + INLINE_CACHE_ENTRIES_CALL_FUNCTION_EX);
  |  |  ------------------
  |  |  |  Branch (7046:25): [True: 0, Folded]
  |  |  ------------------
  |  | 7047|      0|                        frame->return_offset = 2u ;
  |  | 7048|      0|                        DISPATCH_INLINED(new_frame);
  |  |  ------------------
  |  |  |  |  223|      0|    do {                                                         \
  |  |  |  |  224|      0|        assert(!IS_PEP523_HOOKED(tstate));                       \
  |  |  |  |  225|      0|        _PyFrame_SetStackPointer(frame, stack_pointer);          \
  |  |  |  |  226|      0|        assert((NEW_FRAME)->previous == frame);                  \
  |  |  |  |  227|      0|        frame = tstate->current_frame = (NEW_FRAME);             \
  |  |  |  |  228|      0|        CALL_STAT_INC(inlined_py_calls);                         \
  |  |  |  |  ------------------
  |  |  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  229|      0|        JUMP_TO_LABEL(start_frame);                              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  230|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (230:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7048:25): [True: 0, False: 0]
  |  |  |  Branch (7048:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7049|      0|                    }
  |  | 7050|      0|                    PyObject *callargs = PyStackRef_AsPyObjectBorrow(callargs_st);
  |  | 7051|      0|                    assert(PyTuple_CheckExact(callargs));
  |  |  ------------------
  |  |  |  Branch (7051:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7052|      0|                    PyObject *kwargs = PyStackRef_AsPyObjectBorrow(kwargs_st);
  |  | 7053|      0|                    assert(kwargs == NULL || PyDict_CheckExact(kwargs));
  |  |  ------------------
  |  |  |  Branch (7053:21): [True: 0, False: 0]
  |  |  |  Branch (7053:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7054|      0|                    stack_pointer[-2] = callargs_st;
  |  | 7055|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7056|      0|                    result_o = PyObject_Call(func, callargs, kwargs);
  |  | 7057|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7058|      0|                }
  |  | 7059|      0|                stack_pointer += -1;
  |  | 7060|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7061|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7062|      0|                PyStackRef_XCLOSE(kwargs_st);
  |  | 7063|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7064|      0|                stack_pointer += -1;
  |  | 7065|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7066|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7067|      0|                PyStackRef_CLOSE(callargs_st);
  |  | 7068|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7069|      0|                stack_pointer += -2;
  |  | 7070|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7071|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7072|      0|                PyStackRef_CLOSE(func_st);
  |  | 7073|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7074|      0|                if (result_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (7074:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7075|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7076|      0|                }
  |  | 7077|      0|                result = PyStackRef_FromPyObjectSteal(result_o);
  |  | 7078|      0|            }
  |  | 7079|       |            // _CHECK_PERIODIC_AT_END
  |  | 7080|      0|            {
  |  | 7081|      0|                stack_pointer[0] = result;
  |  | 7082|      0|                stack_pointer += 1;
  |  | 7083|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7084|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7085|      0|                int err = check_periodics(tstate);
  |  | 7086|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7087|      0|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (7087:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7088|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7089|      0|                }
  |  | 7090|      0|            }
  |  | 7091|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7091:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7092|      0|        }
  |  | 7093|       |
  |  | 7094|      0|        TARGET(INSTRUMENTED_CALL_KW) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7095|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7096|       |            int opcode = INSTRUMENTED_CALL_KW;
  |  | 7097|       |            (void)(opcode);
  |  | 7098|       |            #endif
  |  | 7099|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7100|      0|            (void)this_instr;
  |  | 7101|      0|            frame->instr_ptr = next_instr;
  |  | 7102|      0|            next_instr += 4;
  |  | 7103|      0|            INSTRUCTION_STATS(INSTRUMENTED_CALL_KW);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7104|      0|            opcode = INSTRUMENTED_CALL_KW;
  |  |  ------------------
  |  |  |  |  241|      0|#define INSTRUMENTED_CALL_KW                   250
  |  |  ------------------
  |  | 7105|      0|            _PyStackRef callable;
  |  | 7106|      0|            _PyStackRef self_or_null;
  |  | 7107|      0|            _PyStackRef *args;
  |  | 7108|      0|            _PyStackRef kwnames;
  |  | 7109|      0|            _PyStackRef res;
  |  | 7110|       |            /* Skip 1 cache entry */
  |  | 7111|       |            /* Skip 2 cache entries */
  |  | 7112|       |            // _MAYBE_EXPAND_METHOD_KW
  |  | 7113|      0|            {
  |  | 7114|      0|                self_or_null = stack_pointer[-2 - oparg];
  |  | 7115|      0|                callable = stack_pointer[-3 - oparg];
  |  | 7116|      0|                if (PyStackRef_TYPE(callable) == &PyMethod_Type && PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7116:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7117|      0|                    PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 7118|      0|                    PyObject *self = ((PyMethodObject *)callable_o)->im_self;
  |  | 7119|      0|                    self_or_null = PyStackRef_FromPyObjectNew(self);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7120|      0|                    PyObject *method = ((PyMethodObject *)callable_o)->im_func;
  |  | 7121|      0|                    _PyStackRef temp = callable;
  |  | 7122|      0|                    callable = PyStackRef_FromPyObjectNew(method);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7123|      0|                    stack_pointer[-3 - oparg] = callable;
  |  | 7124|      0|                    stack_pointer[-2 - oparg] = self_or_null;
  |  | 7125|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7126|      0|                    PyStackRef_CLOSE(temp);
  |  | 7127|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7128|      0|                }
  |  | 7129|      0|            }
  |  | 7130|       |            // _MONITOR_CALL_KW
  |  | 7131|      0|            {
  |  | 7132|      0|                args = &stack_pointer[-1 - oparg];
  |  | 7133|      0|                int is_meth = !PyStackRef_IsNull(self_or_null);
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7134|      0|                PyObject *arg;
  |  | 7135|      0|                if (is_meth) {
  |  |  ------------------
  |  |  |  Branch (7135:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7136|      0|                    arg = PyStackRef_AsPyObjectBorrow(self_or_null);
  |  | 7137|      0|                }
  |  | 7138|      0|                else if (args) {
  |  |  ------------------
  |  |  |  Branch (7138:26): [True: 0, False: 0]
  |  |  ------------------
  |  | 7139|      0|                    arg = PyStackRef_AsPyObjectBorrow(args[0]);
  |  | 7140|      0|                }
  |  | 7141|      0|                else {
  |  | 7142|      0|                    arg = &_PyInstrumentation_MISSING;
  |  | 7143|      0|                }
  |  | 7144|      0|                PyObject *function = PyStackRef_AsPyObjectBorrow(callable);
  |  | 7145|      0|                stack_pointer[-3 - oparg] = callable;
  |  | 7146|      0|                stack_pointer[-2 - oparg] = self_or_null;
  |  | 7147|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7148|      0|                int err = _Py_call_instrumentation_2args(
  |  | 7149|      0|                    tstate, PY_MONITORING_EVENT_CALL,
  |  |  ------------------
  |  |  |  |   18|      0|#define PY_MONITORING_EVENT_CALL 4
  |  |  ------------------
  |  | 7150|      0|                    frame, this_instr, function, arg);
  |  | 7151|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7152|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (7152:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7153|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7154|      0|                }
  |  | 7155|      0|            }
  |  | 7156|       |            // _DO_CALL_KW
  |  | 7157|      0|            {
  |  | 7158|      0|                kwnames = stack_pointer[-1];
  |  | 7159|      0|                args = &stack_pointer[-1 - oparg];
  |  | 7160|      0|                PyObject *callable_o = PyStackRef_AsPyObjectBorrow(callable);
  |  | 7161|      0|                PyObject *kwnames_o = PyStackRef_AsPyObjectBorrow(kwnames);
  |  | 7162|      0|                int total_args = oparg;
  |  | 7163|      0|                _PyStackRef *arguments = args;
  |  | 7164|      0|                if (!PyStackRef_IsNull(self_or_null)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7164:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7165|      0|                    arguments--;
  |  | 7166|      0|                    total_args++;
  |  | 7167|      0|                }
  |  | 7168|      0|                int positional_args = total_args - (int)PyTuple_GET_SIZE(kwnames_o);
  |  |  ------------------
  |  |  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7169|      0|                if (Py_TYPE(callable_o) == &PyFunction_Type &&
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7169:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7170|      0|                    !IS_PEP523_HOOKED(tstate) &&
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  ------------------
  |  |  |  Branch (7170:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7171|      0|                    ((PyFunctionObject *)callable_o)->vectorcall == _PyFunction_Vectorcall)
  |  |  ------------------
  |  |  |  Branch (7171:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7172|      0|                {
  |  | 7173|      0|                    int code_flags = ((PyCodeObject*)PyFunction_GET_CODE(callable_o))->co_flags;
  |  |  ------------------
  |  |  |  |   93|      0|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7174|      0|                    PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  118|      0|#define CO_OPTIMIZED    0x0001
  |  |  ------------------
  |  |                                   PyObject *locals = code_flags & CO_OPTIMIZED ? NULL : Py_NewRef(PyFunction_GET_GLOBALS(callable_o));
  |  |  ------------------
  |  |  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7174:40): [True: 0, False: 0]
  |  |  ------------------
  |  | 7175|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7176|      0|                    _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit(
  |  | 7177|      0|                        tstate, callable, locals,
  |  | 7178|      0|                        arguments, positional_args, kwnames_o, frame
  |  | 7179|      0|                    );
  |  | 7180|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7181|      0|                    stack_pointer += -3 - oparg;
  |  | 7182|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7183|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7184|      0|                    PyStackRef_CLOSE(kwnames);
  |  | 7185|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7186|      0|                    if (new_frame == NULL) {
  |  |  ------------------
  |  |  |  Branch (7186:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7187|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7188|      0|                    }
  |  | 7189|      0|                    assert( 4u == 1 + INLINE_CACHE_ENTRIES_CALL_KW);
  |  |  ------------------
  |  |  |  Branch (7189:21): [True: 0, Folded]
  |  |  ------------------
  |  | 7190|      0|                    frame->return_offset = 4u ;
  |  | 7191|      0|                    DISPATCH_INLINED(new_frame);
  |  |  ------------------
  |  |  |  |  223|      0|    do {                                                         \
  |  |  |  |  224|      0|        assert(!IS_PEP523_HOOKED(tstate));                       \
  |  |  |  |  225|      0|        _PyFrame_SetStackPointer(frame, stack_pointer);          \
  |  |  |  |  226|      0|        assert((NEW_FRAME)->previous == frame);                  \
  |  |  |  |  227|      0|        frame = tstate->current_frame = (NEW_FRAME);             \
  |  |  |  |  228|      0|        CALL_STAT_INC(inlined_py_calls);                         \
  |  |  |  |  ------------------
  |  |  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  229|      0|        JUMP_TO_LABEL(start_frame);                              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  230|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (230:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7191:21): [True: 0, False: 0]
  |  |  |  Branch (7191:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7192|      0|                }
  |  | 7193|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7194|      0|                PyObject* res_o = _Py_VectorCallInstrumentation_StackRefSteal(
  |  | 7195|      0|                    callable,
  |  | 7196|      0|                    arguments,
  |  | 7197|      0|                    total_args,
  |  | 7198|      0|                    kwnames,
  |  | 7199|      0|                    opcode == INSTRUMENTED_CALL_KW,
  |  |  ------------------
  |  |  |  |  241|      0|#define INSTRUMENTED_CALL_KW                   250
  |  |  ------------------
  |  | 7200|      0|                    frame,
  |  | 7201|      0|                    this_instr,
  |  | 7202|      0|                    tstate);
  |  | 7203|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7204|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (7204:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7205|      0|                    stack_pointer += -3 - oparg;
  |  | 7206|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7207|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7208|      0|                }
  |  | 7209|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  | 7210|      0|            }
  |  | 7211|      0|            stack_pointer[-3 - oparg] = res;
  |  | 7212|      0|            stack_pointer += -2 - oparg;
  |  | 7213|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7214|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7214:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7215|      0|        }
  |  | 7216|       |
  |  | 7217|      0|        TARGET(INSTRUMENTED_END_ASYNC_FOR) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7218|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7219|       |            int opcode = INSTRUMENTED_END_ASYNC_FOR;
  |  | 7220|       |            (void)(opcode);
  |  | 7221|       |            #endif
  |  | 7222|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7223|      0|            (void)this_instr;
  |  | 7224|      0|            frame->instr_ptr = next_instr;
  |  | 7225|      0|            next_instr += 1;
  |  | 7226|      0|            INSTRUCTION_STATS(INSTRUMENTED_END_ASYNC_FOR);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7227|      0|            _PyStackRef awaitable_st;
  |  | 7228|      0|            _PyStackRef exc_st;
  |  | 7229|       |            // _MONITOR_END_ASYNC_FOR
  |  | 7230|      0|            {
  |  | 7231|      0|                assert((next_instr-oparg)->op.code == END_SEND || (next_instr-oparg)->op.code >= MIN_INSTRUMENTED_OPCODE);
  |  |  ------------------
  |  |  |  Branch (7231:17): [True: 0, False: 0]
  |  |  |  Branch (7231:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7232|      0|                INSTRUMENTED_JUMP(next_instr-oparg, this_instr+1, PY_MONITORING_EVENT_BRANCH_RIGHT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7233|      0|            }
  |  | 7234|       |            // _END_ASYNC_FOR
  |  | 7235|      0|            {
  |  | 7236|      0|                exc_st = stack_pointer[-1];
  |  | 7237|      0|                awaitable_st = stack_pointer[-2];
  |  | 7238|      0|                JUMPBY(0);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 7239|      0|                (void)oparg;
  |  | 7240|      0|                PyObject *exc = PyStackRef_AsPyObjectBorrow(exc_st);
  |  | 7241|      0|                assert(exc && PyExceptionInstance_Check(exc));
  |  |  ------------------
  |  |  |  Branch (7241:17): [True: 0, False: 0]
  |  |  |  Branch (7241:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7242|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7243|      0|                int matches = PyErr_GivenExceptionMatches(exc, PyExc_StopAsyncIteration);
  |  | 7244|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7245|      0|                if (matches) {
  |  |  ------------------
  |  |  |  Branch (7245:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7246|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7247|      0|                    _PyStackRef tmp = exc_st;
  |  | 7248|      0|                    exc_st = PyStackRef_NULL;
  |  | 7249|      0|                    stack_pointer[-1] = exc_st;
  |  | 7250|      0|                    PyStackRef_CLOSE(tmp);
  |  | 7251|      0|                    tmp = awaitable_st;
  |  | 7252|      0|                    awaitable_st = PyStackRef_NULL;
  |  | 7253|      0|                    stack_pointer[-2] = awaitable_st;
  |  | 7254|      0|                    PyStackRef_CLOSE(tmp);
  |  | 7255|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7256|      0|                    stack_pointer += -2;
  |  | 7257|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7258|      0|                }
  |  | 7259|      0|                else {
  |  | 7260|      0|                    Py_INCREF(exc);
  |  |  ------------------
  |  |  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7261|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7262|      0|                    _PyErr_SetRaisedException(tstate, exc);
  |  | 7263|      0|                    monitor_reraise(tstate, frame, this_instr);
  |  | 7264|      0|                    JUMP_TO_LABEL(exception_unwind);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7265|      0|                }
  |  | 7266|      0|            }
  |  | 7267|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7267:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7268|      0|        }
  |  | 7269|       |
  |  | 7270|      0|        TARGET(INSTRUMENTED_END_FOR) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7271|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7272|       |            int opcode = INSTRUMENTED_END_FOR;
  |  | 7273|       |            (void)(opcode);
  |  | 7274|       |            #endif
  |  | 7275|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7276|      0|            (void)this_instr;
  |  | 7277|      0|            next_instr += 1;
  |  | 7278|      0|            INSTRUCTION_STATS(INSTRUMENTED_END_FOR);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7279|      0|            _PyStackRef receiver;
  |  | 7280|      0|            _PyStackRef value;
  |  | 7281|      0|            value = stack_pointer[-1];
  |  | 7282|      0|            receiver = stack_pointer[-3];
  |  | 7283|      0|            if (PyStackRef_GenCheck(receiver)) {
  |  |  ------------------
  |  |  |  Branch (7283:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7284|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7285|      0|                int err = monitor_stop_iteration(tstate, frame, this_instr, PyStackRef_AsPyObjectBorrow(value));
  |  | 7286|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7287|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (7287:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7288|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7289|      0|                }
  |  | 7290|      0|            }
  |  | 7291|      0|            stack_pointer += -1;
  |  | 7292|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7293|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7294|      0|            PyStackRef_CLOSE(value);
  |  | 7295|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7296|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7296:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7297|      0|        }
  |  | 7298|       |
  |  | 7299|      0|        TARGET(INSTRUMENTED_END_SEND) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7300|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7301|       |            int opcode = INSTRUMENTED_END_SEND;
  |  | 7302|       |            (void)(opcode);
  |  | 7303|       |            #endif
  |  | 7304|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7305|      0|            (void)this_instr;
  |  | 7306|      0|            frame->instr_ptr = next_instr;
  |  | 7307|      0|            next_instr += 1;
  |  | 7308|      0|            INSTRUCTION_STATS(INSTRUMENTED_END_SEND);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7309|      0|            _PyStackRef receiver;
  |  | 7310|      0|            _PyStackRef index_or_null;
  |  | 7311|      0|            _PyStackRef value;
  |  | 7312|      0|            _PyStackRef val;
  |  | 7313|      0|            value = stack_pointer[-1];
  |  | 7314|      0|            index_or_null = stack_pointer[-2];
  |  | 7315|      0|            receiver = stack_pointer[-3];
  |  | 7316|      0|            PyObject *receiver_o = PyStackRef_AsPyObjectBorrow(receiver);
  |  | 7317|      0|            if (PyGen_Check(receiver_o) || PyCoro_CheckExact(receiver_o)) {
  |  |  ------------------
  |  |  |  |   16|      0|#define PyGen_Check(op) PyObject_TypeCheck((op), &PyGen_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                           if (PyGen_Check(receiver_o) || PyCoro_CheckExact(receiver_o)) {
  |  |  ------------------
  |  |  |  |   31|      0|#define PyCoro_CheckExact(op) Py_IS_TYPE((op), &PyCoro_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7318|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7319|      0|                int err = monitor_stop_iteration(tstate, frame, this_instr, PyStackRef_AsPyObjectBorrow(value));
  |  | 7320|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7321|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (7321:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7322|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7323|      0|                }
  |  | 7324|      0|            }
  |  | 7325|      0|            val = value;
  |  | 7326|      0|            (void)index_or_null;
  |  | 7327|      0|            stack_pointer[-3] = val;
  |  | 7328|      0|            stack_pointer += -2;
  |  | 7329|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7330|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7331|      0|            PyStackRef_CLOSE(receiver);
  |  | 7332|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7333|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7333:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7334|      0|        }
  |  | 7335|       |
  |  | 7336|      0|        TARGET(INSTRUMENTED_FOR_ITER) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7337|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7338|       |            int opcode = INSTRUMENTED_FOR_ITER;
  |  | 7339|       |            (void)(opcode);
  |  | 7340|       |            #endif
  |  | 7341|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7342|      0|            (void)this_instr;
  |  | 7343|      0|            frame->instr_ptr = next_instr;
  |  | 7344|      0|            next_instr += 2;
  |  | 7345|      0|            INSTRUCTION_STATS(INSTRUMENTED_FOR_ITER);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7346|      0|            _PyStackRef iter;
  |  | 7347|      0|            _PyStackRef null_or_index;
  |  | 7348|      0|            _PyStackRef next;
  |  | 7349|       |            /* Skip 1 cache entry */
  |  | 7350|      0|            null_or_index = stack_pointer[-1];
  |  | 7351|      0|            iter = stack_pointer[-2];
  |  | 7352|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7353|      0|            _PyStackRef item = _PyForIter_VirtualIteratorNext(tstate, frame, iter, &null_or_index);
  |  | 7354|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7355|      0|            if (!PyStackRef_IsValid(item)) {
  |  |  ------------------
  |  |  |  Branch (7355:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7356|      0|                if (PyStackRef_IsError(item)) {
  |  |  ------------------
  |  |  |  Branch (7356:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7357|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7358|      0|                }
  |  | 7359|      0|                JUMPBY(oparg + 1);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 7360|      0|                stack_pointer[-1] = null_or_index;
  |  | 7361|      0|                DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7361:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7362|      0|            }
  |  | 7363|      0|            next = item;
  |  | 7364|      0|            INSTRUMENTED_JUMP(this_instr, next_instr, PY_MONITORING_EVENT_BRANCH_LEFT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7365|      0|            stack_pointer[-1] = null_or_index;
  |  | 7366|      0|            stack_pointer[0] = next;
  |  | 7367|      0|            stack_pointer += 1;
  |  | 7368|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7369|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7369:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7370|      0|        }
  |  | 7371|       |
  |  | 7372|      0|        TARGET(INSTRUMENTED_INSTRUCTION) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7373|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7374|       |            int opcode = INSTRUMENTED_INSTRUCTION;
  |  | 7375|       |            (void)(opcode);
  |  | 7376|       |            #endif
  |  | 7377|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7378|      0|            (void)this_instr;
  |  | 7379|      0|            frame->instr_ptr = next_instr;
  |  | 7380|      0|            next_instr += 1;
  |  | 7381|      0|            INSTRUCTION_STATS(INSTRUMENTED_INSTRUCTION);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7382|      0|            opcode = INSTRUMENTED_INSTRUCTION;
  |  |  ------------------
  |  |  |  |  228|      0|#define INSTRUMENTED_INSTRUCTION               237
  |  |  ------------------
  |  | 7383|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7384|      0|            int next_opcode = _Py_call_instrumentation_instruction(
  |  | 7385|      0|                tstate, frame, this_instr);
  |  | 7386|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7387|      0|            if (next_opcode < 0) {
  |  |  ------------------
  |  |  |  Branch (7387:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7388|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7389|      0|            }
  |  | 7390|      0|            next_instr = this_instr;
  |  | 7391|      0|            if (_PyOpcode_Caches[next_opcode]) {
  |  |  ------------------
  |  |  |  Branch (7391:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7392|      0|                PAUSE_ADAPTIVE_COUNTER(next_instr[1].counter);
  |  |  ------------------
  |  |  |  |  362|      0|    do { \
  |  |  |  |  363|      0|        (COUNTER) = pause_backoff_counter((COUNTER)); \
  |  |  |  |  364|      0|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (364:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7393|      0|            }
  |  | 7394|      0|            assert(next_opcode > 0 && next_opcode < 256);
  |  |  ------------------
  |  |  |  Branch (7394:13): [True: 0, False: 0]
  |  |  |  Branch (7394:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7395|      0|            opcode = next_opcode;
  |  | 7396|      0|            DISPATCH_GOTO();
  |  |  ------------------
  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  ------------------
  |  | 7397|      0|        }
  |  | 7398|       |
  |  | 7399|      0|        TARGET(INSTRUMENTED_JUMP_BACKWARD) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7400|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7401|       |            int opcode = INSTRUMENTED_JUMP_BACKWARD;
  |  | 7402|       |            (void)(opcode);
  |  | 7403|       |            #endif
  |  | 7404|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7405|      0|            (void)this_instr;
  |  | 7406|      0|            frame->instr_ptr = next_instr;
  |  | 7407|      0|            next_instr += 2;
  |  | 7408|      0|            INSTRUCTION_STATS(INSTRUMENTED_JUMP_BACKWARD);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7409|       |            /* Skip 1 cache entry */
  |  | 7410|       |            // _CHECK_PERIODIC
  |  | 7411|      0|            {
  |  | 7412|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7413|      0|                int err = check_periodics(tstate);
  |  | 7414|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7415|      0|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (7415:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7416|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7417|      0|                }
  |  | 7418|      0|            }
  |  | 7419|       |            // _MONITOR_JUMP_BACKWARD
  |  | 7420|      0|            {
  |  | 7421|      0|                INSTRUMENTED_JUMP(this_instr, next_instr - oparg, PY_MONITORING_EVENT_JUMP);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7422|      0|            }
  |  | 7423|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7423:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7424|      0|        }
  |  | 7425|       |
  |  | 7426|      0|        TARGET(INSTRUMENTED_JUMP_FORWARD) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7427|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7428|       |            int opcode = INSTRUMENTED_JUMP_FORWARD;
  |  | 7429|       |            (void)(opcode);
  |  | 7430|       |            #endif
  |  | 7431|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7432|      0|            (void)this_instr;
  |  | 7433|      0|            frame->instr_ptr = next_instr;
  |  | 7434|      0|            next_instr += 1;
  |  | 7435|      0|            INSTRUCTION_STATS(INSTRUMENTED_JUMP_FORWARD);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7436|      0|            INSTRUMENTED_JUMP(this_instr, next_instr + oparg, PY_MONITORING_EVENT_JUMP);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7437|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7437:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7438|      0|        }
  |  | 7439|       |
  |  | 7440|      0|        TARGET(INSTRUMENTED_LINE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7441|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7442|       |            int opcode = INSTRUMENTED_LINE;
  |  | 7443|       |            (void)(opcode);
  |  | 7444|       |            #endif
  |  | 7445|      0|            _Py_CODEUNIT* const prev_instr = frame->instr_ptr;
  |  | 7446|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7447|      0|            (void)this_instr;
  |  | 7448|      0|            frame->instr_ptr = next_instr;
  |  | 7449|      0|            next_instr += 1;
  |  | 7450|      0|            INSTRUCTION_STATS(INSTRUMENTED_LINE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7451|      0|            opcode = INSTRUMENTED_LINE;
  |  |  ------------------
  |  |  |  |  244|      0|#define INSTRUMENTED_LINE                      253
  |  |  ------------------
  |  | 7452|      0|            int original_opcode = 0;
  |  | 7453|      0|            if (tstate->tracing) {
  |  |  ------------------
  |  |  |  Branch (7453:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7454|      0|                PyCodeObject *code = _PyFrame_GetCode(frame);
  |  | 7455|      0|                int index = (int)(this_instr - _PyFrame_GetBytecode(frame));
  |  | 7456|      0|                original_opcode = code->_co_monitoring->lines->data[index*code->_co_monitoring->lines->bytes_per_entry];
  |  | 7457|      0|                next_instr = this_instr;
  |  | 7458|      0|            } else {
  |  | 7459|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7460|      0|                original_opcode = _Py_call_instrumentation_line(
  |  | 7461|      0|                    tstate, frame, this_instr, prev_instr);
  |  | 7462|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7463|      0|                if (original_opcode < 0) {
  |  |  ------------------
  |  |  |  Branch (7463:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7464|      0|                    next_instr = this_instr+1;
  |  | 7465|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7466|      0|                }
  |  | 7467|      0|                next_instr = frame->instr_ptr;
  |  | 7468|      0|                if (next_instr != this_instr) {
  |  |  ------------------
  |  |  |  Branch (7468:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7469|      0|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7469:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7470|      0|                }
  |  | 7471|      0|            }
  |  | 7472|      0|            if (_PyOpcode_Caches[original_opcode]) {
  |  |  ------------------
  |  |  |  Branch (7472:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7473|      0|                _PyBinaryOpCache *cache = (_PyBinaryOpCache *)(next_instr+1);
  |  | 7474|      0|                PAUSE_ADAPTIVE_COUNTER(cache->counter);
  |  |  ------------------
  |  |  |  |  362|      0|    do { \
  |  |  |  |  363|      0|        (COUNTER) = pause_backoff_counter((COUNTER)); \
  |  |  |  |  364|      0|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (364:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7475|      0|            }
  |  | 7476|      0|            opcode = original_opcode;
  |  | 7477|      0|            DISPATCH_GOTO();
  |  |  ------------------
  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  ------------------
  |  | 7478|      0|        }
  |  | 7479|       |
  |  | 7480|      0|        TARGET(INSTRUMENTED_LOAD_SUPER_ATTR) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7481|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7482|       |            int opcode = INSTRUMENTED_LOAD_SUPER_ATTR;
  |  | 7483|       |            (void)(opcode);
  |  | 7484|       |            #endif
  |  | 7485|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7486|      0|            (void)this_instr;
  |  | 7487|      0|            frame->instr_ptr = next_instr;
  |  | 7488|      0|            next_instr += 2;
  |  | 7489|      0|            INSTRUCTION_STATS(INSTRUMENTED_LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7490|      0|            opcode = INSTRUMENTED_LOAD_SUPER_ATTR;
  |  |  ------------------
  |  |  |  |  239|      0|#define INSTRUMENTED_LOAD_SUPER_ATTR           248
  |  |  ------------------
  |  | 7491|      0|            _PyStackRef global_super_st;
  |  | 7492|      0|            _PyStackRef class_st;
  |  | 7493|      0|            _PyStackRef self_st;
  |  | 7494|      0|            _PyStackRef attr;
  |  | 7495|      0|            _PyStackRef *null;
  |  | 7496|       |            /* Skip 1 cache entry */
  |  | 7497|       |            // _LOAD_SUPER_ATTR
  |  | 7498|      0|            {
  |  | 7499|      0|                self_st = stack_pointer[-1];
  |  | 7500|      0|                class_st = stack_pointer[-2];
  |  | 7501|      0|                global_super_st = stack_pointer[-3];
  |  | 7502|      0|                PyObject *global_super = PyStackRef_AsPyObjectBorrow(global_super_st);
  |  | 7503|      0|                PyObject *class = PyStackRef_AsPyObjectBorrow(class_st);
  |  | 7504|      0|                PyObject *self = PyStackRef_AsPyObjectBorrow(self_st);
  |  | 7505|      0|                if (opcode == INSTRUMENTED_LOAD_SUPER_ATTR) {
  |  |  ------------------
  |  |  |  |  239|      0|#define INSTRUMENTED_LOAD_SUPER_ATTR           248
  |  |  ------------------
  |  |  |  Branch (7505:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7506|      0|                    PyObject *arg = oparg & 2 ? class : &_PyInstrumentation_MISSING;
  |  |  ------------------
  |  |  |  Branch (7506:37): [True: 0, False: 0]
  |  |  ------------------
  |  | 7507|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7508|      0|                    int err = _Py_call_instrumentation_2args(
  |  | 7509|      0|                        tstate, PY_MONITORING_EVENT_CALL,
  |  |  ------------------
  |  |  |  |   18|      0|#define PY_MONITORING_EVENT_CALL 4
  |  |  ------------------
  |  | 7510|      0|                        frame, this_instr, global_super, arg);
  |  | 7511|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7512|      0|                    if (err) {
  |  |  ------------------
  |  |  |  Branch (7512:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7513|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7514|      0|                        _PyStackRef tmp = self_st;
  |  | 7515|      0|                        self_st = PyStackRef_NULL;
  |  | 7516|      0|                        stack_pointer[-1] = self_st;
  |  | 7517|      0|                        PyStackRef_CLOSE(tmp);
  |  | 7518|      0|                        tmp = class_st;
  |  | 7519|      0|                        class_st = PyStackRef_NULL;
  |  | 7520|      0|                        stack_pointer[-2] = class_st;
  |  | 7521|      0|                        PyStackRef_CLOSE(tmp);
  |  | 7522|      0|                        tmp = global_super_st;
  |  | 7523|      0|                        global_super_st = PyStackRef_NULL;
  |  | 7524|      0|                        stack_pointer[-3] = global_super_st;
  |  | 7525|      0|                        PyStackRef_CLOSE(tmp);
  |  | 7526|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7527|      0|                        stack_pointer += -3;
  |  | 7528|      0|                        ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7529|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7530|      0|                    }
  |  | 7531|      0|                }
  |  | 7532|      0|                PyObject *super;
  |  | 7533|      0|                {
  |  | 7534|      0|                    PyObject *stack[] = {class, self};
  |  | 7535|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7536|      0|                    super = PyObject_Vectorcall(global_super, stack, oparg & 2, NULL);
  |  | 7537|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7538|      0|                }
  |  | 7539|      0|                if (opcode == INSTRUMENTED_LOAD_SUPER_ATTR) {
  |  |  ------------------
  |  |  |  |  239|      0|#define INSTRUMENTED_LOAD_SUPER_ATTR           248
  |  |  ------------------
  |  |  |  Branch (7539:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7540|      0|                    PyObject *arg = oparg & 2 ? class : &_PyInstrumentation_MISSING;
  |  |  ------------------
  |  |  |  Branch (7540:37): [True: 0, False: 0]
  |  |  ------------------
  |  | 7541|      0|                    if (super == NULL) {
  |  |  ------------------
  |  |  |  Branch (7541:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7542|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7543|      0|                        _Py_call_instrumentation_exc2(
  |  | 7544|      0|                            tstate, PY_MONITORING_EVENT_C_RAISE,
  |  |  ------------------
  |  |  |  |   45|      0|#define PY_MONITORING_EVENT_C_RAISE 17
  |  |  ------------------
  |  | 7545|      0|                            frame, this_instr, global_super, arg);
  |  | 7546|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7547|      0|                    }
  |  | 7548|      0|                    else {
  |  | 7549|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7550|      0|                        int err = _Py_call_instrumentation_2args(
  |  | 7551|      0|                            tstate, PY_MONITORING_EVENT_C_RETURN,
  |  |  ------------------
  |  |  |  |   44|      0|#define PY_MONITORING_EVENT_C_RETURN 16
  |  |  ------------------
  |  | 7552|      0|                            frame, this_instr, global_super, arg);
  |  | 7553|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7554|      0|                        if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (7554:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 7555|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7556|      0|                            Py_CLEAR(super);
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7557|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7558|      0|                        }
  |  | 7559|      0|                    }
  |  | 7560|      0|                }
  |  | 7561|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7562|      0|                _PyStackRef tmp = self_st;
  |  | 7563|      0|                self_st = PyStackRef_NULL;
  |  | 7564|      0|                stack_pointer[-1] = self_st;
  |  | 7565|      0|                PyStackRef_CLOSE(tmp);
  |  | 7566|      0|                tmp = class_st;
  |  | 7567|      0|                class_st = PyStackRef_NULL;
  |  | 7568|      0|                stack_pointer[-2] = class_st;
  |  | 7569|      0|                PyStackRef_CLOSE(tmp);
  |  | 7570|      0|                tmp = global_super_st;
  |  | 7571|      0|                global_super_st = PyStackRef_NULL;
  |  | 7572|      0|                stack_pointer[-3] = global_super_st;
  |  | 7573|      0|                PyStackRef_CLOSE(tmp);
  |  | 7574|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7575|      0|                stack_pointer += -3;
  |  | 7576|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7577|      0|                if (super == NULL) {
  |  |  ------------------
  |  |  |  Branch (7577:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7578|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7579|      0|                }
  |  | 7580|      0|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg >> 2);
  |  |  ------------------
  |  |  |  |  235|      0|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (7580:34): [True: 0, False: 0]
  |  |  ------------------
  |  | 7581|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7582|      0|                PyObject *attr_o = PyObject_GetAttr(super, name);
  |  | 7583|      0|                Py_DECREF(super);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7584|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7585|      0|                if (attr_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (7585:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7586|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7587|      0|                }
  |  | 7588|      0|                attr = PyStackRef_FromPyObjectSteal(attr_o);
  |  | 7589|      0|            }
  |  | 7590|       |            // _PUSH_NULL_CONDITIONAL
  |  | 7591|      0|            {
  |  | 7592|      0|                null = &stack_pointer[1];
  |  | 7593|      0|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (7593:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7594|      0|                    null[0] = PyStackRef_NULL;
  |  | 7595|      0|                }
  |  | 7596|      0|            }
  |  | 7597|      0|            stack_pointer[0] = attr;
  |  | 7598|      0|            stack_pointer += 1 + (oparg & 1);
  |  | 7599|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7600|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7600:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7601|      0|        }
  |  | 7602|       |
  |  | 7603|      0|        TARGET(INSTRUMENTED_NOT_TAKEN) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7604|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7605|       |            int opcode = INSTRUMENTED_NOT_TAKEN;
  |  | 7606|       |            (void)(opcode);
  |  | 7607|       |            #endif
  |  | 7608|      0|            _Py_CODEUNIT* const prev_instr = frame->instr_ptr;
  |  | 7609|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7610|      0|            (void)this_instr;
  |  | 7611|      0|            frame->instr_ptr = next_instr;
  |  | 7612|      0|            next_instr += 1;
  |  | 7613|      0|            INSTRUCTION_STATS(INSTRUMENTED_NOT_TAKEN);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7614|      0|            (void)this_instr;
  |  | 7615|      0|            INSTRUMENTED_JUMP(prev_instr, next_instr, PY_MONITORING_EVENT_BRANCH_LEFT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7616|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7616:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7617|      0|        }
  |  | 7618|       |
  |  | 7619|      0|        TARGET(INSTRUMENTED_POP_ITER) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7620|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7621|       |            int opcode = INSTRUMENTED_POP_ITER;
  |  | 7622|       |            (void)(opcode);
  |  | 7623|       |            #endif
  |  | 7624|      0|            _Py_CODEUNIT* const prev_instr = frame->instr_ptr;
  |  | 7625|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7626|      0|            (void)this_instr;
  |  | 7627|      0|            frame->instr_ptr = next_instr;
  |  | 7628|      0|            next_instr += 1;
  |  | 7629|      0|            INSTRUCTION_STATS(INSTRUMENTED_POP_ITER);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7630|      0|            _PyStackRef iter;
  |  | 7631|      0|            _PyStackRef index_or_null;
  |  | 7632|      0|            index_or_null = stack_pointer[-1];
  |  | 7633|      0|            iter = stack_pointer[-2];
  |  | 7634|      0|            (void)index_or_null;
  |  | 7635|      0|            INSTRUMENTED_JUMP(prev_instr, this_instr+1, PY_MONITORING_EVENT_BRANCH_RIGHT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7636|      0|            stack_pointer += -2;
  |  | 7637|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7638|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7639|      0|            PyStackRef_CLOSE(iter);
  |  | 7640|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7641|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7641:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7642|      0|        }
  |  | 7643|       |
  |  | 7644|      0|        TARGET(INSTRUMENTED_POP_JUMP_IF_FALSE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7645|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7646|       |            int opcode = INSTRUMENTED_POP_JUMP_IF_FALSE;
  |  | 7647|       |            (void)(opcode);
  |  | 7648|       |            #endif
  |  | 7649|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7650|      0|            (void)this_instr;
  |  | 7651|      0|            frame->instr_ptr = next_instr;
  |  | 7652|      0|            next_instr += 2;
  |  | 7653|      0|            INSTRUCTION_STATS(INSTRUMENTED_POP_JUMP_IF_FALSE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7654|      0|            _PyStackRef cond;
  |  | 7655|       |            /* Skip 1 cache entry */
  |  | 7656|      0|            cond = stack_pointer[-1];
  |  | 7657|      0|            assert(PyStackRef_BoolCheck(cond));
  |  |  ------------------
  |  |  |  Branch (7657:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7658|      0|            int jump = PyStackRef_IsFalse(cond);
  |  |  ------------------
  |  |  |  |  482|      0|#define PyStackRef_IsFalse(REF) ((REF).bits == (((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7659|      0|            RECORD_BRANCH_TAKEN(this_instr[1].cache, jump);
  |  |  ------------------
  |  |  |  |  373|      0|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|      0|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  | 7660|      0|            if (jump) {
  |  |  ------------------
  |  |  |  Branch (7660:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7661|      0|                INSTRUMENTED_JUMP(this_instr, next_instr + oparg, PY_MONITORING_EVENT_BRANCH_RIGHT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7662|      0|            }
  |  | 7663|      0|            stack_pointer += -1;
  |  | 7664|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7665|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7665:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7666|      0|        }
  |  | 7667|       |
  |  | 7668|      0|        TARGET(INSTRUMENTED_POP_JUMP_IF_NONE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7669|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7670|       |            int opcode = INSTRUMENTED_POP_JUMP_IF_NONE;
  |  | 7671|       |            (void)(opcode);
  |  | 7672|       |            #endif
  |  | 7673|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7674|      0|            (void)this_instr;
  |  | 7675|      0|            frame->instr_ptr = next_instr;
  |  | 7676|      0|            next_instr += 2;
  |  | 7677|      0|            INSTRUCTION_STATS(INSTRUMENTED_POP_JUMP_IF_NONE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7678|      0|            _PyStackRef value;
  |  | 7679|       |            /* Skip 1 cache entry */
  |  | 7680|      0|            value = stack_pointer[-1];
  |  | 7681|      0|            int jump = PyStackRef_IsNone(value);
  |  |  ------------------
  |  |  |  |  483|      0|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7682|      0|            RECORD_BRANCH_TAKEN(this_instr[1].cache, jump);
  |  |  ------------------
  |  |  |  |  373|      0|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|      0|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  | 7683|      0|            if (jump) {
  |  |  ------------------
  |  |  |  Branch (7683:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7684|      0|                INSTRUMENTED_JUMP(this_instr, next_instr + oparg, PY_MONITORING_EVENT_BRANCH_RIGHT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7685|      0|            }
  |  | 7686|      0|            else {
  |  | 7687|      0|                stack_pointer += -1;
  |  | 7688|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7689|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7690|      0|                PyStackRef_CLOSE(value);
  |  | 7691|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7692|      0|                stack_pointer += 1;
  |  | 7693|      0|            }
  |  | 7694|      0|            stack_pointer += -1;
  |  | 7695|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7696|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7696:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7697|      0|        }
  |  | 7698|       |
  |  | 7699|      0|        TARGET(INSTRUMENTED_POP_JUMP_IF_NOT_NONE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7700|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7701|       |            int opcode = INSTRUMENTED_POP_JUMP_IF_NOT_NONE;
  |  | 7702|       |            (void)(opcode);
  |  | 7703|       |            #endif
  |  | 7704|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7705|      0|            (void)this_instr;
  |  | 7706|      0|            frame->instr_ptr = next_instr;
  |  | 7707|      0|            next_instr += 2;
  |  | 7708|      0|            INSTRUCTION_STATS(INSTRUMENTED_POP_JUMP_IF_NOT_NONE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7709|      0|            _PyStackRef value;
  |  | 7710|       |            /* Skip 1 cache entry */
  |  | 7711|      0|            value = stack_pointer[-1];
  |  | 7712|      0|            int jump = !PyStackRef_IsNone(value);
  |  |  ------------------
  |  |  |  |  483|      0|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7713|      0|            RECORD_BRANCH_TAKEN(this_instr[1].cache, jump);
  |  |  ------------------
  |  |  |  |  373|      0|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|      0|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  | 7714|      0|            if (jump) {
  |  |  ------------------
  |  |  |  Branch (7714:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7715|      0|                stack_pointer += -1;
  |  | 7716|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7717|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7718|      0|                PyStackRef_CLOSE(value);
  |  | 7719|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7720|      0|                INSTRUMENTED_JUMP(this_instr, next_instr + oparg, PY_MONITORING_EVENT_BRANCH_RIGHT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7721|      0|            }
  |  | 7722|      0|            else {
  |  | 7723|      0|                stack_pointer += -1;
  |  | 7724|      0|            }
  |  | 7725|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7725:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7726|      0|        }
  |  | 7727|       |
  |  | 7728|      0|        TARGET(INSTRUMENTED_POP_JUMP_IF_TRUE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7729|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7730|       |            int opcode = INSTRUMENTED_POP_JUMP_IF_TRUE;
  |  | 7731|       |            (void)(opcode);
  |  | 7732|       |            #endif
  |  | 7733|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7734|      0|            (void)this_instr;
  |  | 7735|      0|            frame->instr_ptr = next_instr;
  |  | 7736|      0|            next_instr += 2;
  |  | 7737|      0|            INSTRUCTION_STATS(INSTRUMENTED_POP_JUMP_IF_TRUE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7738|      0|            _PyStackRef cond;
  |  | 7739|       |            /* Skip 1 cache entry */
  |  | 7740|      0|            cond = stack_pointer[-1];
  |  | 7741|      0|            assert(PyStackRef_BoolCheck(cond));
  |  |  ------------------
  |  |  |  Branch (7741:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7742|      0|            int jump = PyStackRef_IsTrue(cond);
  |  |  ------------------
  |  |  |  |  481|      0|#define PyStackRef_IsTrue(REF) ((REF).bits == (((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7743|      0|            RECORD_BRANCH_TAKEN(this_instr[1].cache, jump);
  |  |  ------------------
  |  |  |  |  373|      0|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|      0|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  | 7744|      0|            if (jump) {
  |  |  ------------------
  |  |  |  Branch (7744:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7745|      0|                INSTRUMENTED_JUMP(this_instr, next_instr + oparg, PY_MONITORING_EVENT_BRANCH_RIGHT);
  |  |  ------------------
  |  |  |  |  389|      0|#define INSTRUMENTED_JUMP(src, dest, event) \
  |  |  |  |  390|      0|do { \
  |  |  |  |  391|      0|    if (tstate->tracing) {\
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (391:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  392|      0|        next_instr = dest; \
  |  |  |  |  393|      0|    } else { \
  |  |  |  |  394|      0|        _PyFrame_SetStackPointer(frame, stack_pointer); \
  |  |  |  |  395|      0|        next_instr = _Py_call_instrumentation_jump(this_instr, tstate, event, frame, src, dest); \
  |  |  |  |  396|      0|        stack_pointer = _PyFrame_GetStackPointer(frame); \
  |  |  |  |  397|      0|        if (next_instr == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (397:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  398|      0|            next_instr = (dest)+1; \
  |  |  |  |  399|      0|            JUMP_TO_LABEL(error); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  400|      0|        } \
  |  |  |  |  401|      0|    } \
  |  |  |  |  402|      0|} while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (402:10): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7746|      0|            }
  |  | 7747|      0|            stack_pointer += -1;
  |  | 7748|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7749|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7749:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7750|      0|        }
  |  | 7751|       |
  |  | 7752|      0|        TARGET(INSTRUMENTED_RESUME) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7753|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7754|       |            int opcode = INSTRUMENTED_RESUME;
  |  | 7755|       |            (void)(opcode);
  |  | 7756|       |            #endif
  |  | 7757|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7758|      0|            (void)this_instr;
  |  | 7759|      0|            frame->instr_ptr = next_instr;
  |  | 7760|      0|            next_instr += 2;
  |  | 7761|      0|            INSTRUCTION_STATS(INSTRUMENTED_RESUME);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7762|       |            /* Skip 1 cache entry */
  |  | 7763|       |            // _LOAD_BYTECODE
  |  | 7764|      0|            {
  |  | 7765|       |                #ifdef Py_GIL_DISABLED
  |  | 7766|       |                if (frame->tlbc_index !=
  |  | 7767|       |                    ((_PyThreadStateImpl *)tstate)->tlbc_index) {
  |  | 7768|       |                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7769|       |                    _Py_CODEUNIT *bytecode =
  |  | 7770|       |                    _PyEval_GetExecutableCode(tstate, _PyFrame_GetCode(frame));
  |  | 7771|       |                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7772|       |                    if (bytecode == NULL) {
  |  | 7773|       |                        JUMP_TO_LABEL(error);
  |  | 7774|       |                    }
  |  | 7775|       |                    ptrdiff_t off = this_instr - _PyFrame_GetBytecode(frame);
  |  | 7776|       |                    frame->tlbc_index = ((_PyThreadStateImpl *)tstate)->tlbc_index;
  |  | 7777|       |                    frame->instr_ptr = bytecode + off;
  |  | 7778|       |                    next_instr = frame->instr_ptr;
  |  | 7779|       |                    DISPATCH();
  |  | 7780|       |                }
  |  | 7781|       |                #endif
  |  | 7782|      0|            }
  |  | 7783|       |            // _MAYBE_INSTRUMENT
  |  | 7784|      0|            {
  |  | 7785|       |                #ifdef Py_GIL_DISABLED
  |  | 7786|       |
  |  | 7787|       |                int check_instrumentation = 1;
  |  | 7788|       |                #else
  |  | 7789|      0|                int check_instrumentation = (tstate->tracing == 0);
  |  | 7790|      0|                #endif
  |  | 7791|      0|                if (check_instrumentation) {
  |  |  ------------------
  |  |  |  Branch (7791:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7792|      0|                    uintptr_t global_version = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) & ~_PY_EVAL_EVENTS_MASK;
  |  |  ------------------
  |  |  |  |  357|      0|#define _PY_EVAL_EVENTS_MASK ((1 << _PY_EVAL_EVENTS_BITS)-1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  356|      0|#define _PY_EVAL_EVENTS_BITS 8
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7793|      0|                    uintptr_t code_version = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version);
  |  |  ------------------
  |  |  |  |  152|      0|#define FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 7794|      0|                    if (code_version != global_version) {
  |  |  ------------------
  |  |  |  Branch (7794:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7795|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7796|      0|                        int err = _Py_Instrument(_PyFrame_GetCode(frame), tstate->interp);
  |  | 7797|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7798|      0|                        if (err) {
  |  |  ------------------
  |  |  |  Branch (7798:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 7799|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7800|      0|                        }
  |  | 7801|      0|                        next_instr = this_instr;
  |  | 7802|      0|                        DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7802:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7803|      0|                    }
  |  | 7804|      0|                }
  |  | 7805|      0|            }
  |  | 7806|       |            // _CHECK_PERIODIC_IF_NOT_YIELD_FROM
  |  | 7807|      0|            {
  |  | 7808|      0|                if ((oparg & RESUME_OPARG_LOCATION_MASK) < RESUME_AFTER_YIELD_FROM) {
  |  |  ------------------
  |  |  |  |   92|      0|#define RESUME_OPARG_LOCATION_MASK 0x7
  |  |  ------------------
  |  |                               if ((oparg & RESUME_OPARG_LOCATION_MASK) < RESUME_AFTER_YIELD_FROM) {
  |  |  ------------------
  |  |  |  |   88|      0|#define RESUME_AFTER_YIELD_FROM 2
  |  |  ------------------
  |  |  |  Branch (7808:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7809|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7810|      0|                    int err = check_periodics(tstate);
  |  | 7811|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7812|      0|                    if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (7812:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 7813|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7814|      0|                    }
  |  | 7815|      0|                }
  |  | 7816|      0|            }
  |  | 7817|       |            // _MONITOR_RESUME
  |  | 7818|      0|            {
  |  | 7819|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7820|      0|                int err = _Py_call_instrumentation(
  |  | 7821|      0|                    tstate, oparg == 0 ? PY_MONITORING_EVENT_PY_START : PY_MONITORING_EVENT_PY_RESUME, frame, this_instr);
  |  |  ------------------
  |  |  |  |   14|      0|#define PY_MONITORING_EVENT_PY_START 0
  |  |  ------------------
  |  |                                   tstate, oparg == 0 ? PY_MONITORING_EVENT_PY_START : PY_MONITORING_EVENT_PY_RESUME, frame, this_instr);
  |  |  ------------------
  |  |  |  |   15|      0|#define PY_MONITORING_EVENT_PY_RESUME 1
  |  |  ------------------
  |  |  |  Branch (7821:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 7822|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7823|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (7823:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7824|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7825|      0|                }
  |  | 7826|      0|                if (frame->instr_ptr != this_instr) {
  |  |  ------------------
  |  |  |  Branch (7826:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7827|      0|                    next_instr = frame->instr_ptr;
  |  | 7828|      0|                }
  |  | 7829|      0|            }
  |  | 7830|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7830:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7831|      0|        }
  |  | 7832|       |
  |  | 7833|      0|        TARGET(INSTRUMENTED_RETURN_VALUE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7834|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7835|       |            int opcode = INSTRUMENTED_RETURN_VALUE;
  |  | 7836|       |            (void)(opcode);
  |  | 7837|       |            #endif
  |  | 7838|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7839|      0|            (void)this_instr;
  |  | 7840|      0|            frame->instr_ptr = next_instr;
  |  | 7841|      0|            next_instr += 1;
  |  | 7842|      0|            INSTRUCTION_STATS(INSTRUMENTED_RETURN_VALUE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7843|      0|            _PyStackRef val;
  |  | 7844|      0|            _PyStackRef value;
  |  | 7845|      0|            _PyStackRef retval;
  |  | 7846|      0|            _PyStackRef res;
  |  | 7847|       |            // _RETURN_VALUE_EVENT
  |  | 7848|      0|            {
  |  | 7849|      0|                val = stack_pointer[-1];
  |  | 7850|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7851|      0|                int err = _Py_call_instrumentation_arg(
  |  | 7852|      0|                    tstate, PY_MONITORING_EVENT_PY_RETURN,
  |  |  ------------------
  |  |  |  |   16|      0|#define PY_MONITORING_EVENT_PY_RETURN 2
  |  |  ------------------
  |  | 7853|      0|                    frame, this_instr, PyStackRef_AsPyObjectBorrow(val));
  |  | 7854|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7855|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (7855:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7856|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7857|      0|                }
  |  | 7858|      0|            }
  |  | 7859|       |            // _MAKE_HEAP_SAFE
  |  | 7860|      0|            {
  |  | 7861|      0|                value = val;
  |  | 7862|      0|                value = PyStackRef_MakeHeapSafe(value);
  |  | 7863|      0|            }
  |  | 7864|       |            // _RETURN_VALUE
  |  | 7865|      0|            {
  |  | 7866|      0|                retval = value;
  |  | 7867|      0|                assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (7867:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7868|      0|                _PyStackRef temp = retval;
  |  | 7869|      0|                stack_pointer += -1;
  |  | 7870|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7871|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7872|      0|                assert(STACK_LEVEL() == 0);
  |  |  ------------------
  |  |  |  Branch (7872:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7873|      0|                DTRACE_FUNCTION_RETURN();
  |  |  ------------------
  |  |  |  |  346|      0|#define DTRACE_FUNCTION_RETURN() ((void)0)
  |  |  ------------------
  |  | 7874|      0|                _Py_LeaveRecursiveCallPy(tstate);
  |  | 7875|      0|                _PyInterpreterFrame *dying = frame;
  |  | 7876|      0|                frame = tstate->current_frame = dying->previous;
  |  | 7877|      0|                _PyEval_FrameClearAndPop(tstate, dying);
  |  | 7878|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7879|      0|                LOAD_IP(frame->return_offset);
  |  |  ------------------
  |  |  |  |  419|      0|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      0|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7880|      0|                res = temp;
  |  | 7881|      0|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      0|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 7882|      0|            }
  |  | 7883|      0|            stack_pointer[0] = res;
  |  | 7884|      0|            stack_pointer += 1;
  |  | 7885|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7886|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7886:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7887|      0|        }
  |  | 7888|       |
  |  | 7889|      0|        TARGET(INSTRUMENTED_YIELD_VALUE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7890|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7891|       |            int opcode = INSTRUMENTED_YIELD_VALUE;
  |  | 7892|       |            (void)(opcode);
  |  | 7893|       |            #endif
  |  | 7894|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 7895|      0|            (void)this_instr;
  |  | 7896|      0|            frame->instr_ptr = next_instr;
  |  | 7897|      0|            next_instr += 1;
  |  | 7898|      0|            INSTRUCTION_STATS(INSTRUMENTED_YIELD_VALUE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7899|      0|            opcode = INSTRUMENTED_YIELD_VALUE;
  |  |  ------------------
  |  |  |  |  237|      0|#define INSTRUMENTED_YIELD_VALUE               246
  |  |  ------------------
  |  | 7900|      0|            _PyStackRef val;
  |  | 7901|      0|            _PyStackRef value;
  |  | 7902|      0|            _PyStackRef retval;
  |  | 7903|       |            // _YIELD_VALUE_EVENT
  |  | 7904|      0|            {
  |  | 7905|      0|                val = stack_pointer[-1];
  |  | 7906|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7907|      0|                int err = _Py_call_instrumentation_arg(
  |  | 7908|      0|                    tstate, PY_MONITORING_EVENT_PY_YIELD,
  |  |  ------------------
  |  |  |  |   17|      0|#define PY_MONITORING_EVENT_PY_YIELD 3
  |  |  ------------------
  |  | 7909|      0|                    frame, this_instr, PyStackRef_AsPyObjectBorrow(val));
  |  | 7910|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7911|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (7911:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7912|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 7913|      0|                }
  |  | 7914|      0|                if (frame->instr_ptr != this_instr) {
  |  |  ------------------
  |  |  |  Branch (7914:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7915|      0|                    next_instr = frame->instr_ptr;
  |  | 7916|      0|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7916:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 7917|      0|                }
  |  | 7918|      0|            }
  |  | 7919|       |            // _MAKE_HEAP_SAFE
  |  | 7920|      0|            {
  |  | 7921|      0|                value = val;
  |  | 7922|      0|                value = PyStackRef_MakeHeapSafe(value);
  |  | 7923|      0|            }
  |  | 7924|       |            // _YIELD_VALUE
  |  | 7925|      0|            {
  |  | 7926|      0|                retval = value;
  |  | 7927|      0|                assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (7927:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7928|      0|                frame->instr_ptr++;
  |  | 7929|      0|                PyGenObject *gen = _PyGen_GetGeneratorFromFrame(frame);
  |  | 7930|      0|                assert(FRAME_SUSPENDED_YIELD_FROM == FRAME_SUSPENDED + 1);
  |  |  ------------------
  |  |  |  Branch (7930:17): [True: 0, Folded]
  |  |  ------------------
  |  | 7931|      0|                assert(oparg == 0 || oparg == 1);
  |  |  ------------------
  |  |  |  Branch (7931:17): [True: 0, False: 0]
  |  |  |  Branch (7931:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 7932|      0|                _PyStackRef temp = retval;
  |  | 7933|      0|                stack_pointer += -1;
  |  | 7934|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7935|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7936|      0|                DTRACE_FUNCTION_RETURN();
  |  |  ------------------
  |  |  |  |  346|      0|#define DTRACE_FUNCTION_RETURN() ((void)0)
  |  |  ------------------
  |  | 7937|      0|                tstate->exc_info = gen->gi_exc_state.previous_item;
  |  | 7938|      0|                gen->gi_exc_state.previous_item = NULL;
  |  | 7939|      0|                _Py_LeaveRecursiveCallPy(tstate);
  |  | 7940|      0|                _PyInterpreterFrame *gen_frame = frame;
  |  | 7941|      0|                frame = tstate->current_frame = frame->previous;
  |  | 7942|      0|                gen_frame->previous = NULL;
  |  | 7943|      0|                ((_PyThreadStateImpl *)tstate)->generator_return_kind = GENERATOR_YIELD;
  |  | 7944|      0|                FT_ATOMIC_STORE_INT8_RELEASE(gen->gi_frame_state, FRAME_SUSPENDED + oparg);
  |  |  ------------------
  |  |  |  |  167|      0|#define FT_ATOMIC_STORE_INT8_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  |  | 7945|      0|                assert(INLINE_CACHE_ENTRIES_SEND == INLINE_CACHE_ENTRIES_FOR_ITER);
  |  |  ------------------
  |  |  |  Branch (7945:17): [True: 0, Folded]
  |  |  ------------------
  |  | 7946|       |                #if TIER_ONE && defined(Py_DEBUG)
  |  | 7947|       |                if (!PyStackRef_IsNone(frame->f_executable)) {
  |  | 7948|       |                    Py_ssize_t i = frame->instr_ptr - _PyFrame_GetBytecode(frame);
  |  | 7949|       |                    assert(i >= 0 && i <= INT_MAX);
  |  | 7950|       |                    int opcode = _Py_GetBaseCodeUnit(_PyFrame_GetCode(frame), (int)i).op.code;
  |  | 7951|       |                    assert(opcode == SEND || opcode == FOR_ITER);
  |  | 7952|       |                }
  |  | 7953|       |                #endif
  |  | 7954|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7955|      0|                LOAD_IP(1 + INLINE_CACHE_ENTRIES_SEND);
  |  |  ------------------
  |  |  |  |  419|      0|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      0|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 7956|      0|                value = temp;
  |  | 7957|      0|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      0|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 7958|      0|            }
  |  | 7959|      0|            stack_pointer[0] = value;
  |  | 7960|      0|            stack_pointer += 1;
  |  | 7961|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 7962|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (7962:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 7963|      0|        }
  |  | 7964|       |
  |  | 7965|    888|        TARGET(INTERPRETER_EXIT) {
  |  |  ------------------
  |  |  |  |  132|    888|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 7966|       |            #if _Py_TAIL_CALL_INTERP
  |  | 7967|       |            int opcode = INTERPRETER_EXIT;
  |  | 7968|       |            (void)(opcode);
  |  | 7969|       |            #endif
  |  | 7970|    888|            frame->instr_ptr = next_instr;
  |  | 7971|    888|            next_instr += 1;
  |  | 7972|    888|            INSTRUCTION_STATS(INTERPRETER_EXIT);
  |  |  ------------------
  |  |  |  |   71|    888|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 7973|    888|            _PyStackRef retval;
  |  | 7974|    888|            retval = stack_pointer[-1];
  |  | 7975|    888|            assert(frame->owner == FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (7975:13): [True: 888, False: 0]
  |  |  ------------------
  |  | 7976|    888|            assert(_PyFrame_IsIncomplete(frame));
  |  |  ------------------
  |  |  |  Branch (7976:13): [True: 888, False: 0]
  |  |  ------------------
  |  | 7977|    888|            tstate->current_frame = frame->previous;
  |  | 7978|    888|            assert(!_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (7978:13): [True: 888, False: 0]
  |  |  ------------------
  |  | 7979|    888|            PyObject *result = PyStackRef_AsPyObjectSteal(retval);
  |  | 7980|    888|            #if !_Py_TAIL_CALL_INTERP
  |  | 7981|    888|            assert(frame == &entry.frame);
  |  |  ------------------
  |  |  |  Branch (7981:13): [True: 888, False: 0]
  |  |  ------------------
  |  | 7982|    888|            #endif
  |  | 7983|       |            #ifdef _Py_TIER2
  |  | 7984|       |            _PyStackRef executor = frame->localsplus[0];
  |  | 7985|       |            assert(tstate->current_executor == NULL);
  |  | 7986|       |            if (!PyStackRef_IsNull(executor)) {
  |  | 7987|       |                tstate->current_executor = PyStackRef_AsPyObjectBorrow(executor);
  |  | 7988|       |                stack_pointer += -1;
  |  | 7989|       |                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  | 7990|       |                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 7991|       |                PyStackRef_CLOSE(executor);
  |  | 7992|       |                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 7993|       |                stack_pointer += 1;
  |  | 7994|       |            }
  |  | 7995|       |            #endif
  |  | 7996|    888|            LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|    888|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 7997|    888|            return result;
  |  | 7998|    888|        }
  |  | 7999|       |
  |  | 8000|    232|        TARGET(IS_OP) {
  |  |  ------------------
  |  |  |  |  132|    232|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8001|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8002|       |            int opcode = IS_OP;
  |  | 8003|       |            (void)(opcode);
  |  | 8004|       |            #endif
  |  | 8005|    232|            frame->instr_ptr = next_instr;
  |  | 8006|    232|            next_instr += 1;
  |  | 8007|    232|            INSTRUCTION_STATS(IS_OP);
  |  |  ------------------
  |  |  |  |   71|    232|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8008|    232|            _PyStackRef left;
  |  | 8009|    232|            _PyStackRef right;
  |  | 8010|    232|            _PyStackRef b;
  |  | 8011|    232|            _PyStackRef l;
  |  | 8012|    232|            _PyStackRef r;
  |  | 8013|    232|            _PyStackRef value;
  |  | 8014|       |            // _IS_OP
  |  | 8015|    232|            {
  |  | 8016|    232|                right = stack_pointer[-1];
  |  | 8017|    232|                left = stack_pointer[-2];
  |  | 8018|    232|                int res = Py_Is(PyStackRef_AsPyObjectBorrow(left), PyStackRef_AsPyObjectBorrow(right)) ^ oparg;
  |  |  ------------------
  |  |  |  |  187|    232|#define Py_Is(x, y) ((x) == (y))
  |  |  ------------------
  |  | 8019|    232|                b = res ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|    188|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    188|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               b = res ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    276|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     44|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8019:21): [True: 188, False: 44]
  |  |  ------------------
  |  | 8020|    232|                l = left;
  |  | 8021|    232|                r = right;
  |  | 8022|    232|            }
  |  | 8023|       |            // _POP_TOP
  |  | 8024|    232|            {
  |  | 8025|    232|                value = r;
  |  | 8026|    232|                stack_pointer[-2] = b;
  |  | 8027|    232|                stack_pointer[-1] = l;
  |  | 8028|    232|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8029|    232|                PyStackRef_XCLOSE(value);
  |  | 8030|    232|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8031|    232|            }
  |  | 8032|       |            // _POP_TOP
  |  | 8033|    232|            {
  |  | 8034|    232|                value = l;
  |  | 8035|    232|                stack_pointer += -1;
  |  | 8036|    232|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    232|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8037|    232|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8038|    232|                PyStackRef_XCLOSE(value);
  |  | 8039|    232|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8040|    232|            }
  |  | 8041|    232|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    232|    { \
  |  |  |  |  201|    232|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    232|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    232|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    232|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    232|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    232|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    232|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    232|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 232]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    232|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    232|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    232|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    232|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    232|    }
  |  |  ------------------
  |  |  |  Branch (8041:13): [True: 232, False: 0]
  |  |  ------------------
  |  | 8042|    232|        }
  |  | 8043|       |
  |  | 8044|     84|        TARGET(JUMP_BACKWARD) {
  |  |  ------------------
  |  |  |  |  132|     84|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8045|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8046|       |            int opcode = JUMP_BACKWARD;
  |  | 8047|       |            (void)(opcode);
  |  | 8048|       |            #endif
  |  | 8049|     84|            frame->instr_ptr = next_instr;
  |  | 8050|     84|            next_instr += 2;
  |  | 8051|     84|            INSTRUCTION_STATS(JUMP_BACKWARD);
  |  |  ------------------
  |  |  |  |   71|     84|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8052|     84|            PREDICTED_JUMP_BACKWARD:;
  |  | 8053|     84|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  | 8054|     84|            (void)this_instr;
  |  | 8055|       |            /* Skip 1 cache entry */
  |  | 8056|       |            // _SPECIALIZE_JUMP_BACKWARD
  |  | 8057|     84|            {
  |  | 8058|     84|                #if ENABLE_SPECIALIZATION
  |  | 8059|     84|                if (this_instr->op.code == JUMP_BACKWARD) {
  |  |  ------------------
  |  |  |  |   87|     84|#define JUMP_BACKWARD                           74
  |  |  ------------------
  |  |  |  Branch (8059:21): [True: 84, False: 0]
  |  |  ------------------
  |  | 8060|     84|                    uint8_t desired = tstate->interp->jit ? JUMP_BACKWARD_JIT : JUMP_BACKWARD_NO_JIT;
  |  |  ------------------
  |  |  |  |  186|      0|#define JUMP_BACKWARD_JIT                      181
  |  |  ------------------
  |  |                                   uint8_t desired = tstate->interp->jit ? JUMP_BACKWARD_JIT : JUMP_BACKWARD_NO_JIT;
  |  |  ------------------
  |  |  |  |  187|    168|#define JUMP_BACKWARD_NO_JIT                   182
  |  |  ------------------
  |  |  |  Branch (8060:39): [True: 0, False: 84]
  |  |  ------------------
  |  | 8061|     84|                    FT_ATOMIC_STORE_UINT8_RELAXED(this_instr->op.code, desired);
  |  |  ------------------
  |  |  |  |  170|     84|#define FT_ATOMIC_STORE_UINT8_RELAXED(value, new_value) value = new_value
  |  |  ------------------
  |  | 8062|     84|                    next_instr = this_instr;
  |  | 8063|     84|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     84|    { \
  |  |  |  |  217|     84|        opcode = next_instr->op.code; \
  |  |  |  |  218|     84|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     84|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     84|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     84|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     84|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     84|    }
  |  |  ------------------
  |  | 8064|     84|                }
  |  | 8065|     84|                #endif
  |  | 8066|     84|            }
  |  | 8067|       |            // _CHECK_PERIODIC
  |  | 8068|     84|            {
  |  | 8069|     84|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8070|     84|                int err = check_periodics(tstate);
  |  | 8071|     84|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8072|     84|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (8072:21): [True: 0, False: 84]
  |  |  ------------------
  |  | 8073|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 8074|      0|                }
  |  | 8075|     84|            }
  |  | 8076|       |            // _JUMP_BACKWARD_NO_INTERRUPT
  |  | 8077|     84|            {
  |  | 8078|     84|                assert(oparg <= INSTR_OFFSET());
  |  |  ------------------
  |  |  |  Branch (8078:17): [True: 0, False: 84]
  |  |  ------------------
  |  | 8079|      0|                JUMPBY(-oparg);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 8080|      0|            }
  |  | 8081|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (8081:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 8082|      0|        }
  |  | 8083|       |
  |  | 8084|      0|        TARGET(JUMP_BACKWARD_JIT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8085|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8086|       |            int opcode = JUMP_BACKWARD_JIT;
  |  | 8087|       |            (void)(opcode);
  |  | 8088|       |            #endif
  |  | 8089|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8090|      0|            (void)this_instr;
  |  | 8091|      0|            frame->instr_ptr = next_instr;
  |  | 8092|      0|            next_instr += 2;
  |  | 8093|      0|            INSTRUCTION_STATS(JUMP_BACKWARD_JIT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8094|      0|            static_assert(1 == 1, "incorrect cache size");
  |  | 8095|       |            /* Skip 1 cache entry */
  |  | 8096|       |            // _CHECK_PERIODIC
  |  | 8097|      0|            {
  |  | 8098|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8099|      0|                int err = check_periodics(tstate);
  |  | 8100|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8101|      0|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (8101:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8102|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 8103|      0|                }
  |  | 8104|      0|            }
  |  | 8105|       |            // _JUMP_BACKWARD_NO_INTERRUPT
  |  | 8106|      0|            {
  |  | 8107|      0|                assert(oparg <= INSTR_OFFSET());
  |  |  ------------------
  |  |  |  Branch (8107:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8108|      0|                JUMPBY(-oparg);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 8109|      0|            }
  |  | 8110|       |            // _JIT
  |  | 8111|      0|            {
  |  | 8112|       |                #ifdef _Py_TIER2
  |  | 8113|       |                bool is_resume = this_instr->op.code == RESUME_CHECK_JIT;
  |  | 8114|       |                _Py_BackoffCounter counter = this_instr[1].counter;
  |  | 8115|       |                if ((backoff_counter_triggers(counter) &&
  |  | 8116|       |                        !IS_JIT_TRACING() &&
  |  | 8117|       |                        (this_instr->op.code == JUMP_BACKWARD_JIT || is_resume)) &&
  |  | 8118|       |                    next_instr->op.code != ENTER_EXECUTOR) {
  |  | 8119|       |                    _Py_CODEUNIT *insert_exec_at = this_instr;
  |  | 8120|       |                    while (oparg > 255) {
  |  | 8121|       |                        oparg >>= 8;
  |  | 8122|       |                        insert_exec_at--;
  |  | 8123|       |                    }
  |  | 8124|       |                    int succ = _PyJit_TryInitializeTracing(tstate, frame, this_instr, insert_exec_at,
  |  | 8125|       |                        is_resume ? insert_exec_at : next_instr, stack_pointer, 0, NULL, oparg, NULL);
  |  | 8126|       |                    if (succ) {
  |  | 8127|       |                        ENTER_TRACING();
  |  | 8128|       |                    }
  |  | 8129|       |                    else {
  |  | 8130|       |                        this_instr[1].counter = restart_backoff_counter(counter);
  |  | 8131|       |                    }
  |  | 8132|       |                }
  |  | 8133|       |                else {
  |  | 8134|       |                    ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  | 8135|       |                }
  |  | 8136|       |                #endif
  |  | 8137|      0|            }
  |  | 8138|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (8138:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 8139|      0|        }
  |  | 8140|       |
  |  | 8141|    130|        TARGET(JUMP_BACKWARD_NO_INTERRUPT) {
  |  |  ------------------
  |  |  |  |  132|    130|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8142|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8143|       |            int opcode = JUMP_BACKWARD_NO_INTERRUPT;
  |  | 8144|       |            (void)(opcode);
  |  | 8145|       |            #endif
  |  | 8146|    130|            frame->instr_ptr = next_instr;
  |  | 8147|    130|            next_instr += 1;
  |  | 8148|    130|            INSTRUCTION_STATS(JUMP_BACKWARD_NO_INTERRUPT);
  |  |  ------------------
  |  |  |  |   71|    130|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8149|    130|            assert(oparg <= INSTR_OFFSET());
  |  |  ------------------
  |  |  |  Branch (8149:13): [True: 130, False: 0]
  |  |  ------------------
  |  | 8150|    130|            JUMPBY(-oparg);
  |  |  ------------------
  |  |  |  |  260|    130|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 8151|    130|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    130|    { \
  |  |  |  |  201|    130|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    130|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    130|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    130|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    130|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    130|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    130|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    130|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 130]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    130|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    130|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    130|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    130|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    130|    }
  |  |  ------------------
  |  |  |  Branch (8151:13): [True: 130, False: 0]
  |  |  ------------------
  |  | 8152|    130|        }
  |  | 8153|       |
  |  | 8154|  1.38k|        TARGET(JUMP_BACKWARD_NO_JIT) {
  |  |  ------------------
  |  |  |  |  132|  1.38k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8155|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8156|       |            int opcode = JUMP_BACKWARD_NO_JIT;
  |  | 8157|       |            (void)(opcode);
  |  | 8158|       |            #endif
  |  | 8159|  1.38k|            frame->instr_ptr = next_instr;
  |  | 8160|  1.38k|            next_instr += 2;
  |  | 8161|  1.38k|            INSTRUCTION_STATS(JUMP_BACKWARD_NO_JIT);
  |  |  ------------------
  |  |  |  |   71|  1.38k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8162|  1.38k|            static_assert(1 == 1, "incorrect cache size");
  |  | 8163|       |            /* Skip 1 cache entry */
  |  | 8164|       |            // _CHECK_PERIODIC
  |  | 8165|  1.38k|            {
  |  | 8166|  1.38k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8167|  1.38k|                int err = check_periodics(tstate);
  |  | 8168|  1.38k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8169|  1.38k|                if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (8169:21): [True: 0, False: 1.38k]
  |  |  ------------------
  |  | 8170|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 8171|      0|                }
  |  | 8172|  1.38k|            }
  |  | 8173|       |            // _JUMP_BACKWARD_NO_INTERRUPT
  |  | 8174|  1.38k|            {
  |  | 8175|  1.38k|                assert(oparg <= INSTR_OFFSET());
  |  |  ------------------
  |  |  |  Branch (8175:17): [True: 1.38k, False: 0]
  |  |  ------------------
  |  | 8176|  1.38k|                JUMPBY(-oparg);
  |  |  ------------------
  |  |  |  |  260|  1.38k|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 8177|  1.38k|            }
  |  | 8178|  1.38k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.38k|    { \
  |  |  |  |  201|  1.38k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.38k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.38k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.38k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.38k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.38k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.38k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.38k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.38k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.38k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.38k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.38k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.38k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.38k|    }
  |  |  ------------------
  |  |  |  Branch (8178:13): [True: 1.38k, False: 0]
  |  |  ------------------
  |  | 8179|  1.38k|        }
  |  | 8180|       |
  |  | 8181|    132|        TARGET(JUMP_FORWARD) {
  |  |  ------------------
  |  |  |  |  132|    132|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8182|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8183|       |            int opcode = JUMP_FORWARD;
  |  | 8184|       |            (void)(opcode);
  |  | 8185|       |            #endif
  |  | 8186|    132|            frame->instr_ptr = next_instr;
  |  | 8187|    132|            next_instr += 1;
  |  | 8188|    132|            INSTRUCTION_STATS(JUMP_FORWARD);
  |  |  ------------------
  |  |  |  |   71|    132|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8189|    132|            JUMPBY(oparg);
  |  |  ------------------
  |  |  |  |  260|    132|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  | 8190|    132|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    132|    { \
  |  |  |  |  201|    132|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    132|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    132|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    132|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    132|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    132|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    132|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    132|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 132]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    132|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    132|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    132|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    132|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    132|    }
  |  |  ------------------
  |  |  |  Branch (8190:13): [True: 132, False: 0]
  |  |  ------------------
  |  | 8191|    132|        }
  |  | 8192|       |
  |  | 8193|  1.06k|        TARGET(LIST_APPEND) {
  |  |  ------------------
  |  |  |  |  132|  1.06k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8194|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8195|       |            int opcode = LIST_APPEND;
  |  | 8196|       |            (void)(opcode);
  |  | 8197|       |            #endif
  |  | 8198|  1.06k|            frame->instr_ptr = next_instr;
  |  | 8199|  1.06k|            next_instr += 1;
  |  | 8200|  1.06k|            INSTRUCTION_STATS(LIST_APPEND);
  |  |  ------------------
  |  |  |  |   71|  1.06k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8201|  1.06k|            _PyStackRef list;
  |  | 8202|  1.06k|            _PyStackRef v;
  |  | 8203|  1.06k|            v = stack_pointer[-1];
  |  | 8204|  1.06k|            list = stack_pointer[-2 - (oparg-1)];
  |  | 8205|  1.06k|            int err = _PyList_AppendTakeRef((PyListObject *)PyStackRef_AsPyObjectBorrow(list),
  |  | 8206|  1.06k|                PyStackRef_AsPyObjectSteal(v));
  |  | 8207|  1.06k|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (8207:17): [True: 0, False: 1.06k]
  |  |  ------------------
  |  | 8208|      0|                JUMP_TO_LABEL(pop_1_error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 8209|      0|            }
  |  | 8210|  1.06k|            stack_pointer += -1;
  |  | 8211|  1.06k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.06k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8212|  1.06k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.06k|    { \
  |  |  |  |  201|  1.06k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.06k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.06k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.06k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.06k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.06k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.06k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.06k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.06k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.06k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.06k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.06k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.06k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.06k|    }
  |  |  ------------------
  |  |  |  Branch (8212:13): [True: 1.06k, False: 0]
  |  |  ------------------
  |  | 8213|  1.06k|        }
  |  | 8214|       |
  |  | 8215|     22|        TARGET(LIST_EXTEND) {
  |  |  ------------------
  |  |  |  |  132|     22|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8216|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8217|       |            int opcode = LIST_EXTEND;
  |  | 8218|       |            (void)(opcode);
  |  | 8219|       |            #endif
  |  | 8220|     22|            frame->instr_ptr = next_instr;
  |  | 8221|     22|            next_instr += 1;
  |  | 8222|     22|            INSTRUCTION_STATS(LIST_EXTEND);
  |  |  ------------------
  |  |  |  |   71|     22|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8223|     22|            _PyStackRef list_st;
  |  | 8224|     22|            _PyStackRef iterable_st;
  |  | 8225|     22|            _PyStackRef i;
  |  | 8226|     22|            _PyStackRef value;
  |  | 8227|       |            // _LIST_EXTEND
  |  | 8228|     22|            {
  |  | 8229|     22|                iterable_st = stack_pointer[-1];
  |  | 8230|     22|                list_st = stack_pointer[-2 - (oparg-1)];
  |  | 8231|     22|                PyObject *list = PyStackRef_AsPyObjectBorrow(list_st);
  |  | 8232|     22|                PyObject *iterable = PyStackRef_AsPyObjectBorrow(iterable_st);
  |  | 8233|     22|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8234|     22|                PyObject *none_val = _PyList_Extend((PyListObject *)list, iterable);
  |  | 8235|     22|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8236|     22|                if (none_val == NULL) {
  |  |  ------------------
  |  |  |  Branch (8236:21): [True: 0, False: 22]
  |  |  ------------------
  |  | 8237|      0|                    int matches = _PyErr_ExceptionMatches(tstate, PyExc_TypeError);
  |  | 8238|      0|                    if (matches &&
  |  |  ------------------
  |  |  |  Branch (8238:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 8239|      0|                        (Py_TYPE(iterable)->tp_iter == NULL && !PySequence_Check(iterable)))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8239:26): [True: 0, False: 0]
  |  |  |  Branch (8239:64): [True: 0, False: 0]
  |  |  ------------------
  |  | 8240|      0|                    {
  |  | 8241|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8242|      0|                        _PyErr_Clear(tstate);
  |  | 8243|      0|                        _PyErr_Format(tstate, PyExc_TypeError,
  |  | 8244|      0|                                  "Value after * must be an iterable, not %.200s",
  |  | 8245|      0|                                  Py_TYPE(iterable)->tp_name);
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8246|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8247|      0|                    }
  |  | 8248|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 8249|      0|                }
  |  | 8250|     22|                assert(Py_IsNone(none_val));
  |  |  ------------------
  |  |  |  Branch (8250:17): [True: 22, False: 0]
  |  |  ------------------
  |  | 8251|     22|                i = iterable_st;
  |  | 8252|     22|            }
  |  | 8253|       |            // _POP_TOP
  |  | 8254|      0|            {
  |  | 8255|     22|                value = i;
  |  | 8256|     22|                stack_pointer += -1;
  |  | 8257|     22|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     22|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8258|     22|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8259|     22|                PyStackRef_XCLOSE(value);
  |  | 8260|     22|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8261|     22|            }
  |  | 8262|     22|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     22|    { \
  |  |  |  |  201|     22|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     22|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     22|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     22|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     22|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     22|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     22|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     22|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 22]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     22|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     22|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     22|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     22|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     22|    }
  |  |  ------------------
  |  |  |  Branch (8262:13): [True: 22, False: 0]
  |  |  ------------------
  |  | 8263|     22|        }
  |  | 8264|       |
  |  | 8265|  2.09k|        TARGET(LOAD_ATTR) {
  |  |  ------------------
  |  |  |  |  132|  2.09k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8266|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8267|       |            int opcode = LOAD_ATTR;
  |  | 8268|       |            (void)(opcode);
  |  | 8269|       |            #endif
  |  | 8270|  2.09k|            frame->instr_ptr = next_instr;
  |  | 8271|  2.09k|            next_instr += 10;
  |  | 8272|  2.09k|            INSTRUCTION_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |   71|  2.09k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8273|  2.58k|            PREDICTED_LOAD_ATTR:;
  |  | 8274|  2.58k|            _Py_CODEUNIT* const this_instr = next_instr - 10;
  |  | 8275|  2.58k|            (void)this_instr;
  |  | 8276|  2.58k|            _PyStackRef owner;
  |  | 8277|  2.58k|            _PyStackRef attr;
  |  | 8278|  2.58k|            _PyStackRef *self_or_null;
  |  | 8279|       |            // _SPECIALIZE_LOAD_ATTR
  |  | 8280|  2.58k|            {
  |  | 8281|  2.58k|                owner = stack_pointer[-1];
  |  | 8282|  2.58k|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 8283|  2.58k|                (void)counter;
  |  | 8284|  2.58k|                #if ENABLE_SPECIALIZATION
  |  | 8285|  2.58k|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|  2.58k|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 472, False: 2.10k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8286|    472|                    PyObject *name = GETITEM(FRAME_CO_NAMES, oparg>>1);
  |  |  ------------------
  |  |  |  |  235|    472|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|    472|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|    472|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    472|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8286:38): [True: 472, False: 0]
  |  |  ------------------
  |  | 8287|      0|                    next_instr = this_instr;
  |  | 8288|    472|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8289|    472|                    _Py_Specialize_LoadAttr(owner, next_instr, name);
  |  | 8290|    472|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8291|    472|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|    472|    { \
  |  |  |  |  217|    472|        opcode = next_instr->op.code; \
  |  |  |  |  218|    472|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    472|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|    472|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|    472|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|    472|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|    472|    }
  |  |  ------------------
  |  | 8292|    472|                }
  |  | 8293|  2.58k|                OPCODE_DEFERRED_INC(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |   90|  2.58k|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 8294|  2.58k|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|  2.58k|    do { \
  |  |  |  |  358|  2.58k|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|  2.58k|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 2.58k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8295|  2.58k|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 8296|  2.58k|            }
  |  | 8297|       |            /* Skip 8 cache entries */
  |  | 8298|       |            // _LOAD_ATTR
  |  | 8299|      0|            {
  |  | 8300|  2.58k|                self_or_null = &stack_pointer[0];
  |  | 8301|  2.58k|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg >> 1);
  |  |  ------------------
  |  |  |  |  235|  2.58k|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|  2.58k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|  2.58k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  2.10k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8301:34): [True: 2.10k, False: 472]
  |  |  ------------------
  |  | 8302|  2.10k|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (8302:21): [True: 630, False: 1.47k]
  |  |  ------------------
  |  | 8303|    630|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8304|    630|                    attr = _Py_LoadAttr_StackRefSteal(tstate, owner, name, self_or_null);
  |  | 8305|    630|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8306|    630|                    if (PyStackRef_IsNull(attr)) {
  |  |  ------------------
  |  |  |  |  470|    630|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    630|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    630|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 2, False: 628]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8307|      2|                        JUMP_TO_LABEL(pop_1_error);
  |  |  ------------------
  |  |  |  |  135|      2|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 8308|      0|                    }
  |  | 8309|    630|                }
  |  | 8310|  1.47k|                else {
  |  | 8311|  1.47k|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8312|  1.47k|                    attr = _PyObject_GetAttrStackRef(PyStackRef_AsPyObjectBorrow(owner), name);
  |  | 8313|  1.47k|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8314|  1.47k|                    stack_pointer[-1] = attr;
  |  | 8315|  1.47k|                    stack_pointer += (oparg&1);
  |  | 8316|  1.47k|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.47k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8317|  1.47k|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8318|  1.47k|                    PyStackRef_CLOSE(owner);
  |  | 8319|  1.47k|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8320|  1.47k|                    if (PyStackRef_IsNull(attr)) {
  |  |  ------------------
  |  |  |  |  470|  1.47k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|  1.47k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  1.47k|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 20, False: 1.45k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8321|     20|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|     20|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 8322|      0|                    }
  |  | 8323|  1.45k|                    stack_pointer += -(oparg&1);
  |  | 8324|  1.45k|                }
  |  | 8325|  2.10k|            }
  |  | 8326|  2.08k|            stack_pointer[-1] = attr;
  |  | 8327|  2.08k|            stack_pointer += (oparg&1);
  |  | 8328|  2.08k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  2.08k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8329|  2.08k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  2.08k|    { \
  |  |  |  |  201|  2.08k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  2.08k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  2.08k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  2.08k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  2.08k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  2.08k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  2.08k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  2.08k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2.08k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  2.08k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  2.08k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  2.08k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  2.08k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  2.08k|    }
  |  |  ------------------
  |  |  |  Branch (8329:13): [True: 2.08k, False: 0]
  |  |  ------------------
  |  | 8330|  2.08k|        }
  |  | 8331|       |
  |  | 8332|     72|        TARGET(LOAD_ATTR_CLASS) {
  |  |  ------------------
  |  |  |  |  132|     72|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8333|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8334|       |            int opcode = LOAD_ATTR_CLASS;
  |  | 8335|       |            (void)(opcode);
  |  | 8336|       |            #endif
  |  | 8337|     72|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8338|     72|            (void)this_instr;
  |  | 8339|     72|            frame->instr_ptr = next_instr;
  |  | 8340|     72|            next_instr += 10;
  |  | 8341|     72|            INSTRUCTION_STATS(LOAD_ATTR_CLASS);
  |  |  ------------------
  |  |  |  |   71|     72|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8342|     72|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8343|     72|            _PyStackRef owner;
  |  | 8344|     72|            _PyStackRef attr;
  |  | 8345|     72|            _PyStackRef *null;
  |  | 8346|       |            /* Skip 1 cache entry */
  |  | 8347|       |            // _CHECK_ATTR_CLASS
  |  | 8348|     72|            {
  |  | 8349|     72|                owner = stack_pointer[-1];
  |  | 8350|     72|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8351|     72|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 8352|     72|                if (!PyType_Check(owner_o)) {
  |  |  ------------------
  |  |  |  |  766|     72|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8352:21): [True: 0, False: 72]
  |  |  ------------------
  |  | 8353|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8354|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8354:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8355|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8356|      0|                }
  |  | 8357|     72|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8357:17): [True: 72, False: 0]
  |  |  ------------------
  |  | 8358|     72|                if (FT_ATOMIC_LOAD_UINT_RELAXED(((PyTypeObject *)owner_o)->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|     72|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8358:21): [True: 0, False: 72]
  |  |  ------------------
  |  | 8359|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8360|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8360:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8361|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8362|      0|                }
  |  | 8363|     72|            }
  |  | 8364|       |            /* Skip 2 cache entries */
  |  | 8365|       |            // _LOAD_ATTR_CLASS
  |  | 8366|     72|            {
  |  | 8367|     72|                PyObject *descr = read_obj(&this_instr[6].cache);
  |  | 8368|     72|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|     72|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8369|     72|                assert(descr != NULL);
  |  |  ------------------
  |  |  |  Branch (8369:17): [True: 72, False: 0]
  |  |  ------------------
  |  | 8370|     72|                attr = PyStackRef_FromPyObjectNew(descr);
  |  |  ------------------
  |  |  |  |  599|     72|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     72|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     72|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8371|     72|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8372|     72|                _PyStackRef tmp = owner;
  |  | 8373|     72|                owner = attr;
  |  | 8374|     72|                stack_pointer[-1] = owner;
  |  | 8375|     72|                PyStackRef_CLOSE(tmp);
  |  | 8376|     72|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8377|     72|            }
  |  | 8378|       |            // _PUSH_NULL_CONDITIONAL
  |  | 8379|      0|            {
  |  | 8380|     72|                null = &stack_pointer[0];
  |  | 8381|     72|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (8381:21): [True: 0, False: 72]
  |  |  ------------------
  |  | 8382|      0|                    null[0] = PyStackRef_NULL;
  |  | 8383|      0|                }
  |  | 8384|     72|            }
  |  | 8385|     72|            stack_pointer += (oparg & 1);
  |  | 8386|     72|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     72|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8387|     72|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     72|    { \
  |  |  |  |  201|     72|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     72|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     72|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     72|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     72|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     72|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     72|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     72|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 72]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     72|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     72|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     72|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     72|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     72|    }
  |  |  ------------------
  |  |  |  Branch (8387:13): [True: 72, False: 0]
  |  |  ------------------
  |  | 8388|     72|        }
  |  | 8389|       |
  |  | 8390|      0|        TARGET(LOAD_ATTR_CLASS_WITH_METACLASS_CHECK) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8391|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8392|       |            int opcode = LOAD_ATTR_CLASS_WITH_METACLASS_CHECK;
  |  | 8393|       |            (void)(opcode);
  |  | 8394|       |            #endif
  |  | 8395|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8396|      0|            (void)this_instr;
  |  | 8397|      0|            frame->instr_ptr = next_instr;
  |  | 8398|      0|            next_instr += 10;
  |  | 8399|      0|            INSTRUCTION_STATS(LOAD_ATTR_CLASS_WITH_METACLASS_CHECK);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8400|      0|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8401|      0|            _PyStackRef owner;
  |  | 8402|      0|            _PyStackRef attr;
  |  | 8403|      0|            _PyStackRef *null;
  |  | 8404|       |            /* Skip 1 cache entry */
  |  | 8405|       |            // _GUARD_TYPE_VERSION
  |  | 8406|      0|            {
  |  | 8407|      0|                owner = stack_pointer[-1];
  |  | 8408|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8409|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8410|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8410:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8411|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8411:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8412|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8413|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8413:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8414|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8415|      0|                }
  |  | 8416|      0|            }
  |  | 8417|       |            // _CHECK_ATTR_CLASS
  |  | 8418|      0|            {
  |  | 8419|      0|                uint32_t type_version = read_u32(&this_instr[4].cache);
  |  | 8420|      0|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 8421|      0|                if (!PyType_Check(owner_o)) {
  |  |  ------------------
  |  |  |  |  766|      0|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8421:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8422|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8423|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8423:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8424|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8425|      0|                }
  |  | 8426|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8426:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8427|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(((PyTypeObject *)owner_o)->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8427:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8428|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8429|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8429:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8430|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8431|      0|                }
  |  | 8432|      0|            }
  |  | 8433|       |            // _LOAD_ATTR_CLASS
  |  | 8434|      0|            {
  |  | 8435|      0|                PyObject *descr = read_obj(&this_instr[6].cache);
  |  | 8436|      0|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8437|      0|                assert(descr != NULL);
  |  |  ------------------
  |  |  |  Branch (8437:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8438|      0|                attr = PyStackRef_FromPyObjectNew(descr);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8439|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8440|      0|                _PyStackRef tmp = owner;
  |  | 8441|      0|                owner = attr;
  |  | 8442|      0|                stack_pointer[-1] = owner;
  |  | 8443|      0|                PyStackRef_CLOSE(tmp);
  |  | 8444|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8445|      0|            }
  |  | 8446|       |            // _PUSH_NULL_CONDITIONAL
  |  | 8447|      0|            {
  |  | 8448|      0|                null = &stack_pointer[0];
  |  | 8449|      0|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (8449:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8450|      0|                    null[0] = PyStackRef_NULL;
  |  | 8451|      0|                }
  |  | 8452|      0|            }
  |  | 8453|      0|            stack_pointer += (oparg & 1);
  |  | 8454|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8455|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (8455:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 8456|      0|        }
  |  | 8457|       |
  |  | 8458|      0|        TARGET(LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8459|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8460|       |            int opcode = LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN;
  |  | 8461|       |            (void)(opcode);
  |  | 8462|       |            #endif
  |  | 8463|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8464|      0|            (void)this_instr;
  |  | 8465|      0|            frame->instr_ptr = next_instr;
  |  | 8466|      0|            next_instr += 10;
  |  | 8467|      0|            INSTRUCTION_STATS(LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8468|      0|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8469|      0|            _PyStackRef owner;
  |  | 8470|      0|            _PyStackRef new_frame;
  |  | 8471|       |            /* Skip 1 cache entry */
  |  | 8472|       |            // _GUARD_TYPE_VERSION
  |  | 8473|      0|            {
  |  | 8474|      0|                owner = stack_pointer[-1];
  |  | 8475|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8476|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8477|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8477:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8478|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8478:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8479|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8480|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8480:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8481|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8482|      0|                }
  |  | 8483|      0|            }
  |  | 8484|       |            // _CHECK_PEP_523
  |  | 8485|      0|            {
  |  | 8486|      0|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8487|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8488|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8488:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8489|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8490|      0|                }
  |  | 8491|      0|            }
  |  | 8492|       |            // _LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN_FRAME
  |  | 8493|      0|            {
  |  | 8494|      0|                uint32_t func_version = read_u32(&this_instr[4].cache);
  |  | 8495|      0|                PyObject *getattribute = read_obj(&this_instr[6].cache);
  |  | 8496|      0|                assert((oparg & 1) == 0);
  |  |  ------------------
  |  |  |  Branch (8496:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8497|      0|                assert(Py_IS_TYPE(getattribute, &PyFunction_Type));
  |  |  ------------------
  |  |  |  Branch (8497:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8498|      0|                PyFunctionObject *f = (PyFunctionObject *)getattribute;
  |  | 8499|      0|                assert(func_version != 0);
  |  |  ------------------
  |  |  |  Branch (8499:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8500|      0|                if (f->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (8500:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8501|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8502|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8502:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8503|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8504|      0|                }
  |  | 8505|      0|                PyCodeObject *code = (PyCodeObject *)f->func_code;
  |  | 8506|      0|                assert(code->co_argcount == 2);
  |  |  ------------------
  |  |  |  Branch (8506:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8507|      0|                if (!_PyThreadState_HasStackSpace(tstate, code->co_framesize)) {
  |  |  ------------------
  |  |  |  Branch (8507:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8508|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8509|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8509:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8510|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8511|      0|                }
  |  | 8512|      0|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8513|      0|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg >> 1);
  |  |  ------------------
  |  |  |  |  235|      0|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8513:34): [True: 0, False: 0]
  |  |  ------------------
  |  | 8514|      0|                _PyInterpreterFrame *pushed_frame = _PyFrame_PushUnchecked(
  |  | 8515|      0|                    tstate, PyStackRef_FromPyObjectNew(f), 2, frame);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8516|      0|                pushed_frame->localsplus[0] = owner;
  |  | 8517|      0|                pushed_frame->localsplus[1] = PyStackRef_FromPyObjectNew(name);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8518|      0|                new_frame = PyStackRef_Wrap(pushed_frame);
  |  | 8519|      0|            }
  |  | 8520|       |            // _SAVE_RETURN_OFFSET
  |  | 8521|      0|            {
  |  | 8522|      0|                #if TIER_ONE
  |  | 8523|      0|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 8524|      0|                #endif
  |  | 8525|       |                #if TIER_TWO
  |  | 8526|       |                frame->return_offset = oparg;
  |  | 8527|       |                #endif
  |  | 8528|      0|            }
  |  | 8529|       |            // _PUSH_FRAME
  |  | 8530|      0|            {
  |  | 8531|      0|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (8531:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8532|      0|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 8533|      0|                stack_pointer += -1;
  |  | 8534|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8535|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8536|      0|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (8536:17): [True: 0, False: 0]
  |  |  |  Branch (8536:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8537|      0|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 8538|      0|                frame = tstate->current_frame = temp;
  |  | 8539|      0|                tstate->py_recursion_remaining--;
  |  | 8540|      0|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|      0|#define LOAD_SP() \
  |  |  |  |  426|      0|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 8541|      0|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|      0|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      0|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8542|      0|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|      0|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 8543|      0|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      0|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 8544|      0|            }
  |  | 8545|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (8545:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 8546|      0|        }
  |  | 8547|       |
  |  | 8548|  2.24k|        TARGET(LOAD_ATTR_INSTANCE_VALUE) {
  |  |  ------------------
  |  |  |  |  132|  2.24k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8549|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8550|       |            int opcode = LOAD_ATTR_INSTANCE_VALUE;
  |  | 8551|       |            (void)(opcode);
  |  | 8552|       |            #endif
  |  | 8553|  2.24k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8554|  2.24k|            (void)this_instr;
  |  | 8555|  2.24k|            frame->instr_ptr = next_instr;
  |  | 8556|  2.24k|            next_instr += 10;
  |  | 8557|  2.24k|            INSTRUCTION_STATS(LOAD_ATTR_INSTANCE_VALUE);
  |  |  ------------------
  |  |  |  |   71|  2.24k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8558|  2.24k|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8559|  2.24k|            _PyStackRef owner;
  |  | 8560|  2.24k|            _PyStackRef attr;
  |  | 8561|  2.24k|            _PyStackRef o;
  |  | 8562|  2.24k|            _PyStackRef value;
  |  | 8563|  2.24k|            _PyStackRef *null;
  |  | 8564|       |            /* Skip 1 cache entry */
  |  | 8565|       |            // _GUARD_TYPE_VERSION
  |  | 8566|  2.24k|            {
  |  | 8567|  2.24k|                owner = stack_pointer[-1];
  |  | 8568|  2.24k|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8569|  2.24k|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|  2.24k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.24k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.24k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8570|  2.24k|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8570:17): [True: 2.24k, False: 0]
  |  |  ------------------
  |  | 8571|  2.24k|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|  2.24k|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8571:21): [True: 0, False: 2.24k]
  |  |  ------------------
  |  | 8572|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8573|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8573:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8574|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8575|      0|                }
  |  | 8576|  2.24k|            }
  |  | 8577|       |            // _CHECK_MANAGED_OBJECT_HAS_VALUES
  |  | 8578|  2.24k|            {
  |  | 8579|  2.24k|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 8580|  2.24k|                assert(Py_TYPE(owner_o)->tp_dictoffset < 0);
  |  |  ------------------
  |  |  |  Branch (8580:17): [True: 2.24k, False: 0]
  |  |  ------------------
  |  | 8581|  2.24k|                assert(Py_TYPE(owner_o)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  |  |  ------------------
  |  |  |  Branch (8581:17): [True: 2.24k, False: 0]
  |  |  ------------------
  |  | 8582|  2.24k|                if (!FT_ATOMIC_LOAD_UINT8(_PyObject_InlineValues(owner_o)->valid)) {
  |  |  ------------------
  |  |  |  |  154|  2.24k|#define FT_ATOMIC_LOAD_UINT8(value) value
  |  |  ------------------
  |  |  |  Branch (8582:21): [True: 0, False: 2.24k]
  |  |  ------------------
  |  | 8583|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8584|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8584:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8585|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8586|      0|                }
  |  | 8587|  2.24k|            }
  |  | 8588|       |            // _LOAD_ATTR_INSTANCE_VALUE
  |  | 8589|  2.24k|            {
  |  | 8590|  2.24k|                uint16_t offset = read_u16(&this_instr[4].cache);
  |  | 8591|  2.24k|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 8592|  2.24k|                PyObject **value_ptr = (PyObject**)(((char *)owner_o) + offset);
  |  | 8593|  2.24k|                PyObject *attr_o = FT_ATOMIC_LOAD_PTR_ACQUIRE(*value_ptr);
  |  |  ------------------
  |  |  |  |  150|  2.24k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 8594|  2.24k|                if (attr_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (8594:21): [True: 0, False: 2.24k]
  |  |  ------------------
  |  | 8595|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8596|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8596:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8597|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8598|      0|                }
  |  | 8599|       |                #ifdef Py_GIL_DISABLED
  |  | 8600|       |                int increfed = _Py_TryIncrefCompareStackRef(value_ptr, attr_o, &attr);
  |  | 8601|       |                if (!increfed) {
  |  | 8602|       |                    if (true) {
  |  | 8603|       |                        UPDATE_MISS_STATS(LOAD_ATTR);
  |  | 8604|       |                        assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  | 8605|       |                        JUMP_TO_PREDICTED(LOAD_ATTR);
  |  | 8606|       |                    }
  |  | 8607|       |                }
  |  | 8608|       |                #else
  |  | 8609|  2.24k|                attr = PyStackRef_FromPyObjectNew(attr_o);
  |  |  ------------------
  |  |  |  |  599|  2.24k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.24k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.24k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8610|  2.24k|                #endif
  |  | 8611|  2.24k|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|  2.24k|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8612|  2.24k|                o = owner;
  |  | 8613|  2.24k|            }
  |  | 8614|       |            // _POP_TOP
  |  | 8615|      0|            {
  |  | 8616|  2.24k|                value = o;
  |  | 8617|  2.24k|                stack_pointer[-1] = attr;
  |  | 8618|  2.24k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8619|  2.24k|                PyStackRef_XCLOSE(value);
  |  | 8620|  2.24k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8621|  2.24k|            }
  |  | 8622|       |            /* Skip 5 cache entries */
  |  | 8623|       |            // _PUSH_NULL_CONDITIONAL
  |  | 8624|  2.24k|            {
  |  | 8625|  2.24k|                null = &stack_pointer[0];
  |  | 8626|  2.24k|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (8626:21): [True: 64, False: 2.18k]
  |  |  ------------------
  |  | 8627|     64|                    null[0] = PyStackRef_NULL;
  |  | 8628|     64|                }
  |  | 8629|  2.24k|            }
  |  | 8630|  2.24k|            stack_pointer += (oparg & 1);
  |  | 8631|  2.24k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  2.24k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8632|  2.24k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  2.24k|    { \
  |  |  |  |  201|  2.24k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  2.24k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  2.24k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  2.24k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  2.24k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  2.24k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  2.24k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  2.24k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2.24k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  2.24k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  2.24k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  2.24k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  2.24k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  2.24k|    }
  |  |  ------------------
  |  |  |  Branch (8632:13): [True: 2.24k, False: 0]
  |  |  ------------------
  |  | 8633|  2.24k|        }
  |  | 8634|       |
  |  | 8635|      0|        TARGET(LOAD_ATTR_METHOD_LAZY_DICT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8636|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8637|       |            int opcode = LOAD_ATTR_METHOD_LAZY_DICT;
  |  | 8638|       |            (void)(opcode);
  |  | 8639|       |            #endif
  |  | 8640|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8641|      0|            (void)this_instr;
  |  | 8642|      0|            frame->instr_ptr = next_instr;
  |  | 8643|      0|            next_instr += 10;
  |  | 8644|      0|            INSTRUCTION_STATS(LOAD_ATTR_METHOD_LAZY_DICT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8645|      0|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8646|      0|            _PyStackRef owner;
  |  | 8647|      0|            _PyStackRef attr;
  |  | 8648|      0|            _PyStackRef self;
  |  | 8649|       |            /* Skip 1 cache entry */
  |  | 8650|       |            // _GUARD_TYPE_VERSION
  |  | 8651|      0|            {
  |  | 8652|      0|                owner = stack_pointer[-1];
  |  | 8653|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8654|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8655|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8655:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8656|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8656:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8657|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8658|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8658:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8659|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8660|      0|                }
  |  | 8661|      0|            }
  |  | 8662|       |            // _CHECK_ATTR_METHOD_LAZY_DICT
  |  | 8663|      0|            {
  |  | 8664|      0|                uint16_t dictoffset = read_u16(&this_instr[4].cache);
  |  | 8665|      0|                char *ptr = ((char *)PyStackRef_AsPyObjectBorrow(owner)) + MANAGED_DICT_OFFSET + dictoffset;
  |  |  ------------------
  |  |  |  |  925|      0|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  |  |  ------------------
  |  | 8666|      0|                PyObject *dict = FT_ATOMIC_LOAD_PTR_ACQUIRE(*(PyObject **)ptr);
  |  |  ------------------
  |  |  |  |  150|      0|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 8667|      0|                if (dict != NULL) {
  |  |  ------------------
  |  |  |  Branch (8667:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8668|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8669|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8669:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8670|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8671|      0|                }
  |  | 8672|      0|            }
  |  | 8673|       |            /* Skip 1 cache entry */
  |  | 8674|       |            // _LOAD_ATTR_METHOD_LAZY_DICT
  |  | 8675|      0|            {
  |  | 8676|      0|                PyObject *descr = read_obj(&this_instr[6].cache);
  |  | 8677|      0|                assert(oparg & 1);
  |  |  ------------------
  |  |  |  Branch (8677:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8678|      0|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8679|      0|                assert(descr != NULL);
  |  |  ------------------
  |  |  |  Branch (8679:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8680|      0|                assert(_PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR));
  |  |  ------------------
  |  |  |  Branch (8680:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8681|      0|                attr = PyStackRef_FromPyObjectNew(descr);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8682|      0|                self = owner;
  |  | 8683|      0|            }
  |  | 8684|      0|            stack_pointer[-1] = attr;
  |  | 8685|      0|            stack_pointer[0] = self;
  |  | 8686|      0|            stack_pointer += 1;
  |  | 8687|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8688|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (8688:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 8689|      0|        }
  |  | 8690|       |
  |  | 8691|    994|        TARGET(LOAD_ATTR_METHOD_NO_DICT) {
  |  |  ------------------
  |  |  |  |  132|    994|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8692|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8693|       |            int opcode = LOAD_ATTR_METHOD_NO_DICT;
  |  | 8694|       |            (void)(opcode);
  |  | 8695|       |            #endif
  |  | 8696|    994|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8697|    994|            (void)this_instr;
  |  | 8698|    994|            frame->instr_ptr = next_instr;
  |  | 8699|    994|            next_instr += 10;
  |  | 8700|    994|            INSTRUCTION_STATS(LOAD_ATTR_METHOD_NO_DICT);
  |  |  ------------------
  |  |  |  |   71|    994|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8701|    994|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8702|    994|            _PyStackRef owner;
  |  | 8703|    994|            _PyStackRef attr;
  |  | 8704|    994|            _PyStackRef self;
  |  | 8705|       |            /* Skip 1 cache entry */
  |  | 8706|       |            // _GUARD_TYPE_VERSION
  |  | 8707|    994|            {
  |  | 8708|    994|                owner = stack_pointer[-1];
  |  | 8709|    994|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8710|    994|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|    994|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    994|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8711|    994|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8711:17): [True: 994, False: 0]
  |  |  ------------------
  |  | 8712|    994|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|    994|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8712:21): [True: 0, False: 994]
  |  |  ------------------
  |  | 8713|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8714|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8714:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8715|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8716|      0|                }
  |  | 8717|    994|            }
  |  | 8718|       |            /* Skip 2 cache entries */
  |  | 8719|       |            // _LOAD_ATTR_METHOD_NO_DICT
  |  | 8720|    994|            {
  |  | 8721|    994|                PyObject *descr = read_obj(&this_instr[6].cache);
  |  | 8722|    994|                assert(oparg & 1);
  |  |  ------------------
  |  |  |  Branch (8722:17): [True: 994, False: 0]
  |  |  ------------------
  |  | 8723|    994|                assert(Py_TYPE(PyStackRef_AsPyObjectBorrow(owner))->tp_dictoffset == 0);
  |  |  ------------------
  |  |  |  Branch (8723:17): [True: 994, False: 0]
  |  |  ------------------
  |  | 8724|    994|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|    994|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8725|    994|                assert(descr != NULL);
  |  |  ------------------
  |  |  |  Branch (8725:17): [True: 994, False: 0]
  |  |  ------------------
  |  | 8726|    994|                assert(_PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR));
  |  |  ------------------
  |  |  |  Branch (8726:17): [True: 994, False: 0]
  |  |  ------------------
  |  | 8727|    994|                attr = PyStackRef_FromPyObjectNew(descr);
  |  |  ------------------
  |  |  |  |  599|    994|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    994|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8728|    994|                self = owner;
  |  | 8729|    994|            }
  |  | 8730|      0|            stack_pointer[-1] = attr;
  |  | 8731|    994|            stack_pointer[0] = self;
  |  | 8732|    994|            stack_pointer += 1;
  |  | 8733|    994|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    994|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8734|    994|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    994|    { \
  |  |  |  |  201|    994|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    994|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    994|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    994|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    994|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    994|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    994|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    994|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 994]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    994|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    994|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    994|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    994|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    994|    }
  |  |  ------------------
  |  |  |  Branch (8734:13): [True: 994, False: 0]
  |  |  ------------------
  |  | 8735|    994|        }
  |  | 8736|       |
  |  | 8737|    180|        TARGET(LOAD_ATTR_METHOD_WITH_VALUES) {
  |  |  ------------------
  |  |  |  |  132|    180|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8738|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8739|       |            int opcode = LOAD_ATTR_METHOD_WITH_VALUES;
  |  | 8740|       |            (void)(opcode);
  |  | 8741|       |            #endif
  |  | 8742|    180|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8743|    180|            (void)this_instr;
  |  | 8744|    180|            frame->instr_ptr = next_instr;
  |  | 8745|    180|            next_instr += 10;
  |  | 8746|    180|            INSTRUCTION_STATS(LOAD_ATTR_METHOD_WITH_VALUES);
  |  |  ------------------
  |  |  |  |   71|    180|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8747|    180|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8748|    180|            _PyStackRef owner;
  |  | 8749|    180|            _PyStackRef attr;
  |  | 8750|    180|            _PyStackRef self;
  |  | 8751|       |            /* Skip 1 cache entry */
  |  | 8752|       |            // _GUARD_TYPE_VERSION
  |  | 8753|    180|            {
  |  | 8754|    180|                owner = stack_pointer[-1];
  |  | 8755|    180|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8756|    180|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|    180|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8757|    180|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8757:17): [True: 180, False: 0]
  |  |  ------------------
  |  | 8758|    180|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|    180|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8758:21): [True: 0, False: 180]
  |  |  ------------------
  |  | 8759|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8760|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8760:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8761|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8762|      0|                }
  |  | 8763|    180|            }
  |  | 8764|       |            // _GUARD_DORV_VALUES_INST_ATTR_FROM_DICT
  |  | 8765|    180|            {
  |  | 8766|    180|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 8767|    180|                assert(Py_TYPE(owner_o)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  |  |  ------------------
  |  |  |  Branch (8767:17): [True: 180, False: 0]
  |  |  ------------------
  |  | 8768|    180|                PyDictValues *ivs = _PyObject_InlineValues(owner_o);
  |  | 8769|    180|                if (!FT_ATOMIC_LOAD_UINT8(ivs->valid)) {
  |  |  ------------------
  |  |  |  |  154|    180|#define FT_ATOMIC_LOAD_UINT8(value) value
  |  |  ------------------
  |  |  |  Branch (8769:21): [True: 0, False: 180]
  |  |  ------------------
  |  | 8770|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8771|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8771:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8772|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8773|      0|                }
  |  | 8774|    180|            }
  |  | 8775|       |            // _GUARD_KEYS_VERSION
  |  | 8776|    180|            {
  |  | 8777|    180|                uint32_t keys_version = read_u32(&this_instr[4].cache);
  |  | 8778|    180|                PyTypeObject *owner_cls = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|    180|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8779|    180|                PyHeapTypeObject *owner_heap_type = (PyHeapTypeObject *)owner_cls;
  |  | 8780|    180|                PyDictKeysObject *keys = owner_heap_type->ht_cached_keys;
  |  | 8781|    180|                if (FT_ATOMIC_LOAD_UINT32_RELAXED(keys->dk_version) != keys_version) {
  |  |  ------------------
  |  |  |  |  159|    180|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8781:21): [True: 0, False: 180]
  |  |  ------------------
  |  | 8782|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8783|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8783:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8784|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8785|      0|                }
  |  | 8786|    180|            }
  |  | 8787|       |            // _LOAD_ATTR_METHOD_WITH_VALUES
  |  | 8788|    180|            {
  |  | 8789|    180|                PyObject *descr = read_obj(&this_instr[6].cache);
  |  | 8790|    180|                assert(oparg & 1);
  |  |  ------------------
  |  |  |  Branch (8790:17): [True: 180, False: 0]
  |  |  ------------------
  |  | 8791|    180|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|    180|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8792|    180|                assert(descr != NULL);
  |  |  ------------------
  |  |  |  Branch (8792:17): [True: 180, False: 0]
  |  |  ------------------
  |  | 8793|    180|                assert(_PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR));
  |  |  ------------------
  |  |  |  Branch (8793:17): [True: 180, False: 0]
  |  |  ------------------
  |  | 8794|    180|                attr = PyStackRef_FromPyObjectNew(descr);
  |  |  ------------------
  |  |  |  |  599|    180|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8795|    180|                self = owner;
  |  | 8796|    180|            }
  |  | 8797|      0|            stack_pointer[-1] = attr;
  |  | 8798|    180|            stack_pointer[0] = self;
  |  | 8799|    180|            stack_pointer += 1;
  |  | 8800|    180|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    180|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8801|    180|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    180|    { \
  |  |  |  |  201|    180|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    180|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    180|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    180|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    180|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    180|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    180|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    180|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 180]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    180|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    180|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    180|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    180|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    180|    }
  |  |  ------------------
  |  |  |  Branch (8801:13): [True: 180, False: 0]
  |  |  ------------------
  |  | 8802|    180|        }
  |  | 8803|       |
  |  | 8804|  1.86k|        TARGET(LOAD_ATTR_MODULE) {
  |  |  ------------------
  |  |  |  |  132|  1.86k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8805|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8806|       |            int opcode = LOAD_ATTR_MODULE;
  |  | 8807|       |            (void)(opcode);
  |  | 8808|       |            #endif
  |  | 8809|  1.86k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8810|  1.86k|            (void)this_instr;
  |  | 8811|  1.86k|            frame->instr_ptr = next_instr;
  |  | 8812|  1.86k|            next_instr += 10;
  |  | 8813|  1.86k|            INSTRUCTION_STATS(LOAD_ATTR_MODULE);
  |  |  ------------------
  |  |  |  |   71|  1.86k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8814|  1.86k|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8815|  1.86k|            _PyStackRef owner;
  |  | 8816|  1.86k|            _PyStackRef attr;
  |  | 8817|  1.86k|            _PyStackRef o;
  |  | 8818|  1.86k|            _PyStackRef value;
  |  | 8819|  1.86k|            _PyStackRef *null;
  |  | 8820|       |            /* Skip 1 cache entry */
  |  | 8821|       |            // _LOAD_ATTR_MODULE
  |  | 8822|  1.86k|            {
  |  | 8823|  1.86k|                owner = stack_pointer[-1];
  |  | 8824|  1.86k|                uint32_t dict_version = read_u32(&this_instr[2].cache);
  |  | 8825|  1.86k|                uint16_t index = read_u16(&this_instr[4].cache);
  |  | 8826|  1.86k|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 8827|  1.86k|                if (Py_TYPE(owner_o)->tp_getattro != PyModule_Type.tp_getattro) {
  |  |  ------------------
  |  |  |  |  213|  1.86k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.86k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.86k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (8827:21): [True: 0, False: 1.86k]
  |  |  ------------------
  |  | 8828|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8829|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8829:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8830|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8831|      0|                }
  |  | 8832|  1.86k|                PyDictObject *dict = (PyDictObject *)((PyModuleObject *)owner_o)->md_dict;
  |  | 8833|  1.86k|                assert(dict != NULL);
  |  |  ------------------
  |  |  |  Branch (8833:17): [True: 1.86k, False: 0]
  |  |  ------------------
  |  | 8834|  1.86k|                PyDictKeysObject *keys = FT_ATOMIC_LOAD_PTR_ACQUIRE(dict->ma_keys);
  |  |  ------------------
  |  |  |  |  150|  1.86k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 8835|  1.86k|                if (FT_ATOMIC_LOAD_UINT32_RELAXED(keys->dk_version) != dict_version) {
  |  |  ------------------
  |  |  |  |  159|  1.86k|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8835:21): [True: 486, False: 1.38k]
  |  |  ------------------
  |  | 8836|    486|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|    486|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8837|    486|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8837:21): [True: 486, False: 0]
  |  |  ------------------
  |  | 8838|    486|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|    486|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8839|      0|                }
  |  | 8840|  1.86k|                assert(keys->dk_kind == DICT_KEYS_UNICODE);
  |  |  ------------------
  |  |  |  Branch (8840:17): [True: 1.38k, False: 0]
  |  |  ------------------
  |  | 8841|  1.38k|                assert(index < FT_ATOMIC_LOAD_SSIZE_RELAXED(keys->dk_nentries));
  |  |  ------------------
  |  |  |  Branch (8841:17): [True: 1.38k, False: 0]
  |  |  ------------------
  |  | 8842|  1.38k|                PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(keys) + index;
  |  | 8843|  1.38k|                PyObject *attr_o = FT_ATOMIC_LOAD_PTR_RELAXED(ep->me_value);
  |  |  ------------------
  |  |  |  |  153|  1.38k|#define FT_ATOMIC_LOAD_PTR_RELAXED(value) value
  |  |  ------------------
  |  | 8844|  1.38k|                if (attr_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (8844:21): [True: 0, False: 1.38k]
  |  |  ------------------
  |  | 8845|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8846|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8846:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8847|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8848|      0|                }
  |  | 8849|       |                #ifdef Py_GIL_DISABLED
  |  | 8850|       |                int increfed = _Py_TryIncrefCompareStackRef(&ep->me_value, attr_o, &attr);
  |  | 8851|       |                if (!increfed) {
  |  | 8852|       |                    if (true) {
  |  | 8853|       |                        UPDATE_MISS_STATS(LOAD_ATTR);
  |  | 8854|       |                        assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  | 8855|       |                        JUMP_TO_PREDICTED(LOAD_ATTR);
  |  | 8856|       |                    }
  |  | 8857|       |                }
  |  | 8858|       |                #else
  |  | 8859|  1.38k|                attr = PyStackRef_FromPyObjectNew(attr_o);
  |  |  ------------------
  |  |  |  |  599|  1.38k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.38k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.38k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8860|  1.38k|                #endif
  |  | 8861|  1.38k|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|  1.38k|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8862|  1.38k|                o = owner;
  |  | 8863|  1.38k|            }
  |  | 8864|       |            // _POP_TOP
  |  | 8865|      0|            {
  |  | 8866|  1.38k|                value = o;
  |  | 8867|  1.38k|                stack_pointer[-1] = attr;
  |  | 8868|  1.38k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8869|  1.38k|                PyStackRef_XCLOSE(value);
  |  | 8870|  1.38k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8871|  1.38k|            }
  |  | 8872|       |            /* Skip 5 cache entries */
  |  | 8873|       |            // _PUSH_NULL_CONDITIONAL
  |  | 8874|  1.38k|            {
  |  | 8875|  1.38k|                null = &stack_pointer[0];
  |  | 8876|  1.38k|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (8876:21): [True: 894, False: 486]
  |  |  ------------------
  |  | 8877|    894|                    null[0] = PyStackRef_NULL;
  |  | 8878|    894|                }
  |  | 8879|  1.38k|            }
  |  | 8880|  1.38k|            stack_pointer += (oparg & 1);
  |  | 8881|  1.38k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.38k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8882|  1.38k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.38k|    { \
  |  |  |  |  201|  1.38k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.38k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.38k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.38k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.38k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.38k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.38k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.38k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.38k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.38k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.38k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.38k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.38k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.38k|    }
  |  |  ------------------
  |  |  |  Branch (8882:13): [True: 1.38k, False: 0]
  |  |  ------------------
  |  | 8883|  1.38k|        }
  |  | 8884|       |
  |  | 8885|      0|        TARGET(LOAD_ATTR_NONDESCRIPTOR_NO_DICT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8886|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8887|       |            int opcode = LOAD_ATTR_NONDESCRIPTOR_NO_DICT;
  |  | 8888|       |            (void)(opcode);
  |  | 8889|       |            #endif
  |  | 8890|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8891|      0|            (void)this_instr;
  |  | 8892|      0|            frame->instr_ptr = next_instr;
  |  | 8893|      0|            next_instr += 10;
  |  | 8894|      0|            INSTRUCTION_STATS(LOAD_ATTR_NONDESCRIPTOR_NO_DICT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8895|      0|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8896|      0|            _PyStackRef owner;
  |  | 8897|      0|            _PyStackRef attr;
  |  | 8898|       |            /* Skip 1 cache entry */
  |  | 8899|       |            // _GUARD_TYPE_VERSION
  |  | 8900|      0|            {
  |  | 8901|      0|                owner = stack_pointer[-1];
  |  | 8902|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8903|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8904|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8904:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8905|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8905:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8906|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8907|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8907:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8908|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8909|      0|                }
  |  | 8910|      0|            }
  |  | 8911|       |            /* Skip 2 cache entries */
  |  | 8912|       |            // _LOAD_ATTR_NONDESCRIPTOR_NO_DICT
  |  | 8913|      0|            {
  |  | 8914|      0|                PyObject *descr = read_obj(&this_instr[6].cache);
  |  | 8915|      0|                assert((oparg & 1) == 0);
  |  |  ------------------
  |  |  |  Branch (8915:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8916|      0|                assert(Py_TYPE(PyStackRef_AsPyObjectBorrow(owner))->tp_dictoffset == 0);
  |  |  ------------------
  |  |  |  Branch (8916:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8917|      0|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8918|      0|                assert(descr != NULL);
  |  |  ------------------
  |  |  |  Branch (8918:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8919|      0|                stack_pointer += -1;
  |  | 8920|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8921|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8922|      0|                PyStackRef_CLOSE(owner);
  |  | 8923|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8924|      0|                attr = PyStackRef_FromPyObjectNew(descr);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8925|      0|            }
  |  | 8926|      0|            stack_pointer[0] = attr;
  |  | 8927|      0|            stack_pointer += 1;
  |  | 8928|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8929|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (8929:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 8930|      0|        }
  |  | 8931|       |
  |  | 8932|      0|        TARGET(LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 8933|       |            #if _Py_TAIL_CALL_INTERP
  |  | 8934|       |            int opcode = LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES;
  |  | 8935|       |            (void)(opcode);
  |  | 8936|       |            #endif
  |  | 8937|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 8938|      0|            (void)this_instr;
  |  | 8939|      0|            frame->instr_ptr = next_instr;
  |  | 8940|      0|            next_instr += 10;
  |  | 8941|      0|            INSTRUCTION_STATS(LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 8942|      0|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 8943|      0|            _PyStackRef owner;
  |  | 8944|      0|            _PyStackRef attr;
  |  | 8945|       |            /* Skip 1 cache entry */
  |  | 8946|       |            // _GUARD_TYPE_VERSION
  |  | 8947|      0|            {
  |  | 8948|      0|                owner = stack_pointer[-1];
  |  | 8949|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 8950|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8951|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (8951:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8952|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8952:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8953|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8954|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8954:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8955|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8956|      0|                }
  |  | 8957|      0|            }
  |  | 8958|       |            // _GUARD_DORV_VALUES_INST_ATTR_FROM_DICT
  |  | 8959|      0|            {
  |  | 8960|      0|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 8961|      0|                assert(Py_TYPE(owner_o)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  |  |  ------------------
  |  |  |  Branch (8961:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8962|      0|                PyDictValues *ivs = _PyObject_InlineValues(owner_o);
  |  | 8963|      0|                if (!FT_ATOMIC_LOAD_UINT8(ivs->valid)) {
  |  |  ------------------
  |  |  |  |  154|      0|#define FT_ATOMIC_LOAD_UINT8(value) value
  |  |  ------------------
  |  |  |  Branch (8963:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8964|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8965|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8965:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8966|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8967|      0|                }
  |  | 8968|      0|            }
  |  | 8969|       |            // _GUARD_KEYS_VERSION
  |  | 8970|      0|            {
  |  | 8971|      0|                uint32_t keys_version = read_u32(&this_instr[4].cache);
  |  | 8972|      0|                PyTypeObject *owner_cls = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8973|      0|                PyHeapTypeObject *owner_heap_type = (PyHeapTypeObject *)owner_cls;
  |  | 8974|      0|                PyDictKeysObject *keys = owner_heap_type->ht_cached_keys;
  |  | 8975|      0|                if (FT_ATOMIC_LOAD_UINT32_RELAXED(keys->dk_version) != keys_version) {
  |  |  ------------------
  |  |  |  |  159|      0|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (8975:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8976|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 8977|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (8977:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 8978|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 8979|      0|                }
  |  | 8980|      0|            }
  |  | 8981|       |            // _LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES
  |  | 8982|      0|            {
  |  | 8983|      0|                PyObject *descr = read_obj(&this_instr[6].cache);
  |  | 8984|      0|                assert((oparg & 1) == 0);
  |  |  ------------------
  |  |  |  Branch (8984:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8985|      0|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 8986|      0|                assert(descr != NULL);
  |  |  ------------------
  |  |  |  Branch (8986:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 8987|      0|                stack_pointer += -1;
  |  | 8988|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8989|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 8990|      0|                PyStackRef_CLOSE(owner);
  |  | 8991|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 8992|      0|                attr = PyStackRef_FromPyObjectNew(descr);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 8993|      0|            }
  |  | 8994|      0|            stack_pointer[0] = attr;
  |  | 8995|      0|            stack_pointer += 1;
  |  | 8996|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 8997|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (8997:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 8998|      0|        }
  |  | 8999|       |
  |  | 9000|    112|        TARGET(LOAD_ATTR_PROPERTY) {
  |  |  ------------------
  |  |  |  |  132|    112|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9001|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9002|       |            int opcode = LOAD_ATTR_PROPERTY;
  |  | 9003|       |            (void)(opcode);
  |  | 9004|       |            #endif
  |  | 9005|    112|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 9006|    112|            (void)this_instr;
  |  | 9007|    112|            frame->instr_ptr = next_instr;
  |  | 9008|    112|            next_instr += 10;
  |  | 9009|    112|            INSTRUCTION_STATS(LOAD_ATTR_PROPERTY);
  |  |  ------------------
  |  |  |  |   71|    112|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9010|    112|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 9011|    112|            _PyStackRef owner;
  |  | 9012|    112|            _PyStackRef new_frame;
  |  | 9013|       |            /* Skip 1 cache entry */
  |  | 9014|       |            // _GUARD_TYPE_VERSION
  |  | 9015|    112|            {
  |  | 9016|    112|                owner = stack_pointer[-1];
  |  | 9017|    112|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 9018|    112|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|    112|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9019|    112|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (9019:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 9020|    112|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|    112|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9020:21): [True: 0, False: 112]
  |  |  ------------------
  |  | 9021|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9022|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9022:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9023|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9024|      0|                }
  |  | 9025|    112|            }
  |  | 9026|       |            // _CHECK_PEP_523
  |  | 9027|    112|            {
  |  | 9028|    112|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|    112|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 112]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9029|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9030|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9030:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9031|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9032|      0|                }
  |  | 9033|    112|            }
  |  | 9034|       |            // _LOAD_ATTR_PROPERTY_FRAME
  |  | 9035|    112|            {
  |  | 9036|    112|                uint32_t func_version = read_u32(&this_instr[4].cache);
  |  | 9037|    112|                PyObject *fget = read_obj(&this_instr[6].cache);
  |  | 9038|    112|                assert((oparg & 1) == 0);
  |  |  ------------------
  |  |  |  Branch (9038:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 9039|    112|                assert(Py_IS_TYPE(fget, &PyFunction_Type));
  |  |  ------------------
  |  |  |  Branch (9039:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 9040|    112|                PyFunctionObject *f = (PyFunctionObject *)fget;
  |  | 9041|    112|                if (f->func_version != func_version) {
  |  |  ------------------
  |  |  |  Branch (9041:21): [True: 0, False: 112]
  |  |  ------------------
  |  | 9042|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9043|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9043:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9044|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9045|      0|                }
  |  | 9046|    112|                PyCodeObject *code = (PyCodeObject *)f->func_code;
  |  | 9047|    112|                if (!_PyThreadState_HasStackSpace(tstate, code->co_framesize)) {
  |  |  ------------------
  |  |  |  Branch (9047:21): [True: 0, False: 112]
  |  |  ------------------
  |  | 9048|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9049|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9049:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9050|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9051|      0|                }
  |  | 9052|    112|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|    112|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 9053|    112|                _PyInterpreterFrame *pushed_frame = _PyFrame_PushUnchecked(tstate, PyStackRef_FromPyObjectNew(fget), 1, frame);
  |  |  ------------------
  |  |  |  |  599|    112|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9054|    112|                pushed_frame->localsplus[0] = owner;
  |  | 9055|    112|                new_frame = PyStackRef_Wrap(pushed_frame);
  |  | 9056|    112|            }
  |  | 9057|       |            // _SAVE_RETURN_OFFSET
  |  | 9058|      0|            {
  |  | 9059|    112|                #if TIER_ONE
  |  | 9060|    112|                frame->return_offset = (uint16_t)(next_instr - this_instr);
  |  | 9061|    112|                #endif
  |  | 9062|       |                #if TIER_TWO
  |  | 9063|       |                frame->return_offset = oparg;
  |  | 9064|       |                #endif
  |  | 9065|    112|            }
  |  | 9066|       |            // _PUSH_FRAME
  |  | 9067|    112|            {
  |  | 9068|    112|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (9068:17): [True: 112, False: 0]
  |  |  ------------------
  |  | 9069|    112|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  | 9070|    112|                stack_pointer += -1;
  |  | 9071|    112|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    112|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9072|    112|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9073|    112|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (9073:17): [True: 112, False: 0]
  |  |  |  Branch (9073:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9074|    112|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|    112|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  | 9075|    112|                frame = tstate->current_frame = temp;
  |  | 9076|    112|                tstate->py_recursion_remaining--;
  |  | 9077|    112|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|    112|#define LOAD_SP() \
  |  |  |  |  426|    112|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  | 9078|    112|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|    112|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|    112|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|    112|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 112]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9079|    112|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|    112|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  | 9080|    112|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|    112|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  | 9081|    112|            }
  |  | 9082|    112|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    112|    { \
  |  |  |  |  201|    112|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    112|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    112|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    112|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    112|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    112|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    112|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    112|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 112]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    112|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    112|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    112|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    112|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    112|    }
  |  |  ------------------
  |  |  |  Branch (9082:13): [True: 112, False: 0]
  |  |  ------------------
  |  | 9083|    112|        }
  |  | 9084|       |
  |  | 9085|    202|        TARGET(LOAD_ATTR_SLOT) {
  |  |  ------------------
  |  |  |  |  132|    202|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9086|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9087|       |            int opcode = LOAD_ATTR_SLOT;
  |  | 9088|       |            (void)(opcode);
  |  | 9089|       |            #endif
  |  | 9090|    202|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 9091|    202|            (void)this_instr;
  |  | 9092|    202|            frame->instr_ptr = next_instr;
  |  | 9093|    202|            next_instr += 10;
  |  | 9094|    202|            INSTRUCTION_STATS(LOAD_ATTR_SLOT);
  |  |  ------------------
  |  |  |  |   71|    202|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9095|    202|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 9096|    202|            _PyStackRef owner;
  |  | 9097|    202|            _PyStackRef attr;
  |  | 9098|    202|            _PyStackRef o;
  |  | 9099|    202|            _PyStackRef value;
  |  | 9100|    202|            _PyStackRef *null;
  |  | 9101|       |            /* Skip 1 cache entry */
  |  | 9102|       |            // _GUARD_TYPE_VERSION
  |  | 9103|    202|            {
  |  | 9104|    202|                owner = stack_pointer[-1];
  |  | 9105|    202|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 9106|    202|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|    202|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    202|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    202|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9107|    202|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (9107:17): [True: 202, False: 0]
  |  |  ------------------
  |  | 9108|    202|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|    202|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9108:21): [True: 0, False: 202]
  |  |  ------------------
  |  | 9109|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9110|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9110:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9111|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9112|      0|                }
  |  | 9113|    202|            }
  |  | 9114|       |            // _LOAD_ATTR_SLOT
  |  | 9115|    202|            {
  |  | 9116|    202|                uint16_t index = read_u16(&this_instr[4].cache);
  |  | 9117|    202|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 9118|    202|                PyObject **addr = (PyObject **)((char *)owner_o + index);
  |  | 9119|    202|                PyObject *attr_o = FT_ATOMIC_LOAD_PTR(*addr);
  |  |  ------------------
  |  |  |  |  145|    202|#define FT_ATOMIC_LOAD_PTR(value) value
  |  |  ------------------
  |  | 9120|    202|                if (attr_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9120:21): [True: 0, False: 202]
  |  |  ------------------
  |  | 9121|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9122|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9122:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9123|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9124|      0|                }
  |  | 9125|       |                #ifdef Py_GIL_DISABLED
  |  | 9126|       |                int increfed = _Py_TryIncrefCompareStackRef(addr, attr_o, &attr);
  |  | 9127|       |                if (!increfed) {
  |  | 9128|       |                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  | 9129|       |                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  | 9130|       |                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  | 9131|       |                }
  |  | 9132|       |                #else
  |  | 9133|    202|                attr = PyStackRef_FromPyObjectNew(attr_o);
  |  |  ------------------
  |  |  |  |  599|    202|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    202|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    202|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9134|    202|                #endif
  |  | 9135|    202|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|    202|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 9136|    202|                o = owner;
  |  | 9137|    202|            }
  |  | 9138|       |            // _POP_TOP
  |  | 9139|      0|            {
  |  | 9140|    202|                value = o;
  |  | 9141|    202|                stack_pointer[-1] = attr;
  |  | 9142|    202|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9143|    202|                PyStackRef_XCLOSE(value);
  |  | 9144|    202|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9145|    202|            }
  |  | 9146|       |            /* Skip 5 cache entries */
  |  | 9147|       |            // _PUSH_NULL_CONDITIONAL
  |  | 9148|    202|            {
  |  | 9149|    202|                null = &stack_pointer[0];
  |  | 9150|    202|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (9150:21): [True: 0, False: 202]
  |  |  ------------------
  |  | 9151|      0|                    null[0] = PyStackRef_NULL;
  |  | 9152|      0|                }
  |  | 9153|    202|            }
  |  | 9154|    202|            stack_pointer += (oparg & 1);
  |  | 9155|    202|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    202|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9156|    202|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    202|    { \
  |  |  |  |  201|    202|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    202|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    202|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    202|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    202|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    202|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    202|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    202|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 202]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    202|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    202|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    202|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    202|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    202|    }
  |  |  ------------------
  |  |  |  Branch (9156:13): [True: 202, False: 0]
  |  |  ------------------
  |  | 9157|    202|        }
  |  | 9158|       |
  |  | 9159|      0|        TARGET(LOAD_ATTR_WITH_HINT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9160|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9161|       |            int opcode = LOAD_ATTR_WITH_HINT;
  |  | 9162|       |            (void)(opcode);
  |  | 9163|       |            #endif
  |  | 9164|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 9165|      0|            (void)this_instr;
  |  | 9166|      0|            frame->instr_ptr = next_instr;
  |  | 9167|      0|            next_instr += 10;
  |  | 9168|      0|            INSTRUCTION_STATS(LOAD_ATTR_WITH_HINT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9169|      0|            static_assert(INLINE_CACHE_ENTRIES_LOAD_ATTR == 9, "incorrect cache size");
  |  | 9170|      0|            _PyStackRef owner;
  |  | 9171|      0|            _PyStackRef attr;
  |  | 9172|      0|            _PyStackRef o;
  |  | 9173|      0|            _PyStackRef value;
  |  | 9174|      0|            _PyStackRef *null;
  |  | 9175|       |            /* Skip 1 cache entry */
  |  | 9176|       |            // _GUARD_TYPE_VERSION
  |  | 9177|      0|            {
  |  | 9178|      0|                owner = stack_pointer[-1];
  |  | 9179|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  | 9180|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9181|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (9181:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9182|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9182:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9183|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9184|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9184:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9185|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9186|      0|                }
  |  | 9187|      0|            }
  |  | 9188|       |            // _LOAD_ATTR_WITH_HINT
  |  | 9189|      0|            {
  |  | 9190|      0|                uint16_t hint = read_u16(&this_instr[4].cache);
  |  | 9191|      0|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  | 9192|      0|                assert(Py_TYPE(owner_o)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  |  |  ------------------
  |  |  |  Branch (9192:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9193|      0|                PyDictObject *dict = _PyObject_GetManagedDict(owner_o);
  |  | 9194|      0|                if (dict == NULL) {
  |  |  ------------------
  |  |  |  Branch (9194:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9195|      0|                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9196|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9196:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9197|      0|                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9198|      0|                }
  |  | 9199|      0|                PyDictKeysObject *dk = FT_ATOMIC_LOAD_PTR(dict->ma_keys);
  |  |  ------------------
  |  |  |  |  145|      0|#define FT_ATOMIC_LOAD_PTR(value) value
  |  |  ------------------
  |  | 9200|      0|                assert(PyDict_CheckExact((PyObject *)dict));
  |  |  ------------------
  |  |  |  Branch (9200:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9201|       |                #ifdef Py_GIL_DISABLED
  |  | 9202|       |                if (!_Py_IsOwnedByCurrentThread((PyObject *)dict) && !_PyObject_GC_IS_SHARED(dict)) {
  |  | 9203|       |                    UPDATE_MISS_STATS(LOAD_ATTR);
  |  | 9204|       |                    assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  | 9205|       |                    JUMP_TO_PREDICTED(LOAD_ATTR);
  |  | 9206|       |                }
  |  | 9207|       |                #endif
  |  | 9208|      0|                PyObject *attr_o;
  |  | 9209|      0|                if (hint >= (size_t)FT_ATOMIC_LOAD_SSIZE_RELAXED(dk->dk_nentries)) {
  |  |  ------------------
  |  |  |  |  149|      0|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9209:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9210|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (9210:25): [True: 0, Folded]
  |  |  ------------------
  |  | 9211|      0|                        UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9212|      0|                        assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9212:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9213|      0|                        JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9214|      0|                    }
  |  | 9215|      0|                }
  |  | 9216|      0|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg>>1);
  |  |  ------------------
  |  |  |  |  235|      0|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9216:34): [True: 0, False: 0]
  |  |  ------------------
  |  | 9217|      0|                if (dk->dk_kind != DICT_KEYS_UNICODE) {
  |  |  ------------------
  |  |  |  Branch (9217:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9218|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (9218:25): [True: 0, Folded]
  |  |  ------------------
  |  | 9219|      0|                        UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9220|      0|                        assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9220:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9221|      0|                        JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9222|      0|                    }
  |  | 9223|      0|                }
  |  | 9224|      0|                PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(dk) + hint;
  |  | 9225|      0|                if (FT_ATOMIC_LOAD_PTR_RELAXED(ep->me_key) != name) {
  |  |  ------------------
  |  |  |  |  153|      0|#define FT_ATOMIC_LOAD_PTR_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9225:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9226|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (9226:25): [True: 0, Folded]
  |  |  ------------------
  |  | 9227|      0|                        UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9228|      0|                        assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9228:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9229|      0|                        JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9230|      0|                    }
  |  | 9231|      0|                }
  |  | 9232|      0|                attr_o = FT_ATOMIC_LOAD_PTR(ep->me_value);
  |  |  ------------------
  |  |  |  |  145|      0|#define FT_ATOMIC_LOAD_PTR(value) value
  |  |  ------------------
  |  | 9233|      0|                if (attr_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9233:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9234|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (9234:25): [True: 0, Folded]
  |  |  ------------------
  |  | 9235|      0|                        UPDATE_MISS_STATS(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9236|      0|                        assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  |  ------------------
  |  |  |  Branch (9236:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9237|      0|                        JUMP_TO_PREDICTED(LOAD_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9238|      0|                    }
  |  | 9239|      0|                }
  |  | 9240|      0|                STAT_INC(LOAD_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 9241|       |                #ifdef Py_GIL_DISABLED
  |  | 9242|       |                int increfed = _Py_TryIncrefCompareStackRef(&ep->me_value, attr_o, &attr);
  |  | 9243|       |                if (!increfed) {
  |  | 9244|       |                    if (true) {
  |  | 9245|       |                        UPDATE_MISS_STATS(LOAD_ATTR);
  |  | 9246|       |                        assert(_PyOpcode_Deopt[opcode] == (LOAD_ATTR));
  |  | 9247|       |                        JUMP_TO_PREDICTED(LOAD_ATTR);
  |  | 9248|       |                    }
  |  | 9249|       |                }
  |  | 9250|       |                #else
  |  | 9251|      0|                attr = PyStackRef_FromPyObjectNew(attr_o);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9252|      0|                #endif
  |  | 9253|      0|                o = owner;
  |  | 9254|      0|            }
  |  | 9255|       |            // _POP_TOP
  |  | 9256|      0|            {
  |  | 9257|      0|                value = o;
  |  | 9258|      0|                stack_pointer[-1] = attr;
  |  | 9259|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9260|      0|                PyStackRef_XCLOSE(value);
  |  | 9261|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9262|      0|            }
  |  | 9263|       |            /* Skip 5 cache entries */
  |  | 9264|       |            // _PUSH_NULL_CONDITIONAL
  |  | 9265|      0|            {
  |  | 9266|      0|                null = &stack_pointer[0];
  |  | 9267|      0|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (9267:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9268|      0|                    null[0] = PyStackRef_NULL;
  |  | 9269|      0|                }
  |  | 9270|      0|            }
  |  | 9271|      0|            stack_pointer += (oparg & 1);
  |  | 9272|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9273|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (9273:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 9274|      0|        }
  |  | 9275|       |
  |  | 9276|    168|        TARGET(LOAD_BUILD_CLASS) {
  |  |  ------------------
  |  |  |  |  132|    168|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9277|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9278|       |            int opcode = LOAD_BUILD_CLASS;
  |  | 9279|       |            (void)(opcode);
  |  | 9280|       |            #endif
  |  | 9281|    168|            frame->instr_ptr = next_instr;
  |  | 9282|    168|            next_instr += 1;
  |  | 9283|    168|            INSTRUCTION_STATS(LOAD_BUILD_CLASS);
  |  |  ------------------
  |  |  |  |   71|    168|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9284|    168|            _PyStackRef bc;
  |  | 9285|    168|            int err;
  |  | 9286|    168|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9287|    168|            PyObject *bc_o = _PyMapping_GetOptionalItem2(BUILTINS(), &_Py_ID(__build_class__), &err);
  |  |  ------------------
  |  |  |  |  326|    168|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  |                           PyObject *bc_o = _PyMapping_GetOptionalItem2(BUILTINS(), &_Py_ID(__build_class__), &err);
  |  |  ------------------
  |  |  |  |  917|    168|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    168|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    168|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9288|    168|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9289|    168|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (9289:17): [True: 0, False: 168]
  |  |  ------------------
  |  | 9290|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9291|      0|            }
  |  | 9292|    168|            if (bc_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9292:17): [True: 0, False: 168]
  |  |  ------------------
  |  | 9293|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9294|      0|                _PyErr_SetString(tstate, PyExc_NameError,
  |  | 9295|      0|                                 "__build_class__ not found");
  |  | 9296|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9297|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9298|      0|            }
  |  | 9299|    168|            bc = PyStackRef_FromPyObjectSteal(bc_o);
  |  | 9300|    168|            stack_pointer[0] = bc;
  |  | 9301|    168|            stack_pointer += 1;
  |  | 9302|    168|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    168|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9303|    168|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    168|    { \
  |  |  |  |  201|    168|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    168|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    168|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    168|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    168|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    168|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    168|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    168|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 168]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    168|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    168|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    168|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    168|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    168|    }
  |  |  ------------------
  |  |  |  Branch (9303:13): [True: 168, False: 0]
  |  |  ------------------
  |  | 9304|    168|        }
  |  | 9305|       |
  |  | 9306|  4.14k|        TARGET(LOAD_COMMON_CONSTANT) {
  |  |  ------------------
  |  |  |  |  132|  4.14k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9307|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9308|       |            int opcode = LOAD_COMMON_CONSTANT;
  |  | 9309|       |            (void)(opcode);
  |  | 9310|       |            #endif
  |  | 9311|  4.14k|            frame->instr_ptr = next_instr;
  |  | 9312|  4.14k|            next_instr += 1;
  |  | 9313|  4.14k|            INSTRUCTION_STATS(LOAD_COMMON_CONSTANT);
  |  |  ------------------
  |  |  |  |   71|  4.14k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9314|  4.14k|            _PyStackRef value;
  |  | 9315|  4.14k|            assert(oparg < NUM_COMMON_CONSTANTS);
  |  |  ------------------
  |  |  |  Branch (9315:13): [True: 4.14k, False: 0]
  |  |  ------------------
  |  | 9316|  4.14k|            value = PyStackRef_FromPyObjectNew(tstate->interp->common_consts[oparg]);
  |  |  ------------------
  |  |  |  |  599|  4.14k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  4.14k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  4.14k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9317|  4.14k|            stack_pointer[0] = value;
  |  | 9318|  4.14k|            stack_pointer += 1;
  |  | 9319|  4.14k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  4.14k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9320|  4.14k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  4.14k|    { \
  |  |  |  |  201|  4.14k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  4.14k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  4.14k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  4.14k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  4.14k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  4.14k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  4.14k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  4.14k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 4.14k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  4.14k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  4.14k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  4.14k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  4.14k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  4.14k|    }
  |  |  ------------------
  |  |  |  Branch (9320:13): [True: 4.14k, False: 0]
  |  |  ------------------
  |  | 9321|  4.14k|        }
  |  | 9322|       |
  |  | 9323|  6.99k|        TARGET(LOAD_CONST) {
  |  |  ------------------
  |  |  |  |  132|  6.99k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9324|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9325|       |            int opcode = LOAD_CONST;
  |  | 9326|       |            (void)(opcode);
  |  | 9327|       |            #endif
  |  | 9328|  6.99k|            frame->instr_ptr = next_instr;
  |  | 9329|  6.99k|            next_instr += 1;
  |  | 9330|  6.99k|            INSTRUCTION_STATS(LOAD_CONST);
  |  |  ------------------
  |  |  |  |   71|  6.99k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9331|  6.99k|            _PyStackRef value;
  |  | 9332|  6.99k|            PyObject *obj = GETITEM(FRAME_CO_CONSTS, oparg);
  |  |  ------------------
  |  |  |  |  235|  6.99k|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|  6.99k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|  6.99k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  6.99k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9332:29): [True: 6.99k, False: 0]
  |  |  ------------------
  |  | 9333|      0|            value = PyStackRef_FromPyObjectBorrow(obj);
  |  | 9334|  6.99k|            stack_pointer[0] = value;
  |  | 9335|  6.99k|            stack_pointer += 1;
  |  | 9336|  6.99k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  6.99k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9337|  6.99k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  6.99k|    { \
  |  |  |  |  201|  6.99k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  6.99k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  6.99k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  6.99k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  6.99k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  6.99k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  6.99k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  6.99k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 6.99k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  6.99k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  6.99k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  6.99k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  6.99k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  6.99k|    }
  |  |  ------------------
  |  |  |  Branch (9337:13): [True: 6.99k, False: 0]
  |  |  ------------------
  |  | 9338|  6.99k|        }
  |  | 9339|       |
  |  | 9340|    382|        TARGET(LOAD_DEREF) {
  |  |  ------------------
  |  |  |  |  132|    382|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9341|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9342|       |            int opcode = LOAD_DEREF;
  |  | 9343|       |            (void)(opcode);
  |  | 9344|       |            #endif
  |  | 9345|    382|            frame->instr_ptr = next_instr;
  |  | 9346|    382|            next_instr += 1;
  |  | 9347|    382|            INSTRUCTION_STATS(LOAD_DEREF);
  |  |  ------------------
  |  |  |  |   71|    382|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9348|    382|            _PyStackRef value;
  |  | 9349|    382|            PyCellObject *cell = (PyCellObject *)PyStackRef_AsPyObjectBorrow(GETLOCAL(oparg));
  |  |  ------------------
  |  |  |  |  284|    382|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9350|    382|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9351|    382|            value = _PyCell_GetStackRef(cell);
  |  | 9352|    382|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9353|    382|            if (PyStackRef_IsNull(value)) {
  |  |  ------------------
  |  |  |  |  470|    382|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|    382|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|    382|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 382]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9354|      0|                stack_pointer[0] = value;
  |  | 9355|      0|                stack_pointer += 1;
  |  | 9356|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9357|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9358|      0|                _PyEval_FormatExcUnbound(tstate, _PyFrame_GetCode(frame), oparg);
  |  | 9359|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9360|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9361|      0|            }
  |  | 9362|    382|            stack_pointer[0] = value;
  |  | 9363|    382|            stack_pointer += 1;
  |  | 9364|    382|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    382|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9365|    382|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    382|    { \
  |  |  |  |  201|    382|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    382|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    382|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    382|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    382|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    382|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    382|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    382|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 382]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    382|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    382|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    382|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    382|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    382|    }
  |  |  ------------------
  |  |  |  Branch (9365:13): [True: 382, False: 0]
  |  |  ------------------
  |  | 9366|    382|        }
  |  | 9367|       |
  |  | 9368|  1.21k|        TARGET(LOAD_FAST) {
  |  |  ------------------
  |  |  |  |  132|  1.21k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9369|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9370|       |            int opcode = LOAD_FAST;
  |  | 9371|       |            (void)(opcode);
  |  | 9372|       |            #endif
  |  | 9373|  1.21k|            frame->instr_ptr = next_instr;
  |  | 9374|  1.21k|            next_instr += 1;
  |  | 9375|  1.21k|            INSTRUCTION_STATS(LOAD_FAST);
  |  |  ------------------
  |  |  |  |   71|  1.21k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9376|  1.21k|            _PyStackRef value;
  |  | 9377|  1.21k|            assert(!PyStackRef_IsNull(GETLOCAL(oparg)));
  |  |  ------------------
  |  |  |  Branch (9377:13): [True: 1.21k, False: 0]
  |  |  ------------------
  |  | 9378|  1.21k|            value = PyStackRef_DUP(GETLOCAL(oparg));
  |  |  ------------------
  |  |  |  |  284|  1.21k|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9379|  1.21k|            stack_pointer[0] = value;
  |  | 9380|  1.21k|            stack_pointer += 1;
  |  | 9381|  1.21k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.21k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9382|  1.21k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.21k|    { \
  |  |  |  |  201|  1.21k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.21k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.21k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.21k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.21k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.21k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.21k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.21k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.21k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.21k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.21k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.21k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.21k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.21k|    }
  |  |  ------------------
  |  |  |  Branch (9382:13): [True: 1.21k, False: 0]
  |  |  ------------------
  |  | 9383|  1.21k|        }
  |  | 9384|       |
  |  | 9385|     92|        TARGET(LOAD_FAST_AND_CLEAR) {
  |  |  ------------------
  |  |  |  |  132|     92|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9386|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9387|       |            int opcode = LOAD_FAST_AND_CLEAR;
  |  | 9388|       |            (void)(opcode);
  |  | 9389|       |            #endif
  |  | 9390|     92|            frame->instr_ptr = next_instr;
  |  | 9391|     92|            next_instr += 1;
  |  | 9392|     92|            INSTRUCTION_STATS(LOAD_FAST_AND_CLEAR);
  |  |  ------------------
  |  |  |  |   71|     92|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9393|     92|            _PyStackRef value;
  |  | 9394|     92|            value = GETLOCAL(oparg);
  |  |  ------------------
  |  |  |  |  284|     92|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9395|     92|            GETLOCAL(oparg) = PyStackRef_NULL;
  |  |  ------------------
  |  |  |  |  284|     92|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9396|     92|            stack_pointer[0] = value;
  |  | 9397|     92|            stack_pointer += 1;
  |  | 9398|     92|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     92|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9399|     92|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     92|    { \
  |  |  |  |  201|     92|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     92|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     92|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     92|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     92|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     92|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     92|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     92|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 92]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     92|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     92|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     92|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     92|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     92|    }
  |  |  ------------------
  |  |  |  Branch (9399:13): [True: 92, False: 0]
  |  |  ------------------
  |  | 9400|     92|        }
  |  | 9401|       |
  |  | 9402|  11.5k|        TARGET(LOAD_FAST_BORROW) {
  |  |  ------------------
  |  |  |  |  132|  11.5k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9403|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9404|       |            int opcode = LOAD_FAST_BORROW;
  |  | 9405|       |            (void)(opcode);
  |  | 9406|       |            #endif
  |  | 9407|  11.5k|            frame->instr_ptr = next_instr;
  |  | 9408|  11.5k|            next_instr += 1;
  |  | 9409|  11.5k|            INSTRUCTION_STATS(LOAD_FAST_BORROW);
  |  |  ------------------
  |  |  |  |   71|  11.5k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9410|  11.5k|            _PyStackRef value;
  |  | 9411|  11.5k|            assert(!PyStackRef_IsNull(GETLOCAL(oparg)));
  |  |  ------------------
  |  |  |  Branch (9411:13): [True: 11.5k, False: 0]
  |  |  ------------------
  |  | 9412|  11.5k|            value = PyStackRef_Borrow(GETLOCAL(oparg));
  |  |  ------------------
  |  |  |  |  284|  11.5k|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9413|  11.5k|            stack_pointer[0] = value;
  |  | 9414|  11.5k|            stack_pointer += 1;
  |  | 9415|  11.5k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  11.5k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9416|  11.5k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  11.5k|    { \
  |  |  |  |  201|  11.5k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  11.5k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  11.5k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  11.5k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  11.5k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  11.5k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  11.5k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  11.5k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 11.5k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  11.5k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  11.5k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  11.5k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  11.5k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  11.5k|    }
  |  |  ------------------
  |  |  |  Branch (9416:13): [True: 11.5k, False: 0]
  |  |  ------------------
  |  | 9417|  11.5k|        }
  |  | 9418|       |
  |  | 9419|  2.54k|        TARGET(LOAD_FAST_BORROW_LOAD_FAST_BORROW) {
  |  |  ------------------
  |  |  |  |  132|  2.54k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9420|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9421|       |            int opcode = LOAD_FAST_BORROW_LOAD_FAST_BORROW;
  |  | 9422|       |            (void)(opcode);
  |  | 9423|       |            #endif
  |  | 9424|  2.54k|            frame->instr_ptr = next_instr;
  |  | 9425|  2.54k|            next_instr += 1;
  |  | 9426|  2.54k|            INSTRUCTION_STATS(LOAD_FAST_BORROW_LOAD_FAST_BORROW);
  |  |  ------------------
  |  |  |  |   71|  2.54k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9427|  2.54k|            _PyStackRef value1;
  |  | 9428|  2.54k|            _PyStackRef value2;
  |  | 9429|  2.54k|            uint32_t oparg1 = oparg >> 4;
  |  | 9430|  2.54k|            uint32_t oparg2 = oparg & 15;
  |  | 9431|  2.54k|            value1 = PyStackRef_Borrow(GETLOCAL(oparg1));
  |  |  ------------------
  |  |  |  |  284|  2.54k|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9432|  2.54k|            value2 = PyStackRef_Borrow(GETLOCAL(oparg2));
  |  |  ------------------
  |  |  |  |  284|  2.54k|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9433|  2.54k|            stack_pointer[0] = value1;
  |  | 9434|  2.54k|            stack_pointer[1] = value2;
  |  | 9435|  2.54k|            stack_pointer += 2;
  |  | 9436|  2.54k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  2.54k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9437|  2.54k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  2.54k|    { \
  |  |  |  |  201|  2.54k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  2.54k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  2.54k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  2.54k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  2.54k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  2.54k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  2.54k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  2.54k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2.54k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  2.54k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  2.54k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  2.54k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  2.54k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  2.54k|    }
  |  |  ------------------
  |  |  |  Branch (9437:13): [True: 2.54k, False: 0]
  |  |  ------------------
  |  | 9438|  2.54k|        }
  |  | 9439|       |
  |  | 9440|     94|        TARGET(LOAD_FAST_CHECK) {
  |  |  ------------------
  |  |  |  |  132|     94|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9441|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9442|       |            int opcode = LOAD_FAST_CHECK;
  |  | 9443|       |            (void)(opcode);
  |  | 9444|       |            #endif
  |  | 9445|     94|            frame->instr_ptr = next_instr;
  |  | 9446|     94|            next_instr += 1;
  |  | 9447|     94|            INSTRUCTION_STATS(LOAD_FAST_CHECK);
  |  |  ------------------
  |  |  |  |   71|     94|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9448|     94|            _PyStackRef value;
  |  | 9449|     94|            _PyStackRef value_s = GETLOCAL(oparg);
  |  |  ------------------
  |  |  |  |  284|     94|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9450|     94|            if (PyStackRef_IsNull(value_s)) {
  |  |  ------------------
  |  |  |  |  470|     94|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|     94|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|     94|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 94]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9451|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9452|      0|                _PyEval_FormatExcCheckArg(tstate, PyExc_UnboundLocalError,
  |  | 9453|      0|                    UNBOUNDLOCAL_ERROR_MSG,
  |  |  ------------------
  |  |  |  |  380|      0|    "cannot access local variable '%s' where it is not associated with a value"
  |  |  ------------------
  |  | 9454|      0|                    PyTuple_GetItem(_PyFrame_GetCode(frame)->co_localsplusnames, oparg)
  |  | 9455|      0|                );
  |  | 9456|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9457|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9458|      0|            }
  |  | 9459|     94|            value = PyStackRef_DUP(value_s);
  |  | 9460|     94|            stack_pointer[0] = value;
  |  | 9461|     94|            stack_pointer += 1;
  |  | 9462|     94|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     94|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9463|     94|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     94|    { \
  |  |  |  |  201|     94|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     94|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     94|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     94|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     94|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     94|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     94|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     94|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 94]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     94|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     94|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     94|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     94|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     94|    }
  |  |  ------------------
  |  |  |  Branch (9463:13): [True: 94, False: 0]
  |  |  ------------------
  |  | 9464|     94|        }
  |  | 9465|       |
  |  | 9466|      2|        TARGET(LOAD_FAST_LOAD_FAST) {
  |  |  ------------------
  |  |  |  |  132|      2|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9467|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9468|       |            int opcode = LOAD_FAST_LOAD_FAST;
  |  | 9469|       |            (void)(opcode);
  |  | 9470|       |            #endif
  |  | 9471|      2|            frame->instr_ptr = next_instr;
  |  | 9472|      2|            next_instr += 1;
  |  | 9473|      2|            INSTRUCTION_STATS(LOAD_FAST_LOAD_FAST);
  |  |  ------------------
  |  |  |  |   71|      2|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9474|      2|            _PyStackRef value1;
  |  | 9475|      2|            _PyStackRef value2;
  |  | 9476|      2|            uint32_t oparg1 = oparg >> 4;
  |  | 9477|      2|            uint32_t oparg2 = oparg & 15;
  |  | 9478|      2|            value1 = PyStackRef_DUP(GETLOCAL(oparg1));
  |  |  ------------------
  |  |  |  |  284|      2|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9479|      2|            value2 = PyStackRef_DUP(GETLOCAL(oparg2));
  |  |  ------------------
  |  |  |  |  284|      2|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9480|      2|            stack_pointer[0] = value1;
  |  | 9481|      2|            stack_pointer[1] = value2;
  |  | 9482|      2|            stack_pointer += 2;
  |  | 9483|      2|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      2|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9484|      2|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      2|    { \
  |  |  |  |  201|      2|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      2|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      2|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      2|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      2|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      2|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      2|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      2|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      2|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      2|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      2|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      2|    }
  |  |  ------------------
  |  |  |  Branch (9484:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 9485|      2|        }
  |  | 9486|       |
  |  | 9487|      0|        TARGET(LOAD_FROM_DICT_OR_DEREF) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9488|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9489|       |            int opcode = LOAD_FROM_DICT_OR_DEREF;
  |  | 9490|       |            (void)(opcode);
  |  | 9491|       |            #endif
  |  | 9492|      0|            frame->instr_ptr = next_instr;
  |  | 9493|      0|            next_instr += 1;
  |  | 9494|      0|            INSTRUCTION_STATS(LOAD_FROM_DICT_OR_DEREF);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9495|      0|            _PyStackRef class_dict_st;
  |  | 9496|      0|            _PyStackRef value;
  |  | 9497|      0|            class_dict_st = stack_pointer[-1];
  |  | 9498|      0|            PyObject *name;
  |  | 9499|      0|            PyObject *class_dict = PyStackRef_AsPyObjectBorrow(class_dict_st);
  |  | 9500|      0|            assert(class_dict);
  |  |  ------------------
  |  |  |  Branch (9500:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 9501|      0|            assert(oparg >= 0 && oparg < _PyFrame_GetCode(frame)->co_nlocalsplus);
  |  |  ------------------
  |  |  |  Branch (9501:13): [True: 0, False: 0]
  |  |  |  Branch (9501:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 9502|      0|            name = PyTuple_GET_ITEM(_PyFrame_GetCode(frame)->co_localsplusnames, oparg);
  |  |  ------------------
  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9502:20): [True: 0, False: 0]
  |  |  ------------------
  |  | 9503|      0|            int err;
  |  | 9504|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9505|      0|            PyObject* value_o = _PyMapping_GetOptionalItem2(class_dict, name, &err);
  |  | 9506|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9507|      0|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (9507:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9508|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9509|      0|            }
  |  | 9510|      0|            if (!value_o) {
  |  |  ------------------
  |  |  |  Branch (9510:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9511|      0|                PyCellObject *cell = (PyCellObject *)PyStackRef_AsPyObjectBorrow(GETLOCAL(oparg));
  |  |  ------------------
  |  |  |  |  284|      0|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  | 9512|      0|                value_o = PyCell_GetRef(cell);
  |  | 9513|      0|                if (value_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9513:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9514|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9515|      0|                    _PyEval_FormatExcUnbound(tstate, _PyFrame_GetCode(frame), oparg);
  |  | 9516|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9517|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9518|      0|                }
  |  | 9519|      0|            }
  |  | 9520|      0|            stack_pointer += -1;
  |  | 9521|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9522|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9523|      0|            PyStackRef_CLOSE(class_dict_st);
  |  | 9524|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9525|      0|            value = PyStackRef_FromPyObjectSteal(value_o);
  |  | 9526|      0|            stack_pointer[0] = value;
  |  | 9527|      0|            stack_pointer += 1;
  |  | 9528|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9529|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (9529:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 9530|      0|        }
  |  | 9531|       |
  |  | 9532|      0|        TARGET(LOAD_FROM_DICT_OR_GLOBALS) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9533|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9534|       |            int opcode = LOAD_FROM_DICT_OR_GLOBALS;
  |  | 9535|       |            (void)(opcode);
  |  | 9536|       |            #endif
  |  | 9537|      0|            frame->instr_ptr = next_instr;
  |  | 9538|      0|            next_instr += 1;
  |  | 9539|      0|            INSTRUCTION_STATS(LOAD_FROM_DICT_OR_GLOBALS);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9540|      0|            _PyStackRef mod_or_class_dict;
  |  | 9541|      0|            _PyStackRef v;
  |  | 9542|      0|            mod_or_class_dict = stack_pointer[-1];
  |  | 9543|      0|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|      0|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9543:30): [True: 0, False: 0]
  |  |  ------------------
  |  | 9544|      0|            int err;
  |  | 9545|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9546|      0|            PyObject *v_o = _PyMapping_GetOptionalItem2(PyStackRef_AsPyObjectBorrow(mod_or_class_dict), name, &err);
  |  | 9547|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9548|      0|            stack_pointer += -1;
  |  | 9549|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9550|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9551|      0|            PyStackRef_CLOSE(mod_or_class_dict);
  |  | 9552|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9553|      0|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (9553:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9554|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9555|      0|            }
  |  | 9556|      0|            if (v_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9556:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 9557|      0|                if (PyDict_CheckExact(GLOBALS())
  |  |  ------------------
  |  |  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9558|      0|                    && PyDict_CheckExact(BUILTINS()))
  |  |  ------------------
  |  |  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9559|      0|                {
  |  | 9560|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9561|      0|                    v_o = _PyDict_LoadGlobal((PyDictObject *)GLOBALS(),
  |  |  ------------------
  |  |  |  |  325|      0|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 9562|      0|                        (PyDictObject *)BUILTINS(),
  |  |  ------------------
  |  |  |  |  326|      0|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  | 9563|      0|                        name);
  |  | 9564|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9565|      0|                    if (v_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9565:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9566|      0|                        if (!_PyErr_Occurred(tstate)) {
  |  |  ------------------
  |  |  |  Branch (9566:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 9567|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9568|      0|                            _PyEval_FormatExcCheckArg(tstate, PyExc_NameError,
  |  | 9569|      0|                                NAME_ERROR_MSG, name);
  |  |  ------------------
  |  |  |  |  384|      0|#define NAME_ERROR_MSG "name '%.200s' is not defined"
  |  |  ------------------
  |  | 9570|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9571|      0|                        }
  |  | 9572|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9573|      0|                    }
  |  | 9574|      0|                    if (PyLazyImport_CheckExact(v_o)) {
  |  |  ------------------
  |  |  |  |   15|      0|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9575|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9576|      0|                        PyObject *l_v = _PyImport_LoadLazyImportTstate(tstate, v_o);
  |  | 9577|      0|                        Py_SETREF(v_o, l_v);
  |  |  ------------------
  |  |  |  |  352|      0|    do { \
  |  |  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  357|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9578|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9579|      0|                        if (v_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9579:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 9580|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9581|      0|                        }
  |  | 9582|      0|                    }
  |  | 9583|      0|                }
  |  | 9584|      0|                else {
  |  | 9585|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9586|      0|                    v_o = _PyMapping_GetOptionalItem2(GLOBALS(), name, &err);
  |  |  ------------------
  |  |  |  |  325|      0|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 9587|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9588|      0|                    if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (9588:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9589|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9590|      0|                    }
  |  | 9591|      0|                    if (v_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9591:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9592|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9593|      0|                        v_o = _PyMapping_GetOptionalItem2(BUILTINS(), name, &err);
  |  |  ------------------
  |  |  |  |  326|      0|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  | 9594|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9595|      0|                        if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (9595:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 9596|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9597|      0|                        }
  |  | 9598|      0|                        if (v_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9598:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 9599|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9600|      0|                            _PyEval_FormatExcCheckArg(
  |  | 9601|      0|                                tstate, PyExc_NameError,
  |  | 9602|      0|                                NAME_ERROR_MSG, name);
  |  |  ------------------
  |  |  |  |  384|      0|#define NAME_ERROR_MSG "name '%.200s' is not defined"
  |  |  ------------------
  |  | 9603|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9604|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9605|      0|                        }
  |  | 9606|      0|                    }
  |  | 9607|      0|                    if (PyLazyImport_CheckExact(v_o)) {
  |  |  ------------------
  |  |  |  |   15|      0|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9608|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9609|      0|                        PyObject *l_v = _PyImport_LoadLazyImportTstate(tstate, v_o);
  |  | 9610|      0|                        Py_SETREF(v_o, l_v);
  |  |  ------------------
  |  |  |  |  352|      0|    do { \
  |  |  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  357|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9611|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9612|      0|                        if (v_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9612:29): [True: 0, False: 0]
  |  |  ------------------
  |  | 9613|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9614|      0|                        }
  |  | 9615|      0|                    }
  |  | 9616|      0|                }
  |  | 9617|      0|            }
  |  | 9618|      0|            v = PyStackRef_FromPyObjectSteal(v_o);
  |  | 9619|      0|            stack_pointer[0] = v;
  |  | 9620|      0|            stack_pointer += 1;
  |  | 9621|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9622|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (9622:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 9623|      0|        }
  |  | 9624|       |
  |  | 9625|  1.31k|        TARGET(LOAD_GLOBAL) {
  |  |  ------------------
  |  |  |  |  132|  1.31k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9626|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9627|       |            int opcode = LOAD_GLOBAL;
  |  | 9628|       |            (void)(opcode);
  |  | 9629|       |            #endif
  |  | 9630|  1.31k|            frame->instr_ptr = next_instr;
  |  | 9631|  1.31k|            next_instr += 5;
  |  | 9632|  1.31k|            INSTRUCTION_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |   71|  1.31k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9633|  2.32k|            PREDICTED_LOAD_GLOBAL:;
  |  | 9634|  2.32k|            _Py_CODEUNIT* const this_instr = next_instr - 5;
  |  | 9635|  2.32k|            (void)this_instr;
  |  | 9636|  2.32k|            _PyStackRef *res;
  |  | 9637|  2.32k|            _PyStackRef *null;
  |  | 9638|       |            // _SPECIALIZE_LOAD_GLOBAL
  |  | 9639|  2.32k|            {
  |  | 9640|  2.32k|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 9641|  2.32k|                (void)counter;
  |  | 9642|  2.32k|                #if ENABLE_SPECIALIZATION
  |  | 9643|  2.32k|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|  2.32k|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 424, False: 1.89k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9644|    424|                    PyObject *name = GETITEM(FRAME_CO_NAMES, oparg>>1);
  |  |  ------------------
  |  |  |  |  235|    424|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|    424|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|    424|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    424|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9644:38): [True: 424, False: 0]
  |  |  ------------------
  |  | 9645|      0|                    next_instr = this_instr;
  |  | 9646|    424|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9647|    424|                    _Py_Specialize_LoadGlobal(GLOBALS(), BUILTINS(), next_instr, name);
  |  |  ------------------
  |  |  |  |  325|    424|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  |                                   _Py_Specialize_LoadGlobal(GLOBALS(), BUILTINS(), next_instr, name);
  |  |  ------------------
  |  |  |  |  326|    424|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  | 9648|    424|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9649|    424|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|    424|    { \
  |  |  |  |  217|    424|        opcode = next_instr->op.code; \
  |  |  |  |  218|    424|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    424|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|    424|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|    424|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|    424|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|    424|    }
  |  |  ------------------
  |  | 9650|    424|                }
  |  | 9651|  2.32k|                OPCODE_DEFERRED_INC(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |   90|  2.32k|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 9652|  2.32k|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|  2.32k|    do { \
  |  |  |  |  358|  2.32k|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|  2.32k|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 2.32k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9653|  2.32k|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 9654|  2.32k|            }
  |  | 9655|       |            /* Skip 1 cache entry */
  |  | 9656|       |            /* Skip 1 cache entry */
  |  | 9657|       |            /* Skip 1 cache entry */
  |  | 9658|       |            // _LOAD_GLOBAL
  |  | 9659|      0|            {
  |  | 9660|  2.32k|                res = &stack_pointer[0];
  |  | 9661|  2.32k|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg>>1);
  |  |  ------------------
  |  |  |  |  235|  2.32k|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|  2.32k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|  2.32k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.89k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9661:34): [True: 1.89k, False: 424]
  |  |  ------------------
  |  | 9662|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9663|  1.89k|                _PyEval_LoadGlobalStackRef(GLOBALS(), BUILTINS(), name, res);
  |  |  ------------------
  |  |  |  |  325|  1.89k|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  |                               _PyEval_LoadGlobalStackRef(GLOBALS(), BUILTINS(), name, res);
  |  |  ------------------
  |  |  |  |  326|  1.89k|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  | 9664|  1.89k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9665|  1.89k|                if (PyStackRef_IsNull(*res)) {
  |  |  ------------------
  |  |  |  |  470|  1.89k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|  1.89k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  1.89k|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 1.89k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9666|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9667|      0|                }
  |  | 9668|  1.89k|            }
  |  | 9669|       |            // _PUSH_NULL_CONDITIONAL
  |  | 9670|  1.89k|            {
  |  | 9671|  1.89k|                null = &stack_pointer[1];
  |  | 9672|  1.89k|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (9672:21): [True: 976, False: 922]
  |  |  ------------------
  |  | 9673|    976|                    null[0] = PyStackRef_NULL;
  |  | 9674|    976|                }
  |  | 9675|  1.89k|            }
  |  | 9676|  1.89k|            stack_pointer += 1 + (oparg & 1);
  |  | 9677|  1.89k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.89k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9678|  1.89k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.89k|    { \
  |  |  |  |  201|  1.89k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.89k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.89k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.89k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.89k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.89k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.89k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.89k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.89k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.89k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.89k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.89k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.89k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.89k|    }
  |  |  ------------------
  |  |  |  Branch (9678:13): [True: 1.89k, False: 0]
  |  |  ------------------
  |  | 9679|  1.89k|        }
  |  | 9680|       |
  |  | 9681|  1.50k|        TARGET(LOAD_GLOBAL_BUILTIN) {
  |  |  ------------------
  |  |  |  |  132|  1.50k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9682|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9683|       |            int opcode = LOAD_GLOBAL_BUILTIN;
  |  | 9684|       |            (void)(opcode);
  |  | 9685|       |            #endif
  |  | 9686|  1.50k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 9687|  1.50k|            (void)this_instr;
  |  | 9688|  1.50k|            frame->instr_ptr = next_instr;
  |  | 9689|  1.50k|            next_instr += 5;
  |  | 9690|  1.50k|            INSTRUCTION_STATS(LOAD_GLOBAL_BUILTIN);
  |  |  ------------------
  |  |  |  |   71|  1.50k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9691|  1.50k|            static_assert(INLINE_CACHE_ENTRIES_LOAD_GLOBAL == 4, "incorrect cache size");
  |  | 9692|  1.50k|            _PyStackRef res;
  |  | 9693|  1.50k|            _PyStackRef *null;
  |  | 9694|       |            /* Skip 1 cache entry */
  |  | 9695|       |            // _GUARD_GLOBALS_VERSION
  |  | 9696|  1.50k|            {
  |  | 9697|  1.50k|                uint16_t version = read_u16(&this_instr[2].cache);
  |  | 9698|  1.50k|                PyDictObject *dict = (PyDictObject *)GLOBALS();
  |  |  ------------------
  |  |  |  |  325|  1.50k|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 9699|  1.50k|                if (!PyDict_CheckExact(dict)) {
  |  |  ------------------
  |  |  |  |   19|  1.50k|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  1.50k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  1.50k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.50k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9699:21): [True: 0, False: 1.50k]
  |  |  ------------------
  |  | 9700|      0|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9701|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9701:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9702|      0|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9703|      0|                }
  |  | 9704|  1.50k|                PyDictKeysObject *keys = FT_ATOMIC_LOAD_PTR_ACQUIRE(dict->ma_keys);
  |  |  ------------------
  |  |  |  |  150|  1.50k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 9705|  1.50k|                if (FT_ATOMIC_LOAD_UINT32_RELAXED(keys->dk_version) != version) {
  |  |  ------------------
  |  |  |  |  159|  1.50k|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9705:21): [True: 364, False: 1.14k]
  |  |  ------------------
  |  | 9706|    364|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|    364|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9707|    364|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9707:21): [True: 364, False: 0]
  |  |  ------------------
  |  | 9708|    364|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|    364|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9709|      0|                }
  |  | 9710|  1.50k|                assert(keys->dk_kind == DICT_KEYS_UNICODE);
  |  |  ------------------
  |  |  |  Branch (9710:17): [True: 1.14k, False: 0]
  |  |  ------------------
  |  | 9711|  1.14k|            }
  |  | 9712|       |            // _LOAD_GLOBAL_BUILTINS
  |  | 9713|  1.14k|            {
  |  | 9714|  1.14k|                uint16_t version = read_u16(&this_instr[3].cache);
  |  | 9715|  1.14k|                uint16_t index = read_u16(&this_instr[4].cache);
  |  | 9716|  1.14k|                PyDictObject *dict = (PyDictObject *)BUILTINS();
  |  |  ------------------
  |  |  |  |  326|  1.14k|#define BUILTINS() frame->f_builtins
  |  |  ------------------
  |  | 9717|  1.14k|                if (!PyDict_CheckExact(dict)) {
  |  |  ------------------
  |  |  |  |   19|  1.14k|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  1.14k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  1.14k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.14k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9717:21): [True: 0, False: 1.14k]
  |  |  ------------------
  |  | 9718|      0|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9719|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9719:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9720|      0|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9721|      0|                }
  |  | 9722|  1.14k|                PyDictKeysObject *keys = FT_ATOMIC_LOAD_PTR_ACQUIRE(dict->ma_keys);
  |  |  ------------------
  |  |  |  |  150|  1.14k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 9723|  1.14k|                if (FT_ATOMIC_LOAD_UINT32_RELAXED(keys->dk_version) != version) {
  |  |  ------------------
  |  |  |  |  159|  1.14k|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9723:21): [True: 426, False: 718]
  |  |  ------------------
  |  | 9724|    426|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|    426|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9725|    426|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9725:21): [True: 426, False: 0]
  |  |  ------------------
  |  | 9726|    426|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|    426|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9727|      0|                }
  |  | 9728|  1.14k|                assert(keys->dk_kind == DICT_KEYS_UNICODE);
  |  |  ------------------
  |  |  |  Branch (9728:17): [True: 718, False: 0]
  |  |  ------------------
  |  | 9729|    718|                PyDictUnicodeEntry *entries = DK_UNICODE_ENTRIES(keys);
  |  | 9730|    718|                PyObject *res_o = FT_ATOMIC_LOAD_PTR_RELAXED(entries[index].me_value);
  |  |  ------------------
  |  |  |  |  153|    718|#define FT_ATOMIC_LOAD_PTR_RELAXED(value) value
  |  |  ------------------
  |  | 9731|    718|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9731:21): [True: 0, False: 718]
  |  |  ------------------
  |  | 9732|      0|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9733|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9733:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9734|      0|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9735|      0|                }
  |  | 9736|       |                #if Py_GIL_DISABLED
  |  | 9737|       |                int increfed = _Py_TryIncrefCompareStackRef(&entries[index].me_value, res_o, &res);
  |  | 9738|       |                if (!increfed) {
  |  | 9739|       |                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  | 9740|       |                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  | 9741|       |                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  | 9742|       |                }
  |  | 9743|       |                #else
  |  | 9744|    718|                res = PyStackRef_FromPyObjectNew(res_o);
  |  |  ------------------
  |  |  |  |  599|    718|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    718|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    718|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9745|    718|                #endif
  |  | 9746|    718|                STAT_INC(LOAD_GLOBAL, hit);
  |  |  ------------------
  |  |  |  |   73|    718|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 9747|    718|            }
  |  | 9748|       |            // _PUSH_NULL_CONDITIONAL
  |  | 9749|      0|            {
  |  | 9750|    718|                null = &stack_pointer[1];
  |  | 9751|    718|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (9751:21): [True: 464, False: 254]
  |  |  ------------------
  |  | 9752|    464|                    null[0] = PyStackRef_NULL;
  |  | 9753|    464|                }
  |  | 9754|    718|            }
  |  | 9755|    718|            stack_pointer[0] = res;
  |  | 9756|    718|            stack_pointer += 1 + (oparg & 1);
  |  | 9757|    718|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    718|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9758|    718|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    718|    { \
  |  |  |  |  201|    718|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    718|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    718|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    718|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    718|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    718|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    718|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    718|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 718]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    718|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    718|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    718|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    718|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    718|    }
  |  |  ------------------
  |  |  |  Branch (9758:13): [True: 718, False: 0]
  |  |  ------------------
  |  | 9759|    718|        }
  |  | 9760|       |
  |  | 9761|  4.33k|        TARGET(LOAD_GLOBAL_MODULE) {
  |  |  ------------------
  |  |  |  |  132|  4.33k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9762|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9763|       |            int opcode = LOAD_GLOBAL_MODULE;
  |  | 9764|       |            (void)(opcode);
  |  | 9765|       |            #endif
  |  | 9766|  4.33k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  | 9767|  4.33k|            (void)this_instr;
  |  | 9768|  4.33k|            frame->instr_ptr = next_instr;
  |  | 9769|  4.33k|            next_instr += 5;
  |  | 9770|  4.33k|            INSTRUCTION_STATS(LOAD_GLOBAL_MODULE);
  |  |  ------------------
  |  |  |  |   71|  4.33k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9771|  4.33k|            static_assert(INLINE_CACHE_ENTRIES_LOAD_GLOBAL == 4, "incorrect cache size");
  |  | 9772|  4.33k|            _PyStackRef res;
  |  | 9773|  4.33k|            _PyStackRef *null;
  |  | 9774|       |            /* Skip 1 cache entry */
  |  | 9775|       |            // _NOP
  |  | 9776|  4.33k|            {
  |  | 9777|  4.33k|            }
  |  | 9778|       |            // _LOAD_GLOBAL_MODULE
  |  | 9779|  4.33k|            {
  |  | 9780|  4.33k|                uint16_t version = read_u16(&this_instr[2].cache);
  |  | 9781|  4.33k|                uint16_t index = read_u16(&this_instr[4].cache);
  |  | 9782|  4.33k|                PyDictObject *dict = (PyDictObject *)GLOBALS();
  |  |  ------------------
  |  |  |  |  325|  4.33k|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 9783|  4.33k|                if (!PyDict_CheckExact(dict)) {
  |  |  ------------------
  |  |  |  |   19|  4.33k|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  4.33k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  4.33k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  4.33k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9783:21): [True: 0, False: 4.33k]
  |  |  ------------------
  |  | 9784|      0|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9785|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9785:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9786|      0|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9787|      0|                }
  |  | 9788|  4.33k|                PyDictKeysObject *keys = FT_ATOMIC_LOAD_PTR_ACQUIRE(dict->ma_keys);
  |  |  ------------------
  |  |  |  |  150|  4.33k|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  |  |  ------------------
  |  | 9789|  4.33k|                if (FT_ATOMIC_LOAD_UINT32_RELAXED(keys->dk_version) != version) {
  |  |  ------------------
  |  |  |  |  159|  4.33k|#define FT_ATOMIC_LOAD_UINT32_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (9789:21): [True: 222, False: 4.11k]
  |  |  ------------------
  |  | 9790|    222|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|    222|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9791|    222|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9791:21): [True: 222, False: 0]
  |  |  ------------------
  |  | 9792|    222|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|    222|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9793|      0|                }
  |  | 9794|  4.33k|                assert(keys->dk_kind == DICT_KEYS_UNICODE);
  |  |  ------------------
  |  |  |  Branch (9794:17): [True: 4.11k, False: 0]
  |  |  ------------------
  |  | 9795|  4.11k|                PyDictUnicodeEntry *entries = DK_UNICODE_ENTRIES(keys);
  |  | 9796|  4.11k|                assert(index < DK_SIZE(keys));
  |  |  ------------------
  |  |  |  Branch (9796:17): [True: 4.11k, False: 0]
  |  |  ------------------
  |  | 9797|  4.11k|                PyObject *res_o = FT_ATOMIC_LOAD_PTR_RELAXED(entries[index].me_value);
  |  |  ------------------
  |  |  |  |  153|  4.11k|#define FT_ATOMIC_LOAD_PTR_RELAXED(value) value
  |  |  ------------------
  |  | 9798|  4.11k|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9798:21): [True: 0, False: 4.11k]
  |  |  ------------------
  |  | 9799|      0|                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  | 9800|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  |  ------------------
  |  |  |  Branch (9800:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9801|      0|                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  | 9802|      0|                }
  |  | 9803|       |                #if Py_GIL_DISABLED
  |  | 9804|       |                int increfed = _Py_TryIncrefCompareStackRef(&entries[index].me_value, res_o, &res);
  |  | 9805|       |                if (!increfed) {
  |  | 9806|       |                    UPDATE_MISS_STATS(LOAD_GLOBAL);
  |  | 9807|       |                    assert(_PyOpcode_Deopt[opcode] == (LOAD_GLOBAL));
  |  | 9808|       |                    JUMP_TO_PREDICTED(LOAD_GLOBAL);
  |  | 9809|       |                }
  |  | 9810|       |                #else
  |  | 9811|  4.11k|                res = PyStackRef_FromPyObjectNew(res_o);
  |  |  ------------------
  |  |  |  |  599|  4.11k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  4.11k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  4.11k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9812|  4.11k|                #endif
  |  | 9813|  4.11k|                STAT_INC(LOAD_GLOBAL, hit);
  |  |  ------------------
  |  |  |  |   73|  4.11k|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  | 9814|  4.11k|            }
  |  | 9815|       |            // _PUSH_NULL_CONDITIONAL
  |  | 9816|      0|            {
  |  | 9817|  4.11k|                null = &stack_pointer[1];
  |  | 9818|  4.11k|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (9818:21): [True: 1.25k, False: 2.85k]
  |  |  ------------------
  |  | 9819|  1.25k|                    null[0] = PyStackRef_NULL;
  |  | 9820|  1.25k|                }
  |  | 9821|  4.11k|            }
  |  | 9822|  4.11k|            stack_pointer[0] = res;
  |  | 9823|  4.11k|            stack_pointer += 1 + (oparg & 1);
  |  | 9824|  4.11k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  4.11k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9825|  4.11k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  4.11k|    { \
  |  |  |  |  201|  4.11k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  4.11k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  4.11k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  4.11k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  4.11k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  4.11k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  4.11k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  4.11k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 4.11k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  4.11k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  4.11k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  4.11k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  4.11k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  4.11k|    }
  |  |  ------------------
  |  |  |  Branch (9825:13): [True: 4.11k, False: 0]
  |  |  ------------------
  |  | 9826|  4.11k|        }
  |  | 9827|       |
  |  | 9828|    148|        TARGET(LOAD_LOCALS) {
  |  |  ------------------
  |  |  |  |  132|    148|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9829|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9830|       |            int opcode = LOAD_LOCALS;
  |  | 9831|       |            (void)(opcode);
  |  | 9832|       |            #endif
  |  | 9833|    148|            frame->instr_ptr = next_instr;
  |  | 9834|    148|            next_instr += 1;
  |  | 9835|    148|            INSTRUCTION_STATS(LOAD_LOCALS);
  |  |  ------------------
  |  |  |  |   71|    148|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9836|    148|            _PyStackRef locals;
  |  | 9837|    148|            PyObject *l = LOCALS();
  |  |  ------------------
  |  |  |  |  327|    148|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  | 9838|    148|            if (l == NULL) {
  |  |  ------------------
  |  |  |  Branch (9838:17): [True: 0, False: 148]
  |  |  ------------------
  |  | 9839|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9840|      0|                _PyErr_SetString(tstate, PyExc_SystemError,
  |  | 9841|      0|                                 "no locals found");
  |  | 9842|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9843|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9844|      0|            }
  |  | 9845|    148|            locals = PyStackRef_FromPyObjectNew(l);
  |  |  ------------------
  |  |  |  |  599|    148|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    148|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    148|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9846|    148|            stack_pointer[0] = locals;
  |  | 9847|    148|            stack_pointer += 1;
  |  | 9848|    148|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    148|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9849|    148|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    148|    { \
  |  |  |  |  201|    148|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    148|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    148|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    148|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    148|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    148|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    148|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    148|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 148]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    148|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    148|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    148|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    148|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    148|    }
  |  |  ------------------
  |  |  |  Branch (9849:13): [True: 148, False: 0]
  |  |  ------------------
  |  | 9850|    148|        }
  |  | 9851|       |
  |  | 9852|  1.67k|        TARGET(LOAD_NAME) {
  |  |  ------------------
  |  |  |  |  132|  1.67k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9853|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9854|       |            int opcode = LOAD_NAME;
  |  | 9855|       |            (void)(opcode);
  |  | 9856|       |            #endif
  |  | 9857|  1.67k|            frame->instr_ptr = next_instr;
  |  | 9858|  1.67k|            next_instr += 1;
  |  | 9859|  1.67k|            INSTRUCTION_STATS(LOAD_NAME);
  |  |  ------------------
  |  |  |  |   71|  1.67k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9860|  1.67k|            _PyStackRef v;
  |  | 9861|  1.67k|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|  1.67k|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|  1.67k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|  1.67k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.67k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (9861:30): [True: 1.67k, False: 0]
  |  |  ------------------
  |  | 9862|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9863|  1.67k|            PyObject *v_o = _PyEval_LoadName(tstate, frame, name);
  |  | 9864|  1.67k|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9865|  1.67k|            if (v_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (9865:17): [True: 0, False: 1.67k]
  |  |  ------------------
  |  | 9866|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9867|      0|            }
  |  | 9868|  1.67k|            if (PyLazyImport_CheckExact(v_o)) {
  |  |  ------------------
  |  |  |  |   15|  1.67k|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  1.67k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  1.67k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.67k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 1.67k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9869|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9870|      0|                PyObject *l_v = _PyImport_LoadLazyImportTstate(tstate, v_o);
  |  | 9871|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9872|      0|                if (l_v == NULL) {
  |  |  ------------------
  |  |  |  Branch (9872:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9873|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9874|      0|                    Py_DECREF(v_o);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9875|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9876|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9877|      0|                }
  |  | 9878|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9879|      0|                int err = PyDict_SetItem(GLOBALS(), name, l_v);
  |  |  ------------------
  |  |  |  |  325|      0|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  | 9880|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9881|      0|                if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (9881:21): [True: 0, False: 0]
  |  |  ------------------
  |  | 9882|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9883|      0|                    Py_DECREF(v_o);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9884|      0|                    Py_DECREF(l_v);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9885|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9886|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9887|      0|                }
  |  | 9888|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9889|      0|                Py_SETREF(v_o, l_v);
  |  |  ------------------
  |  |  |  |  352|      0|    do { \
  |  |  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  357|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9890|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9891|      0|            }
  |  | 9892|  1.67k|            v = PyStackRef_FromPyObjectSteal(v_o);
  |  | 9893|  1.67k|            stack_pointer[0] = v;
  |  | 9894|  1.67k|            stack_pointer += 1;
  |  | 9895|  1.67k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.67k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9896|  1.67k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.67k|    { \
  |  |  |  |  201|  1.67k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.67k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.67k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.67k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.67k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.67k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.67k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.67k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.67k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.67k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.67k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.67k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.67k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.67k|    }
  |  |  ------------------
  |  |  |  Branch (9896:13): [True: 1.67k, False: 0]
  |  |  ------------------
  |  | 9897|  1.67k|        }
  |  | 9898|       |
  |  | 9899|  1.42k|        TARGET(LOAD_SMALL_INT) {
  |  |  ------------------
  |  |  |  |  132|  1.42k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9900|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9901|       |            int opcode = LOAD_SMALL_INT;
  |  | 9902|       |            (void)(opcode);
  |  | 9903|       |            #endif
  |  | 9904|  1.42k|            frame->instr_ptr = next_instr;
  |  | 9905|  1.42k|            next_instr += 1;
  |  | 9906|  1.42k|            INSTRUCTION_STATS(LOAD_SMALL_INT);
  |  |  ------------------
  |  |  |  |   71|  1.42k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9907|  1.42k|            _PyStackRef value;
  |  | 9908|  1.42k|            assert(oparg < _PY_NSMALLPOSINTS);
  |  |  ------------------
  |  |  |  Branch (9908:13): [True: 1.42k, False: 0]
  |  |  ------------------
  |  | 9909|  1.42k|            PyObject *obj = (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + oparg];
  |  |  ------------------
  |  |  |  |   59|  1.42k|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.42k|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|  1.42k|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                           PyObject *obj = (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + oparg];
  |  |  ------------------
  |  |  |  |   98|  1.42k|#define _PY_NSMALLNEGINTS           5
  |  |  ------------------
  |  | 9910|  1.42k|            value = PyStackRef_FromPyObjectBorrow(obj);
  |  | 9911|  1.42k|            stack_pointer[0] = value;
  |  | 9912|  1.42k|            stack_pointer += 1;
  |  | 9913|  1.42k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.42k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9914|  1.42k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.42k|    { \
  |  |  |  |  201|  1.42k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.42k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.42k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.42k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.42k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.42k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.42k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.42k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.42k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.42k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.42k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.42k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.42k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.42k|    }
  |  |  ------------------
  |  |  |  Branch (9914:13): [True: 1.42k, False: 0]
  |  |  ------------------
  |  | 9915|  1.42k|        }
  |  | 9916|       |
  |  | 9917|    624|        TARGET(LOAD_SPECIAL) {
  |  |  ------------------
  |  |  |  |  132|    624|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9918|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9919|       |            int opcode = LOAD_SPECIAL;
  |  | 9920|       |            (void)(opcode);
  |  | 9921|       |            #endif
  |  | 9922|    624|            frame->instr_ptr = next_instr;
  |  | 9923|    624|            next_instr += 1;
  |  | 9924|    624|            INSTRUCTION_STATS(LOAD_SPECIAL);
  |  |  ------------------
  |  |  |  |   71|    624|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9925|    624|            _PyStackRef self;
  |  | 9926|    624|            _PyStackRef *method_and_self;
  |  | 9927|       |            // _INSERT_NULL
  |  | 9928|    624|            {
  |  | 9929|    624|                self = stack_pointer[-1];
  |  | 9930|    624|                method_and_self = &stack_pointer[-1];
  |  | 9931|    624|                method_and_self[1] = self;
  |  | 9932|    624|                method_and_self[0] = PyStackRef_NULL;
  |  | 9933|    624|            }
  |  | 9934|       |            // _LOAD_SPECIAL
  |  | 9935|    624|            {
  |  | 9936|    624|                method_and_self = &stack_pointer[-1];
  |  | 9937|    624|                PyObject *name = _Py_SpecialMethods[oparg].name;
  |  | 9938|    624|                stack_pointer += 1;
  |  | 9939|    624|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    624|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  | 9940|    624|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9941|    624|                int err = _PyObject_LookupSpecialMethod(name, method_and_self);
  |  | 9942|    624|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9943|    624|                if (err <= 0) {
  |  |  ------------------
  |  |  |  Branch (9943:21): [True: 0, False: 624]
  |  |  ------------------
  |  | 9944|      0|                    if (err == 0) {
  |  |  ------------------
  |  |  |  Branch (9944:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9945|      0|                        PyObject *owner = PyStackRef_AsPyObjectBorrow(method_and_self[1]);
  |  | 9946|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9947|      0|                        const char *errfmt = _PyEval_SpecialMethodCanSuggest(owner, oparg)
  |  |  ------------------
  |  |  |  Branch (9947:46): [True: 0, False: 0]
  |  |  ------------------
  |  | 9948|      0|                        ? _Py_SpecialMethods[oparg].error_suggestion
  |  | 9949|      0|                    : _Py_SpecialMethods[oparg].error;
  |  | 9950|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9951|      0|                        assert(!_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (9951:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9952|      0|                        assert(errfmt != NULL);
  |  |  ------------------
  |  |  |  Branch (9952:25): [True: 0, False: 0]
  |  |  ------------------
  |  | 9953|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9954|      0|                        _PyErr_Format(tstate, PyExc_TypeError, errfmt, owner);
  |  | 9955|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9956|      0|                    }
  |  | 9957|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  | 9958|      0|                }
  |  | 9959|    624|            }
  |  | 9960|    624|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    624|    { \
  |  |  |  |  201|    624|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    624|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    624|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    624|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    624|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    624|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    624|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    624|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 624]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    624|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    624|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    624|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    624|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    624|    }
  |  |  ------------------
  |  |  |  Branch (9960:13): [True: 624, False: 0]
  |  |  ------------------
  |  | 9961|    624|        }
  |  | 9962|       |
  |  | 9963|     14|        TARGET(LOAD_SUPER_ATTR) {
  |  |  ------------------
  |  |  |  |  132|     14|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  | 9964|       |            #if _Py_TAIL_CALL_INTERP
  |  | 9965|       |            int opcode = LOAD_SUPER_ATTR;
  |  | 9966|       |            (void)(opcode);
  |  | 9967|       |            #endif
  |  | 9968|     14|            frame->instr_ptr = next_instr;
  |  | 9969|     14|            next_instr += 2;
  |  | 9970|     14|            INSTRUCTION_STATS(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |   71|     14|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  | 9971|     14|            PREDICTED_LOAD_SUPER_ATTR:;
  |  | 9972|     14|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  | 9973|     14|            (void)this_instr;
  |  | 9974|     14|            opcode = LOAD_SUPER_ATTR;
  |  |  ------------------
  |  |  |  |  108|     14|#define LOAD_SUPER_ATTR                         95
  |  |  ------------------
  |  | 9975|     14|            _PyStackRef global_super_st;
  |  | 9976|     14|            _PyStackRef class_st;
  |  | 9977|     14|            _PyStackRef self_st;
  |  | 9978|     14|            _PyStackRef attr;
  |  | 9979|     14|            _PyStackRef *null;
  |  | 9980|       |            // _SPECIALIZE_LOAD_SUPER_ATTR
  |  | 9981|     14|            {
  |  | 9982|     14|                class_st = stack_pointer[-2];
  |  | 9983|     14|                global_super_st = stack_pointer[-3];
  |  | 9984|     14|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  | 9985|     14|                (void)counter;
  |  | 9986|     14|                #if ENABLE_SPECIALIZATION
  |  | 9987|     14|                int load_method = oparg & 1;
  |  | 9988|     14|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|     14|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 6, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9989|      6|                    next_instr = this_instr;
  |  | 9990|      6|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  | 9991|      6|                    _Py_Specialize_LoadSuperAttr(global_super_st, class_st, next_instr, load_method);
  |  | 9992|      6|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  | 9993|      6|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|      6|    { \
  |  |  |  |  217|      6|        opcode = next_instr->op.code; \
  |  |  |  |  218|      6|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      6|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|      6|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|      6|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|      6|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|      6|    }
  |  |  ------------------
  |  | 9994|      6|                }
  |  | 9995|     14|                OPCODE_DEFERRED_INC(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |   90|     14|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  | 9996|     14|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|     14|    do { \
  |  |  |  |  358|     14|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|     14|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 14]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 9997|     14|                #endif  /* ENABLE_SPECIALIZATION */
  |  | 9998|     14|            }
  |  | 9999|       |            // _LOAD_SUPER_ATTR
  |  |10000|     14|            {
  |  |10001|     14|                self_st = stack_pointer[-1];
  |  |10002|     14|                PyObject *global_super = PyStackRef_AsPyObjectBorrow(global_super_st);
  |  |10003|     14|                PyObject *class = PyStackRef_AsPyObjectBorrow(class_st);
  |  |10004|     14|                PyObject *self = PyStackRef_AsPyObjectBorrow(self_st);
  |  |10005|     14|                if (opcode == INSTRUMENTED_LOAD_SUPER_ATTR) {
  |  |  ------------------
  |  |  |  |  239|     14|#define INSTRUMENTED_LOAD_SUPER_ATTR           248
  |  |  ------------------
  |  |  |  Branch (10005:21): [True: 0, False: 14]
  |  |  ------------------
  |  |10006|      0|                    PyObject *arg = oparg & 2 ? class : &_PyInstrumentation_MISSING;
  |  |  ------------------
  |  |  |  Branch (10006:37): [True: 0, False: 0]
  |  |  ------------------
  |  |10007|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10008|      0|                    int err = _Py_call_instrumentation_2args(
  |  |10009|      0|                        tstate, PY_MONITORING_EVENT_CALL,
  |  |  ------------------
  |  |  |  |   18|      0|#define PY_MONITORING_EVENT_CALL 4
  |  |  ------------------
  |  |10010|      0|                        frame, this_instr, global_super, arg);
  |  |10011|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10012|      0|                    if (err) {
  |  |  ------------------
  |  |  |  Branch (10012:25): [True: 0, False: 0]
  |  |  ------------------
  |  |10013|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10014|      0|                        _PyStackRef tmp = self_st;
  |  |10015|      0|                        self_st = PyStackRef_NULL;
  |  |10016|      0|                        stack_pointer[-1] = self_st;
  |  |10017|      0|                        PyStackRef_CLOSE(tmp);
  |  |10018|      0|                        tmp = class_st;
  |  |10019|      0|                        class_st = PyStackRef_NULL;
  |  |10020|      0|                        stack_pointer[-2] = class_st;
  |  |10021|      0|                        PyStackRef_CLOSE(tmp);
  |  |10022|      0|                        tmp = global_super_st;
  |  |10023|      0|                        global_super_st = PyStackRef_NULL;
  |  |10024|      0|                        stack_pointer[-3] = global_super_st;
  |  |10025|      0|                        PyStackRef_CLOSE(tmp);
  |  |10026|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10027|      0|                        stack_pointer += -3;
  |  |10028|      0|                        ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10029|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10030|      0|                    }
  |  |10031|      0|                }
  |  |10032|     14|                PyObject *super;
  |  |10033|     14|                {
  |  |10034|     14|                    PyObject *stack[] = {class, self};
  |  |10035|     14|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10036|     14|                    super = PyObject_Vectorcall(global_super, stack, oparg & 2, NULL);
  |  |10037|     14|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10038|     14|                }
  |  |10039|     14|                if (opcode == INSTRUMENTED_LOAD_SUPER_ATTR) {
  |  |  ------------------
  |  |  |  |  239|     14|#define INSTRUMENTED_LOAD_SUPER_ATTR           248
  |  |  ------------------
  |  |  |  Branch (10039:21): [True: 0, False: 14]
  |  |  ------------------
  |  |10040|      0|                    PyObject *arg = oparg & 2 ? class : &_PyInstrumentation_MISSING;
  |  |  ------------------
  |  |  |  Branch (10040:37): [True: 0, False: 0]
  |  |  ------------------
  |  |10041|      0|                    if (super == NULL) {
  |  |  ------------------
  |  |  |  Branch (10041:25): [True: 0, False: 0]
  |  |  ------------------
  |  |10042|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10043|      0|                        _Py_call_instrumentation_exc2(
  |  |10044|      0|                            tstate, PY_MONITORING_EVENT_C_RAISE,
  |  |  ------------------
  |  |  |  |   45|      0|#define PY_MONITORING_EVENT_C_RAISE 17
  |  |  ------------------
  |  |10045|      0|                            frame, this_instr, global_super, arg);
  |  |10046|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10047|      0|                    }
  |  |10048|      0|                    else {
  |  |10049|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10050|      0|                        int err = _Py_call_instrumentation_2args(
  |  |10051|      0|                            tstate, PY_MONITORING_EVENT_C_RETURN,
  |  |  ------------------
  |  |  |  |   44|      0|#define PY_MONITORING_EVENT_C_RETURN 16
  |  |  ------------------
  |  |10052|      0|                            frame, this_instr, global_super, arg);
  |  |10053|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10054|      0|                        if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (10054:29): [True: 0, False: 0]
  |  |  ------------------
  |  |10055|      0|                            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10056|      0|                            Py_CLEAR(super);
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10057|      0|                            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10058|      0|                        }
  |  |10059|      0|                    }
  |  |10060|      0|                }
  |  |10061|     14|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10062|     14|                _PyStackRef tmp = self_st;
  |  |10063|     14|                self_st = PyStackRef_NULL;
  |  |10064|     14|                stack_pointer[-1] = self_st;
  |  |10065|     14|                PyStackRef_CLOSE(tmp);
  |  |10066|     14|                tmp = class_st;
  |  |10067|     14|                class_st = PyStackRef_NULL;
  |  |10068|     14|                stack_pointer[-2] = class_st;
  |  |10069|     14|                PyStackRef_CLOSE(tmp);
  |  |10070|     14|                tmp = global_super_st;
  |  |10071|     14|                global_super_st = PyStackRef_NULL;
  |  |10072|     14|                stack_pointer[-3] = global_super_st;
  |  |10073|     14|                PyStackRef_CLOSE(tmp);
  |  |10074|     14|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10075|     14|                stack_pointer += -3;
  |  |10076|     14|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     14|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10077|     14|                if (super == NULL) {
  |  |  ------------------
  |  |  |  Branch (10077:21): [True: 0, False: 14]
  |  |  ------------------
  |  |10078|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10079|      0|                }
  |  |10080|     14|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg >> 2);
  |  |  ------------------
  |  |  |  |  235|     14|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|     14|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|     14|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10080:34): [True: 8, False: 6]
  |  |  ------------------
  |  |10081|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10082|      8|                PyObject *attr_o = PyObject_GetAttr(super, name);
  |  |10083|      8|                Py_DECREF(super);
  |  |  ------------------
  |  |  |  |   80|      8|    do { \
  |  |  |  |   81|      8|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      8|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      8|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      8|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      8|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      8|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      8|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      8|    do { \
  |  |  |  |  |  |  113|      8|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      8|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      8|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      8|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      8|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      8|            (*dealloc)(op); \
  |  |  |  |   91|      8|        } \
  |  |  |  |   92|      8|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10084|      8|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10085|      8|                if (attr_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (10085:21): [True: 0, False: 8]
  |  |  ------------------
  |  |10086|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10087|      0|                }
  |  |10088|      8|                attr = PyStackRef_FromPyObjectSteal(attr_o);
  |  |10089|      8|            }
  |  |10090|       |            // _PUSH_NULL_CONDITIONAL
  |  |10091|      0|            {
  |  |10092|      8|                null = &stack_pointer[1];
  |  |10093|      8|                if (oparg & 1) {
  |  |  ------------------
  |  |  |  Branch (10093:21): [True: 4, False: 4]
  |  |  ------------------
  |  |10094|      4|                    null[0] = PyStackRef_NULL;
  |  |10095|      4|                }
  |  |10096|      8|            }
  |  |10097|      8|            stack_pointer[0] = attr;
  |  |10098|      8|            stack_pointer += 1 + (oparg & 1);
  |  |10099|      8|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      8|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10100|      8|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      8|    { \
  |  |  |  |  201|      8|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      8|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      8|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      8|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      8|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      8|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      8|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      8|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      8|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      8|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      8|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      8|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      8|    }
  |  |  ------------------
  |  |  |  Branch (10100:13): [True: 8, False: 0]
  |  |  ------------------
  |  |10101|      8|        }
  |  |10102|       |
  |  |10103|     56|        TARGET(LOAD_SUPER_ATTR_ATTR) {
  |  |  ------------------
  |  |  |  |  132|     56|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10104|       |            #if _Py_TAIL_CALL_INTERP
  |  |10105|       |            int opcode = LOAD_SUPER_ATTR_ATTR;
  |  |10106|       |            (void)(opcode);
  |  |10107|       |            #endif
  |  |10108|     56|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10109|     56|            (void)this_instr;
  |  |10110|     56|            frame->instr_ptr = next_instr;
  |  |10111|     56|            next_instr += 2;
  |  |10112|     56|            INSTRUCTION_STATS(LOAD_SUPER_ATTR_ATTR);
  |  |  ------------------
  |  |  |  |   71|     56|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10113|     56|            static_assert(INLINE_CACHE_ENTRIES_LOAD_SUPER_ATTR == 1, "incorrect cache size");
  |  |10114|     56|            _PyStackRef global_super_st;
  |  |10115|     56|            _PyStackRef class_st;
  |  |10116|     56|            _PyStackRef self_st;
  |  |10117|     56|            _PyStackRef attr_st;
  |  |10118|       |            /* Skip 1 cache entry */
  |  |10119|     56|            self_st = stack_pointer[-1];
  |  |10120|     56|            class_st = stack_pointer[-2];
  |  |10121|     56|            global_super_st = stack_pointer[-3];
  |  |10122|     56|            PyObject *global_super = PyStackRef_AsPyObjectBorrow(global_super_st);
  |  |10123|     56|            PyObject *class = PyStackRef_AsPyObjectBorrow(class_st);
  |  |10124|     56|            PyObject *self = PyStackRef_AsPyObjectBorrow(self_st);
  |  |10125|     56|            assert(!(oparg & 1));
  |  |  ------------------
  |  |  |  Branch (10125:13): [True: 56, False: 0]
  |  |  ------------------
  |  |10126|     56|            if (global_super != (PyObject *)&PySuper_Type) {
  |  |  ------------------
  |  |  |  Branch (10126:17): [True: 0, False: 56]
  |  |  ------------------
  |  |10127|      0|                UPDATE_MISS_STATS(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |10128|      0|                assert(_PyOpcode_Deopt[opcode] == (LOAD_SUPER_ATTR));
  |  |  ------------------
  |  |  |  Branch (10128:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10129|      0|                JUMP_TO_PREDICTED(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |10130|      0|            }
  |  |10131|     56|            if (!PyType_Check(class)) {
  |  |  ------------------
  |  |  |  |  766|     56|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     56|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10131:17): [True: 0, False: 56]
  |  |  ------------------
  |  |10132|      0|                UPDATE_MISS_STATS(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |10133|      0|                assert(_PyOpcode_Deopt[opcode] == (LOAD_SUPER_ATTR));
  |  |  ------------------
  |  |  |  Branch (10133:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10134|      0|                JUMP_TO_PREDICTED(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |10135|      0|            }
  |  |10136|     56|            STAT_INC(LOAD_SUPER_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|     56|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |10137|     56|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg >> 2);
  |  |  ------------------
  |  |  |  |  235|     56|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|     56|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|     56|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     56|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10137:30): [True: 56, False: 0]
  |  |  ------------------
  |  |10138|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10139|     56|            PyObject *attr = _PySuper_Lookup((PyTypeObject *)class, self, name, NULL);
  |  |10140|     56|            _PyStackRef tmp = self_st;
  |  |10141|     56|            self_st = PyStackRef_NULL;
  |  |10142|     56|            stack_pointer[-1] = self_st;
  |  |10143|     56|            PyStackRef_CLOSE(tmp);
  |  |10144|     56|            tmp = class_st;
  |  |10145|     56|            class_st = PyStackRef_NULL;
  |  |10146|     56|            stack_pointer[-2] = class_st;
  |  |10147|     56|            PyStackRef_CLOSE(tmp);
  |  |10148|     56|            tmp = global_super_st;
  |  |10149|     56|            global_super_st = PyStackRef_NULL;
  |  |10150|     56|            stack_pointer[-3] = global_super_st;
  |  |10151|     56|            PyStackRef_CLOSE(tmp);
  |  |10152|     56|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10153|     56|            stack_pointer += -3;
  |  |10154|     56|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     56|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10155|     56|            if (attr == NULL) {
  |  |  ------------------
  |  |  |  Branch (10155:17): [True: 0, False: 56]
  |  |  ------------------
  |  |10156|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10157|      0|            }
  |  |10158|     56|            attr_st = PyStackRef_FromPyObjectSteal(attr);
  |  |10159|     56|            stack_pointer[0] = attr_st;
  |  |10160|     56|            stack_pointer += 1;
  |  |10161|     56|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     56|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10162|     56|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     56|    { \
  |  |  |  |  201|     56|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     56|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     56|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     56|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     56|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     56|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     56|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     56|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 56]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     56|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     56|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     56|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     56|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     56|    }
  |  |  ------------------
  |  |  |  Branch (10162:13): [True: 56, False: 0]
  |  |  ------------------
  |  |10163|     56|        }
  |  |10164|       |
  |  |10165|    116|        TARGET(LOAD_SUPER_ATTR_METHOD) {
  |  |  ------------------
  |  |  |  |  132|    116|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10166|       |            #if _Py_TAIL_CALL_INTERP
  |  |10167|       |            int opcode = LOAD_SUPER_ATTR_METHOD;
  |  |10168|       |            (void)(opcode);
  |  |10169|       |            #endif
  |  |10170|    116|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10171|    116|            (void)this_instr;
  |  |10172|    116|            frame->instr_ptr = next_instr;
  |  |10173|    116|            next_instr += 2;
  |  |10174|    116|            INSTRUCTION_STATS(LOAD_SUPER_ATTR_METHOD);
  |  |  ------------------
  |  |  |  |   71|    116|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10175|    116|            static_assert(INLINE_CACHE_ENTRIES_LOAD_SUPER_ATTR == 1, "incorrect cache size");
  |  |10176|    116|            _PyStackRef global_super_st;
  |  |10177|    116|            _PyStackRef class_st;
  |  |10178|    116|            _PyStackRef self_st;
  |  |10179|    116|            _PyStackRef attr;
  |  |10180|    116|            _PyStackRef self_or_null;
  |  |10181|       |            /* Skip 1 cache entry */
  |  |10182|       |            // _GUARD_LOAD_SUPER_ATTR_METHOD
  |  |10183|    116|            {
  |  |10184|    116|                class_st = stack_pointer[-2];
  |  |10185|    116|                global_super_st = stack_pointer[-3];
  |  |10186|    116|                PyObject *global_super = PyStackRef_AsPyObjectBorrow(global_super_st);
  |  |10187|    116|                PyObject *class = PyStackRef_AsPyObjectBorrow(class_st);
  |  |10188|    116|                assert(oparg & 1);
  |  |  ------------------
  |  |  |  Branch (10188:17): [True: 116, False: 0]
  |  |  ------------------
  |  |10189|    116|                if (global_super != (PyObject *)&PySuper_Type) {
  |  |  ------------------
  |  |  |  Branch (10189:21): [True: 0, False: 116]
  |  |  ------------------
  |  |10190|      0|                    UPDATE_MISS_STATS(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |10191|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_SUPER_ATTR));
  |  |  ------------------
  |  |  |  Branch (10191:21): [True: 0, False: 0]
  |  |  ------------------
  |  |10192|      0|                    JUMP_TO_PREDICTED(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |10193|      0|                }
  |  |10194|    116|                if (!PyType_Check(class)) {
  |  |  ------------------
  |  |  |  |  766|    116|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10194:21): [True: 0, False: 116]
  |  |  ------------------
  |  |10195|      0|                    UPDATE_MISS_STATS(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |10196|      0|                    assert(_PyOpcode_Deopt[opcode] == (LOAD_SUPER_ATTR));
  |  |  ------------------
  |  |  |  Branch (10196:21): [True: 0, False: 0]
  |  |  ------------------
  |  |10197|      0|                    JUMP_TO_PREDICTED(LOAD_SUPER_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |10198|      0|                }
  |  |10199|    116|            }
  |  |10200|       |            // _LOAD_SUPER_ATTR_METHOD
  |  |10201|    116|            {
  |  |10202|    116|                self_st = stack_pointer[-1];
  |  |10203|    116|                PyObject *class = PyStackRef_AsPyObjectBorrow(class_st);
  |  |10204|    116|                PyObject *self = PyStackRef_AsPyObjectBorrow(self_st);
  |  |10205|    116|                STAT_INC(LOAD_SUPER_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|    116|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |10206|    116|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg >> 2);
  |  |  ------------------
  |  |  |  |  235|    116|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|    116|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|    116|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10206:34): [True: 116, False: 0]
  |  |  ------------------
  |  |10207|      0|                PyTypeObject *cls = (PyTypeObject *)class;
  |  |10208|    116|                int method_found = 0;
  |  |10209|    116|                PyObject *attr_o;
  |  |10210|    116|                {
  |  |10211|    116|                    int *method_found_ptr = &method_found;
  |  |10212|    116|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10213|    116|                    attr_o = _PySuper_Lookup(cls, self, name,
  |  |10214|    116|                        Py_TYPE(self)->tp_getattro == PyObject_GenericGetAttr ? method_found_ptr : NULL);
  |  |  ------------------
  |  |  |  |  213|    116|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10214:25): [True: 58, False: 58]
  |  |  ------------------
  |  |10215|    116|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10216|    116|                }
  |  |10217|    116|                if (attr_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (10217:21): [True: 0, False: 116]
  |  |  ------------------
  |  |10218|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10219|      0|                }
  |  |10220|    116|                if (method_found) {
  |  |  ------------------
  |  |  |  Branch (10220:21): [True: 58, False: 58]
  |  |  ------------------
  |  |10221|     58|                    self_or_null = self_st;
  |  |10222|     58|                } else {
  |  |10223|     58|                    stack_pointer += -1;
  |  |10224|     58|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     58|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10225|     58|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10226|     58|                    PyStackRef_CLOSE(self_st);
  |  |10227|     58|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10228|     58|                    self_or_null = PyStackRef_NULL;
  |  |10229|     58|                    stack_pointer += 1;
  |  |10230|     58|                }
  |  |10231|    116|                stack_pointer += -1;
  |  |10232|    116|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    116|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10233|    116|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10234|    116|                _PyStackRef tmp = global_super_st;
  |  |10235|    116|                global_super_st = self_or_null;
  |  |10236|    116|                stack_pointer[-2] = global_super_st;
  |  |10237|    116|                PyStackRef_CLOSE(tmp);
  |  |10238|    116|                tmp = class_st;
  |  |10239|    116|                class_st = PyStackRef_NULL;
  |  |10240|    116|                stack_pointer[-1] = class_st;
  |  |10241|    116|                PyStackRef_CLOSE(tmp);
  |  |10242|    116|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10243|    116|                stack_pointer += -2;
  |  |10244|    116|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    116|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10245|    116|                attr = PyStackRef_FromPyObjectSteal(attr_o);
  |  |10246|    116|            }
  |  |10247|      0|            stack_pointer[0] = attr;
  |  |10248|    116|            stack_pointer[1] = self_or_null;
  |  |10249|    116|            stack_pointer += 2;
  |  |10250|    116|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    116|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10251|    116|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    116|    { \
  |  |  |  |  201|    116|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    116|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    116|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    116|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    116|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    116|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    116|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    116|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 116]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    116|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    116|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    116|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    116|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    116|    }
  |  |  ------------------
  |  |  |  Branch (10251:13): [True: 116, False: 0]
  |  |  ------------------
  |  |10252|    116|        }
  |  |10253|       |
  |  |10254|    210|        TARGET(MAKE_CELL) {
  |  |  ------------------
  |  |  |  |  132|    210|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10255|       |            #if _Py_TAIL_CALL_INTERP
  |  |10256|       |            int opcode = MAKE_CELL;
  |  |10257|       |            (void)(opcode);
  |  |10258|       |            #endif
  |  |10259|    210|            frame->instr_ptr = next_instr;
  |  |10260|    210|            next_instr += 1;
  |  |10261|    210|            INSTRUCTION_STATS(MAKE_CELL);
  |  |  ------------------
  |  |  |  |   71|    210|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10262|    210|            PyObject *initial = PyStackRef_AsPyObjectBorrow(GETLOCAL(oparg));
  |  |  ------------------
  |  |  |  |  284|    210|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |10263|    210|            PyObject *cell = PyCell_New(initial);
  |  |10264|    210|            if (cell == NULL) {
  |  |  ------------------
  |  |  |  Branch (10264:17): [True: 0, False: 210]
  |  |  ------------------
  |  |10265|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10266|      0|            }
  |  |10267|    210|            _PyStackRef tmp = GETLOCAL(oparg);
  |  |  ------------------
  |  |  |  |  284|    210|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |10268|    210|            GETLOCAL(oparg) = PyStackRef_FromPyObjectSteal(cell);
  |  |  ------------------
  |  |  |  |  284|    210|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |10269|    210|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10270|    210|            PyStackRef_XCLOSE(tmp);
  |  |10271|    210|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10272|    210|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    210|    { \
  |  |  |  |  201|    210|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    210|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    210|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    210|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    210|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    210|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    210|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    210|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 210]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    210|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    210|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    210|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    210|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    210|    }
  |  |  ------------------
  |  |  |  Branch (10272:13): [True: 210, False: 0]
  |  |  ------------------
  |  |10273|    210|        }
  |  |10274|       |
  |  |10275|  1.47k|        TARGET(MAKE_FUNCTION) {
  |  |  ------------------
  |  |  |  |  132|  1.47k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10276|       |            #if _Py_TAIL_CALL_INTERP
  |  |10277|       |            int opcode = MAKE_FUNCTION;
  |  |10278|       |            (void)(opcode);
  |  |10279|       |            #endif
  |  |10280|  1.47k|            frame->instr_ptr = next_instr;
  |  |10281|  1.47k|            next_instr += 1;
  |  |10282|  1.47k|            INSTRUCTION_STATS(MAKE_FUNCTION);
  |  |  ------------------
  |  |  |  |   71|  1.47k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10283|  1.47k|            _PyStackRef codeobj_st;
  |  |10284|  1.47k|            _PyStackRef func;
  |  |10285|  1.47k|            _PyStackRef co;
  |  |10286|  1.47k|            _PyStackRef value;
  |  |10287|       |            // _MAKE_FUNCTION
  |  |10288|  1.47k|            {
  |  |10289|  1.47k|                codeobj_st = stack_pointer[-1];
  |  |10290|  1.47k|                PyObject *codeobj = PyStackRef_AsPyObjectBorrow(codeobj_st);
  |  |10291|  1.47k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10292|  1.47k|                PyFunctionObject *func_obj = (PyFunctionObject *)
  |  |10293|  1.47k|                PyFunction_New(codeobj, GLOBALS());
  |  |  ------------------
  |  |  |  |  325|  1.47k|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  |10294|  1.47k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10295|  1.47k|                if (func_obj == NULL) {
  |  |  ------------------
  |  |  |  Branch (10295:21): [True: 0, False: 1.47k]
  |  |  ------------------
  |  |10296|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10297|      0|                }
  |  |10298|  1.47k|                co = codeobj_st;
  |  |10299|  1.47k|                _PyFunction_SetVersion(
  |  |10300|  1.47k|                                   func_obj, ((PyCodeObject *)codeobj)->co_version);
  |  |10301|  1.47k|                func = PyStackRef_FromPyObjectSteal((PyObject *)func_obj);
  |  |10302|  1.47k|            }
  |  |10303|       |            // _POP_TOP
  |  |10304|      0|            {
  |  |10305|  1.47k|                value = co;
  |  |10306|  1.47k|                stack_pointer[-1] = func;
  |  |10307|  1.47k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10308|  1.47k|                PyStackRef_XCLOSE(value);
  |  |10309|  1.47k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10310|  1.47k|            }
  |  |10311|  1.47k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.47k|    { \
  |  |  |  |  201|  1.47k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.47k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.47k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.47k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.47k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.47k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.47k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.47k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.47k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.47k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.47k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.47k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.47k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.47k|    }
  |  |  ------------------
  |  |  |  Branch (10311:13): [True: 1.47k, False: 0]
  |  |  ------------------
  |  |10312|  1.47k|        }
  |  |10313|       |
  |  |10314|    680|        TARGET(MAP_ADD) {
  |  |  ------------------
  |  |  |  |  132|    680|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10315|       |            #if _Py_TAIL_CALL_INTERP
  |  |10316|       |            int opcode = MAP_ADD;
  |  |10317|       |            (void)(opcode);
  |  |10318|       |            #endif
  |  |10319|    680|            frame->instr_ptr = next_instr;
  |  |10320|    680|            next_instr += 1;
  |  |10321|    680|            INSTRUCTION_STATS(MAP_ADD);
  |  |  ------------------
  |  |  |  |   71|    680|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10322|    680|            _PyStackRef dict_st;
  |  |10323|    680|            _PyStackRef key;
  |  |10324|    680|            _PyStackRef value;
  |  |10325|    680|            value = stack_pointer[-1];
  |  |10326|    680|            key = stack_pointer[-2];
  |  |10327|    680|            dict_st = stack_pointer[-3 - (oparg - 1)];
  |  |10328|    680|            PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st);
  |  |10329|    680|            assert(PyDict_CheckExact(dict));
  |  |  ------------------
  |  |  |  Branch (10329:13): [True: 680, False: 0]
  |  |  ------------------
  |  |10330|    680|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10331|    680|            int err = _PyDict_SetItem_Take2(
  |  |10332|    680|                (PyDictObject *)dict,
  |  |10333|    680|                PyStackRef_AsPyObjectSteal(key),
  |  |10334|    680|                PyStackRef_AsPyObjectSteal(value)
  |  |10335|    680|            );
  |  |10336|    680|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10337|    680|            if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (10337:17): [True: 0, False: 680]
  |  |  ------------------
  |  |10338|      0|                JUMP_TO_LABEL(pop_2_error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10339|      0|            }
  |  |10340|    680|            stack_pointer += -2;
  |  |10341|    680|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    680|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10342|    680|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    680|    { \
  |  |  |  |  201|    680|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    680|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    680|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    680|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    680|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    680|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    680|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    680|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 680]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    680|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    680|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    680|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    680|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    680|    }
  |  |  ------------------
  |  |  |  Branch (10342:13): [True: 680, False: 0]
  |  |  ------------------
  |  |10343|    680|        }
  |  |10344|       |
  |  |10345|      0|        TARGET(MATCH_CLASS) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10346|       |            #if _Py_TAIL_CALL_INTERP
  |  |10347|       |            int opcode = MATCH_CLASS;
  |  |10348|       |            (void)(opcode);
  |  |10349|       |            #endif
  |  |10350|      0|            frame->instr_ptr = next_instr;
  |  |10351|      0|            next_instr += 1;
  |  |10352|      0|            INSTRUCTION_STATS(MATCH_CLASS);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10353|      0|            _PyStackRef subject;
  |  |10354|      0|            _PyStackRef type;
  |  |10355|      0|            _PyStackRef names;
  |  |10356|      0|            _PyStackRef attrs;
  |  |10357|      0|            _PyStackRef s;
  |  |10358|      0|            _PyStackRef tp;
  |  |10359|      0|            _PyStackRef n;
  |  |10360|      0|            _PyStackRef value;
  |  |10361|       |            // _MATCH_CLASS
  |  |10362|      0|            {
  |  |10363|      0|                names = stack_pointer[-1];
  |  |10364|      0|                type = stack_pointer[-2];
  |  |10365|      0|                subject = stack_pointer[-3];
  |  |10366|      0|                assert(PyTuple_CheckExact(PyStackRef_AsPyObjectBorrow(names)));
  |  |  ------------------
  |  |  |  Branch (10366:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10367|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10368|      0|                PyObject *attrs_o = _PyEval_MatchClass(tstate,
  |  |10369|      0|                    PyStackRef_AsPyObjectBorrow(subject),
  |  |10370|      0|                    PyStackRef_AsPyObjectBorrow(type), oparg,
  |  |10371|      0|                    PyStackRef_AsPyObjectBorrow(names));
  |  |10372|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10373|      0|                if (attrs_o) {
  |  |  ------------------
  |  |  |  Branch (10373:21): [True: 0, False: 0]
  |  |  ------------------
  |  |10374|      0|                    assert(PyTuple_CheckExact(attrs_o));
  |  |  ------------------
  |  |  |  Branch (10374:21): [True: 0, False: 0]
  |  |  ------------------
  |  |10375|      0|                    attrs = PyStackRef_FromPyObjectSteal(attrs_o);
  |  |10376|      0|                }
  |  |10377|      0|                else {
  |  |10378|      0|                    if (_PyErr_Occurred(tstate)) {
  |  |  ------------------
  |  |  |  Branch (10378:25): [True: 0, False: 0]
  |  |  ------------------
  |  |10379|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10380|      0|                    }
  |  |10381|      0|                    attrs = PyStackRef_None;
  |  |  ------------------
  |  |  |  |  473|      0|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10382|      0|                }
  |  |10383|      0|                s = subject;
  |  |10384|      0|                tp = type;
  |  |10385|      0|                n = names;
  |  |10386|      0|            }
  |  |10387|       |            // _POP_TOP
  |  |10388|      0|            {
  |  |10389|      0|                value = n;
  |  |10390|      0|                stack_pointer[-3] = attrs;
  |  |10391|      0|                stack_pointer[-2] = s;
  |  |10392|      0|                stack_pointer[-1] = tp;
  |  |10393|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10394|      0|                PyStackRef_XCLOSE(value);
  |  |10395|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10396|      0|            }
  |  |10397|       |            // _POP_TOP
  |  |10398|      0|            {
  |  |10399|      0|                value = tp;
  |  |10400|      0|                stack_pointer += -1;
  |  |10401|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10402|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10403|      0|                PyStackRef_XCLOSE(value);
  |  |10404|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10405|      0|            }
  |  |10406|       |            // _POP_TOP
  |  |10407|      0|            {
  |  |10408|      0|                value = s;
  |  |10409|      0|                stack_pointer += -1;
  |  |10410|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10411|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10412|      0|                PyStackRef_XCLOSE(value);
  |  |10413|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10414|      0|            }
  |  |10415|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10415:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10416|      0|        }
  |  |10417|       |
  |  |10418|      0|        TARGET(MATCH_KEYS) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10419|       |            #if _Py_TAIL_CALL_INTERP
  |  |10420|       |            int opcode = MATCH_KEYS;
  |  |10421|       |            (void)(opcode);
  |  |10422|       |            #endif
  |  |10423|      0|            frame->instr_ptr = next_instr;
  |  |10424|      0|            next_instr += 1;
  |  |10425|      0|            INSTRUCTION_STATS(MATCH_KEYS);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10426|      0|            _PyStackRef subject;
  |  |10427|      0|            _PyStackRef keys;
  |  |10428|      0|            _PyStackRef values_or_none;
  |  |10429|      0|            keys = stack_pointer[-1];
  |  |10430|      0|            subject = stack_pointer[-2];
  |  |10431|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10432|      0|            PyObject *values_or_none_o = _PyEval_MatchKeys(tstate,
  |  |10433|      0|                PyStackRef_AsPyObjectBorrow(subject), PyStackRef_AsPyObjectBorrow(keys));
  |  |10434|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10435|      0|            if (values_or_none_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (10435:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10436|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10437|      0|            }
  |  |10438|      0|            values_or_none = PyStackRef_FromPyObjectSteal(values_or_none_o);
  |  |10439|      0|            stack_pointer[0] = values_or_none;
  |  |10440|      0|            stack_pointer += 1;
  |  |10441|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10442|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10442:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10443|      0|        }
  |  |10444|       |
  |  |10445|      0|        TARGET(MATCH_MAPPING) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10446|       |            #if _Py_TAIL_CALL_INTERP
  |  |10447|       |            int opcode = MATCH_MAPPING;
  |  |10448|       |            (void)(opcode);
  |  |10449|       |            #endif
  |  |10450|      0|            frame->instr_ptr = next_instr;
  |  |10451|      0|            next_instr += 1;
  |  |10452|      0|            INSTRUCTION_STATS(MATCH_MAPPING);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10453|      0|            _PyStackRef subject;
  |  |10454|      0|            _PyStackRef res;
  |  |10455|      0|            subject = stack_pointer[-1];
  |  |10456|      0|            int match = PyStackRef_TYPE(subject)->tp_flags & Py_TPFLAGS_MAPPING;
  |  |  ------------------
  |  |  |  |  492|      0|#define Py_TPFLAGS_MAPPING (1 << 6)
  |  |  ------------------
  |  |10457|      0|            res = match ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|      0|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                           res = match ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|      0|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10457:19): [True: 0, False: 0]
  |  |  ------------------
  |  |10458|      0|            stack_pointer[0] = res;
  |  |10459|      0|            stack_pointer += 1;
  |  |10460|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10461|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10461:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10462|      0|        }
  |  |10463|       |
  |  |10464|      0|        TARGET(MATCH_SEQUENCE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10465|       |            #if _Py_TAIL_CALL_INTERP
  |  |10466|       |            int opcode = MATCH_SEQUENCE;
  |  |10467|       |            (void)(opcode);
  |  |10468|       |            #endif
  |  |10469|      0|            frame->instr_ptr = next_instr;
  |  |10470|      0|            next_instr += 1;
  |  |10471|      0|            INSTRUCTION_STATS(MATCH_SEQUENCE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10472|      0|            _PyStackRef subject;
  |  |10473|      0|            _PyStackRef res;
  |  |10474|      0|            subject = stack_pointer[-1];
  |  |10475|      0|            int match = PyStackRef_TYPE(subject)->tp_flags & Py_TPFLAGS_SEQUENCE;
  |  |  ------------------
  |  |  |  |  490|      0|#define Py_TPFLAGS_SEQUENCE (1 << 5)
  |  |  ------------------
  |  |10476|      0|            res = match ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|      0|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                           res = match ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|      0|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (10476:19): [True: 0, False: 0]
  |  |  ------------------
  |  |10477|      0|            stack_pointer[0] = res;
  |  |10478|      0|            stack_pointer += 1;
  |  |10479|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10480|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10480:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10481|      0|        }
  |  |10482|       |
  |  |10483|  1.32k|        TARGET(NOP) {
  |  |  ------------------
  |  |  |  |  132|  1.32k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10484|       |            #if _Py_TAIL_CALL_INTERP
  |  |10485|       |            int opcode = NOP;
  |  |10486|       |            (void)(opcode);
  |  |10487|       |            #endif
  |  |10488|  1.32k|            frame->instr_ptr = next_instr;
  |  |10489|  1.32k|            next_instr += 1;
  |  |10490|  1.32k|            INSTRUCTION_STATS(NOP);
  |  |  ------------------
  |  |  |  |   71|  1.32k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10491|  1.32k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.32k|    { \
  |  |  |  |  201|  1.32k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.32k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.32k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.32k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.32k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.32k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.32k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.32k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.32k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.32k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.32k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.32k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.32k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.32k|    }
  |  |  ------------------
  |  |  |  Branch (10491:13): [True: 1.32k, False: 0]
  |  |  ------------------
  |  |10492|  1.32k|        }
  |  |10493|       |
  |  |10494|      0|        TARGET(NOT_TAKEN) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10495|       |            #if _Py_TAIL_CALL_INTERP
  |  |10496|       |            int opcode = NOT_TAKEN;
  |  |10497|       |            (void)(opcode);
  |  |10498|       |            #endif
  |  |10499|      0|            frame->instr_ptr = next_instr;
  |  |10500|      0|            next_instr += 1;
  |  |10501|      0|            INSTRUCTION_STATS(NOT_TAKEN);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10502|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10502:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10503|      0|        }
  |  |10504|       |
  |  |10505|    180|        TARGET(POP_EXCEPT) {
  |  |  ------------------
  |  |  |  |  132|    180|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10506|       |            #if _Py_TAIL_CALL_INTERP
  |  |10507|       |            int opcode = POP_EXCEPT;
  |  |10508|       |            (void)(opcode);
  |  |10509|       |            #endif
  |  |10510|    180|            frame->instr_ptr = next_instr;
  |  |10511|    180|            next_instr += 1;
  |  |10512|    180|            INSTRUCTION_STATS(POP_EXCEPT);
  |  |  ------------------
  |  |  |  |   71|    180|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10513|    180|            _PyStackRef exc_value;
  |  |10514|    180|            exc_value = stack_pointer[-1];
  |  |10515|    180|            _PyErr_StackItem *exc_info = tstate->exc_info;
  |  |10516|    180|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10517|    180|            Py_XSETREF(exc_info->exc_value,
  |  |  ------------------
  |  |  |  |  374|    180|    do { \
  |  |  |  |  375|    180|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|    180|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  376|    180|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|    180|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  377|    360|        *_tmp_dst_ptr = (src); \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (377:26): [True: 166, False: 14]
  |  |  |  |  ------------------
  |  |  |  |  378|    180|        Py_XDECREF(_tmp_old_dst); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   69|    180|    do { \
  |  |  |  |  |  |   70|    180|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   71|    180|        if (xop != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (71:13): [True: 180, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   72|    180|            Py_DECREF(xop); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   80|    180|    do { \
  |  |  |  |  |  |  |  |   81|    180|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   82|    180|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  137|    180|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 180]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |  |  |   86|    180|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   20|    180|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   87|    180|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (87:13): [True: 168, False: 12]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   88|    168|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  112|    168|    do { \
  |  |  |  |  |  |  |  |  |  |  113|    168|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  |  |  114|    168|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 168]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  |  |  118|    168|    } while(0)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 168]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   89|    168|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  213|    168|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  171|    168|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   37|    168|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   90|    168|            (*dealloc)(op); \
  |  |  |  |  |  |  |  |   91|    168|        } \
  |  |  |  |  |  |  |  |   92|    180|    } while (0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 180]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   73|    180|        } \
  |  |  |  |  |  |   74|    180|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (74:14): [Folded, False: 180]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  379|    180|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (379:14): [Folded, False: 180]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10518|    180|                       PyStackRef_IsNone(exc_value)
  |  |10519|    180|                       ? NULL : PyStackRef_AsPyObjectSteal(exc_value));
  |  |10520|    180|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10521|    180|            stack_pointer += -1;
  |  |10522|    180|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    180|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10523|    180|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    180|    { \
  |  |  |  |  201|    180|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    180|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    180|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    180|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    180|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    180|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    180|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    180|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 180]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    180|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    180|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    180|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    180|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    180|    }
  |  |  ------------------
  |  |  |  Branch (10523:13): [True: 180, False: 0]
  |  |  ------------------
  |  |10524|    180|        }
  |  |10525|       |
  |  |10526|    280|        TARGET(POP_ITER) {
  |  |  ------------------
  |  |  |  |  132|    280|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10527|       |            #if _Py_TAIL_CALL_INTERP
  |  |10528|       |            int opcode = POP_ITER;
  |  |10529|       |            (void)(opcode);
  |  |10530|       |            #endif
  |  |10531|    280|            frame->instr_ptr = next_instr;
  |  |10532|    280|            next_instr += 1;
  |  |10533|    280|            INSTRUCTION_STATS(POP_ITER);
  |  |  ------------------
  |  |  |  |   71|    280|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10534|    280|            _PyStackRef iter;
  |  |10535|    280|            _PyStackRef index_or_null;
  |  |10536|    280|            index_or_null = stack_pointer[-1];
  |  |10537|    280|            iter = stack_pointer[-2];
  |  |10538|    280|            (void)index_or_null;
  |  |10539|    280|            stack_pointer += -2;
  |  |10540|    280|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    280|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10541|    280|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10542|    280|            PyStackRef_CLOSE(iter);
  |  |10543|    280|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10544|    280|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    280|    { \
  |  |  |  |  201|    280|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    280|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    280|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    280|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    280|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    280|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    280|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    280|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 280]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    280|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    280|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    280|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    280|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    280|    }
  |  |  ------------------
  |  |  |  Branch (10544:13): [True: 280, False: 0]
  |  |  ------------------
  |  |10545|    280|        }
  |  |10546|       |
  |  |10547|  2.12k|        TARGET(POP_JUMP_IF_FALSE) {
  |  |  ------------------
  |  |  |  |  132|  2.12k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10548|       |            #if _Py_TAIL_CALL_INTERP
  |  |10549|       |            int opcode = POP_JUMP_IF_FALSE;
  |  |10550|       |            (void)(opcode);
  |  |10551|       |            #endif
  |  |10552|  2.12k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10553|  2.12k|            (void)this_instr;
  |  |10554|  2.12k|            frame->instr_ptr = next_instr;
  |  |10555|  2.12k|            next_instr += 2;
  |  |10556|  2.12k|            INSTRUCTION_STATS(POP_JUMP_IF_FALSE);
  |  |  ------------------
  |  |  |  |   71|  2.12k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10557|  2.12k|            _PyStackRef cond;
  |  |10558|       |            /* Skip 1 cache entry */
  |  |10559|  2.12k|            cond = stack_pointer[-1];
  |  |10560|  2.12k|            assert(PyStackRef_BoolCheck(cond));
  |  |  ------------------
  |  |  |  Branch (10560:13): [True: 2.12k, False: 0]
  |  |  ------------------
  |  |10561|  2.12k|            int flag = PyStackRef_IsFalse(cond);
  |  |  ------------------
  |  |  |  |  482|  2.12k|#define PyStackRef_IsFalse(REF) ((REF).bits == (((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.12k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10562|  2.12k|            RECORD_BRANCH_TAKEN(this_instr[1].cache, flag);
  |  |  ------------------
  |  |  |  |  373|  2.12k|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.12k|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|  2.12k|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  |10563|  2.12k|            JUMPBY(flag ? oparg : next_instr->op.code == NOT_TAKEN);
  |  |  ------------------
  |  |  |  |  260|  4.24k|#define JUMPBY(x)       (next_instr += (x))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (260:41): [True: 1.26k, False: 854]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10564|  2.12k|            stack_pointer += -1;
  |  |10565|  2.12k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  2.12k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10566|  2.12k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  2.12k|    { \
  |  |  |  |  201|  2.12k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  2.12k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  2.12k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  2.12k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  2.12k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  2.12k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  2.12k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  2.12k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2.12k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  2.12k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  2.12k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  2.12k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  2.12k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  2.12k|    }
  |  |  ------------------
  |  |  |  Branch (10566:13): [True: 2.12k, False: 0]
  |  |  ------------------
  |  |10567|  2.12k|        }
  |  |10568|       |
  |  |10569|    172|        TARGET(POP_JUMP_IF_NONE) {
  |  |  ------------------
  |  |  |  |  132|    172|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10570|       |            #if _Py_TAIL_CALL_INTERP
  |  |10571|       |            int opcode = POP_JUMP_IF_NONE;
  |  |10572|       |            (void)(opcode);
  |  |10573|       |            #endif
  |  |10574|    172|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10575|    172|            (void)this_instr;
  |  |10576|    172|            frame->instr_ptr = next_instr;
  |  |10577|    172|            next_instr += 2;
  |  |10578|    172|            INSTRUCTION_STATS(POP_JUMP_IF_NONE);
  |  |  ------------------
  |  |  |  |   71|    172|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10579|    172|            _PyStackRef value;
  |  |10580|    172|            _PyStackRef b;
  |  |10581|    172|            _PyStackRef cond;
  |  |10582|       |            /* Skip 1 cache entry */
  |  |10583|       |            // _IS_NONE
  |  |10584|    172|            {
  |  |10585|    172|                value = stack_pointer[-1];
  |  |10586|    172|                if (PyStackRef_IsNone(value)) {
  |  |  ------------------
  |  |  |  |  483|    172|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    172|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (483:32): [True: 90, False: 82]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10587|     90|                    b = PyStackRef_True;
  |  |  ------------------
  |  |  |  |  471|     90|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     90|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10588|     90|                }
  |  |10589|     82|                else {
  |  |10590|     82|                    b = PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|     82|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     82|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10591|     82|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10592|     82|                    _PyStackRef tmp = value;
  |  |10593|     82|                    value = b;
  |  |10594|     82|                    stack_pointer[-1] = value;
  |  |10595|     82|                    PyStackRef_CLOSE(tmp);
  |  |10596|     82|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10597|     82|                }
  |  |10598|    172|            }
  |  |10599|       |            // _POP_JUMP_IF_TRUE
  |  |10600|    172|            {
  |  |10601|    172|                cond = b;
  |  |10602|    172|                assert(PyStackRef_BoolCheck(cond));
  |  |  ------------------
  |  |  |  Branch (10602:17): [True: 172, False: 0]
  |  |  ------------------
  |  |10603|    172|                int flag = PyStackRef_IsTrue(cond);
  |  |  ------------------
  |  |  |  |  481|    172|#define PyStackRef_IsTrue(REF) ((REF).bits == (((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    172|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10604|    172|                RECORD_BRANCH_TAKEN(this_instr[1].cache, flag);
  |  |  ------------------
  |  |  |  |  373|    172|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    172|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|    172|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  |10605|    172|                JUMPBY(flag ? oparg : next_instr->op.code == NOT_TAKEN);
  |  |  ------------------
  |  |  |  |  260|    344|#define JUMPBY(x)       (next_instr += (x))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (260:41): [True: 90, False: 82]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10606|    172|            }
  |  |10607|      0|            stack_pointer += -1;
  |  |10608|    172|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    172|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10609|    172|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    172|    { \
  |  |  |  |  201|    172|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    172|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    172|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    172|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    172|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    172|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    172|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    172|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 172]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    172|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    172|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    172|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    172|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    172|    }
  |  |  ------------------
  |  |  |  Branch (10609:13): [True: 172, False: 0]
  |  |  ------------------
  |  |10610|    172|        }
  |  |10611|       |
  |  |10612|  1.10k|        TARGET(POP_JUMP_IF_NOT_NONE) {
  |  |  ------------------
  |  |  |  |  132|  1.10k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10613|       |            #if _Py_TAIL_CALL_INTERP
  |  |10614|       |            int opcode = POP_JUMP_IF_NOT_NONE;
  |  |10615|       |            (void)(opcode);
  |  |10616|       |            #endif
  |  |10617|  1.10k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10618|  1.10k|            (void)this_instr;
  |  |10619|  1.10k|            frame->instr_ptr = next_instr;
  |  |10620|  1.10k|            next_instr += 2;
  |  |10621|  1.10k|            INSTRUCTION_STATS(POP_JUMP_IF_NOT_NONE);
  |  |  ------------------
  |  |  |  |   71|  1.10k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10622|  1.10k|            _PyStackRef value;
  |  |10623|  1.10k|            _PyStackRef b;
  |  |10624|  1.10k|            _PyStackRef cond;
  |  |10625|       |            /* Skip 1 cache entry */
  |  |10626|       |            // _IS_NONE
  |  |10627|  1.10k|            {
  |  |10628|  1.10k|                value = stack_pointer[-1];
  |  |10629|  1.10k|                if (PyStackRef_IsNone(value)) {
  |  |  ------------------
  |  |  |  |  483|  1.10k|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.10k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (483:32): [True: 458, False: 642]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10630|    458|                    b = PyStackRef_True;
  |  |  ------------------
  |  |  |  |  471|    458|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    458|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10631|    458|                }
  |  |10632|    642|                else {
  |  |10633|    642|                    b = PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    642|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    642|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10634|    642|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10635|    642|                    _PyStackRef tmp = value;
  |  |10636|    642|                    value = b;
  |  |10637|    642|                    stack_pointer[-1] = value;
  |  |10638|    642|                    PyStackRef_CLOSE(tmp);
  |  |10639|    642|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10640|    642|                }
  |  |10641|  1.10k|            }
  |  |10642|       |            // _POP_JUMP_IF_FALSE
  |  |10643|  1.10k|            {
  |  |10644|  1.10k|                cond = b;
  |  |10645|  1.10k|                assert(PyStackRef_BoolCheck(cond));
  |  |  ------------------
  |  |  |  Branch (10645:17): [True: 1.10k, False: 0]
  |  |  ------------------
  |  |10646|  1.10k|                int flag = PyStackRef_IsFalse(cond);
  |  |  ------------------
  |  |  |  |  482|  1.10k|#define PyStackRef_IsFalse(REF) ((REF).bits == (((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.10k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10647|  1.10k|                RECORD_BRANCH_TAKEN(this_instr[1].cache, flag);
  |  |  ------------------
  |  |  |  |  373|  1.10k|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.10k|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|  1.10k|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  |10648|  1.10k|                JUMPBY(flag ? oparg : next_instr->op.code == NOT_TAKEN);
  |  |  ------------------
  |  |  |  |  260|  2.20k|#define JUMPBY(x)       (next_instr += (x))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (260:41): [True: 642, False: 458]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10649|  1.10k|            }
  |  |10650|      0|            stack_pointer += -1;
  |  |10651|  1.10k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.10k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10652|  1.10k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.10k|    { \
  |  |  |  |  201|  1.10k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.10k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.10k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.10k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.10k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.10k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.10k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.10k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.10k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.10k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.10k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.10k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.10k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.10k|    }
  |  |  ------------------
  |  |  |  Branch (10652:13): [True: 1.10k, False: 0]
  |  |  ------------------
  |  |10653|  1.10k|        }
  |  |10654|       |
  |  |10655|  2.09k|        TARGET(POP_JUMP_IF_TRUE) {
  |  |  ------------------
  |  |  |  |  132|  2.09k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10656|       |            #if _Py_TAIL_CALL_INTERP
  |  |10657|       |            int opcode = POP_JUMP_IF_TRUE;
  |  |10658|       |            (void)(opcode);
  |  |10659|       |            #endif
  |  |10660|  2.09k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10661|  2.09k|            (void)this_instr;
  |  |10662|  2.09k|            frame->instr_ptr = next_instr;
  |  |10663|  2.09k|            next_instr += 2;
  |  |10664|  2.09k|            INSTRUCTION_STATS(POP_JUMP_IF_TRUE);
  |  |  ------------------
  |  |  |  |   71|  2.09k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10665|  2.09k|            _PyStackRef cond;
  |  |10666|       |            /* Skip 1 cache entry */
  |  |10667|  2.09k|            cond = stack_pointer[-1];
  |  |10668|  2.09k|            assert(PyStackRef_BoolCheck(cond));
  |  |  ------------------
  |  |  |  Branch (10668:13): [True: 2.09k, False: 0]
  |  |  ------------------
  |  |10669|  2.09k|            int flag = PyStackRef_IsTrue(cond);
  |  |  ------------------
  |  |  |  |  481|  2.09k|#define PyStackRef_IsTrue(REF) ((REF).bits == (((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.09k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10670|  2.09k|            RECORD_BRANCH_TAKEN(this_instr[1].cache, flag);
  |  |  ------------------
  |  |  |  |  373|  2.09k|    FT_ATOMIC_STORE_UINT16_RELAXED(       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.09k|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  374|  2.09k|        bitset, (FT_ATOMIC_LOAD_UINT16_RELAXED(bitset) << 1) | (flag))
  |  |  ------------------
  |  |10671|  2.09k|            JUMPBY(flag ? oparg : next_instr->op.code == NOT_TAKEN);
  |  |  ------------------
  |  |  |  |  260|  4.18k|#define JUMPBY(x)       (next_instr += (x))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (260:41): [True: 1.53k, False: 564]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10672|  2.09k|            stack_pointer += -1;
  |  |10673|  2.09k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  2.09k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10674|  2.09k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  2.09k|    { \
  |  |  |  |  201|  2.09k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  2.09k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  2.09k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  2.09k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  2.09k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  2.09k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  2.09k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  2.09k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2.09k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  2.09k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  2.09k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  2.09k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  2.09k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  2.09k|    }
  |  |  ------------------
  |  |  |  Branch (10674:13): [True: 2.09k, False: 0]
  |  |  ------------------
  |  |10675|  2.09k|        }
  |  |10676|       |
  |  |10677|  3.01k|        TARGET(POP_TOP) {
  |  |  ------------------
  |  |  |  |  132|  3.01k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10678|       |            #if _Py_TAIL_CALL_INTERP
  |  |10679|       |            int opcode = POP_TOP;
  |  |10680|       |            (void)(opcode);
  |  |10681|       |            #endif
  |  |10682|  3.01k|            frame->instr_ptr = next_instr;
  |  |10683|  3.01k|            next_instr += 1;
  |  |10684|  3.01k|            INSTRUCTION_STATS(POP_TOP);
  |  |  ------------------
  |  |  |  |   71|  3.01k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10685|  3.01k|            _PyStackRef value;
  |  |10686|  3.01k|            value = stack_pointer[-1];
  |  |10687|  3.01k|            stack_pointer += -1;
  |  |10688|  3.01k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  3.01k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10689|  3.01k|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10690|  3.01k|            PyStackRef_XCLOSE(value);
  |  |10691|  3.01k|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10692|  3.01k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  3.01k|    { \
  |  |  |  |  201|  3.01k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  3.01k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  3.01k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  3.01k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  3.01k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  3.01k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  3.01k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  3.01k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 3.01k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  3.01k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  3.01k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  3.01k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  3.01k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  3.01k|    }
  |  |  ------------------
  |  |  |  Branch (10692:13): [True: 3.01k, False: 0]
  |  |  ------------------
  |  |10693|  3.01k|        }
  |  |10694|       |
  |  |10695|    180|        TARGET(PUSH_EXC_INFO) {
  |  |  ------------------
  |  |  |  |  132|    180|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10696|       |            #if _Py_TAIL_CALL_INTERP
  |  |10697|       |            int opcode = PUSH_EXC_INFO;
  |  |10698|       |            (void)(opcode);
  |  |10699|       |            #endif
  |  |10700|    180|            frame->instr_ptr = next_instr;
  |  |10701|    180|            next_instr += 1;
  |  |10702|    180|            INSTRUCTION_STATS(PUSH_EXC_INFO);
  |  |  ------------------
  |  |  |  |   71|    180|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10703|    180|            _PyStackRef exc;
  |  |10704|    180|            _PyStackRef prev_exc;
  |  |10705|    180|            _PyStackRef new_exc;
  |  |10706|    180|            exc = stack_pointer[-1];
  |  |10707|    180|            _PyErr_StackItem *exc_info = tstate->exc_info;
  |  |10708|    180|            if (exc_info->exc_value != NULL) {
  |  |  ------------------
  |  |  |  Branch (10708:17): [True: 14, False: 166]
  |  |  ------------------
  |  |10709|     14|                prev_exc = PyStackRef_FromPyObjectSteal(exc_info->exc_value);
  |  |10710|     14|            }
  |  |10711|    166|            else {
  |  |10712|    166|                prev_exc = PyStackRef_None;
  |  |  ------------------
  |  |  |  |  473|    166|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    166|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10713|    166|            }
  |  |10714|    180|            assert(PyStackRef_ExceptionInstanceCheck(exc));
  |  |  ------------------
  |  |  |  Branch (10714:13): [True: 180, False: 0]
  |  |  ------------------
  |  |10715|    180|            exc_info->exc_value = PyStackRef_AsPyObjectNew(exc);
  |  |  ------------------
  |  |  |  |  736|    180|#define PyStackRef_AsPyObjectNew(stackref) Py_NewRef(PyStackRef_AsPyObjectBorrow(stackref))
  |  |  |  |  ------------------
  |  |  |  |  |  |  550|    180|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    180|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    180|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10716|    180|            new_exc = exc;
  |  |10717|    180|            stack_pointer[-1] = prev_exc;
  |  |10718|    180|            stack_pointer[0] = new_exc;
  |  |10719|    180|            stack_pointer += 1;
  |  |10720|    180|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    180|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10721|    180|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    180|    { \
  |  |  |  |  201|    180|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    180|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    180|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    180|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    180|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    180|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    180|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    180|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 180]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    180|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    180|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    180|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    180|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    180|    }
  |  |  ------------------
  |  |  |  Branch (10721:13): [True: 180, False: 0]
  |  |  ------------------
  |  |10722|    180|        }
  |  |10723|       |
  |  |10724|  1.16k|        TARGET(PUSH_NULL) {
  |  |  ------------------
  |  |  |  |  132|  1.16k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10725|       |            #if _Py_TAIL_CALL_INTERP
  |  |10726|       |            int opcode = PUSH_NULL;
  |  |10727|       |            (void)(opcode);
  |  |10728|       |            #endif
  |  |10729|  1.16k|            frame->instr_ptr = next_instr;
  |  |10730|  1.16k|            next_instr += 1;
  |  |10731|  1.16k|            INSTRUCTION_STATS(PUSH_NULL);
  |  |  ------------------
  |  |  |  |   71|  1.16k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10732|  1.16k|            _PyStackRef res;
  |  |10733|  1.16k|            res = PyStackRef_NULL;
  |  |10734|  1.16k|            stack_pointer[0] = res;
  |  |10735|  1.16k|            stack_pointer += 1;
  |  |10736|  1.16k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.16k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10737|  1.16k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.16k|    { \
  |  |  |  |  201|  1.16k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.16k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.16k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.16k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.16k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.16k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.16k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.16k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.16k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.16k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.16k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.16k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.16k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.16k|    }
  |  |  ------------------
  |  |  |  Branch (10737:13): [True: 1.16k, False: 0]
  |  |  ------------------
  |  |10738|  1.16k|        }
  |  |10739|       |
  |  |10740|     20|        TARGET(RAISE_VARARGS) {
  |  |  ------------------
  |  |  |  |  132|     20|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10741|       |            #if _Py_TAIL_CALL_INTERP
  |  |10742|       |            int opcode = RAISE_VARARGS;
  |  |10743|       |            (void)(opcode);
  |  |10744|       |            #endif
  |  |10745|     20|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10746|     20|            (void)this_instr;
  |  |10747|     20|            frame->instr_ptr = next_instr;
  |  |10748|     20|            next_instr += 1;
  |  |10749|     20|            INSTRUCTION_STATS(RAISE_VARARGS);
  |  |  ------------------
  |  |  |  |   71|     20|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10750|     20|            _PyStackRef *args;
  |  |10751|     20|            args = &stack_pointer[-oparg];
  |  |10752|     20|            assert(oparg < 3);
  |  |  ------------------
  |  |  |  Branch (10752:13): [True: 20, False: 0]
  |  |  ------------------
  |  |10753|     20|            PyObject *cause = oparg == 2 ? PyStackRef_AsPyObjectSteal(args[1]) : NULL;
  |  |  ------------------
  |  |  |  Branch (10753:31): [True: 2, False: 18]
  |  |  ------------------
  |  |10754|     20|            PyObject *exc = oparg > 0 ? PyStackRef_AsPyObjectSteal(args[0]) : NULL;
  |  |  ------------------
  |  |  |  Branch (10754:29): [True: 20, False: 0]
  |  |  ------------------
  |  |10755|     20|            stack_pointer += -oparg;
  |  |10756|     20|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     20|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10757|     20|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10758|     20|            int err = do_raise(tstate, exc, cause);
  |  |10759|     20|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10760|     20|            if (err) {
  |  |  ------------------
  |  |  |  Branch (10760:17): [True: 0, False: 20]
  |  |  ------------------
  |  |10761|      0|                assert(oparg == 0);
  |  |  ------------------
  |  |  |  Branch (10761:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10762|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10763|      0|                monitor_reraise(tstate, frame, this_instr);
  |  |10764|      0|                JUMP_TO_LABEL(exception_unwind);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10765|      0|            }
  |  |10766|     20|            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|     20|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10767|      0|        }
  |  |10768|       |
  |  |10769|     12|        TARGET(RERAISE) {
  |  |  ------------------
  |  |  |  |  132|     12|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10770|       |            #if _Py_TAIL_CALL_INTERP
  |  |10771|       |            int opcode = RERAISE;
  |  |10772|       |            (void)(opcode);
  |  |10773|       |            #endif
  |  |10774|     12|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10775|     12|            (void)this_instr;
  |  |10776|     12|            frame->instr_ptr = next_instr;
  |  |10777|     12|            next_instr += 1;
  |  |10778|     12|            INSTRUCTION_STATS(RERAISE);
  |  |  ------------------
  |  |  |  |   71|     12|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10779|     12|            _PyStackRef *values;
  |  |10780|     12|            _PyStackRef exc_st;
  |  |10781|     12|            exc_st = stack_pointer[-1];
  |  |10782|     12|            values = &stack_pointer[-1 - oparg];
  |  |10783|     12|            PyObject *exc = PyStackRef_AsPyObjectSteal(exc_st);
  |  |10784|     12|            assert(oparg >= 0 && oparg <= 2);
  |  |  ------------------
  |  |  |  Branch (10784:13): [True: 12, False: 0]
  |  |  |  Branch (10784:13): [True: 12, False: 0]
  |  |  ------------------
  |  |10785|     12|            if (oparg) {
  |  |  ------------------
  |  |  |  Branch (10785:17): [True: 12, False: 0]
  |  |  ------------------
  |  |10786|     12|                frame->instr_ptr = _PyFrame_GetBytecode(frame) + PyStackRef_UntagInt(values[0]);
  |  |10787|     12|            }
  |  |10788|     12|            assert(exc && PyExceptionInstance_Check(exc));
  |  |  ------------------
  |  |  |  Branch (10788:13): [True: 12, False: 0]
  |  |  |  Branch (10788:13): [True: 12, False: 0]
  |  |  ------------------
  |  |10789|     12|            stack_pointer += -1;
  |  |10790|     12|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     12|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |10791|     12|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10792|     12|            _PyErr_SetRaisedException(tstate, exc);
  |  |10793|     12|            monitor_reraise(tstate, frame, this_instr);
  |  |10794|     12|            JUMP_TO_LABEL(exception_unwind);
  |  |  ------------------
  |  |  |  |  135|     12|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10795|      0|        }
  |  |10796|       |
  |  |10797|      0|        TARGET(RESERVED) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10798|       |            #if _Py_TAIL_CALL_INTERP
  |  |10799|       |            int opcode = RESERVED;
  |  |10800|       |            (void)(opcode);
  |  |10801|       |            #endif
  |  |10802|      0|            frame->instr_ptr = next_instr;
  |  |10803|      0|            next_instr += 1;
  |  |10804|      0|            INSTRUCTION_STATS(RESERVED);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10805|      0|            assert(0 && "Executing RESERVED instruction.");
  |  |  ------------------
  |  |  |  Branch (10805:13): [Folded, False: 0]
  |  |  |  Branch (10805:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10806|      0|            Py_FatalError("Executing RESERVED instruction.");
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  |  |10807|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10807:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10808|      0|        }
  |  |10809|       |
  |  |10810|    541|        TARGET(RESUME) {
  |  |  ------------------
  |  |  |  |  132|    541|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10811|       |            #if _Py_TAIL_CALL_INTERP
  |  |10812|       |            int opcode = RESUME;
  |  |10813|       |            (void)(opcode);
  |  |10814|       |            #endif
  |  |10815|    541|            frame->instr_ptr = next_instr;
  |  |10816|    541|            next_instr += 2;
  |  |10817|    541|            INSTRUCTION_STATS(RESUME);
  |  |  ------------------
  |  |  |  |   71|    541|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10818|    541|            PREDICTED_RESUME:;
  |  |10819|    541|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  |10820|    541|            (void)this_instr;
  |  |10821|       |            // _LOAD_BYTECODE
  |  |10822|    541|            {
  |  |10823|       |                #ifdef Py_GIL_DISABLED
  |  |10824|       |                if (frame->tlbc_index !=
  |  |10825|       |                    ((_PyThreadStateImpl *)tstate)->tlbc_index) {
  |  |10826|       |                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10827|       |                    _Py_CODEUNIT *bytecode =
  |  |10828|       |                    _PyEval_GetExecutableCode(tstate, _PyFrame_GetCode(frame));
  |  |10829|       |                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10830|       |                    if (bytecode == NULL) {
  |  |10831|       |                        JUMP_TO_LABEL(error);
  |  |10832|       |                    }
  |  |10833|       |                    ptrdiff_t off = this_instr - _PyFrame_GetBytecode(frame);
  |  |10834|       |                    frame->tlbc_index = ((_PyThreadStateImpl *)tstate)->tlbc_index;
  |  |10835|       |                    frame->instr_ptr = bytecode + off;
  |  |10836|       |                    next_instr = frame->instr_ptr;
  |  |10837|       |                    DISPATCH();
  |  |10838|       |                }
  |  |10839|       |                #endif
  |  |10840|    541|            }
  |  |10841|       |            // _MAYBE_INSTRUMENT
  |  |10842|    541|            {
  |  |10843|       |                #ifdef Py_GIL_DISABLED
  |  |10844|       |
  |  |10845|       |                int check_instrumentation = 1;
  |  |10846|       |                #else
  |  |10847|    541|                int check_instrumentation = (tstate->tracing == 0);
  |  |10848|    541|                #endif
  |  |10849|    541|                if (check_instrumentation) {
  |  |  ------------------
  |  |  |  Branch (10849:21): [True: 541, False: 0]
  |  |  ------------------
  |  |10850|    541|                    uintptr_t global_version = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) & ~_PY_EVAL_EVENTS_MASK;
  |  |  ------------------
  |  |  |  |  357|    541|#define _PY_EVAL_EVENTS_MASK ((1 << _PY_EVAL_EVENTS_BITS)-1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  356|    541|#define _PY_EVAL_EVENTS_BITS 8
  |  |  |  |  ------------------
  |  |  ------------------
  |  |10851|    541|                    uintptr_t code_version = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version);
  |  |  ------------------
  |  |  |  |  152|    541|#define FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(value) value
  |  |  ------------------
  |  |10852|    541|                    if (code_version != global_version) {
  |  |  ------------------
  |  |  |  Branch (10852:25): [True: 0, False: 541]
  |  |  ------------------
  |  |10853|      0|                        _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10854|      0|                        int err = _Py_Instrument(_PyFrame_GetCode(frame), tstate->interp);
  |  |10855|      0|                        stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10856|      0|                        if (err) {
  |  |  ------------------
  |  |  |  Branch (10856:29): [True: 0, False: 0]
  |  |  ------------------
  |  |10857|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10858|      0|                        }
  |  |10859|      0|                        next_instr = this_instr;
  |  |10860|      0|                        DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10860:25): [True: 0, False: 0]
  |  |  ------------------
  |  |10861|      0|                    }
  |  |10862|    541|                }
  |  |10863|    541|            }
  |  |10864|       |            // _QUICKEN_RESUME
  |  |10865|    541|            {
  |  |10866|    541|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  |10867|    541|                (void)counter;
  |  |10868|    541|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10869|    541|                _Py_Specialize_Resume(this_instr, tstate, frame);
  |  |10870|    541|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10871|    541|            }
  |  |10872|       |            // _CHECK_PERIODIC_IF_NOT_YIELD_FROM
  |  |10873|    541|            {
  |  |10874|    541|                if ((oparg & RESUME_OPARG_LOCATION_MASK) < RESUME_AFTER_YIELD_FROM) {
  |  |  ------------------
  |  |  |  |   92|    541|#define RESUME_OPARG_LOCATION_MASK 0x7
  |  |  ------------------
  |  |                               if ((oparg & RESUME_OPARG_LOCATION_MASK) < RESUME_AFTER_YIELD_FROM) {
  |  |  ------------------
  |  |  |  |   88|    541|#define RESUME_AFTER_YIELD_FROM 2
  |  |  ------------------
  |  |  |  Branch (10874:21): [True: 527, False: 14]
  |  |  ------------------
  |  |10875|    527|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |10876|    527|                    int err = check_periodics(tstate);
  |  |10877|    527|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |10878|    527|                    if (err != 0) {
  |  |  ------------------
  |  |  |  Branch (10878:25): [True: 0, False: 527]
  |  |  ------------------
  |  |10879|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |10880|      0|                    }
  |  |10881|    527|                }
  |  |10882|    541|            }
  |  |10883|    541|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    541|    { \
  |  |  |  |  201|    541|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    541|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    541|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    541|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    541|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    541|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    541|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    541|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 541]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    541|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    541|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    541|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    541|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    541|    }
  |  |  ------------------
  |  |  |  Branch (10883:13): [True: 541, False: 0]
  |  |  ------------------
  |  |10884|    541|        }
  |  |10885|       |
  |  |10886|  2.85k|        TARGET(RESUME_CHECK) {
  |  |  ------------------
  |  |  |  |  132|  2.85k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10887|       |            #if _Py_TAIL_CALL_INTERP
  |  |10888|       |            int opcode = RESUME_CHECK;
  |  |10889|       |            (void)(opcode);
  |  |10890|       |            #endif
  |  |10891|  2.85k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10892|  2.85k|            (void)this_instr;
  |  |10893|  2.85k|            frame->instr_ptr = next_instr;
  |  |10894|  2.85k|            next_instr += 2;
  |  |10895|  2.85k|            INSTRUCTION_STATS(RESUME_CHECK);
  |  |  ------------------
  |  |  |  |   71|  2.85k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10896|  2.85k|            static_assert(1 == 1, "incorrect cache size");
  |  |10897|       |            /* Skip 1 cache entry */
  |  |10898|       |            #if defined(__EMSCRIPTEN__)
  |  |10899|       |            if (_Py_emscripten_signal_clock == 0) {
  |  |10900|       |                UPDATE_MISS_STATS(RESUME);
  |  |10901|       |                assert(_PyOpcode_Deopt[opcode] == (RESUME));
  |  |10902|       |                JUMP_TO_PREDICTED(RESUME);
  |  |10903|       |            }
  |  |10904|       |            _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING;
  |  |10905|       |            #endif
  |  |10906|  2.85k|            uintptr_t eval_breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker);
  |  |10907|  2.85k|            uintptr_t version = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version);
  |  |  ------------------
  |  |  |  |  152|  2.85k|#define FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(value) value
  |  |  ------------------
  |  |10908|  2.85k|            assert((version & _PY_EVAL_EVENTS_MASK) == 0);
  |  |  ------------------
  |  |  |  Branch (10908:13): [True: 2.85k, False: 0]
  |  |  ------------------
  |  |10909|  2.85k|            if (eval_breaker != version) {
  |  |  ------------------
  |  |  |  Branch (10909:17): [True: 0, False: 2.85k]
  |  |  ------------------
  |  |10910|      0|                UPDATE_MISS_STATS(RESUME);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |10911|      0|                assert(_PyOpcode_Deopt[opcode] == (RESUME));
  |  |  ------------------
  |  |  |  Branch (10911:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10912|      0|                JUMP_TO_PREDICTED(RESUME);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |10913|      0|            }
  |  |10914|       |            #ifdef Py_GIL_DISABLED
  |  |10915|       |            if (frame->tlbc_index !=
  |  |10916|       |                ((_PyThreadStateImpl *)tstate)->tlbc_index) {
  |  |10917|       |                UPDATE_MISS_STATS(RESUME);
  |  |10918|       |                assert(_PyOpcode_Deopt[opcode] == (RESUME));
  |  |10919|       |                JUMP_TO_PREDICTED(RESUME);
  |  |10920|       |            }
  |  |10921|       |            #endif
  |  |10922|  2.85k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  2.85k|    { \
  |  |  |  |  201|  2.85k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  2.85k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  2.85k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  2.85k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  2.85k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  2.85k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  2.85k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  2.85k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2.85k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  2.85k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  2.85k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  2.85k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  2.85k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  2.85k|    }
  |  |  ------------------
  |  |  |  Branch (10922:13): [True: 2.85k, False: 0]
  |  |  ------------------
  |  |10923|  2.85k|        }
  |  |10924|       |
  |  |10925|      0|        TARGET(RESUME_CHECK_JIT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10926|       |            #if _Py_TAIL_CALL_INTERP
  |  |10927|       |            int opcode = RESUME_CHECK_JIT;
  |  |10928|       |            (void)(opcode);
  |  |10929|       |            #endif
  |  |10930|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |10931|      0|            (void)this_instr;
  |  |10932|      0|            frame->instr_ptr = next_instr;
  |  |10933|      0|            next_instr += 2;
  |  |10934|      0|            INSTRUCTION_STATS(RESUME_CHECK_JIT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |10935|      0|            static_assert(1 == 1, "incorrect cache size");
  |  |10936|       |            /* Skip 1 cache entry */
  |  |10937|       |            // _RESUME_CHECK
  |  |10938|      0|            {
  |  |10939|       |                #if defined(__EMSCRIPTEN__)
  |  |10940|       |                if (_Py_emscripten_signal_clock == 0) {
  |  |10941|       |                    UPDATE_MISS_STATS(RESUME);
  |  |10942|       |                    assert(_PyOpcode_Deopt[opcode] == (RESUME));
  |  |10943|       |                    JUMP_TO_PREDICTED(RESUME);
  |  |10944|       |                }
  |  |10945|       |                _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING;
  |  |10946|       |                #endif
  |  |10947|      0|                uintptr_t eval_breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker);
  |  |10948|      0|                uintptr_t version = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version);
  |  |  ------------------
  |  |  |  |  152|      0|#define FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(value) value
  |  |  ------------------
  |  |10949|      0|                assert((version & _PY_EVAL_EVENTS_MASK) == 0);
  |  |  ------------------
  |  |  |  Branch (10949:17): [True: 0, False: 0]
  |  |  ------------------
  |  |10950|      0|                if (eval_breaker != version) {
  |  |  ------------------
  |  |  |  Branch (10950:21): [True: 0, False: 0]
  |  |  ------------------
  |  |10951|      0|                    UPDATE_MISS_STATS(RESUME);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |10952|      0|                    assert(_PyOpcode_Deopt[opcode] == (RESUME));
  |  |  ------------------
  |  |  |  Branch (10952:21): [True: 0, False: 0]
  |  |  ------------------
  |  |10953|      0|                    JUMP_TO_PREDICTED(RESUME);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |10954|      0|                }
  |  |10955|       |                #ifdef Py_GIL_DISABLED
  |  |10956|       |                if (frame->tlbc_index !=
  |  |10957|       |                    ((_PyThreadStateImpl *)tstate)->tlbc_index) {
  |  |10958|       |                    UPDATE_MISS_STATS(RESUME);
  |  |10959|       |                    assert(_PyOpcode_Deopt[opcode] == (RESUME));
  |  |10960|       |                    JUMP_TO_PREDICTED(RESUME);
  |  |10961|       |                }
  |  |10962|       |                #endif
  |  |10963|      0|            }
  |  |10964|       |            // _JIT
  |  |10965|      0|            {
  |  |10966|       |                #ifdef _Py_TIER2
  |  |10967|       |                bool is_resume = this_instr->op.code == RESUME_CHECK_JIT;
  |  |10968|       |                _Py_BackoffCounter counter = this_instr[1].counter;
  |  |10969|       |                if ((backoff_counter_triggers(counter) &&
  |  |10970|       |                        !IS_JIT_TRACING() &&
  |  |10971|       |                        (this_instr->op.code == JUMP_BACKWARD_JIT || is_resume)) &&
  |  |10972|       |                    next_instr->op.code != ENTER_EXECUTOR) {
  |  |10973|       |                    _Py_CODEUNIT *insert_exec_at = this_instr;
  |  |10974|       |                    while (oparg > 255) {
  |  |10975|       |                        oparg >>= 8;
  |  |10976|       |                        insert_exec_at--;
  |  |10977|       |                    }
  |  |10978|       |                    int succ = _PyJit_TryInitializeTracing(tstate, frame, this_instr, insert_exec_at,
  |  |10979|       |                        is_resume ? insert_exec_at : next_instr, stack_pointer, 0, NULL, oparg, NULL);
  |  |10980|       |                    if (succ) {
  |  |10981|       |                        ENTER_TRACING();
  |  |10982|       |                    }
  |  |10983|       |                    else {
  |  |10984|       |                        this_instr[1].counter = restart_backoff_counter(counter);
  |  |10985|       |                    }
  |  |10986|       |                }
  |  |10987|       |                else {
  |  |10988|       |                    ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |10989|       |                }
  |  |10990|       |                #endif
  |  |10991|      0|            }
  |  |10992|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (10992:13): [True: 0, False: 0]
  |  |  ------------------
  |  |10993|      0|        }
  |  |10994|       |
  |  |10995|     42|        TARGET(RETURN_GENERATOR) {
  |  |  ------------------
  |  |  |  |  132|     42|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |10996|       |            #if _Py_TAIL_CALL_INTERP
  |  |10997|       |            int opcode = RETURN_GENERATOR;
  |  |10998|       |            (void)(opcode);
  |  |10999|       |            #endif
  |  |11000|     42|            frame->instr_ptr = next_instr;
  |  |11001|     42|            next_instr += 1;
  |  |11002|     42|            INSTRUCTION_STATS(RETURN_GENERATOR);
  |  |  ------------------
  |  |  |  |   71|     42|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11003|     42|            _PyStackRef res;
  |  |11004|     42|            assert(PyStackRef_FunctionCheck(frame->f_funcobj));
  |  |  ------------------
  |  |  |  Branch (11004:13): [True: 42, False: 0]
  |  |  ------------------
  |  |11005|     42|            PyFunctionObject *func = (PyFunctionObject *)PyStackRef_AsPyObjectBorrow(frame->f_funcobj);
  |  |11006|     42|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11007|     42|            PyGenObject *gen = (PyGenObject *)_Py_MakeCoro(func);
  |  |11008|     42|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11009|     42|            if (gen == NULL) {
  |  |  ------------------
  |  |  |  Branch (11009:17): [True: 0, False: 42]
  |  |  ------------------
  |  |11010|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11011|      0|            }
  |  |11012|     42|            assert(STACK_LEVEL() <= 2);
  |  |  ------------------
  |  |  |  Branch (11012:13): [True: 42, False: 0]
  |  |  ------------------
  |  |11013|     42|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11014|     42|            _PyInterpreterFrame *gen_frame = &gen->gi_iframe;
  |  |11015|     42|            frame->instr_ptr++;
  |  |11016|     42|            _PyFrame_Copy(frame, gen_frame);
  |  |11017|     42|            assert(frame->frame_obj == NULL);
  |  |  ------------------
  |  |  |  Branch (11017:13): [True: 42, False: 0]
  |  |  ------------------
  |  |11018|     42|            gen->gi_frame_state = FRAME_CREATED;
  |  |11019|     42|            gen_frame->owner = FRAME_OWNED_BY_GENERATOR;
  |  |11020|     42|            _Py_LeaveRecursiveCallPy(tstate);
  |  |11021|     42|            _PyInterpreterFrame *prev = frame->previous;
  |  |11022|     42|            _PyThreadState_PopFrame(tstate, frame);
  |  |11023|     42|            frame = tstate->current_frame = prev;
  |  |11024|     42|            LOAD_IP(frame->return_offset);
  |  |  ------------------
  |  |  |  |  419|     42|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|     42|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|     42|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 42]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11025|     42|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11026|     42|            res = PyStackRef_FromPyObjectStealMortal((PyObject *)gen);
  |  |11027|     42|            LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|     42|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  |11028|     42|            stack_pointer[0] = res;
  |  |11029|     42|            stack_pointer += 1;
  |  |11030|     42|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     42|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11031|     42|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     42|    { \
  |  |  |  |  201|     42|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     42|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     42|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     42|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     42|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     42|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     42|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     42|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 42]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     42|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     42|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     42|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     42|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     42|    }
  |  |  ------------------
  |  |  |  Branch (11031:13): [True: 42, False: 0]
  |  |  ------------------
  |  |11032|     42|        }
  |  |11033|       |
  |  |11034|  3.43k|        TARGET(RETURN_VALUE) {
  |  |  ------------------
  |  |  |  |  132|  3.43k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11035|       |            #if _Py_TAIL_CALL_INTERP
  |  |11036|       |            int opcode = RETURN_VALUE;
  |  |11037|       |            (void)(opcode);
  |  |11038|       |            #endif
  |  |11039|  3.43k|            frame->instr_ptr = next_instr;
  |  |11040|  3.43k|            next_instr += 1;
  |  |11041|  3.43k|            INSTRUCTION_STATS(RETURN_VALUE);
  |  |  ------------------
  |  |  |  |   71|  3.43k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11042|  3.43k|            _PyStackRef value;
  |  |11043|  3.43k|            _PyStackRef retval;
  |  |11044|  3.43k|            _PyStackRef res;
  |  |11045|       |            // _MAKE_HEAP_SAFE
  |  |11046|  3.43k|            {
  |  |11047|  3.43k|                value = stack_pointer[-1];
  |  |11048|  3.43k|                value = PyStackRef_MakeHeapSafe(value);
  |  |11049|  3.43k|            }
  |  |11050|       |            // _RETURN_VALUE
  |  |11051|  3.43k|            {
  |  |11052|  3.43k|                retval = value;
  |  |11053|  3.43k|                assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (11053:17): [True: 3.43k, False: 0]
  |  |  ------------------
  |  |11054|  3.43k|                _PyStackRef temp = retval;
  |  |11055|  3.43k|                stack_pointer += -1;
  |  |11056|  3.43k|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  3.43k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11057|  3.43k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11058|  3.43k|                assert(STACK_LEVEL() == 0);
  |  |  ------------------
  |  |  |  Branch (11058:17): [True: 3.43k, False: 0]
  |  |  ------------------
  |  |11059|  3.43k|                DTRACE_FUNCTION_RETURN();
  |  |  ------------------
  |  |  |  |  346|  3.43k|#define DTRACE_FUNCTION_RETURN() ((void)0)
  |  |  ------------------
  |  |11060|  3.43k|                _Py_LeaveRecursiveCallPy(tstate);
  |  |11061|  3.43k|                _PyInterpreterFrame *dying = frame;
  |  |11062|  3.43k|                frame = tstate->current_frame = dying->previous;
  |  |11063|  3.43k|                _PyEval_FrameClearAndPop(tstate, dying);
  |  |11064|  3.43k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11065|  3.43k|                LOAD_IP(frame->return_offset);
  |  |  ------------------
  |  |  |  |  419|  3.43k|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|  3.43k|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|  3.43k|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 3.43k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11066|  3.43k|                res = temp;
  |  |11067|  3.43k|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|  3.43k|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  |11068|  3.43k|            }
  |  |11069|      0|            stack_pointer[0] = res;
  |  |11070|  3.43k|            stack_pointer += 1;
  |  |11071|  3.43k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  3.43k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11072|  3.43k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  3.43k|    { \
  |  |  |  |  201|  3.43k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  3.43k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  3.43k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  3.43k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  3.43k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  3.43k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  3.43k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  3.43k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 3.43k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  3.43k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  3.43k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  3.43k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  3.43k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  3.43k|    }
  |  |  ------------------
  |  |  |  Branch (11072:13): [True: 3.43k, False: 0]
  |  |  ------------------
  |  |11073|  3.43k|        }
  |  |11074|       |
  |  |11075|      0|        TARGET(SEND) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11076|       |            #if _Py_TAIL_CALL_INTERP
  |  |11077|       |            int opcode = SEND;
  |  |11078|       |            (void)(opcode);
  |  |11079|       |            #endif
  |  |11080|      0|            frame->instr_ptr = next_instr;
  |  |11081|      0|            next_instr += 2;
  |  |11082|      0|            INSTRUCTION_STATS(SEND);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11083|      0|            PREDICTED_SEND:;
  |  |11084|      0|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  |11085|      0|            (void)this_instr;
  |  |11086|      0|            _PyStackRef receiver;
  |  |11087|      0|            _PyStackRef null_or_index;
  |  |11088|      0|            _PyStackRef v;
  |  |11089|      0|            _PyStackRef retval;
  |  |11090|       |            // _SPECIALIZE_SEND
  |  |11091|      0|            {
  |  |11092|      0|                receiver = stack_pointer[-3];
  |  |11093|      0|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  |11094|      0|                (void)counter;
  |  |11095|      0|                #if ENABLE_SPECIALIZATION
  |  |11096|      0|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|      0|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11097|      0|                    next_instr = this_instr;
  |  |11098|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11099|      0|                    _Py_Specialize_Send(receiver, next_instr);
  |  |11100|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11101|      0|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|      0|    { \
  |  |  |  |  217|      0|        opcode = next_instr->op.code; \
  |  |  |  |  218|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|      0|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|      0|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|      0|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|      0|    }
  |  |  ------------------
  |  |11102|      0|                }
  |  |11103|      0|                OPCODE_DEFERRED_INC(SEND);
  |  |  ------------------
  |  |  |  |   90|      0|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  |11104|      0|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|      0|    do { \
  |  |  |  |  358|      0|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|      0|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11105|      0|                #endif  /* ENABLE_SPECIALIZATION */
  |  |11106|      0|            }
  |  |11107|       |            // _SEND
  |  |11108|      0|            {
  |  |11109|      0|                v = stack_pointer[-1];
  |  |11110|      0|                null_or_index = stack_pointer[-2];
  |  |11111|      0|                PyObject *receiver_o = PyStackRef_AsPyObjectBorrow(receiver);
  |  |11112|      0|                assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (11112:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11113|      0|                if (!IS_PEP523_HOOKED(tstate) &&
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  ------------------
  |  |  |  Branch (11113:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11114|      0|                    (Py_TYPE(receiver_o) == &PyGen_Type || Py_TYPE(receiver_o) == &PyCoro_Type) &&
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                                   (Py_TYPE(receiver_o) == &PyGen_Type || Py_TYPE(receiver_o) == &PyCoro_Type) &&
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11114:22): [True: 0, False: 0]
  |  |  |  Branch (11114:60): [True: 0, False: 0]
  |  |  ------------------
  |  |11115|      0|                    gen_try_set_executing((PyGenObject *)receiver_o))
  |  |  ------------------
  |  |  |  Branch (11115:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11116|      0|                {
  |  |11117|      0|                    PyGenObject *gen = (PyGenObject *)receiver_o;
  |  |11118|      0|                    _PyInterpreterFrame *gen_frame = &gen->gi_iframe;
  |  |11119|      0|                    _PyFrame_StackPush(gen_frame, PyStackRef_MakeHeapSafe(v));
  |  |11120|      0|                    stack_pointer += -1;
  |  |11121|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11122|      0|                    gen->gi_exc_state.previous_item = tstate->exc_info;
  |  |11123|      0|                    tstate->exc_info = &gen->gi_exc_state;
  |  |11124|      0|                    assert( 2u + oparg <= UINT16_MAX);
  |  |  ------------------
  |  |  |  Branch (11124:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11125|      0|                    frame->return_offset = (uint16_t)( 2u + oparg);
  |  |11126|      0|                    assert(gen_frame->previous == NULL);
  |  |  ------------------
  |  |  |  Branch (11126:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11127|      0|                    gen_frame->previous = frame;
  |  |11128|      0|                    DISPATCH_INLINED(gen_frame);
  |  |  ------------------
  |  |  |  |  223|      0|    do {                                                         \
  |  |  |  |  224|      0|        assert(!IS_PEP523_HOOKED(tstate));                       \
  |  |  |  |  225|      0|        _PyFrame_SetStackPointer(frame, stack_pointer);          \
  |  |  |  |  226|      0|        assert((NEW_FRAME)->previous == frame);                  \
  |  |  |  |  227|      0|        frame = tstate->current_frame = (NEW_FRAME);             \
  |  |  |  |  228|      0|        CALL_STAT_INC(inlined_py_calls);                         \
  |  |  |  |  ------------------
  |  |  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  229|      0|        JUMP_TO_LABEL(start_frame);                              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  |  |  ------------------
  |  |  |  |  230|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (230:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11128:21): [True: 0, False: 0]
  |  |  |  Branch (11128:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11129|      0|                }
  |  |11130|      0|                if (!PyStackRef_IsNull(null_or_index) && PyStackRef_IsNone(v)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               if (!PyStackRef_IsNull(null_or_index) && PyStackRef_IsNone(v)) {
  |  |  ------------------
  |  |  |  |  483|      0|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (483:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11130:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11131|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11132|      0|                    _PyStackRef item = _PyForIter_VirtualIteratorNext(tstate, frame, receiver, &null_or_index);
  |  |11133|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11134|      0|                    if (!PyStackRef_IsValid(item)) {
  |  |  ------------------
  |  |  |  Branch (11134:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11135|      0|                        if (PyStackRef_IsError(item)) {
  |  |  ------------------
  |  |  |  Branch (11135:29): [True: 0, False: 0]
  |  |  ------------------
  |  |11136|      0|                            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11137|      0|                        }
  |  |11138|      0|                        JUMPBY(oparg);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  |11139|      0|                        stack_pointer[-2] = null_or_index;
  |  |11140|      0|                        DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11140:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11141|      0|                    }
  |  |11142|      0|                    retval = item;
  |  |11143|      0|                }
  |  |11144|      0|                else {
  |  |11145|      0|                    PyObject *v_o = PyStackRef_AsPyObjectBorrow(v);
  |  |11146|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11147|      0|                    PySendResultPair res = _PyIter_Send(receiver_o, v_o);
  |  |11148|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11149|      0|                    if (res.kind == PYGEN_ERROR) {
  |  |  ------------------
  |  |  |  Branch (11149:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11150|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11151|      0|                    }
  |  |11152|      0|                    stack_pointer += -1;
  |  |11153|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11154|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11155|      0|                    PyStackRef_CLOSE(v);
  |  |11156|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11157|      0|                    retval = PyStackRef_FromPyObjectSteal(res.object);
  |  |11158|      0|                    if (res.kind == PYGEN_RETURN) {
  |  |  ------------------
  |  |  |  Branch (11158:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11159|      0|                        JUMPBY(oparg);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  |11160|      0|                    }
  |  |11161|      0|                    stack_pointer += 1;
  |  |11162|      0|                }
  |  |11163|      0|            }
  |  |11164|      0|            stack_pointer[-2] = null_or_index;
  |  |11165|      0|            stack_pointer[-1] = retval;
  |  |11166|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11166:13): [True: 0, False: 0]
  |  |  ------------------
  |  |11167|      0|        }
  |  |11168|       |
  |  |11169|      0|        TARGET(SEND_ASYNC_GEN) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11170|       |            #if _Py_TAIL_CALL_INTERP
  |  |11171|       |            int opcode = SEND_ASYNC_GEN;
  |  |11172|       |            (void)(opcode);
  |  |11173|       |            #endif
  |  |11174|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |11175|      0|            (void)this_instr;
  |  |11176|      0|            frame->instr_ptr = next_instr;
  |  |11177|      0|            next_instr += 2;
  |  |11178|      0|            INSTRUCTION_STATS(SEND_ASYNC_GEN);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11179|      0|            static_assert(INLINE_CACHE_ENTRIES_SEND == 1, "incorrect cache size");
  |  |11180|      0|            _PyStackRef iter;
  |  |11181|      0|            _PyStackRef null_in;
  |  |11182|      0|            _PyStackRef v;
  |  |11183|      0|            _PyStackRef asend;
  |  |11184|      0|            _PyStackRef null_out;
  |  |11185|      0|            _PyStackRef retval;
  |  |11186|       |            /* Skip 1 cache entry */
  |  |11187|       |            // _GUARD_3OS_ASYNC_GEN_ASEND
  |  |11188|      0|            {
  |  |11189|      0|                iter = stack_pointer[-3];
  |  |11190|      0|                PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
  |  |11191|      0|                if (!PyAsyncGenASend_CheckExact(iter_o)) {
  |  |  ------------------
  |  |  |  |   48|      0|#define PyAsyncGenASend_CheckExact(op) Py_IS_TYPE((op), &_PyAsyncGenASend_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11191:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11192|      0|                    UPDATE_MISS_STATS(SEND);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11193|      0|                    assert(_PyOpcode_Deopt[opcode] == (SEND));
  |  |  ------------------
  |  |  |  Branch (11193:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11194|      0|                    JUMP_TO_PREDICTED(SEND);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11195|      0|                }
  |  |11196|      0|            }
  |  |11197|       |            // _SEND_ASYNC_GEN
  |  |11198|      0|            {
  |  |11199|      0|                v = stack_pointer[-1];
  |  |11200|      0|                null_in = stack_pointer[-2];
  |  |11201|      0|                PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
  |  |11202|      0|                assert(PyAsyncGenASend_CheckExact(iter_o));
  |  |  ------------------
  |  |  |  Branch (11202:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11203|      0|                PyObject *val = PyStackRef_AsPyObjectBorrow(v);
  |  |11204|      0|                PyObject *retval_o;
  |  |11205|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11206|      0|                PySendResult what = _PyAsyncGenASend_Send(iter_o, val, &retval_o);
  |  |11207|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11208|      0|                if (what == PYGEN_ERROR) {
  |  |  ------------------
  |  |  |  Branch (11208:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11209|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11210|      0|                }
  |  |11211|      0|                stack_pointer += -1;
  |  |11212|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11213|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11214|      0|                PyStackRef_CLOSE(v);
  |  |11215|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11216|      0|                asend = iter;
  |  |11217|      0|                null_out = null_in;
  |  |11218|      0|                retval = PyStackRef_FromPyObjectSteal(retval_o);
  |  |11219|      0|                if (what == PYGEN_RETURN) {
  |  |  ------------------
  |  |  |  Branch (11219:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11220|      0|                    JUMPBY(oparg);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  |11221|      0|                }
  |  |11222|      0|            }
  |  |11223|      0|            stack_pointer[-2] = asend;
  |  |11224|      0|            stack_pointer[-1] = null_out;
  |  |11225|      0|            stack_pointer[0] = retval;
  |  |11226|      0|            stack_pointer += 1;
  |  |11227|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11228|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11228:13): [True: 0, False: 0]
  |  |  ------------------
  |  |11229|      0|        }
  |  |11230|       |
  |  |11231|      0|        TARGET(SEND_GEN) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11232|       |            #if _Py_TAIL_CALL_INTERP
  |  |11233|       |            int opcode = SEND_GEN;
  |  |11234|       |            (void)(opcode);
  |  |11235|       |            #endif
  |  |11236|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |11237|      0|            (void)this_instr;
  |  |11238|      0|            frame->instr_ptr = next_instr;
  |  |11239|      0|            next_instr += 2;
  |  |11240|      0|            INSTRUCTION_STATS(SEND_GEN);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11241|      0|            static_assert(INLINE_CACHE_ENTRIES_SEND == 1, "incorrect cache size");
  |  |11242|      0|            _PyStackRef receiver;
  |  |11243|      0|            _PyStackRef v;
  |  |11244|      0|            _PyStackRef gen_frame;
  |  |11245|      0|            _PyStackRef new_frame;
  |  |11246|       |            /* Skip 1 cache entry */
  |  |11247|       |            // _CHECK_PEP_523
  |  |11248|      0|            {
  |  |11249|      0|                if (IS_PEP523_HOOKED(tstate)) {
  |  |  ------------------
  |  |  |  |  517|      0|#define IS_PEP523_HOOKED(tstate) (tstate->interp->eval_frame != NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (517:34): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11250|      0|                    UPDATE_MISS_STATS(SEND);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11251|      0|                    assert(_PyOpcode_Deopt[opcode] == (SEND));
  |  |  ------------------
  |  |  |  Branch (11251:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11252|      0|                    JUMP_TO_PREDICTED(SEND);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11253|      0|                }
  |  |11254|      0|            }
  |  |11255|       |            // _SEND_GEN_FRAME
  |  |11256|      0|            {
  |  |11257|      0|                v = stack_pointer[-1];
  |  |11258|      0|                receiver = stack_pointer[-3];
  |  |11259|      0|                PyGenObject *gen = (PyGenObject *)PyStackRef_AsPyObjectBorrow(receiver);
  |  |11260|      0|                if (Py_TYPE(gen) != &PyGen_Type && Py_TYPE(gen) != &PyCoro_Type) {
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               if (Py_TYPE(gen) != &PyGen_Type && Py_TYPE(gen) != &PyCoro_Type) {
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11260:21): [True: 0, False: 0]
  |  |  |  Branch (11260:52): [True: 0, False: 0]
  |  |  ------------------
  |  |11261|      0|                    UPDATE_MISS_STATS(SEND);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11262|      0|                    assert(_PyOpcode_Deopt[opcode] == (SEND));
  |  |  ------------------
  |  |  |  Branch (11262:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11263|      0|                    JUMP_TO_PREDICTED(SEND);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11264|      0|                }
  |  |11265|      0|                if (!gen_try_set_executing((PyGenObject *)gen)) {
  |  |  ------------------
  |  |  |  Branch (11265:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11266|      0|                    UPDATE_MISS_STATS(SEND);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11267|      0|                    assert(_PyOpcode_Deopt[opcode] == (SEND));
  |  |  ------------------
  |  |  |  Branch (11267:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11268|      0|                    JUMP_TO_PREDICTED(SEND);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11269|      0|                }
  |  |11270|      0|                STAT_INC(SEND, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |11271|      0|                _PyInterpreterFrame *pushed_frame = &gen->gi_iframe;
  |  |11272|      0|                _PyFrame_StackPush(pushed_frame, PyStackRef_MakeHeapSafe(v));
  |  |11273|      0|                gen->gi_exc_state.previous_item = tstate->exc_info;
  |  |11274|      0|                tstate->exc_info = &gen->gi_exc_state;
  |  |11275|      0|                assert( 2u + oparg <= UINT16_MAX);
  |  |  ------------------
  |  |  |  Branch (11275:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11276|      0|                frame->return_offset = (uint16_t)( 2u + oparg);
  |  |11277|      0|                pushed_frame->previous = frame;
  |  |11278|      0|                gen_frame = PyStackRef_Wrap(pushed_frame);
  |  |11279|      0|            }
  |  |11280|       |            // _PUSH_FRAME
  |  |11281|      0|            {
  |  |11282|      0|                new_frame = gen_frame;
  |  |11283|      0|                assert(!IS_PEP523_HOOKED(tstate));
  |  |  ------------------
  |  |  |  Branch (11283:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11284|      0|                _PyInterpreterFrame *temp = PyStackRef_Unwrap(new_frame);
  |  |11285|      0|                stack_pointer += -1;
  |  |11286|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11287|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11288|      0|                assert(temp->previous == frame || temp->previous->previous == frame);
  |  |  ------------------
  |  |  |  Branch (11288:17): [True: 0, False: 0]
  |  |  |  Branch (11288:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11289|      0|                CALL_STAT_INC(inlined_py_calls);
  |  |  ------------------
  |  |  |  |   76|      0|#define CALL_STAT_INC(name) ((void)0)
  |  |  ------------------
  |  |11290|      0|                frame = tstate->current_frame = temp;
  |  |11291|      0|                tstate->py_recursion_remaining--;
  |  |11292|      0|                LOAD_SP();
  |  |  ------------------
  |  |  |  |  425|      0|#define LOAD_SP() \
  |  |  |  |  426|      0|stack_pointer = _PyFrame_GetStackPointer(frame)
  |  |  ------------------
  |  |11293|      0|                LOAD_IP(0);
  |  |  ------------------
  |  |  |  |  419|      0|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|      0|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11294|      0|                DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|      0|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  |11295|      0|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|      0|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  |11296|      0|            }
  |  |11297|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11297:13): [True: 0, False: 0]
  |  |  ------------------
  |  |11298|      0|        }
  |  |11299|       |
  |  |11300|      0|        TARGET(SEND_VIRTUAL) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11301|       |            #if _Py_TAIL_CALL_INTERP
  |  |11302|       |            int opcode = SEND_VIRTUAL;
  |  |11303|       |            (void)(opcode);
  |  |11304|       |            #endif
  |  |11305|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |11306|      0|            (void)this_instr;
  |  |11307|      0|            frame->instr_ptr = next_instr;
  |  |11308|      0|            next_instr += 2;
  |  |11309|      0|            INSTRUCTION_STATS(SEND_VIRTUAL);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11310|      0|            static_assert(INLINE_CACHE_ENTRIES_SEND == 1, "incorrect cache size");
  |  |11311|      0|            _PyStackRef val;
  |  |11312|      0|            _PyStackRef nos;
  |  |11313|      0|            _PyStackRef iter;
  |  |11314|      0|            _PyStackRef null_or_index;
  |  |11315|      0|            _PyStackRef none;
  |  |11316|      0|            _PyStackRef next;
  |  |11317|       |            /* Skip 1 cache entry */
  |  |11318|       |            // _GUARD_TOS_IS_NONE
  |  |11319|      0|            {
  |  |11320|      0|                val = stack_pointer[-1];
  |  |11321|      0|                if (!PyStackRef_IsNone(val)) {
  |  |  ------------------
  |  |  |  |  483|      0|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11321:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11322|      0|                    UPDATE_MISS_STATS(SEND);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11323|      0|                    assert(_PyOpcode_Deopt[opcode] == (SEND));
  |  |  ------------------
  |  |  |  Branch (11323:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11324|      0|                    JUMP_TO_PREDICTED(SEND);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11325|      0|                }
  |  |11326|      0|            }
  |  |11327|       |            // _GUARD_NOS_NOT_NULL
  |  |11328|      0|            {
  |  |11329|      0|                nos = stack_pointer[-2];
  |  |11330|      0|                if (PyStackRef_IsNull(nos)) {
  |  |  ------------------
  |  |  |  |  470|      0|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      0|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (470:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11331|      0|                    UPDATE_MISS_STATS(SEND);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11332|      0|                    assert(_PyOpcode_Deopt[opcode] == (SEND));
  |  |  ------------------
  |  |  |  Branch (11332:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11333|      0|                    JUMP_TO_PREDICTED(SEND);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11334|      0|                }
  |  |11335|      0|            }
  |  |11336|       |            // _SEND_VIRTUAL
  |  |11337|      0|            {
  |  |11338|      0|                none = val;
  |  |11339|      0|                null_or_index = nos;
  |  |11340|      0|                iter = stack_pointer[-3];
  |  |11341|      0|                PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
  |  |11342|      0|                Py_ssize_t index = PyStackRef_UntagInt(null_or_index);
  |  |11343|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11344|      0|                _PyObjectIndexPair next_index = Py_TYPE(iter_o)->_tp_iteritem(iter_o, index);
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11345|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11346|      0|                PyObject *next_o = next_index.object;
  |  |11347|      0|                index = next_index.index;
  |  |11348|      0|                if (next_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (11348:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11349|      0|                    if (index < 0) {
  |  |  ------------------
  |  |  |  Branch (11349:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11350|      0|                        JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11351|      0|                    }
  |  |11352|      0|                    next = none;
  |  |11353|      0|                    JUMPBY(oparg);
  |  |  ------------------
  |  |  |  |  260|      0|#define JUMPBY(x)       (next_instr += (x))
  |  |  ------------------
  |  |11354|      0|                    DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11354:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11355|      0|                }
  |  |11356|      0|                next = PyStackRef_FromPyObjectSteal(next_o);
  |  |11357|      0|                null_or_index = PyStackRef_TagInt(index);
  |  |11358|      0|            }
  |  |11359|      0|            stack_pointer[-2] = null_or_index;
  |  |11360|      0|            stack_pointer[-1] = next;
  |  |11361|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11361:13): [True: 0, False: 0]
  |  |  ------------------
  |  |11362|      0|        }
  |  |11363|       |
  |  |11364|      0|        TARGET(SETUP_ANNOTATIONS) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11365|       |            #if _Py_TAIL_CALL_INTERP
  |  |11366|       |            int opcode = SETUP_ANNOTATIONS;
  |  |11367|       |            (void)(opcode);
  |  |11368|       |            #endif
  |  |11369|      0|            frame->instr_ptr = next_instr;
  |  |11370|      0|            next_instr += 1;
  |  |11371|      0|            INSTRUCTION_STATS(SETUP_ANNOTATIONS);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11372|      0|            if (LOCALS() == NULL) {
  |  |  ------------------
  |  |  |  |  327|      0|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  |  |  Branch (11372:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11373|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11374|      0|                _PyErr_Format(tstate, PyExc_SystemError,
  |  |11375|      0|                              "no locals found when setting up annotations");
  |  |11376|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11377|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11378|      0|            }
  |  |11379|      0|            int err;
  |  |11380|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11381|      0|            PyObject* ann_dict = _PyMapping_GetOptionalItem2(LOCALS(), &_Py_ID(__annotations__), &err);
  |  |  ------------------
  |  |  |  |  327|      0|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  |                           PyObject* ann_dict = _PyMapping_GetOptionalItem2(LOCALS(), &_Py_ID(__annotations__), &err);
  |  |  ------------------
  |  |  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11382|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11383|      0|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (11383:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11384|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11385|      0|            }
  |  |11386|      0|            if (ann_dict == NULL) {
  |  |  ------------------
  |  |  |  Branch (11386:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11387|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11388|      0|                ann_dict = PyDict_New();
  |  |11389|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11390|      0|                if (ann_dict == NULL) {
  |  |  ------------------
  |  |  |  Branch (11390:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11391|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11392|      0|                }
  |  |11393|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11394|      0|                err = PyObject_SetItem(LOCALS(), &_Py_ID(__annotations__),
  |  |  ------------------
  |  |  |  |  327|      0|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  |                               err = PyObject_SetItem(LOCALS(), &_Py_ID(__annotations__),
  |  |  ------------------
  |  |  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11395|      0|                                       ann_dict);
  |  |11396|      0|                Py_DECREF(ann_dict);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11397|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11398|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (11398:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11399|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11400|      0|                }
  |  |11401|      0|            }
  |  |11402|      0|            else {
  |  |11403|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11404|      0|                Py_DECREF(ann_dict);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11405|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11406|      0|            }
  |  |11407|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11407:13): [True: 0, False: 0]
  |  |  ------------------
  |  |11408|      0|        }
  |  |11409|       |
  |  |11410|      2|        TARGET(SET_ADD) {
  |  |  ------------------
  |  |  |  |  132|      2|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11411|       |            #if _Py_TAIL_CALL_INTERP
  |  |11412|       |            int opcode = SET_ADD;
  |  |11413|       |            (void)(opcode);
  |  |11414|       |            #endif
  |  |11415|      2|            frame->instr_ptr = next_instr;
  |  |11416|      2|            next_instr += 1;
  |  |11417|      2|            INSTRUCTION_STATS(SET_ADD);
  |  |  ------------------
  |  |  |  |   71|      2|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11418|      2|            _PyStackRef set;
  |  |11419|      2|            _PyStackRef v;
  |  |11420|      2|            v = stack_pointer[-1];
  |  |11421|      2|            set = stack_pointer[-2 - (oparg-1)];
  |  |11422|      2|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11423|      2|            int err = _PySet_AddTakeRef((PySetObject *)PyStackRef_AsPyObjectBorrow(set),
  |  |11424|      2|                                        PyStackRef_AsPyObjectSteal(v));
  |  |11425|      2|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11426|      2|            if (err) {
  |  |  ------------------
  |  |  |  Branch (11426:17): [True: 0, False: 2]
  |  |  ------------------
  |  |11427|      0|                JUMP_TO_LABEL(pop_1_error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11428|      0|            }
  |  |11429|      2|            stack_pointer += -1;
  |  |11430|      2|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      2|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11431|      2|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      2|    { \
  |  |  |  |  201|      2|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      2|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      2|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      2|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      2|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      2|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      2|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      2|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      2|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      2|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      2|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      2|    }
  |  |  ------------------
  |  |  |  Branch (11431:13): [True: 2, False: 0]
  |  |  ------------------
  |  |11432|      2|        }
  |  |11433|       |
  |  |11434|    350|        TARGET(SET_FUNCTION_ATTRIBUTE) {
  |  |  ------------------
  |  |  |  |  132|    350|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11435|       |            #if _Py_TAIL_CALL_INTERP
  |  |11436|       |            int opcode = SET_FUNCTION_ATTRIBUTE;
  |  |11437|       |            (void)(opcode);
  |  |11438|       |            #endif
  |  |11439|    350|            frame->instr_ptr = next_instr;
  |  |11440|    350|            next_instr += 1;
  |  |11441|    350|            INSTRUCTION_STATS(SET_FUNCTION_ATTRIBUTE);
  |  |  ------------------
  |  |  |  |   71|    350|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11442|    350|            _PyStackRef attr_st;
  |  |11443|    350|            _PyStackRef func_in;
  |  |11444|    350|            _PyStackRef func_out;
  |  |11445|    350|            func_in = stack_pointer[-1];
  |  |11446|    350|            attr_st = stack_pointer[-2];
  |  |11447|    350|            PyObject *func = PyStackRef_AsPyObjectBorrow(func_in);
  |  |11448|    350|            PyObject *attr = PyStackRef_AsPyObjectSteal(attr_st);
  |  |11449|    350|            func_out = func_in;
  |  |11450|    350|            assert(PyFunction_Check(func));
  |  |  ------------------
  |  |  |  Branch (11450:13): [True: 350, False: 0]
  |  |  ------------------
  |  |11451|    350|            size_t offset = _Py_FunctionAttributeOffsets[oparg];
  |  |11452|    350|            assert(offset != 0);
  |  |  ------------------
  |  |  |  Branch (11452:13): [True: 350, False: 0]
  |  |  ------------------
  |  |11453|    350|            PyObject **ptr = (PyObject **)(((char *)func) + offset);
  |  |11454|    350|            assert(*ptr == NULL);
  |  |  ------------------
  |  |  |  Branch (11454:13): [True: 350, False: 0]
  |  |  ------------------
  |  |11455|    350|            *ptr = attr;
  |  |11456|    350|            stack_pointer[-2] = func_out;
  |  |11457|    350|            stack_pointer += -1;
  |  |11458|    350|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    350|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11459|    350|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    350|    { \
  |  |  |  |  201|    350|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    350|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    350|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    350|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    350|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    350|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    350|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    350|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 350]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    350|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    350|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    350|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    350|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    350|    }
  |  |  ------------------
  |  |  |  Branch (11459:13): [True: 350, False: 0]
  |  |  ------------------
  |  |11460|    350|        }
  |  |11461|       |
  |  |11462|      0|        TARGET(SET_UPDATE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11463|       |            #if _Py_TAIL_CALL_INTERP
  |  |11464|       |            int opcode = SET_UPDATE;
  |  |11465|       |            (void)(opcode);
  |  |11466|       |            #endif
  |  |11467|      0|            frame->instr_ptr = next_instr;
  |  |11468|      0|            next_instr += 1;
  |  |11469|      0|            INSTRUCTION_STATS(SET_UPDATE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11470|      0|            _PyStackRef set;
  |  |11471|      0|            _PyStackRef iterable;
  |  |11472|      0|            _PyStackRef i;
  |  |11473|      0|            _PyStackRef value;
  |  |11474|       |            // _SET_UPDATE
  |  |11475|      0|            {
  |  |11476|      0|                iterable = stack_pointer[-1];
  |  |11477|      0|                set = stack_pointer[-2 - (oparg-1)];
  |  |11478|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11479|      0|                int err = _PySet_Update(PyStackRef_AsPyObjectBorrow(set),
  |  |11480|      0|                                    PyStackRef_AsPyObjectBorrow(iterable));
  |  |11481|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11482|      0|                if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (11482:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11483|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11484|      0|                }
  |  |11485|      0|                i = iterable;
  |  |11486|      0|            }
  |  |11487|       |            // _POP_TOP
  |  |11488|      0|            {
  |  |11489|      0|                value = i;
  |  |11490|      0|                stack_pointer += -1;
  |  |11491|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11492|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11493|      0|                PyStackRef_XCLOSE(value);
  |  |11494|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11495|      0|            }
  |  |11496|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11496:13): [True: 0, False: 0]
  |  |  ------------------
  |  |11497|      0|        }
  |  |11498|       |
  |  |11499|    554|        TARGET(STORE_ATTR) {
  |  |  ------------------
  |  |  |  |  132|    554|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11500|       |            #if _Py_TAIL_CALL_INTERP
  |  |11501|       |            int opcode = STORE_ATTR;
  |  |11502|       |            (void)(opcode);
  |  |11503|       |            #endif
  |  |11504|    554|            frame->instr_ptr = next_instr;
  |  |11505|    554|            next_instr += 5;
  |  |11506|    554|            INSTRUCTION_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |   71|    554|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11507|    554|            PREDICTED_STORE_ATTR:;
  |  |11508|    554|            _Py_CODEUNIT* const this_instr = next_instr - 5;
  |  |11509|    554|            (void)this_instr;
  |  |11510|    554|            _PyStackRef owner;
  |  |11511|    554|            _PyStackRef v;
  |  |11512|       |            // _SPECIALIZE_STORE_ATTR
  |  |11513|    554|            {
  |  |11514|    554|                owner = stack_pointer[-1];
  |  |11515|    554|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  |11516|    554|                (void)counter;
  |  |11517|    554|                #if ENABLE_SPECIALIZATION
  |  |11518|    554|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|    554|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 128, False: 426]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11519|    128|                    PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|    128|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|    128|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|    128|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11519:38): [True: 128, False: 0]
  |  |  ------------------
  |  |11520|      0|                    next_instr = this_instr;
  |  |11521|    128|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11522|    128|                    _Py_Specialize_StoreAttr(owner, next_instr, name);
  |  |11523|    128|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11524|    128|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|    128|    { \
  |  |  |  |  217|    128|        opcode = next_instr->op.code; \
  |  |  |  |  218|    128|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    128|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|    128|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|    128|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|    128|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|    128|    }
  |  |  ------------------
  |  |11525|    128|                }
  |  |11526|    554|                OPCODE_DEFERRED_INC(STORE_ATTR);
  |  |  ------------------
  |  |  |  |   90|    554|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  |11527|    554|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|    554|    do { \
  |  |  |  |  358|    554|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|    554|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 554]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11528|    554|                #endif  /* ENABLE_SPECIALIZATION */
  |  |11529|    554|            }
  |  |11530|       |            /* Skip 3 cache entries */
  |  |11531|       |            // _STORE_ATTR
  |  |11532|      0|            {
  |  |11533|    554|                v = stack_pointer[-2];
  |  |11534|    554|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|    554|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|    554|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|    554|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    426|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11534:34): [True: 426, False: 128]
  |  |  ------------------
  |  |11535|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11536|    426|                int err = PyObject_SetAttr(PyStackRef_AsPyObjectBorrow(owner),
  |  |11537|    426|                                       name, PyStackRef_AsPyObjectBorrow(v));
  |  |11538|    426|                _PyStackRef tmp = owner;
  |  |11539|    426|                owner = PyStackRef_NULL;
  |  |11540|    426|                stack_pointer[-1] = owner;
  |  |11541|    426|                PyStackRef_CLOSE(tmp);
  |  |11542|    426|                tmp = v;
  |  |11543|    426|                v = PyStackRef_NULL;
  |  |11544|    426|                stack_pointer[-2] = v;
  |  |11545|    426|                PyStackRef_CLOSE(tmp);
  |  |11546|    426|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11547|    426|                stack_pointer += -2;
  |  |11548|    426|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    426|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11549|    426|                if (err) {
  |  |  ------------------
  |  |  |  Branch (11549:21): [True: 0, False: 426]
  |  |  ------------------
  |  |11550|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11551|      0|                }
  |  |11552|    426|            }
  |  |11553|    426|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    426|    { \
  |  |  |  |  201|    426|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    426|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    426|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    426|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    426|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    426|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    426|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    426|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 426]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    426|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    426|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    426|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    426|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    426|    }
  |  |  ------------------
  |  |  |  Branch (11553:13): [True: 426, False: 0]
  |  |  ------------------
  |  |11554|    426|        }
  |  |11555|       |
  |  |11556|  1.37k|        TARGET(STORE_ATTR_INSTANCE_VALUE) {
  |  |  ------------------
  |  |  |  |  132|  1.37k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11557|       |            #if _Py_TAIL_CALL_INTERP
  |  |11558|       |            int opcode = STORE_ATTR_INSTANCE_VALUE;
  |  |11559|       |            (void)(opcode);
  |  |11560|       |            #endif
  |  |11561|  1.37k|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |11562|  1.37k|            (void)this_instr;
  |  |11563|  1.37k|            frame->instr_ptr = next_instr;
  |  |11564|  1.37k|            next_instr += 5;
  |  |11565|  1.37k|            INSTRUCTION_STATS(STORE_ATTR_INSTANCE_VALUE);
  |  |  ------------------
  |  |  |  |   71|  1.37k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11566|  1.37k|            static_assert(INLINE_CACHE_ENTRIES_STORE_ATTR == 4, "incorrect cache size");
  |  |11567|  1.37k|            _PyStackRef value;
  |  |11568|  1.37k|            _PyStackRef owner;
  |  |11569|  1.37k|            _PyStackRef o;
  |  |11570|       |            /* Skip 1 cache entry */
  |  |11571|       |            // _LOCK_OBJECT
  |  |11572|  1.37k|            {
  |  |11573|  1.37k|                value = stack_pointer[-1];
  |  |11574|  1.37k|                if (!LOCK_OBJECT(PyStackRef_AsPyObjectBorrow(value))) {
  |  |  ------------------
  |  |  |  |  321|  1.37k|#  define LOCK_OBJECT(op) (1)
  |  |  ------------------
  |  |  |  Branch (11574:21): [Folded, False: 1.37k]
  |  |  ------------------
  |  |11575|      0|                    UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11576|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11576:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11577|      0|                    JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11578|      0|                }
  |  |11579|  1.37k|            }
  |  |11580|       |            // _GUARD_TYPE_VERSION_LOCKED
  |  |11581|  1.37k|            {
  |  |11582|  1.37k|                owner = value;
  |  |11583|  1.37k|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  |11584|  1.37k|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  |11585|  1.37k|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (11585:17): [True: 1.37k, False: 0]
  |  |  ------------------
  |  |11586|  1.37k|                PyTypeObject *tp = Py_TYPE(owner_o);
  |  |  ------------------
  |  |  |  |  213|  1.37k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.37k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.37k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11587|  1.37k|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|  1.37k|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (11587:21): [True: 0, False: 1.37k]
  |  |  ------------------
  |  |11588|      0|                    UNLOCK_OBJECT(owner_o);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11589|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (11589:25): [True: 0, Folded]
  |  |  ------------------
  |  |11590|      0|                        UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11591|      0|                        assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11591:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11592|      0|                        JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11593|      0|                    }
  |  |11594|      0|                }
  |  |11595|  1.37k|            }
  |  |11596|       |            // _GUARD_DORV_NO_DICT
  |  |11597|  1.37k|            {
  |  |11598|  1.37k|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  |11599|  1.37k|                assert(Py_TYPE(owner_o)->tp_dictoffset < 0);
  |  |  ------------------
  |  |  |  Branch (11599:17): [True: 1.37k, False: 0]
  |  |  ------------------
  |  |11600|  1.37k|                assert(Py_TYPE(owner_o)->tp_flags & Py_TPFLAGS_INLINE_VALUES);
  |  |  ------------------
  |  |  |  Branch (11600:17): [True: 1.37k, False: 0]
  |  |  ------------------
  |  |11601|  1.37k|                if (_PyObject_GetManagedDict(owner_o) ||
  |  |  ------------------
  |  |  |  Branch (11601:21): [True: 0, False: 1.37k]
  |  |  ------------------
  |  |11602|  1.37k|                    !FT_ATOMIC_LOAD_UINT8(_PyObject_InlineValues(owner_o)->valid)) {
  |  |  ------------------
  |  |  |  |  154|  1.37k|#define FT_ATOMIC_LOAD_UINT8(value) value
  |  |  ------------------
  |  |  |  Branch (11602:21): [True: 0, False: 1.37k]
  |  |  ------------------
  |  |11603|      0|                    UNLOCK_OBJECT(owner_o);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11604|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (11604:25): [True: 0, Folded]
  |  |  ------------------
  |  |11605|      0|                        UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11606|      0|                        assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11606:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11607|      0|                        JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11608|      0|                    }
  |  |11609|      0|                }
  |  |11610|  1.37k|            }
  |  |11611|       |            // _STORE_ATTR_INSTANCE_VALUE
  |  |11612|  1.37k|            {
  |  |11613|  1.37k|                value = stack_pointer[-2];
  |  |11614|  1.37k|                uint16_t offset = read_u16(&this_instr[4].cache);
  |  |11615|  1.37k|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  |11616|  1.37k|                STAT_INC(STORE_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|  1.37k|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |11617|  1.37k|                assert(_PyObject_GetManagedDict(owner_o) == NULL);
  |  |  ------------------
  |  |  |  Branch (11617:17): [True: 1.37k, False: 0]
  |  |  ------------------
  |  |11618|  1.37k|                PyObject **value_ptr = (PyObject**)(((char *)owner_o) + offset);
  |  |11619|  1.37k|                PyObject *old_value = *value_ptr;
  |  |11620|  1.37k|                FT_ATOMIC_STORE_PTR_RELEASE(*value_ptr, PyStackRef_AsPyObjectSteal(value));
  |  |  ------------------
  |  |  |  |  164|  1.37k|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  |  |11621|  1.37k|                if (old_value == NULL) {
  |  |  ------------------
  |  |  |  Branch (11621:21): [True: 1.12k, False: 248]
  |  |  ------------------
  |  |11622|  1.12k|                    PyDictValues *values = _PyObject_InlineValues(owner_o);
  |  |11623|  1.12k|                    Py_ssize_t index = value_ptr - values->values;
  |  |11624|  1.12k|                    _PyDictValues_AddToInsertionOrder(values, index);
  |  |11625|  1.12k|                }
  |  |11626|  1.37k|                UNLOCK_OBJECT(owner_o);
  |  |  ------------------
  |  |  |  |  322|  1.37k|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11627|  1.37k|                o = owner;
  |  |11628|  1.37k|                stack_pointer[-2] = o;
  |  |11629|  1.37k|                stack_pointer += -1;
  |  |11630|  1.37k|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.37k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11631|  1.37k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11632|  1.37k|                Py_XDECREF(old_value);
  |  |  ------------------
  |  |  |  |   69|  1.37k|    do { \
  |  |  |  |   70|  1.37k|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.37k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.37k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   71|  1.37k|        if (xop != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (71:13): [True: 248, False: 1.12k]
  |  |  |  |  ------------------
  |  |  |  |   72|    248|            Py_DECREF(xop); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|    248|    do { \
  |  |  |  |  |  |   81|    248|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    248|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    248|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|    248|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|    248|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|    248|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|    248|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 186, False: 62]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|    186|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|    186|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|    186|            break; \
  |  |  |  |  |  |   85|    186|        } \
  |  |  |  |  |  |   86|    248|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|     62|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|     62|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 62, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|     62|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|     62|    do { \
  |  |  |  |  |  |  |  |  113|     62|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|     62|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 62]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|     62|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 62]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|     62|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|     62|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|     62|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|     62|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|     62|            (*dealloc)(op); \
  |  |  |  |  |  |   91|     62|        } \
  |  |  |  |  |  |   92|     62|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 62]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   73|    248|        } \
  |  |  |  |   74|  1.37k|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (74:14): [Folded, False: 1.37k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11633|  1.37k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11634|  1.37k|            }
  |  |11635|       |            // _POP_TOP
  |  |11636|      0|            {
  |  |11637|  1.37k|                value = o;
  |  |11638|  1.37k|                stack_pointer += -1;
  |  |11639|  1.37k|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  1.37k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11640|  1.37k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11641|  1.37k|                PyStackRef_XCLOSE(value);
  |  |11642|  1.37k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11643|  1.37k|            }
  |  |11644|  1.37k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.37k|    { \
  |  |  |  |  201|  1.37k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.37k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.37k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.37k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.37k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.37k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.37k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.37k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.37k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.37k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.37k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.37k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.37k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.37k|    }
  |  |  ------------------
  |  |  |  Branch (11644:13): [True: 1.37k, False: 0]
  |  |  ------------------
  |  |11645|  1.37k|        }
  |  |11646|       |
  |  |11647|     58|        TARGET(STORE_ATTR_SLOT) {
  |  |  ------------------
  |  |  |  |  132|     58|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11648|       |            #if _Py_TAIL_CALL_INTERP
  |  |11649|       |            int opcode = STORE_ATTR_SLOT;
  |  |11650|       |            (void)(opcode);
  |  |11651|       |            #endif
  |  |11652|     58|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |11653|     58|            (void)this_instr;
  |  |11654|     58|            frame->instr_ptr = next_instr;
  |  |11655|     58|            next_instr += 5;
  |  |11656|     58|            INSTRUCTION_STATS(STORE_ATTR_SLOT);
  |  |  ------------------
  |  |  |  |   71|     58|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11657|     58|            static_assert(INLINE_CACHE_ENTRIES_STORE_ATTR == 4, "incorrect cache size");
  |  |11658|     58|            _PyStackRef owner;
  |  |11659|     58|            _PyStackRef value;
  |  |11660|     58|            _PyStackRef o;
  |  |11661|       |            /* Skip 1 cache entry */
  |  |11662|       |            // _GUARD_TYPE_VERSION
  |  |11663|     58|            {
  |  |11664|     58|                owner = stack_pointer[-1];
  |  |11665|     58|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  |11666|     58|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|     58|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11667|     58|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (11667:17): [True: 58, False: 0]
  |  |  ------------------
  |  |11668|     58|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|     58|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (11668:21): [True: 0, False: 58]
  |  |  ------------------
  |  |11669|      0|                    UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11670|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11670:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11671|      0|                    JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11672|      0|                }
  |  |11673|     58|            }
  |  |11674|       |            // _STORE_ATTR_SLOT
  |  |11675|     58|            {
  |  |11676|     58|                value = stack_pointer[-2];
  |  |11677|     58|                uint16_t index = read_u16(&this_instr[4].cache);
  |  |11678|     58|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  |11679|     58|                if (!LOCK_OBJECT(owner_o)) {
  |  |  ------------------
  |  |  |  |  321|     58|#  define LOCK_OBJECT(op) (1)
  |  |  ------------------
  |  |  |  Branch (11679:21): [Folded, False: 58]
  |  |  ------------------
  |  |11680|      0|                    UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11681|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11681:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11682|      0|                    JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11683|      0|                }
  |  |11684|     58|                char *addr = (char *)owner_o + index;
  |  |11685|     58|                STAT_INC(STORE_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|     58|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |11686|     58|                PyObject *old_value = *(PyObject **)addr;
  |  |11687|     58|                FT_ATOMIC_STORE_PTR_RELEASE(*(PyObject **)addr, PyStackRef_AsPyObjectSteal(value));
  |  |  ------------------
  |  |  |  |  164|     58|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  |  |11688|     58|                UNLOCK_OBJECT(owner_o);
  |  |  ------------------
  |  |  |  |  322|     58|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11689|     58|                o = owner;
  |  |11690|     58|                stack_pointer[-2] = o;
  |  |11691|     58|                stack_pointer += -1;
  |  |11692|     58|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     58|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11693|     58|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11694|     58|                Py_XDECREF(old_value);
  |  |  ------------------
  |  |  |  |   69|     58|    do { \
  |  |  |  |   70|     58|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   71|     58|        if (xop != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (71:13): [True: 0, False: 58]
  |  |  |  |  ------------------
  |  |  |  |   72|      0|            Py_DECREF(xop); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   73|      0|        } \
  |  |  |  |   74|     58|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (74:14): [Folded, False: 58]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11695|     58|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11696|     58|            }
  |  |11697|       |            // _POP_TOP
  |  |11698|      0|            {
  |  |11699|     58|                value = o;
  |  |11700|     58|                stack_pointer += -1;
  |  |11701|     58|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     58|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11702|     58|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11703|     58|                PyStackRef_XCLOSE(value);
  |  |11704|     58|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11705|     58|            }
  |  |11706|     58|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     58|    { \
  |  |  |  |  201|     58|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     58|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     58|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     58|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     58|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     58|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     58|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     58|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 58]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     58|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     58|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     58|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     58|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     58|    }
  |  |  ------------------
  |  |  |  Branch (11706:13): [True: 58, False: 0]
  |  |  ------------------
  |  |11707|     58|        }
  |  |11708|       |
  |  |11709|      0|        TARGET(STORE_ATTR_WITH_HINT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11710|       |            #if _Py_TAIL_CALL_INTERP
  |  |11711|       |            int opcode = STORE_ATTR_WITH_HINT;
  |  |11712|       |            (void)(opcode);
  |  |11713|       |            #endif
  |  |11714|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |11715|      0|            (void)this_instr;
  |  |11716|      0|            frame->instr_ptr = next_instr;
  |  |11717|      0|            next_instr += 5;
  |  |11718|      0|            INSTRUCTION_STATS(STORE_ATTR_WITH_HINT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11719|      0|            static_assert(INLINE_CACHE_ENTRIES_STORE_ATTR == 4, "incorrect cache size");
  |  |11720|      0|            _PyStackRef owner;
  |  |11721|      0|            _PyStackRef value;
  |  |11722|      0|            _PyStackRef o;
  |  |11723|       |            /* Skip 1 cache entry */
  |  |11724|       |            // _GUARD_TYPE_VERSION
  |  |11725|      0|            {
  |  |11726|      0|                owner = stack_pointer[-1];
  |  |11727|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  |11728|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11729|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (11729:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11730|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (11730:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11731|      0|                    UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11732|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11732:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11733|      0|                    JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11734|      0|                }
  |  |11735|      0|            }
  |  |11736|       |            // _STORE_ATTR_WITH_HINT
  |  |11737|      0|            {
  |  |11738|      0|                value = stack_pointer[-2];
  |  |11739|      0|                uint16_t hint = read_u16(&this_instr[4].cache);
  |  |11740|      0|                PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
  |  |11741|      0|                assert(Py_TYPE(owner_o)->tp_flags & Py_TPFLAGS_MANAGED_DICT);
  |  |  ------------------
  |  |  |  Branch (11741:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11742|      0|                PyDictObject *dict = _PyObject_GetManagedDict(owner_o);
  |  |11743|      0|                if (dict == NULL) {
  |  |  ------------------
  |  |  |  Branch (11743:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11744|      0|                    UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11745|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11745:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11746|      0|                    JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11747|      0|                }
  |  |11748|      0|                if (!LOCK_OBJECT(dict)) {
  |  |  ------------------
  |  |  |  |  321|      0|#  define LOCK_OBJECT(op) (1)
  |  |  ------------------
  |  |  |  Branch (11748:21): [Folded, False: 0]
  |  |  ------------------
  |  |11749|      0|                    UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11750|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11750:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11751|      0|                    JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11752|      0|                }
  |  |11753|      0|                assert(PyDict_CheckExact((PyObject *)dict));
  |  |  ------------------
  |  |  |  Branch (11753:17): [True: 0, False: 0]
  |  |  ------------------
  |  |11754|      0|                PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|      0|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11754:34): [True: 0, False: 0]
  |  |  ------------------
  |  |11755|      0|                if (hint >= (size_t)dict->ma_keys->dk_nentries ||
  |  |  ------------------
  |  |  |  Branch (11755:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11756|      0|                    dict->ma_keys->dk_kind != DICT_KEYS_UNICODE) {
  |  |  ------------------
  |  |  |  Branch (11756:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11757|      0|                    UNLOCK_OBJECT(dict);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11758|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (11758:25): [True: 0, Folded]
  |  |  ------------------
  |  |11759|      0|                        UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11760|      0|                        assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11760:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11761|      0|                        JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11762|      0|                    }
  |  |11763|      0|                }
  |  |11764|      0|                PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(dict->ma_keys) + hint;
  |  |11765|      0|                if (ep->me_key != name) {
  |  |  ------------------
  |  |  |  Branch (11765:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11766|      0|                    UNLOCK_OBJECT(dict);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11767|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (11767:25): [True: 0, Folded]
  |  |  ------------------
  |  |11768|      0|                        UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11769|      0|                        assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11769:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11770|      0|                        JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11771|      0|                    }
  |  |11772|      0|                }
  |  |11773|      0|                PyObject *old_value = ep->me_value;
  |  |11774|      0|                if (old_value == NULL) {
  |  |  ------------------
  |  |  |  Branch (11774:21): [True: 0, False: 0]
  |  |  ------------------
  |  |11775|      0|                    UNLOCK_OBJECT(dict);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11776|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (11776:25): [True: 0, Folded]
  |  |  ------------------
  |  |11777|      0|                        UPDATE_MISS_STATS(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |11778|      0|                        assert(_PyOpcode_Deopt[opcode] == (STORE_ATTR));
  |  |  ------------------
  |  |  |  Branch (11778:25): [True: 0, False: 0]
  |  |  ------------------
  |  |11779|      0|                        JUMP_TO_PREDICTED(STORE_ATTR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |11780|      0|                    }
  |  |11781|      0|                }
  |  |11782|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11783|      0|                _PyDict_NotifyEvent(PyDict_EVENT_MODIFIED, dict, name, PyStackRef_AsPyObjectBorrow(value));
  |  |11784|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11785|      0|                FT_ATOMIC_STORE_PTR_RELEASE(ep->me_value, PyStackRef_AsPyObjectSteal(value));
  |  |  ------------------
  |  |  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  |  |11786|      0|                UNLOCK_OBJECT(dict);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |11787|      0|                STAT_INC(STORE_ATTR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |11788|      0|                o = owner;
  |  |11789|      0|                stack_pointer[-2] = o;
  |  |11790|      0|                stack_pointer += -1;
  |  |11791|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11792|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11793|      0|                Py_XDECREF(old_value);
  |  |  ------------------
  |  |  |  |   69|      0|    do { \
  |  |  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   71|      0|        if (xop != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   72|      0|            Py_DECREF(xop); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      0|    do { \
  |  |  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   73|      0|        } \
  |  |  |  |   74|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11794|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11795|      0|            }
  |  |11796|       |            // _POP_TOP
  |  |11797|      0|            {
  |  |11798|      0|                value = o;
  |  |11799|      0|                stack_pointer += -1;
  |  |11800|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11801|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11802|      0|                PyStackRef_XCLOSE(value);
  |  |11803|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11804|      0|            }
  |  |11805|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (11805:13): [True: 0, False: 0]
  |  |  ------------------
  |  |11806|      0|        }
  |  |11807|       |
  |  |11808|    182|        TARGET(STORE_DEREF) {
  |  |  ------------------
  |  |  |  |  132|    182|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11809|       |            #if _Py_TAIL_CALL_INTERP
  |  |11810|       |            int opcode = STORE_DEREF;
  |  |11811|       |            (void)(opcode);
  |  |11812|       |            #endif
  |  |11813|    182|            frame->instr_ptr = next_instr;
  |  |11814|    182|            next_instr += 1;
  |  |11815|    182|            INSTRUCTION_STATS(STORE_DEREF);
  |  |  ------------------
  |  |  |  |   71|    182|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11816|    182|            _PyStackRef v;
  |  |11817|    182|            v = stack_pointer[-1];
  |  |11818|    182|            PyCellObject *cell = (PyCellObject *)PyStackRef_AsPyObjectBorrow(GETLOCAL(oparg));
  |  |  ------------------
  |  |  |  |  284|    182|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11819|    182|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11820|    182|            PyCell_SetTakeRef(cell, PyStackRef_AsPyObjectSteal(v));
  |  |11821|    182|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11822|    182|            stack_pointer += -1;
  |  |11823|    182|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    182|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11824|    182|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    182|    { \
  |  |  |  |  201|    182|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    182|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    182|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    182|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    182|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    182|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    182|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    182|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 182]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    182|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    182|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    182|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    182|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    182|    }
  |  |  ------------------
  |  |  |  Branch (11824:13): [True: 182, False: 0]
  |  |  ------------------
  |  |11825|    182|        }
  |  |11826|       |
  |  |11827|  3.18k|        TARGET(STORE_FAST) {
  |  |  ------------------
  |  |  |  |  132|  3.18k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11828|       |            #if _Py_TAIL_CALL_INTERP
  |  |11829|       |            int opcode = STORE_FAST;
  |  |11830|       |            (void)(opcode);
  |  |11831|       |            #endif
  |  |11832|  3.18k|            frame->instr_ptr = next_instr;
  |  |11833|  3.18k|            next_instr += 1;
  |  |11834|  3.18k|            INSTRUCTION_STATS(STORE_FAST);
  |  |  ------------------
  |  |  |  |   71|  3.18k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11835|  3.18k|            _PyStackRef value;
  |  |11836|  3.18k|            _PyStackRef trash;
  |  |11837|       |            // _SWAP_FAST
  |  |11838|  3.18k|            {
  |  |11839|  3.18k|                value = stack_pointer[-1];
  |  |11840|  3.18k|                _PyStackRef tmp = GETLOCAL(oparg);
  |  |  ------------------
  |  |  |  |  284|  3.18k|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11841|  3.18k|                GETLOCAL(oparg) = value;
  |  |  ------------------
  |  |  |  |  284|  3.18k|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11842|  3.18k|                trash = tmp;
  |  |11843|  3.18k|            }
  |  |11844|       |            // _POP_TOP
  |  |11845|  3.18k|            {
  |  |11846|  3.18k|                value = trash;
  |  |11847|  3.18k|                stack_pointer += -1;
  |  |11848|  3.18k|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  3.18k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11849|  3.18k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11850|  3.18k|                PyStackRef_XCLOSE(value);
  |  |11851|  3.18k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11852|  3.18k|            }
  |  |11853|  3.18k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  3.18k|    { \
  |  |  |  |  201|  3.18k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  3.18k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  3.18k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  3.18k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  3.18k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  3.18k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  3.18k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  3.18k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 3.18k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  3.18k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  3.18k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  3.18k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  3.18k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  3.18k|    }
  |  |  ------------------
  |  |  |  Branch (11853:13): [True: 3.18k, False: 0]
  |  |  ------------------
  |  |11854|  3.18k|        }
  |  |11855|       |
  |  |11856|    934|        TARGET(STORE_FAST_LOAD_FAST) {
  |  |  ------------------
  |  |  |  |  132|    934|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11857|       |            #if _Py_TAIL_CALL_INTERP
  |  |11858|       |            int opcode = STORE_FAST_LOAD_FAST;
  |  |11859|       |            (void)(opcode);
  |  |11860|       |            #endif
  |  |11861|    934|            frame->instr_ptr = next_instr;
  |  |11862|    934|            next_instr += 1;
  |  |11863|    934|            INSTRUCTION_STATS(STORE_FAST_LOAD_FAST);
  |  |  ------------------
  |  |  |  |   71|    934|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11864|    934|            _PyStackRef value1;
  |  |11865|    934|            _PyStackRef value2;
  |  |11866|    934|            value1 = stack_pointer[-1];
  |  |11867|    934|            uint32_t oparg1 = oparg >> 4;
  |  |11868|    934|            uint32_t oparg2 = oparg & 15;
  |  |11869|    934|            _PyStackRef tmp = GETLOCAL(oparg1);
  |  |  ------------------
  |  |  |  |  284|    934|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11870|    934|            GETLOCAL(oparg1) = value1;
  |  |  ------------------
  |  |  |  |  284|    934|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11871|    934|            value2 = PyStackRef_DUP(GETLOCAL(oparg2));
  |  |  ------------------
  |  |  |  |  284|    934|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11872|    934|            stack_pointer[-1] = value2;
  |  |11873|    934|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11874|    934|            PyStackRef_XCLOSE(tmp);
  |  |11875|    934|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11876|    934|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    934|    { \
  |  |  |  |  201|    934|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    934|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    934|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    934|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    934|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    934|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    934|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    934|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 934]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    934|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    934|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    934|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    934|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    934|    }
  |  |  ------------------
  |  |  |  Branch (11876:13): [True: 934, False: 0]
  |  |  ------------------
  |  |11877|    934|        }
  |  |11878|       |
  |  |11879|    156|        TARGET(STORE_FAST_STORE_FAST) {
  |  |  ------------------
  |  |  |  |  132|    156|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11880|       |            #if _Py_TAIL_CALL_INTERP
  |  |11881|       |            int opcode = STORE_FAST_STORE_FAST;
  |  |11882|       |            (void)(opcode);
  |  |11883|       |            #endif
  |  |11884|    156|            frame->instr_ptr = next_instr;
  |  |11885|    156|            next_instr += 1;
  |  |11886|    156|            INSTRUCTION_STATS(STORE_FAST_STORE_FAST);
  |  |  ------------------
  |  |  |  |   71|    156|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11887|    156|            _PyStackRef value2;
  |  |11888|    156|            _PyStackRef value1;
  |  |11889|    156|            value1 = stack_pointer[-1];
  |  |11890|    156|            value2 = stack_pointer[-2];
  |  |11891|    156|            uint32_t oparg1 = oparg >> 4;
  |  |11892|    156|            uint32_t oparg2 = oparg & 15;
  |  |11893|    156|            _PyStackRef tmp = GETLOCAL(oparg1);
  |  |  ------------------
  |  |  |  |  284|    156|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11894|    156|            GETLOCAL(oparg1) = value1;
  |  |  ------------------
  |  |  |  |  284|    156|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11895|    156|            stack_pointer += -1;
  |  |11896|    156|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    156|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11897|    156|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11898|    156|            PyStackRef_XCLOSE(tmp);
  |  |11899|    156|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11900|    156|            tmp = GETLOCAL(oparg2);
  |  |  ------------------
  |  |  |  |  284|    156|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11901|    156|            GETLOCAL(oparg2) = value2;
  |  |  ------------------
  |  |  |  |  284|    156|#define GETLOCAL(i)     (frame->localsplus[i])
  |  |  ------------------
  |  |11902|    156|            stack_pointer += -1;
  |  |11903|    156|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    156|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11904|    156|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11905|    156|            PyStackRef_XCLOSE(tmp);
  |  |11906|    156|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11907|    156|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    156|    { \
  |  |  |  |  201|    156|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    156|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    156|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    156|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    156|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    156|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    156|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    156|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 156]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    156|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    156|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    156|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    156|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    156|    }
  |  |  ------------------
  |  |  |  Branch (11907:13): [True: 156, False: 0]
  |  |  ------------------
  |  |11908|    156|        }
  |  |11909|       |
  |  |11910|     48|        TARGET(STORE_GLOBAL) {
  |  |  ------------------
  |  |  |  |  132|     48|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11911|       |            #if _Py_TAIL_CALL_INTERP
  |  |11912|       |            int opcode = STORE_GLOBAL;
  |  |11913|       |            (void)(opcode);
  |  |11914|       |            #endif
  |  |11915|     48|            frame->instr_ptr = next_instr;
  |  |11916|     48|            next_instr += 1;
  |  |11917|     48|            INSTRUCTION_STATS(STORE_GLOBAL);
  |  |  ------------------
  |  |  |  |   71|     48|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11918|     48|            _PyStackRef v;
  |  |11919|     48|            v = stack_pointer[-1];
  |  |11920|     48|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|     48|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|     48|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|     48|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11920:30): [True: 48, False: 0]
  |  |  ------------------
  |  |11921|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11922|     48|            int err = PyDict_SetItem(GLOBALS(), name, PyStackRef_AsPyObjectBorrow(v));
  |  |  ------------------
  |  |  |  |  325|     48|#define GLOBALS() frame->f_globals
  |  |  ------------------
  |  |11923|     48|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11924|     48|            stack_pointer += -1;
  |  |11925|     48|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     48|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11926|     48|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11927|     48|            PyStackRef_CLOSE(v);
  |  |11928|     48|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11929|     48|            if (err) {
  |  |  ------------------
  |  |  |  Branch (11929:17): [True: 0, False: 48]
  |  |  ------------------
  |  |11930|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11931|      0|            }
  |  |11932|     48|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     48|    { \
  |  |  |  |  201|     48|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     48|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     48|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     48|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     48|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     48|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     48|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     48|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 48]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     48|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     48|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     48|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     48|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     48|    }
  |  |  ------------------
  |  |  |  Branch (11932:13): [True: 48, False: 0]
  |  |  ------------------
  |  |11933|     48|        }
  |  |11934|       |
  |  |11935|  3.15k|        TARGET(STORE_NAME) {
  |  |  ------------------
  |  |  |  |  132|  3.15k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11936|       |            #if _Py_TAIL_CALL_INTERP
  |  |11937|       |            int opcode = STORE_NAME;
  |  |11938|       |            (void)(opcode);
  |  |11939|       |            #endif
  |  |11940|  3.15k|            frame->instr_ptr = next_instr;
  |  |11941|  3.15k|            next_instr += 1;
  |  |11942|  3.15k|            INSTRUCTION_STATS(STORE_NAME);
  |  |  ------------------
  |  |  |  |   71|  3.15k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11943|  3.15k|            _PyStackRef v;
  |  |11944|  3.15k|            v = stack_pointer[-1];
  |  |11945|  3.15k|            PyObject *name = GETITEM(FRAME_CO_NAMES, oparg);
  |  |  ------------------
  |  |  |  |  235|  3.15k|#define GETITEM(v, i) PyTuple_GET_ITEM((v), (i))
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|  3.15k|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   19|  3.15k|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  3.15k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (11945:30): [True: 3.15k, False: 0]
  |  |  ------------------
  |  |11946|  3.15k|            PyObject *ns = LOCALS();
  |  |  ------------------
  |  |  |  |  327|  3.15k|#define LOCALS() frame->f_locals
  |  |  ------------------
  |  |11947|  3.15k|            int err;
  |  |11948|  3.15k|            if (ns == NULL) {
  |  |  ------------------
  |  |  |  Branch (11948:17): [True: 0, False: 3.15k]
  |  |  ------------------
  |  |11949|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11950|      0|                _PyErr_Format(tstate, PyExc_SystemError,
  |  |11951|      0|                              "no locals found when storing %R", name);
  |  |11952|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11953|      0|                stack_pointer += -1;
  |  |11954|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11955|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11956|      0|                PyStackRef_CLOSE(v);
  |  |11957|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11958|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11959|      0|            }
  |  |11960|  3.15k|            if (PyDict_CheckExact(ns)) {
  |  |  ------------------
  |  |  |  |   19|  3.15k|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  3.15k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  3.15k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  3.15k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 3.15k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |11961|  3.15k|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11962|  3.15k|                err = PyDict_SetItem(ns, name, PyStackRef_AsPyObjectBorrow(v));
  |  |11963|  3.15k|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11964|  3.15k|            }
  |  |11965|      0|            else {
  |  |11966|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11967|      0|                err = PyObject_SetItem(ns, name, PyStackRef_AsPyObjectBorrow(v));
  |  |11968|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11969|      0|            }
  |  |11970|  3.15k|            stack_pointer += -1;
  |  |11971|  3.15k|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|  3.15k|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |11972|  3.15k|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |11973|  3.15k|            PyStackRef_CLOSE(v);
  |  |11974|  3.15k|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |11975|  3.15k|            if (err) {
  |  |  ------------------
  |  |  |  Branch (11975:17): [True: 0, False: 3.15k]
  |  |  ------------------
  |  |11976|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |11977|      0|            }
  |  |11978|  3.15k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  3.15k|    { \
  |  |  |  |  201|  3.15k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  3.15k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  3.15k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  3.15k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  3.15k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  3.15k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  3.15k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  3.15k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 3.15k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  3.15k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  3.15k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  3.15k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  3.15k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  3.15k|    }
  |  |  ------------------
  |  |  |  Branch (11978:13): [True: 3.15k, False: 0]
  |  |  ------------------
  |  |11979|  3.15k|        }
  |  |11980|       |
  |  |11981|      0|        TARGET(STORE_SLICE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |11982|       |            #if _Py_TAIL_CALL_INTERP
  |  |11983|       |            int opcode = STORE_SLICE;
  |  |11984|       |            (void)(opcode);
  |  |11985|       |            #endif
  |  |11986|      0|            frame->instr_ptr = next_instr;
  |  |11987|      0|            next_instr += 1;
  |  |11988|      0|            INSTRUCTION_STATS(STORE_SLICE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |11989|      0|            _PyStackRef v;
  |  |11990|      0|            _PyStackRef container;
  |  |11991|      0|            _PyStackRef start;
  |  |11992|      0|            _PyStackRef stop;
  |  |11993|       |            // _SPECIALIZE_STORE_SLICE
  |  |11994|      0|            {
  |  |11995|      0|                #if ENABLE_SPECIALIZATION
  |  |11996|      0|                OPCODE_DEFERRED_INC(STORE_SLICE);
  |  |  ------------------
  |  |  |  |   90|      0|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  |11997|      0|                #endif  /* ENABLE_SPECIALIZATION */
  |  |11998|      0|            }
  |  |11999|       |            // _STORE_SLICE
  |  |12000|      0|            {
  |  |12001|      0|                stop = stack_pointer[-1];
  |  |12002|      0|                start = stack_pointer[-2];
  |  |12003|      0|                container = stack_pointer[-3];
  |  |12004|      0|                v = stack_pointer[-4];
  |  |12005|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12006|      0|                PyObject *slice = _PyBuildSlice_ConsumeRefs(PyStackRef_AsPyObjectSteal(start),
  |  |12007|      0|                    PyStackRef_AsPyObjectSteal(stop));
  |  |12008|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12009|      0|                int err;
  |  |12010|      0|                if (slice == NULL) {
  |  |  ------------------
  |  |  |  Branch (12010:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12011|      0|                    err = 1;
  |  |12012|      0|                }
  |  |12013|      0|                else {
  |  |12014|      0|                    stack_pointer += -2;
  |  |12015|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12016|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12017|      0|                    err = PyObject_SetItem(PyStackRef_AsPyObjectBorrow(container), slice, PyStackRef_AsPyObjectBorrow(v));
  |  |12018|      0|                    Py_DECREF(slice);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12019|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12020|      0|                    stack_pointer += 2;
  |  |12021|      0|                }
  |  |12022|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12023|      0|                _PyStackRef tmp = container;
  |  |12024|      0|                container = PyStackRef_NULL;
  |  |12025|      0|                stack_pointer[-3] = container;
  |  |12026|      0|                PyStackRef_CLOSE(tmp);
  |  |12027|      0|                tmp = v;
  |  |12028|      0|                v = PyStackRef_NULL;
  |  |12029|      0|                stack_pointer[-4] = v;
  |  |12030|      0|                PyStackRef_CLOSE(tmp);
  |  |12031|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12032|      0|                stack_pointer += -4;
  |  |12033|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12034|      0|                if (err) {
  |  |  ------------------
  |  |  |  Branch (12034:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12035|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12036|      0|                }
  |  |12037|      0|            }
  |  |12038|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12038:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12039|      0|        }
  |  |12040|       |
  |  |12041|     52|        TARGET(STORE_SUBSCR) {
  |  |  ------------------
  |  |  |  |  132|     52|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12042|       |            #if _Py_TAIL_CALL_INTERP
  |  |12043|       |            int opcode = STORE_SUBSCR;
  |  |12044|       |            (void)(opcode);
  |  |12045|       |            #endif
  |  |12046|     52|            frame->instr_ptr = next_instr;
  |  |12047|     52|            next_instr += 2;
  |  |12048|     52|            INSTRUCTION_STATS(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |   71|     52|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12049|     52|            PREDICTED_STORE_SUBSCR:;
  |  |12050|     52|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  |12051|     52|            (void)this_instr;
  |  |12052|     52|            _PyStackRef container;
  |  |12053|     52|            _PyStackRef sub;
  |  |12054|     52|            _PyStackRef v;
  |  |12055|       |            // _SPECIALIZE_STORE_SUBSCR
  |  |12056|     52|            {
  |  |12057|     52|                sub = stack_pointer[-1];
  |  |12058|     52|                container = stack_pointer[-2];
  |  |12059|     52|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  |12060|     52|                (void)counter;
  |  |12061|     52|                #if ENABLE_SPECIALIZATION
  |  |12062|     52|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|     52|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 10, False: 42]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12063|     10|                    next_instr = this_instr;
  |  |12064|     10|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12065|     10|                    _Py_Specialize_StoreSubscr(container, sub, next_instr);
  |  |12066|     10|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12067|     10|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     10|    { \
  |  |  |  |  217|     10|        opcode = next_instr->op.code; \
  |  |  |  |  218|     10|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     10|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     10|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     10|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     10|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     10|    }
  |  |  ------------------
  |  |12068|     10|                }
  |  |12069|     52|                OPCODE_DEFERRED_INC(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |   90|     52|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  |12070|     52|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|     52|    do { \
  |  |  |  |  358|     52|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|     52|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 52]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12071|     52|                #endif  /* ENABLE_SPECIALIZATION */
  |  |12072|     52|            }
  |  |12073|       |            // _STORE_SUBSCR
  |  |12074|     52|            {
  |  |12075|     52|                v = stack_pointer[-3];
  |  |12076|     52|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12077|     52|                int err = PyObject_SetItem(PyStackRef_AsPyObjectBorrow(container), PyStackRef_AsPyObjectBorrow(sub), PyStackRef_AsPyObjectBorrow(v));
  |  |12078|     52|                _PyStackRef tmp = sub;
  |  |12079|     52|                sub = PyStackRef_NULL;
  |  |12080|     52|                stack_pointer[-1] = sub;
  |  |12081|     52|                PyStackRef_CLOSE(tmp);
  |  |12082|     52|                tmp = container;
  |  |12083|     52|                container = PyStackRef_NULL;
  |  |12084|     52|                stack_pointer[-2] = container;
  |  |12085|     52|                PyStackRef_CLOSE(tmp);
  |  |12086|     52|                tmp = v;
  |  |12087|     52|                v = PyStackRef_NULL;
  |  |12088|     52|                stack_pointer[-3] = v;
  |  |12089|     52|                PyStackRef_CLOSE(tmp);
  |  |12090|     52|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12091|     52|                stack_pointer += -3;
  |  |12092|     52|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     52|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12093|     52|                if (err) {
  |  |  ------------------
  |  |  |  Branch (12093:21): [True: 0, False: 52]
  |  |  ------------------
  |  |12094|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12095|      0|                }
  |  |12096|     52|            }
  |  |12097|     52|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     52|    { \
  |  |  |  |  201|     52|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     52|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     42|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     42|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     42|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     42|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     42|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     42|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 42]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     42|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     42|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     42|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     42|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     42|    }
  |  |  ------------------
  |  |  |  Branch (12097:13): [True: 42, False: 10]
  |  |  ------------------
  |  |12098|     42|        }
  |  |12099|       |
  |  |12100|    206|        TARGET(STORE_SUBSCR_DICT) {
  |  |  ------------------
  |  |  |  |  132|    206|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12101|       |            #if _Py_TAIL_CALL_INTERP
  |  |12102|       |            int opcode = STORE_SUBSCR_DICT;
  |  |12103|       |            (void)(opcode);
  |  |12104|       |            #endif
  |  |12105|    206|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12106|    206|            (void)this_instr;
  |  |12107|    206|            frame->instr_ptr = next_instr;
  |  |12108|    206|            next_instr += 2;
  |  |12109|    206|            INSTRUCTION_STATS(STORE_SUBSCR_DICT);
  |  |  ------------------
  |  |  |  |   71|    206|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12110|    206|            static_assert(INLINE_CACHE_ENTRIES_STORE_SUBSCR == 1, "incorrect cache size");
  |  |12111|    206|            _PyStackRef nos;
  |  |12112|    206|            _PyStackRef value;
  |  |12113|    206|            _PyStackRef dict_st;
  |  |12114|    206|            _PyStackRef sub;
  |  |12115|    206|            _PyStackRef st;
  |  |12116|       |            // _GUARD_NOS_DICT_STORE_SUBSCRIPT
  |  |12117|    206|            {
  |  |12118|    206|                nos = stack_pointer[-2];
  |  |12119|    206|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |12120|    206|                if (!Py_TYPE(o)->tp_as_mapping) {
  |  |  ------------------
  |  |  |  |  213|    206|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    206|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    206|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12120:21): [True: 0, False: 206]
  |  |  ------------------
  |  |12121|      0|                    UPDATE_MISS_STATS(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12122|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR));
  |  |  ------------------
  |  |  |  Branch (12122:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12123|      0|                    JUMP_TO_PREDICTED(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12124|      0|                }
  |  |12125|    206|                if (Py_TYPE(o)->tp_as_mapping->mp_ass_subscript != _PyDict_StoreSubscript) {
  |  |  ------------------
  |  |  |  |  213|    206|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    206|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    206|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12125:21): [True: 0, False: 206]
  |  |  ------------------
  |  |12126|      0|                    UPDATE_MISS_STATS(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12127|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR));
  |  |  ------------------
  |  |  |  Branch (12127:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12128|      0|                    JUMP_TO_PREDICTED(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12129|      0|                }
  |  |12130|    206|            }
  |  |12131|       |            /* Skip 1 cache entry */
  |  |12132|       |            // _STORE_SUBSCR_DICT
  |  |12133|    206|            {
  |  |12134|    206|                sub = stack_pointer[-1];
  |  |12135|    206|                dict_st = nos;
  |  |12136|    206|                value = stack_pointer[-3];
  |  |12137|    206|                PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st);
  |  |12138|    206|                assert(Py_TYPE(dict)->tp_as_mapping->mp_ass_subscript == _PyDict_StoreSubscript);
  |  |  ------------------
  |  |  |  Branch (12138:17): [True: 206, False: 0]
  |  |  ------------------
  |  |12139|    206|                STAT_INC(STORE_SUBSCR, hit);
  |  |  ------------------
  |  |  |  |   73|    206|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12140|    206|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12141|    206|                int err = _PyDict_SetItem_Take2((PyDictObject *)dict,
  |  |12142|    206|                    PyStackRef_AsPyObjectSteal(sub),
  |  |12143|    206|                    PyStackRef_AsPyObjectSteal(value));
  |  |12144|    206|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12145|    206|                if (err) {
  |  |  ------------------
  |  |  |  Branch (12145:21): [True: 0, False: 206]
  |  |  ------------------
  |  |12146|      0|                    stack_pointer += -3;
  |  |12147|      0|                    ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12148|      0|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12149|      0|                    PyStackRef_CLOSE(dict_st);
  |  |12150|      0|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12151|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12152|      0|                }
  |  |12153|    206|                st = dict_st;
  |  |12154|    206|            }
  |  |12155|       |            // _POP_TOP
  |  |12156|      0|            {
  |  |12157|    206|                value = st;
  |  |12158|    206|                stack_pointer += -3;
  |  |12159|    206|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    206|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12160|    206|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12161|    206|                PyStackRef_XCLOSE(value);
  |  |12162|    206|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12163|    206|            }
  |  |12164|    206|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    206|    { \
  |  |  |  |  201|    206|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    206|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    206|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    206|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    206|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    206|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    206|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    206|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 206]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    206|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    206|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    206|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    206|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    206|    }
  |  |  ------------------
  |  |  |  Branch (12164:13): [True: 206, False: 0]
  |  |  ------------------
  |  |12165|    206|        }
  |  |12166|       |
  |  |12167|      0|        TARGET(STORE_SUBSCR_LIST_INT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12168|       |            #if _Py_TAIL_CALL_INTERP
  |  |12169|       |            int opcode = STORE_SUBSCR_LIST_INT;
  |  |12170|       |            (void)(opcode);
  |  |12171|       |            #endif
  |  |12172|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12173|      0|            (void)this_instr;
  |  |12174|      0|            frame->instr_ptr = next_instr;
  |  |12175|      0|            next_instr += 2;
  |  |12176|      0|            INSTRUCTION_STATS(STORE_SUBSCR_LIST_INT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12177|      0|            static_assert(INLINE_CACHE_ENTRIES_STORE_SUBSCR == 1, "incorrect cache size");
  |  |12178|      0|            _PyStackRef value;
  |  |12179|      0|            _PyStackRef nos;
  |  |12180|      0|            _PyStackRef list_st;
  |  |12181|      0|            _PyStackRef sub_st;
  |  |12182|      0|            _PyStackRef ls;
  |  |12183|      0|            _PyStackRef ss;
  |  |12184|       |            // _GUARD_TOS_INT
  |  |12185|      0|            {
  |  |12186|      0|                value = stack_pointer[-1];
  |  |12187|      0|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |12188|      0|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (12188:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12189|      0|                    UPDATE_MISS_STATS(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12190|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR));
  |  |  ------------------
  |  |  |  Branch (12190:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12191|      0|                    JUMP_TO_PREDICTED(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12192|      0|                }
  |  |12193|      0|            }
  |  |12194|       |            // _GUARD_NOS_LIST
  |  |12195|      0|            {
  |  |12196|      0|                nos = stack_pointer[-2];
  |  |12197|      0|                PyObject *o = PyStackRef_AsPyObjectBorrow(nos);
  |  |12198|      0|                if (!PyList_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   26|      0|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12198:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12199|      0|                    UPDATE_MISS_STATS(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12200|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR));
  |  |  ------------------
  |  |  |  Branch (12200:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12201|      0|                    JUMP_TO_PREDICTED(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12202|      0|                }
  |  |12203|      0|            }
  |  |12204|       |            /* Skip 1 cache entry */
  |  |12205|       |            // _STORE_SUBSCR_LIST_INT
  |  |12206|      0|            {
  |  |12207|      0|                sub_st = value;
  |  |12208|      0|                list_st = nos;
  |  |12209|      0|                value = stack_pointer[-3];
  |  |12210|      0|                PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
  |  |12211|      0|                PyObject *list = PyStackRef_AsPyObjectBorrow(list_st);
  |  |12212|      0|                assert(PyLong_CheckExact(sub));
  |  |  ------------------
  |  |  |  Branch (12212:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12213|      0|                assert(PyList_CheckExact(list));
  |  |  ------------------
  |  |  |  Branch (12213:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12214|      0|                Py_ssize_t index = _PyLong_CompactValue((PyLongObject *)sub);
  |  |12215|      0|                if (!LOCK_OBJECT(list)) {
  |  |  ------------------
  |  |  |  |  321|      0|#  define LOCK_OBJECT(op) (1)
  |  |  ------------------
  |  |  |  Branch (12215:21): [Folded, False: 0]
  |  |  ------------------
  |  |12216|      0|                    UPDATE_MISS_STATS(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12217|      0|                    assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR));
  |  |  ------------------
  |  |  |  Branch (12217:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12218|      0|                    JUMP_TO_PREDICTED(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12219|      0|                }
  |  |12220|      0|                Py_ssize_t len = PyList_GET_SIZE(list);
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12221|      0|                if (index < 0) {
  |  |  ------------------
  |  |  |  Branch (12221:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12222|      0|                    index += len;
  |  |12223|      0|                }
  |  |12224|      0|                if (index < 0 || index >= len) {
  |  |  ------------------
  |  |  |  Branch (12224:21): [True: 0, False: 0]
  |  |  |  Branch (12224:34): [True: 0, False: 0]
  |  |  ------------------
  |  |12225|      0|                    UNLOCK_OBJECT(list);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |12226|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (12226:25): [True: 0, Folded]
  |  |  ------------------
  |  |12227|      0|                        UPDATE_MISS_STATS(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12228|      0|                        assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR));
  |  |  ------------------
  |  |  |  Branch (12228:25): [True: 0, False: 0]
  |  |  ------------------
  |  |12229|      0|                        JUMP_TO_PREDICTED(STORE_SUBSCR);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12230|      0|                    }
  |  |12231|      0|                }
  |  |12232|      0|                STAT_INC(STORE_SUBSCR, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12233|      0|                PyObject *old_value = PyList_GET_ITEM(list, index);
  |  |  ------------------
  |  |  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12233:39): [True: 0, False: 0]
  |  |  ------------------
  |  |12234|      0|                FT_ATOMIC_STORE_PTR_RELEASE(_PyList_ITEMS(list)[index],
  |  |  ------------------
  |  |  |  |  164|      0|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (164:55): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12235|      0|                                        PyStackRef_AsPyObjectSteal(value));
  |  |12236|      0|                assert(old_value != NULL);
  |  |  ------------------
  |  |  |  Branch (12236:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12237|      0|                UNLOCK_OBJECT(list);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |12238|      0|                ls = list_st;
  |  |12239|      0|                ss = sub_st;
  |  |12240|      0|                stack_pointer[-3] = ls;
  |  |12241|      0|                stack_pointer[-2] = ss;
  |  |12242|      0|                stack_pointer += -1;
  |  |12243|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12244|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12245|      0|                Py_DECREF(old_value);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12246|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12247|      0|            }
  |  |12248|       |            // _POP_TOP_INT
  |  |12249|      0|            {
  |  |12250|      0|                value = ss;
  |  |12251|      0|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (12251:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12252|      0|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  |12253|      0|            }
  |  |12254|       |            // _POP_TOP
  |  |12255|      0|            {
  |  |12256|      0|                value = ls;
  |  |12257|      0|                stack_pointer += -2;
  |  |12258|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12259|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12260|      0|                PyStackRef_XCLOSE(value);
  |  |12261|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12262|      0|            }
  |  |12263|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12263:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12264|      0|        }
  |  |12265|       |
  |  |12266|  1.02k|        TARGET(SWAP) {
  |  |  ------------------
  |  |  |  |  132|  1.02k|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12267|       |            #if _Py_TAIL_CALL_INTERP
  |  |12268|       |            int opcode = SWAP;
  |  |12269|       |            (void)(opcode);
  |  |12270|       |            #endif
  |  |12271|  1.02k|            frame->instr_ptr = next_instr;
  |  |12272|  1.02k|            next_instr += 1;
  |  |12273|  1.02k|            INSTRUCTION_STATS(SWAP);
  |  |  ------------------
  |  |  |  |   71|  1.02k|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12274|  1.02k|            _PyStackRef bottom;
  |  |12275|  1.02k|            _PyStackRef top;
  |  |12276|  1.02k|            top = stack_pointer[-1];
  |  |12277|  1.02k|            bottom = stack_pointer[-2 - (oparg-2)];
  |  |12278|  1.02k|            _PyStackRef temp = bottom;
  |  |12279|  1.02k|            bottom = top;
  |  |12280|  1.02k|            top = temp;
  |  |12281|  1.02k|            stack_pointer[-2 - (oparg-2)] = bottom;
  |  |12282|  1.02k|            stack_pointer[-1] = top;
  |  |12283|  1.02k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.02k|    { \
  |  |  |  |  201|  1.02k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.02k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.02k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.02k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.02k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.02k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.02k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.02k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.02k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.02k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.02k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.02k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.02k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.02k|    }
  |  |  ------------------
  |  |  |  Branch (12283:13): [True: 1.02k, False: 0]
  |  |  ------------------
  |  |12284|  1.02k|        }
  |  |12285|       |
  |  |12286|    628|        TARGET(TO_BOOL) {
  |  |  ------------------
  |  |  |  |  132|    628|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12287|       |            #if _Py_TAIL_CALL_INTERP
  |  |12288|       |            int opcode = TO_BOOL;
  |  |12289|       |            (void)(opcode);
  |  |12290|       |            #endif
  |  |12291|    628|            frame->instr_ptr = next_instr;
  |  |12292|    628|            next_instr += 4;
  |  |12293|    628|            INSTRUCTION_STATS(TO_BOOL);
  |  |  ------------------
  |  |  |  |   71|    628|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12294|    688|            PREDICTED_TO_BOOL:;
  |  |12295|    688|            _Py_CODEUNIT* const this_instr = next_instr - 4;
  |  |12296|    688|            (void)this_instr;
  |  |12297|    688|            _PyStackRef value;
  |  |12298|    688|            _PyStackRef res;
  |  |12299|       |            // _SPECIALIZE_TO_BOOL
  |  |12300|    688|            {
  |  |12301|    688|                value = stack_pointer[-1];
  |  |12302|    688|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  |12303|    688|                (void)counter;
  |  |12304|    688|                #if ENABLE_SPECIALIZATION
  |  |12305|    688|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|    688|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 132, False: 556]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12306|    132|                    next_instr = this_instr;
  |  |12307|    132|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12308|    132|                    _Py_Specialize_ToBool(value, next_instr);
  |  |12309|    132|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12310|    132|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|    132|    { \
  |  |  |  |  217|    132|        opcode = next_instr->op.code; \
  |  |  |  |  218|    132|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    132|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|    132|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|    132|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|    132|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|    132|    }
  |  |  ------------------
  |  |12311|    132|                }
  |  |12312|    688|                OPCODE_DEFERRED_INC(TO_BOOL);
  |  |  ------------------
  |  |  |  |   90|    688|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  |12313|    688|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|    688|    do { \
  |  |  |  |  358|    688|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|    688|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 688]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12314|    688|                #endif  /* ENABLE_SPECIALIZATION */
  |  |12315|    688|            }
  |  |12316|       |            /* Skip 2 cache entries */
  |  |12317|       |            // _TO_BOOL
  |  |12318|    688|            {
  |  |12319|    688|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12320|    688|                int err = PyObject_IsTrue(PyStackRef_AsPyObjectBorrow(value));
  |  |12321|    688|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12322|    688|                stack_pointer += -1;
  |  |12323|    688|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    688|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12324|    688|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12325|    688|                PyStackRef_CLOSE(value);
  |  |12326|    688|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12327|    688|                if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (12327:21): [True: 0, False: 688]
  |  |  ------------------
  |  |12328|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12329|      0|                }
  |  |12330|    688|                res = err ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|    232|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    232|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = err ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|  1.14k|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    456|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12330:23): [True: 232, False: 456]
  |  |  ------------------
  |  |12331|    688|            }
  |  |12332|      0|            stack_pointer[0] = res;
  |  |12333|    688|            stack_pointer += 1;
  |  |12334|    688|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    688|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12335|    688|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    688|    { \
  |  |  |  |  201|    688|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    688|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    556|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    556|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    556|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    556|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    556|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    556|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 556]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    556|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    556|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    556|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    556|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    556|    }
  |  |  ------------------
  |  |  |  Branch (12335:13): [True: 556, False: 132]
  |  |  ------------------
  |  |12336|    556|        }
  |  |12337|       |
  |  |12338|      0|        TARGET(TO_BOOL_ALWAYS_TRUE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12339|       |            #if _Py_TAIL_CALL_INTERP
  |  |12340|       |            int opcode = TO_BOOL_ALWAYS_TRUE;
  |  |12341|       |            (void)(opcode);
  |  |12342|       |            #endif
  |  |12343|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12344|      0|            (void)this_instr;
  |  |12345|      0|            frame->instr_ptr = next_instr;
  |  |12346|      0|            next_instr += 4;
  |  |12347|      0|            INSTRUCTION_STATS(TO_BOOL_ALWAYS_TRUE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12348|      0|            static_assert(INLINE_CACHE_ENTRIES_TO_BOOL == 3, "incorrect cache size");
  |  |12349|      0|            _PyStackRef owner;
  |  |12350|      0|            _PyStackRef value;
  |  |12351|      0|            _PyStackRef res;
  |  |12352|      0|            _PyStackRef v;
  |  |12353|       |            /* Skip 1 cache entry */
  |  |12354|       |            // _GUARD_TYPE_VERSION
  |  |12355|      0|            {
  |  |12356|      0|                owner = stack_pointer[-1];
  |  |12357|      0|                uint32_t type_version = read_u32(&this_instr[2].cache);
  |  |12358|      0|                PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12359|      0|                assert(type_version != 0);
  |  |  ------------------
  |  |  |  Branch (12359:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12360|      0|                if (FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version) {
  |  |  ------------------
  |  |  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  |  |  ------------------
  |  |  |  Branch (12360:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12361|      0|                    UPDATE_MISS_STATS(TO_BOOL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12362|      0|                    assert(_PyOpcode_Deopt[opcode] == (TO_BOOL));
  |  |  ------------------
  |  |  |  Branch (12362:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12363|      0|                    JUMP_TO_PREDICTED(TO_BOOL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12364|      0|                }
  |  |12365|      0|            }
  |  |12366|       |            // _REPLACE_WITH_TRUE
  |  |12367|      0|            {
  |  |12368|      0|                value = owner;
  |  |12369|      0|                res = PyStackRef_True;
  |  |  ------------------
  |  |  |  |  471|      0|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12370|      0|                v = value;
  |  |12371|      0|            }
  |  |12372|       |            // _POP_TOP
  |  |12373|      0|            {
  |  |12374|      0|                value = v;
  |  |12375|      0|                stack_pointer[-1] = res;
  |  |12376|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12377|      0|                PyStackRef_XCLOSE(value);
  |  |12378|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12379|      0|            }
  |  |12380|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12380:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12381|      0|        }
  |  |12382|       |
  |  |12383|    676|        TARGET(TO_BOOL_BOOL) {
  |  |  ------------------
  |  |  |  |  132|    676|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12384|       |            #if _Py_TAIL_CALL_INTERP
  |  |12385|       |            int opcode = TO_BOOL_BOOL;
  |  |12386|       |            (void)(opcode);
  |  |12387|       |            #endif
  |  |12388|    676|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12389|    676|            (void)this_instr;
  |  |12390|    676|            frame->instr_ptr = next_instr;
  |  |12391|    676|            next_instr += 4;
  |  |12392|    676|            INSTRUCTION_STATS(TO_BOOL_BOOL);
  |  |  ------------------
  |  |  |  |   71|    676|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12393|    676|            static_assert(INLINE_CACHE_ENTRIES_TO_BOOL == 3, "incorrect cache size");
  |  |12394|    676|            _PyStackRef value;
  |  |12395|       |            /* Skip 1 cache entry */
  |  |12396|       |            /* Skip 2 cache entries */
  |  |12397|    676|            value = stack_pointer[-1];
  |  |12398|    676|            if (!PyStackRef_BoolCheck(value)) {
  |  |  ------------------
  |  |  |  Branch (12398:17): [True: 0, False: 676]
  |  |  ------------------
  |  |12399|      0|                UPDATE_MISS_STATS(TO_BOOL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12400|      0|                assert(_PyOpcode_Deopt[opcode] == (TO_BOOL));
  |  |  ------------------
  |  |  |  Branch (12400:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12401|      0|                JUMP_TO_PREDICTED(TO_BOOL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12402|      0|            }
  |  |12403|    676|            STAT_INC(TO_BOOL, hit);
  |  |  ------------------
  |  |  |  |   73|    676|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12404|    676|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    676|    { \
  |  |  |  |  201|    676|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    676|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    676|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    676|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    676|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    676|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    676|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    676|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 676]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    676|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    676|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    676|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    676|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    676|    }
  |  |  ------------------
  |  |  |  Branch (12404:13): [True: 676, False: 0]
  |  |  ------------------
  |  |12405|    676|        }
  |  |12406|       |
  |  |12407|    114|        TARGET(TO_BOOL_INT) {
  |  |  ------------------
  |  |  |  |  132|    114|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12408|       |            #if _Py_TAIL_CALL_INTERP
  |  |12409|       |            int opcode = TO_BOOL_INT;
  |  |12410|       |            (void)(opcode);
  |  |12411|       |            #endif
  |  |12412|    114|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12413|    114|            (void)this_instr;
  |  |12414|    114|            frame->instr_ptr = next_instr;
  |  |12415|    114|            next_instr += 4;
  |  |12416|    114|            INSTRUCTION_STATS(TO_BOOL_INT);
  |  |  ------------------
  |  |  |  |   71|    114|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12417|    114|            static_assert(INLINE_CACHE_ENTRIES_TO_BOOL == 3, "incorrect cache size");
  |  |12418|    114|            _PyStackRef value;
  |  |12419|    114|            _PyStackRef res;
  |  |12420|    114|            _PyStackRef v;
  |  |12421|       |            // _GUARD_TOS_INT
  |  |12422|    114|            {
  |  |12423|    114|                value = stack_pointer[-1];
  |  |12424|    114|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |12425|    114|                if (!_PyLong_CheckExactAndCompact(value_o)) {
  |  |  ------------------
  |  |  |  Branch (12425:21): [True: 0, False: 114]
  |  |  ------------------
  |  |12426|      0|                    UPDATE_MISS_STATS(TO_BOOL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12427|      0|                    assert(_PyOpcode_Deopt[opcode] == (TO_BOOL));
  |  |  ------------------
  |  |  |  Branch (12427:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12428|      0|                    JUMP_TO_PREDICTED(TO_BOOL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12429|      0|                }
  |  |12430|    114|            }
  |  |12431|       |            /* Skip 1 cache entry */
  |  |12432|       |            /* Skip 2 cache entries */
  |  |12433|       |            // _TO_BOOL_INT
  |  |12434|    114|            {
  |  |12435|    114|                STAT_INC(TO_BOOL, hit);
  |  |  ------------------
  |  |  |  |   73|    114|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12436|    114|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |12437|    114|                res = (_PyLong_IsZero((PyLongObject *)value_o)) ? PyStackRef_False : PyStackRef_True;
  |  |  ------------------
  |  |  |  |  472|     82|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     82|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = (_PyLong_IsZero((PyLongObject *)value_o)) ? PyStackRef_False : PyStackRef_True;
  |  |  ------------------
  |  |  |  |  471|    146|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     32|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12437:23): [True: 82, False: 32]
  |  |  ------------------
  |  |12438|    114|                v = value;
  |  |12439|    114|            }
  |  |12440|       |            // _POP_TOP_INT
  |  |12441|    114|            {
  |  |12442|    114|                value = v;
  |  |12443|    114|                assert(PyLong_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (12443:17): [True: 114, False: 0]
  |  |  ------------------
  |  |12444|    114|                PyStackRef_CLOSE_SPECIALIZED(value, _PyLong_ExactDealloc);
  |  |12445|    114|            }
  |  |12446|      0|            stack_pointer[-1] = res;
  |  |12447|    114|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    114|    { \
  |  |  |  |  201|    114|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    114|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    114|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    114|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    114|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    114|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    114|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    114|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 114]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    114|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    114|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    114|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    114|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    114|    }
  |  |  ------------------
  |  |  |  Branch (12447:13): [True: 114, False: 0]
  |  |  ------------------
  |  |12448|    114|        }
  |  |12449|       |
  |  |12450|    112|        TARGET(TO_BOOL_LIST) {
  |  |  ------------------
  |  |  |  |  132|    112|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12451|       |            #if _Py_TAIL_CALL_INTERP
  |  |12452|       |            int opcode = TO_BOOL_LIST;
  |  |12453|       |            (void)(opcode);
  |  |12454|       |            #endif
  |  |12455|    112|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12456|    112|            (void)this_instr;
  |  |12457|    112|            frame->instr_ptr = next_instr;
  |  |12458|    112|            next_instr += 4;
  |  |12459|    112|            INSTRUCTION_STATS(TO_BOOL_LIST);
  |  |  ------------------
  |  |  |  |   71|    112|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12460|    112|            static_assert(INLINE_CACHE_ENTRIES_TO_BOOL == 3, "incorrect cache size");
  |  |12461|    112|            _PyStackRef tos;
  |  |12462|    112|            _PyStackRef value;
  |  |12463|    112|            _PyStackRef res;
  |  |12464|    112|            _PyStackRef v;
  |  |12465|       |            // _GUARD_TOS_LIST
  |  |12466|    112|            {
  |  |12467|    112|                tos = stack_pointer[-1];
  |  |12468|    112|                PyObject *o = PyStackRef_AsPyObjectBorrow(tos);
  |  |12469|    112|                if (!PyList_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   26|    112|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    112|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12469:21): [True: 0, False: 112]
  |  |  ------------------
  |  |12470|      0|                    UPDATE_MISS_STATS(TO_BOOL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12471|      0|                    assert(_PyOpcode_Deopt[opcode] == (TO_BOOL));
  |  |  ------------------
  |  |  |  Branch (12471:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12472|      0|                    JUMP_TO_PREDICTED(TO_BOOL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12473|      0|                }
  |  |12474|    112|            }
  |  |12475|       |            /* Skip 1 cache entry */
  |  |12476|       |            /* Skip 2 cache entries */
  |  |12477|       |            // _TO_BOOL_LIST
  |  |12478|    112|            {
  |  |12479|    112|                value = tos;
  |  |12480|    112|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |12481|    112|                assert(PyList_CheckExact(value_o));
  |  |  ------------------
  |  |  |  Branch (12481:17): [True: 112, False: 0]
  |  |  ------------------
  |  |12482|    112|                STAT_INC(TO_BOOL, hit);
  |  |  ------------------
  |  |  |  |   73|    112|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12483|    112|                res = PyList_GET_SIZE(value_o) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |   38|    112|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (38:29): [True: 52, False: 60]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = PyList_GET_SIZE(value_o) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|     52|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     52|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = PyList_GET_SIZE(value_o) ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    172|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     60|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12484|    112|                v = value;
  |  |12485|    112|            }
  |  |12486|       |            // _POP_TOP
  |  |12487|      0|            {
  |  |12488|    112|                value = v;
  |  |12489|    112|                stack_pointer[-1] = res;
  |  |12490|    112|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12491|    112|                PyStackRef_XCLOSE(value);
  |  |12492|    112|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12493|    112|            }
  |  |12494|    112|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    112|    { \
  |  |  |  |  201|    112|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    112|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    112|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    112|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    112|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    112|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    112|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    112|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 112]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    112|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    112|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    112|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    112|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    112|    }
  |  |  ------------------
  |  |  |  Branch (12494:13): [True: 112, False: 0]
  |  |  ------------------
  |  |12495|    112|        }
  |  |12496|       |
  |  |12497|    172|        TARGET(TO_BOOL_NONE) {
  |  |  ------------------
  |  |  |  |  132|    172|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12498|       |            #if _Py_TAIL_CALL_INTERP
  |  |12499|       |            int opcode = TO_BOOL_NONE;
  |  |12500|       |            (void)(opcode);
  |  |12501|       |            #endif
  |  |12502|    172|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12503|    172|            (void)this_instr;
  |  |12504|    172|            frame->instr_ptr = next_instr;
  |  |12505|    172|            next_instr += 4;
  |  |12506|    172|            INSTRUCTION_STATS(TO_BOOL_NONE);
  |  |  ------------------
  |  |  |  |   71|    172|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12507|    172|            static_assert(INLINE_CACHE_ENTRIES_TO_BOOL == 3, "incorrect cache size");
  |  |12508|    172|            _PyStackRef value;
  |  |12509|    172|            _PyStackRef res;
  |  |12510|       |            /* Skip 1 cache entry */
  |  |12511|       |            /* Skip 2 cache entries */
  |  |12512|    172|            value = stack_pointer[-1];
  |  |12513|    172|            if (!PyStackRef_IsNone(value)) {
  |  |  ------------------
  |  |  |  |  483|    172|#define PyStackRef_IsNone(REF) ((REF).bits == (((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    172|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12513:17): [True: 60, False: 112]
  |  |  ------------------
  |  |12514|     60|                UPDATE_MISS_STATS(TO_BOOL);
  |  |  ------------------
  |  |  |  |  298|     60|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12515|     60|                assert(_PyOpcode_Deopt[opcode] == (TO_BOOL));
  |  |  ------------------
  |  |  |  Branch (12515:17): [True: 60, False: 0]
  |  |  ------------------
  |  |12516|     60|                JUMP_TO_PREDICTED(TO_BOOL);
  |  |  ------------------
  |  |  |  |  136|     60|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12517|      0|            }
  |  |12518|    112|            STAT_INC(TO_BOOL, hit);
  |  |  ------------------
  |  |  |  |   73|    112|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12519|    112|            res = PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|    112|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    112|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12520|    112|            stack_pointer[-1] = res;
  |  |12521|    112|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    112|    { \
  |  |  |  |  201|    112|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    112|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    112|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    112|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    112|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    112|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    112|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    112|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 112]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    112|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    112|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    112|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    112|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    112|    }
  |  |  ------------------
  |  |  |  Branch (12521:13): [True: 112, False: 0]
  |  |  ------------------
  |  |12522|    112|        }
  |  |12523|       |
  |  |12524|    442|        TARGET(TO_BOOL_STR) {
  |  |  ------------------
  |  |  |  |  132|    442|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12525|       |            #if _Py_TAIL_CALL_INTERP
  |  |12526|       |            int opcode = TO_BOOL_STR;
  |  |12527|       |            (void)(opcode);
  |  |12528|       |            #endif
  |  |12529|    442|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12530|    442|            (void)this_instr;
  |  |12531|    442|            frame->instr_ptr = next_instr;
  |  |12532|    442|            next_instr += 4;
  |  |12533|    442|            INSTRUCTION_STATS(TO_BOOL_STR);
  |  |  ------------------
  |  |  |  |   71|    442|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12534|    442|            static_assert(INLINE_CACHE_ENTRIES_TO_BOOL == 3, "incorrect cache size");
  |  |12535|    442|            _PyStackRef value;
  |  |12536|    442|            _PyStackRef res;
  |  |12537|    442|            _PyStackRef v;
  |  |12538|       |            // _GUARD_TOS_UNICODE
  |  |12539|    442|            {
  |  |12540|    442|                value = stack_pointer[-1];
  |  |12541|    442|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |12542|    442|                if (!PyUnicode_CheckExact(value_o)) {
  |  |  ------------------
  |  |  |  |  104|    442|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    442|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    442|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    442|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12542:21): [True: 0, False: 442]
  |  |  ------------------
  |  |12543|      0|                    UPDATE_MISS_STATS(TO_BOOL);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12544|      0|                    assert(_PyOpcode_Deopt[opcode] == (TO_BOOL));
  |  |  ------------------
  |  |  |  Branch (12544:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12545|      0|                    JUMP_TO_PREDICTED(TO_BOOL);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12546|      0|                }
  |  |12547|    442|            }
  |  |12548|       |            /* Skip 1 cache entry */
  |  |12549|       |            /* Skip 2 cache entries */
  |  |12550|       |            // _TO_BOOL_STR
  |  |12551|    442|            {
  |  |12552|    442|                STAT_INC(TO_BOOL, hit);
  |  |  ------------------
  |  |  |  |   73|    442|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12553|    442|                PyObject *value_o = PyStackRef_AsPyObjectBorrow(value);
  |  |12554|    442|                res = value_o == &_Py_STR(empty) ? PyStackRef_False : PyStackRef_True;
  |  |  ------------------
  |  |  |  |  919|    442|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|    442|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   16|    442|    _PyRuntime.static_objects.NAME
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = value_o == &_Py_STR(empty) ? PyStackRef_False : PyStackRef_True;
  |  |  ------------------
  |  |  |  |  472|     88|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     88|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                               res = value_o == &_Py_STR(empty) ? PyStackRef_False : PyStackRef_True;
  |  |  ------------------
  |  |  |  |  471|    796|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    354|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12554:23): [True: 88, False: 354]
  |  |  ------------------
  |  |12555|    442|                v = value;
  |  |12556|    442|            }
  |  |12557|       |            // _POP_TOP_UNICODE
  |  |12558|    442|            {
  |  |12559|    442|                value = v;
  |  |12560|    442|                assert(PyUnicode_CheckExact(PyStackRef_AsPyObjectBorrow(value)));
  |  |  ------------------
  |  |  |  Branch (12560:17): [True: 442, False: 0]
  |  |  ------------------
  |  |12561|    442|                PyStackRef_CLOSE_SPECIALIZED(value, _PyUnicode_ExactDealloc);
  |  |12562|    442|            }
  |  |12563|      0|            stack_pointer[-1] = res;
  |  |12564|    442|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    442|    { \
  |  |  |  |  201|    442|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    442|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    442|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    442|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    442|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    442|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    442|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    442|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 442]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    442|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    442|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    442|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    442|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    442|    }
  |  |  ------------------
  |  |  |  Branch (12564:13): [True: 442, False: 0]
  |  |  ------------------
  |  |12565|    442|        }
  |  |12566|       |
  |  |12567|      0|        TARGET(TRACE_RECORD) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12568|       |            #if _Py_TAIL_CALL_INTERP
  |  |12569|       |            int opcode = TRACE_RECORD;
  |  |12570|       |            (void)(opcode);
  |  |12571|       |            #endif
  |  |12572|      0|            _Py_CODEUNIT* const prev_instr = frame->instr_ptr;
  |  |12573|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12574|      0|            (void)this_instr;
  |  |12575|      0|            frame->instr_ptr = next_instr;
  |  |12576|      0|            next_instr += 1;
  |  |12577|      0|            INSTRUCTION_STATS(TRACE_RECORD);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12578|      0|            opcode = TRACE_RECORD;
  |  |  ------------------
  |  |  |  |  246|      0|#define TRACE_RECORD                           255
  |  |  ------------------
  |  |12579|       |            #if _Py_TIER2
  |  |12580|       |            assert(IS_JIT_TRACING());
  |  |12581|       |            next_instr = this_instr;
  |  |12582|       |            frame->instr_ptr = prev_instr;
  |  |12583|       |            opcode = next_instr->op.code;
  |  |12584|       |            bool stop_tracing = (
  |  |12585|       |                                 opcode == WITH_EXCEPT_START ||
  |  |12586|       |                                 opcode == RERAISE ||
  |  |12587|       |                                 opcode == CLEANUP_THROW ||
  |  |12588|       |                                 opcode == PUSH_EXC_INFO ||
  |  |12589|       |                                 opcode == INTERPRETER_EXIT ||
  |  |12590|       |                                 (opcode >= MIN_INSTRUMENTED_OPCODE && opcode != ENTER_EXECUTOR)
  |  |12591|       |            );
  |  |12592|       |            _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  |  |12593|       |            _PyJitTracerState *tracer = _tstate->jit_tracer_state;
  |  |12594|       |            assert(tracer != NULL);
  |  |12595|       |            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12596|       |            int full = !_PyJit_translate_single_bytecode_to_trace(tstate, frame, next_instr, stop_tracing ? _DEOPT : 0);
  |  |12597|       |            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12598|       |            if (full) {
  |  |12599|       |                LEAVE_TRACING();
  |  |12600|       |                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12601|       |                int err = stop_tracing_and_jit(tstate, frame);
  |  |12602|       |                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12603|       |                if (err < 0) {
  |  |12604|       |                    JUMP_TO_LABEL(error);
  |  |12605|       |                }
  |  |12606|       |                DISPATCH();
  |  |12607|       |            }
  |  |12608|       |            for (int i = 0; i < tracer->prev_state.recorded_count; i++) {
  |  |12609|       |                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12610|       |                Py_CLEAR(tracer->prev_state.recorded_values[i]);
  |  |12611|       |                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12612|       |            }
  |  |12613|       |            tracer->prev_state.recorded_count = 0;
  |  |12614|       |            tracer->prev_state.instr = next_instr;
  |  |12615|       |            PyObject *prev_code = PyStackRef_AsPyObjectBorrow(frame->f_executable);
  |  |12616|       |            if (tracer->prev_state.instr_code != (PyCodeObject *)prev_code) {
  |  |12617|       |                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12618|       |                Py_SETREF(tracer->prev_state.instr_code, (PyCodeObject*)Py_NewRef((prev_code)));
  |  |12619|       |                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12620|       |            }
  |  |12621|       |            tracer->prev_state.instr_frame = frame;
  |  |12622|       |            tracer->prev_state.instr_oparg = oparg;
  |  |12623|       |            tracer->prev_state.instr_stacklevel = PyStackRef_IsNone(frame->f_executable) ? 2 : STACK_LEVEL();
  |  |12624|       |            if (_PyOpcode_Caches[_PyOpcode_Deopt[opcode]]
  |  |12625|       |                // Branch opcodes use the cache for branch history, not
  |  |12626|       |                // specialization counters.  Don't reset it.
  |  |12627|       |                && !IS_CONDITIONAL_JUMP_OPCODE(opcode)) {
  |  |12628|       |                (&next_instr[1])->counter = trigger_backoff_counter();
  |  |12629|       |            }
  |  |12630|       |            const _PyOpcodeRecordEntry *record_entry = &_PyOpcode_RecordEntries[opcode];
  |  |12631|       |            for (int i = 0; i < record_entry->count; i++) {
  |  |12632|       |                _Py_RecordFuncPtr doesnt_escape = _PyOpcode_RecordFunctions[record_entry->indices[i]];
  |  |12633|       |                doesnt_escape(frame, stack_pointer, oparg, &tracer->prev_state.recorded_values[i]);
  |  |12634|       |            }
  |  |12635|       |            tracer->prev_state.recorded_count = record_entry->count;
  |  |12636|       |            DISPATCH_GOTO_NON_TRACING();
  |  |12637|       |            #else
  |  |12638|      0|            (void)prev_instr;
  |  |12639|      0|            Py_FatalError("JIT instruction executed in non-jit build.");
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  |  |12640|      0|            #endif
  |  |12641|      0|        }
  |  |12642|       |
  |  |12643|      0|        TARGET(UNARY_INVERT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12644|       |            #if _Py_TAIL_CALL_INTERP
  |  |12645|       |            int opcode = UNARY_INVERT;
  |  |12646|       |            (void)(opcode);
  |  |12647|       |            #endif
  |  |12648|      0|            frame->instr_ptr = next_instr;
  |  |12649|      0|            next_instr += 1;
  |  |12650|      0|            INSTRUCTION_STATS(UNARY_INVERT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12651|      0|            _PyStackRef value;
  |  |12652|      0|            _PyStackRef res;
  |  |12653|      0|            _PyStackRef v;
  |  |12654|       |            // _UNARY_INVERT
  |  |12655|      0|            {
  |  |12656|      0|                value = stack_pointer[-1];
  |  |12657|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12658|      0|                PyObject *res_o = PyNumber_Invert(PyStackRef_AsPyObjectBorrow(value));
  |  |12659|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12660|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (12660:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12661|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12662|      0|                }
  |  |12663|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |12664|      0|                v = value;
  |  |12665|      0|            }
  |  |12666|       |            // _POP_TOP
  |  |12667|      0|            {
  |  |12668|      0|                value = v;
  |  |12669|      0|                stack_pointer[-1] = res;
  |  |12670|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12671|      0|                PyStackRef_XCLOSE(value);
  |  |12672|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12673|      0|            }
  |  |12674|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12674:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12675|      0|        }
  |  |12676|       |
  |  |12677|      0|        TARGET(UNARY_NEGATIVE) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12678|       |            #if _Py_TAIL_CALL_INTERP
  |  |12679|       |            int opcode = UNARY_NEGATIVE;
  |  |12680|       |            (void)(opcode);
  |  |12681|       |            #endif
  |  |12682|      0|            frame->instr_ptr = next_instr;
  |  |12683|      0|            next_instr += 1;
  |  |12684|      0|            INSTRUCTION_STATS(UNARY_NEGATIVE);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12685|      0|            _PyStackRef value;
  |  |12686|      0|            _PyStackRef res;
  |  |12687|      0|            _PyStackRef v;
  |  |12688|       |            // _UNARY_NEGATIVE
  |  |12689|      0|            {
  |  |12690|      0|                value = stack_pointer[-1];
  |  |12691|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12692|      0|                PyObject *res_o = PyNumber_Negative(PyStackRef_AsPyObjectBorrow(value));
  |  |12693|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12694|      0|                if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (12694:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12695|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12696|      0|                }
  |  |12697|      0|                res = PyStackRef_FromPyObjectSteal(res_o);
  |  |12698|      0|                v = value;
  |  |12699|      0|            }
  |  |12700|       |            // _POP_TOP
  |  |12701|      0|            {
  |  |12702|      0|                value = v;
  |  |12703|      0|                stack_pointer[-1] = res;
  |  |12704|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12705|      0|                PyStackRef_XCLOSE(value);
  |  |12706|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12707|      0|            }
  |  |12708|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12708:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12709|      0|        }
  |  |12710|       |
  |  |12711|      0|        TARGET(UNARY_NOT) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12712|       |            #if _Py_TAIL_CALL_INTERP
  |  |12713|       |            int opcode = UNARY_NOT;
  |  |12714|       |            (void)(opcode);
  |  |12715|       |            #endif
  |  |12716|      0|            frame->instr_ptr = next_instr;
  |  |12717|      0|            next_instr += 1;
  |  |12718|      0|            INSTRUCTION_STATS(UNARY_NOT);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12719|      0|            _PyStackRef value;
  |  |12720|      0|            _PyStackRef res;
  |  |12721|      0|            value = stack_pointer[-1];
  |  |12722|      0|            assert(PyStackRef_BoolCheck(value));
  |  |  ------------------
  |  |  |  Branch (12722:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12723|      0|            res = PyStackRef_IsFalse(value)
  |  |  ------------------
  |  |  |  |  482|      0|#define PyStackRef_IsFalse(REF) ((REF).bits == (((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT))
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (482:33): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12724|      0|            ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  471|      0|#define PyStackRef_True ((_PyStackRef){.bits = ((uintptr_t)&_Py_TrueStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                           ? PyStackRef_True : PyStackRef_False;
  |  |  ------------------
  |  |  |  |  472|      0|#define PyStackRef_False ((_PyStackRef){.bits = ((uintptr_t)&_Py_FalseStruct) | Py_TAG_REFCNT })
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12725|      0|            stack_pointer[-1] = res;
  |  |12726|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12726:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12727|      0|        }
  |  |12728|       |
  |  |12729|      0|        TARGET(UNPACK_EX) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12730|       |            #if _Py_TAIL_CALL_INTERP
  |  |12731|       |            int opcode = UNPACK_EX;
  |  |12732|       |            (void)(opcode);
  |  |12733|       |            #endif
  |  |12734|      0|            frame->instr_ptr = next_instr;
  |  |12735|      0|            next_instr += 1;
  |  |12736|      0|            INSTRUCTION_STATS(UNPACK_EX);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12737|      0|            _PyStackRef seq;
  |  |12738|      0|            _PyStackRef *top;
  |  |12739|      0|            seq = stack_pointer[-1];
  |  |12740|      0|            top = &stack_pointer[(oparg & 0xFF) + (oparg >> 8)];
  |  |12741|      0|            PyObject *seq_o = PyStackRef_AsPyObjectSteal(seq);
  |  |12742|      0|            stack_pointer += -1;
  |  |12743|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12744|      0|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12745|      0|            int res = _PyEval_UnpackIterableStackRef(tstate, seq_o, oparg & 0xFF, oparg >> 8, top);
  |  |12746|      0|            Py_DECREF(seq_o);
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12747|      0|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12748|      0|            if (res == 0) {
  |  |  ------------------
  |  |  |  Branch (12748:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12749|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12750|      0|            }
  |  |12751|      0|            stack_pointer += 1 + (oparg & 0xFF) + (oparg >> 8);
  |  |12752|      0|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12753|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12753:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12754|      0|        }
  |  |12755|       |
  |  |12756|     36|        TARGET(UNPACK_SEQUENCE) {
  |  |  ------------------
  |  |  |  |  132|     36|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12757|       |            #if _Py_TAIL_CALL_INTERP
  |  |12758|       |            int opcode = UNPACK_SEQUENCE;
  |  |12759|       |            (void)(opcode);
  |  |12760|       |            #endif
  |  |12761|     36|            frame->instr_ptr = next_instr;
  |  |12762|     36|            next_instr += 2;
  |  |12763|     36|            INSTRUCTION_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |   71|     36|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12764|     36|            PREDICTED_UNPACK_SEQUENCE:;
  |  |12765|     36|            _Py_CODEUNIT* const this_instr = next_instr - 2;
  |  |12766|     36|            (void)this_instr;
  |  |12767|     36|            _PyStackRef seq;
  |  |12768|     36|            _PyStackRef *top;
  |  |12769|       |            // _SPECIALIZE_UNPACK_SEQUENCE
  |  |12770|     36|            {
  |  |12771|     36|                seq = stack_pointer[-1];
  |  |12772|     36|                uint16_t counter = read_u16(&this_instr[1].cache);
  |  |12773|     36|                (void)counter;
  |  |12774|     36|                #if ENABLE_SPECIALIZATION
  |  |12775|     36|                if (ADAPTIVE_COUNTER_TRIGGERS(counter)) {
  |  |  ------------------
  |  |  |  |  354|     36|    backoff_counter_triggers(forge_backoff_counter((COUNTER)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (354:5): [True: 14, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12776|     14|                    next_instr = this_instr;
  |  |12777|     14|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12778|     14|                    _Py_Specialize_UnpackSequence(seq, next_instr, oparg);
  |  |12779|     14|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12780|     14|                    DISPATCH_SAME_OPARG();
  |  |  ------------------
  |  |  |  |  216|     14|    { \
  |  |  |  |  217|     14|        opcode = next_instr->op.code; \
  |  |  |  |  218|     14|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     14|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  219|     14|        DISPATCH_GOTO_NON_TRACING(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|     14|#  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  130|     14|#  define DISPATCH_TABLE opcode_targets_table
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  220|     14|    }
  |  |  ------------------
  |  |12781|     14|                }
  |  |12782|     36|                OPCODE_DEFERRED_INC(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |   90|     36|#define OPCODE_DEFERRED_INC(opname) ((void)0)
  |  |  ------------------
  |  |12783|     36|                ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
  |  |  ------------------
  |  |  |  |  357|     36|    do { \
  |  |  |  |  358|     36|        (COUNTER) = advance_backoff_counter((COUNTER)); \
  |  |  |  |  359|     36|    } while (0);
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (359:14): [Folded, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12784|     36|                #endif  /* ENABLE_SPECIALIZATION */
  |  |12785|     36|                (void)seq;
  |  |12786|     36|                (void)counter;
  |  |12787|     36|            }
  |  |12788|       |            // _UNPACK_SEQUENCE
  |  |12789|     36|            {
  |  |12790|     36|                top = &stack_pointer[-1 + oparg];
  |  |12791|     36|                PyObject *seq_o = PyStackRef_AsPyObjectSteal(seq);
  |  |12792|     36|                stack_pointer += -1;
  |  |12793|     36|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     36|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12794|     36|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12795|     36|                int res = _PyEval_UnpackIterableStackRef(tstate, seq_o, oparg, -1, top);
  |  |12796|     36|                Py_DECREF(seq_o);
  |  |  ------------------
  |  |  |  |   80|     36|    do { \
  |  |  |  |   81|     36|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|     36|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|     36|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 36]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|     36|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|     36|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|     36|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 10, False: 26]
  |  |  |  |  ------------------
  |  |  |  |   88|     10|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|     10|    do { \
  |  |  |  |  |  |  113|     10|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|     10|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 10]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|     10|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 10]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|     10|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|     10|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|     10|            (*dealloc)(op); \
  |  |  |  |   91|     10|        } \
  |  |  |  |   92|     36|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12797|     36|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12798|     36|                if (res == 0) {
  |  |  ------------------
  |  |  |  Branch (12798:21): [True: 0, False: 36]
  |  |  ------------------
  |  |12799|      0|                    JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |12800|      0|                }
  |  |12801|     36|            }
  |  |12802|     36|            stack_pointer += oparg;
  |  |12803|     36|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     36|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12804|     36|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     36|    { \
  |  |  |  |  201|     36|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     36|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     22|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     22|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     22|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     22|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     22|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     22|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 22]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     22|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     22|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     22|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     22|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     22|    }
  |  |  ------------------
  |  |  |  Branch (12804:13): [True: 22, False: 14]
  |  |  ------------------
  |  |12805|     22|        }
  |  |12806|       |
  |  |12807|      0|        TARGET(UNPACK_SEQUENCE_LIST) {
  |  |  ------------------
  |  |  |  |  132|      0|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12808|       |            #if _Py_TAIL_CALL_INTERP
  |  |12809|       |            int opcode = UNPACK_SEQUENCE_LIST;
  |  |12810|       |            (void)(opcode);
  |  |12811|       |            #endif
  |  |12812|      0|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12813|      0|            (void)this_instr;
  |  |12814|      0|            frame->instr_ptr = next_instr;
  |  |12815|      0|            next_instr += 2;
  |  |12816|      0|            INSTRUCTION_STATS(UNPACK_SEQUENCE_LIST);
  |  |  ------------------
  |  |  |  |   71|      0|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12817|      0|            static_assert(INLINE_CACHE_ENTRIES_UNPACK_SEQUENCE == 1, "incorrect cache size");
  |  |12818|      0|            _PyStackRef tos;
  |  |12819|      0|            _PyStackRef seq;
  |  |12820|      0|            _PyStackRef *values;
  |  |12821|       |            // _GUARD_TOS_LIST
  |  |12822|      0|            {
  |  |12823|      0|                tos = stack_pointer[-1];
  |  |12824|      0|                PyObject *o = PyStackRef_AsPyObjectBorrow(tos);
  |  |12825|      0|                if (!PyList_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   26|      0|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12825:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12826|      0|                    UPDATE_MISS_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12827|      0|                    assert(_PyOpcode_Deopt[opcode] == (UNPACK_SEQUENCE));
  |  |  ------------------
  |  |  |  Branch (12827:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12828|      0|                    JUMP_TO_PREDICTED(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12829|      0|                }
  |  |12830|      0|            }
  |  |12831|       |            /* Skip 1 cache entry */
  |  |12832|       |            // _UNPACK_SEQUENCE_LIST
  |  |12833|      0|            {
  |  |12834|      0|                seq = tos;
  |  |12835|      0|                values = &stack_pointer[-1];
  |  |12836|      0|                PyObject *seq_o = PyStackRef_AsPyObjectBorrow(seq);
  |  |12837|      0|                assert(PyList_CheckExact(seq_o));
  |  |  ------------------
  |  |  |  Branch (12837:17): [True: 0, False: 0]
  |  |  ------------------
  |  |12838|      0|                if (!LOCK_OBJECT(seq_o)) {
  |  |  ------------------
  |  |  |  |  321|      0|#  define LOCK_OBJECT(op) (1)
  |  |  ------------------
  |  |  |  Branch (12838:21): [Folded, False: 0]
  |  |  ------------------
  |  |12839|      0|                    UPDATE_MISS_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12840|      0|                    assert(_PyOpcode_Deopt[opcode] == (UNPACK_SEQUENCE));
  |  |  ------------------
  |  |  |  Branch (12840:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12841|      0|                    JUMP_TO_PREDICTED(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12842|      0|                }
  |  |12843|      0|                if (PyList_GET_SIZE(seq_o) != oparg) {
  |  |  ------------------
  |  |  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12843:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12844|      0|                    UNLOCK_OBJECT(seq_o);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |12845|      0|                    if (true) {
  |  |  ------------------
  |  |  |  Branch (12845:25): [True: 0, Folded]
  |  |  ------------------
  |  |12846|      0|                        UPDATE_MISS_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12847|      0|                        assert(_PyOpcode_Deopt[opcode] == (UNPACK_SEQUENCE));
  |  |  ------------------
  |  |  |  Branch (12847:25): [True: 0, False: 0]
  |  |  ------------------
  |  |12848|      0|                        JUMP_TO_PREDICTED(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12849|      0|                    }
  |  |12850|      0|                }
  |  |12851|      0|                STAT_INC(UNPACK_SEQUENCE, hit);
  |  |  ------------------
  |  |  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12852|      0|                PyObject **items = _PyList_ITEMS(seq_o);
  |  |  ------------------
  |  |  |  |   30|      0|#define _PyList_ITEMS(op) _Py_RVALUE(_PyList_CAST(op)->ob_item)
  |  |  |  |  ------------------
  |  |  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12853|      0|                for (int i = oparg; --i >= 0; ) {
  |  |  ------------------
  |  |  |  Branch (12853:37): [True: 0, False: 0]
  |  |  ------------------
  |  |12854|      0|                    *values++ = PyStackRef_FromPyObjectNew(items[i]);
  |  |  ------------------
  |  |  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12855|      0|                }
  |  |12856|      0|                UNLOCK_OBJECT(seq_o);
  |  |  ------------------
  |  |  |  |  322|      0|#  define UNLOCK_OBJECT(op) ((void)0)
  |  |  ------------------
  |  |12857|      0|                stack_pointer += -1 + oparg;
  |  |12858|      0|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      0|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12859|      0|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12860|      0|                PyStackRef_CLOSE(seq);
  |  |12861|      0|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12862|      0|            }
  |  |12863|      0|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      0|    { \
  |  |  |  |  201|      0|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      0|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      0|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      0|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      0|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      0|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      0|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      0|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      0|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      0|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      0|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      0|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      0|    }
  |  |  ------------------
  |  |  |  Branch (12863:13): [True: 0, False: 0]
  |  |  ------------------
  |  |12864|      0|        }
  |  |12865|       |
  |  |12866|     26|        TARGET(UNPACK_SEQUENCE_TUPLE) {
  |  |  ------------------
  |  |  |  |  132|     26|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12867|       |            #if _Py_TAIL_CALL_INTERP
  |  |12868|       |            int opcode = UNPACK_SEQUENCE_TUPLE;
  |  |12869|       |            (void)(opcode);
  |  |12870|       |            #endif
  |  |12871|     26|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12872|     26|            (void)this_instr;
  |  |12873|     26|            frame->instr_ptr = next_instr;
  |  |12874|     26|            next_instr += 2;
  |  |12875|     26|            INSTRUCTION_STATS(UNPACK_SEQUENCE_TUPLE);
  |  |  ------------------
  |  |  |  |   71|     26|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12876|     26|            static_assert(INLINE_CACHE_ENTRIES_UNPACK_SEQUENCE == 1, "incorrect cache size");
  |  |12877|     26|            _PyStackRef tos;
  |  |12878|     26|            _PyStackRef seq;
  |  |12879|     26|            _PyStackRef *values;
  |  |12880|       |            // _GUARD_TOS_TUPLE
  |  |12881|     26|            {
  |  |12882|     26|                tos = stack_pointer[-1];
  |  |12883|     26|                PyObject *o = PyStackRef_AsPyObjectBorrow(tos);
  |  |12884|     26|                if (!PyTuple_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   28|     26|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|     26|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12884:21): [True: 0, False: 26]
  |  |  ------------------
  |  |12885|      0|                    UPDATE_MISS_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12886|      0|                    assert(_PyOpcode_Deopt[opcode] == (UNPACK_SEQUENCE));
  |  |  ------------------
  |  |  |  Branch (12886:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12887|      0|                    JUMP_TO_PREDICTED(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12888|      0|                }
  |  |12889|     26|            }
  |  |12890|       |            /* Skip 1 cache entry */
  |  |12891|       |            // _UNPACK_SEQUENCE_TUPLE
  |  |12892|     26|            {
  |  |12893|     26|                seq = tos;
  |  |12894|     26|                values = &stack_pointer[-1];
  |  |12895|     26|                PyObject *seq_o = PyStackRef_AsPyObjectBorrow(seq);
  |  |12896|     26|                assert(PyTuple_CheckExact(seq_o));
  |  |  ------------------
  |  |  |  Branch (12896:17): [True: 26, False: 0]
  |  |  ------------------
  |  |12897|     26|                if (PyTuple_GET_SIZE(seq_o) != oparg) {
  |  |  ------------------
  |  |  |  |   27|     26|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12897:21): [True: 0, False: 26]
  |  |  ------------------
  |  |12898|      0|                    UPDATE_MISS_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12899|      0|                    assert(_PyOpcode_Deopt[opcode] == (UNPACK_SEQUENCE));
  |  |  ------------------
  |  |  |  Branch (12899:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12900|      0|                    JUMP_TO_PREDICTED(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12901|      0|                }
  |  |12902|     26|                STAT_INC(UNPACK_SEQUENCE, hit);
  |  |  ------------------
  |  |  |  |   73|     26|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12903|     26|                PyObject **items = _PyTuple_ITEMS(seq_o);
  |  |  ------------------
  |  |  |  |   26|     26|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  |  |  ------------------
  |  |  |  |  |  |  277|     52|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (277:37): [True: 26, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12904|    104|                for (int i = oparg; --i >= 0; ) {
  |  |  ------------------
  |  |  |  Branch (12904:37): [True: 78, False: 26]
  |  |  ------------------
  |  |12905|     78|                    *values++ = PyStackRef_FromPyObjectNew(items[i]);
  |  |  ------------------
  |  |  |  |  599|     78|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12906|     78|                }
  |  |12907|     26|                stack_pointer += -1 + oparg;
  |  |12908|     26|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     26|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12909|     26|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12910|     26|                PyStackRef_CLOSE(seq);
  |  |12911|     26|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12912|     26|            }
  |  |12913|     26|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     26|    { \
  |  |  |  |  201|     26|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     26|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     26|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     26|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     26|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     26|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     26|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     26|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 26]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     26|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     26|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     26|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     26|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     26|    }
  |  |  ------------------
  |  |  |  Branch (12913:13): [True: 26, False: 0]
  |  |  ------------------
  |  |12914|     26|        }
  |  |12915|       |
  |  |12916|    126|        TARGET(UNPACK_SEQUENCE_TWO_TUPLE) {
  |  |  ------------------
  |  |  |  |  132|    126|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12917|       |            #if _Py_TAIL_CALL_INTERP
  |  |12918|       |            int opcode = UNPACK_SEQUENCE_TWO_TUPLE;
  |  |12919|       |            (void)(opcode);
  |  |12920|       |            #endif
  |  |12921|    126|            _Py_CODEUNIT* const this_instr = next_instr;
  |  |12922|    126|            (void)this_instr;
  |  |12923|    126|            frame->instr_ptr = next_instr;
  |  |12924|    126|            next_instr += 2;
  |  |12925|    126|            INSTRUCTION_STATS(UNPACK_SEQUENCE_TWO_TUPLE);
  |  |  ------------------
  |  |  |  |   71|    126|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12926|    126|            static_assert(INLINE_CACHE_ENTRIES_UNPACK_SEQUENCE == 1, "incorrect cache size");
  |  |12927|    126|            _PyStackRef tos;
  |  |12928|    126|            _PyStackRef seq;
  |  |12929|    126|            _PyStackRef val1;
  |  |12930|    126|            _PyStackRef val0;
  |  |12931|       |            // _GUARD_TOS_TUPLE
  |  |12932|    126|            {
  |  |12933|    126|                tos = stack_pointer[-1];
  |  |12934|    126|                PyObject *o = PyStackRef_AsPyObjectBorrow(tos);
  |  |12935|    126|                if (!PyTuple_CheckExact(o)) {
  |  |  ------------------
  |  |  |  |   28|    126|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|    126|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|    126|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|    126|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12935:21): [True: 0, False: 126]
  |  |  ------------------
  |  |12936|      0|                    UPDATE_MISS_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12937|      0|                    assert(_PyOpcode_Deopt[opcode] == (UNPACK_SEQUENCE));
  |  |  ------------------
  |  |  |  Branch (12937:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12938|      0|                    JUMP_TO_PREDICTED(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12939|      0|                }
  |  |12940|    126|            }
  |  |12941|       |            /* Skip 1 cache entry */
  |  |12942|       |            // _UNPACK_SEQUENCE_TWO_TUPLE
  |  |12943|    126|            {
  |  |12944|    126|                seq = tos;
  |  |12945|    126|                assert(oparg == 2);
  |  |  ------------------
  |  |  |  Branch (12945:17): [True: 126, False: 0]
  |  |  ------------------
  |  |12946|    126|                PyObject *seq_o = PyStackRef_AsPyObjectBorrow(seq);
  |  |12947|    126|                assert(PyTuple_CheckExact(seq_o));
  |  |  ------------------
  |  |  |  Branch (12947:17): [True: 126, False: 0]
  |  |  ------------------
  |  |12948|    126|                if (PyTuple_GET_SIZE(seq_o) != 2) {
  |  |  ------------------
  |  |  |  |   27|    126|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    126|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    126|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (12948:21): [True: 0, False: 126]
  |  |  ------------------
  |  |12949|      0|                    UPDATE_MISS_STATS(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  298|      0|#define UPDATE_MISS_STATS(INSTNAME) ((void)0)
  |  |  ------------------
  |  |12950|      0|                    assert(_PyOpcode_Deopt[opcode] == (UNPACK_SEQUENCE));
  |  |  ------------------
  |  |  |  Branch (12950:21): [True: 0, False: 0]
  |  |  ------------------
  |  |12951|      0|                    JUMP_TO_PREDICTED(UNPACK_SEQUENCE);
  |  |  ------------------
  |  |  |  |  136|      0|#  define JUMP_TO_PREDICTED(name) goto PREDICTED_##name;
  |  |  ------------------
  |  |12952|      0|                }
  |  |12953|    126|                STAT_INC(UNPACK_SEQUENCE, hit);
  |  |  ------------------
  |  |  |  |   73|    126|#define STAT_INC(opname, name) ((void)0)
  |  |  ------------------
  |  |12954|    126|                val0 = PyStackRef_FromPyObjectNew(PyTuple_GET_ITEM(seq_o, 0));
  |  |  ------------------
  |  |  |  |  599|    126|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    126|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (37:38): [True: 126, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12955|    126|                val1 = PyStackRef_FromPyObjectNew(PyTuple_GET_ITEM(seq_o, 1));
  |  |  ------------------
  |  |  |  |  599|    126|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    126|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (37:38): [True: 126, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12956|      0|                stack_pointer[-1] = val1;
  |  |12957|    126|                stack_pointer[0] = val0;
  |  |12958|    126|                stack_pointer += 1;
  |  |12959|    126|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|    126|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |12960|    126|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |12961|    126|                PyStackRef_CLOSE(seq);
  |  |12962|    126|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |12963|    126|            }
  |  |12964|    126|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    126|    { \
  |  |  |  |  201|    126|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    126|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    126|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    126|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    126|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    126|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    126|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    126|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 126]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    126|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    126|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    126|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    126|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    126|    }
  |  |  ------------------
  |  |  |  Branch (12964:13): [True: 126, False: 0]
  |  |  ------------------
  |  |12965|    126|        }
  |  |12966|       |
  |  |12967|      4|        TARGET(WITH_EXCEPT_START) {
  |  |  ------------------
  |  |  |  |  132|      4|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |12968|       |            #if _Py_TAIL_CALL_INTERP
  |  |12969|       |            int opcode = WITH_EXCEPT_START;
  |  |12970|       |            (void)(opcode);
  |  |12971|       |            #endif
  |  |12972|      4|            frame->instr_ptr = next_instr;
  |  |12973|      4|            next_instr += 1;
  |  |12974|      4|            INSTRUCTION_STATS(WITH_EXCEPT_START);
  |  |  ------------------
  |  |  |  |   71|      4|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |12975|      4|            _PyStackRef exit_func;
  |  |12976|      4|            _PyStackRef exit_self;
  |  |12977|      4|            _PyStackRef lasti;
  |  |12978|      4|            _PyStackRef val;
  |  |12979|      4|            _PyStackRef res;
  |  |12980|      4|            val = stack_pointer[-1];
  |  |12981|      4|            lasti = stack_pointer[-3];
  |  |12982|      4|            exit_self = stack_pointer[-4];
  |  |12983|      4|            exit_func = stack_pointer[-5];
  |  |12984|      4|            PyObject *exc, *tb;
  |  |12985|      4|            PyObject *val_o = PyStackRef_AsPyObjectBorrow(val);
  |  |12986|      4|            PyObject *exit_func_o = PyStackRef_AsPyObjectBorrow(exit_func);
  |  |12987|      4|            assert(val_o && PyExceptionInstance_Check(val_o));
  |  |  ------------------
  |  |  |  Branch (12987:13): [True: 4, False: 0]
  |  |  |  Branch (12987:13): [True: 4, False: 0]
  |  |  ------------------
  |  |12988|      4|            exc = PyExceptionInstance_Class(val_o);
  |  |  ------------------
  |  |  |  |   69|      4|#define PyExceptionInstance_Class(x) _PyObject_CAST(Py_TYPE(x))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12989|      4|            PyObject *original_tb = tb = PyException_GetTraceback(val_o);
  |  |12990|      4|            if (tb == NULL) {
  |  |  ------------------
  |  |  |  Branch (12990:17): [True: 0, False: 4]
  |  |  ------------------
  |  |12991|      0|                tb = Py_None;
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  |  |12992|      0|            }
  |  |12993|      4|            assert(PyStackRef_IsTaggedInt(lasti));
  |  |  ------------------
  |  |  |  Branch (12993:13): [True: 4, False: 0]
  |  |  ------------------
  |  |12994|      4|            (void)lasti;
  |  |12995|      4|            PyObject* res_o;
  |  |12996|      4|            {
  |  |12997|      4|                PyObject *stack[5] = {NULL, PyStackRef_AsPyObjectBorrow(exit_self), exc, val_o, tb};
  |  |12998|      4|                int has_self = !PyStackRef_IsNull(exit_self);
  |  |  ------------------
  |  |  |  |  470|      4|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  467|      4|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      4|#define Py_TAG_REFCNT 1
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |12999|      4|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13000|      4|                res_o = PyObject_Vectorcall(exit_func_o, stack + 2 - has_self,
  |  |13001|      4|                    (3 + has_self) | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
  |  |  ------------------
  |  |  |  |  287|      4|    (_Py_STATIC_CAST(size_t, 1) << (8 * sizeof(size_t) - 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   34|      4|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |13002|      4|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13003|      4|            }
  |  |13004|      4|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13005|      4|            Py_XDECREF(original_tb);
  |  |  ------------------
  |  |  |  |   69|      4|    do { \
  |  |  |  |   70|      4|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   71|      4|        if (xop != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (71:13): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   72|      4|            Py_DECREF(xop); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|      4|    do { \
  |  |  |  |  |  |   81|      4|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      4|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  137|      4|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 4]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   84|      0|            break; \
  |  |  |  |  |  |   85|      0|        } \
  |  |  |  |  |  |   86|      4|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      4|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      4|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (87:13): [True: 0, False: 4]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |  |  |   91|      0|        } \
  |  |  |  |  |  |   92|      4|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (92:14): [Folded, False: 4]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   73|      4|        } \
  |  |  |  |   74|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (74:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |13006|      4|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13007|      4|            if (res_o == NULL) {
  |  |  ------------------
  |  |  |  Branch (13007:17): [True: 0, False: 4]
  |  |  ------------------
  |  |13008|      0|                JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13009|      0|            }
  |  |13010|      4|            res = PyStackRef_FromPyObjectSteal(res_o);
  |  |13011|      4|            stack_pointer[0] = res;
  |  |13012|      4|            stack_pointer += 1;
  |  |13013|      4|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|      4|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |13014|      4|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|      4|    { \
  |  |  |  |  201|      4|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|      4|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|      4|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|      4|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|      4|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|      4|        opcode = word.op.code; \
  |  |  |  |  |  |  253|      4|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|      4|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 4]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|      4|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|      4|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|      4|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|      4|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|      4|    }
  |  |  ------------------
  |  |  |  Branch (13014:13): [True: 4, False: 0]
  |  |  ------------------
  |  |13015|      4|        }
  |  |13016|       |
  |  |13017|     48|        TARGET(YIELD_VALUE) {
  |  |  ------------------
  |  |  |  |  132|     48|#  define TARGET(op) TARGET_##op:
  |  |  ------------------
  |  |13018|       |            #if _Py_TAIL_CALL_INTERP
  |  |13019|       |            int opcode = YIELD_VALUE;
  |  |13020|       |            (void)(opcode);
  |  |13021|       |            #endif
  |  |13022|     48|            frame->instr_ptr = next_instr;
  |  |13023|     48|            next_instr += 1;
  |  |13024|     48|            INSTRUCTION_STATS(YIELD_VALUE);
  |  |  ------------------
  |  |  |  |   71|     48|#define INSTRUCTION_STATS(op) ((void)0)
  |  |  ------------------
  |  |13025|     48|            opcode = YIELD_VALUE;
  |  |  ------------------
  |  |  |  |  132|     48|#define YIELD_VALUE                            119
  |  |  ------------------
  |  |13026|     48|            _PyStackRef value;
  |  |13027|     48|            _PyStackRef retval;
  |  |13028|       |            // _MAKE_HEAP_SAFE
  |  |13029|     48|            {
  |  |13030|     48|                value = stack_pointer[-1];
  |  |13031|     48|                value = PyStackRef_MakeHeapSafe(value);
  |  |13032|     48|            }
  |  |13033|       |            // _YIELD_VALUE
  |  |13034|     48|            {
  |  |13035|     48|                retval = value;
  |  |13036|     48|                assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (13036:17): [True: 48, False: 0]
  |  |  ------------------
  |  |13037|     48|                frame->instr_ptr++;
  |  |13038|     48|                PyGenObject *gen = _PyGen_GetGeneratorFromFrame(frame);
  |  |13039|     48|                assert(FRAME_SUSPENDED_YIELD_FROM == FRAME_SUSPENDED + 1);
  |  |  ------------------
  |  |  |  Branch (13039:17): [True: 48, Folded]
  |  |  ------------------
  |  |13040|     48|                assert(oparg == 0 || oparg == 1);
  |  |  ------------------
  |  |  |  Branch (13040:17): [True: 48, False: 0]
  |  |  |  Branch (13040:17): [True: 0, False: 0]
  |  |  ------------------
  |  |13041|     48|                _PyStackRef temp = retval;
  |  |13042|     48|                stack_pointer += -1;
  |  |13043|     48|                ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     48|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |13044|     48|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13045|     48|                DTRACE_FUNCTION_RETURN();
  |  |  ------------------
  |  |  |  |  346|     48|#define DTRACE_FUNCTION_RETURN() ((void)0)
  |  |  ------------------
  |  |13046|     48|                tstate->exc_info = gen->gi_exc_state.previous_item;
  |  |13047|     48|                gen->gi_exc_state.previous_item = NULL;
  |  |13048|     48|                _Py_LeaveRecursiveCallPy(tstate);
  |  |13049|     48|                _PyInterpreterFrame *gen_frame = frame;
  |  |13050|     48|                frame = tstate->current_frame = frame->previous;
  |  |13051|     48|                gen_frame->previous = NULL;
  |  |13052|     48|                ((_PyThreadStateImpl *)tstate)->generator_return_kind = GENERATOR_YIELD;
  |  |13053|     48|                FT_ATOMIC_STORE_INT8_RELEASE(gen->gi_frame_state, FRAME_SUSPENDED + oparg);
  |  |  ------------------
  |  |  |  |  167|     48|#define FT_ATOMIC_STORE_INT8_RELEASE(value, new_value) value = new_value
  |  |  ------------------
  |  |13054|     48|                assert(INLINE_CACHE_ENTRIES_SEND == INLINE_CACHE_ENTRIES_FOR_ITER);
  |  |  ------------------
  |  |  |  Branch (13054:17): [True: 48, Folded]
  |  |  ------------------
  |  |13055|       |                #if TIER_ONE && defined(Py_DEBUG)
  |  |13056|       |                if (!PyStackRef_IsNone(frame->f_executable)) {
  |  |13057|       |                    Py_ssize_t i = frame->instr_ptr - _PyFrame_GetBytecode(frame);
  |  |13058|       |                    assert(i >= 0 && i <= INT_MAX);
  |  |13059|       |                    int opcode = _Py_GetBaseCodeUnit(_PyFrame_GetCode(frame), (int)i).op.code;
  |  |13060|       |                    assert(opcode == SEND || opcode == FOR_ITER);
  |  |13061|       |                }
  |  |13062|       |                #endif
  |  |13063|     48|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13064|     48|                LOAD_IP(1 + INLINE_CACHE_ENTRIES_SEND);
  |  |  ------------------
  |  |  |  |  419|     48|#define LOAD_IP(OFFSET) do { \
  |  |  |  |  420|     48|        next_instr = frame->instr_ptr + (OFFSET); \
  |  |  |  |  421|     48|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (421:14): [Folded, False: 48]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |13065|     48|                value = temp;
  |  |13066|     48|                LLTRACE_RESUME_FRAME();
  |  |  ------------------
  |  |  |  |  188|     48|#define LLTRACE_RESUME_FRAME() ((void)0)
  |  |  ------------------
  |  |13067|     48|            }
  |  |13068|      0|            stack_pointer[0] = value;
  |  |13069|     48|            stack_pointer += 1;
  |  |13070|     48|            ASSERT_WITHIN_STACK_BOUNDS(__FILE__, __LINE__);
  |  |  ------------------
  |  |  |  |  511|     48|#define ASSERT_WITHIN_STACK_BOUNDS(F, L) (void)0
  |  |  ------------------
  |  |13071|     48|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|     48|    { \
  |  |  |  |  201|     48|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|     48|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|     48|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|     48|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|     48|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|     48|        opcode = word.op.code; \
  |  |  |  |  |  |  253|     48|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|     48|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 48]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|     48|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|     48|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|     48|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|     48|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|     48|    }
  |  |  ------------------
  |  |  |  Branch (13071:13): [True: 48, False: 0]
  |  |  ------------------
  |  |13072|     48|        }
  |  |13073|       |
  |  |13074|       |            /* END INSTRUCTIONS */
  |  |13075|      0|#if !_Py_TAIL_CALL_INTERP
  |  |13076|      0|#if USE_COMPUTED_GOTOS
  |  |13077|      0|        _unknown_opcode:
  |  |13078|       |#else
  |  |13079|       |        EXTRA_CASES  // From pycore_opcode_metadata.h, a 'case' for each unused opcode
  |  |13080|       |#endif
  |  |13081|       |            /* Tell C compilers not to hold the opcode variable in the loop.
  |  |13082|       |               next_instr points the current instruction without TARGET(). */
  |  |13083|      0|            opcode = next_instr->op.code;
  |  |13084|      0|            _PyErr_Format(tstate, PyExc_SystemError,
  |  |13085|      0|              "%U:%d: unknown opcode %d",
  |  |13086|      0|              _PyFrame_GetCode(frame)->co_filename,
  |  |13087|      0|              PyUnstable_InterpreterFrame_GetLine(frame),
  |  |13088|      0|              opcode);
  |  |13089|      0|JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13090|       |
  |  |13091|       |
  |  |13092|      0|        }
  |  |13093|       |
  |  |13094|       |        /* This should never be reached. Every opcode should end with DISPATCH()
  |  |13095|       |           or goto error. */
  |  |13096|      0|        Py_UNREACHABLE();
  |  |  ------------------
  |  |  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  |  |  ------------------
  |  |13097|      0|#endif /* _Py_TAIL_CALL_INTERP */
  |  |13098|       |        /* BEGIN LABELS */
  |  |13099|       |
  |  |13100|      0|        LABEL(pop_2_error)
  |  |  ------------------
  |  |  |  |  137|      0|#  define LABEL(name) name:
  |  |  ------------------
  |  |13101|      0|        {
  |  |13102|      0|            stack_pointer -= 2;
  |  |13103|      0|            assert(WITHIN_STACK_BOUNDS());
  |  |  ------------------
  |  |  |  Branch (13103:13): [True: 0, False: 0]
  |  |  |  Branch (13103:13): [True: 0, False: 0]
  |  |  |  Branch (13103:13): [True: 0, False: 0]
  |  |  ------------------
  |  |13104|      0|            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13105|      0|        }
  |  |13106|       |
  |  |13107|      2|        LABEL(pop_1_error)
  |  |  ------------------
  |  |  |  |  137|      2|#  define LABEL(name) name:
  |  |  ------------------
  |  |13108|      2|        {
  |  |13109|      2|            stack_pointer -= 1;
  |  |13110|      2|            assert(WITHIN_STACK_BOUNDS());
  |  |  ------------------
  |  |  |  Branch (13110:13): [True: 2, False: 0]
  |  |  |  Branch (13110:13): [True: 2, False: 0]
  |  |  |  Branch (13110:13): [True: 0, False: 2]
  |  |  ------------------
  |  |13111|      2|            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|      2|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13112|      0|        }
  |  |13113|       |
  |  |13114|    204|        LABEL(error)
  |  |  ------------------
  |  |  |  |  137|    204|#  define LABEL(name) name:
  |  |  ------------------
  |  |13115|    204|        {
  |  |13116|       |            #ifdef NDEBUG
  |  |13117|       |            if (!_PyErr_Occurred(tstate)) {
  |  |13118|       |                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13119|       |                _PyErr_SetString(tstate, PyExc_SystemError,
  |  |13120|       |                             "error return without exception set");
  |  |13121|       |                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13122|       |            }
  |  |13123|       |            #else
  |  |13124|    204|            assert(_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (13124:13): [True: 204, False: 0]
  |  |  ------------------
  |  |13125|    204|            #endif
  |  |13126|    204|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13127|    204|            STOP_TRACING();
  |  |  ------------------
  |  |  |  |  168|    204|#define STOP_TRACING() ((void)(0));
  |  |  ------------------
  |  |13128|    204|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13129|    204|            assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (13129:13): [True: 204, False: 0]
  |  |  ------------------
  |  |13130|    204|            if (!_PyFrame_IsIncomplete(frame)) {
  |  |  ------------------
  |  |  |  Branch (13130:17): [True: 204, False: 0]
  |  |  ------------------
  |  |13131|    204|                _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13132|    204|                PyFrameObject *f = _PyFrame_GetFrameObject(frame);
  |  |13133|    204|                stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13134|    204|                if (f != NULL) {
  |  |  ------------------
  |  |  |  Branch (13134:21): [True: 204, False: 0]
  |  |  ------------------
  |  |13135|    204|                    _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13136|    204|                    PyTraceBack_Here(f);
  |  |13137|    204|                    stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13138|    204|                }
  |  |13139|    204|            }
  |  |13140|    204|            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13141|    204|            _PyEval_MonitorRaise(tstate, frame, next_instr-1);
  |  |13142|    204|            JUMP_TO_LABEL(exception_unwind);
  |  |  ------------------
  |  |  |  |  135|    204|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13143|      0|        }
  |  |13144|       |
  |  |13145|    216|        LABEL(exception_unwind)
  |  |  ------------------
  |  |  |  |  137|    216|#  define LABEL(name) name:
  |  |  ------------------
  |  |13146|    216|        {
  |  |13147|    216|            STOP_TRACING();
  |  |  ------------------
  |  |  |  |  168|    216|#define STOP_TRACING() ((void)(0));
  |  |  ------------------
  |  |13148|    216|            int offset = INSTR_OFFSET()-1;
  |  |  ------------------
  |  |  |  |  249|    216|#define INSTR_OFFSET() ((int)(next_instr - _PyFrame_GetBytecode(frame)))
  |  |  ------------------
  |  |13149|    216|            int level, handler, lasti;
  |  |13150|    216|            int handled = get_exception_handler(_PyFrame_GetCode(frame), offset, &level, &handler, &lasti);
  |  |13151|    216|            if (handled == 0) {
  |  |  ------------------
  |  |  |  Branch (13151:17): [True: 28, False: 188]
  |  |  ------------------
  |  |13152|     28|                assert(_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (13152:17): [True: 28, False: 0]
  |  |  ------------------
  |  |13153|     28|                _PyStackRef *stackbase = _PyFrame_Stackbase(frame);
  |  |13154|     58|                while (frame->stackpointer > stackbase) {
  |  |  ------------------
  |  |  |  Branch (13154:24): [True: 30, False: 28]
  |  |  ------------------
  |  |13155|     30|                    _PyStackRef ref = _PyFrame_StackPop(frame);
  |  |13156|     30|                    PyStackRef_XCLOSE(ref);
  |  |13157|     30|                }
  |  |13158|     28|                monitor_unwind(tstate, frame, next_instr-1);
  |  |13159|     28|                JUMP_TO_LABEL(exit_unwind);
  |  |  ------------------
  |  |  |  |  135|     28|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13160|      0|            }
  |  |13161|    216|            assert(STACK_LEVEL() >= level);
  |  |  ------------------
  |  |  |  Branch (13161:13): [True: 188, False: 0]
  |  |  ------------------
  |  |13162|    188|            _PyStackRef *new_top = _PyFrame_Stackbase(frame) + level;
  |  |13163|    188|            assert(frame->stackpointer >= new_top);
  |  |  ------------------
  |  |  |  Branch (13163:13): [True: 188, False: 0]
  |  |  ------------------
  |  |13164|    484|            while (frame->stackpointer > new_top) {
  |  |  ------------------
  |  |  |  Branch (13164:20): [True: 296, False: 188]
  |  |  ------------------
  |  |13165|    296|                _PyStackRef ref = _PyFrame_StackPop(frame);
  |  |13166|    296|                PyStackRef_XCLOSE(ref);
  |  |13167|    296|            }
  |  |13168|    188|            if (lasti) {
  |  |  ------------------
  |  |  |  Branch (13168:17): [True: 12, False: 176]
  |  |  ------------------
  |  |13169|     12|                int frame_lasti = _PyInterpreterFrame_LASTI(frame);
  |  |  ------------------
  |  |  |  |   18|     12|    ((int)((IF)->instr_ptr - _PyFrame_GetBytecode((IF))))
  |  |  ------------------
  |  |13170|     12|                _PyStackRef lasti = PyStackRef_TagInt(frame_lasti);
  |  |13171|     12|                _PyFrame_StackPush(frame, lasti);
  |  |13172|     12|            }
  |  |13173|    188|            PyObject *exc = _PyErr_GetRaisedException(tstate);
  |  |13174|    188|            _PyFrame_StackPush(frame, PyStackRef_FromPyObjectSteal(exc));
  |  |13175|    188|            next_instr = _PyFrame_GetBytecode(frame) + handler;
  |  |13176|    188|            int err = monitor_handled(tstate, frame, next_instr, exc);
  |  |13177|    188|            if (err < 0) {
  |  |  ------------------
  |  |  |  Branch (13177:17): [True: 0, False: 188]
  |  |  ------------------
  |  |13178|      0|                JUMP_TO_LABEL(exception_unwind);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13179|      0|            }
  |  |13180|       |            #ifdef Py_DEBUG
  |  |13181|       |            if (frame->lltrace >= 5) {
  |  |13182|       |                lltrace_resume_frame(frame);
  |  |13183|       |            }
  |  |13184|       |            #endif
  |  |13185|    188|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13186|       |            #if _Py_TAIL_CALL_INTERP
  |  |13187|       |            int opcode;
  |  |13188|       |            #endif
  |  |13189|    188|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|    188|    { \
  |  |  |  |  201|    188|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|    188|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|    188|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|    188|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|    188|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|    188|        opcode = word.op.code; \
  |  |  |  |  |  |  253|    188|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|    188|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 188]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|    188|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|    188|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|    188|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|    188|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|    188|    }
  |  |  ------------------
  |  |  |  Branch (13189:13): [True: 188, False: 0]
  |  |  ------------------
  |  |13190|    188|        }
  |  |13191|       |
  |  |13192|     28|        LABEL(exit_unwind)
  |  |  ------------------
  |  |  |  |  137|     28|#  define LABEL(name) name:
  |  |  ------------------
  |  |13193|     28|        {
  |  |13194|     28|            assert(_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (13194:13): [True: 28, False: 0]
  |  |  ------------------
  |  |13195|     28|            DTRACE_FUNCTION_RETURN();
  |  |  ------------------
  |  |  |  |  346|     28|#define DTRACE_FUNCTION_RETURN() ((void)0)
  |  |  ------------------
  |  |13196|     28|            JUMP_TO_LABEL(exit_unwind_notrace);
  |  |  ------------------
  |  |  |  |  135|     28|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13197|      0|        }
  |  |13198|       |
  |  |13199|     28|        LABEL(exit_unwind_notrace)
  |  |  ------------------
  |  |  |  |  137|     28|#  define LABEL(name) name:
  |  |  ------------------
  |  |13200|     28|        {
  |  |13201|     28|            assert(_PyErr_Occurred(tstate));
  |  |  ------------------
  |  |  |  Branch (13201:13): [True: 28, False: 0]
  |  |  ------------------
  |  |13202|     28|            _Py_LeaveRecursiveCallPy(tstate);
  |  |13203|     28|            assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  |  |  ------------------
  |  |  |  Branch (13203:13): [True: 28, False: 0]
  |  |  ------------------
  |  |13204|     28|            _PyInterpreterFrame *dying = frame;
  |  |13205|     28|            frame = tstate->current_frame = dying->previous;
  |  |13206|     28|            _PyEval_FrameClearAndPop(tstate, dying);
  |  |13207|     28|            frame->return_offset = 0;
  |  |13208|     28|            if (frame->owner == FRAME_OWNED_BY_INTERPRETER) {
  |  |  ------------------
  |  |  |  Branch (13208:17): [True: 18, False: 10]
  |  |  ------------------
  |  |13209|     18|                tstate->current_frame = frame->previous;
  |  |13210|     18|                #if !_Py_TAIL_CALL_INTERP
  |  |13211|     18|                assert(frame == &entry.frame);
  |  |  ------------------
  |  |  |  Branch (13211:17): [True: 18, False: 0]
  |  |  ------------------
  |  |13212|     18|                #endif
  |  |13213|       |                #ifdef _Py_TIER2
  |  |13214|       |                _PyStackRef executor = frame->localsplus[0];
  |  |13215|       |                assert(tstate->current_executor == NULL);
  |  |13216|       |                if (!PyStackRef_IsNull(executor)) {
  |  |13217|       |                    tstate->current_executor = PyStackRef_AsPyObjectBorrow(executor);
  |  |13218|       |                    PyStackRef_CLOSE(executor);
  |  |13219|       |                }
  |  |13220|       |                #endif
  |  |13221|     18|                return NULL;
  |  |13222|     18|            }
  |  |13223|     10|            next_instr = frame->instr_ptr;
  |  |13224|     10|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13225|     10|            JUMP_TO_LABEL(error);
  |  |  ------------------
  |  |  |  |  135|     10|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13226|      0|        }
  |  |13227|       |
  |  |13228|  1.57k|        LABEL(start_frame)
  |  |  ------------------
  |  |  |  |  137|  1.57k|#  define LABEL(name) name:
  |  |  ------------------
  |  |13229|  1.57k|        {
  |  |13230|  1.57k|            int too_deep = _Py_EnterRecursivePy(tstate);
  |  |13231|  1.57k|            if (too_deep) {
  |  |  ------------------
  |  |  |  Branch (13231:17): [True: 0, False: 1.57k]
  |  |  ------------------
  |  |13232|      0|                JUMP_TO_LABEL(exit_unwind_notrace);
  |  |  ------------------
  |  |  |  |  135|      0|#  define JUMP_TO_LABEL(name) goto name;
  |  |  ------------------
  |  |13233|      0|            }
  |  |13234|  1.57k|            DTRACE_FUNCTION_ENTRY();
  |  |  ------------------
  |  |  |  |  345|  1.57k|#define DTRACE_FUNCTION_ENTRY() ((void)0)
  |  |  ------------------
  |  |13235|  1.57k|            next_instr = frame->instr_ptr;
  |  |13236|       |            #ifdef Py_DEBUG
  |  |13237|       |            int lltrace = maybe_lltrace_resume_frame(frame, GLOBALS());
  |  |13238|       |            if (lltrace < 0) {
  |  |13239|       |                JUMP_TO_LABEL(exit_unwind);
  |  |13240|       |            }
  |  |13241|       |            frame->lltrace = lltrace;
  |  |13242|       |            assert(!_PyErr_Occurred(tstate));
  |  |13243|       |            #endif
  |  |13244|  1.57k|            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13245|       |            #if _Py_TAIL_CALL_INTERP
  |  |13246|       |            int opcode;
  |  |13247|       |            #endif
  |  |13248|  1.57k|            DISPATCH();
  |  |  ------------------
  |  |  |  |  200|  1.57k|    { \
  |  |  |  |  201|  1.57k|        assert(frame->stackpointer == NULL); \
  |  |  |  |  202|  1.57k|        NEXTOPARG(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  250|  1.57k|#define NEXTOPARG()  do { \
  |  |  |  |  |  |  251|  1.57k|        _Py_CODEUNIT word  = {.cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t*)next_instr)}; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  158|  1.57k|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  252|  1.57k|        opcode = word.op.code; \
  |  |  |  |  |  |  253|  1.57k|        oparg = word.op.arg; \
  |  |  |  |  |  |  254|  1.57k|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (254:14): [Folded, False: 1.57k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  203|  1.57k|        PRE_DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  176|  1.57k|#define PRE_DISPATCH_GOTO() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |  204|  1.57k|        DISPATCH_GOTO(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  133|  1.57k|#  define DISPATCH_GOTO() goto *opcode_targets[opcode]
  |  |  |  |  ------------------
  |  |  |  |  205|  1.57k|    }
  |  |  ------------------
  |  |  |  Branch (13248:13): [True: 1.57k, False: 0]
  |  |  ------------------
  |  |13249|  1.57k|        }
  |  |13250|       |
  |  |13251|       |        #if _Py_TAIL_CALL_INTERP && !defined(_Py_TIER2)
  |  |13252|       |        Py_GCC_ATTRIBUTE((unused))
  |  |13253|       |        #endif
  |  |13254|      0|        LABEL(stop_tracing)
  |  |  ------------------
  |  |  |  |  137|      0|#  define LABEL(name) name:
  |  |  ------------------
  |  |13255|      0|        {
  |  |13256|       |            #if _Py_TIER2
  |  |13257|       |            assert(IS_JIT_TRACING());
  |  |13258|       |            int opcode = next_instr->op.code;
  |  |13259|       |            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13260|       |            _PyJit_translate_single_bytecode_to_trace(tstate, frame, NULL, _EXIT_TRACE);
  |  |13261|       |            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13262|       |            LEAVE_TRACING();
  |  |13263|       |            _PyFrame_SetStackPointer(frame, stack_pointer);
  |  |13264|       |            int err = stop_tracing_and_jit(tstate, frame);
  |  |13265|       |            stack_pointer = _PyFrame_GetStackPointer(frame);
  |  |13266|       |            if (err < 0) {
  |  |13267|       |                JUMP_TO_LABEL(error);
  |  |13268|       |            }
  |  |13269|       |            DISPATCH_GOTO_NON_TRACING();
  |  |13270|       |            #else
  |  |13271|      0|            Py_FatalError("JIT label executed in non-jit build.");
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  |  |13272|      0|            #endif
  |  |13273|      0|        }
  |  |13274|       |
  |  |13275|       |/* END LABELS */
  |  |13276|      0|#undef TIER_ONE
  ------------------
 1321|      0|#endif
 1322|       |
 1323|       |
 1324|      0|early_exit:
 1325|      0|    assert(_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1325:5): [True: 0, False: 0]
  ------------------
 1326|      0|    _Py_LeaveRecursiveCallPy(tstate);
 1327|      0|    assert(frame->owner != FRAME_OWNED_BY_INTERPRETER);
  ------------------
  |  Branch (1327:5): [True: 0, False: 0]
  ------------------
 1328|       |    // GH-99729: We need to unlink the frame *before* clearing it:
 1329|      0|    _PyInterpreterFrame *dying = frame;
 1330|      0|    frame = tstate->current_frame = dying->previous;
 1331|      0|    _PyEval_FrameClearAndPop(tstate, dying);
 1332|      0|    frame->return_offset = 0;
 1333|      0|    assert(frame->owner == FRAME_OWNED_BY_INTERPRETER);
  ------------------
  |  Branch (1333:5): [True: 0, False: 0]
  ------------------
 1334|       |    /* Restore previous frame and exit */
 1335|      0|    tstate->current_frame = frame->previous;
 1336|       |    return NULL;
 1337|      0|}
_PyEval_FrameClearAndPop:
 1988|  3.46k|{
 1989|       |    // Update last_profiled_frame for remote profiler frame caching.
 1990|       |    // By this point, tstate->current_frame is already set to the parent frame.
 1991|       |    // Only update if we're popping the exact frame that was last profiled.
 1992|       |    // This avoids corrupting the cache when transient frames (called and returned
 1993|       |    // between profiler samples) update last_profiled_frame to addresses the
 1994|       |    // profiler never saw.
 1995|  3.46k|    if (tstate->last_profiled_frame != NULL && tstate->last_profiled_frame == frame) {
  ------------------
  |  Branch (1995:9): [True: 0, False: 3.46k]
  |  Branch (1995:48): [True: 0, False: 0]
  ------------------
 1996|      0|        tstate->last_profiled_frame = tstate->current_frame;
 1997|      0|    }
 1998|       |
 1999|  3.46k|    if (frame->owner == FRAME_OWNED_BY_THREAD) {
  ------------------
  |  Branch (1999:9): [True: 3.42k, False: 34]
  ------------------
 2000|  3.42k|        clear_thread_frame(tstate, frame);
 2001|  3.42k|    }
 2002|     34|    else {
 2003|     34|        clear_gen_frame(tstate, frame);
 2004|     34|    }
 2005|  3.46k|}
_PyEvalFramePushAndInit:
 2012|  2.23k|{
 2013|  2.23k|    PyFunctionObject *func_obj = (PyFunctionObject *)PyStackRef_AsPyObjectBorrow(func);
 2014|  2.23k|    PyCodeObject * code = (PyCodeObject *)func_obj->func_code;
 2015|  2.23k|    CALL_STAT_INC(frames_pushed);
  ------------------
  |  |   76|  2.23k|#define CALL_STAT_INC(name) ((void)0)
  ------------------
 2016|  2.23k|    _PyInterpreterFrame *frame = _PyThreadState_PushFrame(tstate, code->co_framesize);
 2017|  2.23k|    if (frame == NULL) {
  ------------------
  |  Branch (2017:9): [True: 0, False: 2.23k]
  ------------------
 2018|      0|        goto fail;
 2019|      0|    }
 2020|  2.23k|    _PyFrame_Initialize(tstate, frame, func, locals, code, 0, previous);
 2021|  2.23k|    if (initialize_locals(tstate, func_obj, frame->localsplus, args, argcount, kwnames)) {
  ------------------
  |  Branch (2021:9): [True: 0, False: 2.23k]
  ------------------
 2022|      0|        assert(frame->owner == FRAME_OWNED_BY_THREAD);
  ------------------
  |  Branch (2022:9): [True: 0, False: 0]
  ------------------
 2023|      0|        clear_thread_frame(tstate, frame);
 2024|      0|        return NULL;
 2025|      0|    }
 2026|  2.23k|    return frame;
 2027|      0|fail:
 2028|       |    /* Consume the references */
 2029|      0|    PyStackRef_CLOSE(func);
 2030|      0|    Py_XDECREF(locals);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2031|      0|    for (size_t i = 0; i < argcount; i++) {
  ------------------
  |  Branch (2031:24): [True: 0, False: 0]
  ------------------
 2032|      0|        PyStackRef_CLOSE(args[i]);
 2033|      0|    }
 2034|      0|    if (kwnames) {
  ------------------
  |  Branch (2034:9): [True: 0, False: 0]
  ------------------
 2035|      0|        Py_ssize_t kwcount = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2036|      0|        for (Py_ssize_t i = 0; i < kwcount; i++) {
  ------------------
  |  Branch (2036:32): [True: 0, False: 0]
  ------------------
 2037|      0|            PyStackRef_CLOSE(args[i+argcount]);
 2038|      0|        }
 2039|      0|    }
 2040|      0|    PyErr_NoMemory();
 2041|       |    return NULL;
 2042|  2.23k|}
_PyEvalFramePushAndInit_Ex:
 2050|     14|{
 2051|     14|    bool has_dict = (kwargs != NULL && PyDict_GET_SIZE(kwargs) > 0);
  ------------------
  |  |   63|      2|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2051:22): [True: 2, False: 12]
  |  Branch (2051:40): [True: 0, False: 2]
  ------------------
 2052|     14|    PyObject *kwnames = NULL;
 2053|     14|    _PyStackRef *newargs;
 2054|     14|    PyObject *const *object_array = NULL;
 2055|     14|    _PyStackRef stack_array[8] = {0};
 2056|     14|    if (has_dict) {
  ------------------
  |  Branch (2056:9): [True: 0, False: 14]
  ------------------
 2057|      0|        object_array = _PyStack_UnpackDict(tstate, _PyTuple_ITEMS(callargs), nargs, kwargs, &kwnames);
  ------------------
  |  |   26|      0|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2058|      0|        if (object_array == NULL) {
  ------------------
  |  Branch (2058:13): [True: 0, False: 0]
  ------------------
 2059|      0|            PyStackRef_CLOSE(func);
 2060|      0|            goto error;
 2061|      0|        }
 2062|      0|        size_t nkwargs = PyDict_GET_SIZE(kwargs);
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2063|      0|        assert(sizeof(PyObject *) == sizeof(_PyStackRef));
  ------------------
  |  Branch (2063:9): [True: 0, Folded]
  ------------------
 2064|      0|        newargs = (_PyStackRef *)object_array;
 2065|       |        /* Positional args are borrowed from callargs tuple, need new reference */
 2066|      0|        for (Py_ssize_t i = 0; i < nargs; i++) {
  ------------------
  |  Branch (2066:32): [True: 0, False: 0]
  ------------------
 2067|      0|            newargs[i] = PyStackRef_FromPyObjectNew(object_array[i]);
  ------------------
  |  |  599|      0|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2068|      0|        }
 2069|       |        /* Keyword args are owned by _PyStack_UnpackDict, steal them */
 2070|      0|        for (size_t i = 0; i < nkwargs; i++) {
  ------------------
  |  Branch (2070:28): [True: 0, False: 0]
  ------------------
 2071|      0|            newargs[nargs + i] = PyStackRef_FromPyObjectSteal(object_array[nargs + i]);
 2072|      0|        }
 2073|      0|    }
 2074|     14|    else {
 2075|     14|        if (nargs <= 8) {
  ------------------
  |  Branch (2075:13): [True: 14, False: 0]
  ------------------
 2076|     14|            newargs = stack_array;
 2077|     14|        }
 2078|      0|        else {
 2079|      0|            newargs = PyMem_Malloc(sizeof(_PyStackRef) *nargs);
 2080|      0|            if (newargs == NULL) {
  ------------------
  |  Branch (2080:17): [True: 0, False: 0]
  ------------------
 2081|      0|                PyErr_NoMemory();
 2082|      0|                PyStackRef_CLOSE(func);
 2083|      0|                goto error;
 2084|      0|            }
 2085|      0|        }
 2086|       |        /* We need to create a new reference for all our args since the new frame steals them. */
 2087|     40|        for (Py_ssize_t i = 0; i < nargs; i++) {
  ------------------
  |  Branch (2087:32): [True: 26, False: 14]
  ------------------
 2088|     26|            newargs[i] = PyStackRef_FromPyObjectNew(PyTuple_GET_ITEM(callargs, i));
  ------------------
  |  |  599|     26|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     52|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (37:38): [True: 26, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2089|     26|        }
 2090|     14|    }
 2091|     14|    _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit(
 2092|     14|        tstate, func, locals,
 2093|     14|        newargs, nargs, kwnames, previous
 2094|     14|    );
 2095|     14|    if (has_dict) {
  ------------------
  |  Branch (2095:9): [True: 0, False: 14]
  ------------------
 2096|      0|        _PyStack_UnpackDict_FreeNoDecRef(object_array, kwnames);
 2097|      0|    }
 2098|     14|    else if (nargs > 8) {
  ------------------
  |  Branch (2098:14): [True: 0, False: 14]
  ------------------
 2099|      0|       PyMem_Free((void *)newargs);
 2100|      0|    }
 2101|       |    /* No need to decref func here because the reference has been stolen by
 2102|       |       _PyEvalFramePushAndInit.
 2103|       |    */
 2104|     14|    Py_DECREF(callargs);
  ------------------
  |  |   80|     14|    do { \
  |  |   81|     14|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|     14|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|     14|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 14]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|     14|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|     14|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|     14|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 4, False: 10]
  |  |  ------------------
  |  |   88|      4|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      4|    do { \
  |  |  |  |  113|      4|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      4|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      4|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      4|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      4|            (*dealloc)(op); \
  |  |   91|      4|        } \
  |  |   92|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 2105|     14|    Py_XDECREF(kwargs);
  ------------------
  |  |   69|     14|    do { \
  |  |   70|     14|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|     14|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 2, False: 12]
  |  |  ------------------
  |  |   72|      2|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      2|    do { \
  |  |  |  |   81|      2|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      2|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      2|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      2|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      2|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      2|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      2|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      2|    do { \
  |  |  |  |  |  |  113|      2|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      2|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      2|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      2|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      2|            (*dealloc)(op); \
  |  |  |  |   91|      2|        } \
  |  |  |  |   92|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      2|        } \
  |  |   74|     14|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 14]
  |  |  ------------------
  ------------------
 2106|     14|    return new_frame;
 2107|      0|error:
 2108|      0|    Py_DECREF(callargs);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2109|      0|    Py_XDECREF(kwargs);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2110|       |    return NULL;
 2111|     14|}
_PyEval_Vector:
 2118|    838|{
 2119|    838|    size_t total_args = argcount;
 2120|    838|    if (kwnames) {
  ------------------
  |  Branch (2120:9): [True: 60, False: 778]
  ------------------
 2121|     60|        total_args += PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|     60|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2122|     60|    }
 2123|    838|    _PyStackRef stack_array[8] = {0};
 2124|    838|    _PyStackRef *arguments;
 2125|    838|    if (total_args <= 8) {
  ------------------
  |  Branch (2125:9): [True: 838, False: 0]
  ------------------
 2126|    838|        arguments = stack_array;
 2127|    838|    }
 2128|      0|    else {
 2129|      0|        arguments = PyMem_Malloc(sizeof(_PyStackRef) * total_args);
 2130|      0|        if (arguments == NULL) {
  ------------------
  |  Branch (2130:13): [True: 0, False: 0]
  ------------------
 2131|      0|            return PyErr_NoMemory();
 2132|      0|        }
 2133|      0|    }
 2134|       |    /* _PyEvalFramePushAndInit consumes the references
 2135|       |     * to func, locals and all its arguments */
 2136|    838|    Py_XINCREF(locals);
  ------------------
  |  |  514|    838|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    838|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    838|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2137|  2.33k|    for (size_t i = 0; i < argcount; i++) {
  ------------------
  |  Branch (2137:24): [True: 1.49k, False: 838]
  ------------------
 2138|  1.49k|        arguments[i] = PyStackRef_FromPyObjectNew(args[i]);
  ------------------
  |  |  599|  1.49k|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  1.49k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.49k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2139|  1.49k|    }
 2140|    838|    if (kwnames) {
  ------------------
  |  Branch (2140:9): [True: 60, False: 778]
  ------------------
 2141|     60|        Py_ssize_t kwcount = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|     60|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2142|    182|        for (Py_ssize_t i = 0; i < kwcount; i++) {
  ------------------
  |  Branch (2142:32): [True: 122, False: 60]
  ------------------
 2143|    122|            arguments[i+argcount] = PyStackRef_FromPyObjectNew(args[i+argcount]);
  ------------------
  |  |  599|    122|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    122|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2144|    122|        }
 2145|     60|    }
 2146|    838|    _PyInterpreterFrame *frame = _PyEvalFramePushAndInit(
 2147|    838|        tstate, PyStackRef_FromPyObjectNew(func), locals,
  ------------------
  |  |  599|    838|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    838|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    838|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2148|    838|        arguments, argcount, kwnames, NULL);
 2149|    838|    if (total_args > 8) {
  ------------------
  |  Branch (2149:9): [True: 0, False: 838]
  ------------------
 2150|      0|        PyMem_Free(arguments);
 2151|      0|    }
 2152|    838|    if (frame == NULL) {
  ------------------
  |  Branch (2152:9): [True: 0, False: 838]
  ------------------
 2153|      0|        return NULL;
 2154|      0|    }
 2155|    838|    EVAL_CALL_STAT_INC(EVAL_CALL_VECTOR);
  ------------------
  |  |   79|    838|#define EVAL_CALL_STAT_INC(name) ((void)0)
  ------------------
 2156|    838|    return _PyEval_EvalFrame(tstate, frame, 0);
 2157|    838|}
_PyEval_UnpackIterableStackRef:
 2334|     22|{
 2335|     22|    int i = 0, j = 0;
 2336|     22|    Py_ssize_t ll = 0;
 2337|     22|    PyObject *it;  /* iter(v) */
 2338|     22|    PyObject *w;
 2339|     22|    PyObject *l = NULL; /* variable list */
 2340|     22|    assert(v != NULL);
  ------------------
  |  Branch (2340:5): [True: 22, False: 0]
  ------------------
 2341|       |
 2342|     22|    it = PyObject_GetIter(v);
 2343|     22|    if (it == NULL) {
  ------------------
  |  Branch (2343:9): [True: 0, False: 22]
  ------------------
 2344|      0|        if (_PyErr_ExceptionMatches(tstate, PyExc_TypeError) &&
  ------------------
  |  Branch (2344:13): [True: 0, False: 0]
  ------------------
 2345|      0|            Py_TYPE(v)->tp_iter == NULL && !PySequence_Check(v))
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2345:13): [True: 0, False: 0]
  |  Branch (2345:44): [True: 0, False: 0]
  ------------------
 2346|      0|        {
 2347|      0|            _PyErr_Format(tstate, PyExc_TypeError,
 2348|      0|                          "cannot unpack non-iterable %.200s object",
 2349|      0|                          Py_TYPE(v)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2350|      0|        }
 2351|      0|        return 0;
 2352|      0|    }
 2353|       |
 2354|     68|    for (; i < argcnt; i++) {
  ------------------
  |  Branch (2354:12): [True: 46, False: 22]
  ------------------
 2355|     46|        w = PyIter_Next(it);
 2356|     46|        if (w == NULL) {
  ------------------
  |  Branch (2356:13): [True: 0, False: 46]
  ------------------
 2357|       |            /* Iterator done, via error or exhaustion. */
 2358|      0|            if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2358:17): [True: 0, False: 0]
  ------------------
 2359|      0|                if (argcntafter == -1) {
  ------------------
  |  Branch (2359:21): [True: 0, False: 0]
  ------------------
 2360|      0|                    _PyErr_Format(tstate, PyExc_ValueError,
 2361|      0|                                  "not enough values to unpack "
 2362|      0|                                  "(expected %d, got %d)",
 2363|      0|                                  argcnt, i);
 2364|      0|                }
 2365|      0|                else {
 2366|      0|                    _PyErr_Format(tstate, PyExc_ValueError,
 2367|      0|                                  "not enough values to unpack "
 2368|      0|                                  "(expected at least %d, got %d)",
 2369|      0|                                  argcnt + argcntafter, i);
 2370|      0|                }
 2371|      0|            }
 2372|      0|            goto Error;
 2373|      0|        }
 2374|     46|        *--sp = PyStackRef_FromPyObjectSteal(w);
 2375|     46|    }
 2376|       |
 2377|     22|    if (argcntafter == -1) {
  ------------------
  |  Branch (2377:9): [True: 22, False: 0]
  ------------------
 2378|       |        /* We better have exhausted the iterator now. */
 2379|     22|        w = PyIter_Next(it);
 2380|     22|        if (w == NULL) {
  ------------------
  |  Branch (2380:13): [True: 22, False: 0]
  ------------------
 2381|     22|            if (_PyErr_Occurred(tstate))
  ------------------
  |  Branch (2381:17): [True: 0, False: 22]
  ------------------
 2382|      0|                goto Error;
 2383|     22|            Py_DECREF(it);
  ------------------
  |  |   80|     22|    do { \
  |  |   81|     22|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|     22|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|     22|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|     22|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|     22|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|     22|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 22, False: 0]
  |  |  ------------------
  |  |   88|     22|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|     22|    do { \
  |  |  |  |  113|     22|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|     22|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 22]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|     22|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|     22|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|     22|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|     22|            (*dealloc)(op); \
  |  |   91|     22|        } \
  |  |   92|     22|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 22]
  |  |  ------------------
  ------------------
 2384|     22|            return 1;
 2385|     22|        }
 2386|      0|        Py_DECREF(w);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2387|       |
 2388|      0|        if (PyList_CheckExact(v) || PyTuple_CheckExact(v)
  ------------------
  |  |   26|      0|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      if (PyList_CheckExact(v) || PyTuple_CheckExact(v)
  ------------------
  |  |   28|      0|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2389|      0|              || PyDict_CheckExact(v)) {
  ------------------
  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2390|      0|            ll = PyDict_CheckExact(v) ? PyDict_Size(v) : Py_SIZE(v);
  ------------------
  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          ll = PyDict_CheckExact(v) ? PyDict_Size(v) : Py_SIZE(v);
  ------------------
  |  |  214|      0|#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2391|      0|            if (ll > argcnt) {
  ------------------
  |  Branch (2391:17): [True: 0, False: 0]
  ------------------
 2392|      0|                _PyErr_Format(tstate, PyExc_ValueError,
 2393|      0|                              "too many values to unpack (expected %d, got %zd)",
 2394|      0|                              argcnt, ll);
 2395|      0|                goto Error;
 2396|      0|            }
 2397|      0|        }
 2398|      0|        _PyErr_Format(tstate, PyExc_ValueError,
 2399|      0|                      "too many values to unpack (expected %d)",
 2400|      0|                      argcnt);
 2401|      0|        goto Error;
 2402|      0|    }
 2403|       |
 2404|      0|    l = PySequence_List(it);
 2405|      0|    if (l == NULL)
  ------------------
  |  Branch (2405:9): [True: 0, False: 0]
  ------------------
 2406|      0|        goto Error;
 2407|      0|    *--sp = PyStackRef_FromPyObjectSteal(l);
 2408|      0|    i++;
 2409|       |
 2410|      0|    ll = PyList_GET_SIZE(l);
  ------------------
  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2411|      0|    if (ll < argcntafter) {
  ------------------
  |  Branch (2411:9): [True: 0, False: 0]
  ------------------
 2412|      0|        _PyErr_Format(tstate, PyExc_ValueError,
 2413|      0|            "not enough values to unpack (expected at least %d, got %zd)",
 2414|      0|            argcnt + argcntafter, argcnt + ll);
 2415|      0|        goto Error;
 2416|      0|    }
 2417|       |
 2418|       |    /* Pop the "after-variable" args off the list. */
 2419|      0|    for (j = argcntafter; j > 0; j--, i++) {
  ------------------
  |  Branch (2419:27): [True: 0, False: 0]
  ------------------
 2420|      0|        *--sp = PyStackRef_FromPyObjectSteal(PyList_GET_ITEM(l, ll - j));
  ------------------
  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2420:46): [True: 0, False: 0]
  ------------------
 2421|      0|    }
 2422|       |    /* Resize the list. */
 2423|      0|    Py_SET_SIZE(l, ll - argcntafter);
  ------------------
  |  |  216|      0|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      0|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2424|      0|    Py_DECREF(it);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2425|      0|    return 1;
 2426|       |
 2427|      0|Error:
 2428|      0|    for (; i > 0; i--, sp++) {
  ------------------
  |  Branch (2428:12): [True: 0, False: 0]
  ------------------
 2429|      0|        PyStackRef_CLOSE(*sp);
 2430|      0|    }
 2431|       |    Py_XDECREF(it);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2432|      0|    return 0;
 2433|      0|}
_PyEval_MonitorRaise:
 2440|    204|{
 2441|    204|    if (no_tools_for_local_event(tstate, frame, PY_MONITORING_EVENT_RAISE)) {
  ------------------
  |  |   32|    204|#define PY_MONITORING_EVENT_RAISE 11
  ------------------
  |  Branch (2441:9): [True: 204, False: 0]
  ------------------
 2442|    204|        return;
 2443|    204|    }
 2444|      0|    do_monitor_exc(tstate, frame, instr, PY_MONITORING_EVENT_RAISE);
  ------------------
  |  |   32|      0|#define PY_MONITORING_EVENT_RAISE 11
  ------------------
 2445|      0|}
_PyEval_NoToolsForUnwind:
 2449|      2|{
 2450|      2|    return no_tools_for_local_event(tstate, frame, PY_MONITORING_EVENT_PY_UNWIND);
  ------------------
  |  |   34|      2|#define PY_MONITORING_EVENT_PY_UNWIND 13
  ------------------
 2451|      2|}
_PyEval_GetFrame:
 2587|    134|{
 2588|    134|    PyThreadState *tstate = _PyThreadState_GET();
 2589|    134|    return _PyThreadState_GetFrame(tstate);
 2590|    134|}
_PyEval_GetBuiltins:
 2608|     32|{
 2609|     32|    _PyInterpreterFrame *frame = _PyThreadState_GetFrame(tstate);
 2610|     32|    if (frame != NULL) {
  ------------------
  |  Branch (2610:9): [True: 28, False: 4]
  ------------------
 2611|     28|        return frame->f_builtins;
 2612|     28|    }
 2613|      4|    return tstate->interp->builtins;
 2614|     32|}
PyEval_GetBuiltins:
 2618|     32|{
 2619|     32|    PyThreadState *tstate = _PyThreadState_GET();
 2620|     32|    return _PyEval_GetBuiltins(tstate);
 2621|     32|}
PyEval_GetGlobals:
 2730|     52|{
 2731|     52|    PyThreadState *tstate = _PyThreadState_GET();
 2732|     52|    return _PyEval_GetGlobals(tstate);
 2733|     52|}
_PyEval_EnsureBuiltins:
 2793|     28|{
 2794|     28|    PyObject *builtins = get_globals_builtins(globals);
 2795|     28|    if (builtins == NULL) {
  ------------------
  |  Branch (2795:9): [True: 28, False: 0]
  ------------------
 2796|     28|        if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2796:13): [True: 0, False: 28]
  ------------------
 2797|      0|            return -1;
 2798|      0|        }
 2799|     28|        builtins = PyEval_GetBuiltins();  // borrowed
 2800|     28|        if (builtins == NULL) {
  ------------------
  |  Branch (2800:13): [True: 0, False: 28]
  ------------------
 2801|      0|            assert(_PyErr_Occurred(tstate));
  ------------------
  |  Branch (2801:13): [True: 0, False: 0]
  ------------------
 2802|      0|            return -1;
 2803|      0|        }
 2804|     28|        Py_INCREF(builtins);
  ------------------
  |  |  310|     28|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2805|     28|        if (set_globals_builtins(globals, builtins) < 0) {
  ------------------
  |  Branch (2805:13): [True: 0, False: 28]
  ------------------
 2806|      0|            Py_DECREF(builtins);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2807|      0|            return -1;
 2808|      0|        }
 2809|     28|    }
 2810|     28|    if (p_builtins != NULL) {
  ------------------
  |  Branch (2810:9): [True: 0, False: 28]
  ------------------
 2811|      0|        *p_builtins = builtins;
 2812|      0|    }
 2813|     28|    else {
 2814|       |        Py_DECREF(builtins);
  ------------------
  |  |   80|     28|    do { \
  |  |   81|     28|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|     28|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|     28|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 28]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|     28|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|     28|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|     28|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 28]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|     28|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 28]
  |  |  ------------------
  ------------------
 2815|     28|    }
 2816|     28|    return 0;
 2817|     28|}
_PyEval_EnsureBuiltinsWithModule:
 2822|     14|{
 2823|     14|    PyObject *builtins = get_globals_builtins(globals);
 2824|     14|    if (builtins == NULL) {
  ------------------
  |  Branch (2824:9): [True: 14, False: 0]
  ------------------
 2825|     14|        if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2825:13): [True: 0, False: 14]
  ------------------
 2826|      0|            return -1;
 2827|      0|        }
 2828|     14|        builtins = PyImport_ImportModuleLevel("builtins", NULL, NULL, NULL, 0);
 2829|     14|        if (builtins == NULL) {
  ------------------
  |  Branch (2829:13): [True: 0, False: 14]
  ------------------
 2830|      0|            return -1;
 2831|      0|        }
 2832|     14|        if (set_globals_builtins(globals, builtins) < 0) {
  ------------------
  |  Branch (2832:13): [True: 0, False: 14]
  ------------------
 2833|      0|            Py_DECREF(builtins);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2834|      0|            return -1;
 2835|      0|        }
 2836|     14|    }
 2837|     14|    if (p_builtins != NULL) {
  ------------------
  |  Branch (2837:9): [True: 14, False: 0]
  ------------------
 2838|     14|        *p_builtins = builtins;
 2839|     14|    }
 2840|      0|    else {
 2841|       |        Py_DECREF(builtins);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 2842|      0|    }
 2843|     14|    return 0;
 2844|     14|}
_PyEval_SliceIndex:
 2924|     40|{
 2925|     40|    if (Py_IsNone(v)) {
  ------------------
  |  |  621|     40|#define Py_IsNone(x) Py_Is((x), Py_None)
  |  |  ------------------
  |  |  |  |  187|     40|#define Py_Is(x, y) ((x) == (y))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (187:21): [True: 18, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2926|     18|        return 1;
 2927|     18|    }
 2928|     22|    return _PyEval_SliceIndexNotNone(v, pi);
 2929|     40|}
_PyEval_SliceIndexNotNone:
 2933|     22|{
 2934|     22|    PyThreadState *tstate = _PyThreadState_GET();
 2935|     22|    Py_ssize_t x;
 2936|     22|    if (PyLong_CheckExact(v) && _PyLong_IsCompact((PyLongObject *)v)) {
  ------------------
  |  |   14|     22|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |   65|     44|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 22, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2936:33): [True: 22, False: 0]
  ------------------
 2937|     22|        *pi = _PyLong_CompactValue((PyLongObject *)v);
 2938|     22|        return 1;
 2939|     22|    }
 2940|      0|    if (_PyIndex_Check(v)) {
  ------------------
  |  Branch (2940:9): [True: 0, False: 0]
  ------------------
 2941|      0|        x = PyNumber_AsSsize_t(v, NULL);
 2942|      0|        if (x == -1 && _PyErr_Occurred(tstate))
  ------------------
  |  Branch (2942:13): [True: 0, False: 0]
  |  Branch (2942:24): [True: 0, False: 0]
  ------------------
 2943|      0|            return 0;
 2944|      0|    }
 2945|      0|    else {
 2946|      0|        _PyErr_SetString(tstate, PyExc_TypeError,
 2947|      0|                         "slice indices must be integers or "
 2948|      0|                         "have an __index__ method");
 2949|      0|        return 0;
 2950|      0|    }
 2951|      0|    *pi = x;
 2952|      0|    return 1;
 2953|      0|}
_PyEval_UnpackIndices:
 2959|     10|{
 2960|     10|    if (len < 0) {
  ------------------
  |  Branch (2960:9): [True: 0, False: 10]
  ------------------
 2961|      0|        return 0;
 2962|      0|    }
 2963|     10|    *istart = 0;
 2964|     10|    *istop = PY_SSIZE_T_MAX;
  ------------------
  |  |  137|     10|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
 2965|     10|    if (!_PyEval_SliceIndex(start, istart)) {
  ------------------
  |  Branch (2965:9): [True: 0, False: 10]
  ------------------
 2966|      0|        return 0;
 2967|      0|    }
 2968|     10|    if (!_PyEval_SliceIndex(stop, istop)) {
  ------------------
  |  Branch (2968:9): [True: 0, False: 10]
  ------------------
 2969|      0|        return 0;
 2970|      0|    }
 2971|     10|    PySlice_AdjustIndices(len, istart, istop, 1);
 2972|     10|    return 1;
 2973|     10|}
_PyEval_ImportName:
 2979|    124|{
 2980|    124|    PyObject *import_func;
 2981|    124|    if (PyMapping_GetOptionalItem(builtins, &_Py_ID(__import__),
  ------------------
  |  |  917|    124|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    124|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    124|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2981:9): [True: 0, False: 124]
  ------------------
 2982|    124|                                  &import_func) < 0) {
 2983|      0|        return NULL;
 2984|      0|    }
 2985|    124|    if (import_func == NULL) {
  ------------------
  |  Branch (2985:9): [True: 0, False: 124]
  ------------------
 2986|      0|        _PyErr_SetString(tstate, PyExc_ImportError, "__import__ not found");
 2987|      0|        return NULL;
 2988|      0|    }
 2989|       |
 2990|    124|    PyObject *res = _PyEval_ImportNameWithImport(
 2991|    124|        tstate, import_func, globals, locals, name, fromlist, level);
 2992|       |    Py_DECREF(import_func);
  ------------------
  |  |   80|    124|    do { \
  |  |   81|    124|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|    124|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|    124|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 124]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|    124|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|    124|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|    124|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 124]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|    124|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 124]
  |  |  ------------------
  ------------------
 2993|    124|    return res;
 2994|    124|}
_PyEval_ImportNameWithImport:
 3000|    124|{
 3001|    124|    if (locals == NULL) {
  ------------------
  |  Branch (3001:9): [True: 12, False: 112]
  ------------------
 3002|     12|        locals = Py_None;
  ------------------
  |  |  616|     12|#  define Py_None (&_Py_NoneStruct)
  ------------------
 3003|     12|    }
 3004|       |
 3005|       |    /* Fast path for not overloaded __import__. */
 3006|    124|    if (_PyImport_IsDefaultImportFunc(tstate->interp, import_func)) {
  ------------------
  |  Branch (3006:9): [True: 124, False: 0]
  ------------------
 3007|    124|        int ilevel = PyLong_AsInt(level);
 3008|    124|        if (ilevel == -1 && _PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (3008:13): [True: 0, False: 124]
  |  Branch (3008:29): [True: 0, False: 0]
  ------------------
 3009|      0|            return NULL;
 3010|      0|        }
 3011|    124|        return PyImport_ImportModuleLevelObject(
 3012|    124|                        name,
 3013|    124|                        globals,
 3014|    124|                        locals,
 3015|    124|                        fromlist,
 3016|    124|                        ilevel);
 3017|    124|    }
 3018|       |
 3019|      0|    PyObject *args[5] = {name, globals, locals, fromlist, level};
 3020|       |    PyObject *res = PyObject_Vectorcall(import_func, args, 5, NULL);
 3021|      0|    return res;
 3022|    124|}
_PyEval_LazyImportName:
 3073|     98|{
 3074|     98|    PyObject *res = NULL;
 3075|     98|    PyImport_LazyImportsMode mode = PyImport_GetLazyImportsMode();
 3076|       |    // Check if global policy overrides the local syntax
 3077|     98|    switch (mode) {
  ------------------
  |  Branch (3077:13): [True: 98, False: 0]
  ------------------
 3078|      0|        case PyImport_LAZY_NONE:
  ------------------
  |  Branch (3078:9): [True: 0, False: 98]
  ------------------
 3079|      0|            lazy = 0;
 3080|      0|            break;
 3081|      0|        case PyImport_LAZY_ALL:
  ------------------
  |  Branch (3081:9): [True: 0, False: 98]
  ------------------
 3082|      0|            if (!lazy) {
  ------------------
  |  Branch (3082:17): [True: 0, False: 0]
  ------------------
 3083|      0|                lazy = is_lazy_import_module_level();
 3084|      0|            }
 3085|      0|            break;
 3086|     98|        case PyImport_LAZY_NORMAL:
  ------------------
  |  Branch (3086:9): [True: 98, False: 0]
  ------------------
 3087|     98|            break;
 3088|     98|    }
 3089|       |
 3090|     98|    if (!lazy && mode != PyImport_LAZY_NONE && is_lazy_import_module_level()) {
  ------------------
  |  Branch (3090:9): [True: 90, False: 8]
  |  Branch (3090:18): [True: 90, False: 0]
  |  Branch (3090:48): [True: 90, False: 0]
  ------------------
 3091|       |        // See if __lazy_modules__ forces this to be lazy.
 3092|     90|        lazy = check_lazy_import_compatibility(tstate, globals, name, level);
 3093|     90|        if (lazy < 0) {
  ------------------
  |  Branch (3093:13): [True: 0, False: 90]
  ------------------
 3094|      0|            return NULL;
 3095|      0|        }
 3096|     90|    }
 3097|       |
 3098|     98|    if (!lazy) {
  ------------------
  |  Branch (3098:9): [True: 90, False: 8]
  ------------------
 3099|       |        // Not a lazy import or lazy imports are disabled, fallback to the
 3100|       |        // regular import.
 3101|     90|        return _PyEval_ImportName(tstate, builtins, globals, locals,
 3102|     90|                                  name, fromlist, level);
 3103|     90|    }
 3104|       |
 3105|      8|    PyObject *lazy_import_func;
 3106|      8|    if (PyMapping_GetOptionalItem(builtins, &_Py_ID(__lazy_import__),
  ------------------
  |  |  917|      8|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      8|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      8|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3106:9): [True: 0, False: 8]
  ------------------
 3107|      8|                                  &lazy_import_func) < 0) {
 3108|      0|        goto error;
 3109|      0|    }
 3110|      8|    if (lazy_import_func == NULL) {
  ------------------
  |  Branch (3110:9): [True: 0, False: 8]
  ------------------
 3111|      0|        assert(!PyErr_Occurred());
  ------------------
  |  Branch (3111:9): [True: 0, False: 0]
  ------------------
 3112|      0|        _PyErr_SetString(tstate, PyExc_ImportError,
 3113|      0|                         "__lazy_import__ not found");
 3114|      0|        goto error;
 3115|      0|    }
 3116|       |
 3117|      8|    if (locals == NULL) {
  ------------------
  |  Branch (3117:9): [True: 0, False: 8]
  ------------------
 3118|      0|        locals = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
 3119|      0|    }
 3120|       |
 3121|      8|    if (_PyImport_IsDefaultLazyImportFunc(tstate->interp, lazy_import_func)) {
  ------------------
  |  Branch (3121:9): [True: 8, False: 0]
  ------------------
 3122|      8|        int ilevel = PyLong_AsInt(level);
 3123|      8|        if (ilevel == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (3123:13): [True: 0, False: 8]
  |  Branch (3123:29): [True: 0, False: 0]
  ------------------
 3124|      0|            goto error;
 3125|      0|        }
 3126|       |
 3127|      8|        res = _PyImport_LazyImportModuleLevelObject(
 3128|      8|            tstate, name, builtins, globals, locals, fromlist, ilevel
 3129|      8|        );
 3130|      8|        goto error;
 3131|      8|    }
 3132|       |
 3133|      0|    PyObject *args[6] = {name, globals, locals, fromlist, level, builtins};
 3134|      0|    res = PyObject_Vectorcall(lazy_import_func, args, 6, NULL);
 3135|      8|error:
 3136|       |    Py_XDECREF(lazy_import_func);
  ------------------
  |  |   69|      8|    do { \
  |  |   70|      8|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      8|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 8, False: 0]
  |  |  ------------------
  |  |   72|      8|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      8|    do { \
  |  |  |  |   81|      8|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      8|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      8|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 8]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      8|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      8|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      8|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      8|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      8|        } \
  |  |   74|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 3137|      8|    return res;
 3138|      0|}
_PyEval_ImportFrom:
 3142|     64|{
 3143|     64|    PyObject *x;
 3144|     64|    PyObject *fullmodname, *mod_name, *origin, *mod_name_or_unknown, *errmsg, *spec;
 3145|       |
 3146|     64|    if (PyObject_GetOptionalAttr(v, name, &x) != 0) {
  ------------------
  |  Branch (3146:9): [True: 64, False: 0]
  ------------------
 3147|     64|        return x;
 3148|     64|    }
 3149|       |    /* Issue #17636: in case this failed because of a circular relative
 3150|       |       import, try to fallback on reading the module directly from
 3151|       |       sys.modules. */
 3152|      0|    if (PyObject_GetOptionalAttr(v, &_Py_ID(__name__), &mod_name) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3152:9): [True: 0, False: 0]
  ------------------
 3153|      0|        return NULL;
 3154|      0|    }
 3155|      0|    if (mod_name == NULL || !PyUnicode_Check(mod_name)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3155:9): [True: 0, False: 0]
  |  Branch (3155:29): [True: 0, False: 0]
  ------------------
 3156|      0|        Py_CLEAR(mod_name);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3157|      0|        goto error;
 3158|      0|    }
 3159|      0|    fullmodname = PyUnicode_FromFormat("%U.%U", mod_name, name);
 3160|      0|    if (fullmodname == NULL) {
  ------------------
  |  Branch (3160:9): [True: 0, False: 0]
  ------------------
 3161|      0|        Py_DECREF(mod_name);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3162|      0|        return NULL;
 3163|      0|    }
 3164|      0|    x = PyImport_GetModule(fullmodname);
 3165|      0|    Py_DECREF(fullmodname);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3166|      0|    if (x == NULL && !_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (3166:9): [True: 0, False: 0]
  |  Branch (3166:22): [True: 0, False: 0]
  ------------------
 3167|      0|        goto error;
 3168|      0|    }
 3169|      0|    Py_DECREF(mod_name);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3170|      0|    return x;
 3171|       |
 3172|      0| error:
 3173|      0|    if (mod_name == NULL) {
  ------------------
  |  Branch (3173:9): [True: 0, False: 0]
  ------------------
 3174|      0|        mod_name_or_unknown = PyUnicode_FromString("<unknown module name>");
 3175|      0|        if (mod_name_or_unknown == NULL) {
  ------------------
  |  Branch (3175:13): [True: 0, False: 0]
  ------------------
 3176|      0|            return NULL;
 3177|      0|        }
 3178|      0|    } else {
 3179|      0|        mod_name_or_unknown = mod_name;
 3180|      0|    }
 3181|       |    // mod_name is no longer an owned reference
 3182|      0|    assert(mod_name_or_unknown);
  ------------------
  |  Branch (3182:5): [True: 0, False: 0]
  ------------------
 3183|      0|    assert(mod_name == NULL || mod_name == mod_name_or_unknown);
  ------------------
  |  Branch (3183:5): [True: 0, False: 0]
  |  Branch (3183:5): [True: 0, False: 0]
  ------------------
 3184|       |
 3185|      0|    origin = NULL;
 3186|      0|    if (PyObject_GetOptionalAttr(v, &_Py_ID(__spec__), &spec) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3186:9): [True: 0, False: 0]
  ------------------
 3187|      0|        Py_DECREF(mod_name_or_unknown);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3188|      0|        return NULL;
 3189|      0|    }
 3190|      0|    if (spec == NULL) {
  ------------------
  |  Branch (3190:9): [True: 0, False: 0]
  ------------------
 3191|      0|        errmsg = PyUnicode_FromFormat(
 3192|      0|            "cannot import name %R from %R (unknown location)",
 3193|      0|            name, mod_name_or_unknown
 3194|      0|        );
 3195|      0|        goto done_with_errmsg;
 3196|      0|    }
 3197|      0|    if (_PyModuleSpec_GetFileOrigin(spec, &origin) < 0) {
  ------------------
  |  Branch (3197:9): [True: 0, False: 0]
  ------------------
 3198|      0|        goto done;
 3199|      0|    }
 3200|       |
 3201|      0|    int is_possibly_shadowing = _PyModule_IsPossiblyShadowing(origin);
 3202|      0|    if (is_possibly_shadowing < 0) {
  ------------------
  |  Branch (3202:9): [True: 0, False: 0]
  ------------------
 3203|      0|        goto done;
 3204|      0|    }
 3205|      0|    int is_possibly_shadowing_stdlib = 0;
 3206|      0|    if (is_possibly_shadowing) {
  ------------------
  |  Branch (3206:9): [True: 0, False: 0]
  ------------------
 3207|      0|        PyObject *stdlib_modules;
 3208|      0|        if (PySys_GetOptionalAttrString("stdlib_module_names", &stdlib_modules) < 0) {
  ------------------
  |  Branch (3208:13): [True: 0, False: 0]
  ------------------
 3209|      0|            goto done;
 3210|      0|        }
 3211|      0|        if (stdlib_modules && PyAnySet_Check(stdlib_modules)) {
  ------------------
  |  |   31|      0|    (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (Py_IS_TYPE((ob), &PySet_Type) || Py_IS_TYPE((ob), &PyFrozenSet_Type) || \
  |  |  ------------------
  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   32|      0|      PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (32:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   33|      0|      PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (33:7): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (3211:13): [True: 0, False: 0]
  ------------------
 3212|      0|            is_possibly_shadowing_stdlib = PySet_Contains(stdlib_modules, mod_name_or_unknown);
 3213|      0|            if (is_possibly_shadowing_stdlib < 0) {
  ------------------
  |  Branch (3213:17): [True: 0, False: 0]
  ------------------
 3214|      0|                Py_DECREF(stdlib_modules);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3215|      0|                goto done;
 3216|      0|            }
 3217|      0|        }
 3218|      0|        Py_XDECREF(stdlib_modules);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3219|      0|    }
 3220|       |
 3221|      0|    if (origin == NULL && PyModule_Check(v)) {
  ------------------
  |  |   12|      0|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3221:9): [True: 0, False: 0]
  ------------------
 3222|       |        // Fall back to __file__ for diagnostics if we don't have
 3223|       |        // an origin that is a location
 3224|      0|        origin = PyModule_GetFilenameObject(v);
 3225|      0|        if (origin == NULL) {
  ------------------
  |  Branch (3225:13): [True: 0, False: 0]
  ------------------
 3226|      0|            if (!PyErr_ExceptionMatches(PyExc_SystemError)) {
  ------------------
  |  Branch (3226:17): [True: 0, False: 0]
  ------------------
 3227|      0|                goto done;
 3228|      0|            }
 3229|       |            // PyModule_GetFilenameObject raised "module filename missing"
 3230|      0|            _PyErr_Clear(tstate);
 3231|      0|        }
 3232|      0|        assert(origin == NULL || PyUnicode_Check(origin));
  ------------------
  |  Branch (3232:9): [True: 0, False: 0]
  |  Branch (3232:9): [True: 0, False: 0]
  ------------------
 3233|      0|    }
 3234|       |
 3235|      0|    if (is_possibly_shadowing_stdlib) {
  ------------------
  |  Branch (3235:9): [True: 0, False: 0]
  ------------------
 3236|      0|        assert(origin);
  ------------------
  |  Branch (3236:9): [True: 0, False: 0]
  ------------------
 3237|      0|        errmsg = PyUnicode_FromFormat(
 3238|      0|            "cannot import name %R from %R "
 3239|      0|            "(consider renaming %R since it has the same "
 3240|      0|            "name as the standard library module named %R "
 3241|      0|            "and prevents importing that standard library module)",
 3242|      0|            name, mod_name_or_unknown, origin, mod_name_or_unknown
 3243|      0|        );
 3244|      0|    }
 3245|      0|    else {
 3246|      0|        int rc = _PyModuleSpec_IsInitializing(spec);
 3247|      0|        if (rc < 0) {
  ------------------
  |  Branch (3247:13): [True: 0, False: 0]
  ------------------
 3248|      0|            goto done;
 3249|      0|        }
 3250|      0|        else if (rc > 0) {
  ------------------
  |  Branch (3250:18): [True: 0, False: 0]
  ------------------
 3251|      0|            if (is_possibly_shadowing) {
  ------------------
  |  Branch (3251:17): [True: 0, False: 0]
  ------------------
 3252|      0|                assert(origin);
  ------------------
  |  Branch (3252:17): [True: 0, False: 0]
  ------------------
 3253|       |                // For non-stdlib modules, only mention the possibility of
 3254|       |                // shadowing if the module is being initialized.
 3255|      0|                errmsg = PyUnicode_FromFormat(
 3256|      0|                    "cannot import name %R from %R "
 3257|      0|                    "(consider renaming %R if it has the same name "
 3258|      0|                    "as a library you intended to import)",
 3259|      0|                    name, mod_name_or_unknown, origin
 3260|      0|                );
 3261|      0|            }
 3262|      0|            else if (origin) {
  ------------------
  |  Branch (3262:22): [True: 0, False: 0]
  ------------------
 3263|      0|                errmsg = PyUnicode_FromFormat(
 3264|      0|                    "cannot import name %R from partially initialized module %R "
 3265|      0|                    "(most likely due to a circular import) (%S)",
 3266|      0|                    name, mod_name_or_unknown, origin
 3267|      0|                );
 3268|      0|            }
 3269|      0|            else {
 3270|      0|                errmsg = PyUnicode_FromFormat(
 3271|      0|                    "cannot import name %R from partially initialized module %R "
 3272|      0|                    "(most likely due to a circular import)",
 3273|      0|                    name, mod_name_or_unknown
 3274|      0|                );
 3275|      0|            }
 3276|      0|        }
 3277|      0|        else {
 3278|      0|            assert(rc == 0);
  ------------------
  |  Branch (3278:13): [True: 0, False: 0]
  ------------------
 3279|      0|            if (origin) {
  ------------------
  |  Branch (3279:17): [True: 0, False: 0]
  ------------------
 3280|      0|                errmsg = PyUnicode_FromFormat(
 3281|      0|                    "cannot import name %R from %R (%S)",
 3282|      0|                    name, mod_name_or_unknown, origin
 3283|      0|                );
 3284|      0|            }
 3285|      0|            else {
 3286|      0|                errmsg = PyUnicode_FromFormat(
 3287|      0|                    "cannot import name %R from %R (unknown location)",
 3288|      0|                    name, mod_name_or_unknown
 3289|      0|                );
 3290|      0|            }
 3291|      0|        }
 3292|      0|    }
 3293|       |
 3294|      0|done_with_errmsg:
 3295|      0|    if (errmsg != NULL) {
  ------------------
  |  Branch (3295:9): [True: 0, False: 0]
  ------------------
 3296|       |        /* NULL checks for mod_name and origin done by _PyErr_SetImportErrorWithNameFrom */
 3297|      0|        _PyErr_SetImportErrorWithNameFrom(errmsg, mod_name, origin, name);
 3298|      0|        Py_DECREF(errmsg);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3299|      0|    }
 3300|       |
 3301|      0|done:
 3302|      0|    Py_XDECREF(origin);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3303|      0|    Py_XDECREF(spec);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3304|      0|    Py_DECREF(mod_name_or_unknown);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3305|       |    return NULL;
 3306|      0|}
_PyEval_CheckExceptTypeValid:
 3374|    178|{
 3375|    178|    if (PyTuple_Check(right)) {
  ------------------
  |  |   27|    178|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    178|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 14, False: 164]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3376|     14|        Py_ssize_t i, length;
 3377|     14|        length = PyTuple_GET_SIZE(right);
  ------------------
  |  |   27|     14|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3378|     42|        for (i = 0; i < length; i++) {
  ------------------
  |  Branch (3378:21): [True: 28, False: 14]
  ------------------
 3379|     28|            PyObject *exc = PyTuple_GET_ITEM(right, i);
  ------------------
  |  |   29|     28|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     28|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3379:29): [True: 28, False: 0]
  ------------------
 3380|     28|            if (!PyExceptionClass_Check(exc)) {
  ------------------
  |  |   61|     28|    (PyType_Check((x)) &&                                               \
  |  |  ------------------
  |  |  |  |  766|     56|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (766:28): [True: 28, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   62|     28|     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
  |  |  ------------------
  |  |  |  |  760|     28|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 28, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3381|      0|                _PyErr_SetString(tstate, PyExc_TypeError,
 3382|      0|                    CANNOT_CATCH_MSG);
  ------------------
  |  | 3366|      0|#define CANNOT_CATCH_MSG "catching classes that do not inherit from "\
  |  | 3367|      0|                         "BaseException is not allowed"
  ------------------
 3383|      0|                return -1;
 3384|      0|            }
 3385|     28|        }
 3386|     14|    }
 3387|    164|    else {
 3388|    164|        if (!PyExceptionClass_Check(right)) {
  ------------------
  |  |   61|    164|    (PyType_Check((x)) &&                                               \
  |  |  ------------------
  |  |  |  |  766|    328|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    164|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    164|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (766:28): [True: 164, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   62|    164|     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
  |  |  ------------------
  |  |  |  |  760|    164|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 164, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3389|      0|            _PyErr_SetString(tstate, PyExc_TypeError,
 3390|      0|                CANNOT_CATCH_MSG);
  ------------------
  |  | 3366|      0|#define CANNOT_CATCH_MSG "catching classes that do not inherit from "\
  |  | 3367|      0|                         "BaseException is not allowed"
  ------------------
 3391|      0|            return -1;
 3392|      0|        }
 3393|    164|    }
 3394|    178|    return 0;
 3395|    178|}
_Py_Check_ArgsIterable:
 3436|      2|{
 3437|      2|    if (Py_TYPE(args)->tp_iter == NULL && !PySequence_Check(args)) {
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3437:9): [True: 0, False: 2]
  |  Branch (3437:43): [True: 0, False: 0]
  ------------------
 3438|      0|        _PyErr_Format(tstate, PyExc_TypeError,
 3439|      0|                      "Value after * must be an iterable, not %.200s",
 3440|      0|                      Py_TYPE(args)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3441|      0|        return -1;
 3442|      0|    }
 3443|      2|    return 0;
 3444|      2|}
_PyEval_LoadGlobalStackRef:
 3630|  1.89k|{
 3631|  1.89k|    if (PyAnyDict_CheckExact(globals) && PyAnyDict_CheckExact(builtins)) {
  ------------------
  |  |   41|  3.79k|    (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   19|  1.89k|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  3.79k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  1.89k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.89k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 1.89k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyAnyDict_CheckExact(globals) && PyAnyDict_CheckExact(builtins)) {
  ------------------
  |  |   41|  1.89k|    (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   19|  1.89k|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|  3.79k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|  1.89k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|  1.89k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 1.89k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   38|      0|#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |   65|      0|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (65:5): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3632|  1.89k|        _PyDict_LoadGlobalStackRef((PyDictObject *)globals,
 3633|  1.89k|                                    (PyDictObject *)builtins,
 3634|  1.89k|                                    name, writeto);
 3635|  1.89k|        if (PyStackRef_IsNull(*writeto) && !PyErr_Occurred()) {
  ------------------
  |  |  470|  3.79k|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|  1.89k|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.89k|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 0, False: 1.89k]
  |  |  ------------------
  ------------------
  |  Branch (3635:44): [True: 0, False: 0]
  ------------------
 3636|       |            /* _PyDict_LoadGlobal() returns NULL without raising
 3637|       |                * an exception if the key doesn't exist */
 3638|      0|            _PyEval_FormatExcCheckArg(PyThreadState_GET(), PyExc_NameError,
  ------------------
  |  |   63|      0|#define PyThreadState_GET() PyThreadState_Get()
  ------------------
 3639|      0|                                        NAME_ERROR_MSG, name);
  ------------------
  |  |  384|      0|#define NAME_ERROR_MSG "name '%.200s' is not defined"
  ------------------
 3640|      0|        }
 3641|  1.89k|    }
 3642|      0|    else {
 3643|       |        /* Slow-path if globals or builtins is not a dict */
 3644|       |        /* namespace 1: globals */
 3645|      0|        PyObject *res;
 3646|      0|        if (PyMapping_GetOptionalItem(globals, name, &res) < 0) {
  ------------------
  |  Branch (3646:13): [True: 0, False: 0]
  ------------------
 3647|      0|            *writeto = PyStackRef_NULL;
 3648|      0|            return;
 3649|      0|        }
 3650|      0|        if (res == NULL) {
  ------------------
  |  Branch (3650:13): [True: 0, False: 0]
  ------------------
 3651|       |            /* namespace 2: builtins */
 3652|      0|            if (PyMapping_GetOptionalItem(builtins, name, &res) < 0) {
  ------------------
  |  Branch (3652:17): [True: 0, False: 0]
  ------------------
 3653|      0|                *writeto = PyStackRef_NULL;
 3654|      0|                return;
 3655|      0|            }
 3656|      0|            if (res == NULL) {
  ------------------
  |  Branch (3656:17): [True: 0, False: 0]
  ------------------
 3657|      0|                _PyEval_FormatExcCheckArg(
 3658|      0|                            PyThreadState_GET(), PyExc_NameError,
  ------------------
  |  |   63|      0|#define PyThreadState_GET() PyThreadState_Get()
  ------------------
 3659|      0|                            NAME_ERROR_MSG, name);
  ------------------
  |  |  384|      0|#define NAME_ERROR_MSG "name '%.200s' is not defined"
  ------------------
 3660|      0|                *writeto = PyStackRef_NULL;
 3661|      0|                return;
 3662|      0|            }
 3663|      0|        }
 3664|      0|        *writeto = PyStackRef_FromPyObjectSteal(res);
 3665|      0|    }
 3666|       |
 3667|  1.89k|    PyObject *res_o = PyStackRef_AsPyObjectBorrow(*writeto);
 3668|  1.89k|    if (res_o != NULL && PyLazyImport_CheckExact(res_o)) {
  ------------------
  |  |   15|  1.89k|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  ------------------
  |  |  |  |   65|  1.89k|    (_PyObject_CAST(ob)->ob_type == (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  1.89k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  1.89k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (65:5): [True: 0, False: 1.89k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3668:9): [True: 1.89k, False: 0]
  ------------------
 3669|      0|        PyObject *l_v = _PyImport_LoadLazyImportTstate(PyThreadState_GET(), res_o);
  ------------------
  |  |   63|      0|#define PyThreadState_GET() PyThreadState_Get()
  ------------------
 3670|      0|        PyStackRef_CLOSE(writeto[0]);
 3671|      0|        if (l_v == NULL) {
  ------------------
  |  Branch (3671:13): [True: 0, False: 0]
  ------------------
 3672|      0|            assert(PyErr_Occurred());
  ------------------
  |  Branch (3672:13): [True: 0, False: 0]
  ------------------
 3673|      0|            *writeto = PyStackRef_NULL;
 3674|      0|            return;
 3675|      0|        }
 3676|      0|        int err = PyDict_SetItem(globals, name, l_v);
 3677|      0|        if (err < 0) {
  ------------------
  |  Branch (3677:13): [True: 0, False: 0]
  ------------------
 3678|      0|            Py_DECREF(l_v);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3679|      0|            *writeto = PyStackRef_NULL;
 3680|      0|            return;
 3681|      0|        }
 3682|      0|        *writeto = PyStackRef_FromPyObjectSteal(l_v);
 3683|      0|    }
 3684|  1.89k|}
_PyEval_LoadName:
 3712|  1.67k|{
 3713|       |
 3714|  1.67k|    PyObject *value;
 3715|  1.67k|    if (frame->f_locals == NULL) {
  ------------------
  |  Branch (3715:9): [True: 0, False: 1.67k]
  ------------------
 3716|      0|        _PyErr_SetString(tstate, PyExc_SystemError,
 3717|      0|                            "no locals found");
 3718|      0|        return NULL;
 3719|      0|    }
 3720|  1.67k|    if (PyMapping_GetOptionalItem(frame->f_locals, name, &value) < 0) {
  ------------------
  |  Branch (3720:9): [True: 0, False: 1.67k]
  ------------------
 3721|      0|        return NULL;
 3722|      0|    }
 3723|  1.67k|    if (value != NULL) {
  ------------------
  |  Branch (3723:9): [True: 1.07k, False: 592]
  ------------------
 3724|  1.07k|        return value;
 3725|  1.07k|    }
 3726|    592|    if (PyDict_GetItemRef(frame->f_globals, name, &value) < 0) {
  ------------------
  |  Branch (3726:9): [True: 0, False: 592]
  ------------------
 3727|      0|        return NULL;
 3728|      0|    }
 3729|    592|    if (value != NULL) {
  ------------------
  |  Branch (3729:9): [True: 264, False: 328]
  ------------------
 3730|    264|        return value;
 3731|    264|    }
 3732|    328|    if (PyMapping_GetOptionalItem(frame->f_builtins, name, &value) < 0) {
  ------------------
  |  Branch (3732:9): [True: 0, False: 328]
  ------------------
 3733|      0|        return NULL;
 3734|      0|    }
 3735|    328|    if (value == NULL) {
  ------------------
  |  Branch (3735:9): [True: 0, False: 328]
  ------------------
 3736|      0|        _PyEval_FormatExcCheckArg(
 3737|      0|                    tstate, PyExc_NameError,
 3738|      0|                    NAME_ERROR_MSG, name);
  ------------------
  |  |  384|      0|#define NAME_ERROR_MSG "name '%.200s' is not defined"
  ------------------
 3739|      0|    }
 3740|    328|    return value;
 3741|    328|}
_PyForIter_VirtualIteratorNext:
 3744|    108|{
 3745|    108|    PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
 3746|    108|    _PyStackRef index = *index_ptr;
 3747|    108|    if (PyStackRef_IsTaggedInt(index)) {
  ------------------
  |  Branch (3747:9): [True: 76, False: 32]
  ------------------
 3748|     76|        intptr_t i = PyStackRef_UntagInt(index);
 3749|     76|        assert(i >= 0);
  ------------------
  |  Branch (3749:9): [True: 76, False: 0]
  ------------------
 3750|     76|        _PyObjectIndexPair next_index = Py_TYPE(iter_o)->_tp_iteritem(iter_o, i);
  ------------------
  |  |  213|     76|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     76|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     76|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3751|     76|        i = next_index.index;
 3752|     76|        PyObject *next = next_index.object;
 3753|     76|        if (next == NULL) {
  ------------------
  |  Branch (3753:13): [True: 12, False: 64]
  ------------------
 3754|     12|            return i < 0 ? PyStackRef_ERROR : PyStackRef_NULL;
  ------------------
  |  Branch (3754:20): [True: 0, False: 12]
  ------------------
 3755|     12|        }
 3756|     64|        *index_ptr = PyStackRef_TagInt(i);
 3757|     64|        return PyStackRef_FromPyObjectSteal(next);
 3758|     76|    }
 3759|     32|    PyObject *next = (*Py_TYPE(iter_o)->tp_iternext)(iter_o);
  ------------------
  |  |  213|     32|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3760|     32|    if (next == NULL) {
  ------------------
  |  Branch (3760:9): [True: 12, False: 20]
  ------------------
 3761|     12|        if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (3761:13): [True: 0, False: 12]
  ------------------
 3762|      0|            if (_PyErr_ExceptionMatches(tstate, PyExc_StopIteration)) {
  ------------------
  |  Branch (3762:17): [True: 0, False: 0]
  ------------------
 3763|      0|                _PyEval_MonitorRaise(tstate, frame, frame->instr_ptr);
 3764|      0|                _PyErr_Clear(tstate);
 3765|      0|            }
 3766|      0|            else {
 3767|      0|                return PyStackRef_ERROR;
 3768|      0|            }
 3769|      0|        }
 3770|     12|        return PyStackRef_NULL;
 3771|     12|    }
 3772|     20|    return PyStackRef_FromPyObjectSteal(next);
 3773|     32|}
ceval.c:hardware_stack_limits:
  140|      2|{
  141|       |#ifdef WIN32
  142|       |    ULONG_PTR low, high;
  143|       |    GetCurrentThreadStackLimits(&low, &high);
  144|       |    *top = (uintptr_t)high;
  145|       |    ULONG guarantee = 0;
  146|       |    SetThreadStackGuarantee(&guarantee);
  147|       |    *base = (uintptr_t)low + guarantee;
  148|       |#elif defined(__APPLE__)
  149|       |    pthread_t this_thread = pthread_self();
  150|       |    void *stack_addr = pthread_get_stackaddr_np(this_thread); // top of the stack
  151|       |    size_t stack_size = pthread_get_stacksize_np(this_thread);
  152|       |    *top = (uintptr_t)stack_addr;
  153|       |    *base = ((uintptr_t)stack_addr) - stack_size;
  154|       |#else
  155|       |    /// XXX musl supports HAVE_PTHRED_GETATTR_NP, but the resulting stack size
  156|       |    /// (on alpine at least) is much smaller than expected and imposes undue limits
  157|       |    /// compared to the old stack size estimation.  (We assume musl is not glibc.)
  158|      2|#  if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(_AIX) && \
  159|      2|        !defined(__NetBSD__) && (defined(__GLIBC__) || !defined(__linux__))
  160|      2|    size_t stack_size, guard_size;
  161|      2|    void *stack_addr;
  162|      2|    pthread_attr_t attr;
  163|      2|    int err = pthread_getattr_np(pthread_self(), &attr);
  164|      2|    if (err == 0) {
  ------------------
  |  Branch (164:9): [True: 2, False: 0]
  ------------------
  165|      2|        err = pthread_attr_getguardsize(&attr, &guard_size);
  166|      2|        err |= pthread_attr_getstack(&attr, &stack_addr, &stack_size);
  167|      2|        err |= pthread_attr_destroy(&attr);
  168|      2|    }
  169|      2|    if (err == 0) {
  ------------------
  |  Branch (169:9): [True: 2, False: 0]
  ------------------
  170|      2|        *base = ((uintptr_t)stack_addr) + guard_size;
  171|      2|        *top = (uintptr_t)stack_addr + stack_size;
  172|      2|        return;
  173|      2|    }
  174|      0|#  endif
  175|       |    // Add some space for caller function then round to minimum page size
  176|       |    // This is a guess at the top of the stack, but should be a reasonably
  177|       |    // good guess if called from _PyThreadState_Attach when creating a thread.
  178|       |    // If the thread is attached deep in a call stack, then the guess will be poor.
  179|      0|#if _Py_STACK_GROWS_DOWN
  180|      0|    uintptr_t top_addr = _Py_SIZE_ROUND_UP(sp + 8*sizeof(void*), SYSTEM_PAGE_SIZE);
  ------------------
  |  |  213|      0|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  214|      0|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  ------------------
  181|      0|    *top = top_addr;
  182|      0|    *base = top_addr - Py_C_STACK_SIZE;
  ------------------
  |  |   77|      0|#  define Py_C_STACK_SIZE 4000000
  ------------------
  183|       |#  else
  184|       |    uintptr_t base_addr = _Py_SIZE_ROUND_DOWN(sp - 8*sizeof(void*), SYSTEM_PAGE_SIZE);
  185|       |    *base = base_addr;
  186|       |    *top = base_addr + Py_C_STACK_SIZE;
  187|       |#endif
  188|      0|#endif
  189|      0|}
ceval.c:tstate_set_stack:
  194|      2|{
  195|      2|    assert(base < top);
  ------------------
  |  Branch (195:5): [True: 2, False: 0]
  ------------------
  196|      2|    assert((top - base) >= _PyOS_MIN_STACK_SIZE);
  ------------------
  |  Branch (196:5): [True: 2, False: 0]
  ------------------
  197|       |
  198|       |#ifdef _Py_THREAD_SANITIZER
  199|       |    // Thread sanitizer crashes if we use more than half the stack.
  200|       |    uintptr_t stacksize = top - base;
  201|       |#  if _Py_STACK_GROWS_DOWN
  202|       |    base += stacksize/2;
  203|       |#  else
  204|       |    top -= stacksize/2;
  205|       |#  endif
  206|       |#endif
  207|      2|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  208|      2|#if _Py_STACK_GROWS_DOWN
  209|      2|    _tstate->c_stack_top = top;
  210|      2|    _tstate->c_stack_hard_limit = base + _PyOS_STACK_MARGIN_BYTES;
  ------------------
  |  |   55|      2|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      2|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      2|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  211|      2|    _tstate->c_stack_soft_limit = base + _PyOS_STACK_MARGIN_BYTES * 2;
  ------------------
  |  |   55|      2|#define _PyOS_STACK_MARGIN_BYTES (_PyOS_STACK_MARGIN * sizeof(void *))
  |  |  ------------------
  |  |  |  |   54|      2|#define _PyOS_STACK_MARGIN (1 << _PyOS_LOG2_STACK_MARGIN)
  |  |  |  |  ------------------
  |  |  |  |  |  |   52|      2|#  define _PyOS_LOG2_STACK_MARGIN 11
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  212|      2|#  ifndef NDEBUG
  213|       |    // Sanity checks
  214|      2|    _PyThreadStateImpl *ts = (_PyThreadStateImpl *)tstate;
  215|      2|    assert(ts->c_stack_hard_limit <= ts->c_stack_soft_limit);
  ------------------
  |  Branch (215:5): [True: 2, False: 0]
  ------------------
  216|      2|    assert(ts->c_stack_soft_limit < ts->c_stack_top);
  ------------------
  |  Branch (216:5): [True: 2, False: 0]
  ------------------
  217|      2|#  endif
  218|       |#else
  219|       |    _tstate->c_stack_top = base;
  220|       |    _tstate->c_stack_hard_limit = top - _PyOS_STACK_MARGIN_BYTES;
  221|       |    _tstate->c_stack_soft_limit = top - _PyOS_STACK_MARGIN_BYTES * 2;
  222|       |#  ifndef NDEBUG
  223|       |    // Sanity checks
  224|       |    _PyThreadStateImpl *ts = (_PyThreadStateImpl *)tstate;
  225|       |    assert(ts->c_stack_hard_limit >= ts->c_stack_soft_limit);
  226|       |    assert(ts->c_stack_soft_limit > ts->c_stack_top);
  227|       |#  endif
  228|       |#endif
  229|      2|}
ceval.c:clear_thread_frame:
 1956|  3.42k|{
 1957|  3.42k|    assert(frame->owner == FRAME_OWNED_BY_THREAD);
  ------------------
  |  Branch (1957:5): [True: 3.42k, False: 0]
  ------------------
 1958|       |    // Make sure that this is, indeed, the top frame. We can't check this in
 1959|       |    // _PyThreadState_PopFrame, since f_code is already cleared at that point:
 1960|  3.42k|    assert((PyObject **)frame + _PyFrame_GetCode(frame)->co_framesize ==
  ------------------
  |  Branch (1960:5): [True: 3.42k, False: 0]
  ------------------
 1961|  3.42k|        tstate->datastack_top);
 1962|  3.42k|    assert(frame->frame_obj == NULL || frame->frame_obj->f_frame == frame);
  ------------------
  |  Branch (1962:5): [True: 3.24k, False: 186]
  |  Branch (1962:5): [True: 186, False: 0]
  ------------------
 1963|  3.42k|    _PyFrame_ClearExceptCode(frame);
 1964|  3.42k|    PyStackRef_CLEAR(frame->f_executable);
  ------------------
  |  |  711|  3.42k|    do { \
  |  |  712|  3.42k|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|  3.42k|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|  3.42k|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|  3.42k|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|  3.42k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 3.42k]
  |  |  ------------------
  ------------------
 1965|  3.42k|    _PyThreadState_PopFrame(tstate, frame);
 1966|  3.42k|}
ceval.c:clear_gen_frame:
 1970|     34|{
 1971|     34|    assert(frame->owner == FRAME_OWNED_BY_GENERATOR);
  ------------------
  |  Branch (1971:5): [True: 34, False: 0]
  ------------------
 1972|     34|    PyGenObject *gen = _PyGen_GetGeneratorFromFrame(frame);
 1973|     34|    FT_ATOMIC_STORE_INT8_RELEASE(gen->gi_frame_state, FRAME_CLEARED);
  ------------------
  |  |  167|     34|#define FT_ATOMIC_STORE_INT8_RELEASE(value, new_value) value = new_value
  ------------------
 1974|     34|    assert(tstate->exc_info == &gen->gi_exc_state);
  ------------------
  |  Branch (1974:5): [True: 34, False: 0]
  ------------------
 1975|     34|    tstate->exc_info = gen->gi_exc_state.previous_item;
 1976|     34|    gen->gi_exc_state.previous_item = NULL;
 1977|     34|    assert(frame->frame_obj == NULL || frame->frame_obj->f_frame == frame);
  ------------------
  |  Branch (1977:5): [True: 34, False: 0]
  |  Branch (1977:5): [True: 0, False: 0]
  ------------------
 1978|     34|    frame->previous = NULL;
 1979|     34|    _PyFrame_ClearExceptCode(frame);
 1980|     34|    _PyErr_ClearExcState(&gen->gi_exc_state);
 1981|       |    // gh-143939: There must not be any escaping calls between setting
 1982|       |    // the generator return kind and returning from _PyEval_EvalFrame.
 1983|     34|    ((_PyThreadStateImpl *)tstate)->generator_return_kind = GENERATOR_RETURN;
 1984|     34|}
ceval.c:initialize_locals:
 1709|  2.23k|{
 1710|  2.23k|    PyCodeObject *co = (PyCodeObject*)func->func_code;
 1711|  2.23k|    const Py_ssize_t total_args = co->co_argcount + co->co_kwonlyargcount;
 1712|       |    /* Create a dictionary for keyword parameters (**kwags) */
 1713|  2.23k|    PyObject *kwdict;
 1714|  2.23k|    Py_ssize_t i;
 1715|  2.23k|    if (co->co_flags & CO_VARKEYWORDS) {
  ------------------
  |  |  121|  2.23k|#define CO_VARKEYWORDS  0x0008
  ------------------
  |  Branch (1715:9): [True: 276, False: 1.95k]
  ------------------
 1716|    276|        kwdict = PyDict_New();
 1717|    276|        if (kwdict == NULL) {
  ------------------
  |  Branch (1717:13): [True: 0, False: 276]
  ------------------
 1718|      0|            goto fail_pre_positional;
 1719|      0|        }
 1720|    276|        i = total_args;
 1721|    276|        if (co->co_flags & CO_VARARGS) {
  ------------------
  |  |  120|    276|#define CO_VARARGS      0x0004
  ------------------
  |  Branch (1721:13): [True: 216, False: 60]
  ------------------
 1722|    216|            i++;
 1723|    216|        }
 1724|    276|        assert(PyStackRef_IsNull(localsplus[i]));
  ------------------
  |  Branch (1724:9): [True: 276, False: 0]
  ------------------
 1725|    276|        localsplus[i] = PyStackRef_FromPyObjectSteal(kwdict);
 1726|    276|    }
 1727|  1.95k|    else {
 1728|  1.95k|        kwdict = NULL;
 1729|  1.95k|    }
 1730|       |
 1731|       |    /* Copy all positional arguments into local variables */
 1732|  2.23k|    Py_ssize_t j, n;
 1733|  2.23k|    if (argcount > co->co_argcount) {
  ------------------
  |  Branch (1733:9): [True: 486, False: 1.74k]
  ------------------
 1734|    486|        n = co->co_argcount;
 1735|    486|    }
 1736|  1.74k|    else {
 1737|  1.74k|        n = argcount;
 1738|  1.74k|    }
 1739|  5.70k|    for (j = 0; j < n; j++) {
  ------------------
  |  Branch (1739:17): [True: 3.47k, False: 2.23k]
  ------------------
 1740|  3.47k|        assert(PyStackRef_IsNull(localsplus[j]));
  ------------------
  |  Branch (1740:9): [True: 3.47k, False: 0]
  ------------------
 1741|  3.47k|        localsplus[j] = args[j];
 1742|  3.47k|    }
 1743|       |
 1744|       |    /* Pack other positional arguments into the *args argument */
 1745|  2.23k|    if (co->co_flags & CO_VARARGS) {
  ------------------
  |  |  120|  2.23k|#define CO_VARARGS      0x0004
  ------------------
  |  Branch (1745:9): [True: 494, False: 1.73k]
  ------------------
 1746|    494|        PyObject *u = NULL;
 1747|    494|        if (argcount == n) {
  ------------------
  |  Branch (1747:13): [True: 8, False: 486]
  ------------------
 1748|      8|            u = (PyObject *)&_Py_SINGLETON(tuple_empty);
  ------------------
  |  |   18|      8|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  ------------------
  |  |  |  |   16|      8|    _PyRuntime.static_objects.NAME
  |  |  ------------------
  ------------------
 1749|      8|        }
 1750|    486|        else {
 1751|    486|            u = _PyTuple_FromStackRefStealOnSuccess(args + n, argcount - n);
 1752|    486|            if (u == NULL) {
  ------------------
  |  Branch (1752:17): [True: 0, False: 486]
  ------------------
 1753|      0|                for (Py_ssize_t i = n; i < argcount; i++) {
  ------------------
  |  Branch (1753:40): [True: 0, False: 0]
  ------------------
 1754|      0|                    PyStackRef_CLOSE(args[i]);
 1755|      0|                }
 1756|      0|            }
 1757|    486|        }
 1758|    494|        if (u == NULL) {
  ------------------
  |  Branch (1758:13): [True: 0, False: 494]
  ------------------
 1759|      0|            goto fail_post_positional;
 1760|      0|        }
 1761|    494|        assert(PyStackRef_AsPyObjectBorrow(localsplus[total_args]) == NULL);
  ------------------
  |  Branch (1761:9): [True: 494, False: 0]
  ------------------
 1762|    494|        localsplus[total_args] = PyStackRef_FromPyObjectSteal(u);
 1763|    494|    }
 1764|  1.73k|    else if (argcount > n) {
  ------------------
  |  Branch (1764:14): [True: 0, False: 1.73k]
  ------------------
 1765|       |        /* Too many positional args. Error is reported later */
 1766|      0|        for (j = n; j < argcount; j++) {
  ------------------
  |  Branch (1766:21): [True: 0, False: 0]
  ------------------
 1767|      0|            PyStackRef_CLOSE(args[j]);
 1768|      0|        }
 1769|      0|    }
 1770|       |
 1771|       |    /* Handle keyword arguments */
 1772|  2.23k|    if (kwnames != NULL) {
  ------------------
  |  Branch (1772:9): [True: 188, False: 2.04k]
  ------------------
 1773|    188|        Py_ssize_t kwcount = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|    188|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    188|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    188|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1774|    466|        for (i = 0; i < kwcount; i++) {
  ------------------
  |  Branch (1774:21): [True: 278, False: 188]
  ------------------
 1775|    278|            PyObject **co_varnames;
 1776|    278|            PyObject *keyword = PyTuple_GET_ITEM(kwnames, i);
  ------------------
  |  |   29|    278|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    278|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    278|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1776:33): [True: 278, False: 0]
  ------------------
 1777|      0|            _PyStackRef value_stackref = args[i+argcount];
 1778|    278|            Py_ssize_t j;
 1779|       |
 1780|    278|            if (keyword == NULL || !PyUnicode_Check(keyword)) {
  ------------------
  |  |  103|    278|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    278|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1780:17): [True: 0, False: 278]
  |  Branch (1780:36): [True: 0, False: 278]
  ------------------
 1781|      0|                _PyErr_Format(tstate, PyExc_TypeError,
 1782|      0|                            "%U() keywords must be strings",
 1783|      0|                          func->func_qualname);
 1784|      0|                goto kw_fail;
 1785|      0|            }
 1786|       |
 1787|       |            /* Speed hack: do raw pointer compares. As names are
 1788|       |            normally interned this should almost always hit. */
 1789|    278|            co_varnames = ((PyTupleObject *)(co->co_localsplusnames))->ob_item;
 1790|  1.02k|            for (j = co->co_posonlyargcount; j < total_args; j++) {
  ------------------
  |  Branch (1790:46): [True: 1.02k, False: 0]
  ------------------
 1791|  1.02k|                PyObject *varname = co_varnames[j];
 1792|  1.02k|                if (varname == keyword) {
  ------------------
  |  Branch (1792:21): [True: 278, False: 746]
  ------------------
 1793|    278|                    goto kw_found;
 1794|    278|                }
 1795|  1.02k|            }
 1796|       |
 1797|       |            /* Slow fallback, just in case */
 1798|      0|            for (j = co->co_posonlyargcount; j < total_args; j++) {
  ------------------
  |  Branch (1798:46): [True: 0, False: 0]
  ------------------
 1799|      0|                PyObject *varname = co_varnames[j];
 1800|      0|                int cmp = PyObject_RichCompareBool( keyword, varname, Py_EQ);
  ------------------
  |  |  654|      0|#define Py_EQ 2
  ------------------
 1801|      0|                if (cmp > 0) {
  ------------------
  |  Branch (1801:21): [True: 0, False: 0]
  ------------------
 1802|      0|                    goto kw_found;
 1803|      0|                }
 1804|      0|                else if (cmp < 0) {
  ------------------
  |  Branch (1804:26): [True: 0, False: 0]
  ------------------
 1805|      0|                    goto kw_fail;
 1806|      0|                }
 1807|      0|            }
 1808|       |
 1809|      0|            assert(j >= total_args);
  ------------------
  |  Branch (1809:13): [True: 0, False: 0]
  ------------------
 1810|      0|            if (kwdict == NULL) {
  ------------------
  |  Branch (1810:17): [True: 0, False: 0]
  ------------------
 1811|       |
 1812|      0|                if (co->co_posonlyargcount
  ------------------
  |  Branch (1812:21): [True: 0, False: 0]
  ------------------
 1813|      0|                    && positional_only_passed_as_keyword(tstate, co,
  ------------------
  |  Branch (1813:24): [True: 0, False: 0]
  ------------------
 1814|      0|                                                        kwcount, kwnames,
 1815|      0|                                                        func->func_qualname))
 1816|      0|                {
 1817|      0|                    goto kw_fail;
 1818|      0|                }
 1819|       |
 1820|      0|                PyObject* suggestion_keyword = NULL;
 1821|      0|                if (total_args > co->co_posonlyargcount) {
  ------------------
  |  Branch (1821:21): [True: 0, False: 0]
  ------------------
 1822|      0|                    PyObject* possible_keywords = PyList_New(total_args - co->co_posonlyargcount);
 1823|       |
 1824|      0|                    if (!possible_keywords) {
  ------------------
  |  Branch (1824:25): [True: 0, False: 0]
  ------------------
 1825|      0|                        PyErr_Clear();
 1826|      0|                    } else {
 1827|      0|                        for (Py_ssize_t k = co->co_posonlyargcount; k < total_args; k++) {
  ------------------
  |  Branch (1827:69): [True: 0, False: 0]
  ------------------
 1828|      0|                            PyList_SET_ITEM(possible_keywords, k - co->co_posonlyargcount, co_varnames[k]);
  ------------------
  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1829|      0|                        }
 1830|       |
 1831|      0|                        suggestion_keyword = _Py_CalculateSuggestions(possible_keywords, keyword);
 1832|      0|                        Py_DECREF(possible_keywords);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1833|      0|                    }
 1834|      0|                }
 1835|       |
 1836|      0|                if (suggestion_keyword) {
  ------------------
  |  Branch (1836:21): [True: 0, False: 0]
  ------------------
 1837|      0|                    _PyErr_Format(tstate, PyExc_TypeError,
 1838|      0|                                "%U() got an unexpected keyword argument '%S'. Did you mean '%S'?",
 1839|      0|                                func->func_qualname, keyword, suggestion_keyword);
 1840|      0|                    Py_DECREF(suggestion_keyword);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1841|      0|                } else {
 1842|      0|                    _PyErr_Format(tstate, PyExc_TypeError,
 1843|      0|                                "%U() got an unexpected keyword argument '%S'",
 1844|      0|                                func->func_qualname, keyword);
 1845|      0|                }
 1846|       |
 1847|      0|                goto kw_fail;
 1848|      0|            }
 1849|       |
 1850|      0|            if (PyDict_SetItem(kwdict, keyword, PyStackRef_AsPyObjectBorrow(value_stackref)) == -1) {
  ------------------
  |  Branch (1850:17): [True: 0, False: 0]
  ------------------
 1851|      0|                goto kw_fail;
 1852|      0|            }
 1853|      0|            PyStackRef_CLOSE(value_stackref);
 1854|      0|            continue;
 1855|       |
 1856|      0|        kw_fail:
 1857|      0|            for (;i < kwcount; i++) {
  ------------------
  |  Branch (1857:19): [True: 0, False: 0]
  ------------------
 1858|      0|                PyStackRef_CLOSE(args[i+argcount]);
 1859|      0|            }
 1860|      0|            goto fail_post_args;
 1861|       |
 1862|    278|        kw_found:
 1863|    278|            if (PyStackRef_AsPyObjectBorrow(localsplus[j]) != NULL) {
  ------------------
  |  Branch (1863:17): [True: 0, False: 278]
  ------------------
 1864|      0|                _PyErr_Format(tstate, PyExc_TypeError,
 1865|      0|                            "%U() got multiple values for argument '%S'",
 1866|      0|                          func->func_qualname, keyword);
 1867|      0|                goto kw_fail;
 1868|      0|            }
 1869|    278|            localsplus[j] = value_stackref;
 1870|    278|        }
 1871|    188|    }
 1872|       |
 1873|       |    /* Check the number of positional arguments */
 1874|  2.23k|    if ((argcount > co->co_argcount) && !(co->co_flags & CO_VARARGS)) {
  ------------------
  |  |  120|    486|#define CO_VARARGS      0x0004
  ------------------
  |  Branch (1874:9): [True: 486, False: 1.74k]
  |  Branch (1874:41): [True: 0, False: 486]
  ------------------
 1875|      0|        too_many_positional(tstate, co, argcount, func->func_defaults, localsplus,
 1876|      0|                            func->func_qualname);
 1877|      0|        goto fail_post_args;
 1878|      0|    }
 1879|       |
 1880|       |    /* Add missing positional arguments (copy default values from defs) */
 1881|  2.23k|    if (argcount < co->co_argcount) {
  ------------------
  |  Branch (1881:9): [True: 124, False: 2.10k]
  ------------------
 1882|    124|        Py_ssize_t defcount = func->func_defaults == NULL ? 0 : PyTuple_GET_SIZE(func->func_defaults);
  ------------------
  |  |   27|    124|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    124|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1882:31): [True: 0, False: 124]
  ------------------
 1883|    124|        Py_ssize_t m = co->co_argcount - defcount;
 1884|    124|        Py_ssize_t missing = 0;
 1885|    128|        for (i = argcount; i < m; i++) {
  ------------------
  |  Branch (1885:28): [True: 4, False: 124]
  ------------------
 1886|      4|            if (PyStackRef_IsNull(localsplus[i])) {
  ------------------
  |  |  470|      4|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|      4|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      4|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 0, False: 4]
  |  |  ------------------
  ------------------
 1887|      0|                missing++;
 1888|      0|            }
 1889|      4|        }
 1890|    124|        if (missing) {
  ------------------
  |  Branch (1890:13): [True: 0, False: 124]
  ------------------
 1891|      0|            missing_arguments(tstate, co, missing, defcount, localsplus,
 1892|      0|                              func->func_qualname);
 1893|      0|            goto fail_post_args;
 1894|      0|        }
 1895|    124|        if (n > m)
  ------------------
  |  Branch (1895:13): [True: 8, False: 116]
  ------------------
 1896|      8|            i = n - m;
 1897|    116|        else
 1898|    116|            i = 0;
 1899|    124|        if (defcount) {
  ------------------
  |  Branch (1899:13): [True: 124, False: 0]
  ------------------
 1900|    124|            PyObject **defs = &PyTuple_GET_ITEM(func->func_defaults, 0);
  ------------------
  |  |   29|    124|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    124|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    124|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1900:32): [True: 124, False: 0]
  ------------------
 1901|    266|            for (; i < defcount; i++) {
  ------------------
  |  Branch (1901:20): [True: 142, False: 124]
  ------------------
 1902|    142|                if (PyStackRef_AsPyObjectBorrow(localsplus[m+i]) == NULL) {
  ------------------
  |  Branch (1902:21): [True: 132, False: 10]
  ------------------
 1903|    132|                    PyObject *def = defs[i];
 1904|    132|                    localsplus[m+i] = PyStackRef_FromPyObjectNew(def);
  ------------------
  |  |  599|    132|#define PyStackRef_FromPyObjectNew(obj) _PyStackRef_FromPyObjectNew(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    132|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1905|    132|                }
 1906|    142|            }
 1907|    124|        }
 1908|    124|    }
 1909|       |
 1910|       |    /* Add missing keyword arguments (copy default values from kwdefs) */
 1911|  2.23k|    if (co->co_kwonlyargcount > 0) {
  ------------------
  |  Branch (1911:9): [True: 306, False: 1.92k]
  ------------------
 1912|    306|        Py_ssize_t missing = 0;
 1913|    786|        for (i = co->co_argcount; i < total_args; i++) {
  ------------------
  |  Branch (1913:35): [True: 480, False: 306]
  ------------------
 1914|    480|            if (PyStackRef_AsPyObjectBorrow(localsplus[i]) != NULL)
  ------------------
  |  Branch (1914:17): [True: 264, False: 216]
  ------------------
 1915|    264|                continue;
 1916|    216|            PyObject *varname = PyTuple_GET_ITEM(co->co_localsplusnames, i);
  ------------------
  |  |   29|    216|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|    216|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1916:33): [True: 216, False: 0]
  ------------------
 1917|    216|            if (func->func_kwdefaults != NULL) {
  ------------------
  |  Branch (1917:17): [True: 216, False: 0]
  ------------------
 1918|    216|                PyObject *def;
 1919|    216|                if (PyDict_GetItemRef(func->func_kwdefaults, varname, &def) < 0) {
  ------------------
  |  Branch (1919:21): [True: 0, False: 216]
  ------------------
 1920|      0|                    goto fail_post_args;
 1921|      0|                }
 1922|    216|                if (def) {
  ------------------
  |  Branch (1922:21): [True: 216, False: 0]
  ------------------
 1923|    216|                    localsplus[i] = PyStackRef_FromPyObjectSteal(def);
 1924|    216|                    continue;
 1925|    216|                }
 1926|    216|            }
 1927|      0|            missing++;
 1928|      0|        }
 1929|    306|        if (missing) {
  ------------------
  |  Branch (1929:13): [True: 0, False: 306]
  ------------------
 1930|      0|            missing_arguments(tstate, co, missing, -1, localsplus,
 1931|      0|                              func->func_qualname);
 1932|      0|            goto fail_post_args;
 1933|      0|        }
 1934|    306|    }
 1935|  2.23k|    return 0;
 1936|       |
 1937|      0|fail_pre_positional:
 1938|      0|    for (j = 0; j < argcount; j++) {
  ------------------
  |  Branch (1938:17): [True: 0, False: 0]
  ------------------
 1939|      0|        PyStackRef_CLOSE(args[j]);
 1940|      0|    }
 1941|       |    /* fall through */
 1942|      0|fail_post_positional:
 1943|      0|    if (kwnames) {
  ------------------
  |  Branch (1943:9): [True: 0, False: 0]
  ------------------
 1944|      0|        Py_ssize_t kwcount = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1945|      0|        for (j = argcount; j < argcount+kwcount; j++) {
  ------------------
  |  Branch (1945:28): [True: 0, False: 0]
  ------------------
 1946|      0|            PyStackRef_CLOSE(args[j]);
 1947|      0|        }
 1948|      0|    }
 1949|       |    /* fall through */
 1950|      0|fail_post_args:
 1951|      0|    return -1;
 1952|      0|}
ceval.c:_PyEval_GetGlobals:
 2720|     52|{
 2721|     52|    _PyInterpreterFrame *current_frame = _PyThreadState_GetFrame(tstate);
 2722|     52|    if (current_frame == NULL) {
  ------------------
  |  Branch (2722:9): [True: 14, False: 38]
  ------------------
 2723|     14|        return NULL;
 2724|     14|    }
 2725|     38|    return current_frame->f_globals;
 2726|     52|}
ceval.c:get_globals_builtins:
 2753|     42|{
 2754|     42|    PyObject *builtins = NULL;
 2755|     42|    if (PyAnyDict_Check(globals)) {
  ------------------
  |  |   43|     42|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|     42|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|     84|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 42, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2756|     42|        if (PyDict_GetItemRef(globals, &_Py_ID(__builtins__), &builtins) < 0) {
  ------------------
  |  |  917|     42|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     42|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     42|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2756:13): [True: 0, False: 42]
  ------------------
 2757|      0|            return NULL;
 2758|      0|        }
 2759|     42|    }
 2760|      0|    else {
 2761|      0|        if (PyMapping_GetOptionalItem(
  ------------------
  |  Branch (2761:13): [True: 0, False: 0]
  ------------------
 2762|      0|                        globals, &_Py_ID(__builtins__), &builtins) < 0)
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2763|      0|        {
 2764|      0|            return NULL;
 2765|      0|        }
 2766|      0|    }
 2767|     42|    return builtins;
 2768|     42|}
ceval.c:set_globals_builtins:
 2772|     42|{
 2773|     42|    if (PyDict_Check(globals)) {
  ------------------
  |  |   18|     42|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     42|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 42, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2774|     42|        if (PyDict_SetItem(globals, &_Py_ID(__builtins__), builtins) < 0) {
  ------------------
  |  |  917|     42|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     42|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     42|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2774:13): [True: 0, False: 42]
  ------------------
 2775|      0|            return -1;
 2776|      0|        }
 2777|     42|    }
 2778|      0|    else {
 2779|      0|        if (PyObject_SetItem(globals, &_Py_ID(__builtins__), builtins) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2779:13): [True: 0, False: 0]
  ------------------
 2780|      0|            if (PyFrozenDict_Check(globals)) {
  ------------------
  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2781|      0|                PyErr_SetString(PyExc_TypeError,
 2782|      0|                                "cannot assign __builtins__ to frozendict globals");
 2783|      0|            }
 2784|      0|            return -1;
 2785|      0|        }
 2786|      0|    }
 2787|     42|    return 0;
 2788|     42|}
ceval.c:is_lazy_import_module_level:
 3064|     90|{
 3065|     90|    _PyInterpreterFrame *frame = _PyEval_GetFrame();
 3066|     90|    return frame != NULL && frame->f_globals == frame->f_locals;
  ------------------
  |  Branch (3066:12): [True: 90, False: 0]
  |  Branch (3066:29): [True: 90, False: 0]
  ------------------
 3067|     90|}
ceval.c:check_lazy_import_compatibility:
 3027|     90|{
 3028|       |     // Check if this module should be imported lazily due to
 3029|       |     // the compatibility mode support via __lazy_modules__.
 3030|     90|    PyObject *lazy_modules = NULL;
 3031|     90|    PyObject *abs_name = NULL;
 3032|     90|    int res = -1;
 3033|       |
 3034|     90|    if (globals != NULL &&
  ------------------
  |  Branch (3034:9): [True: 90, False: 0]
  ------------------
 3035|     90|        PyMapping_GetOptionalItem(globals, &_Py_ID(__lazy_modules__),
  ------------------
  |  |  917|     90|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     90|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     90|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3035:9): [True: 0, False: 90]
  ------------------
 3036|     90|                                  &lazy_modules) < 0)
 3037|      0|    {
 3038|      0|        return -1;
 3039|      0|    }
 3040|     90|    if (lazy_modules == NULL) {
  ------------------
  |  Branch (3040:9): [True: 90, False: 0]
  ------------------
 3041|     90|        assert(!PyErr_Occurred());
  ------------------
  |  Branch (3041:9): [True: 90, False: 0]
  ------------------
 3042|     90|        return 0;
 3043|     90|    }
 3044|       |
 3045|      0|    int ilevel = PyLong_AsInt(level);
 3046|      0|    if (ilevel == -1 && _PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (3046:9): [True: 0, False: 0]
  |  Branch (3046:25): [True: 0, False: 0]
  ------------------
 3047|      0|        goto error;
 3048|      0|    }
 3049|       |
 3050|      0|    abs_name = _PyImport_GetAbsName(tstate, name, globals, ilevel);
 3051|      0|    if (abs_name == NULL) {
  ------------------
  |  Branch (3051:9): [True: 0, False: 0]
  ------------------
 3052|      0|        goto error;
 3053|      0|    }
 3054|       |
 3055|      0|    res = PySequence_Contains(lazy_modules, abs_name);
 3056|      0|error:
 3057|      0|    Py_XDECREF(abs_name);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3058|       |    Py_XDECREF(lazy_modules);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3059|      0|    return res;
 3060|      0|}

ceval.c:check_invalid_reentrancy:
  142|    906|{
  143|       |#if defined(Py_DEBUG) && defined(Py_GIL_DISABLED)
  144|       |    // In the free-threaded build, the interpreter must not be re-entered if
  145|       |    // the world-is-stopped.  If so, that's a bug somewhere (quite likely in
  146|       |    // the painfully complex typeobject code).
  147|       |    PyInterpreterState *interp = _PyInterpreterState_GET();
  148|       |    assert(!interp->stoptheworld.world_stopped);
  149|       |#endif
  150|    906|}
ceval.c:monitor_reraise:
  405|     12|{
  406|     12|    if (no_tools_for_local_event(tstate, frame, PY_MONITORING_EVENT_RERAISE)) {
  ------------------
  |  |   36|     12|#define PY_MONITORING_EVENT_RERAISE 15
  ------------------
  |  Branch (406:9): [True: 12, False: 0]
  ------------------
  407|     12|        return;
  408|     12|    }
  409|      0|    do_monitor_exc(tstate, frame, instr, PY_MONITORING_EVENT_RERAISE);
  ------------------
  |  |   36|      0|#define PY_MONITORING_EVENT_RERAISE 15
  ------------------
  410|      0|}
ceval.c:do_raise:
  518|     20|{
  519|     20|    PyObject *type = NULL, *value = NULL;
  520|       |
  521|     20|    if (exc == NULL) {
  ------------------
  |  Branch (521:9): [True: 0, False: 20]
  ------------------
  522|       |        /* Reraise */
  523|      0|        _PyErr_StackItem *exc_info = _PyErr_GetTopmostException(tstate);
  524|      0|        exc = exc_info->exc_value;
  525|      0|        if (Py_IsNone(exc) || exc == NULL) {
  ------------------
  |  |  621|      0|#define Py_IsNone(x) Py_Is((x), Py_None)
  |  |  ------------------
  |  |  |  |  187|      0|#define Py_Is(x, y) ((x) == (y))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (187:21): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (525:31): [True: 0, False: 0]
  ------------------
  526|      0|            _PyErr_SetString(tstate, PyExc_RuntimeError,
  527|      0|                             "No active exception to reraise");
  528|      0|            return 0;
  529|      0|        }
  530|      0|        Py_INCREF(exc);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  531|      0|        assert(PyExceptionInstance_Check(exc));
  ------------------
  |  Branch (531:9): [True: 0, False: 0]
  ------------------
  532|      0|        _PyErr_SetRaisedException(tstate, exc);
  533|      0|        return 1;
  534|      0|    }
  535|       |
  536|       |    /* We support the following forms of raise:
  537|       |       raise
  538|       |       raise <instance>
  539|       |       raise <type> */
  540|       |
  541|     20|    if (PyExceptionClass_Check(exc)) {
  ------------------
  |  |   61|     20|    (PyType_Check((x)) &&                                               \
  |  |  ------------------
  |  |  |  |  766|     40|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (766:28): [True: 0, False: 20]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   62|     20|     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  542|      0|        type = exc;
  543|      0|        value = _PyObject_CallNoArgs(exc);
  544|      0|        if (value == NULL)
  ------------------
  |  Branch (544:13): [True: 0, False: 0]
  ------------------
  545|      0|            goto raise_error;
  546|      0|        if (!PyExceptionInstance_Check(value)) {
  ------------------
  |  |   65|      0|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (546:13): [True: 0, False: 0]
  ------------------
  547|      0|            _PyErr_Format(tstate, PyExc_TypeError,
  548|      0|                          "calling %R should have returned an instance of "
  549|      0|                          "BaseException, not %R",
  550|      0|                          type, Py_TYPE(value));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  551|      0|             goto raise_error;
  552|      0|        }
  553|      0|    }
  554|     20|    else if (PyExceptionInstance_Check(exc)) {
  ------------------
  |  |   65|     20|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     20|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 20, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  555|     20|        value = exc;
  556|     20|        type = PyExceptionInstance_Class(exc);
  ------------------
  |  |   69|     20|#define PyExceptionInstance_Class(x) _PyObject_CAST(Py_TYPE(x))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  557|     20|        Py_INCREF(type);
  ------------------
  |  |  310|     20|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  558|     20|    }
  559|      0|    else {
  560|       |        /* Not something you can raise.  You get an exception
  561|       |           anyway, just not what you specified :-) */
  562|      0|        Py_DECREF(exc);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  563|      0|        _PyErr_SetString(tstate, PyExc_TypeError,
  564|      0|                         "exceptions must derive from BaseException");
  565|      0|        goto raise_error;
  566|      0|    }
  567|       |
  568|     20|    assert(type != NULL);
  ------------------
  |  Branch (568:5): [True: 20, False: 0]
  ------------------
  569|     20|    assert(value != NULL);
  ------------------
  |  Branch (569:5): [True: 20, False: 0]
  ------------------
  570|       |
  571|     20|    if (cause) {
  ------------------
  |  Branch (571:9): [True: 2, False: 18]
  ------------------
  572|      2|        PyObject *fixed_cause;
  573|      2|        if (PyExceptionClass_Check(cause)) {
  ------------------
  |  |   61|      2|    (PyType_Check((x)) &&                                               \
  |  |  ------------------
  |  |  |  |  766|      4|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (766:28): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   62|      2|     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  574|      0|            fixed_cause = _PyObject_CallNoArgs(cause);
  575|      0|            if (fixed_cause == NULL)
  ------------------
  |  Branch (575:17): [True: 0, False: 0]
  ------------------
  576|      0|                goto raise_error;
  577|      0|            if (!PyExceptionInstance_Check(fixed_cause)) {
  ------------------
  |  |   65|      0|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (577:17): [True: 0, False: 0]
  ------------------
  578|      0|                _PyErr_Format(tstate, PyExc_TypeError,
  579|      0|                              "calling %R should have returned an instance of "
  580|      0|                              "BaseException, not %R",
  581|      0|                              cause, Py_TYPE(fixed_cause));
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  582|      0|                Py_DECREF(fixed_cause);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  583|      0|                goto raise_error;
  584|      0|            }
  585|      0|            Py_DECREF(cause);
  ------------------
  |  |   80|      0|    do { \
  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  586|      0|        }
  587|      2|        else if (PyExceptionInstance_Check(cause)) {
  ------------------
  |  |   65|      2|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  588|      0|            fixed_cause = cause;
  589|      0|        }
  590|      2|        else if (Py_IsNone(cause)) {
  ------------------
  |  |  621|      2|#define Py_IsNone(x) Py_Is((x), Py_None)
  |  |  ------------------
  |  |  |  |  187|      2|#define Py_Is(x, y) ((x) == (y))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (187:21): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  591|      2|            Py_DECREF(cause);
  ------------------
  |  |   80|      2|    do { \
  |  |   81|      2|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      2|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|      2|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      2|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      2|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      2|            break; \
  |  |   85|      2|        } \
  |  |   86|      2|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  592|      2|            fixed_cause = NULL;
  593|      2|        }
  594|      0|        else {
  595|      0|            _PyErr_SetString(tstate, PyExc_TypeError,
  596|      0|                             "exception causes must derive from "
  597|      0|                             "BaseException");
  598|      0|            goto raise_error;
  599|      0|        }
  600|      2|        PyException_SetCause(value, fixed_cause);
  601|      2|    }
  602|       |
  603|     20|    _PyErr_SetObject(tstate, type, value);
  604|       |    /* _PyErr_SetObject incref's its arguments */
  605|     20|    Py_DECREF(value);
  ------------------
  |  |   80|     20|    do { \
  |  |   81|     20|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|     20|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|     20|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 0, False: 20]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|      0|            break; \
  |  |   85|      0|        } \
  |  |   86|     20|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|     20|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|     20|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 20]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|     20|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 20]
  |  |  ------------------
  ------------------
  606|     20|    Py_DECREF(type);
  ------------------
  |  |   80|     20|    do { \
  |  |   81|     20|        PyObject *op = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|     20|        if (_Py_IsImmortal(op)) { \
  |  |  ------------------
  |  |  |  |  137|     20|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (137:28): [True: 12, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|     12|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   22|     12|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   84|     12|            break; \
  |  |   85|     12|        } \
  |  |   86|     20|        _Py_DECREF_STAT_INC(); \
  |  |  ------------------
  |  |  |  |   20|      8|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  ------------------
  |  |   87|      8|        if (--op->ob_refcnt == 0) { \
  |  |  ------------------
  |  |  |  Branch (87:13): [True: 0, False: 8]
  |  |  ------------------
  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  ------------------
  |  |  |  |  112|      0|    do { \
  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  117|      0|        } \
  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  ------------------
  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      0|            (*dealloc)(op); \
  |  |   91|      0|        } \
  |  |   92|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (92:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
  607|     20|    return 0;
  608|       |
  609|      0|raise_error:
  610|      0|    Py_XDECREF(value);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  611|      0|    Py_XDECREF(type);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  612|       |    Py_XDECREF(cause);
  ------------------
  |  |   69|      0|    do { \
  |  |   70|      0|        PyObject *xop = _PyObject_CAST(arg); \
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   71|      0|        if (xop != NULL) { \
  |  |  ------------------
  |  |  |  Branch (71:13): [True: 0, False: 0]
  |  |  ------------------
  |  |   72|      0|            Py_DECREF(xop); \
  |  |  ------------------
  |  |  |  |   80|      0|    do { \
  |  |  |  |   81|      0|        PyObject *op = _PyObject_CAST(arg); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   82|      0|        if (_Py_IsImmortal(op)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (137:28): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   83|      0|            _Py_DECREF_IMMORTAL_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   22|      0|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   84|      0|            break; \
  |  |  |  |   85|      0|        } \
  |  |  |  |   86|      0|        _Py_DECREF_STAT_INC(); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _Py_DECREF_STAT_INC() ((void)0)
  |  |  |  |  ------------------
  |  |  |  |   87|      0|        if (--op->ob_refcnt == 0) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|            _PyReftracerTrack(op, PyRefTracer_DESTROY); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  112|      0|    do { \
  |  |  |  |  |  |  113|      0|        struct _reftracer_runtime_state *tracer = &_PyRuntime.ref_tracer; \
  |  |  |  |  |  |  114|      0|        if (tracer->tracer_func != NULL) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (114:13): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  115|      0|            void *data = tracer->tracer_data; \
  |  |  |  |  |  |  116|      0|            tracer->tracer_func((obj), (operation), data); \
  |  |  |  |  |  |  117|      0|        } \
  |  |  |  |  |  |  118|      0|    } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (118:13): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   89|      0|            destructor dealloc = Py_TYPE(op)->tp_dealloc; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   90|      0|            (*dealloc)(op); \
  |  |  |  |   91|      0|        } \
  |  |  |  |   92|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (92:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|        } \
  |  |   74|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (74:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  613|      0|    return 0;
  614|     20|}
ceval.c:get_exception_handler:
  459|    216|{
  460|    216|    unsigned char *start = (unsigned char *)PyBytes_AS_STRING(code->co_exceptiontable);
  ------------------
  |  |   27|    216|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    216|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  461|    216|    unsigned char *end = start + PyBytes_GET_SIZE(code->co_exceptiontable);
  ------------------
  |  |   33|    216|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|    216|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    216|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  462|       |    /* Invariants:
  463|       |     * start_table == end_table OR
  464|       |     * start_table points to a legal entry and end_table points
  465|       |     * beyond the table or to a legal entry that is after index.
  466|       |     */
  467|    216|    if (end - start > MAX_LINEAR_SEARCH) {
  ------------------
  |  |  455|    216|#define MAX_LINEAR_SEARCH 40
  ------------------
  |  Branch (467:9): [True: 94, False: 122]
  ------------------
  468|     94|        int offset;
  469|     94|        parse_varint(start, &offset);
  470|     94|        if (offset > index) {
  ------------------
  |  Branch (470:13): [True: 0, False: 94]
  ------------------
  471|      0|            return 0;
  472|      0|        }
  473|    150|        do {
  474|    150|            unsigned char * mid = start + ((end-start)>>1);
  475|    150|            mid = scan_back_to_entry_start(mid);
  476|    150|            parse_varint(mid, &offset);
  477|    150|            if (offset > index) {
  ------------------
  |  Branch (477:17): [True: 134, False: 16]
  ------------------
  478|    134|                end = mid;
  479|    134|            }
  480|     16|            else {
  481|     16|                start = mid;
  482|     16|            }
  483|       |
  484|    150|        } while (end - start > MAX_LINEAR_SEARCH);
  ------------------
  |  |  455|    150|#define MAX_LINEAR_SEARCH 40
  ------------------
  |  Branch (484:18): [True: 56, False: 94]
  ------------------
  485|     94|    }
  486|    216|    unsigned char *scan = start;
  487|    326|    while (scan < end) {
  ------------------
  |  Branch (487:12): [True: 310, False: 16]
  ------------------
  488|    310|        int start_offset, size;
  489|    310|        scan = parse_varint(scan, &start_offset);
  490|    310|        if (start_offset > index) {
  ------------------
  |  Branch (490:13): [True: 12, False: 298]
  ------------------
  491|     12|            break;
  492|     12|        }
  493|    298|        scan = parse_varint(scan, &size);
  494|    298|        if (start_offset + size > index) {
  ------------------
  |  Branch (494:13): [True: 188, False: 110]
  ------------------
  495|    188|            scan = parse_varint(scan, handler);
  496|    188|            int depth_and_lasti;
  497|    188|            parse_varint(scan, &depth_and_lasti);
  498|    188|            *level = depth_and_lasti >> 1;
  499|    188|            *lasti = depth_and_lasti & 1;
  500|    188|            return 1;
  501|    188|        }
  502|    110|        scan = skip_to_next_entry(scan, end);
  503|    110|    }
  504|     28|    return 0;
  505|    216|}
ceval.c:scan_back_to_entry_start:
  441|    150|scan_back_to_entry_start(unsigned char *p) {
  442|    394|    for (; (p[0]&128) == 0; p--);
  ------------------
  |  Branch (442:12): [True: 244, False: 150]
  ------------------
  443|    150|    return p;
  444|    150|}
ceval.c:skip_to_next_entry:
  447|    110|skip_to_next_entry(unsigned char *p, unsigned char *end) {
  448|    428|    while (p < end && ((p[0] & 128) == 0)) {
  ------------------
  |  Branch (448:12): [True: 422, False: 6]
  |  Branch (448:23): [True: 318, False: 104]
  ------------------
  449|    318|        p++;
  450|    318|    }
  451|    110|    return p;
  452|    110|}
ceval.c:monitor_unwind:
  433|     28|{
  434|     28|    if (no_tools_for_local_event(tstate, frame, PY_MONITORING_EVENT_PY_UNWIND)) {
  ------------------
  |  |   34|     28|#define PY_MONITORING_EVENT_PY_UNWIND 13
  ------------------
  |  Branch (434:9): [True: 28, False: 0]
  ------------------
  435|     28|        return;
  436|     28|    }
  437|      0|    do_monitor_exc(tstate, frame, instr, PY_MONITORING_EVENT_PY_UNWIND);
  ------------------
  |  |   34|      0|#define PY_MONITORING_EVENT_PY_UNWIND 13
  ------------------
  438|      0|}
ceval.c:monitor_handled:
  384|    188|{
  385|    188|    if (no_tools_for_local_event(tstate, frame, PY_MONITORING_EVENT_EXCEPTION_HANDLED)) {
  ------------------
  |  |   33|    188|#define PY_MONITORING_EVENT_EXCEPTION_HANDLED 12
  ------------------
  |  Branch (385:9): [True: 188, False: 0]
  ------------------
  386|    188|        return 0;
  387|    188|    }
  388|      0|    return _Py_call_instrumentation_arg(tstate, PY_MONITORING_EVENT_EXCEPTION_HANDLED, frame, instr, exc);
  ------------------
  |  |   33|      0|#define PY_MONITORING_EVENT_EXCEPTION_HANDLED 12
  ------------------
  389|    188|}
ceval.c:no_tools_for_local_event:
  369|    434|{
  370|    434|    assert(event < _PY_MONITORING_UNGROUPED_EVENTS);
  ------------------
  |  Branch (370:5): [True: 434, False: 0]
  ------------------
  371|    434|    _PyCoMonitoringData *data = _PyFrame_GetCode(frame)->_co_monitoring;
  372|    434|    if (data) {
  ------------------
  |  Branch (372:9): [True: 0, False: 434]
  ------------------
  373|      0|        return data->active_monitors.tools[event] == 0;
  374|      0|    }
  375|    434|    else {
  376|    434|        return no_tools_for_global_event(tstate, event);
  377|    434|    }
  378|    434|}
ceval.c:no_tools_for_global_event:
  363|    434|{
  364|    434|    return tstate->interp->monitors.tools[event] == 0;
  365|    434|}

_PyEval_InitGIL:
  504|      2|{
  505|      2|    assert(tstate->interp->ceval.gil == NULL);
  ------------------
  |  Branch (505:5): [True: 2, False: 0]
  ------------------
  506|      2|    if (!own_gil) {
  ------------------
  |  Branch (506:9): [True: 0, False: 2]
  ------------------
  507|       |        /* The interpreter will share the main interpreter's instead. */
  508|      0|        PyInterpreterState *main_interp = _PyInterpreterState_Main();
  509|      0|        assert(tstate->interp != main_interp);
  ------------------
  |  Branch (509:9): [True: 0, False: 0]
  ------------------
  510|      0|        struct _gil_runtime_state *gil = main_interp->ceval.gil;
  511|      0|        init_shared_gil(tstate->interp, gil);
  512|      0|        assert(!current_thread_holds_gil(gil, tstate));
  ------------------
  |  Branch (512:9): [True: 0, False: 0]
  ------------------
  513|      0|    }
  514|      2|    else {
  515|      2|        PyThread_init_thread();
  516|      2|        init_own_gil(tstate->interp, &tstate->interp->_gil);
  517|      2|    }
  518|       |
  519|       |    // Lock the GIL and mark the current thread as attached.
  520|      2|    _PyThreadState_Attach(tstate);
  521|      2|}
_PyEval_FiniGIL:
  525|      2|{
  526|      2|    struct _gil_runtime_state *gil = interp->ceval.gil;
  527|      2|    if (gil == NULL) {
  ------------------
  |  Branch (527:9): [True: 2, False: 0]
  ------------------
  528|       |        /* It was already finalized (or hasn't been initialized yet). */
  529|      2|        assert(!interp->ceval.own_gil);
  ------------------
  |  Branch (529:9): [True: 2, False: 0]
  ------------------
  530|      2|        return;
  531|      2|    }
  532|      0|    else if (!interp->ceval.own_gil) {
  ------------------
  |  Branch (532:14): [True: 0, False: 0]
  ------------------
  533|       |#ifdef Py_DEBUG
  534|       |        PyInterpreterState *main_interp = _PyInterpreterState_Main();
  535|       |        assert(main_interp != NULL && interp != main_interp);
  536|       |        assert(interp->ceval.gil == main_interp->ceval.gil);
  537|       |#endif
  538|      0|        interp->ceval.gil = NULL;
  539|      0|        return;
  540|      0|    }
  541|       |
  542|      0|    if (!gil_created(gil)) {
  ------------------
  |  Branch (542:9): [True: 0, False: 0]
  ------------------
  543|       |        /* First Py_InitializeFromConfig() call: the GIL doesn't exist
  544|       |           yet: do nothing. */
  545|      0|        return;
  546|      0|    }
  547|       |
  548|      0|    destroy_gil(gil);
  549|      0|    assert(!gil_created(gil));
  ------------------
  |  Branch (549:5): [True: 0, False: 0]
  ------------------
  550|      0|    interp->ceval.gil = NULL;
  551|      0|}
_PyEval_AcquireLock:
  590|    656|{
  591|    656|    _Py_EnsureTstateNotNULL(tstate);
  ------------------
  |  |  196|    656|    _Py_EnsureFuncTstateNotNULL(__func__, (tstate))
  ------------------
  592|    656|    take_gil(tstate);
  593|    656|}
_PyEval_ReleaseLock:
  599|    654|{
  600|    654|    assert(tstate != NULL);
  ------------------
  |  Branch (600:5): [True: 654, False: 0]
  ------------------
  601|    654|    assert(tstate->interp == interp);
  ------------------
  |  Branch (601:5): [True: 654, False: 0]
  ------------------
  602|    654|    drop_gil(interp, tstate, final_release);
  603|    654|}
PyEval_SaveThread:
  644|    654|{
  645|    654|    PyThreadState *tstate = _PyThreadState_GET();
  646|    654|    _PyThreadState_Detach(tstate);
  647|    654|    return tstate;
  648|    654|}
PyEval_RestoreThread:
  652|    654|{
  653|       |#ifdef MS_WINDOWS
  654|       |    int err = GetLastError();
  655|       |#endif
  656|       |
  657|    654|    _Py_EnsureTstateNotNULL(tstate);
  ------------------
  |  |  196|    654|    _Py_EnsureFuncTstateNotNULL(__func__, (tstate))
  ------------------
  658|    654|    _PyThreadState_Attach(tstate);
  659|       |
  660|       |#ifdef MS_WINDOWS
  661|       |    SetLastError(err);
  662|       |#endif
  663|    654|}
_PyEval_InitState:
 1075|      2|{
 1076|      2|    _gil_initialize(&interp->_gil);
 1077|      2|}
_PyRunRemoteDebugger:
 1259|  2.00k|{
 1260|  2.00k|    const PyConfig *config = _PyInterpreterState_GetConfig(tstate->interp);
 1261|  2.00k|    if (config->remote_debug == 1
  ------------------
  |  Branch (1261:9): [True: 2.00k, False: 0]
  ------------------
 1262|  2.00k|         && tstate->remote_debugger_support.debugger_pending_call == 1)
  ------------------
  |  Branch (1262:13): [True: 0, False: 2.00k]
  ------------------
 1263|      0|    {
 1264|      0|        tstate->remote_debugger_support.debugger_pending_call = 0;
 1265|       |
 1266|       |        // Immediately make a copy in case of a race with another debugger
 1267|       |        // process that's trying to write to the buffer. At least this way
 1268|       |        // we'll be internally consistent: what we audit is what we run.
 1269|      0|        const size_t pathsz
 1270|      0|            = sizeof(tstate->remote_debugger_support.debugger_script_path);
 1271|       |
 1272|      0|        char *path = PyMem_Malloc(pathsz);
 1273|      0|        if (path) {
  ------------------
  |  Branch (1273:13): [True: 0, False: 0]
  ------------------
 1274|       |            // And don't assume the debugger correctly null terminated it.
 1275|      0|            memcpy(
 1276|      0|                path,
 1277|      0|                tstate->remote_debugger_support.debugger_script_path,
 1278|      0|                pathsz);
 1279|      0|            path[pathsz - 1] = '\0';
 1280|      0|            if (*path) {
  ------------------
  |  Branch (1280:17): [True: 0, False: 0]
  ------------------
 1281|      0|                PyObject *path_obj = PyUnicode_DecodeFSDefault(path);
 1282|      0|                if (path_obj == NULL) {
  ------------------
  |  Branch (1282:21): [True: 0, False: 0]
  ------------------
 1283|      0|                    PyErr_FormatUnraisable("Can't decode debugger script");
 1284|      0|                }
 1285|      0|                else {
 1286|      0|                    run_remote_debugger_script(path_obj);
 1287|      0|                    Py_DECREF(path_obj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1288|      0|                }
 1289|      0|            }
 1290|      0|            PyMem_Free(path);
 1291|      0|        }
 1292|      0|    }
 1293|  2.00k|    return 0;
 1294|  2.00k|}
_Py_HandlePending:
 1358|      4|{
 1359|      4|    uintptr_t breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker);
 1360|       |
 1361|       |    /* Stop-the-world */
 1362|      4|    if ((breaker & _PY_EVAL_PLEASE_STOP_BIT) != 0) {
  ------------------
  |  |  351|      4|#define _PY_EVAL_PLEASE_STOP_BIT (1U << 5)
  ------------------
  |  Branch (1362:9): [True: 0, False: 4]
  ------------------
 1363|      0|        _Py_unset_eval_breaker_bit(tstate, _PY_EVAL_PLEASE_STOP_BIT);
  ------------------
  |  |  351|      0|#define _PY_EVAL_PLEASE_STOP_BIT (1U << 5)
  ------------------
 1364|      0|        _PyThreadState_Suspend(tstate);
 1365|       |
 1366|       |        /* The attach blocks until the stop-the-world event is complete. */
 1367|      0|        _PyThreadState_Attach(tstate);
 1368|      0|    }
 1369|       |
 1370|       |    /* Pending signals */
 1371|      4|    if ((breaker & _PY_SIGNALS_PENDING_BIT) != 0) {
  ------------------
  |  |  347|      4|#define _PY_SIGNALS_PENDING_BIT (1U << 1)
  ------------------
  |  Branch (1371:9): [True: 0, False: 4]
  ------------------
 1372|      0|        if (handle_signals(tstate) != 0) {
  ------------------
  |  Branch (1372:13): [True: 0, False: 0]
  ------------------
 1373|      0|            return -1;
 1374|      0|        }
 1375|      0|    }
 1376|       |
 1377|       |    /* Pending calls */
 1378|      4|    if ((breaker & _PY_CALLS_TO_DO_BIT) != 0) {
  ------------------
  |  |  348|      4|#define _PY_CALLS_TO_DO_BIT (1U << 2)
  ------------------
  |  Branch (1378:9): [True: 0, False: 4]
  ------------------
 1379|      0|        if (make_pending_calls(tstate) != 0) {
  ------------------
  |  Branch (1379:13): [True: 0, False: 0]
  ------------------
 1380|      0|            return -1;
 1381|      0|        }
 1382|      0|    }
 1383|       |
 1384|       |#ifdef Py_GIL_DISABLED
 1385|       |    /* Objects with refcounts to merge */
 1386|       |    if ((breaker & _PY_EVAL_EXPLICIT_MERGE_BIT) != 0) {
 1387|       |        _Py_unset_eval_breaker_bit(tstate, _PY_EVAL_EXPLICIT_MERGE_BIT);
 1388|       |        _Py_brc_merge_refcounts(tstate);
 1389|       |    }
 1390|       |    /* Process deferred memory frees held by QSBR */
 1391|       |    if (_Py_qsbr_should_process(((_PyThreadStateImpl *)tstate)->qsbr)) {
 1392|       |        _PyMem_ProcessDelayed(tstate);
 1393|       |    }
 1394|       |#endif
 1395|       |
 1396|       |    /* GC scheduled to run */
 1397|      4|    if ((breaker & _PY_GC_SCHEDULED_BIT) != 0) {
  ------------------
  |  |  350|      4|#define _PY_GC_SCHEDULED_BIT (1U << 4)
  ------------------
  |  Branch (1397:9): [True: 4, False: 0]
  ------------------
 1398|      4|        _Py_unset_eval_breaker_bit(tstate, _PY_GC_SCHEDULED_BIT);
  ------------------
  |  |  350|      4|#define _PY_GC_SCHEDULED_BIT (1U << 4)
  ------------------
 1399|      4|        _Py_RunGC(tstate);
 1400|       |#ifdef _Py_TIER2
 1401|       |        _Py_ClearExecutorDeletionList(tstate->interp);
 1402|       |#endif
 1403|      4|    }
 1404|       |
 1405|       |#ifdef _Py_TIER2
 1406|       |    if ((breaker & _PY_EVAL_JIT_INVALIDATE_COLD_BIT) != 0) {
 1407|       |        _Py_unset_eval_breaker_bit(tstate, _PY_EVAL_JIT_INVALIDATE_COLD_BIT);
 1408|       |        _Py_Executors_InvalidateCold(tstate->interp);
 1409|       |        tstate->interp->executor_creation_counter = JIT_CLEANUP_THRESHOLD;
 1410|       |        _Py_ClearExecutorDeletionList(tstate->interp);
 1411|       |    }
 1412|       |#endif
 1413|       |
 1414|       |    /* GIL drop request */
 1415|      4|    if ((breaker & _PY_GIL_DROP_REQUEST_BIT) != 0) {
  ------------------
  |  |  346|      4|#define _PY_GIL_DROP_REQUEST_BIT (1U << 0)
  ------------------
  |  Branch (1415:9): [True: 0, False: 4]
  ------------------
 1416|       |        /* Give another thread a chance */
 1417|      0|        _PyThreadState_Detach(tstate);
 1418|       |
 1419|       |        /* Other threads may run now */
 1420|       |
 1421|      0|        _PyThreadState_Attach(tstate);
 1422|      0|    }
 1423|       |
 1424|       |    /* Check for asynchronous exception. */
 1425|      4|    if ((breaker & _PY_ASYNC_EXCEPTION_BIT) != 0) {
  ------------------
  |  |  349|      4|#define _PY_ASYNC_EXCEPTION_BIT (1U << 3)
  ------------------
  |  Branch (1425:9): [True: 0, False: 4]
  ------------------
 1426|      0|        if (_PyEval_RaiseAsyncExc(tstate) < 0) {
  ------------------
  |  Branch (1426:13): [True: 0, False: 0]
  ------------------
 1427|      0|            return -1;
 1428|      0|        }
 1429|      0|    }
 1430|       |
 1431|      4|#if defined(Py_REMOTE_DEBUG) && defined(Py_SUPPORTS_REMOTE_DEBUG)
 1432|      4|    _PyRunRemoteDebugger(tstate);
 1433|      4|#endif
 1434|       |
 1435|      4|    return 0;
 1436|      4|}
ceval_gil.c:gil_created:
  156|    660|{
  157|    660|    if (gil == NULL) {
  ------------------
  |  Branch (157:9): [True: 0, False: 660]
  ------------------
  158|      0|        return 0;
  159|      0|    }
  160|    660|    return (_Py_atomic_load_int_acquire(&gil->locked) >= 0);
  161|    660|}
ceval_gil.c:init_own_gil:
  490|      2|{
  491|      2|    assert(!gil_created(gil));
  ------------------
  |  Branch (491:5): [True: 2, False: 0]
  ------------------
  492|       |#ifdef Py_GIL_DISABLED
  493|       |    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
  494|       |    gil->enabled = config->enable_gil == _PyConfig_GIL_ENABLE ? INT_MAX : 0;
  495|       |#endif
  496|      2|    create_gil(gil);
  497|      2|    assert(gil_created(gil));
  ------------------
  |  Branch (497:5): [True: 2, False: 0]
  ------------------
  498|      2|    interp->ceval.gil = gil;
  499|      2|    interp->ceval.own_gil = 1;
  500|      2|}
ceval_gil.c:create_gil:
  164|      2|{
  165|      2|    MUTEX_INIT(gil->mutex);
  ------------------
  |  |  111|      2|    if (PyMUTEX_INIT(&(mut))) { \
  |  |  ------------------
  |  |  |  |   57|      2|#define PyMUTEX_INIT(mut)       pthread_mutex_init((mut), NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (57:33): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|      2|        Py_FatalError("PyMUTEX_INIT(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  166|      2|#ifdef FORCE_SWITCHING
  167|      2|    MUTEX_INIT(gil->switch_mutex);
  ------------------
  |  |  111|      2|    if (PyMUTEX_INIT(&(mut))) { \
  |  |  ------------------
  |  |  |  |   57|      2|#define PyMUTEX_INIT(mut)       pthread_mutex_init((mut), NULL)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (57:33): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|      2|        Py_FatalError("PyMUTEX_INIT(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  168|      2|#endif
  169|      2|    COND_INIT(gil->cond);
  ------------------
  |  |  124|      2|    if (PyCOND_INIT(&(cond))) { \
  |  |  ------------------
  |  |  |  |   62|      2|#define PyCOND_INIT(cond)       _PyThread_cond_init(cond)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (62:33): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  125|      2|        Py_FatalError("PyCOND_INIT(" #cond ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  170|      2|#ifdef FORCE_SWITCHING
  171|      2|    COND_INIT(gil->switch_cond);
  ------------------
  |  |  124|      2|    if (PyCOND_INIT(&(cond))) { \
  |  |  ------------------
  |  |  |  |   62|      2|#define PyCOND_INIT(cond)       _PyThread_cond_init(cond)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (62:33): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  125|      2|        Py_FatalError("PyCOND_INIT(" #cond ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  172|      2|#endif
  173|      2|    _Py_atomic_store_ptr_relaxed(&gil->last_holder, 0);
  174|      2|    _Py_ANNOTATE_RWLOCK_CREATE(&gil->locked);
  175|      2|    _Py_atomic_store_int_release(&gil->locked, 0);
  176|      2|}
ceval_gil.c:take_gil:
  287|    656|{
  288|    656|    int err = errno;
  289|       |
  290|    656|    assert(tstate != NULL);
  ------------------
  |  Branch (290:5): [True: 656, False: 0]
  ------------------
  291|       |    /* We shouldn't be using a thread state that isn't viable any more. */
  292|       |    // XXX It may be more correct to check tstate->_status.finalizing.
  293|       |    // XXX assert(!tstate->_status.cleared);
  294|       |
  295|    656|    if (_PyThreadState_MustExit(tstate)) {
  ------------------
  |  Branch (295:9): [True: 0, False: 656]
  ------------------
  296|       |        /* bpo-39877: If Py_Finalize() has been called and tstate is not the
  297|       |           thread which called Py_Finalize(), this thread cannot continue.
  298|       |
  299|       |           This code path can be reached by a daemon thread after Py_Finalize()
  300|       |           completes.
  301|       |
  302|       |           This used to call a *thread_exit API, but that was not safe as it
  303|       |           lacks stack unwinding and local variable destruction important to
  304|       |           C++. gh-87135: The best that can be done is to hang the thread as
  305|       |           the public APIs calling this have no error reporting mechanism (!).
  306|       |         */
  307|      0|        _PyThreadState_HangThread(tstate);
  308|      0|    }
  309|       |
  310|    656|    assert(_PyThreadState_CheckConsistency(tstate));
  ------------------
  |  Branch (310:5): [True: 656, False: 0]
  ------------------
  311|    656|    PyInterpreterState *interp = tstate->interp;
  312|    656|    struct _gil_runtime_state *gil = interp->ceval.gil;
  313|       |#ifdef Py_GIL_DISABLED
  314|       |    if (!_Py_atomic_load_int_relaxed(&gil->enabled)) {
  315|       |        return;
  316|       |    }
  317|       |#endif
  318|       |
  319|       |    /* Check that _PyEval_InitThreads() was called to create the lock */
  320|    656|    assert(gil_created(gil));
  ------------------
  |  Branch (320:5): [True: 656, False: 0]
  ------------------
  321|       |
  322|  1.31k|    MUTEX_LOCK(gil->mutex);
  ------------------
  |  |  117|    656|    if (PyMUTEX_LOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   59|    656|#define PyMUTEX_LOCK(mut)       pthread_mutex_lock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (59:33): [True: 0, False: 656]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  118|    656|        Py_FatalError("PyMUTEX_LOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  323|       |
  324|  1.31k|    tstate->gil_requested = 1;
  325|       |
  326|  1.31k|    int drop_requested = 0;
  327|  1.31k|    while (_Py_atomic_load_int_relaxed(&gil->locked)) {
  ------------------
  |  Branch (327:12): [True: 0, False: 656]
  ------------------
  328|      0|        unsigned long saved_switchnum = gil->switch_number;
  329|       |
  330|      0|        unsigned long interval = _Py_atomic_load_ulong_relaxed(&gil->interval);
  ------------------
  |  |  615|      0|    _Py_atomic_load_uint64_relaxed((uint64_t *)p)
  ------------------
  331|      0|        if (interval < 1) {
  ------------------
  |  Branch (331:13): [True: 0, False: 0]
  ------------------
  332|      0|            interval = 1;
  333|      0|        }
  334|      0|        int timed_out = 0;
  335|      0|        COND_TIMED_WAIT(gil->cond, gil->mutex, interval, timed_out);
  ------------------
  |  |  136|      0|    { \
  |  |  137|      0|        int r = PyCOND_TIMEDWAIT(&(cond), &(mut), (microseconds)); \
  |  |  138|      0|        if (r < 0) \
  |  |  ------------------
  |  |  |  Branch (138:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  139|      0|            Py_FatalError("PyCOND_WAIT(" #cond ") failed"); \
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  |  |  140|      0|        if (r) /* 1 == timeout, 2 == impl. can't say, so assume timeout */ \
  |  |  ------------------
  |  |  |  Branch (140:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  141|      0|            timeout_result = 1; \
  |  |  142|      0|        else \
  |  |  143|      0|            timeout_result = 0; \
  |  |  144|      0|    } \
  ------------------
  336|       |
  337|       |        /* If we timed out and no switch occurred in the meantime, it is time
  338|       |           to ask the GIL-holding thread to drop it. */
  339|      0|        if (timed_out &&
  ------------------
  |  Branch (339:13): [True: 0, False: 0]
  ------------------
  340|      0|            _Py_atomic_load_int_relaxed(&gil->locked) &&
  ------------------
  |  Branch (340:13): [True: 0, False: 0]
  ------------------
  341|      0|            gil->switch_number == saved_switchnum)
  ------------------
  |  Branch (341:13): [True: 0, False: 0]
  ------------------
  342|      0|        {
  343|      0|            PyThreadState *holder_tstate =
  344|      0|                (PyThreadState*)_Py_atomic_load_ptr_relaxed(&gil->last_holder);
  345|      0|            if (_PyThreadState_MustExit(tstate)) {
  ------------------
  |  Branch (345:17): [True: 0, False: 0]
  ------------------
  346|      0|                MUTEX_UNLOCK(gil->mutex);
  ------------------
  |  |  120|      0|    if (PyMUTEX_UNLOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   60|      0|#define PyMUTEX_UNLOCK(mut)     pthread_mutex_unlock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (60:33): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|      0|        Py_FatalError("PyMUTEX_UNLOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  347|       |                // gh-96387: If the loop requested a drop request in a previous
  348|       |                // iteration, reset the request. Otherwise, drop_gil() can
  349|       |                // block forever waiting for the thread which exited. Drop
  350|       |                // requests made by other threads are also reset: these threads
  351|       |                // may have to request again a drop request (iterate one more
  352|       |                // time).
  353|      0|                if (drop_requested) {
  ------------------
  |  Branch (353:21): [True: 0, False: 0]
  ------------------
  354|      0|                    _Py_unset_eval_breaker_bit(holder_tstate, _PY_GIL_DROP_REQUEST_BIT);
  ------------------
  |  |  346|      0|#define _PY_GIL_DROP_REQUEST_BIT (1U << 0)
  ------------------
  355|      0|                }
  356|       |                // gh-87135: hang the thread as *thread_exit() is not a safe
  357|       |                // API. It lacks stack unwind and local variable destruction.
  358|      0|                _PyThreadState_HangThread(tstate);
  359|      0|            }
  360|      0|            assert(_PyThreadState_CheckConsistency(tstate));
  ------------------
  |  Branch (360:13): [True: 0, False: 0]
  ------------------
  361|       |
  362|      0|            _Py_set_eval_breaker_bit(holder_tstate, _PY_GIL_DROP_REQUEST_BIT);
  ------------------
  |  |  346|      0|#define _PY_GIL_DROP_REQUEST_BIT (1U << 0)
  ------------------
  363|      0|            drop_requested = 1;
  364|      0|        }
  365|      0|    }
  366|       |
  367|       |#ifdef Py_GIL_DISABLED
  368|       |    if (!_Py_atomic_load_int_relaxed(&gil->enabled)) {
  369|       |        // Another thread disabled the GIL between our check above and
  370|       |        // now. Don't take the GIL, signal any other waiting threads, and
  371|       |        // return.
  372|       |        COND_SIGNAL(gil->cond);
  373|       |        MUTEX_UNLOCK(gil->mutex);
  374|       |        return;
  375|       |    }
  376|       |#endif
  377|       |
  378|    656|#ifdef FORCE_SWITCHING
  379|       |    /* This mutex must be taken before modifying gil->last_holder:
  380|       |       see drop_gil(). */
  381|  1.31k|    MUTEX_LOCK(gil->switch_mutex);
  ------------------
  |  |  117|    656|    if (PyMUTEX_LOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   59|    656|#define PyMUTEX_LOCK(mut)       pthread_mutex_lock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (59:33): [True: 0, False: 656]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  118|    656|        Py_FatalError("PyMUTEX_LOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  382|  1.31k|#endif
  383|       |    /* We now hold the GIL */
  384|  1.31k|    _Py_atomic_store_int_relaxed(&gil->locked, 1);
  385|  1.31k|    _Py_ANNOTATE_RWLOCK_ACQUIRED(&gil->locked, /*is_write=*/1);
  386|       |
  387|  1.31k|    if (tstate != (PyThreadState*)_Py_atomic_load_ptr_relaxed(&gil->last_holder)) {
  ------------------
  |  Branch (387:9): [True: 2, False: 654]
  ------------------
  388|      2|        _Py_atomic_store_ptr_relaxed(&gil->last_holder, tstate);
  389|      2|        ++gil->switch_number;
  390|      2|    }
  391|       |
  392|  1.31k|#ifdef FORCE_SWITCHING
  393|  1.31k|    COND_SIGNAL(gil->switch_cond);
  ------------------
  |  |  130|    656|    if (PyCOND_SIGNAL(&(cond))) { \
  |  |  ------------------
  |  |  |  |   64|    656|#define PyCOND_SIGNAL(cond)     pthread_cond_signal(cond)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:33): [True: 0, False: 656]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  131|    656|        Py_FatalError("PyCOND_SIGNAL(" #cond ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  394|    656|    MUTEX_UNLOCK(gil->switch_mutex);
  ------------------
  |  |  120|    656|    if (PyMUTEX_UNLOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   60|    656|#define PyMUTEX_UNLOCK(mut)     pthread_mutex_unlock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (60:33): [True: 0, False: 656]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|    656|        Py_FatalError("PyMUTEX_UNLOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  395|    656|#endif
  396|       |
  397|    656|    if (_PyThreadState_MustExit(tstate)) {
  ------------------
  |  Branch (397:9): [True: 0, False: 656]
  ------------------
  398|       |        /* bpo-36475: If Py_Finalize() has been called and tstate is not
  399|       |           the thread which called Py_Finalize(), gh-87135: hang the
  400|       |           thread.
  401|       |
  402|       |           This code path can be reached by a daemon thread which was waiting
  403|       |           in take_gil() while the main thread called
  404|       |           wait_for_thread_shutdown() from Py_Finalize(). */
  405|      0|        MUTEX_UNLOCK(gil->mutex);
  ------------------
  |  |  120|      0|    if (PyMUTEX_UNLOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   60|      0|#define PyMUTEX_UNLOCK(mut)     pthread_mutex_unlock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (60:33): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|      0|        Py_FatalError("PyMUTEX_UNLOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  406|       |        /* tstate could be a dangling pointer, so don't pass it to
  407|       |           drop_gil(). */
  408|      0|        drop_gil(interp, NULL, 1);
  409|      0|        _PyThreadState_HangThread(tstate);
  410|      0|    }
  411|    656|    assert(_PyThreadState_CheckConsistency(tstate));
  ------------------
  |  Branch (411:5): [True: 656, False: 0]
  ------------------
  412|       |
  413|    656|    tstate->gil_requested = 0;
  414|    656|    tstate->holds_gil = 1;
  415|    656|    _Py_unset_eval_breaker_bit(tstate, _PY_GIL_DROP_REQUEST_BIT);
  ------------------
  |  |  346|    656|#define _PY_GIL_DROP_REQUEST_BIT (1U << 0)
  ------------------
  416|    656|    update_eval_breaker_for_thread(interp, tstate);
  417|       |
  418|    656|    MUTEX_UNLOCK(gil->mutex);
  ------------------
  |  |  120|    656|    if (PyMUTEX_UNLOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   60|    656|#define PyMUTEX_UNLOCK(mut)     pthread_mutex_unlock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (60:33): [True: 0, False: 656]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|    656|        Py_FatalError("PyMUTEX_UNLOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  419|       |
  420|       |    errno = err;
  421|    656|    return;
  422|    656|}
ceval_gil.c:update_eval_breaker_for_thread:
   74|    656|{
   75|       |#ifdef Py_GIL_DISABLED
   76|       |    // Free-threaded builds eagerly update the eval_breaker on *all* threads as
   77|       |    // needed, so this function doesn't apply.
   78|       |    return;
   79|       |#endif
   80|       |
   81|    656|    int32_t npending = _Py_atomic_load_int32_relaxed(
   82|    656|        &interp->ceval.pending.npending);
   83|    656|    if (npending) {
  ------------------
  |  Branch (83:9): [True: 0, False: 656]
  ------------------
   84|      0|        _Py_set_eval_breaker_bit(tstate, _PY_CALLS_TO_DO_BIT);
  ------------------
  |  |  348|      0|#define _PY_CALLS_TO_DO_BIT (1U << 2)
  ------------------
   85|      0|    }
   86|    656|    else if (_Py_IsMainThread()) {
  ------------------
  |  Branch (86:14): [True: 656, False: 0]
  ------------------
   87|    656|        npending = _Py_atomic_load_int32_relaxed(
   88|    656|            &_PyRuntime.ceval.pending_mainthread.npending);
   89|    656|        if (npending) {
  ------------------
  |  Branch (89:13): [True: 0, False: 656]
  ------------------
   90|      0|            _Py_set_eval_breaker_bit(tstate, _PY_CALLS_TO_DO_BIT);
  ------------------
  |  |  348|      0|#define _PY_CALLS_TO_DO_BIT (1U << 2)
  ------------------
   91|      0|        }
   92|    656|    }
   93|       |
   94|       |    // _PY_CALLS_TO_DO_BIT was derived from other state above, so the only bits
   95|       |    // we copy from our interpreter's state are the instrumentation version.
   96|    656|    copy_eval_breaker_bits(&interp->ceval.instrumentation_version,
   97|    656|                           &tstate->eval_breaker,
   98|    656|                           ~_PY_EVAL_EVENTS_MASK);
  ------------------
  |  |  357|    656|#define _PY_EVAL_EVENTS_MASK ((1 << _PY_EVAL_EVENTS_BITS)-1)
  |  |  ------------------
  |  |  |  |  356|    656|#define _PY_EVAL_EVENTS_BITS 8
  |  |  ------------------
  ------------------
   99|    656|}
ceval_gil.c:copy_eval_breaker_bits:
   56|    656|{
   57|    656|    uintptr_t from_bits = _Py_atomic_load_uintptr_relaxed(from) & mask;
   58|    656|    uintptr_t old_value = _Py_atomic_load_uintptr_relaxed(to);
   59|    656|    uintptr_t to_bits = old_value & mask;
   60|    656|    if (from_bits == to_bits) {
  ------------------
  |  Branch (60:9): [True: 656, False: 0]
  ------------------
   61|    656|        return;
   62|    656|    }
   63|       |
   64|      0|    uintptr_t new_value;
   65|      0|    do {
   66|      0|        new_value = (old_value & ~mask) | from_bits;
   67|      0|    } while (!_Py_atomic_compare_exchange_uintptr(to, &old_value, new_value));
  ------------------
  |  Branch (67:14): [True: 0, False: 0]
  ------------------
   68|      0|}
ceval_gil.c:drop_gil:
  218|    654|{
  219|    654|    struct _ceval_state *ceval = &interp->ceval;
  220|       |    /* If final_release is true, the caller is indicating that we're releasing
  221|       |       the GIL for the last time in this thread.  This is particularly
  222|       |       relevant when the current thread state is finalizing or its
  223|       |       interpreter is finalizing (either may be in an inconsistent
  224|       |       state).  In that case the current thread will definitely
  225|       |       never try to acquire the GIL again. */
  226|       |    // XXX It may be more correct to check tstate->_status.finalizing.
  227|       |    // XXX assert(final_release || !tstate->_status.cleared);
  228|       |
  229|    654|    assert(final_release || tstate != NULL);
  ------------------
  |  Branch (229:5): [True: 0, False: 654]
  |  Branch (229:5): [True: 654, False: 0]
  ------------------
  230|    654|    struct _gil_runtime_state *gil = ceval->gil;
  231|       |#ifdef Py_GIL_DISABLED
  232|       |    // Check if we have the GIL before dropping it. tstate will be NULL if
  233|       |    // take_gil() detected that this thread has been destroyed, in which case
  234|       |    // we know we have the GIL.
  235|       |    if (tstate != NULL && !tstate->holds_gil) {
  236|       |        return;
  237|       |    }
  238|       |#endif
  239|    654|    if (!_Py_atomic_load_int_relaxed(&gil->locked)) {
  ------------------
  |  Branch (239:9): [True: 0, False: 654]
  ------------------
  240|      0|        Py_FatalError("drop_gil: GIL is not locked");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  241|      0|    }
  242|       |
  243|    654|    if (!final_release) {
  ------------------
  |  Branch (243:9): [True: 654, False: 0]
  ------------------
  244|       |        /* Sub-interpreter support: threads might have been switched
  245|       |           under our feet using PyThreadState_Swap(). Fix the GIL last
  246|       |           holder variable so that our heuristics work. */
  247|    654|        _Py_atomic_store_ptr_relaxed(&gil->last_holder, tstate);
  248|    654|    }
  249|       |
  250|    654|    drop_gil_impl(tstate, gil);
  251|       |
  252|    654|#ifdef FORCE_SWITCHING
  253|       |    /* We might be releasing the GIL for the last time in this thread.  In that
  254|       |       case there's a possible race with tstate->interp getting deleted after
  255|       |       gil->mutex is unlocked and before the following code runs, leading to a
  256|       |       crash.  We can use final_release to indicate the thread is done with the
  257|       |       GIL, and that's the only time we might delete the interpreter.  See
  258|       |       https://github.com/python/cpython/issues/104341. */
  259|    654|    if (!final_release &&
  ------------------
  |  Branch (259:9): [True: 654, False: 0]
  ------------------
  260|    654|        _Py_eval_breaker_bit_is_set(tstate, _PY_GIL_DROP_REQUEST_BIT)) {
  ------------------
  |  |  346|    654|#define _PY_GIL_DROP_REQUEST_BIT (1U << 0)
  ------------------
  |  Branch (260:9): [True: 0, False: 654]
  ------------------
  261|      0|        MUTEX_LOCK(gil->switch_mutex);
  ------------------
  |  |  117|      0|    if (PyMUTEX_LOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   59|      0|#define PyMUTEX_LOCK(mut)       pthread_mutex_lock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (59:33): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  118|      0|        Py_FatalError("PyMUTEX_LOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  262|       |        /* Not switched yet => wait */
  263|      0|        if (((PyThreadState*)_Py_atomic_load_ptr_relaxed(&gil->last_holder)) == tstate)
  ------------------
  |  Branch (263:13): [True: 0, False: 0]
  ------------------
  264|      0|        {
  265|      0|            assert(_PyThreadState_CheckConsistency(tstate));
  ------------------
  |  Branch (265:13): [True: 0, False: 0]
  ------------------
  266|      0|            _Py_unset_eval_breaker_bit(tstate, _PY_GIL_DROP_REQUEST_BIT);
  ------------------
  |  |  346|      0|#define _PY_GIL_DROP_REQUEST_BIT (1U << 0)
  ------------------
  267|       |            /* NOTE: if COND_WAIT does not atomically start waiting when
  268|       |               releasing the mutex, another thread can run through, take
  269|       |               the GIL and drop it again, and reset the condition
  270|       |               before we even had a chance to wait for it. */
  271|      0|            COND_WAIT(gil->switch_cond, gil->switch_mutex);
  ------------------
  |  |  133|      0|    if (PyCOND_WAIT(&(cond), &(mut))) { \
  |  |  ------------------
  |  |  |  |   66|      0|#define PyCOND_WAIT(cond, mut)  pthread_cond_wait((cond), (mut))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (66:33): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  134|      0|        Py_FatalError("PyCOND_WAIT(" #cond ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  272|      0|        }
  273|      0|        MUTEX_UNLOCK(gil->switch_mutex);
  ------------------
  |  |  120|      0|    if (PyMUTEX_UNLOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   60|      0|#define PyMUTEX_UNLOCK(mut)     pthread_mutex_unlock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (60:33): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|      0|        Py_FatalError("PyMUTEX_UNLOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  274|      0|    }
  275|    654|#endif
  276|    654|}
ceval_gil.c:drop_gil_impl:
  204|    654|{
  205|    654|    MUTEX_LOCK(gil->mutex);
  ------------------
  |  |  117|    654|    if (PyMUTEX_LOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   59|    654|#define PyMUTEX_LOCK(mut)       pthread_mutex_lock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (59:33): [True: 0, False: 654]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  118|    654|        Py_FatalError("PyMUTEX_LOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  206|    654|    _Py_ANNOTATE_RWLOCK_RELEASED(&gil->locked, /*is_write=*/1);
  207|    654|    _Py_atomic_store_int_relaxed(&gil->locked, 0);
  208|    654|    if (tstate != NULL) {
  ------------------
  |  Branch (208:9): [True: 654, False: 0]
  ------------------
  209|    654|        tstate->holds_gil = 0;
  210|    654|        tstate->gil_requested = 0;
  211|    654|    }
  212|    654|    COND_SIGNAL(gil->cond);
  ------------------
  |  |  130|    654|    if (PyCOND_SIGNAL(&(cond))) { \
  |  |  ------------------
  |  |  |  |   64|    654|#define PyCOND_SIGNAL(cond)     pthread_cond_signal(cond)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:33): [True: 0, False: 654]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  131|    654|        Py_FatalError("PyCOND_SIGNAL(" #cond ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  213|    654|    MUTEX_UNLOCK(gil->mutex);
  ------------------
  |  |  120|    654|    if (PyMUTEX_UNLOCK(&(mut))) { \
  |  |  ------------------
  |  |  |  |   60|    654|#define PyMUTEX_UNLOCK(mut)     pthread_mutex_unlock(mut)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (60:33): [True: 0, False: 654]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|    654|        Py_FatalError("PyMUTEX_UNLOCK(" #mut ") failed"); };
  |  |  ------------------
  |  |  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  |  |  ------------------
  ------------------
  214|    654|}
ceval_gil.c:_gil_initialize:
  150|      2|{
  151|      2|    gil->locked = -1;
  152|      2|    gil->interval = DEFAULT_INTERVAL;
  ------------------
  |  |  147|      2|#define DEFAULT_INTERVAL 5000
  ------------------
  153|      2|}

ceval.c:_Py_EnterRecursivePy:
  405|  1.57k|static inline int _Py_EnterRecursivePy(PyThreadState *tstate) {
  406|  1.57k|    return (tstate->py_recursion_remaining-- <= 0) &&
  ------------------
  |  Branch (406:12): [True: 0, False: 1.57k]
  ------------------
  407|      0|        _Py_CheckRecursiveCallPy(tstate);
  ------------------
  |  Branch (407:9): [True: 0, False: 0]
  ------------------
  408|  1.57k|}
ceval.c:check_periodics:
  520|  6.64k|check_periodics(PyThreadState *tstate) {
  521|  6.64k|    _Py_CHECK_EMSCRIPTEN_SIGNALS_PERIODICALLY();
  522|  6.64k|    QSBR_QUIESCENT_STATE(tstate);
  523|  6.64k|    if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) & _PY_EVAL_EVENTS_MASK) {
  ------------------
  |  |  357|  6.64k|#define _PY_EVAL_EVENTS_MASK ((1 << _PY_EVAL_EVENTS_BITS)-1)
  |  |  ------------------
  |  |  |  |  356|  6.64k|#define _PY_EVAL_EVENTS_BITS 8
  |  |  ------------------
  ------------------
  |  Branch (523:9): [True: 4, False: 6.64k]
  ------------------
  524|      4|        return _Py_HandlePending(tstate);
  525|      4|    }
  526|  6.64k|    return 0;
  527|  6.64k|}
ceval.c:gen_try_set_executing:
  533|     14|{
  534|       |#ifdef Py_GIL_DISABLED
  535|       |    if (!_PyObject_IsUniquelyReferenced((PyObject *)gen)) {
  536|       |        int8_t frame_state = _Py_atomic_load_int8_relaxed(&gen->gi_frame_state);
  537|       |        while (frame_state < FRAME_SUSPENDED_YIELD_FROM_LOCKED) {
  538|       |            if (_Py_atomic_compare_exchange_int8(&gen->gi_frame_state,
  539|       |                                                 &frame_state,
  540|       |                                                 FRAME_EXECUTING)) {
  541|       |                return true;
  542|       |            }
  543|       |        }
  544|       |        // NB: We return false for FRAME_SUSPENDED_YIELD_FROM_LOCKED as well.
  545|       |        // That case is rare enough that we can just handle it in the deopt.
  546|       |        return false;
  547|       |    }
  548|       |#endif
  549|       |    // Use faster non-atomic modifications in the GIL-enabled build and when
  550|       |    // the object is uniquely referenced in the free-threaded build.
  551|     14|    if (gen->gi_frame_state < FRAME_EXECUTING) {
  ------------------
  |  Branch (551:9): [True: 14, False: 0]
  ------------------
  552|     14|        assert(gen->gi_frame_state != FRAME_SUSPENDED_YIELD_FROM_LOCKED);
  ------------------
  |  Branch (552:9): [True: 14, False: 0]
  ------------------
  553|     14|        gen->gi_frame_state = FRAME_EXECUTING;
  554|     14|        return true;
  555|     14|    }
  556|      0|    return false;
  557|     14|}
ceval.c:_Py_LeaveRecursiveCallPy:
  410|  3.55k|static inline void _Py_LeaveRecursiveCallPy(PyThreadState *tstate)  {
  411|  3.55k|    tstate->py_recursion_remaining++;
  412|  3.55k|}

bltinmodule.c:builtin___import__:
   41|     20|{
   42|     20|    PyObject *return_value = NULL;
   43|     20|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
   44|       |
   45|     20|    #define NUM_KEYWORDS 5
   46|     20|    static struct {
   47|     20|        PyGC_Head _this_is_not_used;
   48|     20|        PyObject_VAR_HEAD
   49|     20|        Py_hash_t ob_hash;
   50|     20|        PyObject *ob_item[NUM_KEYWORDS];
   51|     20|    } _kwtuple = {
   52|     20|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     20|    {                                     \
  |  |   98|     20|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     20|    {                               \
  |  |  |  |   91|     20|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     20|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     20|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     20|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     20|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     20|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     20|        (type)                      \
  |  |  |  |   93|     20|    },
  |  |  ------------------
  |  |   99|     20|        (size)                            \
  |  |  100|     20|    },
  ------------------
   53|     20|        .ob_hash = -1,
   54|     20|        .ob_item = { &_Py_ID(name), &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(fromlist), &_Py_ID(level), },
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(name), &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(fromlist), &_Py_ID(level), },
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(name), &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(fromlist), &_Py_ID(level), },
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(name), &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(fromlist), &_Py_ID(level), },
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(name), &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(fromlist), &_Py_ID(level), },
  ------------------
  |  |  917|     20|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     20|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     20|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   55|     20|    };
   56|     20|    #undef NUM_KEYWORDS
   57|     20|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
   58|       |
   59|       |    #else  // !Py_BUILD_CORE
   60|       |    #  define KWTUPLE NULL
   61|       |    #endif  // !Py_BUILD_CORE
   62|       |
   63|     20|    static const char * const _keywords[] = {"name", "globals", "locals", "fromlist", "level", NULL};
   64|     20|    static _PyArg_Parser _parser = {
   65|     20|        .keywords = _keywords,
   66|     20|        .fname = "__import__",
   67|     20|        .kwtuple = KWTUPLE,
  ------------------
  |  |   57|     20|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
   68|     20|    };
   69|     20|    #undef KWTUPLE
   70|     20|    PyObject *argsbuf[5];
   71|     20|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (71:36): [True: 2, False: 18]
  ------------------
   72|     20|    PyObject *name;
   73|     20|    PyObject *globals = NULL;
   74|     20|    PyObject *locals = NULL;
   75|     20|    PyObject *fromlist = NULL;
   76|     20|    int level = 0;
   77|       |
   78|     20|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|     20|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 18, False: 2]
  |  |  ------------------
  |  |   89|     20|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 18, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 18]
  |  |  |  Branch (89:43): [True: 18, False: 0]
  |  |  |  Branch (89:67): [True: 18, False: 0]
  |  |  ------------------
  |  |   90|     20|      (args) : \
  |  |   91|     20|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      2|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
   79|     20|            /*minpos*/ 1, /*maxpos*/ 5, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
   80|     20|    if (!args) {
  ------------------
  |  Branch (80:9): [True: 0, False: 20]
  ------------------
   81|      0|        goto exit;
   82|      0|    }
   83|     20|    name = args[0];
   84|     20|    if (!noptargs) {
  ------------------
  |  Branch (84:9): [True: 4, False: 16]
  ------------------
   85|      4|        goto skip_optional_pos;
   86|      4|    }
   87|     16|    if (args[1]) {
  ------------------
  |  Branch (87:9): [True: 14, False: 2]
  ------------------
   88|     14|        globals = args[1];
   89|     14|        if (!--noptargs) {
  ------------------
  |  Branch (89:13): [True: 0, False: 14]
  ------------------
   90|      0|            goto skip_optional_pos;
   91|      0|        }
   92|     14|    }
   93|     16|    if (args[2]) {
  ------------------
  |  Branch (93:9): [True: 14, False: 2]
  ------------------
   94|     14|        locals = args[2];
   95|     14|        if (!--noptargs) {
  ------------------
  |  Branch (95:13): [True: 0, False: 14]
  ------------------
   96|      0|            goto skip_optional_pos;
   97|      0|        }
   98|     14|    }
   99|     16|    if (args[3]) {
  ------------------
  |  Branch (99:9): [True: 16, False: 0]
  ------------------
  100|     16|        fromlist = args[3];
  101|     16|        if (!--noptargs) {
  ------------------
  |  Branch (101:13): [True: 0, False: 16]
  ------------------
  102|      0|            goto skip_optional_pos;
  103|      0|        }
  104|     16|    }
  105|     16|    level = PyLong_AsInt(args[4]);
  106|     16|    if (level == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (106:9): [True: 0, False: 16]
  |  Branch (106:24): [True: 0, False: 0]
  ------------------
  107|      0|        goto exit;
  108|      0|    }
  109|     20|skip_optional_pos:
  110|     20|    return_value = builtin___import___impl(module, name, globals, locals, fromlist, level);
  111|       |
  112|     20|exit:
  113|     20|    return return_value;
  114|     20|}
bltinmodule.c:builtin_exec:
  611|     28|{
  612|     28|    PyObject *return_value = NULL;
  613|     28|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  614|       |
  615|     28|    #define NUM_KEYWORDS 3
  616|     28|    static struct {
  617|     28|        PyGC_Head _this_is_not_used;
  618|     28|        PyObject_VAR_HEAD
  619|     28|        Py_hash_t ob_hash;
  620|     28|        PyObject *ob_item[NUM_KEYWORDS];
  621|     28|    } _kwtuple = {
  622|     28|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     28|    {                                     \
  |  |   98|     28|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     28|    {                               \
  |  |  |  |   91|     28|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     28|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     28|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     28|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     28|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     28|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     28|        (type)                      \
  |  |  |  |   93|     28|    },
  |  |  ------------------
  |  |   99|     28|        (size)                            \
  |  |  100|     28|    },
  ------------------
  623|     28|        .ob_hash = -1,
  624|     28|        .ob_item = { &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(closure), },
  ------------------
  |  |  917|     28|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     28|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     28|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(closure), },
  ------------------
  |  |  917|     28|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     28|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     28|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      .ob_item = { &_Py_ID(globals), &_Py_ID(locals), &_Py_ID(closure), },
  ------------------
  |  |  917|     28|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     28|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     28|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  625|     28|    };
  626|     28|    #undef NUM_KEYWORDS
  627|     28|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  628|       |
  629|       |    #else  // !Py_BUILD_CORE
  630|       |    #  define KWTUPLE NULL
  631|       |    #endif  // !Py_BUILD_CORE
  632|       |
  633|     28|    static const char * const _keywords[] = {"", "globals", "locals", "closure", NULL};
  634|     28|    static _PyArg_Parser _parser = {
  635|     28|        .keywords = _keywords,
  636|     28|        .fname = "exec",
  637|     28|        .kwtuple = KWTUPLE,
  ------------------
  |  |  627|     28|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  638|     28|    };
  639|     28|    #undef KWTUPLE
  640|     28|    PyObject *argsbuf[4];
  641|     28|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (641:36): [True: 0, False: 28]
  ------------------
  642|     28|    PyObject *source;
  643|     28|    PyObject *globals = Py_None;
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  644|     28|    PyObject *locals = Py_None;
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  645|     28|    PyObject *closure = NULL;
  646|       |
  647|     28|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|     28|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 28, False: 0]
  |  |  ------------------
  |  |   89|     28|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 28, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 28]
  |  |  |  Branch (89:43): [True: 28, False: 0]
  |  |  |  Branch (89:67): [True: 28, False: 0]
  |  |  ------------------
  |  |   90|     28|      (args) : \
  |  |   91|     28|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  648|     28|            /*minpos*/ 1, /*maxpos*/ 3, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  649|     28|    if (!args) {
  ------------------
  |  Branch (649:9): [True: 0, False: 28]
  ------------------
  650|      0|        goto exit;
  651|      0|    }
  652|     28|    source = args[0];
  653|     28|    if (!noptargs) {
  ------------------
  |  Branch (653:9): [True: 0, False: 28]
  ------------------
  654|      0|        goto skip_optional_pos;
  655|      0|    }
  656|     28|    if (args[1]) {
  ------------------
  |  Branch (656:9): [True: 28, False: 0]
  ------------------
  657|     28|        globals = args[1];
  658|     28|        if (!--noptargs) {
  ------------------
  |  Branch (658:13): [True: 28, False: 0]
  ------------------
  659|     28|            goto skip_optional_pos;
  660|     28|        }
  661|     28|    }
  662|      0|    if (args[2]) {
  ------------------
  |  Branch (662:9): [True: 0, False: 0]
  ------------------
  663|      0|        locals = args[2];
  664|      0|        if (!--noptargs) {
  ------------------
  |  Branch (664:13): [True: 0, False: 0]
  ------------------
  665|      0|            goto skip_optional_pos;
  666|      0|        }
  667|      0|    }
  668|     28|skip_optional_pos:
  669|     28|    if (!noptargs) {
  ------------------
  |  Branch (669:9): [True: 28, False: 0]
  ------------------
  670|     28|        goto skip_optional_kwonly;
  671|     28|    }
  672|      0|    closure = args[3];
  673|     28|skip_optional_kwonly:
  674|     28|    return_value = builtin_exec_impl(module, source, globals, locals, closure);
  675|       |
  676|     28|exit:
  677|     28|    return return_value;
  678|     28|}
bltinmodule.c:builtin_globals:
  697|     36|{
  698|     36|    return builtin_globals_impl(module);
  699|     36|}
bltinmodule.c:builtin_hasattr:
  717|    164|{
  718|    164|    PyObject *return_value = NULL;
  719|    164|    PyObject *obj;
  720|    164|    PyObject *name;
  721|       |
  722|    164|    if (!_PyArg_CheckPositional("hasattr", nargs, 2, 2)) {
  ------------------
  |  |   31|    164|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 164, False: 0]
  |  |  |  Branch (31:27): [True: 164, False: 0]
  |  |  ------------------
  |  |   32|    164|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  723|      0|        goto exit;
  724|      0|    }
  725|    164|    obj = args[0];
  726|    164|    name = args[1];
  727|    164|    return_value = builtin_hasattr_impl(module, obj, name);
  728|       |
  729|    164|exit:
  730|    164|    return return_value;
  731|    164|}
bltinmodule.c:builtin_isinstance:
 1335|     22|{
 1336|     22|    PyObject *return_value = NULL;
 1337|     22|    PyObject *obj;
 1338|     22|    PyObject *class_or_tuple;
 1339|       |
 1340|     22|    if (!_PyArg_CheckPositional("isinstance", nargs, 2, 2)) {
  ------------------
  |  |   31|     22|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 22, False: 0]
  |  |  |  Branch (31:27): [True: 22, False: 0]
  |  |  ------------------
  |  |   32|     22|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1341|      0|        goto exit;
 1342|      0|    }
 1343|     22|    obj = args[0];
 1344|     22|    class_or_tuple = args[1];
 1345|     22|    return_value = builtin_isinstance_impl(module, obj, class_or_tuple);
 1346|       |
 1347|     22|exit:
 1348|     22|    return return_value;
 1349|     22|}
bltinmodule.c:builtin_setattr:
  775|     82|{
  776|     82|    PyObject *return_value = NULL;
  777|     82|    PyObject *obj;
  778|     82|    PyObject *name;
  779|     82|    PyObject *value;
  780|       |
  781|     82|    if (!_PyArg_CheckPositional("setattr", nargs, 3, 3)) {
  ------------------
  |  |   31|     82|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 82, False: 0]
  |  |  |  Branch (31:27): [True: 82, False: 0]
  |  |  ------------------
  |  |   32|     82|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  782|      0|        goto exit;
  783|      0|    }
  784|     82|    obj = args[0];
  785|     82|    name = args[1];
  786|     82|    value = args[2];
  787|     82|    return_value = builtin_setattr_impl(module, obj, name, value);
  788|       |
  789|     82|exit:
  790|     82|    return return_value;
  791|     82|}

import.c:_imp_extension_suffixes:
  139|      4|{
  140|      4|    return _imp_extension_suffixes_impl(module);
  141|      4|}
import.c:_imp_acquire_lock:
   48|    192|{
   49|    192|    return _imp_acquire_lock_impl(module);
   50|    192|}
import.c:_imp_release_lock:
   68|    192|{
   69|    192|    return _imp_release_lock_impl(module);
   70|    192|}
import.c:_imp_find_frozen:
  194|     32|{
  195|     32|    PyObject *return_value = NULL;
  196|     32|    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
  197|       |
  198|     32|    #define NUM_KEYWORDS 1
  199|     32|    static struct {
  200|     32|        PyGC_Head _this_is_not_used;
  201|     32|        PyObject_VAR_HEAD
  202|     32|        Py_hash_t ob_hash;
  203|     32|        PyObject *ob_item[NUM_KEYWORDS];
  204|     32|    } _kwtuple = {
  205|     32|        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
  ------------------
  |  |   97|     32|    {                                     \
  |  |   98|     32|        PyObject_HEAD_INIT(type)          \
  |  |  ------------------
  |  |  |  |   90|     32|    {                               \
  |  |  |  |   91|     32|        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
  |  |  |  |  ------------------
  |  |  |  |  |  |   50|     32|#define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|     32|#define _Py_IMMORTAL_INITIAL_REFCNT (3ULL << 30)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define _Py_STATIC_IMMORTAL_INITIAL_REFCNT (((Py_ssize_t)_Py_IMMORTAL_INITIAL_REFCNT) | (_Py_STATIC_FLAG_BITS << 48))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   49|     32|#define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  583|     32|#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |               #define _Py_STATIC_FLAG_BITS ((Py_ssize_t)(_Py_STATICALLY_ALLOCATED_FLAG | _Py_IMMORTAL_FLAGS))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  581|     32|#define _Py_IMMORTAL_FLAGS (1 << 0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   92|     32|        (type)                      \
  |  |  |  |   93|     32|    },
  |  |  ------------------
  |  |   99|     32|        (size)                            \
  |  |  100|     32|    },
  ------------------
  206|     32|        .ob_hash = -1,
  207|     32|        .ob_item = { &_Py_ID(withdata), },
  ------------------
  |  |  917|     32|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     32|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     32|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  208|     32|    };
  209|     32|    #undef NUM_KEYWORDS
  210|     32|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  211|       |
  212|       |    #else  // !Py_BUILD_CORE
  213|       |    #  define KWTUPLE NULL
  214|       |    #endif  // !Py_BUILD_CORE
  215|       |
  216|     32|    static const char * const _keywords[] = {"", "withdata", NULL};
  217|     32|    static _PyArg_Parser _parser = {
  218|     32|        .keywords = _keywords,
  219|     32|        .fname = "find_frozen",
  220|     32|        .kwtuple = KWTUPLE,
  ------------------
  |  |  210|     32|    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
  ------------------
  221|     32|    };
  222|     32|    #undef KWTUPLE
  223|     32|    PyObject *argsbuf[2];
  224|     32|    Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (224:36): [True: 0, False: 32]
  ------------------
  225|     32|    PyObject *name;
  226|     32|    int withdata = 0;
  227|       |
  228|     32|    args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
  ------------------
  |  |   88|     32|    (((minkw) == 0 && (kwargs) == NULL && (kwnames) == NULL && \
  |  |  ------------------
  |  |  |  Branch (88:7): [True: 0, Folded]
  |  |  |  Branch (88:23): [True: 0, Folded]
  |  |  |  Branch (88:43): [True: 32, False: 0]
  |  |  ------------------
  |  |   89|     32|      (minpos) <= (nargs) && ((varpos) || (nargs) <= (maxpos)) && (args) != NULL) ? \
  |  |  ------------------
  |  |  |  Branch (89:7): [True: 32, False: 0]
  |  |  |  Branch (89:31): [Folded, False: 32]
  |  |  |  Branch (89:43): [True: 32, False: 0]
  |  |  |  Branch (89:67): [True: 32, False: 0]
  |  |  ------------------
  |  |   90|     32|      (args) : \
  |  |   91|     32|     _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \
  |  |   92|      0|                           (minpos), (maxpos), (minkw), (varpos), (buf)))
  ------------------
  229|     32|            /*minpos*/ 1, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
  230|     32|    if (!args) {
  ------------------
  |  Branch (230:9): [True: 0, False: 32]
  ------------------
  231|      0|        goto exit;
  232|      0|    }
  233|     32|    if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|     32|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     32|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (233:9): [True: 0, False: 32]
  ------------------
  234|      0|        _PyArg_BadArgument("find_frozen", "argument 1", "str", args[0]);
  235|      0|        goto exit;
  236|      0|    }
  237|     32|    name = args[0];
  238|     32|    if (!noptargs) {
  ------------------
  |  Branch (238:9): [True: 32, False: 0]
  ------------------
  239|     32|        goto skip_optional_kwonly;
  240|     32|    }
  241|      0|    withdata = PyObject_IsTrue(args[1]);
  242|      0|    if (withdata < 0) {
  ------------------
  |  Branch (242:9): [True: 0, False: 0]
  ------------------
  243|      0|        goto exit;
  244|      0|    }
  245|     32|skip_optional_kwonly:
  246|     32|    return_value = _imp_find_frozen_impl(module, name, withdata);
  247|       |
  248|     32|exit:
  249|     32|    return return_value;
  250|     32|}
import.c:_imp_get_frozen_object:
  267|     28|{
  268|     28|    PyObject *return_value = NULL;
  269|     28|    PyObject *name;
  270|     28|    PyObject *dataobj = Py_None;
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  271|       |
  272|     28|    if (!_PyArg_CheckPositional("get_frozen_object", nargs, 1, 2)) {
  ------------------
  |  |   31|     28|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 28, False: 0]
  |  |  |  Branch (31:27): [True: 28, False: 0]
  |  |  ------------------
  |  |   32|     28|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  273|      0|        goto exit;
  274|      0|    }
  275|     28|    if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|     28|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     28|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (275:9): [True: 0, False: 28]
  ------------------
  276|      0|        _PyArg_BadArgument("get_frozen_object", "argument 1", "str", args[0]);
  277|      0|        goto exit;
  278|      0|    }
  279|     28|    name = args[0];
  280|     28|    if (nargs < 2) {
  ------------------
  |  Branch (280:9): [True: 28, False: 0]
  ------------------
  281|     28|        goto skip_optional;
  282|     28|    }
  283|      0|    dataobj = args[1];
  284|     28|skip_optional:
  285|     28|    return_value = _imp_get_frozen_object_impl(module, name, dataobj);
  286|       |
  287|     28|exit:
  288|     28|    return return_value;
  289|     28|}
import.c:_imp_is_frozen_package:
  305|      2|{
  306|      2|    PyObject *return_value = NULL;
  307|      2|    PyObject *name;
  308|       |
  309|      2|    if (!PyUnicode_Check(arg)) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (309:9): [True: 0, False: 2]
  ------------------
  310|      0|        _PyArg_BadArgument("is_frozen_package", "argument", "str", arg);
  311|      0|        goto exit;
  312|      0|    }
  313|      2|    name = arg;
  314|      2|    return_value = _imp_is_frozen_package_impl(module, name);
  315|       |
  316|      2|exit:
  317|      2|    return return_value;
  318|      2|}
import.c:_imp_is_builtin:
  334|     54|{
  335|     54|    PyObject *return_value = NULL;
  336|     54|    PyObject *name;
  337|       |
  338|     54|    if (!PyUnicode_Check(arg)) {
  ------------------
  |  |  103|     54|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     54|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (338:9): [True: 0, False: 54]
  ------------------
  339|      0|        _PyArg_BadArgument("is_builtin", "argument", "str", arg);
  340|      0|        goto exit;
  341|      0|    }
  342|     54|    name = arg;
  343|     54|    return_value = _imp_is_builtin_impl(module, name);
  344|       |
  345|     54|exit:
  346|     54|    return return_value;
  347|     54|}
import.c:_imp_is_frozen:
  363|      2|{
  364|      2|    PyObject *return_value = NULL;
  365|      2|    PyObject *name;
  366|       |
  367|      2|    if (!PyUnicode_Check(arg)) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (367:9): [True: 0, False: 2]
  ------------------
  368|      0|        _PyArg_BadArgument("is_frozen", "argument", "str", arg);
  369|      0|        goto exit;
  370|      0|    }
  371|      2|    name = arg;
  372|      2|    return_value = _imp_is_frozen_impl(module, name);
  373|       |
  374|      2|exit:
  375|      2|    return return_value;
  376|      2|}
import.c:_imp_exec_builtin:
  542|     22|{
  543|     22|    PyObject *return_value = NULL;
  544|     22|    int _return_value;
  545|       |
  546|     22|    _return_value = _imp_exec_builtin_impl(module, mod);
  547|     22|    if ((_return_value == -1) && PyErr_Occurred()) {
  ------------------
  |  Branch (547:9): [True: 0, False: 22]
  |  Branch (547:34): [True: 0, False: 0]
  ------------------
  548|      0|        goto exit;
  549|      0|    }
  550|     22|    return_value = PyLong_FromLong((long)_return_value);
  551|       |
  552|     22|exit:
  553|     22|    return return_value;
  554|     22|}
import.c:_imp__set_lazy_attributes:
  640|     44|{
  641|     44|    PyObject *return_value = NULL;
  642|     44|    PyObject *modobj;
  643|     44|    PyObject *name;
  644|       |
  645|     44|    if (!_PyArg_CheckPositional("_set_lazy_attributes", nargs, 2, 2)) {
  ------------------
  |  |   31|     44|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 44, False: 0]
  |  |  |  Branch (31:27): [True: 44, False: 0]
  |  |  ------------------
  |  |   32|     44|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  646|      0|        goto exit;
  647|      0|    }
  648|     44|    modobj = args[0];
  649|     44|    if (!PyUnicode_Check(args[1])) {
  ------------------
  |  |  103|     44|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     44|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (649:9): [True: 0, False: 44]
  ------------------
  650|      0|        _PyArg_BadArgument("_set_lazy_attributes", "argument 2", "str", args[1]);
  651|      0|        goto exit;
  652|      0|    }
  653|     44|    name = args[1];
  654|     44|    return_value = _imp__set_lazy_attributes_impl(module, modobj, name);
  655|       |
  656|     44|exit:
  657|     44|    return return_value;
  658|     44|}

sysmodule.c:sys_audit:
   83|     48|{
   84|     48|    PyObject *return_value = NULL;
   85|     48|    const char *event;
   86|     48|    PyObject *__clinic_args = NULL;
   87|       |
   88|     48|    if (!_PyArg_CheckPositional("audit", nargs, 1, PY_SSIZE_T_MAX)) {
  ------------------
  |  |   31|     48|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 48, False: 0]
  |  |  |  Branch (31:27): [True: 48, False: 0]
  |  |  ------------------
  |  |   32|     48|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   89|      0|        goto exit;
   90|      0|    }
   91|     48|    if (!PyUnicode_Check(args[0])) {
  ------------------
  |  |  103|     48|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     48|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (91:9): [True: 0, False: 48]
  ------------------
   92|      0|        _PyArg_BadArgument("audit", "argument 1", "str", args[0]);
   93|      0|        goto exit;
   94|      0|    }
   95|     48|    Py_ssize_t event_length;
   96|     48|    event = PyUnicode_AsUTF8AndSize(args[0], &event_length);
   97|     48|    if (event == NULL) {
  ------------------
  |  Branch (97:9): [True: 0, False: 48]
  ------------------
   98|      0|        goto exit;
   99|      0|    }
  100|     48|    if (strlen(event) != (size_t)event_length) {
  ------------------
  |  Branch (100:9): [True: 0, False: 48]
  ------------------
  101|      0|        PyErr_SetString(PyExc_ValueError, "embedded null character");
  102|      0|        goto exit;
  103|      0|    }
  104|     48|    __clinic_args = PyTuple_FromArray(args + 1, nargs - 1);
  105|     48|    if (__clinic_args == NULL) {
  ------------------
  |  Branch (105:9): [True: 0, False: 48]
  ------------------
  106|      0|        goto exit;
  107|      0|    }
  108|     48|    return_value = sys_audit_impl(module, event, __clinic_args);
  109|       |
  110|     48|exit:
  111|       |    /* Cleanup for args */
  112|     48|    Py_XDECREF(__clinic_args);
  ------------------
  |  |  524|     48|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  113|       |
  114|     48|    return return_value;
  115|     48|}
sysmodule.c:sys_getfilesystemencoding:
  288|      4|{
  289|      4|    return sys_getfilesystemencoding_impl(module);
  290|      4|}
sysmodule.c:sys_getfilesystemencodeerrors:
  306|      2|{
  307|      2|    return sys_getfilesystemencodeerrors_impl(module);
  308|      2|}
sysmodule.c:sys__getframe:
 1122|      2|{
 1123|      2|    PyObject *return_value = NULL;
 1124|      2|    int depth = 0;
 1125|       |
 1126|      2|    if (!_PyArg_CheckPositional("_getframe", nargs, 0, 1)) {
  ------------------
  |  |   31|      2|    (((min) <= (nargs) && (nargs) <= (max)) \
  |  |  ------------------
  |  |  |  Branch (31:7): [True: 2, False: 0]
  |  |  |  Branch (31:27): [True: 2, False: 0]
  |  |  ------------------
  |  |   32|      2|     || _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1127|      0|        goto exit;
 1128|      0|    }
 1129|      2|    if (nargs < 1) {
  ------------------
  |  Branch (1129:9): [True: 2, False: 0]
  ------------------
 1130|      2|        goto skip_optional;
 1131|      2|    }
 1132|      0|    depth = PyLong_AsInt(args[0]);
 1133|      0|    if (depth == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1133:9): [True: 0, False: 0]
  |  Branch (1133:24): [True: 0, False: 0]
  ------------------
 1134|      0|        goto exit;
 1135|      0|    }
 1136|      2|skip_optional:
 1137|      2|    return_value = sys__getframe_impl(module, depth);
 1138|       |
 1139|      2|exit:
 1140|      2|    return return_value;
 1141|      2|}
sysmodule.c:sys__get_cpu_count_config:
 1735|      2|{
 1736|      2|    PyObject *return_value = NULL;
 1737|      2|    int _return_value;
 1738|       |
 1739|      2|    _return_value = sys__get_cpu_count_config_impl(module);
 1740|      2|    if ((_return_value == -1) && PyErr_Occurred()) {
  ------------------
  |  Branch (1740:9): [True: 2, False: 0]
  |  Branch (1740:34): [True: 0, False: 2]
  ------------------
 1741|      0|        goto exit;
 1742|      0|    }
 1743|      2|    return_value = PyLong_FromLong((long)_return_value);
 1744|       |
 1745|      2|exit:
 1746|      2|    return return_value;
 1747|      2|}

PyCodec_Register:
   32|      2|{
   33|      2|    PyInterpreterState *interp = _PyInterpreterState_GET();
   34|      2|    assert(interp->codecs.initialized);
  ------------------
  |  Branch (34:5): [True: 2, False: 0]
  ------------------
   35|      2|    if (search_function == NULL) {
  ------------------
  |  Branch (35:9): [True: 0, False: 2]
  ------------------
   36|      0|        PyErr_BadArgument();
   37|      0|        goto onError;
   38|      0|    }
   39|      2|    if (!PyCallable_Check(search_function)) {
  ------------------
  |  Branch (39:9): [True: 0, False: 2]
  ------------------
   40|      0|        PyErr_SetString(PyExc_TypeError, "argument must be callable");
   41|      0|        goto onError;
   42|      0|    }
   43|      2|    FT_MUTEX_LOCK(&interp->codecs.search_path_mutex);
  ------------------
  |  |  204|      2|#define FT_MUTEX_LOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (204:42): [Folded, False: 2]
  |  |  ------------------
  ------------------
   44|      2|    int ret = PyList_Append(interp->codecs.search_path, search_function);
   45|      2|    FT_MUTEX_UNLOCK(&interp->codecs.search_path_mutex);
  ------------------
  |  |  206|      2|#define FT_MUTEX_UNLOCK(lock) do {} while (0)
  |  |  ------------------
  |  |  |  Branch (206:44): [Folded, False: 2]
  |  |  ------------------
  ------------------
   46|       |
   47|      2|    return ret;
   48|       |
   49|      0| onError:
   50|      0|    return -1;
   51|      2|}
_PyCodec_Lookup:
  136|     12|{
  137|     12|    if (encoding == NULL) {
  ------------------
  |  Branch (137:9): [True: 0, False: 12]
  ------------------
  138|      0|        PyErr_BadArgument();
  139|      0|        return NULL;
  140|      0|    }
  141|       |
  142|     12|    PyInterpreterState *interp = _PyInterpreterState_GET();
  143|     12|    assert(interp->codecs.initialized);
  ------------------
  |  Branch (143:5): [True: 12, False: 0]
  ------------------
  144|       |
  145|       |    /* Convert the encoding to a normalized Python string: all
  146|       |       ASCII letters are converted to lower case, spaces are
  147|       |       replaced with hyphens. */
  148|     12|    PyObject *v = normalizestring(encoding);
  149|     12|    if (v == NULL) {
  ------------------
  |  Branch (149:9): [True: 0, False: 12]
  ------------------
  150|      0|        return NULL;
  151|      0|    }
  152|       |
  153|       |    /* Intern the string. We'll make it immortal later if lookup succeeds. */
  154|     12|    _PyUnicode_InternMortal(interp, &v);
  155|       |
  156|       |    /* First, try to lookup the name in the registry dictionary */
  157|     12|    PyObject *result;
  158|     12|    if (PyDict_GetItemRef(interp->codecs.search_cache, v, &result) < 0) {
  ------------------
  |  Branch (158:9): [True: 0, False: 12]
  ------------------
  159|      0|        goto onError;
  160|      0|    }
  161|     12|    if (result != NULL) {
  ------------------
  |  Branch (161:9): [True: 10, False: 2]
  ------------------
  162|     10|        Py_DECREF(v);
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  163|     10|        return result;
  164|     10|    }
  165|       |
  166|       |    /* Next, scan the search functions in order of registration */
  167|      2|    const Py_ssize_t len = PyList_Size(interp->codecs.search_path);
  168|      2|    if (len < 0)
  ------------------
  |  Branch (168:9): [True: 0, False: 2]
  ------------------
  169|      0|        goto onError;
  170|      2|    if (len == 0) {
  ------------------
  |  Branch (170:9): [True: 0, False: 2]
  ------------------
  171|      0|        PyErr_SetString(PyExc_LookupError,
  172|      0|                        "no codec search functions registered: "
  173|      0|                        "can't find encoding");
  174|      0|        goto onError;
  175|      0|    }
  176|       |
  177|      2|    Py_ssize_t i;
  178|      2|    for (i = 0; i < len; i++) {
  ------------------
  |  Branch (178:17): [True: 2, False: 0]
  ------------------
  179|      2|        PyObject *func;
  180|       |
  181|      2|        func = PyList_GetItemRef(interp->codecs.search_path, i);
  182|      2|        if (func == NULL)
  ------------------
  |  Branch (182:13): [True: 0, False: 2]
  ------------------
  183|      0|            goto onError;
  184|      2|        result = PyObject_CallOneArg(func, v);
  185|      2|        Py_DECREF(func);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  186|      2|        if (result == NULL)
  ------------------
  |  Branch (186:13): [True: 0, False: 2]
  ------------------
  187|      0|            goto onError;
  188|      2|        if (result == Py_None) {
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (188:13): [True: 0, False: 2]
  ------------------
  189|      0|            Py_CLEAR(result);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  190|      0|            continue;
  191|      0|        }
  192|      2|        if (!PyTuple_Check(result) || PyTuple_GET_SIZE(result) != 4) {
  ------------------
  |  |   27|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
                      if (!PyTuple_Check(result) || PyTuple_GET_SIZE(result) != 4) {
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (192:13): [True: 0, False: 2]
  |  Branch (192:39): [True: 0, False: 2]
  ------------------
  193|      0|            PyErr_SetString(PyExc_TypeError,
  194|      0|                            "codec search functions must return 4-tuples");
  195|      0|            Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  196|      0|            goto onError;
  197|      0|        }
  198|      2|        break;
  199|      2|    }
  200|      2|    if (result == NULL) {
  ------------------
  |  Branch (200:9): [True: 0, False: 2]
  ------------------
  201|       |        /* XXX Perhaps we should cache misses too ? */
  202|      0|        PyErr_Format(PyExc_LookupError,
  203|      0|                     "unknown encoding: %s", encoding);
  204|      0|        goto onError;
  205|      0|    }
  206|       |
  207|      2|    _PyUnicode_InternImmortal(interp, &v);
  208|       |
  209|       |    /* Cache and return the result */
  210|      2|    if (PyDict_SetItem(interp->codecs.search_cache, v, result) < 0) {
  ------------------
  |  Branch (210:9): [True: 0, False: 2]
  ------------------
  211|      0|        Py_DECREF(result);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  212|      0|        goto onError;
  213|      0|    }
  214|      2|    Py_DECREF(v);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  215|      2|    return result;
  216|       |
  217|      0| onError:
  218|      0|    Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  219|       |    return NULL;
  220|      2|}
_PyCodecInfo_GetIncrementalDecoder:
  340|      2|{
  341|      2|    return codec_makeincrementalcodec(codec_info, errors,
  342|      2|                                      "incrementaldecoder");
  343|      2|}
_PyCodecInfo_GetIncrementalEncoder:
  347|      4|{
  348|      4|    return codec_makeincrementalcodec(codec_info, errors,
  349|      4|                                      "incrementalencoder");
  350|      4|}
_PyCodec_LookupTextEncoding:
  514|      6|{
  515|      6|    PyObject *codec;
  516|      6|    PyObject *attr;
  517|      6|    int is_text_codec;
  518|       |
  519|      6|    codec = _PyCodec_Lookup(encoding);
  520|      6|    if (codec == NULL)
  ------------------
  |  Branch (520:9): [True: 0, False: 6]
  ------------------
  521|      0|        return NULL;
  522|       |
  523|       |    /* Backwards compatibility: assume any raw tuple describes a text
  524|       |     * encoding, and the same for anything lacking the private
  525|       |     * attribute.
  526|       |     */
  527|      6|    if (!PyTuple_CheckExact(codec)) {
  ------------------
  |  |   28|      6|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      6|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (527:9): [True: 6, False: 0]
  ------------------
  528|      6|        if (PyObject_GetOptionalAttr(codec, &_Py_ID(_is_text_encoding), &attr) < 0) {
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (528:13): [True: 0, False: 6]
  ------------------
  529|      0|            Py_DECREF(codec);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  530|      0|            return NULL;
  531|      0|        }
  532|      6|        if (attr != NULL) {
  ------------------
  |  Branch (532:13): [True: 6, False: 0]
  ------------------
  533|      6|            is_text_codec = PyObject_IsTrue(attr);
  534|      6|            Py_DECREF(attr);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  535|      6|            if (is_text_codec <= 0) {
  ------------------
  |  Branch (535:17): [True: 0, False: 6]
  ------------------
  536|      0|                Py_DECREF(codec);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  537|      0|                if (!is_text_codec) {
  ------------------
  |  Branch (537:21): [True: 0, False: 0]
  ------------------
  538|      0|                    if (alternate_command != NULL) {
  ------------------
  |  Branch (538:25): [True: 0, False: 0]
  ------------------
  539|      0|                        PyErr_Format(PyExc_LookupError,
  540|      0|                                     "'%.400s' is not a text encoding; "
  541|      0|                                     "use %s to handle arbitrary codecs",
  542|      0|                                     encoding, alternate_command);
  543|      0|                    }
  544|      0|                    else {
  545|      0|                        PyErr_Format(PyExc_LookupError,
  546|      0|                                     "'%.400s' is not a text encoding",
  547|      0|                                     encoding);
  548|      0|                    }
  549|      0|                }
  550|      0|                return NULL;
  551|      0|            }
  552|      6|        }
  553|      6|    }
  554|       |
  555|       |    /* This appears to be a valid text encoding */
  556|      6|    return codec;
  557|      6|}
PyCodec_LookupError:
  649|     12|{
  650|     12|    PyInterpreterState *interp = _PyInterpreterState_GET();
  651|     12|    assert(interp->codecs.initialized);
  ------------------
  |  Branch (651:5): [True: 12, False: 0]
  ------------------
  652|       |
  653|     12|    if (name==NULL)
  ------------------
  |  Branch (653:9): [True: 0, False: 12]
  ------------------
  654|      0|        name = "strict";
  655|     12|    PyObject *handler;
  656|     12|    if (PyDict_GetItemStringRef(interp->codecs.error_registry, name, &handler) < 0) {
  ------------------
  |  Branch (656:9): [True: 0, False: 12]
  ------------------
  657|      0|        return NULL;
  658|      0|    }
  659|     12|    if (handler == NULL) {
  ------------------
  |  Branch (659:9): [True: 0, False: 12]
  ------------------
  660|      0|        PyErr_Format(PyExc_LookupError, "unknown error handler name '%.400s'", name);
  661|      0|        return NULL;
  662|      0|    }
  663|     12|    return handler;
  664|     12|}
_PyCodec_InitRegistry:
 1566|      2|{
 1567|      2|    static struct {
 1568|      2|        const char *name;
 1569|      2|        PyMethodDef def;
 1570|      2|    } methods[] =
 1571|      2|    {
 1572|      2|        {
 1573|      2|            "strict",
 1574|      2|            {
 1575|      2|                "strict_errors",
 1576|      2|                strict_errors,
 1577|      2|                METH_O,
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1578|      2|                PyDoc_STR("Implements the 'strict' error handling, which "
  ------------------
  |  |  204|      2|#define PyDoc_STR(str) str
  ------------------
 1579|      2|                          "raises a UnicodeError on coding errors.")
 1580|      2|            }
 1581|      2|        },
 1582|      2|        {
 1583|      2|            "ignore",
 1584|      2|            {
 1585|      2|                "ignore_errors",
 1586|      2|                ignore_errors,
 1587|      2|                METH_O,
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1588|      2|                PyDoc_STR("Implements the 'ignore' error handling, which "
  ------------------
  |  |  204|      2|#define PyDoc_STR(str) str
  ------------------
 1589|      2|                          "ignores malformed data and continues.")
 1590|      2|            }
 1591|      2|        },
 1592|      2|        {
 1593|      2|            "replace",
 1594|      2|            {
 1595|      2|                "replace_errors",
 1596|      2|                replace_errors,
 1597|      2|                METH_O,
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1598|      2|                PyDoc_STR("Implements the 'replace' error handling, which "
  ------------------
  |  |  204|      2|#define PyDoc_STR(str) str
  ------------------
 1599|      2|                          "replaces malformed data with a replacement marker.")
 1600|      2|            }
 1601|      2|        },
 1602|      2|        {
 1603|      2|            "xmlcharrefreplace",
 1604|      2|            {
 1605|      2|                "xmlcharrefreplace_errors",
 1606|      2|                xmlcharrefreplace_errors,
 1607|      2|                METH_O,
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1608|      2|                PyDoc_STR("Implements the 'xmlcharrefreplace' error handling, "
  ------------------
  |  |  204|      2|#define PyDoc_STR(str) str
  ------------------
 1609|      2|                          "which replaces an unencodable character with the "
 1610|      2|                          "appropriate XML character reference.")
 1611|      2|            }
 1612|      2|        },
 1613|      2|        {
 1614|      2|            "backslashreplace",
 1615|      2|            {
 1616|      2|                "backslashreplace_errors",
 1617|      2|                backslashreplace_errors,
 1618|      2|                METH_O,
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1619|      2|                PyDoc_STR("Implements the 'backslashreplace' error handling, "
  ------------------
  |  |  204|      2|#define PyDoc_STR(str) str
  ------------------
 1620|      2|                          "which replaces malformed data with a backslashed "
 1621|      2|                          "escape sequence.")
 1622|      2|            }
 1623|      2|        },
 1624|      2|        {
 1625|      2|            "namereplace",
 1626|      2|            {
 1627|      2|                "namereplace_errors",
 1628|      2|                namereplace_errors,
 1629|      2|                METH_O,
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1630|      2|                PyDoc_STR("Implements the 'namereplace' error handling, "
  ------------------
  |  |  204|      2|#define PyDoc_STR(str) str
  ------------------
 1631|      2|                          "which replaces an unencodable character with a "
 1632|      2|                          "\\N{...} escape sequence.")
 1633|      2|            }
 1634|      2|        },
 1635|      2|        {
 1636|      2|            "surrogatepass",
 1637|      2|            {
 1638|      2|                "surrogatepass",
 1639|      2|                surrogatepass_errors,
 1640|      2|                METH_O
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1641|      2|            }
 1642|      2|        },
 1643|      2|        {
 1644|      2|            "surrogateescape",
 1645|      2|            {
 1646|      2|                "surrogateescape",
 1647|      2|                surrogateescape_errors,
 1648|      2|                METH_O
  ------------------
  |  |   99|      2|#define METH_O        0x0008
  ------------------
 1649|      2|            }
 1650|      2|        }
 1651|      2|    };
 1652|       |    // ensure that the built-in error handlers' names are kept in sync
 1653|      2|    assert(Py_ARRAY_LENGTH(methods) == Py_ARRAY_LENGTH(codecs_builtin_error_handlers));
  ------------------
  |  Branch (1653:5): [True: 2, Folded]
  ------------------
 1654|       |
 1655|      2|    assert(interp->codecs.initialized == 0);
  ------------------
  |  Branch (1655:5): [True: 2, False: 0]
  ------------------
 1656|      2|    interp->codecs.search_path = PyList_New(0);
 1657|      2|    if (interp->codecs.search_path == NULL) {
  ------------------
  |  Branch (1657:9): [True: 0, False: 2]
  ------------------
 1658|      0|        return PyStatus_NoMemory();
 1659|      0|    }
 1660|      2|    interp->codecs.search_cache = PyDict_New();
 1661|      2|    if (interp->codecs.search_cache == NULL) {
  ------------------
  |  Branch (1661:9): [True: 0, False: 2]
  ------------------
 1662|      0|        return PyStatus_NoMemory();
 1663|      0|    }
 1664|      2|    interp->codecs.error_registry = PyDict_New();
 1665|      2|    if (interp->codecs.error_registry == NULL) {
  ------------------
  |  Branch (1665:9): [True: 0, False: 2]
  ------------------
 1666|      0|        return PyStatus_NoMemory();
 1667|      0|    }
 1668|     18|    for (size_t i = 0; i < Py_ARRAY_LENGTH(methods); ++i) {
  ------------------
  |  |  196|     18|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (1668:24): [True: 16, False: 2]
  ------------------
 1669|     16|        PyObject *func = PyCFunction_NewEx(&methods[i].def, NULL, NULL);
  ------------------
  |  |   87|     16|#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
  ------------------
 1670|     16|        if (func == NULL) {
  ------------------
  |  Branch (1670:13): [True: 0, False: 16]
  ------------------
 1671|      0|            return PyStatus_NoMemory();
 1672|      0|        }
 1673|       |
 1674|     16|        int res = PyDict_SetItemString(interp->codecs.error_registry,
 1675|     16|                                       methods[i].name, func);
 1676|     16|        Py_DECREF(func);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1677|     16|        if (res < 0) {
  ------------------
  |  Branch (1677:13): [True: 0, False: 16]
  ------------------
 1678|      0|            return PyStatus_Error("Failed to insert into codec error registry");
 1679|      0|        }
 1680|     16|    }
 1681|       |
 1682|      2|    interp->codecs.initialized = 1;
 1683|       |
 1684|       |    // Importing `encodings' will call back into this module to register codec
 1685|       |    // search functions, so this is done after everything else is initialized.
 1686|      2|    PyObject *mod = PyImport_ImportModule("encodings");
 1687|      2|    if (mod == NULL) {
  ------------------
  |  Branch (1687:9): [True: 0, False: 2]
  ------------------
 1688|      0|        return PyStatus_Error("Failed to import encodings module");
 1689|      0|    }
 1690|      2|    Py_DECREF(mod);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1691|       |
 1692|      2|    return PyStatus_Ok();
 1693|      2|}
codecs.c:normalizestring:
   91|     12|{
   92|     12|    size_t i;
   93|     12|    size_t len = strlen(string);
   94|     12|    char *p;
   95|     12|    PyObject *v;
   96|       |
   97|     12|    if (len > PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|     12|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (97:9): [True: 0, False: 12]
  ------------------
   98|      0|        PyErr_SetString(PyExc_OverflowError, "string is too large");
   99|      0|        return NULL;
  100|      0|    }
  101|       |
  102|     12|    p = PyMem_Malloc(len + 1);
  103|     12|    if (p == NULL)
  ------------------
  |  Branch (103:9): [True: 0, False: 12]
  ------------------
  104|      0|        return PyErr_NoMemory();
  105|     72|    for (i = 0; i < len; i++) {
  ------------------
  |  Branch (105:17): [True: 60, False: 12]
  ------------------
  106|     60|        char ch = string[i];
  107|     60|        if (ch == ' ')
  ------------------
  |  Branch (107:13): [True: 0, False: 60]
  ------------------
  108|      0|            ch = '-';
  109|     60|        else
  110|     60|            ch = Py_TOLOWER(Py_CHARMASK(ch));
  ------------------
  |  |   32|     60|#define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)])
  |  |  ------------------
  |  |  |  |  138|     60|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  ------------------
  111|     60|        p[i] = ch;
  112|     60|    }
  113|     12|    p[i] = '\0';
  114|     12|    v = PyUnicode_FromString(p);
  115|     12|    PyMem_Free(p);
  116|     12|    return v;
  117|     12|}
codecs.c:codec_makeincrementalcodec:
  283|      6|{
  284|      6|    PyObject *ret, *inccodec;
  285|       |
  286|      6|    inccodec = PyObject_GetAttrString(codec_info, attrname);
  287|      6|    if (inccodec == NULL)
  ------------------
  |  Branch (287:9): [True: 0, False: 6]
  ------------------
  288|      0|        return NULL;
  289|      6|    if (errors)
  ------------------
  |  Branch (289:9): [True: 6, False: 0]
  ------------------
  290|      6|        ret = PyObject_CallFunction(inccodec, "s", errors);
  291|      0|    else
  292|      0|        ret = _PyObject_CallNoArgs(inccodec);
  293|      6|    Py_DECREF(inccodec);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  294|      6|    return ret;
  295|      6|}

initconfig.c:config_dict_get:
   20|    142|{
   21|    142|    PyObject *item;
   22|    142|    if (_config_dict_get(dict, name, &item) < 0) {
  ------------------
  |  Branch (22:9): [True: 0, False: 142]
  ------------------
   23|      0|        if (!PyErr_Occurred()) {
  ------------------
  |  Branch (23:13): [True: 0, False: 0]
  ------------------
   24|      0|            PyErr_Format(PyExc_ValueError, "missing config key: %s", name);
   25|      0|        }
   26|      0|        return NULL;
   27|      0|    }
   28|    142|    return item;
   29|    142|}
initconfig.c:_config_dict_get:
    4|    142|{
    5|    142|    PyObject *item;
    6|    142|    if (PyDict_GetItemStringRef(dict, name, &item) < 0) {
  ------------------
  |  Branch (6:9): [True: 0, False: 142]
  ------------------
    7|      0|        return -1;
    8|      0|    }
    9|    142|    if (item == NULL) {
  ------------------
  |  Branch (9:9): [True: 0, False: 142]
  ------------------
   10|       |        // We do not set an exception.
   11|      0|        return -1;
   12|      0|    }
   13|    142|    *p_item = item;
   14|    142|    return 0;
   15|    142|}

PyContextVar_New:
  267|      2|{
  268|      2|    PyObject *pyname = PyUnicode_FromString(name);
  269|      2|    if (pyname == NULL) {
  ------------------
  |  Branch (269:9): [True: 0, False: 2]
  ------------------
  270|      0|        return NULL;
  271|      0|    }
  272|      2|    PyContextVar *var = contextvar_new(pyname, def);
  273|      2|    Py_DECREF(pyname);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  274|      2|    return (PyObject *)var;
  275|      2|}
_PyContext_Init:
 1355|      2|{
 1356|      2|    PyObject *missing = get_token_missing();
 1357|      2|    assert(PyUnstable_IsImmortal(missing));
  ------------------
  |  Branch (1357:5): [True: 2, False: 0]
  ------------------
 1358|      2|    if (PyDict_SetItemString(
  ------------------
  |  Branch (1358:9): [True: 0, False: 2]
  ------------------
 1359|      2|        _PyType_GetDict(&PyContextToken_Type), "MISSING", missing))
 1360|      0|    {
 1361|      0|        Py_DECREF(missing);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1362|      0|        return _PyStatus_ERR("can't init context types");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1363|      0|    }
 1364|      2|    Py_DECREF(missing);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1365|       |
 1366|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1367|      2|}
context.c:contextvar_new:
  868|      2|{
  869|      2|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (869:9): [True: 0, False: 2]
  ------------------
  870|      0|        PyErr_SetString(PyExc_TypeError,
  871|      0|                        "context variable name must be a str");
  872|      0|        return NULL;
  873|      0|    }
  874|       |
  875|      2|    PyContextVar *var = PyObject_GC_New(PyContextVar, &PyContextVar_Type);
  ------------------
  |  |  181|      2|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  876|      2|    if (var == NULL) {
  ------------------
  |  Branch (876:9): [True: 0, False: 2]
  ------------------
  877|      0|        return NULL;
  878|      0|    }
  879|       |
  880|      2|    var->var_name = Py_NewRef(name);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  881|      2|    var->var_default = Py_XNewRef(def);
  ------------------
  |  |  551|      2|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  882|       |
  883|      2|#ifndef Py_GIL_DISABLED
  884|      2|    var->var_cached = NULL;
  885|      2|    var->var_cached_tsid = 0;
  886|      2|    var->var_cached_tsver = 0;
  887|      2|#endif
  888|       |
  889|      2|    var->var_hash = contextvar_generate_hash(var, name);
  890|      2|    if (var->var_hash == -1) {
  ------------------
  |  Branch (890:9): [True: 0, False: 2]
  ------------------
  891|      0|        Py_DECREF(var);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  892|      0|        return NULL;
  893|      0|    }
  894|       |
  895|      2|    if (_PyObject_GC_MAY_BE_TRACKED(name) ||
  ------------------
  |  Branch (895:9): [True: 0, False: 2]
  ------------------
  896|      2|            (def != NULL && _PyObject_GC_MAY_BE_TRACKED(def)))
  ------------------
  |  Branch (896:14): [True: 0, False: 2]
  |  Branch (896:29): [True: 0, False: 0]
  ------------------
  897|      0|    {
  898|      0|        PyObject_GC_Track(var);
  899|      0|    }
  900|      2|    return var;
  901|      2|}
context.c:contextvar_generate_hash:
  840|      2|{
  841|       |    /* Take hash of `name` and XOR it with the object's addr.
  842|       |
  843|       |       The structure of the tree is encoded in objects' hashes, which
  844|       |       means that sufficiently similar hashes would result in tall trees
  845|       |       with many Collision nodes.  Which would, in turn, result in slower
  846|       |       get and set operations.
  847|       |
  848|       |       The XORing helps to ensure that:
  849|       |
  850|       |       (1) sequentially allocated ContextVar objects have
  851|       |           different hashes;
  852|       |
  853|       |       (2) context variables with equal names have
  854|       |           different hashes.
  855|       |    */
  856|       |
  857|      2|    Py_hash_t name_hash = PyObject_Hash(name);
  858|      2|    if (name_hash == -1) {
  ------------------
  |  Branch (858:9): [True: 0, False: 2]
  ------------------
  859|      0|        return -1;
  860|      0|    }
  861|       |
  862|      2|    Py_hash_t res = Py_HashPointer(addr) ^ name_hash;
  863|      2|    return res == -1 ? -2 : res;
  ------------------
  |  Branch (863:12): [True: 0, False: 2]
  ------------------
  864|      2|}
context.c:get_token_missing:
 1345|      2|{
 1346|      2|    return (PyObject *)&_Py_SINGLETON(context_token_missing);
  ------------------
  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  ------------------
  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  ------------------
  ------------------
 1347|      2|}

_Py_xi_global_state_init:
 3119|      2|{
 3120|      2|    assert(state != NULL);
  ------------------
  |  Branch (3120:5): [True: 2, False: 0]
  ------------------
 3121|      2|    xid_lookup_init(&state->data_lookup);
 3122|      2|    return 0;
 3123|      2|}
_Py_xi_state_init:
 3134|      2|{
 3135|      2|    assert(state != NULL);
  ------------------
  |  Branch (3135:5): [True: 2, False: 0]
  ------------------
 3136|      2|    assert(interp == NULL || state == _PyXI_GET_STATE(interp));
  ------------------
  |  Branch (3136:5): [True: 2, False: 0]
  |  Branch (3136:5): [True: 0, False: 0]
  ------------------
 3137|       |
 3138|       |    // Initialize pickle function cache (before any fallible ops).
 3139|      2|    state->pickle.dumps = NULL;
 3140|      2|    state->pickle.loads = NULL;
 3141|       |
 3142|      2|    xid_lookup_init(&state->data_lookup);
 3143|       |
 3144|       |    // Initialize exceptions.
 3145|      2|    if (interp != NULL) {
  ------------------
  |  Branch (3145:9): [True: 0, False: 2]
  ------------------
 3146|      0|        if (init_static_exctypes(&state->exceptions, interp) < 0) {
  ------------------
  |  Branch (3146:13): [True: 0, False: 0]
  ------------------
 3147|      0|            fini_heap_exctypes(&state->exceptions);
 3148|      0|            return -1;
 3149|      0|        }
 3150|      0|    }
 3151|      2|    if (init_heap_exctypes(&state->exceptions) < 0) {
  ------------------
  |  Branch (3151:9): [True: 0, False: 2]
  ------------------
 3152|      0|        return -1;
 3153|      0|    }
 3154|       |
 3155|      2|    return 0;
 3156|      2|}
_PyXI_Init:
 3180|      2|{
 3181|      2|    if (_Py_IsMainInterpreter(interp)) {
  ------------------
  |  Branch (3181:9): [True: 2, False: 0]
  ------------------
 3182|      2|        _PyXI_global_state_t *global_state = _PyXI_GET_GLOBAL_STATE(interp);
  ------------------
  |  |  276|      2|#define _PyXI_GET_GLOBAL_STATE(interp) (&(interp)->runtime->xi)
  ------------------
 3183|      2|        if (global_state == NULL) {
  ------------------
  |  Branch (3183:13): [True: 0, False: 2]
  ------------------
 3184|      0|            PyErr_PrintEx(0);
 3185|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3186|      0|                    "failed to get global cross-interpreter state");
 3187|      0|        }
 3188|      2|        if (_Py_xi_global_state_init(global_state) < 0) {
  ------------------
  |  Branch (3188:13): [True: 0, False: 2]
  ------------------
 3189|      0|            PyErr_PrintEx(0);
 3190|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3191|      0|                    "failed to initialize  global cross-interpreter state");
 3192|      0|        }
 3193|      2|    }
 3194|       |
 3195|      2|    _PyXI_state_t *state = _PyXI_GET_STATE(interp);
  ------------------
  |  |  277|      2|#define _PyXI_GET_STATE(interp) (&(interp)->xi)
  ------------------
 3196|      2|    if (state == NULL) {
  ------------------
  |  Branch (3196:9): [True: 0, False: 2]
  ------------------
 3197|      0|        PyErr_PrintEx(0);
 3198|      0|        return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3199|      0|                "failed to get interpreter's cross-interpreter state");
 3200|      0|    }
 3201|       |    // The static types were already initialized in _PyXI_InitTypes(),
 3202|       |    // so we pass in NULL here to avoid initializing them again.
 3203|      2|    if (_Py_xi_state_init(state, NULL) < 0) {
  ------------------
  |  Branch (3203:9): [True: 0, False: 2]
  ------------------
 3204|      0|        PyErr_PrintEx(0);
 3205|      0|        return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3206|      0|                "failed to initialize interpreter's cross-interpreter state");
 3207|      0|    }
 3208|       |
 3209|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3210|      2|}
_PyXI_InitTypes:
 3237|      2|{
 3238|      2|    if (init_static_exctypes(&_PyXI_GET_STATE(interp)->exceptions, interp) < 0) {
  ------------------
  |  |  277|      2|#define _PyXI_GET_STATE(interp) (&(interp)->xi)
  ------------------
  |  Branch (3238:9): [True: 0, False: 2]
  ------------------
 3239|      0|        PyErr_PrintEx(0);
 3240|      0|        return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3241|      0|                "failed to initialize the cross-interpreter exception types");
 3242|      0|    }
 3243|       |    // We would initialize heap types here too but that leads to ref leaks.
 3244|       |    // Instead, we initialize them in _PyXI_Init().
 3245|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3246|      2|}

crossinterp.c:_xidregistry_add_type:
  254|     14|{
  255|     14|    dlregitem_t *newhead = PyMem_RawMalloc(sizeof(dlregitem_t));
  256|     14|    if (newhead == NULL) {
  ------------------
  |  Branch (256:9): [True: 0, False: 14]
  ------------------
  257|      0|        return -1;
  258|      0|    }
  259|     14|    assert((getdata.basic == NULL) != (getdata.fallback == NULL));
  ------------------
  |  Branch (259:5): [True: 14, False: 0]
  ------------------
  260|     14|    *newhead = (dlregitem_t){
  261|       |        // We do not keep a reference, to avoid keeping the class alive.
  262|     14|        .cls = cls,
  263|     14|        .refcount = 1,
  264|     14|        .getdata = getdata,
  265|     14|    };
  266|     14|    if (cls->tp_flags & Py_TPFLAGS_HEAPTYPE) {
  ------------------
  |  |  503|     14|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (266:9): [True: 0, False: 14]
  ------------------
  267|       |        // XXX Assign a callback to clear the entry from the registry?
  268|      0|        newhead->weakref = PyWeakref_NewRef((PyObject *)cls, NULL);
  269|      0|        if (newhead->weakref == NULL) {
  ------------------
  |  Branch (269:13): [True: 0, False: 0]
  ------------------
  270|      0|            PyMem_RawFree(newhead);
  271|      0|            return -1;
  272|      0|        }
  273|      0|    }
  274|     14|    newhead->next = xidregistry->head;
  275|     14|    if (newhead->next != NULL) {
  ------------------
  |  Branch (275:9): [True: 12, False: 2]
  ------------------
  276|     12|        newhead->next->prev = newhead;
  277|     12|    }
  278|     14|    xidregistry->head = newhead;
  279|     14|    return 0;
  280|     14|}
crossinterp.c:xid_lookup_init:
   23|      4|{
   24|      4|    _xidregistry_init(&state->registry);
   25|      4|}
crossinterp.c:_xidregistry_init:
  145|      4|{
  146|      4|    if (registry->initialized) {
  ------------------
  |  Branch (146:9): [True: 0, False: 4]
  ------------------
  147|      0|        return;
  148|      0|    }
  149|      4|    registry->initialized = 1;
  150|       |
  151|      4|    if (registry->global) {
  ------------------
  |  Branch (151:9): [True: 2, False: 2]
  ------------------
  152|       |        // Registering the builtins is cheap so we don't bother doing it lazily.
  153|      2|        assert(registry->head == NULL);
  ------------------
  |  Branch (153:9): [True: 2, False: 0]
  ------------------
  154|      2|        _register_builtins_for_crossinterpreter_data(registry);
  155|      2|    }
  156|      4|}
crossinterp.c:_register_builtins_for_crossinterpreter_data:
  791|      2|{
  792|      2|#define REGISTER(TYPE, GETDATA) \
  793|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  794|      2|                          ((_PyXIData_getdata_t){.basic=(GETDATA)}))
  795|      2|#define REGISTER_FALLBACK(TYPE, GETDATA) \
  796|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  797|      2|                          ((_PyXIData_getdata_t){.fallback=(GETDATA)}))
  798|       |    // None
  799|      2|    if (REGISTER(Py_TYPE(Py_None), _none_shared) != 0) {
  ------------------
  |  |  793|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  |  |  794|      2|                          ((_PyXIData_getdata_t){.basic=(GETDATA)}))
  ------------------
  |  Branch (799:9): [True: 0, False: 2]
  ------------------
  800|      0|        Py_FatalError("could not register None for cross-interpreter sharing");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  801|      0|    }
  802|       |
  803|       |    // int
  804|      2|    if (REGISTER(&PyLong_Type, _long_shared) != 0) {
  ------------------
  |  |  793|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  |  |  794|      2|                          ((_PyXIData_getdata_t){.basic=(GETDATA)}))
  ------------------
  |  Branch (804:9): [True: 0, False: 2]
  ------------------
  805|      0|        Py_FatalError("could not register int for cross-interpreter sharing");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  806|      0|    }
  807|       |
  808|       |    // bytes
  809|      2|    if (REGISTER(&PyBytes_Type, _PyBytes_GetXIData) != 0) {
  ------------------
  |  |  793|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  |  |  794|      2|                          ((_PyXIData_getdata_t){.basic=(GETDATA)}))
  ------------------
  |  Branch (809:9): [True: 0, False: 2]
  ------------------
  810|      0|        Py_FatalError("could not register bytes for cross-interpreter sharing");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  811|      0|    }
  812|       |
  813|       |    // str
  814|      2|    if (REGISTER(&PyUnicode_Type, _str_shared) != 0) {
  ------------------
  |  |  793|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  |  |  794|      2|                          ((_PyXIData_getdata_t){.basic=(GETDATA)}))
  ------------------
  |  Branch (814:9): [True: 0, False: 2]
  ------------------
  815|      0|        Py_FatalError("could not register str for cross-interpreter sharing");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  816|      0|    }
  817|       |
  818|       |    // bool
  819|      2|    if (REGISTER(&PyBool_Type, _bool_shared) != 0) {
  ------------------
  |  |  793|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  |  |  794|      2|                          ((_PyXIData_getdata_t){.basic=(GETDATA)}))
  ------------------
  |  Branch (819:9): [True: 0, False: 2]
  ------------------
  820|      0|        Py_FatalError("could not register bool for cross-interpreter sharing");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  821|      0|    }
  822|       |
  823|       |    // float
  824|      2|    if (REGISTER(&PyFloat_Type, _float_shared) != 0) {
  ------------------
  |  |  793|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  |  |  794|      2|                          ((_PyXIData_getdata_t){.basic=(GETDATA)}))
  ------------------
  |  Branch (824:9): [True: 0, False: 2]
  ------------------
  825|      0|        Py_FatalError("could not register float for cross-interpreter sharing");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  826|      0|    }
  827|       |
  828|       |    // tuple
  829|      2|    if (REGISTER_FALLBACK(&PyTuple_Type, _tuple_shared) != 0) {
  ------------------
  |  |  796|      2|    _xidregistry_add_type(xidregistry, (PyTypeObject *)TYPE, \
  |  |  797|      2|                          ((_PyXIData_getdata_t){.fallback=(GETDATA)}))
  ------------------
  |  Branch (829:9): [True: 0, False: 2]
  ------------------
  830|      0|        Py_FatalError("could not register tuple for cross-interpreter sharing");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  831|      0|    }
  832|       |
  833|       |    // For now, we do not register PyCode_Type or PyFunction_Type.
  834|      2|#undef REGISTER
  835|      2|#undef REGISTER_FALLBACK
  836|      2|}

crossinterp.c:init_static_exctypes:
  139|      2|{
  140|      2|    assert(state == &_PyXI_GET_STATE(interp)->exceptions);
  ------------------
  |  Branch (140:5): [True: 2, False: 0]
  ------------------
  141|      2|    PyTypeObject *base = (PyTypeObject *)PyExc_Exception;
  142|       |
  143|       |    // PyExc_InterpreterError
  144|      2|    _PyExc_InterpreterError.tp_base = base;
  145|      2|    _PyExc_InterpreterError.tp_traverse = base->tp_traverse;
  146|      2|    _PyExc_InterpreterError.tp_clear = base->tp_clear;
  147|      2|    if (_PyStaticType_InitBuiltin(interp, &_PyExc_InterpreterError) < 0) {
  ------------------
  |  Branch (147:9): [True: 0, False: 2]
  ------------------
  148|      0|        goto error;
  149|      0|    }
  150|      2|    state->PyExc_InterpreterError = (PyObject *)&_PyExc_InterpreterError;
  151|       |
  152|       |    // PyExc_InterpreterNotFoundError
  153|      2|    _PyExc_InterpreterNotFoundError.tp_traverse = base->tp_traverse;
  154|      2|    _PyExc_InterpreterNotFoundError.tp_clear = base->tp_clear;
  155|      2|    if (_PyStaticType_InitBuiltin(interp, &_PyExc_InterpreterNotFoundError) < 0) {
  ------------------
  |  Branch (155:9): [True: 0, False: 2]
  ------------------
  156|      0|        goto error;
  157|      0|    }
  158|      2|    state->PyExc_InterpreterNotFoundError =
  159|      2|            (PyObject *)&_PyExc_InterpreterNotFoundError;
  160|       |
  161|      2|    return 0;
  162|       |
  163|      0|error:
  164|      0|    fini_static_exctypes(state, interp);
  165|      0|    return -1;
  166|      2|}
crossinterp.c:init_heap_exctypes:
  184|      2|{
  185|      2|    if (_init_notshareableerror(state) < 0) {
  ------------------
  |  Branch (185:9): [True: 0, False: 2]
  ------------------
  186|      0|        goto error;
  187|      0|    }
  188|      2|    return 0;
  189|       |
  190|      0|error:
  191|      0|    fini_heap_exctypes(state);
  192|      0|    return -1;
  193|      2|}
crossinterp.c:_init_notshareableerror:
   46|      2|{
   47|      2|    const char *name = "concurrent.interpreters.NotShareableError";
   48|      2|    PyObject *base = PyExc_TypeError;
   49|      2|    PyObject *ns = NULL;
   50|      2|    PyObject *exctype = PyErr_NewException(name, base, ns);
   51|      2|    if (exctype == NULL) {
  ------------------
  |  Branch (51:9): [True: 0, False: 2]
  ------------------
   52|      0|        return -1;
   53|      0|    }
   54|      2|    state->PyExc_NotShareableError = exctype;
   55|      2|    return 0;
   56|      2|}

_Py_dg_strtod:
 1385|  3.51k|{
 1386|  3.51k|    int bb2, bb5, bbe, bd2, bd5, bs2, c, dsign, e, e1, error;
 1387|  3.51k|    int esign, i, j, k, lz, nd, nd0, odd, sign;
 1388|  3.51k|    const char *s, *s0, *s1;
 1389|  3.51k|    double aadj, aadj1;
 1390|  3.51k|    U aadj2, adj, rv, rv0;
 1391|  3.51k|    ULong y, z, abs_exp;
 1392|  3.51k|    Long L;
 1393|  3.51k|    BCinfo bc;
 1394|  3.51k|    Bigint *bb = NULL, *bd = NULL, *bd0 = NULL, *bs = NULL, *delta = NULL;
 1395|  3.51k|    size_t ndigits, fraclen;
 1396|  3.51k|    double result;
 1397|       |
 1398|  3.51k|    dval(&rv) = 0.;
  ------------------
  |  |  184|  3.51k|#define dval(x) (x)->d
  ------------------
 1399|       |
 1400|       |    /* Start parsing. */
 1401|  3.51k|    c = *(s = s00);
 1402|       |
 1403|       |    /* Parse optional sign, if present. */
 1404|  3.51k|    sign = 0;
 1405|  3.51k|    switch (c) {
  ------------------
  |  Branch (1405:13): [True: 22, False: 3.49k]
  ------------------
 1406|     19|    case '-':
  ------------------
  |  Branch (1406:5): [True: 19, False: 3.49k]
  ------------------
 1407|     19|        sign = 1;
 1408|     19|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|     19|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 1409|     22|    case '+':
  ------------------
  |  Branch (1409:5): [True: 3, False: 3.51k]
  ------------------
 1410|     22|        c = *++s;
 1411|  3.51k|    }
 1412|       |
 1413|       |    /* Skip leading zeros: lz is true iff there were leading zeros. */
 1414|  3.51k|    s1 = s;
 1415|  7.30k|    while (c == '0')
  ------------------
  |  Branch (1415:12): [True: 3.79k, False: 3.51k]
  ------------------
 1416|  3.79k|        c = *++s;
 1417|  3.51k|    lz = s != s1;
 1418|       |
 1419|       |    /* Point s0 at the first nonzero digit (if any).  fraclen will be the
 1420|       |       number of digits between the decimal point and the end of the
 1421|       |       digit string.  ndigits will be the total number of digits ignoring
 1422|       |       leading zeros. */
 1423|  3.51k|    s0 = s1 = s;
 1424|  7.53M|    while ('0' <= c && c <= '9')
  ------------------
  |  Branch (1424:12): [True: 7.53M, False: 2.62k]
  |  Branch (1424:24): [True: 7.53M, False: 885]
  ------------------
 1425|  7.53M|        c = *++s;
 1426|  3.51k|    ndigits = s - s1;
 1427|  3.51k|    fraclen = 0;
 1428|       |
 1429|       |    /* Parse decimal point and following digits. */
 1430|  3.51k|    if (c == '.') {
  ------------------
  |  Branch (1430:9): [True: 486, False: 3.02k]
  ------------------
 1431|    486|        c = *++s;
 1432|    486|        if (!ndigits) {
  ------------------
  |  Branch (1432:13): [True: 166, False: 320]
  ------------------
 1433|    166|            s1 = s;
 1434|  1.27M|            while (c == '0')
  ------------------
  |  Branch (1434:20): [True: 1.27M, False: 166]
  ------------------
 1435|  1.27M|                c = *++s;
 1436|    166|            lz = lz || s != s1;
  ------------------
  |  Branch (1436:18): [True: 12, False: 154]
  |  Branch (1436:24): [True: 32, False: 122]
  ------------------
 1437|    166|            fraclen += (s - s1);
 1438|    166|            s0 = s;
 1439|    166|        }
 1440|    486|        s1 = s;
 1441|  22.2M|        while ('0' <= c && c <= '9')
  ------------------
  |  Branch (1441:16): [True: 22.2M, False: 430]
  |  Branch (1441:28): [True: 22.2M, False: 56]
  ------------------
 1442|  22.2M|            c = *++s;
 1443|    486|        ndigits += s - s1;
 1444|    486|        fraclen += s - s1;
 1445|    486|    }
 1446|       |
 1447|       |    /* Now lz is true if and only if there were leading zero digits, and
 1448|       |       ndigits gives the total number of digits ignoring leading zeros.  A
 1449|       |       valid input must have at least one digit. */
 1450|  3.51k|    if (!ndigits && !lz) {
  ------------------
  |  Branch (1450:9): [True: 1.78k, False: 1.73k]
  |  Branch (1450:21): [True: 1.73k, False: 48]
  ------------------
 1451|  1.73k|        if (se)
  ------------------
  |  Branch (1451:13): [True: 1.73k, False: 0]
  ------------------
 1452|  1.73k|            *se = (char *)s00;
 1453|  1.73k|        goto parse_error;
 1454|  1.73k|    }
 1455|       |
 1456|       |    /* Range check ndigits and fraclen to make sure that they, and values
 1457|       |       computed with them, can safely fit in an int. */
 1458|  1.78k|    if (ndigits > MAX_DIGITS || fraclen > MAX_DIGITS) {
  ------------------
  |  |  202|  3.56k|#define MAX_DIGITS 1000000000U
  ------------------
                  if (ndigits > MAX_DIGITS || fraclen > MAX_DIGITS) {
  ------------------
  |  |  202|  1.78k|#define MAX_DIGITS 1000000000U
  ------------------
  |  Branch (1458:9): [True: 0, False: 1.78k]
  |  Branch (1458:33): [True: 0, False: 1.78k]
  ------------------
 1459|      0|        if (se)
  ------------------
  |  Branch (1459:13): [True: 0, False: 0]
  ------------------
 1460|      0|            *se = (char *)s00;
 1461|      0|        goto parse_error;
 1462|      0|    }
 1463|  1.78k|    nd = (int)ndigits;
 1464|  1.78k|    nd0 = (int)ndigits - (int)fraclen;
 1465|       |
 1466|       |    /* Parse exponent. */
 1467|  1.78k|    e = 0;
 1468|  1.78k|    if (c == 'e' || c == 'E') {
  ------------------
  |  Branch (1468:9): [True: 411, False: 1.36k]
  |  Branch (1468:21): [True: 408, False: 961]
  ------------------
 1469|    819|        s00 = s;
 1470|    819|        c = *++s;
 1471|       |
 1472|       |        /* Exponent sign. */
 1473|    819|        esign = 0;
 1474|    819|        switch (c) {
  ------------------
  |  Branch (1474:17): [True: 313, False: 506]
  ------------------
 1475|    312|        case '-':
  ------------------
  |  Branch (1475:9): [True: 312, False: 507]
  ------------------
 1476|    312|            esign = 1;
 1477|    312|            _Py_FALLTHROUGH;
  ------------------
  |  |  644|    312|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 1478|    313|        case '+':
  ------------------
  |  Branch (1478:9): [True: 1, False: 818]
  ------------------
 1479|    313|            c = *++s;
 1480|    819|        }
 1481|       |
 1482|       |        /* Skip zeros.  lz is true iff there are leading zeros. */
 1483|    819|        s1 = s;
 1484|  1.02k|        while (c == '0')
  ------------------
  |  Branch (1484:16): [True: 205, False: 819]
  ------------------
 1485|    205|            c = *++s;
 1486|    819|        lz = s != s1;
 1487|       |
 1488|       |        /* Get absolute value of the exponent. */
 1489|    819|        s1 = s;
 1490|    819|        abs_exp = 0;
 1491|  3.41M|        while ('0' <= c && c <= '9') {
  ------------------
  |  Branch (1491:16): [True: 3.41M, False: 814]
  |  Branch (1491:28): [True: 3.41M, False: 5]
  ------------------
 1492|  3.41M|            abs_exp = 10*abs_exp + (c - '0');
 1493|  3.41M|            c = *++s;
 1494|  3.41M|        }
 1495|       |
 1496|       |        /* abs_exp will be correct modulo 2**32.  But 10**9 < 2**32, so if
 1497|       |           there are at most 9 significant exponent digits then overflow is
 1498|       |           impossible. */
 1499|    819|        if (s - s1 > 9 || abs_exp > MAX_ABS_EXP)
  ------------------
  |  |  194|    797|#define MAX_ABS_EXP 1100000000U
  ------------------
  |  Branch (1499:13): [True: 22, False: 797]
  |  Branch (1499:27): [True: 0, False: 797]
  ------------------
 1500|     22|            e = (int)MAX_ABS_EXP;
  ------------------
  |  |  194|     22|#define MAX_ABS_EXP 1100000000U
  ------------------
 1501|    797|        else
 1502|    797|            e = (int)abs_exp;
 1503|    819|        if (esign)
  ------------------
  |  Branch (1503:13): [True: 312, False: 507]
  ------------------
 1504|    312|            e = -e;
 1505|       |
 1506|       |        /* A valid exponent must have at least one digit. */
 1507|    819|        if (s == s1 && !lz)
  ------------------
  |  Branch (1507:13): [True: 29, False: 790]
  |  Branch (1507:24): [True: 18, False: 11]
  ------------------
 1508|     18|            s = s00;
 1509|    819|    }
 1510|       |
 1511|       |    /* Adjust exponent to take into account position of the point. */
 1512|  1.78k|    e -= nd - nd0;
 1513|  1.78k|    if (nd0 <= 0)
  ------------------
  |  Branch (1513:9): [True: 168, False: 1.61k]
  ------------------
 1514|    168|        nd0 = nd;
 1515|       |
 1516|       |    /* Finished parsing.  Set se to indicate how far we parsed */
 1517|  1.78k|    if (se)
  ------------------
  |  Branch (1517:9): [True: 1.78k, False: 0]
  ------------------
 1518|  1.78k|        *se = (char *)s;
 1519|       |
 1520|       |    /* If all digits were zero, exit with return value +-0.0.  Otherwise,
 1521|       |       strip trailing zeros: scan back until we hit a nonzero digit. */
 1522|  1.78k|    if (!nd)
  ------------------
  |  Branch (1522:9): [True: 48, False: 1.73k]
  ------------------
 1523|     48|        goto ret;
 1524|  3.40M|    for (i = nd; i > 0; ) {
  ------------------
  |  Branch (1524:18): [True: 3.40M, False: 0]
  ------------------
 1525|  3.40M|        --i;
 1526|  3.40M|        if (s0[i < nd0 ? i : i+1] != '0') {
  ------------------
  |  Branch (1526:13): [True: 1.73k, False: 3.40M]
  |  Branch (1526:16): [True: 2.86M, False: 534k]
  ------------------
 1527|  1.73k|            ++i;
 1528|  1.73k|            break;
 1529|  1.73k|        }
 1530|  3.40M|    }
 1531|  1.73k|    e += nd - i;
 1532|  1.73k|    nd = i;
 1533|  1.73k|    if (nd0 > nd)
  ------------------
  |  Branch (1533:9): [True: 76, False: 1.65k]
  ------------------
 1534|     76|        nd0 = nd;
 1535|       |
 1536|       |    /* Summary of parsing results.  After parsing, and dealing with zero
 1537|       |     * inputs, we have values s0, nd0, nd, e, sign, where:
 1538|       |     *
 1539|       |     *  - s0 points to the first significant digit of the input string
 1540|       |     *
 1541|       |     *  - nd is the total number of significant digits (here, and
 1542|       |     *    below, 'significant digits' means the set of digits of the
 1543|       |     *    significand of the input that remain after ignoring leading
 1544|       |     *    and trailing zeros).
 1545|       |     *
 1546|       |     *  - nd0 indicates the position of the decimal point, if present; it
 1547|       |     *    satisfies 1 <= nd0 <= nd.  The nd significant digits are in
 1548|       |     *    s0[0:nd0] and s0[nd0+1:nd+1] using the usual Python half-open slice
 1549|       |     *    notation.  (If nd0 < nd, then s0[nd0] contains a '.'  character; if
 1550|       |     *    nd0 == nd, then s0[nd0] could be any non-digit character.)
 1551|       |     *
 1552|       |     *  - e is the adjusted exponent: the absolute value of the number
 1553|       |     *    represented by the original input string is n * 10**e, where
 1554|       |     *    n is the integer represented by the concatenation of
 1555|       |     *    s0[0:nd0] and s0[nd0+1:nd+1]
 1556|       |     *
 1557|       |     *  - sign gives the sign of the input:  1 for negative, 0 for positive
 1558|       |     *
 1559|       |     *  - the first and last significant digits are nonzero
 1560|       |     */
 1561|       |
 1562|       |    /* put first DBL_DIG+1 digits into integer y and z.
 1563|       |     *
 1564|       |     *  - y contains the value represented by the first min(9, nd)
 1565|       |     *    significant digits
 1566|       |     *
 1567|       |     *  - if nd > 9, z contains the value represented by significant digits
 1568|       |     *    with indices in [9, min(16, nd)).  So y * 10**(min(16, nd) - 9) + z
 1569|       |     *    gives the value represented by the first min(16, nd) sig. digits.
 1570|       |     */
 1571|       |
 1572|  1.73k|    bc.e0 = e1 = e;
 1573|  1.73k|    y = z = 0;
 1574|  19.2k|    for (i = 0; i < nd; i++) {
  ------------------
  |  Branch (1574:17): [True: 18.3k, False: 936]
  ------------------
 1575|  18.3k|        if (i < 9)
  ------------------
  |  Branch (1575:13): [True: 10.8k, False: 7.47k]
  ------------------
 1576|  10.8k|            y = 10*y + s0[i < nd0 ? i : i+1] - '0';
  ------------------
  |  Branch (1576:27): [True: 10.1k, False: 695]
  ------------------
 1577|  7.47k|        else if (i < DBL_DIG+1)
  ------------------
  |  Branch (1577:18): [True: 6.67k, False: 796]
  ------------------
 1578|  6.67k|            z = 10*z + s0[i < nd0 ? i : i+1] - '0';
  ------------------
  |  Branch (1578:27): [True: 5.60k, False: 1.07k]
  ------------------
 1579|    796|        else
 1580|    796|            break;
 1581|  18.3k|    }
 1582|       |
 1583|  1.73k|    k = nd < DBL_DIG + 1 ? nd : DBL_DIG + 1;
  ------------------
  |  Branch (1583:9): [True: 807, False: 925]
  ------------------
 1584|  1.73k|    dval(&rv) = y;
  ------------------
  |  |  184|  1.73k|#define dval(x) (x)->d
  ------------------
 1585|  1.73k|    if (k > 9) {
  ------------------
  |  Branch (1585:9): [True: 1.01k, False: 722]
  ------------------
 1586|  1.01k|        dval(&rv) = tens[k - 9] * dval(&rv) + z;
  ------------------
  |  |  184|  1.01k|#define dval(x) (x)->d
  ------------------
                      dval(&rv) = tens[k - 9] * dval(&rv) + z;
  ------------------
  |  |  184|  1.01k|#define dval(x) (x)->d
  ------------------
 1587|  1.01k|    }
 1588|  1.73k|    if (nd <= DBL_DIG
  ------------------
  |  Branch (1588:9): [True: 807, False: 925]
  ------------------
 1589|    807|        && Flt_Rounds == 1
  ------------------
  |  |  261|    807|#define Flt_Rounds FLT_ROUNDS
  ------------------
  |  Branch (1589:12): [True: 807, False: 0]
  ------------------
 1590|  1.73k|        ) {
 1591|    807|        if (!e)
  ------------------
  |  Branch (1591:13): [True: 82, False: 725]
  ------------------
 1592|     82|            goto ret;
 1593|    725|        if (e > 0) {
  ------------------
  |  Branch (1593:13): [True: 439, False: 286]
  ------------------
 1594|    439|            if (e <= Ten_pmax) {
  ------------------
  |  |  248|    439|#define Ten_pmax 22
  ------------------
  |  Branch (1594:17): [True: 19, False: 420]
  ------------------
 1595|     19|                dval(&rv) *= tens[e];
  ------------------
  |  |  184|     19|#define dval(x) (x)->d
  ------------------
 1596|     19|                goto ret;
 1597|     19|            }
 1598|    420|            i = DBL_DIG - nd;
 1599|    420|            if (e <= Ten_pmax + i) {
  ------------------
  |  |  248|    420|#define Ten_pmax 22
  ------------------
  |  Branch (1599:17): [True: 4, False: 416]
  ------------------
 1600|       |                /* A fancier test would sometimes let us do
 1601|       |                 * this for larger i values.
 1602|       |                 */
 1603|      4|                e -= i;
 1604|      4|                dval(&rv) *= tens[i];
  ------------------
  |  |  184|      4|#define dval(x) (x)->d
  ------------------
 1605|      4|                dval(&rv) *= tens[e];
  ------------------
  |  |  184|      4|#define dval(x) (x)->d
  ------------------
 1606|      4|                goto ret;
 1607|      4|            }
 1608|    420|        }
 1609|    286|        else if (e >= -Ten_pmax) {
  ------------------
  |  |  248|    286|#define Ten_pmax 22
  ------------------
  |  Branch (1609:18): [True: 35, False: 251]
  ------------------
 1610|     35|            dval(&rv) /= tens[-e];
  ------------------
  |  |  184|     35|#define dval(x) (x)->d
  ------------------
 1611|     35|            goto ret;
 1612|     35|        }
 1613|    725|    }
 1614|  1.59k|    e1 += nd - k;
 1615|       |
 1616|  1.59k|    bc.scale = 0;
 1617|       |
 1618|       |    /* Get starting approximation = rv * 10**e1 */
 1619|       |
 1620|  1.59k|    if (e1 > 0) {
  ------------------
  |  Branch (1620:9): [True: 947, False: 645]
  ------------------
 1621|    947|        if ((i = e1 & 15))
  ------------------
  |  Branch (1621:13): [True: 882, False: 65]
  ------------------
 1622|    882|            dval(&rv) *= tens[i];
  ------------------
  |  |  184|    882|#define dval(x) (x)->d
  ------------------
 1623|    947|        if (e1 &= ~15) {
  ------------------
  |  Branch (1623:13): [True: 743, False: 204]
  ------------------
 1624|    743|            if (e1 > DBL_MAX_10_EXP)
  ------------------
  |  Branch (1624:17): [True: 123, False: 620]
  ------------------
 1625|    123|                goto ovfl;
 1626|    620|            e1 >>= 4;
 1627|  1.46k|            for(j = 0; e1 > 1; j++, e1 >>= 1)
  ------------------
  |  Branch (1627:24): [True: 849, False: 620]
  ------------------
 1628|    849|                if (e1 & 1)
  ------------------
  |  Branch (1628:21): [True: 363, False: 486]
  ------------------
 1629|    363|                    dval(&rv) *= bigtens[j];
  ------------------
  |  |  184|    363|#define dval(x) (x)->d
  ------------------
 1630|       |            /* The last multiplication could overflow. */
 1631|    620|            word0(&rv) -= P*Exp_msk1;
  ------------------
  |  |  178|    620|#define word0(x) (x)->L[1]
  ------------------
                          word0(&rv) -= P*Exp_msk1;
  ------------------
  |  |  237|    620|#define P 53
  ------------------
                          word0(&rv) -= P*Exp_msk1;
  ------------------
  |  |  234|    620|#define Exp_msk1    0x100000
  ------------------
 1632|    620|            dval(&rv) *= bigtens[j];
  ------------------
  |  |  184|    620|#define dval(x) (x)->d
  ------------------
 1633|    620|            if ((z = word0(&rv) & Exp_mask)
  ------------------
  |  |  178|    620|#define word0(x) (x)->L[1]
  ------------------
                          if ((z = word0(&rv) & Exp_mask)
  ------------------
  |  |  236|    620|#define Exp_mask  0x7ff00000
  ------------------
  |  Branch (1633:17): [True: 1, False: 619]
  ------------------
 1634|    620|                > Exp_msk1*(DBL_MAX_EXP+Bias-P))
  ------------------
  |  |  234|    620|#define Exp_msk1    0x100000
  ------------------
                              > Exp_msk1*(DBL_MAX_EXP+Bias-P))
  ------------------
  |  |  239|    620|#define Bias 1023
  ------------------
                              > Exp_msk1*(DBL_MAX_EXP+Bias-P))
  ------------------
  |  |  237|    620|#define P 53
  ------------------
 1635|      1|                goto ovfl;
 1636|    619|            if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) {
  ------------------
  |  |  234|    619|#define Exp_msk1    0x100000
  ------------------
                          if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) {
  ------------------
  |  |  239|    619|#define Bias 1023
  ------------------
                          if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) {
  ------------------
  |  |  237|    619|#define P 53
  ------------------
  |  Branch (1636:17): [True: 27, False: 592]
  ------------------
 1637|       |                /* set to largest number */
 1638|       |                /* (Can't trust DBL_MAX) */
 1639|     27|                word0(&rv) = Big0;
  ------------------
  |  |  178|     27|#define word0(x) (x)->L[1]
  ------------------
                              word0(&rv) = Big0;
  ------------------
  |  |  269|     27|#define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  247|     27|#define Frac_mask1 0xfffff
  |  |  ------------------
  |  |               #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  234|     27|#define Exp_msk1    0x100000
  |  |  ------------------
  |  |               #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  239|     27|#define Bias 1023
  |  |  ------------------
  ------------------
 1640|     27|                word1(&rv) = Big1;
  ------------------
  |  |  179|     27|#define word1(x) (x)->L[0]
  ------------------
                              word1(&rv) = Big1;
  ------------------
  |  |  270|     27|#define Big1 0xffffffff
  ------------------
 1641|     27|            }
 1642|    592|            else
 1643|    592|                word0(&rv) += P*Exp_msk1;
  ------------------
  |  |  178|    592|#define word0(x) (x)->L[1]
  ------------------
                              word0(&rv) += P*Exp_msk1;
  ------------------
  |  |  237|    592|#define P 53
  ------------------
                              word0(&rv) += P*Exp_msk1;
  ------------------
  |  |  234|    592|#define Exp_msk1    0x100000
  ------------------
 1644|    619|        }
 1645|    947|    }
 1646|    645|    else if (e1 < 0) {
  ------------------
  |  Branch (1646:14): [True: 555, False: 90]
  ------------------
 1647|       |        /* The input decimal value lies in [10**e1, 10**(e1+16)).
 1648|       |
 1649|       |           If e1 <= -512, underflow immediately.
 1650|       |           If e1 <= -256, set bc.scale to 2*P.
 1651|       |
 1652|       |           So for input value < 1e-256, bc.scale is always set;
 1653|       |           for input value >= 1e-240, bc.scale is never set.
 1654|       |           For input values in [1e-256, 1e-240), bc.scale may or may
 1655|       |           not be set. */
 1656|       |
 1657|    555|        e1 = -e1;
 1658|    555|        if ((i = e1 & 15))
  ------------------
  |  Branch (1658:13): [True: 427, False: 128]
  ------------------
 1659|    427|            dval(&rv) /= tens[i];
  ------------------
  |  |  184|    427|#define dval(x) (x)->d
  ------------------
 1660|    555|        if (e1 >>= 4) {
  ------------------
  |  Branch (1660:13): [True: 409, False: 146]
  ------------------
 1661|    409|            if (e1 >= 1 << n_bigtens)
  ------------------
  |  | 1117|    409|#define n_bigtens 5
  ------------------
  |  Branch (1661:17): [True: 62, False: 347]
  ------------------
 1662|     62|                goto undfl;
 1663|    347|            if (e1 & Scale_Bit)
  ------------------
  |  | 1116|    347|#define Scale_Bit 0x10
  ------------------
  |  Branch (1663:17): [True: 176, False: 171]
  ------------------
 1664|    176|                bc.scale = 2*P;
  ------------------
  |  |  237|    176|#define P 53
  ------------------
 1665|  1.49k|            for(j = 0; e1 > 0; j++, e1 >>= 1)
  ------------------
  |  Branch (1665:24): [True: 1.14k, False: 347]
  ------------------
 1666|  1.14k|                if (e1 & 1)
  ------------------
  |  Branch (1666:21): [True: 645, False: 501]
  ------------------
 1667|    645|                    dval(&rv) *= tinytens[j];
  ------------------
  |  |  184|    645|#define dval(x) (x)->d
  ------------------
 1668|    347|            if (bc.scale && (j = 2*P + 1 - ((word0(&rv) & Exp_mask)
  ------------------
  |  |  237|    176|#define P 53
  ------------------
                          if (bc.scale && (j = 2*P + 1 - ((word0(&rv) & Exp_mask)
  ------------------
  |  |  178|    176|#define word0(x) (x)->L[1]
  ------------------
                          if (bc.scale && (j = 2*P + 1 - ((word0(&rv) & Exp_mask)
  ------------------
  |  |  236|    176|#define Exp_mask  0x7ff00000
  ------------------
  |  Branch (1668:17): [True: 176, False: 171]
  |  Branch (1668:29): [True: 129, False: 47]
  ------------------
 1669|    176|                                            >> Exp_shift)) > 0) {
  ------------------
  |  |  232|    176|#define Exp_shift  20
  ------------------
 1670|       |                /* scaled rv is denormal; clear j low bits */
 1671|    129|                if (j >= 32) {
  ------------------
  |  Branch (1671:21): [True: 73, False: 56]
  ------------------
 1672|     73|                    word1(&rv) = 0;
  ------------------
  |  |  179|     73|#define word1(x) (x)->L[0]
  ------------------
 1673|     73|                    if (j >= 53)
  ------------------
  |  Branch (1673:25): [True: 35, False: 38]
  ------------------
 1674|     35|                        word0(&rv) = (P+2)*Exp_msk1;
  ------------------
  |  |  178|     35|#define word0(x) (x)->L[1]
  ------------------
                                      word0(&rv) = (P+2)*Exp_msk1;
  ------------------
  |  |  237|     35|#define P 53
  ------------------
                                      word0(&rv) = (P+2)*Exp_msk1;
  ------------------
  |  |  234|     35|#define Exp_msk1    0x100000
  ------------------
 1675|     38|                    else
 1676|     38|                        word0(&rv) &= 0xffffffff << (j-32);
  ------------------
  |  |  178|     38|#define word0(x) (x)->L[1]
  ------------------
 1677|     73|                }
 1678|     56|                else
 1679|     56|                    word1(&rv) &= 0xffffffff << j;
  ------------------
  |  |  179|     56|#define word1(x) (x)->L[0]
  ------------------
 1680|    129|            }
 1681|    347|            if (!dval(&rv))
  ------------------
  |  |  184|    347|#define dval(x) (x)->d
  ------------------
  |  Branch (1681:17): [True: 0, False: 347]
  ------------------
 1682|      0|                goto undfl;
 1683|    347|        }
 1684|    555|    }
 1685|       |
 1686|       |    /* Now the hard part -- adjusting rv to the correct value.*/
 1687|       |
 1688|       |    /* Put digits into bd: true value = bd * 10^e */
 1689|       |
 1690|  1.40k|    bc.nd = nd;
 1691|  1.40k|    bc.nd0 = nd0;       /* Only needed if nd > STRTOD_DIGLIM, but done here */
 1692|       |                        /* to silence an erroneous warning about bc.nd0 */
 1693|       |                        /* possibly not being initialized. */
 1694|  1.40k|    if (nd > STRTOD_DIGLIM) {
  ------------------
  |  |  187|  1.40k|#define STRTOD_DIGLIM 40
  ------------------
  |  Branch (1694:9): [True: 485, False: 921]
  ------------------
 1695|       |        /* ASSERT(STRTOD_DIGLIM >= 18); 18 == one more than the */
 1696|       |        /* minimum number of decimal digits to distinguish double values */
 1697|       |        /* in IEEE arithmetic. */
 1698|       |
 1699|       |        /* Truncate input to 18 significant digits, then discard any trailing
 1700|       |           zeros on the result by updating nd, nd0, e and y suitably. (There's
 1701|       |           no need to update z; it's not reused beyond this point.) */
 1702|  2.39k|        for (i = 18; i > 0; ) {
  ------------------
  |  Branch (1702:22): [True: 2.39k, False: 0]
  ------------------
 1703|       |            /* scan back until we hit a nonzero digit.  significant digit 'i'
 1704|       |            is s0[i] if i < nd0, s0[i+1] if i >= nd0. */
 1705|  2.39k|            --i;
 1706|  2.39k|            if (s0[i < nd0 ? i : i+1] != '0') {
  ------------------
  |  Branch (1706:17): [True: 485, False: 1.91k]
  |  Branch (1706:20): [True: 1.89k, False: 507]
  ------------------
 1707|    485|                ++i;
 1708|    485|                break;
 1709|    485|            }
 1710|  2.39k|        }
 1711|    485|        e += nd - i;
 1712|    485|        nd = i;
 1713|    485|        if (nd0 > nd)
  ------------------
  |  Branch (1713:13): [True: 415, False: 70]
  ------------------
 1714|    415|            nd0 = nd;
 1715|    485|        if (nd < 9) { /* must recompute y */
  ------------------
  |  Branch (1715:13): [True: 98, False: 387]
  ------------------
 1716|     98|            y = 0;
 1717|    447|            for(i = 0; i < nd0; ++i)
  ------------------
  |  Branch (1717:24): [True: 349, False: 98]
  ------------------
 1718|    349|                y = 10*y + s0[i] - '0';
 1719|    126|            for(; i < nd; ++i)
  ------------------
  |  Branch (1719:19): [True: 28, False: 98]
  ------------------
 1720|     28|                y = 10*y + s0[i+1] - '0';
 1721|     98|        }
 1722|    485|    }
 1723|  1.40k|    bd0 = s2b(s0, nd0, nd, y);
 1724|  1.40k|    if (bd0 == NULL)
  ------------------
  |  Branch (1724:9): [True: 0, False: 1.40k]
  ------------------
 1725|      0|        goto failed_malloc;
 1726|       |
 1727|       |    /* Notation for the comments below.  Write:
 1728|       |
 1729|       |         - dv for the absolute value of the number represented by the original
 1730|       |           decimal input string.
 1731|       |
 1732|       |         - if we've truncated dv, write tdv for the truncated value.
 1733|       |           Otherwise, set tdv == dv.
 1734|       |
 1735|       |         - srv for the quantity rv/2^bc.scale; so srv is the current binary
 1736|       |           approximation to tdv (and dv).  It should be exactly representable
 1737|       |           in an IEEE 754 double.
 1738|       |    */
 1739|       |
 1740|  1.87k|    for(;;) {
 1741|       |
 1742|       |        /* This is the main correction loop for _Py_dg_strtod.
 1743|       |
 1744|       |           We've got a decimal value tdv, and a floating-point approximation
 1745|       |           srv=rv/2^bc.scale to tdv.  The aim is to determine whether srv is
 1746|       |           close enough (i.e., within 0.5 ulps) to tdv, and to compute a new
 1747|       |           approximation if not.
 1748|       |
 1749|       |           To determine whether srv is close enough to tdv, compute integers
 1750|       |           bd, bb and bs proportional to tdv, srv and 0.5 ulp(srv)
 1751|       |           respectively, and then use integer arithmetic to determine whether
 1752|       |           |tdv - srv| is less than, equal to, or greater than 0.5 ulp(srv).
 1753|       |        */
 1754|       |
 1755|  1.87k|        bd = Balloc(bd0->k);
 1756|  1.87k|        if (bd == NULL) {
  ------------------
  |  Branch (1756:13): [True: 0, False: 1.87k]
  ------------------
 1757|      0|            goto failed_malloc;
 1758|      0|        }
 1759|  1.87k|        Bcopy(bd, bd0);
  ------------------
  |  |  433|  1.87k|#define Bcopy(x,y) memcpy((char *)&x->sign, (char *)&y->sign,   \
  |  |  434|  1.87k|                          y->wds*sizeof(Long) + 2*sizeof(int))
  ------------------
 1760|  1.87k|        bb = sd2b(&rv, bc.scale, &bbe);   /* srv = bb * 2^bbe */
 1761|  1.87k|        if (bb == NULL) {
  ------------------
  |  Branch (1761:13): [True: 0, False: 1.87k]
  ------------------
 1762|      0|            goto failed_malloc;
 1763|      0|        }
 1764|       |        /* Record whether lsb of bb is odd, in case we need this
 1765|       |           for the round-to-even step later. */
 1766|  1.87k|        odd = bb->x[0] & 1;
 1767|       |
 1768|       |        /* tdv = bd * 10**e;  srv = bb * 2**bbe */
 1769|  1.87k|        bs = i2b(1);
 1770|  1.87k|        if (bs == NULL) {
  ------------------
  |  Branch (1770:13): [True: 0, False: 1.87k]
  ------------------
 1771|      0|            goto failed_malloc;
 1772|      0|        }
 1773|       |
 1774|  1.87k|        if (e >= 0) {
  ------------------
  |  Branch (1774:13): [True: 1.10k, False: 775]
  ------------------
 1775|  1.10k|            bb2 = bb5 = 0;
 1776|  1.10k|            bd2 = bd5 = e;
 1777|  1.10k|        }
 1778|    775|        else {
 1779|    775|            bb2 = bb5 = -e;
 1780|    775|            bd2 = bd5 = 0;
 1781|    775|        }
 1782|  1.87k|        if (bbe >= 0)
  ------------------
  |  Branch (1782:13): [True: 1.11k, False: 763]
  ------------------
 1783|  1.11k|            bb2 += bbe;
 1784|    763|        else
 1785|    763|            bd2 -= bbe;
 1786|  1.87k|        bs2 = bb2;
 1787|  1.87k|        bb2++;
 1788|  1.87k|        bd2++;
 1789|       |
 1790|       |        /* At this stage bd5 - bb5 == e == bd2 - bb2 + bbe, bb2 - bs2 == 1,
 1791|       |           and bs == 1, so:
 1792|       |
 1793|       |              tdv == bd * 10**e = bd * 2**(bbe - bb2 + bd2) * 5**(bd5 - bb5)
 1794|       |              srv == bb * 2**bbe = bb * 2**(bbe - bb2 + bb2)
 1795|       |              0.5 ulp(srv) == 2**(bbe-1) = bs * 2**(bbe - bb2 + bs2)
 1796|       |
 1797|       |           It follows that:
 1798|       |
 1799|       |              M * tdv = bd * 2**bd2 * 5**bd5
 1800|       |              M * srv = bb * 2**bb2 * 5**bb5
 1801|       |              M * 0.5 ulp(srv) = bs * 2**bs2 * 5**bb5
 1802|       |
 1803|       |           for some constant M.  (Actually, M == 2**(bb2 - bbe) * 5**bb5, but
 1804|       |           this fact is not needed below.)
 1805|       |        */
 1806|       |
 1807|       |        /* Remove factor of 2**i, where i = min(bb2, bd2, bs2). */
 1808|  1.87k|        i = bb2 < bd2 ? bb2 : bd2;
  ------------------
  |  Branch (1808:13): [True: 763, False: 1.11k]
  ------------------
 1809|  1.87k|        if (i > bs2)
  ------------------
  |  Branch (1809:13): [True: 768, False: 1.10k]
  ------------------
 1810|    768|            i = bs2;
 1811|  1.87k|        if (i > 0) {
  ------------------
  |  Branch (1811:13): [True: 1.84k, False: 27]
  ------------------
 1812|  1.84k|            bb2 -= i;
 1813|  1.84k|            bd2 -= i;
 1814|  1.84k|            bs2 -= i;
 1815|  1.84k|        }
 1816|       |
 1817|       |        /* Scale bb, bd, bs by the appropriate powers of 2 and 5. */
 1818|  1.87k|        if (bb5 > 0) {
  ------------------
  |  Branch (1818:13): [True: 775, False: 1.10k]
  ------------------
 1819|    775|            bs = pow5mult(bs, bb5);
 1820|    775|            if (bs == NULL) {
  ------------------
  |  Branch (1820:17): [True: 0, False: 775]
  ------------------
 1821|      0|                goto failed_malloc;
 1822|      0|            }
 1823|    775|            Bigint *bb1 = mult(bs, bb);
 1824|    775|            Bfree(bb);
 1825|    775|            bb = bb1;
 1826|    775|            if (bb == NULL) {
  ------------------
  |  Branch (1826:17): [True: 0, False: 775]
  ------------------
 1827|      0|                goto failed_malloc;
 1828|      0|            }
 1829|    775|        }
 1830|  1.87k|        if (bb2 > 0) {
  ------------------
  |  Branch (1830:13): [True: 1.87k, False: 0]
  ------------------
 1831|  1.87k|            bb = lshift(bb, bb2);
 1832|  1.87k|            if (bb == NULL) {
  ------------------
  |  Branch (1832:17): [True: 0, False: 1.87k]
  ------------------
 1833|      0|                goto failed_malloc;
 1834|      0|            }
 1835|  1.87k|        }
 1836|  1.87k|        if (bd5 > 0) {
  ------------------
  |  Branch (1836:13): [True: 841, False: 1.03k]
  ------------------
 1837|    841|            bd = pow5mult(bd, bd5);
 1838|    841|            if (bd == NULL) {
  ------------------
  |  Branch (1838:17): [True: 0, False: 841]
  ------------------
 1839|      0|                goto failed_malloc;
 1840|      0|            }
 1841|    841|        }
 1842|  1.87k|        if (bd2 > 0) {
  ------------------
  |  Branch (1842:13): [True: 768, False: 1.10k]
  ------------------
 1843|    768|            bd = lshift(bd, bd2);
 1844|    768|            if (bd == NULL) {
  ------------------
  |  Branch (1844:17): [True: 0, False: 768]
  ------------------
 1845|      0|                goto failed_malloc;
 1846|      0|            }
 1847|    768|        }
 1848|  1.87k|        if (bs2 > 0) {
  ------------------
  |  Branch (1848:13): [True: 948, False: 928]
  ------------------
 1849|    948|            bs = lshift(bs, bs2);
 1850|    948|            if (bs == NULL) {
  ------------------
  |  Branch (1850:17): [True: 0, False: 948]
  ------------------
 1851|      0|                goto failed_malloc;
 1852|      0|            }
 1853|    948|        }
 1854|       |
 1855|       |        /* Now bd, bb and bs are scaled versions of tdv, srv and 0.5 ulp(srv),
 1856|       |           respectively.  Compute the difference |tdv - srv|, and compare
 1857|       |           with 0.5 ulp(srv). */
 1858|       |
 1859|  1.87k|        delta = diff(bb, bd);
 1860|  1.87k|        if (delta == NULL) {
  ------------------
  |  Branch (1860:13): [True: 0, False: 1.87k]
  ------------------
 1861|      0|            goto failed_malloc;
 1862|      0|        }
 1863|  1.87k|        dsign = delta->sign;
 1864|  1.87k|        delta->sign = 0;
 1865|  1.87k|        i = cmp(delta, bs);
 1866|  1.87k|        if (bc.nd > nd && i <= 0) {
  ------------------
  |  Branch (1866:13): [True: 742, False: 1.13k]
  |  Branch (1866:27): [True: 485, False: 257]
  ------------------
 1867|    485|            if (dsign)
  ------------------
  |  Branch (1867:17): [True: 382, False: 103]
  ------------------
 1868|    382|                break;  /* Must use bigcomp(). */
 1869|       |
 1870|       |            /* Here rv overestimates the truncated decimal value by at most
 1871|       |               0.5 ulp(rv).  Hence rv either overestimates the true decimal
 1872|       |               value by <= 0.5 ulp(rv), or underestimates it by some small
 1873|       |               amount (< 0.1 ulp(rv)); either way, rv is within 0.5 ulps of
 1874|       |               the true decimal value, so it's possible to exit.
 1875|       |
 1876|       |               Exception: if scaled rv is a normal exact power of 2, but not
 1877|       |               DBL_MIN, then rv - 0.5 ulp(rv) takes us all the way down to the
 1878|       |               next double, so the correctly rounded result is either rv - 0.5
 1879|       |               ulp(rv) or rv; in this case, use bigcomp to distinguish. */
 1880|       |
 1881|    103|            if (!word1(&rv) && !(word0(&rv) & Bndry_mask)) {
  ------------------
  |  |  179|    206|#define word1(x) (x)->L[0]
  ------------------
                          if (!word1(&rv) && !(word0(&rv) & Bndry_mask)) {
  ------------------
  |  |  178|     44|#define word0(x) (x)->L[1]
  ------------------
                          if (!word1(&rv) && !(word0(&rv) & Bndry_mask)) {
  ------------------
  |  |  250|     44|#define Bndry_mask  0xfffff
  ------------------
  |  Branch (1881:17): [True: 44, False: 59]
  |  Branch (1881:32): [True: 30, False: 14]
  ------------------
 1882|       |                /* rv can't be 0, since it's an overestimate for some
 1883|       |                   nonzero value.  So rv is a normal power of 2. */
 1884|     30|                j = (int)(word0(&rv) & Exp_mask) >> Exp_shift;
  ------------------
  |  |  178|     30|#define word0(x) (x)->L[1]
  ------------------
                              j = (int)(word0(&rv) & Exp_mask) >> Exp_shift;
  ------------------
  |  |  236|     30|#define Exp_mask  0x7ff00000
  ------------------
                              j = (int)(word0(&rv) & Exp_mask) >> Exp_shift;
  ------------------
  |  |  232|     30|#define Exp_shift  20
  ------------------
 1885|       |                /* rv / 2^bc.scale = 2^(j - 1023 - bc.scale); use bigcomp if
 1886|       |                   rv / 2^bc.scale >= 2^-1021. */
 1887|     30|                if (j - bc.scale >= 2) {
  ------------------
  |  Branch (1887:21): [True: 23, False: 7]
  ------------------
 1888|     23|                    dval(&rv) -= 0.5 * sulp(&rv, &bc);
  ------------------
  |  |  184|     23|#define dval(x) (x)->d
  ------------------
 1889|     23|                    break; /* Use bigcomp. */
 1890|     23|                }
 1891|     30|            }
 1892|       |
 1893|     80|            {
 1894|     80|                bc.nd = nd;
 1895|     80|                i = -1; /* Discarded digits make delta smaller. */
 1896|     80|            }
 1897|     80|        }
 1898|       |
 1899|  1.47k|        if (i < 0) {
  ------------------
  |  Branch (1899:13): [True: 515, False: 956]
  ------------------
 1900|       |            /* Error is less than half an ulp -- check for
 1901|       |             * special case of mantissa a power of two.
 1902|       |             */
 1903|    515|            if (dsign || word1(&rv) || word0(&rv) & Bndry_mask
  ------------------
  |  |  179|    899|#define word1(x) (x)->L[0]
  |  |  ------------------
  |  |  |  Branch (179:18): [True: 224, False: 160]
  |  |  ------------------
  ------------------
                          if (dsign || word1(&rv) || word0(&rv) & Bndry_mask
  ------------------
  |  |  178|    160|#define word0(x) (x)->L[1]
  ------------------
                          if (dsign || word1(&rv) || word0(&rv) & Bndry_mask
  ------------------
  |  |  250|    675|#define Bndry_mask  0xfffff
  ------------------
  |  Branch (1903:17): [True: 131, False: 384]
  |  Branch (1903:40): [True: 36, False: 124]
  ------------------
 1904|    124|                || (word0(&rv) & Exp_mask) <= (2*P+1)*Exp_msk1
  ------------------
  |  |  178|    124|#define word0(x) (x)->L[1]
  ------------------
                              || (word0(&rv) & Exp_mask) <= (2*P+1)*Exp_msk1
  ------------------
  |  |  236|    124|#define Exp_mask  0x7ff00000
  ------------------
                              || (word0(&rv) & Exp_mask) <= (2*P+1)*Exp_msk1
  ------------------
  |  |  237|    124|#define P 53
  ------------------
                              || (word0(&rv) & Exp_mask) <= (2*P+1)*Exp_msk1
  ------------------
  |  |  234|    124|#define Exp_msk1    0x100000
  ------------------
  |  Branch (1904:20): [True: 16, False: 108]
  ------------------
 1905|    515|                ) {
 1906|    407|                break;
 1907|    407|            }
 1908|    108|            if (!delta->x[0] && delta->wds <= 1) {
  ------------------
  |  Branch (1908:17): [True: 16, False: 92]
  |  Branch (1908:33): [True: 1, False: 15]
  ------------------
 1909|       |                /* exact result */
 1910|      1|                break;
 1911|      1|            }
 1912|    107|            delta = lshift(delta,Log2P);
  ------------------
  |  |  253|    107|#define Log2P 1
  ------------------
 1913|    107|            if (delta == NULL) {
  ------------------
  |  Branch (1913:17): [True: 0, False: 107]
  ------------------
 1914|      0|                goto failed_malloc;
 1915|      0|            }
 1916|    107|            if (cmp(delta, bs) > 0)
  ------------------
  |  Branch (1916:17): [True: 33, False: 74]
  ------------------
 1917|     33|                goto drop_down;
 1918|     74|            break;
 1919|    107|        }
 1920|    956|        if (i == 0) {
  ------------------
  |  Branch (1920:13): [True: 157, False: 799]
  ------------------
 1921|       |            /* exactly half-way between */
 1922|    157|            if (dsign) {
  ------------------
  |  Branch (1922:17): [True: 89, False: 68]
  ------------------
 1923|     89|                if ((word0(&rv) & Bndry_mask1) == Bndry_mask1
  ------------------
  |  |  178|     89|#define word0(x) (x)->L[1]
  ------------------
                              if ((word0(&rv) & Bndry_mask1) == Bndry_mask1
  ------------------
  |  |  251|     89|#define Bndry_mask1 0xfffff
  ------------------
                              if ((word0(&rv) & Bndry_mask1) == Bndry_mask1
  ------------------
  |  |  251|    178|#define Bndry_mask1 0xfffff
  ------------------
  |  Branch (1923:21): [True: 51, False: 38]
  ------------------
 1924|     51|                    &&  word1(&rv) == (
  ------------------
  |  |  179|     51|#define word1(x) (x)->L[0]
  ------------------
  |  Branch (1924:25): [True: 1, False: 50]
  ------------------
 1925|     51|                        (bc.scale &&
  ------------------
  |  Branch (1925:26): [True: 0, False: 51]
  ------------------
 1926|      0|                         (y = word0(&rv) & Exp_mask) <= 2*P*Exp_msk1) ?
  ------------------
  |  |  178|      0|#define word0(x) (x)->L[1]
  ------------------
                                       (y = word0(&rv) & Exp_mask) <= 2*P*Exp_msk1) ?
  ------------------
  |  |  236|      0|#define Exp_mask  0x7ff00000
  ------------------
                                       (y = word0(&rv) & Exp_mask) <= 2*P*Exp_msk1) ?
  ------------------
  |  |  237|      0|#define P 53
  ------------------
                                       (y = word0(&rv) & Exp_mask) <= 2*P*Exp_msk1) ?
  ------------------
  |  |  234|      0|#define Exp_msk1    0x100000
  ------------------
  |  Branch (1926:26): [True: 0, False: 0]
  ------------------
 1927|      0|                        (0xffffffff & (0xffffffff << (2*P+1-(y>>Exp_shift)))) :
  ------------------
  |  |  237|      0|#define P 53
  ------------------
                                      (0xffffffff & (0xffffffff << (2*P+1-(y>>Exp_shift)))) :
  ------------------
  |  |  232|      0|#define Exp_shift  20
  ------------------
 1928|     51|                        0xffffffff)) {
 1929|       |                    /*boundary case -- increment exponent*/
 1930|      1|                    word0(&rv) = (word0(&rv) & Exp_mask)
  ------------------
  |  |  178|      1|#define word0(x) (x)->L[1]
  ------------------
                                  word0(&rv) = (word0(&rv) & Exp_mask)
  ------------------
  |  |  178|      1|#define word0(x) (x)->L[1]
  ------------------
                                  word0(&rv) = (word0(&rv) & Exp_mask)
  ------------------
  |  |  236|      1|#define Exp_mask  0x7ff00000
  ------------------
 1931|      1|                        + Exp_msk1
  ------------------
  |  |  234|      1|#define Exp_msk1    0x100000
  ------------------
 1932|      1|                        ;
 1933|      1|                    word1(&rv) = 0;
  ------------------
  |  |  179|      1|#define word1(x) (x)->L[0]
  ------------------
 1934|       |                    /* dsign = 0; */
 1935|      1|                    break;
 1936|      1|                }
 1937|     89|            }
 1938|     68|            else if (!(word0(&rv) & Bndry_mask) && !word1(&rv)) {
  ------------------
  |  |  178|     68|#define word0(x) (x)->L[1]
  ------------------
                          else if (!(word0(&rv) & Bndry_mask) && !word1(&rv)) {
  ------------------
  |  |  250|     68|#define Bndry_mask  0xfffff
  ------------------
                          else if (!(word0(&rv) & Bndry_mask) && !word1(&rv)) {
  ------------------
  |  |  179|     45|#define word1(x) (x)->L[0]
  ------------------
  |  Branch (1938:22): [True: 45, False: 23]
  |  Branch (1938:52): [True: 0, False: 45]
  ------------------
 1939|     33|              drop_down:
 1940|       |                /* boundary case -- decrement exponent */
 1941|     33|                if (bc.scale) {
  ------------------
  |  Branch (1941:21): [True: 0, False: 33]
  ------------------
 1942|      0|                    L = word0(&rv) & Exp_mask;
  ------------------
  |  |  178|      0|#define word0(x) (x)->L[1]
  ------------------
                                  L = word0(&rv) & Exp_mask;
  ------------------
  |  |  236|      0|#define Exp_mask  0x7ff00000
  ------------------
 1943|      0|                    if (L <= (2*P+1)*Exp_msk1) {
  ------------------
  |  |  237|      0|#define P 53
  ------------------
                                  if (L <= (2*P+1)*Exp_msk1) {
  ------------------
  |  |  234|      0|#define Exp_msk1    0x100000
  ------------------
  |  Branch (1943:25): [True: 0, False: 0]
  ------------------
 1944|      0|                        if (L > (P+2)*Exp_msk1)
  ------------------
  |  |  237|      0|#define P 53
  ------------------
                                      if (L > (P+2)*Exp_msk1)
  ------------------
  |  |  234|      0|#define Exp_msk1    0x100000
  ------------------
  |  Branch (1944:29): [True: 0, False: 0]
  ------------------
 1945|       |                            /* round even ==> */
 1946|       |                            /* accept rv */
 1947|      0|                            break;
 1948|       |                        /* rv = smallest denormal */
 1949|      0|                        if (bc.nd > nd)
  ------------------
  |  Branch (1949:29): [True: 0, False: 0]
  ------------------
 1950|      0|                            break;
 1951|      0|                        goto undfl;
 1952|      0|                    }
 1953|      0|                }
 1954|     33|                L = (word0(&rv) & Exp_mask) - Exp_msk1;
  ------------------
  |  |  178|     33|#define word0(x) (x)->L[1]
  ------------------
                              L = (word0(&rv) & Exp_mask) - Exp_msk1;
  ------------------
  |  |  236|     33|#define Exp_mask  0x7ff00000
  ------------------
                              L = (word0(&rv) & Exp_mask) - Exp_msk1;
  ------------------
  |  |  234|     33|#define Exp_msk1    0x100000
  ------------------
 1955|     33|                word0(&rv) = L | Bndry_mask1;
  ------------------
  |  |  178|     33|#define word0(x) (x)->L[1]
  ------------------
                              word0(&rv) = L | Bndry_mask1;
  ------------------
  |  |  251|     33|#define Bndry_mask1 0xfffff
  ------------------
 1956|     33|                word1(&rv) = 0xffffffff;
  ------------------
  |  |  179|     33|#define word1(x) (x)->L[0]
  ------------------
 1957|     33|                break;
 1958|     33|            }
 1959|    156|            if (!odd)
  ------------------
  |  Branch (1959:17): [True: 116, False: 40]
  ------------------
 1960|    116|                break;
 1961|     40|            if (dsign)
  ------------------
  |  Branch (1961:17): [True: 37, False: 3]
  ------------------
 1962|     37|                dval(&rv) += sulp(&rv, &bc);
  ------------------
  |  |  184|     37|#define dval(x) (x)->d
  ------------------
 1963|      3|            else {
 1964|      3|                dval(&rv) -= sulp(&rv, &bc);
  ------------------
  |  |  184|      3|#define dval(x) (x)->d
  ------------------
 1965|      3|                if (!dval(&rv)) {
  ------------------
  |  |  184|      3|#define dval(x) (x)->d
  ------------------
  |  Branch (1965:21): [True: 0, False: 3]
  ------------------
 1966|      0|                    if (bc.nd >nd)
  ------------------
  |  Branch (1966:25): [True: 0, False: 0]
  ------------------
 1967|      0|                        break;
 1968|      0|                    goto undfl;
 1969|      0|                }
 1970|      3|            }
 1971|       |            /* dsign = 1 - dsign; */
 1972|     40|            break;
 1973|     40|        }
 1974|    799|        if ((aadj = ratio(delta, bs)) <= 2.) {
  ------------------
  |  Branch (1974:13): [True: 493, False: 306]
  ------------------
 1975|    493|            if (dsign)
  ------------------
  |  Branch (1975:17): [True: 181, False: 312]
  ------------------
 1976|    181|                aadj = aadj1 = 1.;
 1977|    312|            else if (word1(&rv) || word0(&rv) & Bndry_mask) {
  ------------------
  |  |  179|    624|#define word1(x) (x)->L[0]
  |  |  ------------------
  |  |  |  Branch (179:18): [True: 264, False: 48]
  |  |  ------------------
  ------------------
                          else if (word1(&rv) || word0(&rv) & Bndry_mask) {
  ------------------
  |  |  178|     48|#define word0(x) (x)->L[1]
  ------------------
                          else if (word1(&rv) || word0(&rv) & Bndry_mask) {
  ------------------
  |  |  250|     48|#define Bndry_mask  0xfffff
  ------------------
  |  Branch (1977:36): [True: 14, False: 34]
  ------------------
 1978|    278|                if (word1(&rv) == Tiny1 && !word0(&rv)) {
  ------------------
  |  |  179|    278|#define word1(x) (x)->L[0]
  ------------------
                              if (word1(&rv) == Tiny1 && !word0(&rv)) {
  ------------------
  |  |  255|    556|#define Tiny1 1
  ------------------
                              if (word1(&rv) == Tiny1 && !word0(&rv)) {
  ------------------
  |  |  178|     19|#define word0(x) (x)->L[1]
  ------------------
  |  Branch (1978:21): [True: 19, False: 259]
  |  Branch (1978:44): [True: 0, False: 19]
  ------------------
 1979|      0|                    if (bc.nd >nd)
  ------------------
  |  Branch (1979:25): [True: 0, False: 0]
  ------------------
 1980|      0|                        break;
 1981|      0|                    goto undfl;
 1982|      0|                }
 1983|    278|                aadj = 1.;
 1984|    278|                aadj1 = -1.;
 1985|    278|            }
 1986|     34|            else {
 1987|       |                /* special case -- power of FLT_RADIX to be */
 1988|       |                /* rounded down... */
 1989|       |
 1990|     34|                if (aadj < 2./FLT_RADIX)
  ------------------
  |  Branch (1990:21): [True: 0, False: 34]
  ------------------
 1991|      0|                    aadj = 1./FLT_RADIX;
 1992|     34|                else
 1993|     34|                    aadj *= 0.5;
 1994|     34|                aadj1 = -aadj;
 1995|     34|            }
 1996|    493|        }
 1997|    306|        else {
 1998|    306|            aadj *= 0.5;
 1999|    306|            aadj1 = dsign ? aadj : -aadj;
  ------------------
  |  Branch (1999:21): [True: 260, False: 46]
  ------------------
 2000|    306|            if (Flt_Rounds == 0)
  ------------------
  |  |  261|    306|#define Flt_Rounds FLT_ROUNDS
  ------------------
  |  Branch (2000:17): [True: 0, False: 306]
  ------------------
 2001|      0|                aadj1 += 0.5;
 2002|    306|        }
 2003|    799|        y = word0(&rv) & Exp_mask;
  ------------------
  |  |  178|    799|#define word0(x) (x)->L[1]
  ------------------
                      y = word0(&rv) & Exp_mask;
  ------------------
  |  |  236|    799|#define Exp_mask  0x7ff00000
  ------------------
 2004|       |
 2005|       |        /* Check for overflow */
 2006|       |
 2007|    799|        if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) {
  ------------------
  |  |  234|    799|#define Exp_msk1    0x100000
  ------------------
                      if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) {
  ------------------
  |  |  239|    799|#define Bias 1023
  ------------------
  |  Branch (2007:13): [True: 34, False: 765]
  ------------------
 2008|     34|            dval(&rv0) = dval(&rv);
  ------------------
  |  |  184|     34|#define dval(x) (x)->d
  ------------------
                          dval(&rv0) = dval(&rv);
  ------------------
  |  |  184|     34|#define dval(x) (x)->d
  ------------------
 2009|     34|            word0(&rv) -= P*Exp_msk1;
  ------------------
  |  |  178|     34|#define word0(x) (x)->L[1]
  ------------------
                          word0(&rv) -= P*Exp_msk1;
  ------------------
  |  |  237|     34|#define P 53
  ------------------
                          word0(&rv) -= P*Exp_msk1;
  ------------------
  |  |  234|     34|#define Exp_msk1    0x100000
  ------------------
 2010|     34|            adj.d = aadj1 * ulp(&rv);
 2011|     34|            dval(&rv) += adj.d;
  ------------------
  |  |  184|     34|#define dval(x) (x)->d
  ------------------
 2012|     34|            if ((word0(&rv) & Exp_mask) >=
  ------------------
  |  |  178|     34|#define word0(x) (x)->L[1]
  ------------------
                          if ((word0(&rv) & Exp_mask) >=
  ------------------
  |  |  236|     34|#define Exp_mask  0x7ff00000
  ------------------
  |  Branch (2012:17): [True: 33, False: 1]
  ------------------
 2013|     34|                Exp_msk1*(DBL_MAX_EXP+Bias-P)) {
  ------------------
  |  |  234|     34|#define Exp_msk1    0x100000
  ------------------
                              Exp_msk1*(DBL_MAX_EXP+Bias-P)) {
  ------------------
  |  |  239|     34|#define Bias 1023
  ------------------
                              Exp_msk1*(DBL_MAX_EXP+Bias-P)) {
  ------------------
  |  |  237|     34|#define P 53
  ------------------
 2014|     33|                if (word0(&rv0) == Big0 && word1(&rv0) == Big1) {
  ------------------
  |  |  178|     33|#define word0(x) (x)->L[1]
  ------------------
                              if (word0(&rv0) == Big0 && word1(&rv0) == Big1) {
  ------------------
  |  |  269|     66|#define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  247|     33|#define Frac_mask1 0xfffff
  |  |  ------------------
  |  |               #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  234|     33|#define Exp_msk1    0x100000
  |  |  ------------------
  |  |               #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  239|     33|#define Bias 1023
  |  |  ------------------
  ------------------
                              if (word0(&rv0) == Big0 && word1(&rv0) == Big1) {
  ------------------
  |  |  179|     33|#define word1(x) (x)->L[0]
  ------------------
                              if (word0(&rv0) == Big0 && word1(&rv0) == Big1) {
  ------------------
  |  |  270|     33|#define Big1 0xffffffff
  ------------------
  |  Branch (2014:21): [True: 33, False: 0]
  |  Branch (2014:44): [True: 30, False: 3]
  ------------------
 2015|     30|                    goto ovfl;
 2016|     30|                }
 2017|      3|                word0(&rv) = Big0;
  ------------------
  |  |  178|      3|#define word0(x) (x)->L[1]
  ------------------
                              word0(&rv) = Big0;
  ------------------
  |  |  269|      3|#define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  247|      3|#define Frac_mask1 0xfffff
  |  |  ------------------
  |  |               #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  234|      3|#define Exp_msk1    0x100000
  |  |  ------------------
  |  |               #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
  |  |  ------------------
  |  |  |  |  239|      3|#define Bias 1023
  |  |  ------------------
  ------------------
 2018|      3|                word1(&rv) = Big1;
  ------------------
  |  |  179|      3|#define word1(x) (x)->L[0]
  ------------------
                              word1(&rv) = Big1;
  ------------------
  |  |  270|      3|#define Big1 0xffffffff
  ------------------
 2019|      3|                goto cont;
 2020|     33|            }
 2021|      1|            else
 2022|      1|                word0(&rv) += P*Exp_msk1;
  ------------------
  |  |  178|      1|#define word0(x) (x)->L[1]
  ------------------
                              word0(&rv) += P*Exp_msk1;
  ------------------
  |  |  237|      1|#define P 53
  ------------------
                              word0(&rv) += P*Exp_msk1;
  ------------------
  |  |  234|      1|#define Exp_msk1    0x100000
  ------------------
 2023|     34|        }
 2024|    765|        else {
 2025|    765|            if (bc.scale && y <= 2*P*Exp_msk1) {
  ------------------
  |  |  237|    141|#define P 53
  ------------------
                          if (bc.scale && y <= 2*P*Exp_msk1) {
  ------------------
  |  |  234|    141|#define Exp_msk1    0x100000
  ------------------
  |  Branch (2025:17): [True: 141, False: 624]
  |  Branch (2025:29): [True: 114, False: 27]
  ------------------
 2026|    114|                if (aadj <= 0x7fffffff) {
  ------------------
  |  Branch (2026:21): [True: 114, False: 0]
  ------------------
 2027|    114|                    if ((z = (ULong)aadj) <= 0)
  ------------------
  |  Branch (2027:25): [True: 12, False: 102]
  ------------------
 2028|     12|                        z = 1;
 2029|    114|                    aadj = z;
 2030|    114|                    aadj1 = dsign ? aadj : -aadj;
  ------------------
  |  Branch (2030:29): [True: 79, False: 35]
  ------------------
 2031|    114|                }
 2032|    114|                dval(&aadj2) = aadj1;
  ------------------
  |  |  184|    114|#define dval(x) (x)->d
  ------------------
 2033|    114|                word0(&aadj2) += (2*P+1)*Exp_msk1 - y;
  ------------------
  |  |  178|    114|#define word0(x) (x)->L[1]
  ------------------
                              word0(&aadj2) += (2*P+1)*Exp_msk1 - y;
  ------------------
  |  |  237|    114|#define P 53
  ------------------
                              word0(&aadj2) += (2*P+1)*Exp_msk1 - y;
  ------------------
  |  |  234|    114|#define Exp_msk1    0x100000
  ------------------
 2034|    114|                aadj1 = dval(&aadj2);
  ------------------
  |  |  184|    114|#define dval(x) (x)->d
  ------------------
 2035|    114|            }
 2036|    765|            adj.d = aadj1 * ulp(&rv);
 2037|    765|            dval(&rv) += adj.d;
  ------------------
  |  |  184|    765|#define dval(x) (x)->d
  ------------------
 2038|    765|        }
 2039|    766|        z = word0(&rv) & Exp_mask;
  ------------------
  |  |  178|    766|#define word0(x) (x)->L[1]
  ------------------
                      z = word0(&rv) & Exp_mask;
  ------------------
  |  |  236|    766|#define Exp_mask  0x7ff00000
  ------------------
 2040|    766|        if (bc.nd == nd) {
  ------------------
  |  Branch (2040:13): [True: 509, False: 257]
  ------------------
 2041|    509|            if (!bc.scale)
  ------------------
  |  Branch (2041:17): [True: 388, False: 121]
  ------------------
 2042|    388|                if (y == z) {
  ------------------
  |  Branch (2042:21): [True: 326, False: 62]
  ------------------
 2043|       |                    /* Can we stop now? */
 2044|    326|                    L = (Long)aadj;
 2045|    326|                    aadj -= L;
 2046|       |                    /* The tolerances below are conservative. */
 2047|    326|                    if (dsign || word1(&rv) || word0(&rv) & Bndry_mask) {
  ------------------
  |  |  179|    579|#define word1(x) (x)->L[0]
  |  |  ------------------
  |  |  |  Branch (179:18): [True: 234, False: 19]
  |  |  ------------------
  ------------------
                                  if (dsign || word1(&rv) || word0(&rv) & Bndry_mask) {
  ------------------
  |  |  178|     19|#define word0(x) (x)->L[1]
  ------------------
                                  if (dsign || word1(&rv) || word0(&rv) & Bndry_mask) {
  ------------------
  |  |  250|     19|#define Bndry_mask  0xfffff
  ------------------
  |  Branch (2047:25): [True: 73, False: 253]
  |  Branch (2047:48): [True: 17, False: 2]
  ------------------
 2048|    324|                        if (aadj < .4999999 || aadj > .5000001)
  ------------------
  |  Branch (2048:29): [True: 283, False: 41]
  |  Branch (2048:48): [True: 14, False: 27]
  ------------------
 2049|    297|                            break;
 2050|    324|                    }
 2051|      2|                    else if (aadj < .4999999/FLT_RADIX)
  ------------------
  |  Branch (2051:30): [True: 2, False: 0]
  ------------------
 2052|      2|                        break;
 2053|    326|                }
 2054|    509|        }
 2055|    470|      cont:
 2056|    470|        Bfree(bb); bb = NULL;
 2057|    470|        Bfree(bd); bd = NULL;
 2058|    470|        Bfree(bs); bs = NULL;
 2059|    470|        Bfree(delta); delta = NULL;
 2060|    470|    }
 2061|  1.37k|    if (bc.nd > nd) {
  ------------------
  |  Branch (2061:9): [True: 405, False: 971]
  ------------------
 2062|    405|        error = bigcomp(&rv, s0, &bc);
 2063|    405|        if (error)
  ------------------
  |  Branch (2063:13): [True: 0, False: 405]
  ------------------
 2064|      0|            goto failed_malloc;
 2065|    405|    }
 2066|       |
 2067|  1.37k|    if (bc.scale) {
  ------------------
  |  Branch (2067:9): [True: 176, False: 1.20k]
  ------------------
 2068|    176|        word0(&rv0) = Exp_1 - 2*P*Exp_msk1;
  ------------------
  |  |  178|    176|#define word0(x) (x)->L[1]
  ------------------
                      word0(&rv0) = Exp_1 - 2*P*Exp_msk1;
  ------------------
  |  |  243|    176|#define Exp_1  0x3ff00000
  ------------------
                      word0(&rv0) = Exp_1 - 2*P*Exp_msk1;
  ------------------
  |  |  237|    176|#define P 53
  ------------------
                      word0(&rv0) = Exp_1 - 2*P*Exp_msk1;
  ------------------
  |  |  234|    176|#define Exp_msk1    0x100000
  ------------------
 2069|    176|        word1(&rv0) = 0;
  ------------------
  |  |  179|    176|#define word1(x) (x)->L[0]
  ------------------
 2070|    176|        dval(&rv) *= dval(&rv0);
  ------------------
  |  |  184|    176|#define dval(x) (x)->d
  ------------------
                      dval(&rv) *= dval(&rv0);
  ------------------
  |  |  184|    176|#define dval(x) (x)->d
  ------------------
 2071|    176|    }
 2072|       |
 2073|  1.56k|  ret:
 2074|  1.56k|    result = sign ? -dval(&rv) : dval(&rv);
  ------------------
  |  |  184|      3|#define dval(x) (x)->d
  ------------------
                  result = sign ? -dval(&rv) : dval(&rv);
  ------------------
  |  |  184|  3.12k|#define dval(x) (x)->d
  ------------------
  |  Branch (2074:14): [True: 3, False: 1.56k]
  ------------------
 2075|  1.56k|    goto done;
 2076|       |
 2077|  1.73k|  parse_error:
 2078|  1.73k|    result = 0.0;
 2079|  1.73k|    goto done;
 2080|       |
 2081|      0|  failed_malloc:
 2082|      0|    errno = ENOMEM;
 2083|      0|    result = -1.0;
 2084|      0|    goto done;
 2085|       |
 2086|     62|  undfl:
 2087|     62|    result = sign ? -0.0 : 0.0;
  ------------------
  |  Branch (2087:14): [True: 0, False: 62]
  ------------------
 2088|     62|    goto done;
 2089|       |
 2090|    154|  ovfl:
 2091|    154|    errno = ERANGE;
 2092|       |    /* Can't trust HUGE_VAL */
 2093|    154|    word0(&rv) = Exp_mask;
  ------------------
  |  |  178|    154|#define word0(x) (x)->L[1]
  ------------------
                  word0(&rv) = Exp_mask;
  ------------------
  |  |  236|    154|#define Exp_mask  0x7ff00000
  ------------------
 2094|    154|    word1(&rv) = 0;
  ------------------
  |  |  179|    154|#define word1(x) (x)->L[0]
  ------------------
 2095|    154|    result = sign ? -dval(&rv) : dval(&rv);
  ------------------
  |  |  184|      5|#define dval(x) (x)->d
  ------------------
                  result = sign ? -dval(&rv) : dval(&rv);
  ------------------
  |  |  184|    303|#define dval(x) (x)->d
  ------------------
  |  Branch (2095:14): [True: 5, False: 149]
  ------------------
 2096|    154|    goto done;
 2097|       |
 2098|  3.51k|  done:
 2099|  3.51k|    Bfree(bb);
 2100|  3.51k|    Bfree(bd);
 2101|  3.51k|    Bfree(bs);
 2102|  3.51k|    Bfree(bd0);
 2103|  3.51k|    Bfree(delta);
 2104|  3.51k|    return result;
 2105|       |
 2106|  1.37k|}
_PyDtoa_Init:
 2806|      2|{
 2807|      2|#if _PY_SHORT_FLOAT_REPR == 1 && !defined(Py_USING_MEMORY_DEBUGGER)
 2808|      2|    Bigint **p5s = interp->dtoa.p5s;
 2809|       |
 2810|       |    // 5**4 = 625
 2811|      2|    Bigint *p5 = i2b(625);
 2812|      2|    if (p5 == NULL) {
  ------------------
  |  Branch (2812:9): [True: 0, False: 2]
  ------------------
 2813|      0|        return PyStatus_NoMemory();
 2814|      0|    }
 2815|      2|    p5s[0] = p5;
 2816|       |
 2817|       |    // compute 5**8, 5**16, 5**32, ..., 5**512
 2818|     16|    for (Py_ssize_t i = 1; i < Bigint_Pow5size; i++) {
  ------------------
  |  |  471|     16|#define Bigint_Pow5size 8
  ------------------
  |  Branch (2818:28): [True: 14, False: 2]
  ------------------
 2819|     14|        p5 = mult(p5, p5);
 2820|     14|        if (p5 == NULL) {
  ------------------
  |  Branch (2820:13): [True: 0, False: 14]
  ------------------
 2821|      0|            return PyStatus_NoMemory();
 2822|      0|        }
 2823|     14|        p5s[i] = p5;
 2824|     14|    }
 2825|       |
 2826|      2|#endif
 2827|      2|    return PyStatus_Ok();
 2828|      2|}
dtoa.c:s2b:
  483|  1.40k|{
  484|  1.40k|    Bigint *b;
  485|  1.40k|    int i, k;
  486|  1.40k|    Long x, y;
  487|       |
  488|  1.40k|    x = (nd + 8) / 9;
  489|  2.38k|    for(k = 0, y = 1; x > y; y <<= 1, k++) ;
  ------------------
  |  Branch (489:23): [True: 982, False: 1.40k]
  ------------------
  490|  1.40k|    b = Balloc(k);
  491|  1.40k|    if (b == NULL)
  ------------------
  |  Branch (491:9): [True: 0, False: 1.40k]
  ------------------
  492|      0|        return NULL;
  493|  1.40k|    b->x[0] = y9;
  494|  1.40k|    b->wds = 1;
  495|       |
  496|  1.40k|    if (nd <= 9)
  ------------------
  |  Branch (496:9): [True: 568, False: 838]
  ------------------
  497|    568|      return b;
  498|       |
  499|    838|    s += 9;
  500|  6.63k|    for (i = 9; i < nd0; i++) {
  ------------------
  |  Branch (500:17): [True: 5.80k, False: 838]
  ------------------
  501|  5.80k|        b = multadd(b, 10, *s++ - '0');
  502|  5.80k|        if (b == NULL)
  ------------------
  |  Branch (502:13): [True: 0, False: 5.80k]
  ------------------
  503|      0|            return NULL;
  504|  5.80k|    }
  505|    838|    s++;
  506|  2.22k|    for(; i < nd; i++) {
  ------------------
  |  Branch (506:11): [True: 1.38k, False: 838]
  ------------------
  507|  1.38k|        b = multadd(b, 10, *s++ - '0');
  508|  1.38k|        if (b == NULL)
  ------------------
  |  Branch (508:13): [True: 0, False: 1.38k]
  ------------------
  509|      0|            return NULL;
  510|  1.38k|    }
  511|    838|    return b;
  512|    838|}
dtoa.c:Balloc:
  341|  19.8k|{
  342|  19.8k|    int x;
  343|  19.8k|    Bigint *rv;
  344|  19.8k|    unsigned int len;
  345|  19.8k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  346|       |
  347|  19.8k|    if (k <= Bigint_Kmax && (rv = freelist[k]))
  ------------------
  |  |  468|  39.7k|#define Bigint_Kmax 7
  ------------------
                  if (k <= Bigint_Kmax && (rv = freelist[k]))
  ------------------
  |  |  333|  19.8k|#define freelist interp->dtoa.freelist
  ------------------
  |  Branch (347:9): [True: 19.8k, False: 0]
  |  Branch (347:29): [True: 19.8k, False: 56]
  ------------------
  348|  19.8k|        freelist[k] = rv->next;
  ------------------
  |  |  333|  19.8k|#define freelist interp->dtoa.freelist
  ------------------
  349|     56|    else {
  350|     56|        x = 1 << k;
  351|     56|        len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1)
  352|     56|            /sizeof(double);
  353|     56|        if (k <= Bigint_Kmax &&
  ------------------
  |  |  468|    112|#define Bigint_Kmax 7
  ------------------
  |  Branch (353:13): [True: 56, False: 0]
  ------------------
  354|     56|            pmem_next - private_mem + len <= (Py_ssize_t)Bigint_PREALLOC_SIZE
  ------------------
  |  |  335|     56|#define pmem_next interp->dtoa.preallocated_next
  ------------------
                          pmem_next - private_mem + len <= (Py_ssize_t)Bigint_PREALLOC_SIZE
  ------------------
  |  |  334|     56|#define private_mem interp->dtoa.preallocated
  ------------------
                          pmem_next - private_mem + len <= (Py_ssize_t)Bigint_PREALLOC_SIZE
  ------------------
  |  |  477|     56|    ((PRIVATE_MEM+sizeof(double)-1)/sizeof(double))
  |  |  ------------------
  |  |  |  |  474|     56|#define PRIVATE_MEM 2304
  |  |  ------------------
  ------------------
  |  Branch (354:13): [True: 37, False: 19]
  ------------------
  355|     56|        ) {
  356|     37|            rv = (Bigint*)pmem_next;
  ------------------
  |  |  335|     37|#define pmem_next interp->dtoa.preallocated_next
  ------------------
  357|     37|            pmem_next += len;
  ------------------
  |  |  335|     37|#define pmem_next interp->dtoa.preallocated_next
  ------------------
  358|     37|        }
  359|     19|        else {
  360|     19|            rv = (Bigint*)MALLOC(len*sizeof(double));
  ------------------
  |  |  133|     19|#define MALLOC PyMem_Malloc
  ------------------
  361|     19|            if (rv == NULL)
  ------------------
  |  Branch (361:17): [True: 0, False: 19]
  ------------------
  362|      0|                return NULL;
  363|     19|        }
  364|     56|        rv->k = k;
  365|     56|        rv->maxwds = x;
  366|     56|    }
  367|  19.8k|    rv->sign = rv->wds = 0;
  368|  19.8k|    return rv;
  369|  19.8k|}
dtoa.c:sd2b:
  979|  2.28k|{
  980|  2.28k|    Bigint *b;
  981|       |
  982|  2.28k|    b = Balloc(1);
  983|  2.28k|    if (b == NULL)
  ------------------
  |  Branch (983:9): [True: 0, False: 2.28k]
  ------------------
  984|      0|        return NULL;
  985|       |
  986|       |    /* First construct b and e assuming that scale == 0. */
  987|  2.28k|    b->wds = 2;
  988|  2.28k|    b->x[0] = word1(d);
  ------------------
  |  |  179|  2.28k|#define word1(x) (x)->L[0]
  ------------------
  989|  2.28k|    b->x[1] = word0(d) & Frac_mask;
  ------------------
  |  |  178|  2.28k|#define word0(x) (x)->L[1]
  ------------------
                  b->x[1] = word0(d) & Frac_mask;
  ------------------
  |  |  246|  2.28k|#define Frac_mask  0xfffff
  ------------------
  990|  2.28k|    *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift);
  ------------------
  |  |  242|  2.28k|#define Etiny (-1074)  /* smallest denormal is 2**Etiny */
  ------------------
                  *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift);
  ------------------
  |  |  178|  2.28k|#define word0(x) (x)->L[1]
  ------------------
                  *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift);
  ------------------
  |  |  236|  2.28k|#define Exp_mask  0x7ff00000
  ------------------
                  *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift);
  ------------------
  |  |  232|  2.28k|#define Exp_shift  20
  ------------------
  991|  2.28k|    if (*e < Etiny)
  ------------------
  |  |  242|  2.28k|#define Etiny (-1074)  /* smallest denormal is 2**Etiny */
  ------------------
  |  Branch (991:9): [True: 41, False: 2.24k]
  ------------------
  992|     41|        *e = Etiny;
  ------------------
  |  |  242|     41|#define Etiny (-1074)  /* smallest denormal is 2**Etiny */
  ------------------
  993|  2.24k|    else
  994|  2.24k|        b->x[1] |= Exp_msk1;
  ------------------
  |  |  234|  2.24k|#define Exp_msk1    0x100000
  ------------------
  995|       |
  996|       |    /* Now adjust for scale, provided that b != 0. */
  997|  2.28k|    if (scale && (b->x[0] || b->x[1])) {
  ------------------
  |  Branch (997:9): [True: 346, False: 1.93k]
  |  Branch (997:19): [True: 182, False: 164]
  |  Branch (997:30): [True: 123, False: 41]
  ------------------
  998|    305|        *e -= scale;
  999|    305|        if (*e < Etiny) {
  ------------------
  |  |  242|    305|#define Etiny (-1074)  /* smallest denormal is 2**Etiny */
  ------------------
  |  Branch (999:13): [True: 225, False: 80]
  ------------------
 1000|    225|            scale = Etiny - *e;
  ------------------
  |  |  242|    225|#define Etiny (-1074)  /* smallest denormal is 2**Etiny */
  ------------------
 1001|    225|            *e = Etiny;
  ------------------
  |  |  242|    225|#define Etiny (-1074)  /* smallest denormal is 2**Etiny */
  ------------------
 1002|       |            /* We can't shift more than P-1 bits without shifting out a 1. */
 1003|    225|            assert(0 < scale && scale <= P - 1);
  ------------------
  |  Branch (1003:13): [True: 225, False: 0]
  |  Branch (1003:13): [True: 225, False: 0]
  ------------------
 1004|    225|            if (scale >= 32) {
  ------------------
  |  Branch (1004:17): [True: 107, False: 118]
  ------------------
 1005|       |                /* The bits shifted out should all be zero. */
 1006|    107|                assert(b->x[0] == 0);
  ------------------
  |  Branch (1006:17): [True: 107, False: 0]
  ------------------
 1007|    107|                b->x[0] = b->x[1];
 1008|    107|                b->x[1] = 0;
 1009|    107|                scale -= 32;
 1010|    107|            }
 1011|    225|            if (scale) {
  ------------------
  |  Branch (1011:17): [True: 204, False: 21]
  ------------------
 1012|       |                /* The bits shifted out should all be zero. */
 1013|    204|                assert(b->x[0] << (32 - scale) == 0);
  ------------------
  |  Branch (1013:17): [True: 204, False: 0]
  ------------------
 1014|    204|                b->x[0] = (b->x[0] >> scale) | (b->x[1] << (32 - scale));
 1015|    204|                b->x[1] >>= scale;
 1016|    204|            }
 1017|    225|        }
 1018|    305|    }
 1019|       |    /* Ensure b is normalized. */
 1020|  2.28k|    if (!b->x[1])
  ------------------
  |  Branch (1020:9): [True: 167, False: 2.11k]
  ------------------
 1021|    167|        b->wds = 1;
 1022|       |
 1023|  2.28k|    return b;
 1024|  2.28k|}
dtoa.c:i2b:
  595|  2.28k|{
  596|  2.28k|    Bigint *b;
  597|       |
  598|  2.28k|    b = Balloc(1);
  599|  2.28k|    if (b == NULL)
  ------------------
  |  Branch (599:9): [True: 0, False: 2.28k]
  ------------------
  600|      0|        return NULL;
  601|  2.28k|    b->x[0] = i;
  602|  2.28k|    b->wds = 1;
  603|  2.28k|    return b;
  604|  2.28k|}
dtoa.c:pow5mult:
  675|  1.96k|{
  676|  1.96k|    Bigint *b1, *p5, **p5s;
  677|  1.96k|    int i;
  678|  1.96k|    static const int p05[3] = { 5, 25, 125 };
  679|       |
  680|       |    // For double-to-string conversion, the maximum value of k is limited by
  681|       |    // DBL_MAX_10_EXP (308), the maximum decimal base-10 exponent for binary64.
  682|       |    // For string-to-double conversion, the extreme case is constrained by our
  683|       |    // hardcoded exponent limit before we underflow of -512, adjusted by
  684|       |    // STRTOD_DIGLIM-DBL_DIG-1, giving a maximum of k=535.
  685|  1.96k|    assert(0 <= k && k < 1024);
  ------------------
  |  Branch (685:5): [True: 1.96k, False: 0]
  |  Branch (685:5): [True: 1.96k, False: 0]
  ------------------
  686|       |
  687|  1.96k|    if ((i = k & 3)) {
  ------------------
  |  Branch (687:9): [True: 1.59k, False: 367]
  ------------------
  688|  1.59k|        b = multadd(b, p05[i-1], 0);
  689|  1.59k|        if (b == NULL)
  ------------------
  |  Branch (689:13): [True: 0, False: 1.59k]
  ------------------
  690|      0|            return NULL;
  691|  1.59k|    }
  692|       |
  693|  1.96k|    if (!(k >>= 2))
  ------------------
  |  Branch (693:9): [True: 125, False: 1.83k]
  ------------------
  694|    125|        return b;
  695|  1.83k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  696|  1.83k|    p5s = interp->dtoa.p5s;
  697|  7.96k|    for(;;) {
  698|  7.96k|        assert(p5s != interp->dtoa.p5s + Bigint_Pow5size);
  ------------------
  |  Branch (698:9): [True: 7.96k, False: 0]
  ------------------
  699|  7.96k|        p5 = *p5s;
  700|  7.96k|        p5s++;
  701|  7.96k|        if (k & 1) {
  ------------------
  |  Branch (701:13): [True: 4.35k, False: 3.61k]
  ------------------
  702|  4.35k|            b1 = mult(b, p5);
  703|  4.35k|            Bfree(b);
  704|  4.35k|            b = b1;
  705|  4.35k|            if (b == NULL)
  ------------------
  |  Branch (705:17): [True: 0, False: 4.35k]
  ------------------
  706|      0|                return NULL;
  707|  4.35k|        }
  708|  7.96k|        if (!(k >>= 1))
  ------------------
  |  Branch (708:13): [True: 1.83k, False: 6.12k]
  ------------------
  709|  1.83k|            break;
  710|  7.96k|    }
  711|  1.83k|    return b;
  712|  1.83k|}
dtoa.c:mult:
  611|  5.14k|{
  612|  5.14k|    Bigint *c;
  613|  5.14k|    int k, wa, wb, wc;
  614|  5.14k|    ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0;
  615|  5.14k|    ULong y;
  616|  5.14k|    ULLong carry, z;
  617|       |
  618|  5.14k|    if ((!a->x[0] && a->wds == 1) || (!b->x[0] && b->wds == 1)) {
  ------------------
  |  Branch (618:10): [True: 51, False: 5.09k]
  |  Branch (618:22): [True: 0, False: 51]
  |  Branch (618:39): [True: 159, False: 4.98k]
  |  Branch (618:51): [True: 34, False: 125]
  ------------------
  619|     34|        c = Balloc(0);
  620|     34|        if (c == NULL)
  ------------------
  |  Branch (620:13): [True: 0, False: 34]
  ------------------
  621|      0|            return NULL;
  622|     34|        c->wds = 1;
  623|     34|        c->x[0] = 0;
  624|     34|        return c;
  625|     34|    }
  626|       |
  627|  5.10k|    if (a->wds < b->wds) {
  ------------------
  |  Branch (627:9): [True: 2.11k, False: 2.99k]
  ------------------
  628|  2.11k|        c = a;
  629|  2.11k|        a = b;
  630|  2.11k|        b = c;
  631|  2.11k|    }
  632|  5.10k|    k = a->k;
  633|  5.10k|    wa = a->wds;
  634|  5.10k|    wb = b->wds;
  635|  5.10k|    wc = wa + wb;
  636|  5.10k|    if (wc > a->maxwds)
  ------------------
  |  Branch (636:9): [True: 2.29k, False: 2.81k]
  ------------------
  637|  2.29k|        k++;
  638|  5.10k|    c = Balloc(k);
  639|  5.10k|    if (c == NULL)
  ------------------
  |  Branch (639:9): [True: 0, False: 5.10k]
  ------------------
  640|      0|        return NULL;
  641|  41.7k|    for(x = c->x, xa = x + wc; x < xa; x++)
  ------------------
  |  Branch (641:32): [True: 36.6k, False: 5.10k]
  ------------------
  642|  36.6k|        *x = 0;
  643|  5.10k|    xa = a->x;
  644|  5.10k|    xae = xa + wa;
  645|  5.10k|    xb = b->x;
  646|  5.10k|    xbe = xb + wb;
  647|  5.10k|    xc0 = c->x;
  648|  15.1k|    for(; xb < xbe; xc0++) {
  ------------------
  |  Branch (648:11): [True: 10.0k, False: 5.10k]
  ------------------
  649|  10.0k|        if ((y = *xb++)) {
  ------------------
  |  Branch (649:13): [True: 9.97k, False: 82]
  ------------------
  650|  9.97k|            x = xa;
  651|  9.97k|            xc = xc0;
  652|  9.97k|            carry = 0;
  653|  83.4k|            do {
  654|  83.4k|                z = *x++ * (ULLong)y + *xc + carry;
  655|  83.4k|                carry = z >> 32;
  656|  83.4k|                *xc++ = (ULong)(z & FFFFFFFF);
  ------------------
  |  |  285|  83.4k|#define FFFFFFFF 0xffffffffUL
  ------------------
  657|  83.4k|            }
  658|  83.4k|            while(x < xae);
  ------------------
  |  Branch (658:19): [True: 73.4k, False: 9.97k]
  ------------------
  659|  9.97k|            *xc = (ULong)carry;
  660|  9.97k|        }
  661|  10.0k|    }
  662|  8.70k|    for(xc0 = c->x, xc = xc0 + wc; wc > 0 && !*--xc; --wc) ;
  ------------------
  |  Branch (662:36): [True: 8.70k, False: 0]
  |  Branch (662:46): [True: 3.59k, False: 5.10k]
  ------------------
  663|  5.10k|    c->wds = wc;
  664|  5.10k|    return c;
  665|  5.10k|}
dtoa.c:Bfree:
  375|  30.3k|{
  376|  30.3k|    if (v) {
  ------------------
  |  Branch (376:9): [True: 19.8k, False: 10.5k]
  ------------------
  377|  19.8k|        if (v->k > Bigint_Kmax)
  ------------------
  |  |  468|  19.8k|#define Bigint_Kmax 7
  ------------------
  |  Branch (377:13): [True: 0, False: 19.8k]
  ------------------
  378|      0|            FREE((void*)v);
  ------------------
  |  |  134|      0|#define FREE PyMem_Free
  ------------------
  379|  19.8k|        else {
  380|  19.8k|            PyInterpreterState *interp = _PyInterpreterState_GET();
  381|  19.8k|            v->next = freelist[v->k];
  ------------------
  |  |  333|  19.8k|#define freelist interp->dtoa.freelist
  ------------------
  382|  19.8k|            freelist[v->k] = v;
  ------------------
  |  |  333|  19.8k|#define freelist interp->dtoa.freelist
  ------------------
  383|  19.8k|        }
  384|  19.8k|    }
  385|  30.3k|}
dtoa.c:lshift:
  772|  4.90k|{
  773|  4.90k|    int i, k1, n, n1;
  774|  4.90k|    Bigint *b1;
  775|  4.90k|    ULong *x, *x1, *xe, z;
  776|       |
  777|  4.90k|    if (!k || (!b->x[0] && b->wds == 1))
  ------------------
  |  Branch (777:9): [True: 0, False: 4.90k]
  |  Branch (777:16): [True: 237, False: 4.67k]
  |  Branch (777:28): [True: 41, False: 196]
  ------------------
  778|     41|        return b;
  779|       |
  780|  4.86k|    n = k >> 5;
  781|  4.86k|    k1 = b->k;
  782|  4.86k|    n1 = n + b->wds + 1;
  783|  11.0k|    for(i = b->maxwds; n1 > i; i <<= 1)
  ------------------
  |  Branch (783:24): [True: 6.16k, False: 4.86k]
  ------------------
  784|  6.16k|        k1++;
  785|  4.86k|    b1 = Balloc(k1);
  786|  4.86k|    if (b1 == NULL) {
  ------------------
  |  Branch (786:9): [True: 0, False: 4.86k]
  ------------------
  787|      0|        Bfree(b);
  788|      0|        return NULL;
  789|      0|    }
  790|  4.86k|    x1 = b1->x;
  791|  21.8k|    for(i = 0; i < n; i++)
  ------------------
  |  Branch (791:16): [True: 16.9k, False: 4.86k]
  ------------------
  792|  16.9k|        *x1++ = 0;
  793|  4.86k|    x = b->x;
  794|  4.86k|    xe = x + b->wds;
  795|  4.86k|    if (k &= 0x1f) {
  ------------------
  |  Branch (795:9): [True: 4.77k, False: 95]
  ------------------
  796|  4.77k|        k1 = 32 - k;
  797|  4.77k|        z = 0;
  798|  16.7k|        do {
  799|  16.7k|            *x1++ = *x << k | z;
  800|  16.7k|            z = *x++ >> k1;
  801|  16.7k|        }
  802|  16.7k|        while(x < xe);
  ------------------
  |  Branch (802:15): [True: 11.9k, False: 4.77k]
  ------------------
  803|  4.77k|        if ((*x1 = z))
  ------------------
  |  Branch (803:13): [True: 1.11k, False: 3.65k]
  ------------------
  804|  1.11k|            ++n1;
  805|  4.77k|    }
  806|     95|    else do
  807|    175|             *x1++ = *x++;
  808|    175|        while(x < xe);
  ------------------
  |  Branch (808:15): [True: 80, False: 95]
  ------------------
  809|  4.86k|    b1->wds = n1 - 1;
  810|  4.86k|    Bfree(b);
  811|  4.86k|    return b1;
  812|  4.86k|}
dtoa.c:diff:
  852|  1.87k|{
  853|  1.87k|    Bigint *c;
  854|  1.87k|    int i, wa, wb;
  855|  1.87k|    ULong *xa, *xae, *xb, *xbe, *xc;
  856|  1.87k|    ULLong borrow, y;
  857|       |
  858|  1.87k|    i = cmp(a,b);
  859|  1.87k|    if (!i) {
  ------------------
  |  Branch (859:9): [True: 32, False: 1.84k]
  ------------------
  860|     32|        c = Balloc(0);
  861|     32|        if (c == NULL)
  ------------------
  |  Branch (861:13): [True: 0, False: 32]
  ------------------
  862|      0|            return NULL;
  863|     32|        c->wds = 1;
  864|     32|        c->x[0] = 0;
  865|     32|        return c;
  866|     32|    }
  867|  1.84k|    if (i < 0) {
  ------------------
  |  Branch (867:9): [True: 1.04k, False: 801]
  ------------------
  868|  1.04k|        c = a;
  869|  1.04k|        a = b;
  870|  1.04k|        b = c;
  871|  1.04k|        i = 1;
  872|  1.04k|    }
  873|    801|    else
  874|    801|        i = 0;
  875|  1.84k|    c = Balloc(a->k);
  876|  1.84k|    if (c == NULL)
  ------------------
  |  Branch (876:9): [True: 0, False: 1.84k]
  ------------------
  877|      0|        return NULL;
  878|  1.84k|    c->sign = i;
  879|  1.84k|    wa = a->wds;
  880|  1.84k|    xa = a->x;
  881|  1.84k|    xae = xa + wa;
  882|  1.84k|    wb = b->wds;
  883|  1.84k|    xb = b->x;
  884|  1.84k|    xbe = xb + wb;
  885|  1.84k|    xc = c->x;
  886|  1.84k|    borrow = 0;
  887|  15.1k|    do {
  888|  15.1k|        y = (ULLong)*xa++ - *xb++ - borrow;
  889|  15.1k|        borrow = y >> 32 & (ULong)1;
  890|  15.1k|        *xc++ = (ULong)(y & FFFFFFFF);
  ------------------
  |  |  285|  15.1k|#define FFFFFFFF 0xffffffffUL
  ------------------
  891|  15.1k|    }
  892|  15.1k|    while(xb < xbe);
  ------------------
  |  Branch (892:11): [True: 13.3k, False: 1.84k]
  ------------------
  893|  2.85k|    while(xa < xae) {
  ------------------
  |  Branch (893:11): [True: 1.00k, False: 1.84k]
  ------------------
  894|  1.00k|        y = *xa++ - borrow;
  895|  1.00k|        borrow = y >> 32 & (ULong)1;
  896|  1.00k|        *xc++ = (ULong)(y & FFFFFFFF);
  ------------------
  |  |  285|  1.00k|#define FFFFFFFF 0xffffffffUL
  ------------------
  897|  1.00k|    }
  898|  4.49k|    while(!*--xc)
  ------------------
  |  Branch (898:11): [True: 2.65k, False: 1.84k]
  ------------------
  899|  2.65k|        wa--;
  900|  1.84k|    c->wds = wa;
  901|  1.84k|    return c;
  902|  1.84k|}
dtoa.c:cmp:
  819|  10.5k|{
  820|  10.5k|    ULong *xa, *xa0, *xb, *xb0;
  821|  10.5k|    int i, j;
  822|       |
  823|  10.5k|    i = a->wds;
  824|  10.5k|    j = b->wds;
  825|       |#ifdef DEBUG
  826|       |    if (i > 1 && !a->x[i-1])
  827|       |        Bug("cmp called with a->x[a->wds-1] == 0");
  828|       |    if (j > 1 && !b->x[j-1])
  829|       |        Bug("cmp called with b->x[b->wds-1] == 0");
  830|       |#endif
  831|  10.5k|    if (i -= j)
  ------------------
  |  Branch (831:9): [True: 206, False: 10.3k]
  ------------------
  832|    206|        return i;
  833|  10.3k|    xa0 = a->x;
  834|  10.3k|    xa = xa0 + j;
  835|  10.3k|    xb0 = b->x;
  836|  10.3k|    xb = xb0 + j;
  837|  12.9k|    for(;;) {
  838|  12.9k|        if (*--xa != *--xb)
  ------------------
  |  Branch (838:13): [True: 10.0k, False: 2.84k]
  ------------------
  839|  10.0k|            return *xa < *xb ? -1 : 1;
  ------------------
  |  Branch (839:20): [True: 8.35k, False: 1.72k]
  ------------------
  840|  2.84k|        if (xa <= xa0)
  ------------------
  |  Branch (840:13): [True: 235, False: 2.61k]
  ------------------
  841|    235|            break;
  842|  2.84k|    }
  843|    235|    return 0;
  844|  10.3k|}
dtoa.c:sulp:
 1211|    150|{
 1212|    150|    U u;
 1213|       |
 1214|    150|    if (bc->scale && 2*P + 1 > (int)((word0(x) & Exp_mask) >> Exp_shift)) {
  ------------------
  |  |  237|     12|#define P 53
  ------------------
                  if (bc->scale && 2*P + 1 > (int)((word0(x) & Exp_mask) >> Exp_shift)) {
  ------------------
  |  |  178|     12|#define word0(x) (x)->L[1]
  ------------------
                  if (bc->scale && 2*P + 1 > (int)((word0(x) & Exp_mask) >> Exp_shift)) {
  ------------------
  |  |  236|     12|#define Exp_mask  0x7ff00000
  ------------------
                  if (bc->scale && 2*P + 1 > (int)((word0(x) & Exp_mask) >> Exp_shift)) {
  ------------------
  |  |  232|     12|#define Exp_shift  20
  ------------------
  |  Branch (1214:9): [True: 12, False: 138]
  |  Branch (1214:22): [True: 6, False: 6]
  ------------------
 1215|       |        /* rv/2^bc->scale is subnormal */
 1216|      6|        word0(&u) = (P+2)*Exp_msk1;
  ------------------
  |  |  178|      6|#define word0(x) (x)->L[1]
  ------------------
                      word0(&u) = (P+2)*Exp_msk1;
  ------------------
  |  |  237|      6|#define P 53
  ------------------
                      word0(&u) = (P+2)*Exp_msk1;
  ------------------
  |  |  234|      6|#define Exp_msk1    0x100000
  ------------------
 1217|      6|        word1(&u) = 0;
  ------------------
  |  |  179|      6|#define word1(x) (x)->L[0]
  ------------------
 1218|      6|        return u.d;
 1219|      6|    }
 1220|    144|    else {
 1221|    144|        assert(word0(x) || word1(x)); /* x != 0.0 */
  ------------------
  |  Branch (1221:9): [True: 144, False: 0]
  |  Branch (1221:9): [True: 0, False: 0]
  ------------------
 1222|    144|        return ulp(x);
 1223|    144|    }
 1224|    150|}
dtoa.c:ratio:
 1085|    799|{
 1086|    799|    U da, db;
 1087|    799|    int k, ka, kb;
 1088|       |
 1089|    799|    dval(&da) = b2d(a, &ka);
  ------------------
  |  |  184|    799|#define dval(x) (x)->d
  ------------------
 1090|    799|    dval(&db) = b2d(b, &kb);
  ------------------
  |  |  184|    799|#define dval(x) (x)->d
  ------------------
 1091|    799|    k = ka - kb + 32*(a->wds - b->wds);
 1092|    799|    if (k > 0)
  ------------------
  |  Branch (1092:9): [True: 435, False: 364]
  ------------------
 1093|    435|        word0(&da) += k*Exp_msk1;
  ------------------
  |  |  178|    435|#define word0(x) (x)->L[1]
  ------------------
                      word0(&da) += k*Exp_msk1;
  ------------------
  |  |  234|    435|#define Exp_msk1    0x100000
  ------------------
 1094|    364|    else {
 1095|    364|        k = -k;
 1096|    364|        word0(&db) += k*Exp_msk1;
  ------------------
  |  |  178|    364|#define word0(x) (x)->L[1]
  ------------------
                      word0(&db) += k*Exp_msk1;
  ------------------
  |  |  234|    364|#define Exp_msk1    0x100000
  ------------------
 1097|    364|    }
 1098|    799|    return dval(&da) / dval(&db);
  ------------------
  |  |  184|    799|#define dval(x) (x)->d
  ------------------
                  return dval(&da) / dval(&db);
  ------------------
  |  |  184|    799|#define dval(x) (x)->d
  ------------------
 1099|    799|}
dtoa.c:b2d:
  923|  1.59k|{
  924|  1.59k|    ULong *xa, *xa0, w, y, z;
  925|  1.59k|    int k;
  926|  1.59k|    U d;
  927|       |
  928|  1.59k|    xa0 = a->x;
  929|  1.59k|    xa = xa0 + a->wds;
  930|  1.59k|    y = *--xa;
  931|       |#ifdef DEBUG
  932|       |    if (!y) Bug("zero y in b2d");
  933|       |#endif
  934|  1.59k|    k = hi0bits(y);
  935|  1.59k|    *e = 32 - k;
  936|  1.59k|    if (k < Ebits) {
  ------------------
  |  |  245|  1.59k|#define Ebits 11
  ------------------
  |  Branch (936:9): [True: 647, False: 951]
  ------------------
  937|    647|        word0(&d) = Exp_1 | y >> (Ebits - k);
  ------------------
  |  |  178|    647|#define word0(x) (x)->L[1]
  ------------------
                      word0(&d) = Exp_1 | y >> (Ebits - k);
  ------------------
  |  |  243|    647|#define Exp_1  0x3ff00000
  ------------------
                      word0(&d) = Exp_1 | y >> (Ebits - k);
  ------------------
  |  |  245|    647|#define Ebits 11
  ------------------
  938|    647|        w = xa > xa0 ? *--xa : 0;
  ------------------
  |  Branch (938:13): [True: 539, False: 108]
  ------------------
  939|    647|        word1(&d) = y << ((32-Ebits) + k) | w >> (Ebits - k);
  ------------------
  |  |  179|    647|#define word1(x) (x)->L[0]
  ------------------
                      word1(&d) = y << ((32-Ebits) + k) | w >> (Ebits - k);
  ------------------
  |  |  245|    647|#define Ebits 11
  ------------------
                      word1(&d) = y << ((32-Ebits) + k) | w >> (Ebits - k);
  ------------------
  |  |  245|    647|#define Ebits 11
  ------------------
  940|    647|        goto ret_d;
  941|    647|    }
  942|    951|    z = xa > xa0 ? *--xa : 0;
  ------------------
  |  Branch (942:9): [True: 769, False: 182]
  ------------------
  943|    951|    if (k -= Ebits) {
  ------------------
  |  |  245|    951|#define Ebits 11
  ------------------
  |  Branch (943:9): [True: 915, False: 36]
  ------------------
  944|    915|        word0(&d) = Exp_1 | y << k | z >> (32 - k);
  ------------------
  |  |  178|    915|#define word0(x) (x)->L[1]
  ------------------
                      word0(&d) = Exp_1 | y << k | z >> (32 - k);
  ------------------
  |  |  243|    915|#define Exp_1  0x3ff00000
  ------------------
  945|    915|        y = xa > xa0 ? *--xa : 0;
  ------------------
  |  Branch (945:13): [True: 483, False: 432]
  ------------------
  946|    915|        word1(&d) = z << k | y >> (32 - k);
  ------------------
  |  |  179|    915|#define word1(x) (x)->L[0]
  ------------------
  947|    915|    }
  948|     36|    else {
  949|     36|        word0(&d) = Exp_1 | y;
  ------------------
  |  |  178|     36|#define word0(x) (x)->L[1]
  ------------------
                      word0(&d) = Exp_1 | y;
  ------------------
  |  |  243|     36|#define Exp_1  0x3ff00000
  ------------------
  950|     36|        word1(&d) = z;
  ------------------
  |  |  179|     36|#define word1(x) (x)->L[0]
  ------------------
  951|     36|    }
  952|  1.59k|  ret_d:
  953|  1.59k|    return dval(&d);
  ------------------
  |  |  184|  1.59k|#define dval(x) (x)->d
  ------------------
  954|    951|}
dtoa.c:hi0bits:
  518|  2.00k|{
  519|  2.00k|    int k = 0;
  520|       |
  521|  2.00k|    if (!(x & 0xffff0000)) {
  ------------------
  |  Branch (521:9): [True: 949, False: 1.05k]
  ------------------
  522|    949|        k = 16;
  523|    949|        x <<= 16;
  524|    949|    }
  525|  2.00k|    if (!(x & 0xff000000)) {
  ------------------
  |  Branch (525:9): [True: 960, False: 1.04k]
  ------------------
  526|    960|        k += 8;
  527|    960|        x <<= 8;
  528|    960|    }
  529|  2.00k|    if (!(x & 0xf0000000)) {
  ------------------
  |  Branch (529:9): [True: 1.07k, False: 927]
  ------------------
  530|  1.07k|        k += 4;
  531|  1.07k|        x <<= 4;
  532|  1.07k|    }
  533|  2.00k|    if (!(x & 0xc0000000)) {
  ------------------
  |  Branch (533:9): [True: 900, False: 1.10k]
  ------------------
  534|    900|        k += 2;
  535|    900|        x <<= 2;
  536|    900|    }
  537|  2.00k|    if (!(x & 0x80000000)) {
  ------------------
  |  Branch (537:9): [True: 984, False: 1.01k]
  ------------------
  538|    984|        k++;
  539|    984|        if (!(x & 0x40000000))
  ------------------
  |  Branch (539:13): [True: 0, False: 984]
  ------------------
  540|      0|            return 32;
  541|    984|    }
  542|  2.00k|    return k;
  543|  2.00k|}
dtoa.c:ulp:
  909|    943|{
  910|    943|    Long L;
  911|    943|    U u;
  912|       |
  913|    943|    L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
  ------------------
  |  |  178|    943|#define word0(x) (x)->L[1]
  ------------------
                  L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
  ------------------
  |  |  236|    943|#define Exp_mask  0x7ff00000
  ------------------
                  L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
  ------------------
  |  |  237|    943|#define P 53
  ------------------
                  L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
  ------------------
  |  |  234|    943|#define Exp_msk1    0x100000
  ------------------
  914|    943|    word0(&u) = L;
  ------------------
  |  |  178|    943|#define word0(x) (x)->L[1]
  ------------------
  915|    943|    word1(&u) = 0;
  ------------------
  |  |  179|    943|#define word1(x) (x)->L[0]
  ------------------
  916|    943|    return dval(&u);
  ------------------
  |  |  184|    943|#define dval(x) (x)->d
  ------------------
  917|    943|}
dtoa.c:bigcomp:
 1274|    405|{
 1275|    405|    Bigint *b, *d;
 1276|    405|    int b2, d2, dd, i, nd, nd0, odd, p2, p5;
 1277|       |
 1278|    405|    nd = bc->nd;
 1279|    405|    nd0 = bc->nd0;
 1280|    405|    p5 = nd + bc->e0;
 1281|    405|    b = sd2b(rv, bc->scale, &p2);
 1282|    405|    if (b == NULL)
  ------------------
  |  Branch (1282:9): [True: 0, False: 405]
  ------------------
 1283|      0|        return -1;
 1284|       |
 1285|       |    /* record whether the lsb of rv/2^(bc->scale) is odd:  in the exact halfway
 1286|       |       case, this is used for round to even. */
 1287|    405|    odd = b->x[0] & 1;
 1288|       |
 1289|       |    /* left shift b by 1 bit and or a 1 into the least significant bit;
 1290|       |       this gives us b * 2**p2 = rv/2^(bc->scale) + 0.5 ulp. */
 1291|    405|    b = lshift(b, 1);
 1292|    405|    if (b == NULL)
  ------------------
  |  Branch (1292:9): [True: 0, False: 405]
  ------------------
 1293|      0|        return -1;
 1294|    405|    b->x[0] |= 1;
 1295|    405|    p2--;
 1296|       |
 1297|    405|    p2 -= p5;
 1298|    405|    d = i2b(1);
 1299|    405|    if (d == NULL) {
  ------------------
  |  Branch (1299:9): [True: 0, False: 405]
  ------------------
 1300|      0|        Bfree(b);
 1301|      0|        return -1;
 1302|      0|    }
 1303|       |    /* Arrange for convenient computation of quotients:
 1304|       |     * shift left if necessary so divisor has 4 leading 0 bits.
 1305|       |     */
 1306|    405|    if (p5 > 0) {
  ------------------
  |  Branch (1306:9): [True: 305, False: 100]
  ------------------
 1307|    305|        d = pow5mult(d, p5);
 1308|    305|        if (d == NULL) {
  ------------------
  |  Branch (1308:13): [True: 0, False: 305]
  ------------------
 1309|      0|            Bfree(b);
 1310|      0|            return -1;
 1311|      0|        }
 1312|    305|    }
 1313|    100|    else if (p5 < 0) {
  ------------------
  |  Branch (1313:14): [True: 40, False: 60]
  ------------------
 1314|     40|        b = pow5mult(b, -p5);
 1315|     40|        if (b == NULL) {
  ------------------
  |  Branch (1315:13): [True: 0, False: 40]
  ------------------
 1316|      0|            Bfree(d);
 1317|      0|            return -1;
 1318|      0|        }
 1319|     40|    }
 1320|    405|    if (p2 > 0) {
  ------------------
  |  Branch (1320:9): [True: 222, False: 183]
  ------------------
 1321|    222|        b2 = p2;
 1322|    222|        d2 = 0;
 1323|    222|    }
 1324|    183|    else {
 1325|    183|        b2 = 0;
 1326|    183|        d2 = -p2;
 1327|    183|    }
 1328|    405|    i = dshift(d, d2);
 1329|    405|    if ((b2 += i) > 0) {
  ------------------
  |  Branch (1329:9): [True: 401, False: 4]
  ------------------
 1330|    401|        b = lshift(b, b2);
 1331|    401|        if (b == NULL) {
  ------------------
  |  Branch (1331:13): [True: 0, False: 401]
  ------------------
 1332|      0|            Bfree(d);
 1333|      0|            return -1;
 1334|      0|        }
 1335|    401|    }
 1336|    405|    if ((d2 += i) > 0) {
  ------------------
  |  Branch (1336:9): [True: 403, False: 2]
  ------------------
 1337|    403|        d = lshift(d, d2);
 1338|    403|        if (d == NULL) {
  ------------------
  |  Branch (1338:13): [True: 0, False: 403]
  ------------------
 1339|      0|            Bfree(b);
 1340|      0|            return -1;
 1341|      0|        }
 1342|    403|    }
 1343|       |
 1344|       |    /* Compare s0 with b/d: set dd to -1, 0, or 1 according as s0 < b/d, s0 ==
 1345|       |     * b/d, or s0 > b/d.  Here the digits of s0 are thought of as representing
 1346|       |     * a number in the range [0.1, 1). */
 1347|    405|    if (cmp(b, d) >= 0)
  ------------------
  |  Branch (1347:9): [True: 22, False: 383]
  ------------------
 1348|       |        /* b/d >= 1 */
 1349|     22|        dd = -1;
 1350|    383|    else {
 1351|    383|        i = 0;
 1352|  6.54k|        for(;;) {
 1353|  6.54k|            b = multadd(b, 10, 0);
 1354|  6.54k|            if (b == NULL) {
  ------------------
  |  Branch (1354:17): [True: 0, False: 6.54k]
  ------------------
 1355|      0|                Bfree(d);
 1356|      0|                return -1;
 1357|      0|            }
 1358|  6.54k|            dd = s0[i < nd0 ? i : i+1] - '0' - quorem(b, d);
  ------------------
  |  Branch (1358:21): [True: 6.07k, False: 467]
  ------------------
 1359|  6.54k|            i++;
 1360|       |
 1361|  6.54k|            if (dd)
  ------------------
  |  Branch (1361:17): [True: 353, False: 6.18k]
  ------------------
 1362|    353|                break;
 1363|  6.18k|            if (!b->x[0] && b->wds == 1) {
  ------------------
  |  Branch (1363:17): [True: 1.08k, False: 5.10k]
  |  Branch (1363:29): [True: 29, False: 1.05k]
  ------------------
 1364|       |                /* b/d == 0 */
 1365|     29|                dd = i < nd;
 1366|     29|                break;
 1367|     29|            }
 1368|  6.15k|            if (!(i < nd)) {
  ------------------
  |  Branch (1368:17): [True: 1, False: 6.15k]
  ------------------
 1369|       |                /* b/d != 0, but digits of s0 exhausted */
 1370|      1|                dd = -1;
 1371|      1|                break;
 1372|      1|            }
 1373|  6.15k|        }
 1374|    383|    }
 1375|    405|    Bfree(b);
 1376|    405|    Bfree(d);
 1377|    405|    if (dd > 0 || (dd == 0 && odd))
  ------------------
  |  Branch (1377:9): [True: 86, False: 319]
  |  Branch (1377:20): [True: 2, False: 317]
  |  Branch (1377:31): [True: 1, False: 1]
  ------------------
 1378|     87|        dval(rv) += sulp(rv, bc);
  ------------------
  |  |  184|     87|#define dval(x) (x)->d
  ------------------
 1379|    405|    return 0;
 1380|    405|}
dtoa.c:dshift:
 1126|    405|{
 1127|    405|    int rv = hi0bits(b->x[b->wds-1]) - 4;
 1128|    405|    if (p2 > 0)
  ------------------
  |  Branch (1128:9): [True: 180, False: 225]
  ------------------
 1129|    180|        rv -= p2;
 1130|    405|    return rv & kmask;
  ------------------
  |  | 1121|    405|#define kmask 31
  ------------------
 1131|    405|}
dtoa.c:multadd:
  442|  15.3k|{
  443|  15.3k|    int i, wds;
  444|  15.3k|    ULong *x;
  445|  15.3k|    ULLong carry, y;
  446|  15.3k|    Bigint *b1;
  447|       |
  448|  15.3k|    wds = b->wds;
  449|  15.3k|    x = b->x;
  450|  15.3k|    i = 0;
  451|  15.3k|    carry = a;
  452|  47.7k|    do {
  453|  47.7k|        y = *x * (ULLong)m + carry;
  454|  47.7k|        carry = y >> 32;
  455|  47.7k|        *x++ = (ULong)(y & FFFFFFFF);
  ------------------
  |  |  285|  47.7k|#define FFFFFFFF 0xffffffffUL
  ------------------
  456|  47.7k|    }
  457|  47.7k|    while(++i < wds);
  ------------------
  |  Branch (457:11): [True: 32.4k, False: 15.3k]
  ------------------
  458|  15.3k|    if (carry) {
  ------------------
  |  Branch (458:9): [True: 1.26k, False: 14.0k]
  ------------------
  459|  1.26k|        if (wds >= b->maxwds) {
  ------------------
  |  Branch (459:13): [True: 141, False: 1.12k]
  ------------------
  460|    141|            b1 = Balloc(b->k+1);
  461|    141|            if (b1 == NULL){
  ------------------
  |  Branch (461:17): [True: 0, False: 141]
  ------------------
  462|      0|                Bfree(b);
  463|      0|                return NULL;
  464|      0|            }
  465|    141|            Bcopy(b1, b);
  ------------------
  |  |  433|    141|#define Bcopy(x,y) memcpy((char *)&x->sign, (char *)&y->sign,   \
  |  |  434|    141|                          y->wds*sizeof(Long) + 2*sizeof(int))
  ------------------
  466|    141|            Bfree(b);
  467|    141|            b = b1;
  468|    141|        }
  469|  1.26k|        b->x[wds++] = (ULong)carry;
  470|  1.26k|        b->wds = wds;
  471|  1.26k|    }
  472|  15.3k|    return b;
  473|  15.3k|}
dtoa.c:quorem:
 1139|  6.54k|{
 1140|  6.54k|    int n;
 1141|  6.54k|    ULong *bx, *bxe, q, *sx, *sxe;
 1142|  6.54k|    ULLong borrow, carry, y, ys;
 1143|       |
 1144|  6.54k|    n = S->wds;
 1145|       |#ifdef DEBUG
 1146|       |    /*debug*/ if (b->wds > n)
 1147|       |        /*debug*/       Bug("oversize b in quorem");
 1148|       |#endif
 1149|  6.54k|    if (b->wds < n)
  ------------------
  |  Branch (1149:9): [True: 282, False: 6.25k]
  ------------------
 1150|    282|        return 0;
 1151|  6.25k|    sx = S->x;
 1152|  6.25k|    sxe = sx + --n;
 1153|  6.25k|    bx = b->x;
 1154|  6.25k|    bxe = bx + n;
 1155|  6.25k|    q = *bxe / (*sxe + 1);      /* ensure q <= true quotient */
 1156|       |#ifdef DEBUG
 1157|       |    /*debug*/ if (q > 9)
 1158|       |        /*debug*/       Bug("oversized quotient in quorem");
 1159|       |#endif
 1160|  6.25k|    if (q) {
  ------------------
  |  Branch (1160:9): [True: 3.86k, False: 2.39k]
  ------------------
 1161|  3.86k|        borrow = 0;
 1162|  3.86k|        carry = 0;
 1163|  18.6k|        do {
 1164|  18.6k|            ys = *sx++ * (ULLong)q + carry;
 1165|  18.6k|            carry = ys >> 32;
 1166|  18.6k|            y = *bx - (ys & FFFFFFFF) - borrow;
  ------------------
  |  |  285|  18.6k|#define FFFFFFFF 0xffffffffUL
  ------------------
 1167|  18.6k|            borrow = y >> 32 & (ULong)1;
 1168|  18.6k|            *bx++ = (ULong)(y & FFFFFFFF);
  ------------------
  |  |  285|  18.6k|#define FFFFFFFF 0xffffffffUL
  ------------------
 1169|  18.6k|        }
 1170|  18.6k|        while(sx <= sxe);
  ------------------
  |  Branch (1170:15): [True: 14.8k, False: 3.86k]
  ------------------
 1171|  3.86k|        if (!*bxe) {
  ------------------
  |  Branch (1171:13): [True: 46, False: 3.82k]
  ------------------
 1172|     46|            bx = b->x;
 1173|     46|            while(--bxe > bx && !*bxe)
  ------------------
  |  Branch (1173:19): [True: 42, False: 4]
  |  Branch (1173:33): [True: 0, False: 42]
  ------------------
 1174|      0|                --n;
 1175|     46|            b->wds = n;
 1176|     46|        }
 1177|  3.86k|    }
 1178|  6.25k|    if (cmp(b, S) >= 0) {
  ------------------
  |  Branch (1178:9): [True: 168, False: 6.09k]
  ------------------
 1179|    168|        q++;
 1180|    168|        borrow = 0;
 1181|    168|        carry = 0;
 1182|    168|        bx = b->x;
 1183|    168|        sx = S->x;
 1184|    815|        do {
 1185|    815|            ys = *sx++ + carry;
 1186|    815|            carry = ys >> 32;
 1187|    815|            y = *bx - (ys & FFFFFFFF) - borrow;
  ------------------
  |  |  285|    815|#define FFFFFFFF 0xffffffffUL
  ------------------
 1188|    815|            borrow = y >> 32 & (ULong)1;
 1189|    815|            *bx++ = (ULong)(y & FFFFFFFF);
  ------------------
  |  |  285|    815|#define FFFFFFFF 0xffffffffUL
  ------------------
 1190|    815|        }
 1191|    815|        while(sx <= sxe);
  ------------------
  |  Branch (1191:15): [True: 647, False: 168]
  ------------------
 1192|    168|        bx = b->x;
 1193|    168|        bxe = bx + n;
 1194|    168|        if (!*bxe) {
  ------------------
  |  Branch (1194:13): [True: 158, False: 10]
  ------------------
 1195|    171|            while(--bxe > bx && !*bxe)
  ------------------
  |  Branch (1195:19): [True: 111, False: 60]
  |  Branch (1195:33): [True: 13, False: 98]
  ------------------
 1196|     13|                --n;
 1197|    158|            b->wds = n;
 1198|    158|        }
 1199|    168|    }
 1200|  6.25k|    return q;
 1201|  6.54k|}

_PyErr_SetRaisedException:
   25|  14.1k|{
   26|  14.1k|    PyObject *old_exc = tstate->current_exception;
   27|  14.1k|    tstate->current_exception = exc;
   28|  14.1k|    Py_XDECREF(old_exc);
  ------------------
  |  |  524|  14.1k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  14.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  14.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   29|  14.1k|}
_PyErr_Restore:
   60|  13.4k|{
   61|  13.4k|    if (type == NULL) {
  ------------------
  |  Branch (61:9): [True: 9.53k, False: 3.88k]
  ------------------
   62|  9.53k|        assert(value == NULL);
  ------------------
  |  Branch (62:9): [True: 9.53k, False: 0]
  ------------------
   63|  9.53k|        assert(traceback == NULL);
  ------------------
  |  Branch (63:9): [True: 9.53k, False: 0]
  ------------------
   64|  9.53k|        _PyErr_SetRaisedException(tstate, NULL);
   65|  9.53k|        return;
   66|  9.53k|    }
   67|  13.4k|    assert(PyExceptionClass_Check(type));
  ------------------
  |  Branch (67:5): [True: 3.88k, False: 0]
  |  Branch (67:5): [True: 3.88k, False: 0]
  ------------------
   68|  3.88k|    if (value != NULL && type == (PyObject *)Py_TYPE(value)) {
  ------------------
  |  |  213|  3.88k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  3.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (68:9): [True: 3.88k, False: 0]
  |  Branch (68:26): [True: 3.88k, False: 0]
  ------------------
   69|       |        /* Already normalized */
   70|       |#ifdef Py_DEBUG
   71|       |        PyObject *tb = PyException_GetTraceback(value);
   72|       |        assert(tb != Py_None);
   73|       |        Py_XDECREF(tb);
   74|       |#endif
   75|  3.88k|    }
   76|      0|    else {
   77|      0|        PyObject *exc = _PyErr_CreateException(type, value);
   78|      0|        Py_XDECREF(value);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   79|      0|        if (exc == NULL) {
  ------------------
  |  Branch (79:13): [True: 0, False: 0]
  ------------------
   80|      0|            Py_DECREF(type);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   81|      0|            Py_XDECREF(traceback);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   82|      0|            return;
   83|      0|        }
   84|      0|        value = exc;
   85|      0|    }
   86|  3.88k|    assert(PyExceptionInstance_Check(value));
  ------------------
  |  Branch (86:5): [True: 3.88k, False: 0]
  ------------------
   87|  3.88k|    if (traceback != NULL) {
  ------------------
  |  Branch (87:9): [True: 0, False: 3.88k]
  ------------------
   88|      0|        if (PyException_SetTraceback(value, traceback) < 0) {
  ------------------
  |  Branch (88:13): [True: 0, False: 0]
  ------------------
   89|      0|            Py_DECREF(traceback);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   90|      0|            Py_DECREF(value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   91|      0|            Py_DECREF(type);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   92|      0|            return;
   93|      0|        }
   94|      0|        Py_DECREF(traceback);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   95|      0|    }
   96|  3.88k|    _PyErr_SetRaisedException(tstate, value);
   97|  3.88k|    Py_DECREF(type);
  ------------------
  |  |  430|  3.88k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   98|  3.88k|}
PyErr_SetRaisedException:
  109|    574|{
  110|    574|    PyThreadState *tstate = _PyThreadState_GET();
  111|    574|    _PyErr_SetRaisedException(tstate, exc);
  112|    574|}
_PyErr_GetTopmostException:
  116|  3.88k|{
  117|  3.88k|    _PyErr_StackItem *exc_info = tstate->exc_info;
  118|  3.88k|    assert(exc_info);
  ------------------
  |  Branch (118:5): [True: 3.88k, False: 0]
  ------------------
  119|       |
  120|  3.88k|    while (exc_info->exc_value == NULL && exc_info->previous_item != NULL)
  ------------------
  |  Branch (120:12): [True: 3.87k, False: 18]
  |  Branch (120:43): [True: 4, False: 3.86k]
  ------------------
  121|      4|    {
  122|      4|        exc_info = exc_info->previous_item;
  123|      4|    }
  124|  3.88k|    assert(!Py_IsNone(exc_info->exc_value));
  ------------------
  |  Branch (124:5): [True: 3.88k, False: 0]
  ------------------
  125|  3.88k|    return exc_info;
  126|  3.88k|}
_PyErr_SetObject:
  152|  3.88k|{
  153|  3.88k|    PyObject *exc_value;
  154|  3.88k|    PyObject *tb = NULL;
  155|       |
  156|  3.88k|    if (exception != NULL &&
  ------------------
  |  Branch (156:9): [True: 3.88k, False: 0]
  ------------------
  157|  3.88k|        !PyExceptionClass_Check(exception)) {
  ------------------
  |  |   61|  3.88k|    (PyType_Check((x)) &&                                               \
  |  |  ------------------
  |  |  |  |  766|  7.77k|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  3.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  3.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (766:28): [True: 3.88k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   62|  3.88k|     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
  |  |  ------------------
  |  |  |  |  760|  3.88k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 3.88k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  158|      0|        _PyErr_Format(tstate, PyExc_SystemError,
  159|      0|                      "_PyErr_SetObject: "
  160|      0|                      "exception %R is not a BaseException subclass",
  161|      0|                      exception);
  162|      0|        return;
  163|      0|    }
  164|       |    /* Normalize the exception */
  165|  3.88k|    int is_subclass = 0;
  166|  3.88k|    if (value != NULL && PyExceptionInstance_Check(value)) {
  ------------------
  |  |   65|  3.88k|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  3.88k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 158, False: 3.72k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (166:9): [True: 3.88k, False: 0]
  ------------------
  167|    158|        is_subclass = PyObject_IsSubclass((PyObject *)Py_TYPE(value), exception);
  ------------------
  |  |  213|    158|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    158|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    158|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  168|    158|        if (is_subclass < 0) {
  ------------------
  |  Branch (168:13): [True: 0, False: 158]
  ------------------
  169|      0|            return;
  170|      0|        }
  171|    158|    }
  172|  3.88k|    Py_XINCREF(value);
  ------------------
  |  |  514|  3.88k|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  173|  3.88k|    if (!is_subclass) {
  ------------------
  |  Branch (173:9): [True: 3.72k, False: 158]
  ------------------
  174|       |        /* We must normalize the value right now */
  175|       |
  176|       |        /* Issue #23571: functions must not be called with an
  177|       |            exception set */
  178|  3.72k|        _PyErr_Clear(tstate);
  179|       |
  180|  3.72k|        PyObject *fixed_value = _PyErr_CreateException(exception, value);
  181|  3.72k|        if (fixed_value == NULL) {
  ------------------
  |  Branch (181:13): [True: 0, False: 3.72k]
  ------------------
  182|      0|            PyObject *exc = _PyErr_GetRaisedException(tstate);
  183|      0|            assert(PyExceptionInstance_Check(exc));
  ------------------
  |  Branch (183:13): [True: 0, False: 0]
  ------------------
  184|       |
  185|      0|            PyObject *note = get_normalization_failure_note(tstate, exception, value);
  186|      0|            Py_XDECREF(value);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  187|      0|            if (note != NULL) {
  ------------------
  |  Branch (187:17): [True: 0, False: 0]
  ------------------
  188|       |                /* ignore errors in _PyException_AddNote - they will be overwritten below */
  189|      0|                _PyException_AddNote(exc, note);
  190|      0|                Py_DECREF(note);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  191|      0|            }
  192|      0|            _PyErr_SetRaisedException(tstate, exc);
  193|      0|            return;
  194|      0|        }
  195|  3.72k|        Py_XSETREF(value, fixed_value);
  ------------------
  |  |  374|  3.72k|    do { \
  |  |  375|  3.72k|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|  3.72k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|  3.72k|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.72k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|  3.72k|        *_tmp_dst_ptr = (src); \
  |  |  378|  3.72k|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|  3.72k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  3.72k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  3.72k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|  3.72k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 3.72k]
  |  |  ------------------
  ------------------
  196|  3.72k|    }
  197|       |
  198|  3.88k|    exc_value = _PyErr_GetTopmostException(tstate)->exc_value;
  199|  3.88k|    if (exc_value != NULL && exc_value != Py_None) {
  ------------------
  |  |  616|     18|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (199:9): [True: 18, False: 3.86k]
  |  Branch (199:30): [True: 18, False: 0]
  ------------------
  200|       |        /* Implicit exception chaining */
  201|     18|        Py_INCREF(exc_value);
  ------------------
  |  |  310|     18|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  202|       |        /* Avoid creating new reference cycles through the
  203|       |           context chain, while taking care not to hang on
  204|       |           pre-existing ones.
  205|       |           This is O(chain length) but context chains are
  206|       |           usually very short. Sensitive readers may try
  207|       |           to inline the call to PyException_GetContext. */
  208|     18|        if (exc_value != value) {
  ------------------
  |  Branch (208:13): [True: 18, False: 0]
  ------------------
  209|     18|            PyObject *o = exc_value, *context;
  210|     18|            PyObject *slow_o = o;  /* Floyd's cycle detection algo */
  211|     18|            int slow_update_toggle = 0;
  212|     18|            while ((context = PyException_GetContext(o))) {
  ------------------
  |  Branch (212:20): [True: 0, False: 18]
  ------------------
  213|      0|                Py_DECREF(context);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  214|      0|                if (context == value) {
  ------------------
  |  Branch (214:21): [True: 0, False: 0]
  ------------------
  215|      0|                    PyException_SetContext(o, NULL);
  216|      0|                    break;
  217|      0|                }
  218|      0|                o = context;
  219|      0|                if (o == slow_o) {
  ------------------
  |  Branch (219:21): [True: 0, False: 0]
  ------------------
  220|       |                    /* pre-existing cycle - all exceptions on the
  221|       |                       path were visited and checked.  */
  222|      0|                    break;
  223|      0|                }
  224|      0|                if (slow_update_toggle) {
  ------------------
  |  Branch (224:21): [True: 0, False: 0]
  ------------------
  225|      0|                    slow_o = PyException_GetContext(slow_o);
  226|      0|                    Py_DECREF(slow_o);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  227|      0|                }
  228|      0|                slow_update_toggle = !slow_update_toggle;
  229|      0|            }
  230|     18|            PyException_SetContext(value, exc_value);
  231|     18|        }
  232|      0|        else {
  233|      0|            Py_DECREF(exc_value);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  234|      0|        }
  235|     18|    }
  236|  3.88k|    assert(value != NULL);
  ------------------
  |  Branch (236:5): [True: 3.88k, False: 0]
  ------------------
  237|  3.88k|    if (PyExceptionInstance_Check(value))
  ------------------
  |  |   65|  3.88k|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  3.88k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 3.88k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  238|  3.88k|        tb = PyException_GetTraceback(value);
  239|  3.88k|    _PyErr_Restore(tstate, Py_NewRef(Py_TYPE(value)), value, tb);
  ------------------
  |  |  550|  3.88k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  3.88k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.88k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  240|  3.88k|}
PyErr_SetObject:
  244|     26|{
  245|     26|    PyThreadState *tstate = _PyThreadState_GET();
  246|     26|    _PyErr_SetObject(tstate, exception, value);
  247|     26|}
_PyErr_SetKeyError:
  258|    118|{
  259|    118|    PyThreadState *tstate = _PyThreadState_GET();
  260|       |
  261|       |    // PyObject_CallOneArg() must not be called with an exception set,
  262|       |    // otherwise _Py_CheckFunctionResult() can fail if the function returned
  263|       |    // a result with an excception set.
  264|    118|    _PyErr_Clear(tstate);
  265|       |
  266|    118|    PyObject *exc = PyObject_CallOneArg(PyExc_KeyError, arg);
  267|    118|    if (!exc) {
  ------------------
  |  Branch (267:9): [True: 0, False: 118]
  ------------------
  268|       |        /* caller will expect error to be set anyway */
  269|      0|        return;
  270|      0|    }
  271|       |
  272|    118|    _PyErr_SetObject(tstate, (PyObject*)Py_TYPE(exc), exc);
  ------------------
  |  |  213|    118|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  273|    118|    Py_DECREF(exc);
  ------------------
  |  |  430|    118|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  274|    118|}
_PyErr_SetString:
  294|      2|{
  295|      2|    PyObject *value = PyUnicode_FromString(string);
  296|      2|    if (value != NULL) {
  ------------------
  |  Branch (296:9): [True: 2, False: 0]
  ------------------
  297|      2|        _PyErr_SetObject(tstate, exception, value);
  298|      2|        Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  299|      2|    }
  300|      2|}
PyErr_SetString:
  304|      2|{
  305|      2|    PyThreadState *tstate = _PyThreadState_GET();
  306|      2|    _PyErr_SetString(tstate, exception, string);
  307|      2|}
PyErr_Occurred:
  321|  35.4k|{
  322|       |    /* The caller must hold a thread state. */
  323|  35.4k|    _Py_AssertHoldsTstate();
  ------------------
  |  |  306|  35.4k|#define _Py_AssertHoldsTstate() _Py_AssertHoldsTstateFunc(__func__)
  ------------------
  324|       |
  325|  35.4k|    PyThreadState *tstate = _PyThreadState_GET();
  326|  35.4k|    return _PyErr_Occurred(tstate);
  327|  35.4k|}
PyErr_GivenExceptionMatches:
  332|  2.26k|{
  333|  2.26k|    if (err == NULL || exc == NULL) {
  ------------------
  |  Branch (333:9): [True: 0, False: 2.26k]
  |  Branch (333:24): [True: 0, False: 2.26k]
  ------------------
  334|       |        /* maybe caused by "import exceptions" that failed early on */
  335|      0|        return 0;
  336|      0|    }
  337|  2.26k|    if (PyTuple_Check(exc)) {
  ------------------
  |  |   27|  2.26k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.26k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 14, False: 2.24k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  338|     14|        Py_ssize_t i, n;
  339|     14|        n = PyTuple_Size(exc);
  340|     14|        for (i = 0; i < n; i++) {
  ------------------
  |  Branch (340:21): [True: 14, False: 0]
  ------------------
  341|       |            /* Test recursively */
  342|     14|             if (PyErr_GivenExceptionMatches(
  ------------------
  |  Branch (342:18): [True: 14, False: 0]
  ------------------
  343|     14|                 err, PyTuple_GET_ITEM(exc, i)))
  ------------------
  |  |   29|     14|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     14|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (343:23): [True: 14, False: 0]
  ------------------
  344|     14|             {
  345|     14|                 return 1;
  346|     14|             }
  347|     14|        }
  348|      0|        return 0;
  349|     14|    }
  350|       |    /* err might be an instance, so check its class. */
  351|  2.24k|    if (PyExceptionInstance_Check(err))
  ------------------
  |  |   65|  2.24k|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  2.24k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 220, False: 2.02k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  352|    220|        err = PyExceptionInstance_Class(err);
  ------------------
  |  |   69|    220|#define PyExceptionInstance_Class(x) _PyObject_CAST(Py_TYPE(x))
  |  |  ------------------
  |  |  |  |  171|    220|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    220|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  353|       |
  354|  2.24k|    if (PyExceptionClass_Check(err) && PyExceptionClass_Check(exc)) {
  ------------------
  |  |   61|  4.49k|    (PyType_Check((x)) &&                                               \
  |  |  ------------------
  |  |  |  |  766|  4.49k|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.24k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.24k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (766:28): [True: 2.24k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   62|  4.49k|     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
  |  |  ------------------
  |  |  |  |  760|  2.24k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2.24k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyExceptionClass_Check(err) && PyExceptionClass_Check(exc)) {
  ------------------
  |  |   61|  2.24k|    (PyType_Check((x)) &&                                               \
  |  |  ------------------
  |  |  |  |  766|  4.49k|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  2.24k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  2.24k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (766:28): [True: 2.24k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   62|  2.24k|     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
  |  |  ------------------
  |  |  |  |  760|  2.24k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2.24k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  355|  2.24k|        return PyType_IsSubtype((PyTypeObject *)err, (PyTypeObject *)exc);
  356|  2.24k|    }
  357|       |
  358|      0|    return err == exc;
  359|  2.24k|}
_PyErr_ExceptionMatches:
  364|  2.02k|{
  365|  2.02k|    return PyErr_GivenExceptionMatches(_PyErr_Occurred(tstate), exc);
  366|  2.02k|}
PyErr_ExceptionMatches:
  371|  2.01k|{
  372|  2.01k|    PyThreadState *tstate = _PyThreadState_GET();
  373|  2.01k|    return _PyErr_ExceptionMatches(tstate, exc);
  374|  2.01k|}
_PyErr_GetRaisedException:
  499|    862|_PyErr_GetRaisedException(PyThreadState *tstate) {
  500|    862|    PyObject *exc = tstate->current_exception;
  501|       |    tstate->current_exception = NULL;
  502|    862|    return exc;
  503|    862|}
PyErr_GetRaisedException:
  507|    574|{
  508|    574|    PyThreadState *tstate = _PyThreadState_GET();
  509|    574|    return _PyErr_GetRaisedException(tstate);
  510|    574|}
_PyErr_Clear:
  539|  9.53k|{
  540|  9.53k|    _PyErr_Restore(tstate, NULL, NULL, NULL);
  541|  9.53k|}
PyErr_Clear:
  546|  1.97k|{
  547|  1.97k|    PyThreadState *tstate = _PyThreadState_GET();
  548|  1.97k|    _PyErr_Clear(tstate);
  549|  1.97k|}
PyErr_SetFromErrnoWithFilenameObject:
  810|     10|{
  811|       |    return PyErr_SetFromErrnoWithFilenameObjects(exc, filenameObject, NULL);
  812|     10|}
PyErr_SetFromErrnoWithFilenameObjects:
  816|     20|{
  817|     20|    PyThreadState *tstate = _PyThreadState_GET();
  818|     20|    PyObject *message;
  819|     20|    PyObject *v, *args;
  820|     20|    int i = errno;
  821|       |#ifdef MS_WINDOWS
  822|       |    WCHAR *s_buf = NULL;
  823|       |#endif /* Unix/Windows */
  824|       |
  825|     20|#ifdef EINTR
  826|     20|    if (i == EINTR && PyErr_CheckSignals())
  ------------------
  |  Branch (826:9): [True: 0, False: 20]
  |  Branch (826:23): [True: 0, False: 0]
  ------------------
  827|      0|        return NULL;
  828|     20|#endif
  829|       |
  830|     20|#ifndef MS_WINDOWS
  831|     20|    if (i != 0) {
  ------------------
  |  Branch (831:9): [True: 20, False: 0]
  ------------------
  832|     20|        const char *s = strerror(i);
  833|     20|        message = PyUnicode_DecodeLocale(s, "surrogateescape");
  834|     20|    }
  835|      0|    else {
  836|       |        /* Sometimes errno didn't get set */
  837|      0|        message = PyUnicode_FromString("Error");
  838|      0|    }
  839|       |#else
  840|       |    if (i == 0)
  841|       |        message = PyUnicode_FromString("Error"); /* Sometimes errno didn't get set */
  842|       |    else
  843|       |    {
  844|       |        /* Note that the Win32 errors do not lineup with the
  845|       |           errno error.  So if the error is in the MSVC error
  846|       |           table, we use it, otherwise we assume it really _is_
  847|       |           a Win32 error code
  848|       |        */
  849|       |        if (i > 0 && i < _sys_nerr) {
  850|       |            message = PyUnicode_FromString(_sys_errlist[i]);
  851|       |        }
  852|       |        else {
  853|       |            int len = FormatMessageW(
  854|       |                FORMAT_MESSAGE_ALLOCATE_BUFFER |
  855|       |                FORMAT_MESSAGE_FROM_SYSTEM |
  856|       |                FORMAT_MESSAGE_IGNORE_INSERTS,
  857|       |                NULL,                   /* no message source */
  858|       |                i,
  859|       |                MAKELANGID(LANG_NEUTRAL,
  860|       |                           SUBLANG_DEFAULT),
  861|       |                           /* Default language */
  862|       |                (LPWSTR) &s_buf,
  863|       |                0,                      /* size not used */
  864|       |                NULL);                  /* no args */
  865|       |            if (len==0) {
  866|       |                /* Only ever seen this in out-of-mem
  867|       |                   situations */
  868|       |                s_buf = NULL;
  869|       |                message = PyUnicode_FromFormat("Windows Error 0x%x", i);
  870|       |            } else {
  871|       |                /* remove trailing cr/lf and dots */
  872|       |                while (len > 0 && (s_buf[len-1] <= L' ' || s_buf[len-1] == L'.'))
  873|       |                    s_buf[--len] = L'\0';
  874|       |                message = PyUnicode_FromWideChar(s_buf, len);
  875|       |            }
  876|       |        }
  877|       |    }
  878|       |#endif /* Unix/Windows */
  879|       |
  880|     20|    if (message == NULL)
  ------------------
  |  Branch (880:9): [True: 0, False: 20]
  ------------------
  881|      0|    {
  882|       |#ifdef MS_WINDOWS
  883|       |        LocalFree(s_buf);
  884|       |#endif
  885|      0|        return NULL;
  886|      0|    }
  887|       |
  888|     20|    if (filenameObject != NULL) {
  ------------------
  |  Branch (888:9): [True: 10, False: 10]
  ------------------
  889|     10|        if (filenameObject2 != NULL)
  ------------------
  |  Branch (889:13): [True: 0, False: 10]
  ------------------
  890|      0|            args = Py_BuildValue("(iOOiO)", i, message, filenameObject, 0, filenameObject2);
  891|     10|        else
  892|     10|            args = Py_BuildValue("(iOO)", i, message, filenameObject);
  893|     10|    } else {
  894|     10|        assert(filenameObject2 == NULL);
  ------------------
  |  Branch (894:9): [True: 10, False: 0]
  ------------------
  895|     10|        args = Py_BuildValue("(iO)", i, message);
  896|     10|    }
  897|     20|    Py_DECREF(message);
  ------------------
  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  898|       |
  899|     20|    if (args != NULL) {
  ------------------
  |  Branch (899:9): [True: 20, False: 0]
  ------------------
  900|     20|        v = PyObject_Call(exc, args, NULL);
  901|     20|        Py_DECREF(args);
  ------------------
  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  902|     20|        if (v != NULL) {
  ------------------
  |  Branch (902:13): [True: 20, False: 0]
  ------------------
  903|     20|            _PyErr_SetObject(tstate, (PyObject *) Py_TYPE(v), v);
  ------------------
  |  |  213|     20|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  904|     20|            Py_DECREF(v);
  ------------------
  |  |  430|     20|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  905|     20|        }
  906|     20|    }
  907|       |#ifdef MS_WINDOWS
  908|       |    LocalFree(s_buf);
  909|       |#endif
  910|       |    return NULL;
  911|     20|}
PyErr_SetFromErrno:
  932|     10|{
  933|     10|    return PyErr_SetFromErrnoWithFilenameObjects(exc, NULL, NULL);
  934|     10|}
_PyErr_FormatV:
 1211|  3.69k|{
 1212|  3.69k|    PyObject* string;
 1213|       |
 1214|       |    /* Issue #23571: PyUnicode_FromFormatV() must not be called with an
 1215|       |       exception set, it calls arbitrary Python code like PyObject_Repr() */
 1216|  3.69k|    _PyErr_Clear(tstate);
 1217|       |
 1218|  3.69k|    string = PyUnicode_FromFormatV(format, vargs);
 1219|  3.69k|    if (string != NULL) {
  ------------------
  |  Branch (1219:9): [True: 3.69k, False: 0]
  ------------------
 1220|  3.69k|        _PyErr_SetObject(tstate, exception, string);
 1221|  3.69k|        Py_DECREF(string);
  ------------------
  |  |  430|  3.69k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  3.69k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  3.69k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1222|  3.69k|    }
 1223|       |    return NULL;
 1224|  3.69k|}
PyErr_Format:
 1249|  3.69k|{
 1250|  3.69k|    PyThreadState *tstate = _PyThreadState_GET();
 1251|  3.69k|    va_list vargs;
 1252|  3.69k|    va_start(vargs, format);
 1253|  3.69k|    _PyErr_FormatV(tstate, exception, format, vargs);
 1254|  3.69k|    va_end(vargs);
 1255|       |    return NULL;
 1256|  3.69k|}
PyErr_NewException:
 1288|      4|{
 1289|      4|    PyThreadState *tstate = _PyThreadState_GET();
 1290|      4|    PyObject *modulename = NULL;
 1291|      4|    PyObject *mydict = NULL;
 1292|      4|    PyObject *bases = NULL;
 1293|      4|    PyObject *result = NULL;
 1294|       |
 1295|      4|    const char *dot = strrchr(name, '.');
 1296|      4|    if (dot == NULL) {
  ------------------
  |  Branch (1296:9): [True: 0, False: 4]
  ------------------
 1297|      0|        _PyErr_SetString(tstate, PyExc_SystemError,
 1298|      0|                         "PyErr_NewException: name must be module.class");
 1299|      0|        return NULL;
 1300|      0|    }
 1301|      4|    if (base == NULL) {
  ------------------
  |  Branch (1301:9): [True: 0, False: 4]
  ------------------
 1302|      0|        base = PyExc_Exception;
 1303|      0|    }
 1304|      4|    if (dict == NULL) {
  ------------------
  |  Branch (1304:9): [True: 4, False: 0]
  ------------------
 1305|      4|        dict = mydict = PyDict_New();
 1306|      4|        if (dict == NULL)
  ------------------
  |  Branch (1306:13): [True: 0, False: 4]
  ------------------
 1307|      0|            goto failure;
 1308|      4|    }
 1309|       |
 1310|      4|    int r = PyDict_Contains(dict, &_Py_ID(__module__));
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1311|      4|    if (r < 0) {
  ------------------
  |  Branch (1311:9): [True: 0, False: 4]
  ------------------
 1312|      0|        goto failure;
 1313|      0|    }
 1314|      4|    if (r == 0) {
  ------------------
  |  Branch (1314:9): [True: 4, False: 0]
  ------------------
 1315|      4|        modulename = PyUnicode_FromStringAndSize(name,
 1316|      4|                                             (Py_ssize_t)(dot-name));
 1317|      4|        if (modulename == NULL)
  ------------------
  |  Branch (1317:13): [True: 0, False: 4]
  ------------------
 1318|      0|            goto failure;
 1319|      4|        if (PyDict_SetItem(dict, &_Py_ID(__module__), modulename) != 0)
  ------------------
  |  |  917|      4|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1319:13): [True: 0, False: 4]
  ------------------
 1320|      0|            goto failure;
 1321|      4|    }
 1322|      4|    if (PyTuple_Check(base)) {
  ------------------
  |  |   27|      4|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1323|      2|        bases = Py_NewRef(base);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1324|      2|    } else {
 1325|      2|        bases = PyTuple_Pack(1, base);
 1326|      2|        if (bases == NULL)
  ------------------
  |  Branch (1326:13): [True: 0, False: 2]
  ------------------
 1327|      0|            goto failure;
 1328|      2|    }
 1329|       |    /* Create a real class. */
 1330|      4|    result = PyObject_CallFunction((PyObject *)&PyType_Type, "sOO",
 1331|      4|                                   dot+1, bases, dict);
 1332|      4|  failure:
 1333|      4|    Py_XDECREF(bases);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1334|      4|    Py_XDECREF(mydict);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1335|      4|    Py_XDECREF(modulename);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1336|      4|    return result;
 1337|      4|}
_PyErr_InitTypes:
 1400|      2|{
 1401|      2|    if (_PyStructSequence_InitBuiltin(interp, &UnraisableHookArgsType,
  ------------------
  |  Branch (1401:9): [True: 0, False: 2]
  ------------------
 1402|      2|                                      &UnraisableHookArgs_desc) < 0)
 1403|      0|    {
 1404|      0|        return _PyStatus_ERR("failed to initialize UnraisableHookArgs type");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1405|      0|    }
 1406|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1407|      2|}
errors.c:_PyErr_CreateException:
   33|  3.72k|{
   34|  3.72k|    PyObject *exc;
   35|       |
   36|  3.72k|    if (value == NULL || value == Py_None) {
  ------------------
  |  |  616|  3.72k|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (36:9): [True: 0, False: 3.72k]
  |  Branch (36:26): [True: 0, False: 3.72k]
  ------------------
   37|      0|        exc = _PyObject_CallNoArgs(exception_type);
   38|      0|    }
   39|  3.72k|    else if (PyTuple_Check(value)) {
  ------------------
  |  |   27|  3.72k|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  3.72k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 3.72k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   40|      0|        exc = PyObject_Call(exception_type, value, NULL);
   41|      0|    }
   42|  3.72k|    else {
   43|  3.72k|        exc = PyObject_CallOneArg(exception_type, value);
   44|  3.72k|    }
   45|       |
   46|  3.72k|    if (exc != NULL && !PyExceptionInstance_Check(exc)) {
  ------------------
  |  |   65|  3.72k|    PyType_FastSubclass(Py_TYPE(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  3.72k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (46:9): [True: 3.72k, False: 0]
  |  Branch (46:24): [True: 0, False: 3.72k]
  ------------------
   47|      0|        PyErr_Format(PyExc_TypeError,
   48|      0|                     "calling %R should have returned an instance of "
   49|      0|                     "BaseException, not %s",
   50|      0|                     exception_type, Py_TYPE(exc)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   51|      0|        Py_CLEAR(exc);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
   52|      0|    }
   53|       |
   54|  3.72k|    return exc;
   55|  3.72k|}

_Py_ResetForceASCII:
  325|      8|{
  326|      8|    force_ascii = -1;
  ------------------
  |  |  210|      8|#define force_ascii (_PyRuntime.fileutils.force_ascii)
  ------------------
  327|      8|}
_Py_DecodeLocaleEx:
  600|     34|{
  601|     34|    if (current_locale) {
  ------------------
  |  Branch (601:9): [True: 20, False: 14]
  ------------------
  602|       |#ifdef _Py_FORCE_UTF8_LOCALE
  603|       |        return _Py_DecodeUTF8Ex(arg, strlen(arg), wstr, wlen, reason,
  604|       |                                errors);
  605|       |#else
  606|     20|        return decode_current_locale(arg, wstr, wlen, reason, errors);
  607|     20|#endif
  608|     20|    }
  609|       |
  610|       |#ifdef _Py_FORCE_UTF8_FS_ENCODING
  611|       |    return _Py_DecodeUTF8Ex(arg, strlen(arg), wstr, wlen, reason,
  612|       |                            errors);
  613|       |#else
  614|     14|    int use_utf8 = (_PyRuntime.preconfig.utf8_mode >= 1);
  615|       |#ifdef MS_WINDOWS
  616|       |    use_utf8 |= (_PyRuntime.preconfig.legacy_windows_fs_encoding == 0);
  617|       |#endif
  618|     14|    if (use_utf8) {
  ------------------
  |  Branch (618:9): [True: 14, False: 0]
  ------------------
  619|     14|        return _Py_DecodeUTF8Ex(arg, strlen(arg), wstr, wlen, reason,
  620|     14|                                errors);
  621|     14|    }
  622|       |
  623|      0|#ifdef USE_FORCE_ASCII
  624|      0|    if (force_ascii == -1) {
  ------------------
  |  |  210|      0|#define force_ascii (_PyRuntime.fileutils.force_ascii)
  ------------------
  |  Branch (624:9): [True: 0, False: 0]
  ------------------
  625|      0|        force_ascii = check_force_ascii();
  ------------------
  |  |  210|      0|#define force_ascii (_PyRuntime.fileutils.force_ascii)
  ------------------
  626|      0|    }
  627|       |
  628|      0|    if (force_ascii) {
  ------------------
  |  |  210|      0|#define force_ascii (_PyRuntime.fileutils.force_ascii)
  |  |  ------------------
  |  |  |  Branch (210:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  629|       |        /* force ASCII encoding to workaround mbstowcs() issue */
  630|      0|        return decode_ascii(arg, wstr, wlen, reason, errors);
  631|      0|    }
  632|      0|#endif
  633|       |
  634|      0|    return decode_current_locale(arg, wstr, wlen, reason, errors);
  635|      0|#endif   /* !_Py_FORCE_UTF8_FS_ENCODING */
  636|      0|}
Py_DecodeLocale:
  660|     12|{
  661|     12|    wchar_t *wstr;
  662|     12|    int res = _Py_DecodeLocaleEx(arg, &wstr, wlen,
  663|     12|                                 NULL, 0,
  664|     12|                                 _Py_ERROR_SURROGATEESCAPE);
  665|     12|    if (res != 0) {
  ------------------
  |  Branch (665:9): [True: 0, False: 12]
  ------------------
  666|      0|        assert(res != -3);
  ------------------
  |  Branch (666:9): [True: 0, False: 0]
  ------------------
  667|      0|        if (wlen != NULL) {
  ------------------
  |  Branch (667:13): [True: 0, False: 0]
  ------------------
  668|      0|            *wlen = (size_t)res;
  669|      0|        }
  670|      0|        return NULL;
  671|      0|    }
  672|     12|    return wstr;
  673|     12|}
_Py_EncodeLocaleRaw:
  871|     32|{
  872|     32|    return encode_locale(text, error_pos, 1, 0);
  873|     32|}
_Py_fstat_noraise:
 1232|      8|{
 1233|       |#ifdef MS_WINDOWS
 1234|       |    BY_HANDLE_FILE_INFORMATION info;
 1235|       |    FILE_BASIC_INFO basicInfo;
 1236|       |    FILE_ID_INFO idInfo;
 1237|       |    FILE_ID_INFO *pIdInfo = &idInfo;
 1238|       |    HANDLE h;
 1239|       |    int type;
 1240|       |
 1241|       |    h = _Py_get_osfhandle_noraise(fd);
 1242|       |
 1243|       |    if (h == INVALID_HANDLE_VALUE) {
 1244|       |        /* errno is already set by _get_osfhandle, but we also set
 1245|       |           the Win32 error for callers who expect that */
 1246|       |        SetLastError(ERROR_INVALID_HANDLE);
 1247|       |        return -1;
 1248|       |    }
 1249|       |    memset(status, 0, sizeof(*status));
 1250|       |
 1251|       |    type = GetFileType(h);
 1252|       |    if (type == FILE_TYPE_UNKNOWN) {
 1253|       |        DWORD error = GetLastError();
 1254|       |        if (error != 0) {
 1255|       |            errno = winerror_to_errno(error);
 1256|       |            return -1;
 1257|       |        }
 1258|       |        /* else: valid but unknown file */
 1259|       |    }
 1260|       |
 1261|       |    if (type != FILE_TYPE_DISK) {
 1262|       |        if (type == FILE_TYPE_CHAR)
 1263|       |            status->st_mode = _S_IFCHR;
 1264|       |        else if (type == FILE_TYPE_PIPE)
 1265|       |            status->st_mode = _S_IFIFO;
 1266|       |        return 0;
 1267|       |    }
 1268|       |
 1269|       |    if (!GetFileInformationByHandle(h, &info) ||
 1270|       |        !GetFileInformationByHandleEx(h, FileBasicInfo, &basicInfo, sizeof(basicInfo))) {
 1271|       |        /* The Win32 error is already set, but we also set errno for
 1272|       |           callers who expect it */
 1273|       |        errno = winerror_to_errno(GetLastError());
 1274|       |        return -1;
 1275|       |    }
 1276|       |
 1277|       |    if (!GetFileInformationByHandleEx(h, FileIdInfo, &idInfo, sizeof(idInfo))) {
 1278|       |        /* Failed to get FileIdInfo, so do not pass it along */
 1279|       |        pIdInfo = NULL;
 1280|       |    }
 1281|       |
 1282|       |    _Py_attribute_data_to_stat(&info, 0, &basicInfo, pIdInfo, status);
 1283|       |    return 0;
 1284|       |#else
 1285|      8|    return fstat(fd, status);
 1286|      8|#endif
 1287|      8|}
_Py_wstat:
 1329|     20|{
 1330|     20|    int err;
 1331|       |#ifdef MS_WINDOWS
 1332|       |    struct _stat wstatbuf;
 1333|       |    err = _wstat(path, &wstatbuf);
 1334|       |    if (!err) {
 1335|       |        buf->st_mode = wstatbuf.st_mode;
 1336|       |    }
 1337|       |#else
 1338|     20|    char *fname;
 1339|     20|    fname = _Py_EncodeLocaleRaw(path, NULL);
 1340|     20|    if (fname == NULL) {
  ------------------
  |  Branch (1340:9): [True: 0, False: 20]
  ------------------
 1341|      0|        errno = EINVAL;
 1342|      0|        return -1;
 1343|      0|    }
 1344|     20|    err = stat(fname, buf);
 1345|     20|    PyMem_RawFree(fname);
 1346|     20|#endif
 1347|     20|    return err;
 1348|     20|}
_Py_wfopen:
 1713|     10|{
 1714|     10|    FILE *f;
 1715|     10|    if (PySys_Audit("open", "uui", path, mode, 0) < 0) {
  ------------------
  |  Branch (1715:9): [True: 0, False: 10]
  ------------------
 1716|      0|        return NULL;
 1717|      0|    }
 1718|     10|#ifndef MS_WINDOWS
 1719|     10|    char *cpath;
 1720|     10|    char cmode[10];
 1721|     10|    size_t r;
 1722|     10|    r = wcstombs(cmode, mode, 10);
 1723|     10|    if (r == DECODE_ERROR || r >= 10) {
  ------------------
  |  Branch (1723:9): [True: 0, False: 10]
  |  Branch (1723:30): [True: 0, False: 10]
  ------------------
 1724|      0|        errno = EINVAL;
 1725|      0|        return NULL;
 1726|      0|    }
 1727|     10|    cpath = _Py_EncodeLocaleRaw(path, NULL);
 1728|     10|    if (cpath == NULL) {
  ------------------
  |  Branch (1728:9): [True: 0, False: 10]
  ------------------
 1729|      0|        return NULL;
 1730|      0|    }
 1731|     10|    f = fopen(cpath, cmode);
 1732|     10|    PyMem_RawFree(cpath);
 1733|       |#else
 1734|       |    f = _wfopen(path, mode);
 1735|       |#endif
 1736|     10|    if (f == NULL)
  ------------------
  |  Branch (1736:9): [True: 10, False: 0]
  ------------------
 1737|     10|        return NULL;
 1738|      0|    if (make_non_inheritable(fileno(f)) < 0) {
  ------------------
  |  Branch (1738:9): [True: 0, False: 0]
  ------------------
 1739|      0|        fclose(f);
 1740|      0|        return NULL;
 1741|      0|    }
 1742|      0|    return f;
 1743|      0|}
_Py_wreadlink:
 2069|      2|{
 2070|      2|    char *cpath;
 2071|      2|    char cbuf[MAXPATHLEN];
 2072|      2|    size_t cbuf_len = Py_ARRAY_LENGTH(cbuf);
  ------------------
  |  |  196|      2|    (sizeof(array) / sizeof((array)[0]))
  ------------------
 2073|      2|    wchar_t *wbuf;
 2074|      2|    Py_ssize_t res;
 2075|      2|    size_t r1;
 2076|       |
 2077|      2|    cpath = _Py_EncodeLocaleRaw(path, NULL);
 2078|      2|    if (cpath == NULL) {
  ------------------
  |  Branch (2078:9): [True: 0, False: 2]
  ------------------
 2079|      0|        errno = EINVAL;
 2080|      0|        return -1;
 2081|      0|    }
 2082|      2|    res = readlink(cpath, cbuf, cbuf_len);
 2083|      2|    PyMem_RawFree(cpath);
 2084|      2|    if (res == -1) {
  ------------------
  |  Branch (2084:9): [True: 2, False: 0]
  ------------------
 2085|      2|        return -1;
 2086|      2|    }
 2087|      0|    if ((size_t)res == cbuf_len) {
  ------------------
  |  Branch (2087:9): [True: 0, False: 0]
  ------------------
 2088|      0|        errno = EINVAL;
 2089|      0|        return -1;
 2090|      0|    }
 2091|      0|    cbuf[res] = '\0'; /* buf will be null terminated */
 2092|      0|    wbuf = Py_DecodeLocale(cbuf, &r1);
 2093|      0|    if (wbuf == NULL) {
  ------------------
  |  Branch (2093:9): [True: 0, False: 0]
  ------------------
 2094|      0|        errno = EINVAL;
 2095|      0|        return -1;
 2096|      0|    }
 2097|       |    /* wbuf must have space to store the trailing NUL character */
 2098|      0|    if (buflen <= r1) {
  ------------------
  |  Branch (2098:9): [True: 0, False: 0]
  ------------------
 2099|      0|        PyMem_RawFree(wbuf);
 2100|      0|        errno = EINVAL;
 2101|      0|        return -1;
 2102|      0|    }
 2103|      0|    wcsncpy(buf, wbuf, buflen);
 2104|      0|    PyMem_RawFree(wbuf);
 2105|      0|    return (int)r1;
 2106|      0|}
_Py_isabs:
 2156|     80|{
 2157|       |#ifdef MS_WINDOWS
 2158|       |    const wchar_t *tail;
 2159|       |    HRESULT hr = PathCchSkipRoot(path, &tail);
 2160|       |    if (FAILED(hr) || path == tail) {
 2161|       |        return 0;
 2162|       |    }
 2163|       |    if (tail == &path[1] && (path[0] == SEP || path[0] == ALTSEP)) {
 2164|       |        // Exclude paths with leading SEP
 2165|       |        return 0;
 2166|       |    }
 2167|       |    if (tail == &path[2] && path[1] == L':') {
 2168|       |        // Exclude drive-relative paths (e.g. C:filename.ext)
 2169|       |        return 0;
 2170|       |    }
 2171|       |    return 1;
 2172|       |#else
 2173|     80|    return (path[0] == SEP);
  ------------------
  |  |   29|     80|#  define SEP L'/'
  ------------------
 2174|     80|#endif
 2175|     80|}
_Py_abspath:
 2185|      2|{
 2186|      2|    if (path[0] == '\0' || !wcscmp(path, L".")) {
  ------------------
  |  Branch (2186:9): [True: 0, False: 2]
  |  Branch (2186:28): [True: 0, False: 2]
  ------------------
 2187|      0|        wchar_t cwd[MAXPATHLEN + 1];
 2188|      0|        cwd[Py_ARRAY_LENGTH(cwd) - 1] = 0;
  ------------------
  |  |  196|      0|    (sizeof(array) / sizeof((array)[0]))
  ------------------
 2189|      0|        if (!_Py_wgetcwd(cwd, Py_ARRAY_LENGTH(cwd) - 1)) {
  ------------------
  |  |  196|      0|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (2189:13): [True: 0, False: 0]
  ------------------
 2190|       |            /* unable to get the current directory */
 2191|      0|            return -1;
 2192|      0|        }
 2193|      0|        *abspath_p = _PyMem_RawWcsdup(cwd);
 2194|      0|        return 0;
 2195|      0|    }
 2196|       |
 2197|      2|    if (_Py_isabs(path)) {
  ------------------
  |  Branch (2197:9): [True: 2, False: 0]
  ------------------
 2198|      2|        *abspath_p = _PyMem_RawWcsdup(path);
 2199|      2|        return 0;
 2200|      2|    }
 2201|       |
 2202|       |#ifdef MS_WINDOWS
 2203|       |    return _PyOS_getfullpathname(path, abspath_p);
 2204|       |#else
 2205|      0|    wchar_t cwd[MAXPATHLEN + 1];
 2206|      0|    cwd[Py_ARRAY_LENGTH(cwd) - 1] = 0;
  ------------------
  |  |  196|      0|    (sizeof(array) / sizeof((array)[0]))
  ------------------
 2207|      0|    if (!_Py_wgetcwd(cwd, Py_ARRAY_LENGTH(cwd) - 1)) {
  ------------------
  |  |  196|      0|    (sizeof(array) / sizeof((array)[0]))
  ------------------
  |  Branch (2207:9): [True: 0, False: 0]
  ------------------
 2208|       |        /* unable to get the current directory */
 2209|      0|        return -1;
 2210|      0|    }
 2211|       |
 2212|      0|    size_t cwd_len = wcslen(cwd);
 2213|      0|    size_t path_len = wcslen(path);
 2214|      0|    size_t len = cwd_len + 1 + path_len + 1;
 2215|      0|    if (len <= (size_t)PY_SSIZE_T_MAX / sizeof(wchar_t)) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (2215:9): [True: 0, False: 0]
  ------------------
 2216|      0|        *abspath_p = PyMem_RawMalloc(len * sizeof(wchar_t));
 2217|      0|    }
 2218|      0|    else {
 2219|      0|        *abspath_p = NULL;
 2220|      0|    }
 2221|      0|    if (*abspath_p == NULL) {
  ------------------
  |  Branch (2221:9): [True: 0, False: 0]
  ------------------
 2222|      0|        return 0;
 2223|      0|    }
 2224|       |
 2225|      0|    wchar_t *abspath = *abspath_p;
 2226|      0|    memcpy(abspath, cwd, cwd_len * sizeof(wchar_t));
 2227|      0|    abspath += cwd_len;
 2228|       |
 2229|      0|    *abspath = (wchar_t)SEP;
  ------------------
  |  |   29|      0|#  define SEP L'/'
  ------------------
 2230|      0|    abspath++;
 2231|       |
 2232|      0|    memcpy(abspath, path, path_len * sizeof(wchar_t));
 2233|      0|    abspath += path_len;
 2234|       |
 2235|      0|    *abspath = 0;
 2236|      0|    return 0;
 2237|      0|#endif
 2238|      0|}
_Py_skiproot:
 2310|     38|{
 2311|     38|    assert(drvsize);
  ------------------
  |  Branch (2311:5): [True: 38, False: 0]
  ------------------
 2312|     38|    assert(rootsize);
  ------------------
  |  Branch (2312:5): [True: 38, False: 0]
  ------------------
 2313|     38|#ifndef MS_WINDOWS
 2314|     38|#define IS_SEP(x) (*(x) == SEP)
 2315|     38|    *drvsize = 0;
 2316|     38|    if (!IS_SEP(&path[0])) {
  ------------------
  |  | 2314|     38|#define IS_SEP(x) (*(x) == SEP)
  |  |  ------------------
  |  |  |  |   29|     38|#  define SEP L'/'
  |  |  ------------------
  ------------------
  |  Branch (2316:9): [True: 0, False: 38]
  ------------------
 2317|       |        // Relative path, e.g.: 'foo'
 2318|      0|        *rootsize = 0;
 2319|      0|    }
 2320|     38|    else if (!IS_SEP(&path[1]) || IS_SEP(&path[2])) {
  ------------------
  |  | 2314|     76|#define IS_SEP(x) (*(x) == SEP)
  |  |  ------------------
  |  |  |  |   29|     38|#  define SEP L'/'
  |  |  ------------------
  ------------------
                  else if (!IS_SEP(&path[1]) || IS_SEP(&path[2])) {
  ------------------
  |  | 2314|      0|#define IS_SEP(x) (*(x) == SEP)
  |  |  ------------------
  |  |  |  |   29|      0|#  define SEP L'/'
  |  |  ------------------
  |  |  |  Branch (2314:19): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2320:14): [True: 38, False: 0]
  ------------------
 2321|       |        // Absolute path, e.g.: '/foo', '///foo', '////foo', etc.
 2322|     38|        *rootsize = 1;
 2323|     38|    }
 2324|      0|    else {
 2325|       |        // Precisely two leading slashes, e.g.: '//foo'. Implementation defined per POSIX, see
 2326|       |        // https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13
 2327|      0|        *rootsize = 2;
 2328|      0|    }
 2329|     38|#undef IS_SEP
 2330|       |#else
 2331|       |    const wchar_t *pEnd = size >= 0 ? &path[size] : NULL;
 2332|       |#define IS_END(x) (pEnd ? (x) == pEnd : !*(x))
 2333|       |#define IS_SEP(x) (*(x) == SEP || *(x) == ALTSEP)
 2334|       |#define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
 2335|       |    if (IS_SEP(&path[0])) {
 2336|       |        if (IS_SEP(&path[1])) {
 2337|       |            // Device drives, e.g. \\.\device or \\?\device
 2338|       |            // UNC drives, e.g. \\server\share or \\?\UNC\server\share
 2339|       |            Py_ssize_t idx;
 2340|       |            if (path[2] == L'?' && IS_SEP(&path[3]) &&
 2341|       |                (path[4] == L'U' || path[4] == L'u') &&
 2342|       |                (path[5] == L'N' || path[5] == L'n') &&
 2343|       |                (path[6] == L'C' || path[6] == L'c') &&
 2344|       |                IS_SEP(&path[7]))
 2345|       |            {
 2346|       |                idx = 8;
 2347|       |            }
 2348|       |            else {
 2349|       |                idx = 2;
 2350|       |            }
 2351|       |            while (!SEP_OR_END(&path[idx])) {
 2352|       |                idx++;
 2353|       |            }
 2354|       |            if (IS_END(&path[idx])) {
 2355|       |                *drvsize = idx;
 2356|       |                *rootsize = 0;
 2357|       |            }
 2358|       |            else {
 2359|       |                idx++;
 2360|       |                while (!SEP_OR_END(&path[idx])) {
 2361|       |                    idx++;
 2362|       |                }
 2363|       |                *drvsize = idx;
 2364|       |                if (IS_END(&path[idx])) {
 2365|       |                    *rootsize = 0;
 2366|       |                }
 2367|       |                else {
 2368|       |                    *rootsize = 1;
 2369|       |                }
 2370|       |            }
 2371|       |        }
 2372|       |        else {
 2373|       |            // Relative path with root, e.g. \Windows
 2374|       |            *drvsize = 0;
 2375|       |            *rootsize = 1;
 2376|       |        }
 2377|       |    }
 2378|       |    else if (!IS_END(&path[0]) && path[1] == L':') {
 2379|       |        *drvsize = 2;
 2380|       |        if (IS_SEP(&path[2])) {
 2381|       |            // Absolute drive-letter path, e.g. X:\Windows
 2382|       |            *rootsize = 1;
 2383|       |        }
 2384|       |        else {
 2385|       |            // Relative path with drive, e.g. X:Windows
 2386|       |            *rootsize = 0;
 2387|       |        }
 2388|       |    }
 2389|       |    else {
 2390|       |        // Relative path, e.g. Windows
 2391|       |        *drvsize = 0;
 2392|       |        *rootsize = 0;
 2393|       |    }
 2394|       |#undef SEP_OR_END
 2395|       |#undef IS_SEP
 2396|       |#undef IS_END
 2397|       |#endif
 2398|     38|}
_Py_add_relfile:
 2470|     26|{
 2471|     26|    assert(dirname != NULL && relfile != NULL);
  ------------------
  |  Branch (2471:5): [True: 26, False: 0]
  |  Branch (2471:5): [True: 26, False: 0]
  ------------------
 2472|     26|    assert(bufsize > 0);
  ------------------
  |  Branch (2472:5): [True: 26, False: 0]
  ------------------
 2473|     26|    return join_relfile(dirname, bufsize, dirname, relfile);
 2474|     26|}
_Py_normpath_and_size:
 2496|     38|{
 2497|     38|    assert(path != NULL);
  ------------------
  |  Branch (2497:5): [True: 38, False: 0]
  ------------------
 2498|     38|    if ((size < 0 && !path[0]) || size == 0) {
  ------------------
  |  Branch (2498:10): [True: 28, False: 10]
  |  Branch (2498:22): [True: 0, False: 28]
  |  Branch (2498:35): [True: 0, False: 38]
  ------------------
 2499|      0|        *normsize = 0;
 2500|      0|        return path;
 2501|      0|    }
 2502|     38|    wchar_t *pEnd = size >= 0 ? &path[size] : NULL;
  ------------------
  |  Branch (2502:21): [True: 10, False: 28]
  ------------------
 2503|     38|    wchar_t *p1 = path;     // sequentially scanned address in the path
 2504|     38|    wchar_t *p2 = path;     // destination of a scanned character to be ljusted
 2505|     38|    wchar_t *minP2 = path;  // the beginning of the destination range
 2506|     38|    wchar_t lastC = L'\0';  // the last ljusted character, p2[-1] in most cases
 2507|       |
 2508|     38|#define IS_END(x) (pEnd ? (x) == pEnd : !*(x))
 2509|       |#ifdef ALTSEP
 2510|       |#define IS_SEP(x) (*(x) == SEP || *(x) == ALTSEP)
 2511|       |#else
 2512|     38|#define IS_SEP(x) (*(x) == SEP)
 2513|     38|#endif
 2514|     38|#define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
 2515|       |
 2516|     38|    Py_ssize_t drvsize, rootsize;
 2517|     38|    _Py_skiproot(path, size, &drvsize, &rootsize);
 2518|     38|    if (drvsize || rootsize) {
  ------------------
  |  Branch (2518:9): [True: 0, False: 38]
  |  Branch (2518:20): [True: 38, False: 0]
  ------------------
 2519|       |        // Skip past root and update minP2
 2520|     38|        p1 = &path[drvsize + rootsize];
 2521|     38|#ifndef ALTSEP
 2522|     38|        p2 = p1;
 2523|       |#else
 2524|       |        for (; p2 < p1; ++p2) {
 2525|       |            if (*p2 == ALTSEP) {
 2526|       |                *p2 = SEP;
 2527|       |            }
 2528|       |        }
 2529|       |#endif
 2530|     38|        minP2 = p2 - 1;
 2531|     38|        lastC = *minP2;
 2532|       |#ifdef MS_WINDOWS
 2533|       |        if (lastC != SEP) {
 2534|       |            minP2++;
 2535|       |        }
 2536|       |#endif
 2537|     38|    }
 2538|     38|    if (p1[0] == L'.' && SEP_OR_END(&p1[1])) {
  ------------------
  |  | 2514|      0|#define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
  |  |  ------------------
  |  |  |  | 2512|      0|#define IS_SEP(x) (*(x) == SEP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#  define SEP L'/'
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2512:19): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
  |  |  ------------------
  |  |  |  | 2508|      0|#define IS_END(x) (pEnd ? (x) == pEnd : !*(x))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2508:19): [True: 0, False: 0]
  |  |  |  |  |  Branch (2508:20): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2538:9): [True: 0, False: 38]
  ------------------
 2539|       |        // Skip leading '.\'
 2540|      0|        lastC = *++p1;
 2541|       |#ifdef ALTSEP
 2542|       |        if (lastC == ALTSEP) {
 2543|       |            lastC = SEP;
 2544|       |        }
 2545|       |#endif
 2546|      0|        while (IS_SEP(p1)) {
  ------------------
  |  | 2512|      0|#define IS_SEP(x) (*(x) == SEP)
  |  |  ------------------
  |  |  |  |   29|      0|#  define SEP L'/'
  |  |  ------------------
  |  |  |  Branch (2512:19): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2547|      0|            p1++;
 2548|      0|        }
 2549|      0|    }
 2550|       |
 2551|       |    /* if pEnd is specified, check that. Else, check for null terminator */
 2552|  2.10k|    for (; !IS_END(p1); ++p1) {
  ------------------
  |  | 2508|  2.10k|#define IS_END(x) (pEnd ? (x) == pEnd : !*(x))
  |  |  ------------------
  |  |  |  Branch (2508:20): [True: 616, False: 1.48k]
  |  |  ------------------
  ------------------
  |  Branch (2552:12): [True: 2.06k, False: 38]
  ------------------
 2553|  2.06k|        wchar_t c = *p1;
 2554|       |#ifdef ALTSEP
 2555|       |        if (c == ALTSEP) {
 2556|       |            c = SEP;
 2557|       |        }
 2558|       |#endif
 2559|  2.06k|        if (lastC == SEP) {
  ------------------
  |  |   29|  2.06k|#  define SEP L'/'
  ------------------
  |  Branch (2559:13): [True: 184, False: 1.88k]
  ------------------
 2560|    184|            if (c == L'.') {
  ------------------
  |  Branch (2560:17): [True: 0, False: 184]
  ------------------
 2561|      0|                int sep_at_1 = SEP_OR_END(&p1[1]);
  ------------------
  |  | 2514|      0|#define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
  |  |  ------------------
  |  |  |  | 2512|      0|#define IS_SEP(x) (*(x) == SEP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#  define SEP L'/'
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2512:19): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
  |  |  ------------------
  |  |  |  | 2508|      0|#define IS_END(x) (pEnd ? (x) == pEnd : !*(x))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2508:19): [True: 0, False: 0]
  |  |  |  |  |  Branch (2508:20): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2562|      0|                int sep_at_2 = !sep_at_1 && SEP_OR_END(&p1[2]);
  ------------------
  |  | 2514|      0|#define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
  |  |  ------------------
  |  |  |  | 2512|      0|#define IS_SEP(x) (*(x) == SEP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#  define SEP L'/'
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2512:19): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define SEP_OR_END(x) (IS_SEP(x) || IS_END(x))
  |  |  ------------------
  |  |  |  | 2508|      0|#define IS_END(x) (pEnd ? (x) == pEnd : !*(x))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (2508:19): [True: 0, False: 0]
  |  |  |  |  |  Branch (2508:20): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2562:32): [True: 0, False: 0]
  ------------------
 2563|      0|                if (sep_at_2 && p1[1] == L'.') {
  ------------------
  |  Branch (2563:21): [True: 0, False: 0]
  |  Branch (2563:33): [True: 0, False: 0]
  ------------------
 2564|      0|                    wchar_t *p3 = p2;
 2565|      0|                    while (p3 != minP2 && *--p3 == SEP) { }
  ------------------
  |  |   29|      0|#  define SEP L'/'
  ------------------
  |  Branch (2565:28): [True: 0, False: 0]
  |  Branch (2565:43): [True: 0, False: 0]
  ------------------
 2566|      0|                    while (p3 != minP2 && *(p3 - 1) != SEP) { --p3; }
  ------------------
  |  |   29|      0|#  define SEP L'/'
  ------------------
  |  Branch (2566:28): [True: 0, False: 0]
  |  Branch (2566:43): [True: 0, False: 0]
  ------------------
 2567|      0|                    if (p2 == minP2
  ------------------
  |  Branch (2567:25): [True: 0, False: 0]
  ------------------
 2568|      0|                        || (p3[0] == L'.' && p3[1] == L'.' && IS_SEP(&p3[2])))
  ------------------
  |  | 2512|      0|#define IS_SEP(x) (*(x) == SEP)
  |  |  ------------------
  |  |  |  |   29|      0|#  define SEP L'/'
  |  |  ------------------
  |  |  |  Branch (2512:19): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2568:29): [True: 0, False: 0]
  |  Branch (2568:46): [True: 0, False: 0]
  ------------------
 2569|      0|                    {
 2570|       |                        // Previous segment is also ../, so append instead.
 2571|       |                        // Relative path does not absorb ../ at minP2 as well.
 2572|      0|                        *p2++ = L'.';
 2573|      0|                        *p2++ = L'.';
 2574|      0|                        lastC = L'.';
 2575|      0|                    } else if (p3[0] == SEP) {
  ------------------
  |  |   29|      0|#  define SEP L'/'
  ------------------
  |  Branch (2575:32): [True: 0, False: 0]
  ------------------
 2576|       |                        // Absolute path, so absorb segment
 2577|      0|                        p2 = p3 + 1;
 2578|      0|                    } else {
 2579|      0|                        p2 = p3;
 2580|      0|                    }
 2581|      0|                    p1 += 1;
 2582|      0|                } else if (sep_at_1) {
  ------------------
  |  Branch (2582:28): [True: 0, False: 0]
  ------------------
 2583|      0|                } else {
 2584|      0|                    *p2++ = lastC = c;
 2585|      0|                }
 2586|    184|            } else if (c == SEP) {
  ------------------
  |  |   29|    184|#  define SEP L'/'
  ------------------
  |  Branch (2586:24): [True: 0, False: 184]
  ------------------
 2587|    184|            } else {
 2588|    184|                *p2++ = lastC = c;
 2589|    184|            }
 2590|  1.88k|        } else {
 2591|  1.88k|            *p2++ = lastC = c;
 2592|  1.88k|        }
 2593|  2.06k|    }
 2594|     38|    *p2 = L'\0';
 2595|     38|    if (p2 != minP2) {
  ------------------
  |  Branch (2595:9): [True: 38, False: 0]
  ------------------
 2596|     38|        while (--p2 != minP2 && *p2 == SEP) {
  ------------------
  |  |   29|     38|#  define SEP L'/'
  ------------------
  |  Branch (2596:16): [True: 38, False: 0]
  |  Branch (2596:33): [True: 0, False: 38]
  ------------------
 2597|      0|            *p2 = L'\0';
 2598|      0|        }
 2599|     38|    } else {
 2600|      0|        --p2;
 2601|      0|    }
 2602|     38|    *normsize = p2 - path + 1;
 2603|     38|#undef SEP_OR_END
 2604|     38|#undef IS_SEP
 2605|     38|#undef IS_END
 2606|     38|    return path;
 2607|     38|}
_Py_normpath:
 2616|     28|{
 2617|     28|    Py_ssize_t norm_length;
 2618|     28|    return _Py_normpath_and_size(path, size, &norm_length);
 2619|     28|}
_Py_GetTicksPerSecond:
 3083|      4|{
 3084|      4|#if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
 3085|      4|    long value = sysconf(_SC_CLK_TCK);
 3086|      4|    if (value < 1) {
  ------------------
  |  Branch (3086:9): [True: 0, False: 4]
  ------------------
 3087|      0|        return -1;
 3088|      0|    }
 3089|      4|    *ticks_per_second = value;
 3090|       |#elif defined(HZ)
 3091|       |    assert(HZ >= 1);
 3092|       |    *ticks_per_second = HZ;
 3093|       |#else
 3094|       |    // Magic fallback value; may be bogus
 3095|       |    *ticks_per_second = 60;
 3096|       |#endif
 3097|      4|    return 0;
 3098|      4|}
_Py_IsValidFD:
 3106|      6|{
 3107|       |/* dup() is faster than fstat(): fstat() can require input/output operations,
 3108|       |   whereas dup() doesn't. There is a low risk of EMFILE/ENFILE at Python
 3109|       |   startup. Problem: dup() doesn't check if the file descriptor is valid on
 3110|       |   some platforms.
 3111|       |
 3112|       |   fcntl(fd, F_GETFD) is even faster, because it only checks the process table.
 3113|       |   It is preferred over dup() when available, since it cannot fail with the
 3114|       |   "too many open files" error (EMFILE).
 3115|       |
 3116|       |   bpo-30225: On macOS Tiger, when stdout is redirected to a pipe and the other
 3117|       |   side of the pipe is closed, dup(1) succeed, whereas fstat(1, &st) fails with
 3118|       |   EBADF. FreeBSD has similar issue (bpo-32849).
 3119|       |
 3120|       |   Only use dup() on Linux where dup() is enough to detect invalid FD
 3121|       |   (bpo-32849).
 3122|       |*/
 3123|      6|    if (fd < 0) {
  ------------------
  |  Branch (3123:9): [True: 0, False: 6]
  ------------------
 3124|      0|        return 0;
 3125|      0|    }
 3126|      6|#if defined(F_GETFD) && ( \
 3127|      6|        defined(__linux__) || \
 3128|      6|        defined(__APPLE__) || \
 3129|      6|        (defined(__wasm__) && !defined(__wasi__)))
 3130|      6|    return fcntl(fd, F_GETFD) >= 0;
 3131|       |#elif defined(__linux__)
 3132|       |    int fd2 = dup(fd);
 3133|       |    if (fd2 >= 0) {
 3134|       |        close(fd2);
 3135|       |    }
 3136|       |    return (fd2 >= 0);
 3137|       |#elif defined(MS_WINDOWS)
 3138|       |    HANDLE hfile;
 3139|       |    _Py_BEGIN_SUPPRESS_IPH
 3140|       |    hfile = (HANDLE)_get_osfhandle(fd);
 3141|       |    _Py_END_SUPPRESS_IPH
 3142|       |    return (hfile != INVALID_HANDLE_VALUE
 3143|       |            && GetFileType(hfile) != FILE_TYPE_UNKNOWN);
 3144|       |#else
 3145|       |    struct stat st;
 3146|       |    return (fstat(fd, &st) == 0);
 3147|       |#endif
 3148|      6|}
fileutils.c:_Py_mbstowcs:
  147|     40|{
  148|     40|    size_t count = mbstowcs(dest, src, n);
  149|     40|    if (dest != NULL && count != DECODE_ERROR) {
  ------------------
  |  Branch (149:9): [True: 20, False: 20]
  |  Branch (149:25): [True: 20, False: 0]
  ------------------
  150|    520|        for (size_t i=0; i < count; i++) {
  ------------------
  |  Branch (150:26): [True: 500, False: 20]
  ------------------
  151|    500|            wchar_t ch = dest[i];
  152|    500|            if (!is_valid_wide_char(ch)) {
  ------------------
  |  Branch (152:17): [True: 0, False: 500]
  ------------------
  153|      0|                return DECODE_ERROR;
  154|      0|            }
  155|    500|        }
  156|     20|    }
  157|     40|    return count;
  158|     40|}
fileutils.c:is_valid_wide_char:
  121|    500|{
  122|       |#ifdef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION
  123|       |    /* Oracle Solaris doesn't use Unicode code points as wchar_t encoding
  124|       |       for non-Unicode locales, which makes values higher than _Py_MAX_UNICODE
  125|       |       possibly valid. */
  126|       |    return 1;
  127|       |#endif
  128|    500|    if (Py_UNICODE_IS_SURROGATE(ch)) {
  ------------------
  |  Branch (128:9): [True: 0, False: 500]
  ------------------
  129|       |        // Reject lone surrogate characters
  130|      0|        return 0;
  131|      0|    }
  132|    500|#if SIZEOF_WCHAR_T > 2
  133|    500|    if (ch > _Py_MAX_UNICODE) {
  ------------------
  |  |   16|    500|#define _Py_MAX_UNICODE 0x10ffff
  ------------------
  |  Branch (133:9): [True: 0, False: 500]
  ------------------
  134|       |        // bpo-35883: Reject characters outside [U+0000; U+10ffff] range.
  135|       |        // The glibc mbstowcs() UTF-8 decoder does not respect the RFC 3629,
  136|       |        // it creates characters outside the [U+0000; U+10ffff] range:
  137|       |        // https://sourceware.org/bugzilla/show_bug.cgi?id=2373
  138|      0|        return 0;
  139|      0|    }
  140|    500|#endif
  141|    500|    return 1;
  142|    500|}
fileutils.c:decode_current_locale:
  460|     20|{
  461|     20|    wchar_t *res;
  462|     20|    size_t argsize;
  463|     20|    size_t count;
  464|     20|#ifdef HAVE_MBRTOWC
  465|     20|    unsigned char *in;
  466|     20|    wchar_t *out;
  467|     20|    mbstate_t mbs;
  468|     20|#endif
  469|       |
  470|     20|    int surrogateescape;
  471|     20|    if (get_surrogateescape(errors, &surrogateescape) < 0) {
  ------------------
  |  Branch (471:9): [True: 0, False: 20]
  ------------------
  472|      0|        return -3;
  473|      0|    }
  474|       |
  475|       |#ifdef HAVE_BROKEN_MBSTOWCS
  476|       |    /* Some platforms have a broken implementation of
  477|       |     * mbstowcs which does not count the characters that
  478|       |     * would result from conversion.  Use an upper bound.
  479|       |     */
  480|       |    argsize = strlen(arg);
  481|       |#else
  482|     20|    argsize = _Py_mbstowcs(NULL, arg, 0);
  483|     20|#endif
  484|     20|    if (argsize != DECODE_ERROR) {
  ------------------
  |  Branch (484:9): [True: 20, False: 0]
  ------------------
  485|     20|        if (argsize > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) {
  ------------------
  |  |  137|     20|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (485:13): [True: 0, False: 20]
  ------------------
  486|      0|            return -1;
  487|      0|        }
  488|     20|        res = (wchar_t *)PyMem_RawMalloc((argsize + 1) * sizeof(wchar_t));
  489|     20|        if (!res) {
  ------------------
  |  Branch (489:13): [True: 0, False: 20]
  ------------------
  490|      0|            return -1;
  491|      0|        }
  492|       |
  493|     20|        count = _Py_mbstowcs(res, arg, argsize + 1);
  494|     20|        if (count != DECODE_ERROR) {
  ------------------
  |  Branch (494:13): [True: 20, False: 0]
  ------------------
  495|     20|            *wstr = res;
  496|     20|            if (wlen != NULL) {
  ------------------
  |  Branch (496:17): [True: 20, False: 0]
  ------------------
  497|     20|                *wlen = count;
  498|     20|            }
  499|     20|            return 0;
  500|     20|        }
  501|      0|        PyMem_RawFree(res);
  502|      0|    }
  503|       |
  504|       |    /* Conversion failed. Fall back to escaping with surrogateescape. */
  505|      0|#ifdef HAVE_MBRTOWC
  506|       |    /* Try conversion with mbrtwoc (C99), and escape non-decodable bytes. */
  507|       |
  508|       |    /* Overallocate; as multi-byte characters are in the argument, the
  509|       |       actual output could use less memory. */
  510|      0|    argsize = strlen(arg) + 1;
  511|      0|    if (argsize > PY_SSIZE_T_MAX / sizeof(wchar_t)) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (511:9): [True: 0, False: 0]
  ------------------
  512|      0|        return -1;
  513|      0|    }
  514|      0|    res = (wchar_t*)PyMem_RawMalloc(argsize * sizeof(wchar_t));
  515|      0|    if (!res) {
  ------------------
  |  Branch (515:9): [True: 0, False: 0]
  ------------------
  516|      0|        return -1;
  517|      0|    }
  518|       |
  519|      0|    in = (unsigned char*)arg;
  520|      0|    out = res;
  521|      0|    memset(&mbs, 0, sizeof mbs);
  522|      0|    while (argsize) {
  ------------------
  |  Branch (522:12): [True: 0, False: 0]
  ------------------
  523|      0|        size_t converted = _Py_mbrtowc(out, (char*)in, argsize, &mbs);
  524|      0|        if (converted == 0) {
  ------------------
  |  Branch (524:13): [True: 0, False: 0]
  ------------------
  525|       |            /* Reached end of string; null char stored. */
  526|      0|            break;
  527|      0|        }
  528|       |
  529|      0|        if (converted == DECODE_ERROR || converted == INCOMPLETE_CHARACTER) {
  ------------------
  |  Branch (529:13): [True: 0, False: 0]
  |  Branch (529:42): [True: 0, False: 0]
  ------------------
  530|      0|            if (!surrogateescape) {
  ------------------
  |  Branch (530:17): [True: 0, False: 0]
  ------------------
  531|      0|                goto decode_error;
  532|      0|            }
  533|       |
  534|       |            /* Decoding error. Escape as UTF-8b, and start over in the initial
  535|       |               shift state. */
  536|      0|            *out++ = 0xdc00 + *in++;
  537|      0|            argsize--;
  538|      0|            memset(&mbs, 0, sizeof mbs);
  539|      0|            continue;
  540|      0|        }
  541|       |
  542|       |        // _Py_mbrtowc() reject lone surrogate characters
  543|      0|        assert(!Py_UNICODE_IS_SURROGATE(*out));
  ------------------
  |  Branch (543:9): [True: 0, False: 0]
  ------------------
  544|       |
  545|       |        /* successfully converted some bytes */
  546|      0|        in += converted;
  547|      0|        argsize -= converted;
  548|      0|        out++;
  549|      0|    }
  550|      0|    if (wlen != NULL) {
  ------------------
  |  Branch (550:9): [True: 0, False: 0]
  ------------------
  551|      0|        *wlen = out - res;
  552|      0|    }
  553|      0|    *wstr = res;
  554|      0|    return 0;
  555|       |
  556|      0|decode_error:
  557|      0|    PyMem_RawFree(res);
  558|      0|    if (wlen) {
  ------------------
  |  Branch (558:9): [True: 0, False: 0]
  ------------------
  559|      0|        *wlen = in - (unsigned char*)arg;
  560|      0|    }
  561|      0|    if (reason) {
  ------------------
  |  Branch (561:9): [True: 0, False: 0]
  ------------------
  562|      0|        *reason = "decoding error";
  563|      0|    }
  564|      0|    return -2;
  565|       |#else   /* HAVE_MBRTOWC */
  566|       |    /* Cannot use C locale for escaping; manually escape as if charset
  567|       |       is ASCII (i.e. escape all bytes > 128. This will still roundtrip
  568|       |       correctly in the locale's charset, which must be an ASCII superset. */
  569|       |    return decode_ascii(arg, wstr, wlen, reason, errors);
  570|       |#endif   /* HAVE_MBRTOWC */
  571|      0|}
fileutils.c:get_surrogateescape:
   63|     20|{
   64|     20|    switch (errors)
   65|     20|    {
   66|      0|    case _Py_ERROR_STRICT:
  ------------------
  |  Branch (66:5): [True: 0, False: 20]
  ------------------
   67|      0|        *surrogateescape = 0;
   68|      0|        return 0;
   69|     20|    case _Py_ERROR_SURROGATEESCAPE:
  ------------------
  |  Branch (69:5): [True: 20, False: 0]
  ------------------
   70|     20|        *surrogateescape = 1;
   71|     20|        return 0;
   72|      0|    default:
  ------------------
  |  Branch (72:5): [True: 0, False: 20]
  ------------------
   73|      0|        return -1;
   74|     20|    }
   75|     20|}
fileutils.c:encode_locale:
  834|     32|{
  835|     32|    char *str;
  836|     32|    int res = encode_locale_ex(text, &str, error_pos, NULL,
  837|     32|                               raw_malloc, current_locale,
  838|     32|                               _Py_ERROR_SURROGATEESCAPE);
  839|     32|    if (res != -2 && error_pos) {
  ------------------
  |  Branch (839:9): [True: 32, False: 0]
  |  Branch (839:22): [True: 0, False: 32]
  ------------------
  840|      0|        *error_pos = (size_t)-1;
  841|      0|    }
  842|     32|    if (res != 0) {
  ------------------
  |  Branch (842:9): [True: 0, False: 32]
  ------------------
  843|      0|        return NULL;
  844|      0|    }
  845|     32|    return str;
  846|     32|}
fileutils.c:encode_locale_ex:
  791|     32|{
  792|     32|    if (current_locale) {
  ------------------
  |  Branch (792:9): [True: 0, False: 32]
  ------------------
  793|       |#ifdef _Py_FORCE_UTF8_LOCALE
  794|       |        return _Py_EncodeUTF8Ex(text, str, error_pos, reason,
  795|       |                                raw_malloc, errors);
  796|       |#else
  797|      0|        return encode_current_locale(text, str, error_pos, reason,
  798|      0|                                     raw_malloc, errors);
  799|      0|#endif
  800|      0|    }
  801|       |
  802|       |#ifdef _Py_FORCE_UTF8_FS_ENCODING
  803|       |    return _Py_EncodeUTF8Ex(text, str, error_pos, reason,
  804|       |                            raw_malloc, errors);
  805|       |#else
  806|     32|    int use_utf8 = (_PyRuntime.preconfig.utf8_mode >= 1);
  807|       |#ifdef MS_WINDOWS
  808|       |    use_utf8 |= (_PyRuntime.preconfig.legacy_windows_fs_encoding == 0);
  809|       |#endif
  810|     32|    if (use_utf8) {
  ------------------
  |  Branch (810:9): [True: 32, False: 0]
  ------------------
  811|     32|        return _Py_EncodeUTF8Ex(text, str, error_pos, reason,
  812|     32|                                raw_malloc, errors);
  813|     32|    }
  814|       |
  815|      0|#ifdef USE_FORCE_ASCII
  816|      0|    if (force_ascii == -1) {
  ------------------
  |  |  210|      0|#define force_ascii (_PyRuntime.fileutils.force_ascii)
  ------------------
  |  Branch (816:9): [True: 0, False: 0]
  ------------------
  817|      0|        force_ascii = check_force_ascii();
  ------------------
  |  |  210|      0|#define force_ascii (_PyRuntime.fileutils.force_ascii)
  ------------------
  818|      0|    }
  819|       |
  820|      0|    if (force_ascii) {
  ------------------
  |  |  210|      0|#define force_ascii (_PyRuntime.fileutils.force_ascii)
  |  |  ------------------
  |  |  |  Branch (210:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  821|      0|        return encode_ascii(text, str, error_pos, reason,
  822|      0|                            raw_malloc, errors);
  823|      0|    }
  824|      0|#endif
  825|       |
  826|      0|    return encode_current_locale(text, str, error_pos, reason,
  827|      0|                                 raw_malloc, errors);
  828|      0|#endif   /* _Py_FORCE_UTF8_FS_ENCODING */
  829|      0|}
fileutils.c:join_relfile:
 2404|     26|{
 2405|       |#ifdef MS_WINDOWS
 2406|       |    if (FAILED(PathCchCombineEx(buffer, bufsize, dirname, relfile,
 2407|       |        PATHCCH_ALLOW_LONG_PATHS))) {
 2408|       |        return -1;
 2409|       |    }
 2410|       |#else
 2411|     26|    assert(!_Py_isabs(relfile));
  ------------------
  |  Branch (2411:5): [True: 26, False: 0]
  ------------------
 2412|     26|    size_t dirlen = wcslen(dirname);
 2413|     26|    size_t rellen = wcslen(relfile);
 2414|     26|    size_t maxlen = bufsize - 1;
 2415|     26|    if (maxlen > MAXPATHLEN || dirlen >= maxlen || rellen >= maxlen - dirlen) {
  ------------------
  |  |   43|     52|#    define MAXPATHLEN PATH_MAX
  ------------------
  |  Branch (2415:9): [True: 0, False: 26]
  |  Branch (2415:32): [True: 0, False: 26]
  |  Branch (2415:52): [True: 0, False: 26]
  ------------------
 2416|      0|        return -1;
 2417|      0|    }
 2418|     26|    if (dirlen == 0) {
  ------------------
  |  Branch (2418:9): [True: 0, False: 26]
  ------------------
 2419|       |        // We do not add a leading separator.
 2420|      0|        wcscpy(buffer, relfile);
 2421|      0|    }
 2422|     26|    else {
 2423|     26|        if (dirname != buffer) {
  ------------------
  |  Branch (2423:13): [True: 0, False: 26]
  ------------------
 2424|      0|            wcscpy(buffer, dirname);
 2425|      0|        }
 2426|     26|        size_t relstart = dirlen;
 2427|     26|        if (dirlen > 1 && dirname[dirlen - 1] != SEP) {
  ------------------
  |  |   29|     26|#  define SEP L'/'
  ------------------
  |  Branch (2427:13): [True: 26, False: 0]
  |  Branch (2427:27): [True: 26, False: 0]
  ------------------
 2428|     26|            buffer[dirlen] = SEP;
  ------------------
  |  |   29|     26|#  define SEP L'/'
  ------------------
 2429|     26|            relstart += 1;
 2430|     26|        }
 2431|     26|        wcscpy(&buffer[relstart], relfile);
 2432|     26|    }
 2433|     26|#endif
 2434|     26|    return 0;
 2435|     26|}

_PyFrame_MakeAndSetFrameObject:
   22|    186|{
   23|    186|    assert(frame->frame_obj == NULL);
  ------------------
  |  Branch (23:5): [True: 186, False: 0]
  ------------------
   24|    186|    PyObject *exc = PyErr_GetRaisedException();
   25|       |
   26|    186|    PyFrameObject *f = _PyFrame_New_NoTrack(_PyFrame_GetCode(frame));
   27|    186|    if (f == NULL) {
  ------------------
  |  Branch (27:9): [True: 0, False: 186]
  ------------------
   28|      0|        Py_XDECREF(exc);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   29|      0|        return NULL;
   30|      0|    }
   31|    186|    PyErr_SetRaisedException(exc);
   32|       |
   33|       |    // GH-97002: There was a time when a frame object could be created when we
   34|       |    // are allocating the new frame object f above, so frame->frame_obj would
   35|       |    // be assigned already. That path does not exist anymore. We won't call any
   36|       |    // Python code in this function and garbage collection will not run.
   37|       |    // Notice that _PyFrame_New_NoTrack() can potentially raise a MemoryError,
   38|       |    // but it won't allocate a traceback until the frame unwinds, so we are safe
   39|       |    // here.
   40|    186|    assert(frame->frame_obj == NULL);
  ------------------
  |  Branch (40:5): [True: 186, False: 0]
  ------------------
   41|    186|    assert(frame->owner != FRAME_OWNED_BY_FRAME_OBJECT);
  ------------------
  |  Branch (41:5): [True: 186, False: 0]
  ------------------
   42|    186|    f->f_frame = frame;
   43|    186|    frame->frame_obj = f;
   44|    186|    return f;
   45|    186|}
_PyFrame_ClearLocals:
   94|  3.44k|{
   95|  3.44k|    assert(frame->stackpointer != NULL);
  ------------------
  |  Branch (95:5): [True: 3.44k, False: 0]
  ------------------
   96|  3.44k|    _PyStackRef *sp = frame->stackpointer;
   97|  3.44k|    _PyStackRef *locals = frame->localsplus;
   98|  3.44k|    frame->stackpointer = locals;
   99|  13.6k|    while (sp > locals) {
  ------------------
  |  Branch (99:12): [True: 10.2k, False: 3.44k]
  ------------------
  100|  10.2k|        sp--;
  101|  10.2k|        PyStackRef_XCLOSE(*sp);
  102|  10.2k|    }
  103|       |    Py_CLEAR(frame->f_locals);
  ------------------
  |  |  484|  3.44k|    do { \
  |  |  485|  3.44k|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|  3.44k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|  3.44k|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|  3.44k|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|  3.44k|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 200, False: 3.24k]
  |  |  ------------------
  |  |  488|    200|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|    200|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|    200|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|    200|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    200|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    200|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|    200|        } \
  |  |  491|  3.44k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 3.44k]
  |  |  ------------------
  ------------------
  104|  3.44k|}
_PyFrame_ClearExceptCode:
  108|  3.46k|{
  109|       |    /* It is the responsibility of the owning generator/coroutine
  110|       |     * to have cleared the enclosing generator, if any. */
  111|  3.46k|    assert(frame->owner != FRAME_OWNED_BY_GENERATOR ||
  ------------------
  |  Branch (111:5): [True: 3.42k, False: 42]
  |  Branch (111:5): [True: 42, False: 0]
  ------------------
  112|  3.46k|           FT_ATOMIC_LOAD_INT8_RELAXED(_PyGen_GetGeneratorFromFrame(frame)->gi_frame_state) == FRAME_CLEARED);
  113|       |    // GH-99729: Clearing this frame can expose the stack (via finalizers). It's
  114|       |    // crucial that this frame has been unlinked, and is no longer visible:
  115|  3.46k|    assert(_PyThreadState_GET()->current_frame != frame);
  ------------------
  |  Branch (115:5): [True: 3.46k, False: 0]
  ------------------
  116|  3.46k|    if (frame->frame_obj) {
  ------------------
  |  Branch (116:9): [True: 186, False: 3.28k]
  ------------------
  117|    186|        PyFrameObject *f = frame->frame_obj;
  118|    186|        frame->frame_obj = NULL;
  119|    186|        if (!_PyObject_IsUniquelyReferenced((PyObject *)f)) {
  ------------------
  |  Branch (119:13): [True: 28, False: 158]
  ------------------
  120|     28|            take_ownership(f, frame);
  121|     28|            Py_DECREF(f);
  ------------------
  |  |  430|     28|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  122|     28|            return;
  123|     28|        }
  124|    158|        Py_DECREF(f);
  ------------------
  |  |  430|    158|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    158|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    158|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  125|    158|    }
  126|  3.44k|    _PyFrame_ClearLocals(frame);
  127|  3.44k|    PyStackRef_CLEAR(frame->f_funcobj);
  ------------------
  |  |  711|  3.44k|    do { \
  |  |  712|  3.44k|        _PyStackRef *_tmp_op_ptr = &(REF); \
  |  |  713|  3.44k|        _PyStackRef _tmp_old_op = (*_tmp_op_ptr); \
  |  |  714|  3.44k|        *_tmp_op_ptr = PyStackRef_NULL; \
  |  |  715|  3.44k|        PyStackRef_XCLOSE(_tmp_old_op); \
  |  |  716|  3.44k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (716:14): [Folded, False: 3.44k]
  |  |  ------------------
  ------------------
  128|  3.44k|}
frame.c:take_ownership:
   49|     28|{
   50|     28|    Py_BEGIN_CRITICAL_SECTION(f);
  ------------------
  |  |   51|     28|    {
  ------------------
   51|     28|    assert(frame->owner < FRAME_OWNED_BY_INTERPRETER);
  ------------------
  |  Branch (51:5): [True: 28, False: 0]
  ------------------
   52|     28|    assert(frame->owner != FRAME_OWNED_BY_FRAME_OBJECT);
  ------------------
  |  Branch (52:5): [True: 28, False: 0]
  ------------------
   53|     28|    _PyInterpreterFrame *new_frame = (_PyInterpreterFrame *)f->_f_frame_data;
   54|     28|    _PyFrame_Copy(frame, new_frame);
   55|       |    // _PyFrame_Copy takes the reference to the executable,
   56|       |    // so we need to restore it.
   57|     28|    new_frame->f_executable = PyStackRef_DUP(new_frame->f_executable);
   58|     28|    f->f_frame = new_frame;
   59|     28|    new_frame->owner = FRAME_OWNED_BY_FRAME_OBJECT;
   60|     28|    if (_PyFrame_IsIncomplete(new_frame)) {
  ------------------
  |  Branch (60:9): [True: 0, False: 28]
  ------------------
   61|       |        // This may be a newly-created generator or coroutine frame. Since it's
   62|       |        // dead anyways, just pretend that the first RESUME ran:
   63|      0|        PyCodeObject *code = _PyFrame_GetCode(new_frame);
   64|      0|        new_frame->instr_ptr =
   65|      0|            _PyFrame_GetBytecode(new_frame) + code->_co_firsttraceable + 1;
   66|      0|    }
   67|     28|    assert(!_PyFrame_IsIncomplete(new_frame));
  ------------------
  |  Branch (67:5): [True: 28, False: 0]
  ------------------
   68|     28|    assert(f->f_back == NULL);
  ------------------
  |  Branch (68:5): [True: 28, False: 0]
  ------------------
   69|     28|    _PyInterpreterFrame *prev = _PyFrame_GetFirstComplete(frame->previous);
   70|     28|    if (prev) {
  ------------------
  |  Branch (70:9): [True: 28, False: 0]
  ------------------
   71|     28|        assert(prev->owner < FRAME_OWNED_BY_INTERPRETER);
  ------------------
  |  Branch (71:9): [True: 28, False: 0]
  ------------------
   72|     28|        PyObject *exc = PyErr_GetRaisedException();
   73|       |        /* Link PyFrameObjects.f_back and remove link through _PyInterpreterFrame.previous */
   74|     28|        PyFrameObject *back = _PyFrame_GetFrameObject(prev);
   75|     28|        if (back == NULL) {
  ------------------
  |  Branch (75:13): [True: 0, False: 28]
  ------------------
   76|       |            /* Memory error here. */
   77|      0|            assert(PyErr_ExceptionMatches(PyExc_MemoryError));
  ------------------
  |  Branch (77:13): [True: 0, False: 0]
  ------------------
   78|       |            /* Nothing we can do about it */
   79|      0|            PyErr_Clear();
   80|      0|        }
   81|     28|        else {
   82|     28|            f->f_back = (PyFrameObject *)Py_NewRef(back);
  ------------------
  |  |  550|     28|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   83|     28|        }
   84|     28|        PyErr_SetRaisedException(exc);
   85|     28|    }
   86|     28|    if (!_PyObject_GC_IS_TRACKED((PyObject *)f)) {
  ------------------
  |  |   81|     28|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (86:9): [True: 28, False: 0]
  ------------------
   87|     28|        _PyObject_GC_TRACK((PyObject *)f);
  ------------------
  |  |  513|     28|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   88|     28|    }
   89|     28|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|     28|    }
  ------------------
   90|     28|}

_PyGC_InitState:
  114|      2|{
  115|      2|#define INIT_HEAD(GEN) \
  116|      2|    do { \
  117|      2|        GEN.head._gc_next = (uintptr_t)&GEN.head; \
  118|      2|        GEN.head._gc_prev = (uintptr_t)&GEN.head; \
  119|      2|    } while (0)
  120|       |
  121|      8|    for (int i = 0; i < NUM_GENERATIONS; i++) {
  ------------------
  |  |  217|      8|#define NUM_GENERATIONS 3
  ------------------
  |  Branch (121:21): [True: 6, False: 2]
  ------------------
  122|      6|        assert(gcstate->generations[i].count == 0);
  ------------------
  |  Branch (122:9): [True: 6, False: 0]
  ------------------
  123|      6|        INIT_HEAD(gcstate->generations[i]);
  ------------------
  |  |  116|      6|    do { \
  |  |  117|      6|        GEN.head._gc_next = (uintptr_t)&GEN.head; \
  |  |  118|      6|        GEN.head._gc_prev = (uintptr_t)&GEN.head; \
  |  |  119|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (119:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
  124|      6|    };
  125|      2|    gcstate->generation0 = GEN_HEAD(gcstate, 0);
  ------------------
  |  |  101|      2|#define GEN_HEAD(gcstate, n) (&(gcstate)->generations[n].head)
  ------------------
  126|      2|    INIT_HEAD(gcstate->permanent_generation);
  ------------------
  |  |  116|      2|    do { \
  |  |  117|      2|        GEN.head._gc_next = (uintptr_t)&GEN.head; \
  |  |  118|      2|        GEN.head._gc_prev = (uintptr_t)&GEN.head; \
  |  |  119|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (119:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  127|       |
  128|      2|#undef INIT_HEAD
  129|      2|}
_PyGC_Init:
  134|      2|{
  135|      2|    GCState *gcstate = &interp->gc;
  136|       |
  137|      2|    gcstate->generation_stats = PyMem_RawCalloc(1, sizeof(struct gc_stats));
  138|      2|    if (gcstate->generation_stats == NULL) {
  ------------------
  |  Branch (138:9): [True: 0, False: 2]
  ------------------
  139|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  140|      0|    }
  141|       |
  142|      2|    gcstate->garbage = PyList_New(0);
  143|      2|    if (gcstate->garbage == NULL) {
  ------------------
  |  Branch (143:9): [True: 0, False: 2]
  ------------------
  144|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  145|      0|    }
  146|       |
  147|      2|    gcstate->callbacks = PyList_New(0);
  148|      2|    if (gcstate->callbacks == NULL) {
  ------------------
  |  Branch (148:9): [True: 0, False: 2]
  ------------------
  149|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  150|      0|    }
  151|       |
  152|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  153|      2|}
PyObject_GC_Track:
 1928|    274|{
 1929|    274|    PyObject *op = _PyObject_CAST(op_raw);
  ------------------
  |  |  171|    274|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  ------------------
  |  |  |  |   37|    274|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1930|    274|    if (_PyObject_GC_IS_TRACKED(op)) {
  ------------------
  |  |   81|    274|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|    274|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 0, False: 274]
  |  |  ------------------
  ------------------
 1931|      0|        _PyObject_ASSERT_FAILED_MSG(op,
  ------------------
  |  |  426|      0|    _PyObject_AssertFailed((obj), NULL, (msg), __FILE__, __LINE__, __func__)
  ------------------
 1932|      0|                                    "object already tracked "
 1933|      0|                                    "by the garbage collector");
 1934|      0|    }
 1935|    274|    _PyObject_GC_TRACK(op);
  ------------------
  |  |  513|    274|        _PyObject_GC_TRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    274|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    274|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1936|       |
 1937|       |#ifdef Py_DEBUG
 1938|       |    /* Check that the object is valid: validate objects traversed
 1939|       |       by tp_traverse() */
 1940|       |    traverseproc traverse = Py_TYPE(op)->tp_traverse;
 1941|       |    (void)traverse(op, visit_validate, op);
 1942|       |#endif
 1943|    274|}
PyObject_GC_UnTrack:
 1947|  14.0k|{
 1948|  14.0k|    PyObject *op = _PyObject_CAST(op_raw);
  ------------------
  |  |  171|  14.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  ------------------
  |  |  |  |   37|  14.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
 1949|       |    /* The code for some objects, such as tuples, is a bit
 1950|       |     * sloppy about when the object is tracked and untracked. */
 1951|  14.0k|    if (_PyObject_GC_IS_TRACKED(op)) {
  ------------------
  |  |   81|  14.0k|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|  14.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 9.28k, False: 4.76k]
  |  |  ------------------
  ------------------
 1952|  9.28k|        _PyObject_GC_UNTRACK(op);
  ------------------
  |  |  515|  9.28k|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  9.28k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.28k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1953|  9.28k|    }
 1954|  14.0k|}
PyObject_IS_GC:
 1958|  15.5k|{
 1959|  15.5k|    return _PyObject_IS_GC(obj);
 1960|  15.5k|}
_Py_ScheduleGC:
 1964|  3.00k|{
 1965|  3.00k|    if (!_Py_eval_breaker_bit_is_set(tstate, _PY_GC_SCHEDULED_BIT))
  ------------------
  |  |  350|  3.00k|#define _PY_GC_SCHEDULED_BIT (1U << 4)
  ------------------
  |  Branch (1965:9): [True: 4, False: 3.00k]
  ------------------
 1966|      4|    {
 1967|      4|        _Py_set_eval_breaker_bit(tstate, _PY_GC_SCHEDULED_BIT);
  ------------------
  |  |  350|      4|#define _PY_GC_SCHEDULED_BIT (1U << 4)
  ------------------
 1968|      4|    }
 1969|  3.00k|}
_PyObject_GC_Link:
 1973|  21.0k|{
 1974|  21.0k|    PyGC_Head *gc = AS_GC(op);
  ------------------
  |  |   52|  21.0k|#define AS_GC(op) _Py_AS_GC(op)
  ------------------
 1975|       |    // gc must be correctly aligned
 1976|  21.0k|    _PyObject_ASSERT(op, ((uintptr_t)gc & (sizeof(uintptr_t)-1)) == 0);
  ------------------
  |  |  423|  21.0k|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|  21.0k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|  21.0k|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 21.0k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|  21.0k|      ? (void)(0) \
  |  |  |  |  |  |  416|  21.0k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1977|       |
 1978|  21.0k|    PyThreadState *tstate = _PyThreadState_GET();
 1979|  21.0k|    GCState *gcstate = &tstate->interp->gc;
 1980|  21.0k|    gc->_gc_next = 0;
 1981|  21.0k|    gc->_gc_prev = 0;
 1982|  21.0k|    gcstate->generations[0].count++; /* number of allocated GC objects */
 1983|  21.0k|    if (gcstate->generations[0].count > gcstate->generations[0].threshold &&
  ------------------
  |  Branch (1983:9): [True: 3.00k, False: 18.0k]
  ------------------
 1984|  3.00k|        gcstate->enabled &&
  ------------------
  |  Branch (1984:9): [True: 3.00k, False: 0]
  ------------------
 1985|  3.00k|        gcstate->generations[0].threshold &&
  ------------------
  |  Branch (1985:9): [True: 3.00k, False: 0]
  ------------------
 1986|  3.00k|        !_Py_atomic_load_int_relaxed(&gcstate->collecting) &&
  ------------------
  |  Branch (1986:9): [True: 3.00k, False: 0]
  ------------------
 1987|  3.00k|        !_PyErr_Occurred(tstate))
  ------------------
  |  Branch (1987:9): [True: 3.00k, False: 0]
  ------------------
 1988|  3.00k|    {
 1989|  3.00k|        _Py_ScheduleGC(tstate);
 1990|  3.00k|    }
 1991|  21.0k|}
_Py_RunGC:
 1995|      4|{
 1996|      4|    GCState *gcstate = get_gc_state();
 1997|      4|    if (!gcstate->enabled) {
  ------------------
  |  Branch (1997:9): [True: 0, False: 4]
  ------------------
 1998|      0|        return;
 1999|      0|    }
 2000|      4|    gc_collect_main(tstate, GENERATION_AUTO, _Py_GC_REASON_HEAP);
  ------------------
  |  |   56|      4|#define GENERATION_AUTO (-1)
  ------------------
 2001|      4|}
_PyObject_GC_New:
 2025|  5.03k|{
 2026|  5.03k|    size_t presize = _PyType_PreHeaderSize(tp);
 2027|  5.03k|    size_t size = _PyObject_SIZE(tp);
 2028|  5.03k|    if (_PyType_HasFeature(tp, Py_TPFLAGS_INLINE_VALUES)) {
  ------------------
  |  |  472|  5.03k|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (2028:9): [True: 0, False: 5.03k]
  ------------------
 2029|      0|        size += _PyInlineValuesSize(tp);
 2030|      0|    }
 2031|  5.03k|    PyObject *op = gc_alloc(tp, size, presize);
 2032|  5.03k|    if (op == NULL) {
  ------------------
  |  Branch (2032:9): [True: 0, False: 5.03k]
  ------------------
 2033|      0|        return NULL;
 2034|      0|    }
 2035|  5.03k|    _PyObject_Init(op, tp);
 2036|  5.03k|    if (tp->tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  472|  5.03k|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (2036:9): [True: 0, False: 5.03k]
  ------------------
 2037|      0|        _PyObject_InitInlineValues(op, tp);
 2038|      0|    }
 2039|  5.03k|    return op;
 2040|  5.03k|}
_PyObject_GC_NewVar:
 2044|  4.87k|{
 2045|  4.87k|    PyVarObject *op;
 2046|       |
 2047|  4.87k|    if (nitems < 0) {
  ------------------
  |  Branch (2047:9): [True: 0, False: 4.87k]
  ------------------
 2048|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2049|      0|        return NULL;
 2050|      0|    }
 2051|  4.87k|    size_t presize = _PyType_PreHeaderSize(tp);
 2052|  4.87k|    size_t size = _PyObject_VAR_SIZE(tp, nitems);
 2053|  4.87k|    op = (PyVarObject *)gc_alloc(tp, size, presize);
 2054|  4.87k|    if (op == NULL) {
  ------------------
  |  Branch (2054:9): [True: 0, False: 4.87k]
  ------------------
 2055|      0|        return NULL;
 2056|      0|    }
 2057|  4.87k|    _PyObject_InitVar(op, tp, nitems);
 2058|  4.87k|    return op;
 2059|  4.87k|}
_PyObject_GC_Resize:
 2077|      2|{
 2078|      2|    const size_t basicsize = _PyObject_VAR_SIZE(Py_TYPE(op), nitems);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2079|      2|    const size_t presize = _PyType_PreHeaderSize(Py_TYPE(op));
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2080|      2|    _PyObject_ASSERT((PyObject *)op, !_PyObject_GC_IS_TRACKED(op));
  ------------------
  |  |  423|      2|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      2|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      2|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      2|      ? (void)(0) \
  |  |  |  |  |  |  416|      2|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2081|      2|    if (basicsize > (size_t)PY_SSIZE_T_MAX - presize) {
  ------------------
  |  |  137|      2|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (2081:9): [True: 0, False: 2]
  ------------------
 2082|      0|        return (PyVarObject *)PyErr_NoMemory();
 2083|      0|    }
 2084|      2|    char *mem = (char *)op - presize;
 2085|      2|    mem = (char *)_PyObject_ReallocWithType(Py_TYPE(op), mem, presize + basicsize);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2086|      2|    if (mem == NULL) {
  ------------------
  |  Branch (2086:9): [True: 0, False: 2]
  ------------------
 2087|      0|        return (PyVarObject *)PyErr_NoMemory();
 2088|      0|    }
 2089|      2|    op = (PyVarObject *) (mem + presize);
 2090|      2|    Py_SET_SIZE(op, nitems);
  ------------------
  |  |  216|      2|#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
  |  |  ------------------
  |  |  |  |  182|      2|#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2091|      2|    return op;
 2092|      2|}
PyObject_GC_Del:
 2096|  6.20k|{
 2097|  6.20k|    size_t presize = _PyType_PreHeaderSize(Py_TYPE(op));
  ------------------
  |  |  213|  6.20k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  6.20k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  6.20k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2098|  6.20k|    PyGC_Head *g = AS_GC(op);
  ------------------
  |  |   52|  6.20k|#define AS_GC(op) _Py_AS_GC(op)
  ------------------
 2099|  6.20k|    if (_PyObject_GC_IS_TRACKED(op)) {
  ------------------
  |  |   81|  6.20k|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|  6.20k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 0, False: 6.20k]
  |  |  ------------------
  ------------------
 2100|      0|        gc_list_remove(g);
 2101|      0|        GCState *gcstate = get_gc_state();
 2102|      0|        gcstate->heap_size--;
 2103|       |#ifdef Py_DEBUG
 2104|       |        PyObject *exc = PyErr_GetRaisedException();
 2105|       |        if (PyErr_WarnExplicitFormat(PyExc_ResourceWarning, "gc", 0,
 2106|       |                                     "gc", NULL,
 2107|       |                                     "Object of type %s is not untracked "
 2108|       |                                     "before destruction",
 2109|       |                                     Py_TYPE(op)->tp_name))
 2110|       |        {
 2111|       |            PyErr_FormatUnraisable("Exception ignored on object deallocation");
 2112|       |        }
 2113|       |        PyErr_SetRaisedException(exc);
 2114|       |#endif
 2115|      0|    }
 2116|  6.20k|    GCState *gcstate = get_gc_state();
 2117|  6.20k|    if (gcstate->generations[0].count > 0) {
  ------------------
  |  Branch (2117:9): [True: 6.20k, False: 2]
  ------------------
 2118|  6.20k|        gcstate->generations[0].count--;
 2119|  6.20k|    }
 2120|  6.20k|    PyObject_Free(((char *)op)-presize);
 2121|  6.20k|}
PyObject_GC_IsTracked:
 2125|    244|{
 2126|    244|    if (_PyObject_IS_GC(obj) && _PyObject_GC_IS_TRACKED(obj)) {
  ------------------
  |  |   81|    122|#define _PyObject_GC_IS_TRACKED(op) _PyObject_GC_IS_TRACKED(_Py_CAST(PyObject*, op))
  |  |  ------------------
  |  |  |  |   37|    122|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  |  Branch (81:37): [True: 0, False: 122]
  |  |  ------------------
  ------------------
  |  Branch (2126:9): [True: 122, False: 122]
  ------------------
 2127|      0|        return 1;
 2128|      0|    }
 2129|    244|    return 0;
 2130|    244|}
gc.c:visit_decref:
  441|  33.1k|{
  442|  33.1k|    OBJECT_STAT_INC(object_visits);
  ------------------
  |  |   77|  33.1k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
  443|  33.1k|    _PyObject_ASSERT(_PyObject_CAST(parent), !_PyObject_IsFreed(op));
  ------------------
  |  |  423|  33.1k|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|  33.1k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|  33.1k|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 33.1k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|  33.1k|      ? (void)(0) \
  |  |  |  |  |  |  416|  33.1k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  444|       |
  445|  33.1k|    if (_PyObject_IS_GC(op)) {
  ------------------
  |  Branch (445:9): [True: 11.7k, False: 21.4k]
  ------------------
  446|  11.7k|        PyGC_Head *gc = AS_GC(op);
  ------------------
  |  |   52|  11.7k|#define AS_GC(op) _Py_AS_GC(op)
  ------------------
  447|       |        /* We're only interested in gc_refs for objects in the
  448|       |         * generation being collected, which can be recognized
  449|       |         * because only they have positive gc_refs.
  450|       |         */
  451|  11.7k|        if (gc_is_collecting(gc)) {
  ------------------
  |  Branch (451:13): [True: 10.8k, False: 826]
  ------------------
  452|  10.8k|            gc_decref(gc);
  453|  10.8k|        }
  454|  11.7k|    }
  455|  33.1k|    return 0;
  456|  33.1k|}
gc.c:gc_is_collecting:
   60|  23.3k|{
   61|  23.3k|    return (g->_gc_prev & PREV_MASK_COLLECTING) != 0;
  ------------------
  |  |   39|  23.3k|#define PREV_MASK_COLLECTING   _PyGC_PREV_MASK_COLLECTING
  |  |  ------------------
  |  |  |  |  119|  23.3k|#define _PyGC_PREV_MASK_COLLECTING ((uintptr_t)2)
  |  |  ------------------
  ------------------
   62|  23.3k|}
gc.c:gc_decref:
   93|  10.8k|{
   94|  10.8k|    _PyObject_ASSERT_WITH_MSG(FROM_GC(g),
  ------------------
  |  |  421|  10.8k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  |  414|  10.8k|    ((expr) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (414:6): [True: 10.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  415|  10.8k|      ? (void)(0) \
  |  |  |  |  416|  10.8k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  ------------------
  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  ------------------
  ------------------
   95|  10.8k|                              gc_get_refs(g) > 0,
   96|  10.8k|                              "refcount is too small");
   97|  10.8k|    g->_gc_prev -= 1 << _PyGC_PREV_SHIFT;
  ------------------
  |  |  121|  10.8k|#define _PyGC_PREV_SHIFT           2
  ------------------
   98|  10.8k|}
gc.c:gc_get_refs:
   72|  54.5k|{
   73|  54.5k|    return (Py_ssize_t)(g->_gc_prev >> _PyGC_PREV_SHIFT);
  ------------------
  |  |  121|  54.5k|#define _PyGC_PREV_SHIFT           2
  ------------------
   74|  54.5k|}
gc.c:gc_list_merge:
  277|     16|{
  278|     16|    assert(from != to);
  ------------------
  |  Branch (278:5): [True: 16, False: 0]
  ------------------
  279|     16|    if (!gc_list_is_empty(from)) {
  ------------------
  |  Branch (279:9): [True: 6, False: 10]
  ------------------
  280|      6|        PyGC_Head *to_tail = GC_PREV(to);
  ------------------
  |  |   29|      6|#define GC_PREV _PyGCHead_PREV
  ------------------
  281|      6|        PyGC_Head *from_head = GC_NEXT(from);
  ------------------
  |  |   28|      6|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  282|      6|        PyGC_Head *from_tail = GC_PREV(from);
  ------------------
  |  |   29|      6|#define GC_PREV _PyGCHead_PREV
  ------------------
  283|      6|        assert(from_head != from);
  ------------------
  |  Branch (283:9): [True: 6, False: 0]
  ------------------
  284|      6|        assert(from_tail != from);
  ------------------
  |  Branch (284:9): [True: 6, False: 0]
  ------------------
  285|       |
  286|      6|        _PyGCHead_SET_NEXT(to_tail, from_head);
  287|      6|        _PyGCHead_SET_PREV(from_head, to_tail);
  288|       |
  289|      6|        _PyGCHead_SET_NEXT(from_tail, to);
  290|      6|        _PyGCHead_SET_PREV(to, from_tail);
  291|      6|    }
  292|     16|    gc_list_init(from);
  293|     16|}
gc.c:gc_list_is_empty:
  220|     76|{
  221|     76|    return (list->_gc_next == (uintptr_t)list);
  222|     76|}
gc.c:gc_list_init:
  211|     36|{
  212|       |    // List header must not have flags.
  213|       |    // We can assign pointer by simple cast.
  214|     36|    list->_gc_prev = (uintptr_t)list;
  215|     36|    list->_gc_next = (uintptr_t)list;
  216|     36|}
gc.c:gc_list_size:
  297|      4|{
  298|      4|    PyGC_Head *gc;
  299|      4|    Py_ssize_t n = 0;
  300|     48|    for (gc = GC_NEXT(list); gc != list; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
                  for (gc = GC_NEXT(list); gc != list; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|     44|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (300:30): [True: 44, False: 4]
  ------------------
  301|     44|        n++;
  302|     44|    }
  303|      4|    return n;
  304|      4|}
gc.c:get_gc_state:
  106|  6.20k|{
  107|  6.20k|    PyInterpreterState *interp = _PyInterpreterState_GET();
  108|  6.20k|    return &interp->gc;
  109|  6.20k|}
gc.c:gc_collect_main:
 1424|      4|{
 1425|      4|    int i;
 1426|      4|    PyGC_Head *young; /* the generation we are examining */
 1427|      4|    PyGC_Head *old; /* next older generation */
 1428|      4|    PyGC_Head unreachable; /* non-problematic unreachable trash */
 1429|      4|    PyGC_Head finalizers;  /* objects with, & reachable from, __del__ */
 1430|      4|    PyGC_Head *gc;
 1431|      4|    GCState *gcstate = &tstate->interp->gc;
 1432|       |
 1433|       |    // gc_collect_main() must not be called before _PyGC_Init
 1434|       |    // or after _PyGC_Fini()
 1435|      4|    assert(gcstate->garbage != NULL);
  ------------------
  |  Branch (1435:5): [True: 4, False: 0]
  ------------------
 1436|      4|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1436:5): [True: 4, False: 0]
  ------------------
 1437|       |
 1438|      4|    int expected = 0;
 1439|      4|    if (!_Py_atomic_compare_exchange_int(&gcstate->collecting, &expected, 1)) {
  ------------------
  |  Branch (1439:9): [True: 0, False: 4]
  ------------------
 1440|       |        // Don't start a garbage collection if one is already in progress.
 1441|      0|        return 0;
 1442|      0|    }
 1443|      4|    gcstate->frame = tstate->current_frame;
 1444|       |
 1445|      4|    if (generation == GENERATION_AUTO) {
  ------------------
  |  |   56|      4|#define GENERATION_AUTO (-1)
  ------------------
  |  Branch (1445:9): [True: 4, False: 0]
  ------------------
 1446|       |        // Select the oldest generation that needs collecting. We will collect
 1447|       |        // objects from that generation and all generations younger than it.
 1448|      4|        generation = gc_select_generation(gcstate);
 1449|      4|        if (generation < 0) {
  ------------------
  |  Branch (1449:13): [True: 0, False: 4]
  ------------------
 1450|       |            // No generation needs to be collected.
 1451|      0|            _Py_atomic_store_int(&gcstate->collecting, 0);
 1452|      0|            return 0;
 1453|      0|        }
 1454|      4|    }
 1455|       |
 1456|      4|    assert(generation >= 0 && generation < NUM_GENERATIONS);
  ------------------
  |  Branch (1456:5): [True: 4, False: 0]
  |  Branch (1456:5): [True: 4, False: 0]
  ------------------
 1457|       |
 1458|       |#ifdef Py_STATS
 1459|       |    {
 1460|       |        PyStats *s = _PyStats_GET();
 1461|       |        if (s) {
 1462|       |            s->object_stats.object_visits = 0;
 1463|       |        }
 1464|       |    }
 1465|       |#endif
 1466|       |
 1467|      4|    GC_STAT_ADD(generation, collections, 1);
  ------------------
  |  |   81|      4|#define GC_STAT_ADD(gen, name, n) ((void)0)
  ------------------
 1468|       |
 1469|      4|    struct gc_generation_stats stats = { 0 };
 1470|      4|    if (reason != _Py_GC_REASON_SHUTDOWN) {
  ------------------
  |  Branch (1470:9): [True: 4, False: 0]
  ------------------
 1471|      4|        invoke_gc_callback(tstate, "start", generation, &stats);
 1472|      4|    }
 1473|       |
 1474|      4|    stats.heap_size = gcstate->heap_size;
 1475|       |    // ignore error: don't interrupt the GC if reading the clock fails
 1476|      4|    (void)PyTime_PerfCounterRaw(&stats.ts_start);
 1477|      4|    if (gcstate->debug & _PyGC_DEBUG_STATS) {
  ------------------
  |  |  125|      4|#define _PyGC_DEBUG_STATS             (1<<0) /* print collection statistics */
  ------------------
  |  Branch (1477:9): [True: 0, False: 4]
  ------------------
 1478|      0|        PySys_WriteStderr("gc: collecting generation %d...\n", generation);
 1479|      0|        show_stats_each_generations(gcstate);
 1480|      0|    }
 1481|       |
 1482|      4|    if (PyDTrace_GC_START_ENABLED()) {
  ------------------
  |  Branch (1482:9): [True: 0, False: 4]
  ------------------
 1483|      0|        PyDTrace_GC_START(generation);
 1484|      0|    }
 1485|       |
 1486|       |    /* update collection and allocation counters */
 1487|      4|    if (generation+1 < NUM_GENERATIONS) {
  ------------------
  |  |  217|      4|#define NUM_GENERATIONS 3
  ------------------
  |  Branch (1487:9): [True: 4, False: 0]
  ------------------
 1488|      4|        gcstate->generations[generation+1].count += 1;
 1489|      4|    }
 1490|      8|    for (i = 0; i <= generation; i++) {
  ------------------
  |  Branch (1490:17): [True: 4, False: 4]
  ------------------
 1491|      4|        gcstate->generations[i].count = 0;
 1492|      4|    }
 1493|       |
 1494|       |    /* merge younger generations with one we are currently collecting */
 1495|      4|    for (i = 0; i < generation; i++) {
  ------------------
  |  Branch (1495:17): [True: 0, False: 4]
  ------------------
 1496|      0|        gc_list_merge(GEN_HEAD(gcstate, i), GEN_HEAD(gcstate, generation));
  ------------------
  |  |  101|      0|#define GEN_HEAD(gcstate, n) (&(gcstate)->generations[n].head)
  ------------------
                      gc_list_merge(GEN_HEAD(gcstate, i), GEN_HEAD(gcstate, generation));
  ------------------
  |  |  101|      0|#define GEN_HEAD(gcstate, n) (&(gcstate)->generations[n].head)
  ------------------
 1497|      0|    }
 1498|       |
 1499|       |    /* handy references */
 1500|      4|    young = GEN_HEAD(gcstate, generation);
  ------------------
  |  |  101|      4|#define GEN_HEAD(gcstate, n) (&(gcstate)->generations[n].head)
  ------------------
 1501|      4|    if (generation < NUM_GENERATIONS-1) {
  ------------------
  |  |  217|      4|#define NUM_GENERATIONS 3
  ------------------
  |  Branch (1501:9): [True: 4, False: 0]
  ------------------
 1502|      4|        old = GEN_HEAD(gcstate, generation+1);
  ------------------
  |  |  101|      4|#define GEN_HEAD(gcstate, n) (&(gcstate)->generations[n].head)
  ------------------
 1503|      4|    }
 1504|      0|    else {
 1505|      0|        old = young;
 1506|      0|    }
 1507|      4|    validate_list(old, collecting_clear_unreachable_clear);
  ------------------
  |  |  387|      4|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1508|       |
 1509|      4|    stats.candidates = deduce_unreachable(young, &unreachable);
 1510|       |
 1511|      4|    untrack_tuples(young);
 1512|       |    /* Move reachable objects to next generation. */
 1513|      4|    if (young != old) {
  ------------------
  |  Branch (1513:9): [True: 4, False: 0]
  ------------------
 1514|      4|        if (generation == NUM_GENERATIONS - 2) {
  ------------------
  |  |  217|      4|#define NUM_GENERATIONS 3
  ------------------
  |  Branch (1514:13): [True: 0, False: 4]
  ------------------
 1515|      0|            gcstate->long_lived_pending += gc_list_size(young);
 1516|      0|        }
 1517|      4|        gc_list_merge(young, old);
 1518|      4|    }
 1519|      0|    else {
 1520|       |        // In Python <= 3.13, we called untrack_dicts(young) here to untrack
 1521|       |        // atomic-only dicts (see issue #14775). Python 3.14 removed the lazy
 1522|       |        // dict tracking machinery entirely (GH-127010) -- dicts are always
 1523|       |        // tracked from creation and never untracked by GC. That way, we don't
 1524|       |        // have to restore MAINTAIN_TRACKING across every PyDict_SetItem call
 1525|       |        // site; the cost is slightly more work for full collections on dicts
 1526|       |        // with only atomic values.
 1527|      0|        gcstate->long_lived_pending = 0;
 1528|      0|        gcstate->long_lived_total = gc_list_size(young);
 1529|      0|    }
 1530|       |
 1531|       |    /* All objects in unreachable are trash, but objects reachable from
 1532|       |     * legacy finalizers (e.g. tp_del) can't safely be deleted.
 1533|       |     */
 1534|      4|    gc_list_init(&finalizers);
 1535|       |    // NEXT_MASK_UNREACHABLE is cleared here.
 1536|       |    // After move_legacy_finalizers(), unreachable is normal list.
 1537|      4|    move_legacy_finalizers(&unreachable, &finalizers);
 1538|       |    /* finalizers contains the unreachable objects with a legacy finalizer;
 1539|       |     * unreachable objects reachable *from* those are also uncollectable,
 1540|       |     * and we move those into the finalizers list too.
 1541|       |     */
 1542|      4|    move_legacy_finalizer_reachable(&finalizers);
 1543|       |
 1544|      4|    validate_list(&finalizers, collecting_clear_unreachable_clear);
  ------------------
  |  |  387|      4|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1545|      4|    validate_list(&unreachable, collecting_set_unreachable_clear);
  ------------------
  |  |  387|      4|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1546|       |
 1547|       |    /* Print debugging information. */
 1548|      4|    if (gcstate->debug & _PyGC_DEBUG_COLLECTABLE) {
  ------------------
  |  |  126|      4|#define _PyGC_DEBUG_COLLECTABLE       (1<<1) /* print collectable objects */
  ------------------
  |  Branch (1548:9): [True: 0, False: 4]
  ------------------
 1549|      0|        for (gc = GC_NEXT(&unreachable); gc != &unreachable; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      0|#define GC_NEXT _PyGCHead_NEXT
  ------------------
                      for (gc = GC_NEXT(&unreachable); gc != &unreachable; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      0|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (1549:42): [True: 0, False: 0]
  ------------------
 1550|      0|            debug_cycle("collectable", FROM_GC(gc));
  ------------------
  |  |   53|      0|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
 1551|      0|        }
 1552|      0|    }
 1553|       |
 1554|       |    /* Clear weakrefs and invoke callbacks as necessary. */
 1555|      4|    stats.collected += handle_weakref_callbacks(&unreachable, old);
 1556|      4|    validate_list(old, collecting_clear_unreachable_clear);
  ------------------
  |  |  387|      4|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1557|      4|    validate_list(&unreachable, collecting_set_unreachable_clear);
  ------------------
  |  |  387|      4|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1558|       |
 1559|       |    /* Call tp_finalize on objects which have one. */
 1560|      4|    finalize_garbage(tstate, &unreachable);
 1561|       |
 1562|       |    /* Handle any objects that may have resurrected after the call
 1563|       |     * to 'finalize_garbage' and continue the collection with the
 1564|       |     * objects that are still unreachable */
 1565|      4|    PyGC_Head final_unreachable;
 1566|      4|    handle_resurrected_objects(&unreachable, &final_unreachable, old);
 1567|       |
 1568|       |    /* Clear weakrefs to objects in the unreachable set.  No Python-level
 1569|       |     * code must be allowed to access those unreachable objects.  During
 1570|       |     * delete_garbage(), finalizers outside the unreachable set might run
 1571|       |     * and create new weakrefs.  If those weakrefs were not cleared, they
 1572|       |     * could reveal unreachable objects.  Callbacks are not executed.
 1573|       |     */
 1574|      4|    clear_weakrefs(&final_unreachable);
 1575|       |
 1576|       |    /* Call tp_clear on objects in the final_unreachable set.  This will cause
 1577|       |    * the reference cycles to be broken.  It may also cause some objects
 1578|       |    * in finalizers to be freed.
 1579|       |    */
 1580|      4|    stats.collected += gc_list_size(&final_unreachable);
 1581|      4|    delete_garbage(tstate, gcstate, &final_unreachable, old);
 1582|       |
 1583|       |    /* Collect statistics on uncollectable objects found and print
 1584|       |     * debugging information. */
 1585|      4|    Py_ssize_t n = 0;
 1586|      4|    for (gc = GC_NEXT(&finalizers); gc != &finalizers; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
                  for (gc = GC_NEXT(&finalizers); gc != &finalizers; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      0|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (1586:37): [True: 0, False: 4]
  ------------------
 1587|      0|        n++;
 1588|      0|        if (gcstate->debug & _PyGC_DEBUG_UNCOLLECTABLE)
  ------------------
  |  |  127|      0|#define _PyGC_DEBUG_UNCOLLECTABLE     (1<<2) /* print uncollectable objects */
  ------------------
  |  Branch (1588:13): [True: 0, False: 0]
  ------------------
 1589|      0|            debug_cycle("uncollectable", FROM_GC(gc));
  ------------------
  |  |   53|      0|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
 1590|      0|    }
 1591|      4|    stats.uncollectable = n;
 1592|      4|    (void)PyTime_PerfCounterRaw(&stats.ts_stop);
 1593|      4|    stats.duration = PyTime_AsSecondsDouble(stats.ts_stop - stats.ts_start);
 1594|      4|    if (gcstate->debug & _PyGC_DEBUG_STATS) {
  ------------------
  |  |  125|      4|#define _PyGC_DEBUG_STATS             (1<<0) /* print collection statistics */
  ------------------
  |  Branch (1594:9): [True: 0, False: 4]
  ------------------
 1595|      0|        PySys_WriteStderr(
 1596|      0|            "gc: done, %zd unreachable, %zd uncollectable, %.4fs elapsed\n",
 1597|      0|            stats.uncollectable+stats.collected, stats.uncollectable,
 1598|      0|            stats.duration);
 1599|      0|    }
 1600|       |
 1601|       |    /* Append instances in the uncollectable set to a Python
 1602|       |     * reachable list of garbage.  The programmer has to deal with
 1603|       |     * this if they insist on creating this type of structure.
 1604|       |     */
 1605|      4|    handle_legacy_finalizers(tstate, gcstate, &finalizers, old);
 1606|      4|    validate_list(old, collecting_clear_unreachable_clear);
  ------------------
  |  |  387|      4|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 4]
  |  |  ------------------
  ------------------
 1607|       |
 1608|       |    /* Clear free list only during the collection of the highest
 1609|       |     * generation */
 1610|      4|    if (generation == NUM_GENERATIONS-1) {
  ------------------
  |  |  217|      4|#define NUM_GENERATIONS 3
  ------------------
  |  Branch (1610:9): [True: 0, False: 4]
  ------------------
 1611|      0|        _PyGC_ClearAllFreeLists(tstate->interp);
 1612|      0|    }
 1613|       |
 1614|      4|    if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (1614:9): [True: 0, False: 4]
  ------------------
 1615|      0|        if (reason == _Py_GC_REASON_SHUTDOWN) {
  ------------------
  |  Branch (1615:13): [True: 0, False: 0]
  ------------------
 1616|      0|            _PyErr_Clear(tstate);
 1617|      0|        }
 1618|      0|        else {
 1619|      0|            PyErr_FormatUnraisable("Exception ignored in garbage collection");
 1620|      0|        }
 1621|      0|    }
 1622|       |
 1623|       |    /* Update stats */
 1624|      4|    add_stats(gcstate, generation, &stats);
 1625|      4|    GC_STAT_ADD(generation, objects_collected, stats.collected);
  ------------------
  |  |   81|      4|#define GC_STAT_ADD(gen, name, n) ((void)0)
  ------------------
 1626|       |
 1627|       |#ifdef Py_STATS
 1628|       |    {
 1629|       |        PyStats *s = _PyStats_GET();
 1630|       |        if (s) {
 1631|       |            GC_STAT_ADD(generation, object_visits,
 1632|       |                s->object_stats.object_visits);
 1633|       |            s->object_stats.object_visits = 0;
 1634|       |        }
 1635|       |    }
 1636|       |#endif
 1637|       |
 1638|      4|    if (PyDTrace_GC_DONE_ENABLED()) {
  ------------------
  |  Branch (1638:9): [True: 0, False: 4]
  ------------------
 1639|      0|        PyDTrace_GC_DONE(stats.uncollectable + stats.collected);
 1640|      0|    }
 1641|       |
 1642|      4|    if (reason != _Py_GC_REASON_SHUTDOWN) {
  ------------------
  |  Branch (1642:9): [True: 4, False: 0]
  ------------------
 1643|      4|        invoke_gc_callback(tstate, "stop", generation, &stats);
 1644|      4|    }
 1645|       |
 1646|      4|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1646:5): [True: 4, False: 0]
  ------------------
 1647|      4|    gcstate->frame = NULL;
 1648|      4|    _Py_atomic_store_int(&gcstate->collecting, 0);
 1649|      4|    return stats.uncollectable + stats.collected;
 1650|      4|}
gc.c:gc_select_generation:
 1317|      4|{
 1318|     12|    for (int i = NUM_GENERATIONS-1; i >= 0; i--) {
  ------------------
  |  |  217|      4|#define NUM_GENERATIONS 3
  ------------------
  |  Branch (1318:37): [True: 12, False: 0]
  ------------------
 1319|     12|        if (gcstate->generations[i].count > gcstate->generations[i].threshold) {
  ------------------
  |  Branch (1319:13): [True: 4, False: 8]
  ------------------
 1320|       |            /* Avoid quadratic performance degradation in number
 1321|       |               of tracked objects (see also issue #4074):
 1322|       |
 1323|       |               To limit the cost of garbage collection, there are two strategies;
 1324|       |                 - make each collection faster, e.g. by scanning fewer objects
 1325|       |                 - do less collections
 1326|       |               This heuristic is about the latter strategy.
 1327|       |
 1328|       |               In addition to the various configurable thresholds, we only trigger a
 1329|       |               full collection if the ratio
 1330|       |
 1331|       |                long_lived_pending / long_lived_total
 1332|       |
 1333|       |               is above a given value (hardwired to 25%).
 1334|       |
 1335|       |               The reason is that, while "non-full" collections (i.e., collections of
 1336|       |               the young and middle generations) will always examine roughly the same
 1337|       |               number of objects -- determined by the aforementioned thresholds --,
 1338|       |               the cost of a full collection is proportional to the total number of
 1339|       |               long-lived objects, which is virtually unbounded.
 1340|       |
 1341|       |               Indeed, it has been remarked that doing a full collection every
 1342|       |               <constant number> of object creations entails a dramatic performance
 1343|       |               degradation in workloads which consist in creating and storing lots of
 1344|       |               long-lived objects (e.g. building a large list of GC-tracked objects would
 1345|       |               show quadratic performance, instead of linear as expected: see issue #4074).
 1346|       |
 1347|       |               Using the above ratio, instead, yields amortized linear performance in
 1348|       |               the total number of objects (the effect of which can be summarized
 1349|       |               thusly: "each full garbage collection is more and more costly as the
 1350|       |               number of objects grows, but we do fewer and fewer of them").
 1351|       |
 1352|       |               This heuristic was suggested by Martin von Löwis on python-dev in
 1353|       |               June 2008. His original analysis and proposal can be found at:
 1354|       |               http://mail.python.org/pipermail/python-dev/2008-June/080579.html
 1355|       |            */
 1356|      4|            if (i == NUM_GENERATIONS - 1
  ------------------
  |  |  217|      4|#define NUM_GENERATIONS 3
  ------------------
  |  Branch (1356:17): [True: 0, False: 4]
  ------------------
 1357|      0|                && gcstate->long_lived_pending < gcstate->long_lived_total / 4)
  ------------------
  |  Branch (1357:20): [True: 0, False: 0]
  ------------------
 1358|      0|            {
 1359|      0|                continue;
 1360|      0|            }
 1361|      4|            return i;
 1362|      4|        }
 1363|     12|    }
 1364|      0|    return -1;
 1365|      4|}
gc.c:invoke_gc_callback:
 1260|      8|{
 1261|      8|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1261:5): [True: 8, False: 0]
  ------------------
 1262|       |
 1263|       |    /* we may get called very early */
 1264|      8|    GCState *gcstate = &tstate->interp->gc;
 1265|      8|    if (gcstate->callbacks == NULL) {
  ------------------
  |  Branch (1265:9): [True: 0, False: 8]
  ------------------
 1266|      0|        return;
 1267|      0|    }
 1268|       |
 1269|       |    /* The local variable cannot be rebound, check it for sanity */
 1270|      8|    assert(PyList_CheckExact(gcstate->callbacks));
  ------------------
  |  Branch (1270:5): [True: 8, False: 0]
  ------------------
 1271|      8|    PyObject *info = NULL;
 1272|      8|    if (PyList_GET_SIZE(gcstate->callbacks) != 0) {
  ------------------
  |  |   38|      8|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1272:9): [True: 0, False: 8]
  ------------------
 1273|      0|        info = Py_BuildValue("{sisnsnsnsd}",
 1274|      0|            "generation", generation,
 1275|      0|            "collected", stats->collected,
 1276|      0|            "uncollectable", stats->uncollectable,
 1277|      0|            "candidates", stats->candidates,
 1278|      0|            "duration", stats->duration);
 1279|      0|        if (info == NULL) {
  ------------------
  |  Branch (1279:13): [True: 0, False: 0]
  ------------------
 1280|      0|            PyErr_FormatUnraisable("Exception ignored on invoking gc callbacks");
 1281|      0|            return;
 1282|      0|        }
 1283|      0|    }
 1284|       |
 1285|      8|    PyObject *phase_obj = PyUnicode_FromString(phase);
 1286|      8|    if (phase_obj == NULL) {
  ------------------
  |  Branch (1286:9): [True: 0, False: 8]
  ------------------
 1287|      0|        Py_XDECREF(info);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1288|      0|        PyErr_FormatUnraisable("Exception ignored on invoking gc callbacks");
 1289|      0|        return;
 1290|      0|    }
 1291|       |
 1292|      8|    PyObject *stack[] = {phase_obj, info};
 1293|      8|    for (Py_ssize_t i=0; i<PyList_GET_SIZE(gcstate->callbacks); i++) {
  ------------------
  |  |   38|      8|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1293:26): [True: 0, False: 8]
  ------------------
 1294|      0|        PyObject *r, *cb = PyList_GET_ITEM(gcstate->callbacks, i);
  ------------------
  |  |   40|      0|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|      0|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1294:28): [True: 0, False: 0]
  ------------------
 1295|      0|        Py_INCREF(cb); /* make sure cb doesn't go away */
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1296|      0|        r = PyObject_Vectorcall(cb, stack, 2, NULL);
 1297|      0|        if (r == NULL) {
  ------------------
  |  Branch (1297:13): [True: 0, False: 0]
  ------------------
 1298|      0|            PyErr_FormatUnraisable("Exception ignored while "
 1299|      0|                                   "calling GC callback %R", cb);
 1300|      0|        }
 1301|      0|        else {
 1302|      0|            Py_DECREF(r);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1303|      0|        }
 1304|      0|        Py_DECREF(cb);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1305|      0|    }
 1306|      8|    Py_DECREF(phase_obj);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1307|      8|    Py_XDECREF(info);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1308|       |    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1308:5): [True: 8, False: 0]
  ------------------
 1309|      8|}
gc.c:deduce_unreachable:
 1169|      8|deduce_unreachable(PyGC_Head *base, PyGC_Head *unreachable) {
 1170|      8|    validate_list(base, collecting_clear_unreachable_clear);
  ------------------
  |  |  387|      8|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1171|       |    /* Using ob_refcnt and gc_refs, calculate which objects in the
 1172|       |     * container set are reachable from outside the set (i.e., have a
 1173|       |     * refcount greater than 0 when all the references within the
 1174|       |     * set are taken into account).
 1175|       |     */
 1176|      8|    Py_ssize_t candidates = update_refs(base);  // gc_prev is used for gc_refs
 1177|      8|    subtract_refs(base);
 1178|       |
 1179|       |    /* Leave everything reachable from outside base in base, and move
 1180|       |     * everything else (in base) to unreachable.
 1181|       |     *
 1182|       |     * NOTE:  This used to move the reachable objects into a reachable
 1183|       |     * set instead.  But most things usually turn out to be reachable,
 1184|       |     * so it's more efficient to move the unreachable things.  It "sounds slick"
 1185|       |     * to move the unreachable objects, until you think about it - the reason it
 1186|       |     * pays isn't actually obvious.
 1187|       |     *
 1188|       |     * Suppose we create objects A, B, C in that order.  They appear in the young
 1189|       |     * generation in the same order.  If B points to A, and C to B, and C is
 1190|       |     * reachable from outside, then the adjusted refcounts will be 0, 0, and 1
 1191|       |     * respectively.
 1192|       |     *
 1193|       |     * When move_unreachable finds A, A is moved to the unreachable list.  The
 1194|       |     * same for B when it's first encountered.  Then C is traversed, B is moved
 1195|       |     * _back_ to the reachable list.  B is eventually traversed, and then A is
 1196|       |     * moved back to the reachable list.
 1197|       |     *
 1198|       |     * So instead of not moving at all, the reachable objects B and A are moved
 1199|       |     * twice each.  Why is this a win?  A straightforward algorithm to move the
 1200|       |     * reachable objects instead would move A, B, and C once each.
 1201|       |     *
 1202|       |     * The key is that this dance leaves the objects in order C, B, A - it's
 1203|       |     * reversed from the original order.  On all _subsequent_ scans, none of
 1204|       |     * them will move.  Since most objects aren't in cycles, this can save an
 1205|       |     * unbounded number of moves across an unbounded number of later collections.
 1206|       |     * It can cost more only the first time the chain is scanned.
 1207|       |     *
 1208|       |     * Drawback:  move_unreachable is also used to find out what's still trash
 1209|       |     * after finalizers may resurrect objects.  In _that_ case most unreachable
 1210|       |     * objects will remain unreachable, so it would be more efficient to move
 1211|       |     * the reachable objects instead.  But this is a one-time cost, probably not
 1212|       |     * worth complicating the code to speed just a little.
 1213|       |     */
 1214|      8|    gc_list_init(unreachable);
 1215|      8|    move_unreachable(base, unreachable);  // gc_prev is pointer again
 1216|      8|    validate_list(base, collecting_clear_unreachable_clear);
  ------------------
  |  |  387|      8|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1217|      8|    validate_list(unreachable, collecting_set_unreachable_set);
  ------------------
  |  |  387|      8|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1218|      8|    return candidates;
 1219|      8|}
gc.c:update_refs:
  398|      8|{
  399|      8|    PyGC_Head *next;
  400|      8|    PyGC_Head *gc = GC_NEXT(containers);
  ------------------
  |  |   28|      8|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  401|      8|    Py_ssize_t candidates = 0;
  402|       |
  403|  10.1k|    while (gc != containers) {
  ------------------
  |  Branch (403:12): [True: 10.1k, False: 8]
  ------------------
  404|  10.1k|        next = GC_NEXT(gc);
  ------------------
  |  |   28|  10.1k|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  405|  10.1k|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|  10.1k|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  406|  10.1k|        if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  10.1k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  10.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 0, False: 10.1k]
  |  |  ------------------
  ------------------
  407|      0|            assert(!_Py_IsStaticImmortal(op));
  ------------------
  |  Branch (407:13): [True: 0, False: 0]
  ------------------
  408|      0|            _PyObject_GC_UNTRACK(op);
  ------------------
  |  |  515|      0|        _PyObject_GC_UNTRACK(__FILE__, __LINE__, _PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  409|      0|            gc = next;
  410|      0|            continue;
  411|      0|        }
  412|  10.1k|        gc_reset_refs(gc, Py_REFCNT(op));
  ------------------
  |  |  119|  10.1k|    #  define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  10.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  413|       |        /* Python's cyclic gc should never see an incoming refcount
  414|       |         * of 0:  if something decref'ed to 0, it should have been
  415|       |         * deallocated immediately at that time.
  416|       |         * Possible cause (if the assert triggers):  a tp_dealloc
  417|       |         * routine left a gc-aware object tracked during its teardown
  418|       |         * phase, and did something-- or allowed something to happen --
  419|       |         * that called back into Python.  gc can trigger then, and may
  420|       |         * see the still-tracked dying object.  Before this assert
  421|       |         * was added, such mistakes went on to allow gc to try to
  422|       |         * delete the object again.  In a debug build, that caused
  423|       |         * a mysterious segfault, when _Py_ForgetReference tried
  424|       |         * to remove the object from the doubly-linked list of all
  425|       |         * objects a second time.  In a release build, an actual
  426|       |         * double deallocation occurred, which leads to corruption
  427|       |         * of the allocator's internal bookkeeping pointers.  That's
  428|       |         * so serious that maybe this should be a release-build
  429|       |         * check instead of an assert?
  430|       |         */
  431|  10.1k|        _PyObject_ASSERT(op, gc_get_refs(gc) != 0);
  ------------------
  |  |  423|  10.1k|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|  10.1k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|  10.1k|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 10.1k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|  10.1k|      ? (void)(0) \
  |  |  |  |  |  |  416|  10.1k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  432|  10.1k|        gc = next;
  433|  10.1k|        candidates++;
  434|  10.1k|    }
  435|      8|    return candidates;
  436|      8|}
gc.c:gc_reset_refs:
   85|  10.1k|{
   86|  10.1k|    g->_gc_prev = (g->_gc_prev & _PyGC_PREV_MASK_FINALIZED)
  ------------------
  |  |  117|  10.1k|#define _PyGC_PREV_MASK_FINALIZED  ((uintptr_t)1)
  ------------------
   87|  10.1k|        | PREV_MASK_COLLECTING
  ------------------
  |  |   39|  10.1k|#define PREV_MASK_COLLECTING   _PyGC_PREV_MASK_COLLECTING
  |  |  ------------------
  |  |  |  |  119|  10.1k|#define _PyGC_PREV_MASK_COLLECTING ((uintptr_t)2)
  |  |  ------------------
  ------------------
   88|  10.1k|        | ((uintptr_t)(refs) << _PyGC_PREV_SHIFT);
  ------------------
  |  |  121|  10.1k|#define _PyGC_PREV_SHIFT           2
  ------------------
   89|  10.1k|}
gc.c:subtract_refs:
  491|      8|{
  492|      8|    traverseproc traverse;
  493|      8|    PyGC_Head *gc = GC_NEXT(containers);
  ------------------
  |  |   28|      8|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  494|  10.1k|    for (; gc != containers; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|  10.1k|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (494:12): [True: 10.1k, False: 8]
  ------------------
  495|  10.1k|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|  10.1k|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  496|  10.1k|        traverse = Py_TYPE(op)->tp_traverse;
  ------------------
  |  |  213|  10.1k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  10.1k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.1k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  497|  10.1k|        (void) traverse(op,
  498|  10.1k|                        visit_decref,
  499|  10.1k|                        op);
  500|  10.1k|    }
  501|      8|}
gc.c:move_unreachable:
  580|      8|{
  581|       |    // previous elem in the young list, used for restore gc_prev.
  582|      8|    PyGC_Head *prev = young;
  583|      8|    PyGC_Head *gc = GC_NEXT(young);
  ------------------
  |  |   28|      8|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  584|       |
  585|       |    /* Invariants:  all objects "to the left" of us in young are reachable
  586|       |     * (directly or indirectly) from outside the young list as it was at entry.
  587|       |     *
  588|       |     * All other objects from the original young "to the left" of us are in
  589|       |     * unreachable now, and have NEXT_MASK_UNREACHABLE.  All objects to the
  590|       |     * left of us in 'young' now have been scanned, and no objects here
  591|       |     * or to the right have been scanned yet.
  592|       |     */
  593|       |
  594|  11.8k|    while (gc != young) {
  ------------------
  |  Branch (594:12): [True: 11.7k, False: 8]
  ------------------
  595|  11.7k|        if (gc_get_refs(gc)) {
  ------------------
  |  Branch (595:13): [True: 10.0k, False: 1.70k]
  ------------------
  596|       |            /* gc is definitely reachable from outside the
  597|       |             * original 'young'.  Mark it as such, and traverse
  598|       |             * its pointers to find any other objects that may
  599|       |             * be directly reachable from it.  Note that the
  600|       |             * call to tp_traverse may append objects to young,
  601|       |             * so we have to wait until it returns to determine
  602|       |             * the next object to visit.
  603|       |             */
  604|  10.0k|            PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|  10.0k|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  605|  10.0k|            traverseproc traverse = Py_TYPE(op)->tp_traverse;
  ------------------
  |  |  213|  10.0k|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|  10.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  606|  10.0k|            _PyObject_ASSERT_WITH_MSG(op, gc_get_refs(gc) > 0,
  ------------------
  |  |  421|  10.0k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  |  414|  10.0k|    ((expr) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (414:6): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  415|  10.0k|      ? (void)(0) \
  |  |  |  |  416|  10.0k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  ------------------
  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  ------------------
  ------------------
  607|  10.0k|                                      "refcount is too small");
  608|       |            // NOTE: visit_reachable may change gc->_gc_next when
  609|       |            // young->_gc_prev == gc.  Don't do gc = GC_NEXT(gc) before!
  610|  10.0k|            (void) traverse(op,
  611|  10.0k|                    visit_reachable,
  612|  10.0k|                    (void *)young);
  613|       |            // relink gc_prev to prev element.
  614|  10.0k|            _PyGCHead_SET_PREV(gc, prev);
  615|       |            // gc is not COLLECTING state after here.
  616|  10.0k|            gc_clear_collecting(gc);
  617|  10.0k|            prev = gc;
  618|  10.0k|        }
  619|  1.70k|        else {
  620|       |            /* This *may* be unreachable.  To make progress,
  621|       |             * assume it is.  gc isn't directly reachable from
  622|       |             * any object we've already traversed, but may be
  623|       |             * reachable from an object we haven't gotten to yet.
  624|       |             * visit_reachable will eventually move gc back into
  625|       |             * young if that's so, and we'll see it again.
  626|       |             */
  627|       |            // Move gc to unreachable.
  628|       |            // No need to gc->next->prev = prev because it is single linked.
  629|  1.70k|            prev->_gc_next = gc->_gc_next;
  630|       |
  631|       |            // We can't use gc_list_append() here because we use
  632|       |            // NEXT_MASK_UNREACHABLE here.
  633|  1.70k|            PyGC_Head *last = GC_PREV(unreachable);
  ------------------
  |  |   29|  1.70k|#define GC_PREV _PyGCHead_PREV
  ------------------
  634|       |            // NOTE: Since all objects in unreachable set has
  635|       |            // NEXT_MASK_UNREACHABLE flag, we set it unconditionally.
  636|       |            // But this may pollute the unreachable list head's 'next' pointer
  637|       |            // too. That's semantically senseless but expedient here - the
  638|       |            // damage is repaired when this function ends.
  639|  1.70k|            last->_gc_next = (NEXT_MASK_UNREACHABLE | (uintptr_t)gc);
  ------------------
  |  |   50|  1.70k|#define NEXT_MASK_UNREACHABLE  (1)
  ------------------
  640|  1.70k|            _PyGCHead_SET_PREV(gc, last);
  641|  1.70k|            gc->_gc_next = (NEXT_MASK_UNREACHABLE | (uintptr_t)unreachable);
  ------------------
  |  |   50|  1.70k|#define NEXT_MASK_UNREACHABLE  (1)
  ------------------
  642|  1.70k|            unreachable->_gc_prev = (uintptr_t)gc;
  643|  1.70k|        }
  644|  11.7k|        gc = (PyGC_Head*)prev->_gc_next;
  645|  11.7k|    }
  646|       |    // young->_gc_prev must be last element remained in the list.
  647|      8|    young->_gc_prev = (uintptr_t)prev;
  648|       |    // don't let the pollution of the list head's next pointer leak
  649|      8|    unreachable->_gc_next &= ~NEXT_MASK_UNREACHABLE;
  ------------------
  |  |   50|      8|#define NEXT_MASK_UNREACHABLE  (1)
  ------------------
  650|      8|}
gc.c:visit_reachable:
  506|  32.5k|{
  507|  32.5k|    PyGC_Head *reachable = arg;
  508|  32.5k|    OBJECT_STAT_INC(object_visits);
  ------------------
  |  |   77|  32.5k|#define OBJECT_STAT_INC(name) ((void)0)
  ------------------
  509|  32.5k|    if (!_PyObject_IS_GC(op)) {
  ------------------
  |  Branch (509:9): [True: 20.9k, False: 11.5k]
  ------------------
  510|  20.9k|        return 0;
  511|  20.9k|    }
  512|       |
  513|  11.5k|    PyGC_Head *gc = AS_GC(op);
  ------------------
  |  |   52|  11.5k|#define AS_GC(op) _Py_AS_GC(op)
  ------------------
  514|  11.5k|    const Py_ssize_t gc_refs = gc_get_refs(gc);
  515|       |
  516|       |    // Ignore objects in other generation.
  517|       |    // This also skips objects "to the left" of the current position in
  518|       |    // move_unreachable's scan of the 'young' list - they've already been
  519|       |    // traversed, and no longer have the PREV_MASK_COLLECTING flag.
  520|  11.5k|    if (! gc_is_collecting(gc)) {
  ------------------
  |  Branch (520:9): [True: 3.73k, False: 7.86k]
  ------------------
  521|  3.73k|        return 0;
  522|  3.73k|    }
  523|       |    // It would be a logic error elsewhere if the collecting flag were set on
  524|       |    // an untracked object.
  525|  7.86k|    _PyObject_ASSERT(op, gc->_gc_next != 0);
  ------------------
  |  |  423|  7.86k|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|  7.86k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|  7.86k|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 7.86k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|  7.86k|      ? (void)(0) \
  |  |  |  |  |  |  416|  7.86k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  526|       |
  527|  7.86k|    if (gc->_gc_next & NEXT_MASK_UNREACHABLE) {
  ------------------
  |  |   50|  7.86k|#define NEXT_MASK_UNREACHABLE  (1)
  ------------------
  |  Branch (527:9): [True: 1.61k, False: 6.25k]
  ------------------
  528|       |        /* This had gc_refs = 0 when move_unreachable got
  529|       |         * to it, but turns out it's reachable after all.
  530|       |         * Move it back to move_unreachable's 'young' list,
  531|       |         * and move_unreachable will eventually get to it
  532|       |         * again.
  533|       |         */
  534|       |        // Manually unlink gc from unreachable list because the list functions
  535|       |        // don't work right in the presence of NEXT_MASK_UNREACHABLE flags.
  536|  1.61k|        PyGC_Head *prev = GC_PREV(gc);
  ------------------
  |  |   29|  1.61k|#define GC_PREV _PyGCHead_PREV
  ------------------
  537|  1.61k|        PyGC_Head *next = (PyGC_Head*)(gc->_gc_next & ~NEXT_MASK_UNREACHABLE);
  ------------------
  |  |   50|  1.61k|#define NEXT_MASK_UNREACHABLE  (1)
  ------------------
  538|  1.61k|        _PyObject_ASSERT(FROM_GC(prev),
  ------------------
  |  |  423|  1.61k|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|  1.61k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|  1.61k|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 1.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|  1.61k|      ? (void)(0) \
  |  |  |  |  |  |  416|  1.61k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  539|  1.61k|                         prev->_gc_next & NEXT_MASK_UNREACHABLE);
  540|  1.61k|        _PyObject_ASSERT(FROM_GC(next),
  ------------------
  |  |  423|  1.61k|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|  1.61k|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|  1.61k|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 1.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|  1.61k|      ? (void)(0) \
  |  |  |  |  |  |  416|  1.61k|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  541|  1.61k|                         next->_gc_next & NEXT_MASK_UNREACHABLE);
  542|  1.61k|        prev->_gc_next = gc->_gc_next;  // copy NEXT_MASK_UNREACHABLE
  543|  1.61k|        _PyGCHead_SET_PREV(next, prev);
  544|       |
  545|  1.61k|        gc_list_append(gc, reachable);
  546|  1.61k|        gc_set_refs(gc, 1);
  547|  1.61k|    }
  548|  6.25k|    else if (gc_refs == 0) {
  ------------------
  |  Branch (548:14): [True: 6.19k, False: 62]
  ------------------
  549|       |        /* This is in move_unreachable's 'young' list, but
  550|       |         * the traversal hasn't yet gotten to it.  All
  551|       |         * we need to do is tell move_unreachable that it's
  552|       |         * reachable.
  553|       |         */
  554|  6.19k|        gc_set_refs(gc, 1);
  555|  6.19k|    }
  556|       |    /* Else there's nothing to do.
  557|       |     * If gc_refs > 0, it must be in move_unreachable's 'young'
  558|       |     * list, and move_unreachable will eventually get to it.
  559|       |     */
  560|     62|    else {
  561|     62|        _PyObject_ASSERT_WITH_MSG(op, gc_refs > 0, "refcount is too small");
  ------------------
  |  |  421|     62|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  |  414|     62|    ((expr) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (414:6): [True: 62, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  415|     62|      ? (void)(0) \
  |  |  |  |  416|     62|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  ------------------
  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  ------------------
  ------------------
  562|     62|    }
  563|  7.86k|    return 0;
  564|  7.86k|}
gc.c:gc_list_append:
  227|  1.61k|{
  228|  1.61k|    PyGC_Head *last = (PyGC_Head *)list->_gc_prev;
  229|       |
  230|       |    // last <-> node
  231|  1.61k|    _PyGCHead_SET_PREV(node, last);
  232|  1.61k|    _PyGCHead_SET_NEXT(last, node);
  233|       |
  234|       |    // node <-> list
  235|  1.61k|    _PyGCHead_SET_NEXT(node, list);
  236|  1.61k|    list->_gc_prev = (uintptr_t)node;
  237|  1.61k|}
gc.c:gc_set_refs:
   78|  7.80k|{
   79|  7.80k|    g->_gc_prev = (g->_gc_prev & ~_PyGC_PREV_MASK)
  ------------------
  |  |  122|  7.80k|#define _PyGC_PREV_MASK            (((uintptr_t) -1) << _PyGC_PREV_SHIFT)
  |  |  ------------------
  |  |  |  |  121|  7.80k|#define _PyGC_PREV_SHIFT           2
  |  |  ------------------
  ------------------
   80|  7.80k|        | ((uintptr_t)(refs) << _PyGC_PREV_SHIFT);
  ------------------
  |  |  121|  7.80k|#define _PyGC_PREV_SHIFT           2
  ------------------
   81|  7.80k|}
gc.c:gc_clear_collecting:
   66|  10.1k|{
   67|  10.1k|    g->_gc_prev &= ~PREV_MASK_COLLECTING;
  ------------------
  |  |   39|  10.1k|#define PREV_MASK_COLLECTING   _PyGC_PREV_MASK_COLLECTING
  |  |  ------------------
  |  |  |  |  119|  10.1k|#define _PyGC_PREV_MASK_COLLECTING ((uintptr_t)2)
  |  |  ------------------
  ------------------
   68|  10.1k|}
gc.c:untrack_tuples:
  666|      4|{
  667|      4|    PyGC_Head *gc = GC_NEXT(head);
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  668|  10.1k|    while (gc != head) {
  ------------------
  |  Branch (668:12): [True: 10.0k, False: 4]
  ------------------
  669|  10.0k|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|  10.0k|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  670|  10.0k|        PyGC_Head *next = GC_NEXT(gc);
  ------------------
  |  |   28|  10.0k|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  671|  10.0k|        if (PyTuple_CheckExact(op)) {
  ------------------
  |  |   28|  10.0k|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|  10.0k|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|  10.0k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  10.0k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2.04k, False: 8.05k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  672|  2.04k|            _PyTuple_MaybeUntrack(op);
  673|  2.04k|        }
  674|  10.0k|        gc = next;
  675|  10.0k|    }
  676|      4|}
gc.c:move_legacy_finalizers:
  692|      4|{
  693|      4|    PyGC_Head *gc, *next;
  694|      4|    _PyObject_ASSERT(
  ------------------
  |  |  423|      4|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      4|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      4|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 4, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      4|      ? (void)(0) \
  |  |  |  |  |  |  416|      4|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  695|      4|        FROM_GC(unreachable),
  696|      4|        (unreachable->_gc_next & NEXT_MASK_UNREACHABLE) == 0);
  697|       |
  698|       |    /* March over unreachable.  Move objects with finalizers into
  699|       |     * `finalizers`.
  700|       |     */
  701|     48|    for (gc = GC_NEXT(unreachable); gc != unreachable; gc = next) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (701:37): [True: 44, False: 4]
  ------------------
  702|     44|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|     44|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  703|       |
  704|     44|        _PyObject_ASSERT(op, gc->_gc_next & NEXT_MASK_UNREACHABLE);
  ------------------
  |  |  423|     44|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|     44|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|     44|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 44, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|     44|      ? (void)(0) \
  |  |  |  |  |  |  416|     44|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  705|     44|        gc->_gc_next &= ~NEXT_MASK_UNREACHABLE;
  ------------------
  |  |   50|     44|#define NEXT_MASK_UNREACHABLE  (1)
  ------------------
  706|     44|        next = (PyGC_Head*)gc->_gc_next;
  707|       |
  708|     44|        if (has_legacy_finalizer(op)) {
  ------------------
  |  Branch (708:13): [True: 0, False: 44]
  ------------------
  709|      0|            gc_clear_collecting(gc);
  710|      0|            gc_list_move(gc, finalizers);
  711|      0|        }
  712|     44|    }
  713|      4|}
gc.c:has_legacy_finalizer:
  681|     44|{
  682|     44|    return Py_TYPE(op)->tp_del != NULL;
  ------------------
  |  |  213|     44|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  683|     44|}
gc.c:gc_list_move:
  258|     46|{
  259|       |    /* Unlink from current list. */
  260|     46|    PyGC_Head *from_prev = GC_PREV(node);
  ------------------
  |  |   29|     46|#define GC_PREV _PyGCHead_PREV
  ------------------
  261|     46|    PyGC_Head *from_next = GC_NEXT(node);
  ------------------
  |  |   28|     46|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  262|     46|    _PyGCHead_SET_NEXT(from_prev, from_next);
  263|     46|    _PyGCHead_SET_PREV(from_next, from_prev);
  264|       |
  265|       |    /* Relink at end of new list. */
  266|       |    // list must not have flags.  So we can skip macros.
  267|     46|    PyGC_Head *to_prev = (PyGC_Head*)list->_gc_prev;
  268|     46|    _PyGCHead_SET_PREV(node, to_prev);
  269|     46|    _PyGCHead_SET_NEXT(to_prev, node);
  270|     46|    list->_gc_prev = (uintptr_t)node;
  271|     46|    _PyGCHead_SET_NEXT(node, list);
  272|     46|}
gc.c:move_legacy_finalizer_reachable:
  756|      4|{
  757|      4|    traverseproc traverse;
  758|      4|    PyGC_Head *gc = GC_NEXT(finalizers);
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  759|      4|    for (; gc != finalizers; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      0|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (759:12): [True: 0, False: 4]
  ------------------
  760|       |        /* Note that the finalizers list may grow during this. */
  761|      0|        traverse = Py_TYPE(FROM_GC(gc))->tp_traverse;
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  762|      0|        (void) traverse(FROM_GC(gc),
  ------------------
  |  |   53|      0|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  763|      0|                        visit_move,
  764|      0|                        (void *)finalizers);
  765|      0|    }
  766|      4|}
gc.c:handle_weakref_callbacks:
  809|      4|{
  810|      4|    PyGC_Head *gc;
  811|      4|    PyGC_Head wrcb_to_call;     /* weakrefs with callbacks to call */
  812|      4|    PyGC_Head *next;
  813|      4|    int num_freed = 0;
  814|       |
  815|      4|    gc_list_init(&wrcb_to_call);
  816|       |
  817|       |    /* Find all weakrefs with callbacks and move into `wrcb_to_call` if the
  818|       |     * callback needs to be invoked. We make another pass over wrcb_to_call,
  819|       |     * invoking callbacks, after this pass completes.
  820|       |     */
  821|     48|    for (gc = GC_NEXT(unreachable); gc != unreachable; gc = next) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (821:37): [True: 44, False: 4]
  ------------------
  822|     44|        PyWeakReference **wrlist;
  823|       |
  824|     44|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|     44|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  825|     44|        next = GC_NEXT(gc);
  ------------------
  |  |   28|     44|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  826|       |
  827|     44|        if (! _PyType_SUPPORTS_WEAKREFS(Py_TYPE(op))) {
  ------------------
  |  |  213|     44|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (827:13): [True: 18, False: 26]
  ------------------
  828|     18|            continue;
  829|     18|        }
  830|       |
  831|       |        /* It supports weakrefs.  Does it have any?
  832|       |         *
  833|       |         * This is never triggered for static types so we can avoid the
  834|       |         * (slightly) more costly _PyObject_GET_WEAKREFS_LISTPTR().
  835|       |         */
  836|     26|        wrlist = _PyObject_GET_WEAKREFS_LISTPTR_FROM_OFFSET(op);
  837|       |
  838|       |        /* `op` may have some weakrefs.  March over the list and move the
  839|       |         * weakrefs with callbacks that must be called into wrcb_to_call.
  840|       |         */
  841|     26|        PyWeakReference *next_wr;
  842|     26|        for (PyWeakReference *wr = *wrlist; wr != NULL; wr = next_wr) {
  ------------------
  |  Branch (842:45): [True: 0, False: 26]
  ------------------
  843|       |            // Get the next list element to get iterator progress if we omit
  844|       |            // clearing of the weakref (because _PyWeakref_ClearRef changes
  845|       |            // next pointer in the wrlist).
  846|      0|            next_wr = wr->wr_next;
  847|       |
  848|      0|            if (wr->wr_callback == NULL) {
  ------------------
  |  Branch (848:17): [True: 0, False: 0]
  ------------------
  849|       |                /* no callback */
  850|      0|                continue;
  851|      0|            }
  852|       |
  853|       |            // Clear the weakref.  See the comments above this function for
  854|       |            // reasons why we need to clear weakrefs that have callbacks.
  855|       |            // Note that _PyWeakref_ClearRef clears the weakref but leaves the
  856|       |            // callback pointer intact.  Obscure: it also changes *wrlist.
  857|      0|            _PyObject_ASSERT((PyObject *)wr, wr->wr_object == op);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  858|      0|            _PyWeakref_ClearRef(wr);
  859|      0|            _PyObject_ASSERT((PyObject *)wr, wr->wr_object == Py_None);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  860|       |
  861|       |            /* Headache time.  `op` is going away, and is weakly referenced by
  862|       |             * `wr`, which has a callback.  Should the callback be invoked?  If wr
  863|       |             * is also trash, no:
  864|       |             *
  865|       |             * 1. There's no need to call it.  The object and the weakref are
  866|       |             *    both going away, so it's legitimate to pretend the weakref is
  867|       |             *    going away first.  The user has to ensure a weakref outlives its
  868|       |             *    referent if they want a guarantee that the wr callback will get
  869|       |             *    invoked.
  870|       |             *
  871|       |             * 2. It may be catastrophic to call it.  If the callback is also in
  872|       |             *    cyclic trash (CT), then although the CT is unreachable from
  873|       |             *    outside the current generation, CT may be reachable from the
  874|       |             *    callback.  Then the callback could resurrect insane objects.
  875|       |             *
  876|       |             * Since the callback is never needed and may be unsafe in this
  877|       |             * case, wr is simply left in the unreachable set.  Note that
  878|       |             * clear_weakrefs() will ensure its callback will not trigger
  879|       |             * inside delete_garbage().
  880|       |             *
  881|       |             * OTOH, if wr isn't part of CT, we should invoke the callback:  the
  882|       |             * weakref outlived the trash.  Note that since wr isn't CT in this
  883|       |             * case, its callback can't be CT either -- wr acted as an external
  884|       |             * root to this generation, and therefore its callback did too.  So
  885|       |             * nothing in CT is reachable from the callback either, so it's hard
  886|       |             * to imagine how calling it later could create a problem for us.  wr
  887|       |             * is moved to wrcb_to_call in this case.
  888|       |             */
  889|      0|            if (gc_is_collecting(AS_GC((PyObject *)wr))) {
  ------------------
  |  |   52|      0|#define AS_GC(op) _Py_AS_GC(op)
  ------------------
  |  Branch (889:17): [True: 0, False: 0]
  ------------------
  890|      0|                continue;
  891|      0|            }
  892|       |
  893|       |            /* Create a new reference so that wr can't go away
  894|       |             * before we can process it again.
  895|       |             */
  896|      0|            Py_INCREF(wr);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  897|       |
  898|       |            /* Move wr to wrcb_to_call, for the next pass. */
  899|      0|            PyGC_Head *wrasgc = AS_GC((PyObject *)wr);
  ------------------
  |  |   52|      0|#define AS_GC(op) _Py_AS_GC(op)
  ------------------
  900|       |            // wrasgc is reachable, but next isn't, so they can't be the same
  901|      0|            _PyObject_ASSERT((PyObject *)wr, wrasgc != next);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  902|      0|            gc_list_move(wrasgc, &wrcb_to_call);
  903|      0|        }
  904|     26|    }
  905|       |
  906|       |    /* Invoke the callbacks we decided to honor.  It's safe to invoke them
  907|       |     * because they can't reference unreachable objects.
  908|       |     */
  909|      4|    while (! gc_list_is_empty(&wrcb_to_call)) {
  ------------------
  |  Branch (909:12): [True: 0, False: 4]
  ------------------
  910|      0|        PyObject *temp;
  911|      0|        PyObject *callback;
  912|       |
  913|      0|        gc = (PyGC_Head*)wrcb_to_call._gc_next;
  914|      0|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|      0|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  915|      0|        _PyObject_ASSERT(op, PyWeakref_Check(op));
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (414:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  Branch (414:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  916|      0|        PyWeakReference *wr = (PyWeakReference *)op;
  917|      0|        callback = wr->wr_callback;
  918|      0|        _PyObject_ASSERT(op, callback != NULL);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  919|       |
  920|       |        /* copy-paste of weakrefobject.c's handle_callback() */
  921|      0|        temp = PyObject_CallOneArg(callback, (PyObject *)wr);
  922|      0|        if (temp == NULL) {
  ------------------
  |  Branch (922:13): [True: 0, False: 0]
  ------------------
  923|      0|            PyErr_FormatUnraisable("Exception ignored on "
  924|      0|                                   "calling weakref callback %R", callback);
  925|      0|        }
  926|      0|        else {
  927|      0|            Py_DECREF(temp);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  928|      0|        }
  929|       |
  930|       |        /* Give up the reference we created in the first pass.  When
  931|       |         * op's refcount hits 0 (which it may or may not do right now),
  932|       |         * op's tp_dealloc will decref op->wr_callback too.  Note
  933|       |         * that the refcount probably will hit 0 now, and because this
  934|       |         * weakref was reachable to begin with, gc didn't already
  935|       |         * add it to its count of freed objects.  Example:  a reachable
  936|       |         * weak value dict maps some key to this reachable weakref.
  937|       |         * The callback removes this key->weakref mapping from the
  938|       |         * dict, leaving no other references to the weakref (excepting
  939|       |         * ours).
  940|       |         */
  941|      0|        Py_DECREF(op);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  942|      0|        if (wrcb_to_call._gc_next == (uintptr_t)gc) {
  ------------------
  |  Branch (942:13): [True: 0, False: 0]
  ------------------
  943|       |            /* object is still alive -- move it */
  944|      0|            gc_list_move(gc, old);
  945|      0|        }
  946|      0|        else {
  947|      0|            ++num_freed;
  948|      0|        }
  949|      0|    }
  950|       |
  951|      4|    return num_freed;
  952|      4|}
gc.c:finalize_garbage:
 1047|      4|{
 1048|      4|    destructor finalize;
 1049|      4|    PyGC_Head seen;
 1050|       |
 1051|       |    /* While we're going through the loop, `finalize(op)` may cause op, or
 1052|       |     * other objects, to be reclaimed via refcounts falling to zero.  So
 1053|       |     * there's little we can rely on about the structure of the input
 1054|       |     * `collectable` list across iterations.  For safety, we always take the
 1055|       |     * first object in that list and move it to a temporary `seen` list.
 1056|       |     * If objects vanish from the `collectable` and `seen` lists we don't
 1057|       |     * care.
 1058|       |     */
 1059|      4|    gc_list_init(&seen);
 1060|       |
 1061|     48|    while (!gc_list_is_empty(collectable)) {
  ------------------
  |  Branch (1061:12): [True: 44, False: 4]
  ------------------
 1062|     44|        PyGC_Head *gc = GC_NEXT(collectable);
  ------------------
  |  |   28|     44|#define GC_NEXT _PyGCHead_NEXT
  ------------------
 1063|     44|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|     44|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
 1064|     44|        gc_list_move(gc, &seen);
 1065|     44|        if (!_PyGC_FINALIZED(op) &&
  ------------------
  |  Branch (1065:13): [True: 44, False: 0]
  ------------------
 1066|     44|            (finalize = Py_TYPE(op)->tp_finalize) != NULL)
  ------------------
  |  |  213|     44|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1066:13): [True: 0, False: 44]
  ------------------
 1067|      0|        {
 1068|      0|            _PyGC_SET_FINALIZED(op);
 1069|      0|            Py_INCREF(op);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1070|      0|            finalize(op);
 1071|      0|            assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1071:13): [True: 0, False: 0]
  ------------------
 1072|      0|            Py_DECREF(op);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1073|      0|        }
 1074|     44|    }
 1075|      4|    gc_list_merge(&seen, collectable);
 1076|      4|}
gc.c:handle_resurrected_objects:
 1237|      4|{
 1238|       |    // Remove the PREV_MASK_COLLECTING from unreachable
 1239|       |    // to prepare it for a new call to 'deduce_unreachable'
 1240|      4|    gc_list_clear_collecting(unreachable);
 1241|       |
 1242|       |    // After the call to deduce_unreachable, the 'still_unreachable' set will
 1243|       |    // have the PREV_MARK_COLLECTING set, but the objects are going to be
 1244|       |    // removed so we can skip the expense of clearing the flag.
 1245|      4|    PyGC_Head* resurrected = unreachable;
 1246|      4|    deduce_unreachable(resurrected, still_unreachable);
 1247|      4|    clear_unreachable_mask(still_unreachable);
 1248|       |
 1249|       |    // Move the resurrected objects to the old generation for future collection.
 1250|      4|    gc_list_merge(resurrected, old_generation);
 1251|      4|}
gc.c:gc_list_clear_collecting:
  309|      4|{
  310|      4|    PyGC_Head *gc;
  311|     48|    for (gc = GC_NEXT(collectable); gc != collectable; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
                  for (gc = GC_NEXT(collectable); gc != collectable; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|     44|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (311:37): [True: 44, False: 4]
  ------------------
  312|     44|        gc_clear_collecting(gc);
  313|     44|    }
  314|      4|}
gc.c:clear_unreachable_mask:
  717|      4|{
  718|       |    /* Check that the list head does not have the unreachable bit set */
  719|      4|    _PyObject_ASSERT(
  ------------------
  |  |  423|      4|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      4|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      4|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 4, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      4|      ? (void)(0) \
  |  |  |  |  |  |  416|      4|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  720|      4|        FROM_GC(unreachable),
  721|      4|        ((uintptr_t)unreachable & NEXT_MASK_UNREACHABLE) == 0);
  722|      4|    _PyObject_ASSERT(
  ------------------
  |  |  423|      4|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      4|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      4|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 4, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      4|      ? (void)(0) \
  |  |  |  |  |  |  416|      4|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  723|      4|        FROM_GC(unreachable),
  724|      4|        (unreachable->_gc_next & NEXT_MASK_UNREACHABLE) == 0);
  725|       |
  726|      4|    PyGC_Head *gc, *next;
  727|     48|    for (gc = GC_NEXT(unreachable); gc != unreachable; gc = next) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (727:37): [True: 44, False: 4]
  ------------------
  728|     44|        _PyObject_ASSERT((PyObject*)FROM_GC(gc), gc->_gc_next & NEXT_MASK_UNREACHABLE);
  ------------------
  |  |  423|     44|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|     44|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|     44|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 44, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|     44|      ? (void)(0) \
  |  |  |  |  |  |  416|     44|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  729|     44|        gc->_gc_next &= ~NEXT_MASK_UNREACHABLE;
  ------------------
  |  |   50|     44|#define NEXT_MASK_UNREACHABLE  (1)
  ------------------
  730|     44|        next = (PyGC_Head*)gc->_gc_next;
  731|     44|    }
  732|      4|    validate_list(unreachable, collecting_set_unreachable_clear);
  ------------------
  |  |  387|      4|#define validate_list(x, y) do{}while(0)
  |  |  ------------------
  |  |  |  Branch (387:39): [Folded, False: 4]
  |  |  ------------------
  ------------------
  733|      4|}
gc.c:clear_weakrefs:
  960|      4|{
  961|      4|    PyGC_Head *gc;
  962|      4|    PyGC_Head *next;
  963|       |
  964|     48|    for (gc = GC_NEXT(unreachable); gc != unreachable; gc = next) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (964:37): [True: 44, False: 4]
  ------------------
  965|     44|        PyWeakReference **wrlist;
  966|       |
  967|     44|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|     44|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
  968|     44|        next = GC_NEXT(gc);
  ------------------
  |  |   28|     44|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  969|       |
  970|     44|        if (PyWeakref_Check(op)) {
  ------------------
  |  |   23|     44|        (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
  |  |  ------------------
  |  |  |  |   15|     44|#define PyWeakref_CheckRef(op) PyObject_TypeCheck((op), &_PyWeakref_RefType)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|     88|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 44]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                       (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
  |  |  ------------------
  |  |  |  |   19|     44|        (Py_IS_TYPE((op), &_PyWeakref_ProxyType) \
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|     88|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 44]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   20|     44|         || Py_IS_TYPE((op), &_PyWeakref_CallableProxyType))
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|     44|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 44]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  971|       |            /* A weakref inside the unreachable set is always cleared. See
  972|       |             * the comments above handle_weakref_callbacks() for why these
  973|       |             * must be cleared.
  974|       |             */
  975|      0|            _PyWeakref_ClearRef((PyWeakReference *)op);
  976|      0|        }
  977|       |
  978|     44|        if (! _PyType_SUPPORTS_WEAKREFS(Py_TYPE(op))) {
  ------------------
  |  |  213|     44|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (978:13): [True: 18, False: 26]
  ------------------
  979|     18|            continue;
  980|     18|        }
  981|       |
  982|       |        /* It supports weakrefs.  Does it have any?
  983|       |         *
  984|       |         * This is never triggered for static types so we can avoid the
  985|       |         * (slightly) more costly _PyObject_GET_WEAKREFS_LISTPTR().
  986|       |         */
  987|     26|        wrlist = _PyObject_GET_WEAKREFS_LISTPTR_FROM_OFFSET(op);
  988|       |
  989|       |        /* `op` may have some weakrefs.  March over the list, clear
  990|       |         * all the weakrefs.
  991|       |         */
  992|     26|        for (PyWeakReference *wr = *wrlist; wr != NULL; wr = *wrlist) {
  ------------------
  |  Branch (992:45): [True: 0, False: 26]
  ------------------
  993|       |            /* _PyWeakref_ClearRef clears the weakref but leaves
  994|       |             * the callback pointer intact.  Obscure:  it also
  995|       |             * changes *wrlist.
  996|       |             */
  997|      0|            _PyObject_ASSERT((PyObject *)wr, wr->wr_object == op);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  998|      0|            _PyWeakref_ClearRef(wr);
  999|      0|            _PyObject_ASSERT((PyObject *)wr, wr->wr_object == Py_None);
  ------------------
  |  |  423|      0|    _PyObject_ASSERT_WITH_MSG((obj), expr, NULL)
  |  |  ------------------
  |  |  |  |  421|      0|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  414|      0|    ((expr) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (414:6): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  415|      0|      ? (void)(0) \
  |  |  |  |  |  |  416|      0|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1000|      0|        }
 1001|     26|    }
 1002|      4|}
gc.c:delete_garbage:
 1085|      4|{
 1086|      4|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1086:5): [True: 4, False: 0]
  ------------------
 1087|       |
 1088|      8|    while (!gc_list_is_empty(collectable)) {
  ------------------
  |  Branch (1088:12): [True: 4, False: 4]
  ------------------
 1089|      4|        PyGC_Head *gc = GC_NEXT(collectable);
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
 1090|      4|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|      4|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
 1091|       |
 1092|      4|        _PyObject_ASSERT_WITH_MSG(op, Py_REFCNT(op) > 0,
  ------------------
  |  |  421|      4|    _PyObject_ASSERT_FROM((obj), expr, (msg), __FILE__, __LINE__, __func__)
  |  |  ------------------
  |  |  |  |  414|      4|    ((expr) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (414:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  415|      4|      ? (void)(0) \
  |  |  |  |  416|      4|      : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
  |  |  |  |  ------------------
  |  |  |  |  |  |  132|      0|#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  126|      0|#define _Py_XSTRINGIFY(x) #x
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  417|      0|                               (msg), (filename), (lineno), (func)))
  |  |  ------------------
  ------------------
 1093|      4|                                  "refcount is too small");
 1094|       |
 1095|      4|        if (gcstate->debug & _PyGC_DEBUG_SAVEALL) {
  ------------------
  |  |  128|      4|#define _PyGC_DEBUG_SAVEALL           (1<<5) /* save all garbage in gc.garbage */
  ------------------
  |  Branch (1095:13): [True: 0, False: 4]
  ------------------
 1096|      0|            assert(gcstate->garbage != NULL);
  ------------------
  |  Branch (1096:13): [True: 0, False: 0]
  ------------------
 1097|      0|            if (PyList_Append(gcstate->garbage, op) < 0) {
  ------------------
  |  Branch (1097:17): [True: 0, False: 0]
  ------------------
 1098|      0|                _PyErr_Clear(tstate);
 1099|      0|            }
 1100|      0|        }
 1101|      4|        else {
 1102|      4|            inquiry clear;
 1103|      4|            if ((clear = Py_TYPE(op)->tp_clear) != NULL) {
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1103:17): [True: 4, False: 0]
  ------------------
 1104|      4|                Py_INCREF(op);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1105|      4|                (void) clear(op);
 1106|      4|                if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (1106:21): [True: 0, False: 4]
  ------------------
 1107|      0|                    PyErr_FormatUnraisable("Exception ignored in tp_clear of %s",
 1108|      0|                                           Py_TYPE(op)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1109|      0|                }
 1110|      4|                Py_DECREF(op);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1111|      4|            }
 1112|      4|        }
 1113|      4|        if (GC_NEXT(collectable) == gc) {
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (1113:13): [True: 2, False: 2]
  ------------------
 1114|       |            /* object is still alive, move it, it may die later */
 1115|      2|            gc_clear_collecting(gc);
 1116|      2|            gc_list_move(gc, old);
 1117|      2|        }
 1118|      4|    }
 1119|      4|}
gc.c:handle_legacy_finalizers:
 1022|      4|{
 1023|      4|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1023:5): [True: 4, False: 0]
  ------------------
 1024|      4|    assert(gcstate->garbage != NULL);
  ------------------
  |  Branch (1024:5): [True: 4, False: 0]
  ------------------
 1025|       |
 1026|      4|    PyGC_Head *gc = GC_NEXT(finalizers);
  ------------------
  |  |   28|      4|#define GC_NEXT _PyGCHead_NEXT
  ------------------
 1027|      4|    for (; gc != finalizers; gc = GC_NEXT(gc)) {
  ------------------
  |  |   28|      0|#define GC_NEXT _PyGCHead_NEXT
  ------------------
  |  Branch (1027:12): [True: 0, False: 4]
  ------------------
 1028|      0|        PyObject *op = FROM_GC(gc);
  ------------------
  |  |   53|      0|#define FROM_GC(gc) _Py_FROM_GC(gc)
  ------------------
 1029|       |
 1030|      0|        if ((gcstate->debug & _PyGC_DEBUG_SAVEALL) || has_legacy_finalizer(op)) {
  ------------------
  |  |  128|      0|#define _PyGC_DEBUG_SAVEALL           (1<<5) /* save all garbage in gc.garbage */
  ------------------
  |  Branch (1030:13): [True: 0, False: 0]
  |  Branch (1030:55): [True: 0, False: 0]
  ------------------
 1031|      0|            if (PyList_Append(gcstate->garbage, op) < 0) {
  ------------------
  |  Branch (1031:17): [True: 0, False: 0]
  ------------------
 1032|      0|                _PyErr_Clear(tstate);
 1033|      0|                break;
 1034|      0|            }
 1035|      0|        }
 1036|      0|    }
 1037|       |
 1038|      4|    gc_list_merge(finalizers, old);
 1039|      4|}
gc.c:add_stats:
 1401|      4|{
 1402|      4|    struct gc_generation_stats *prev_stats = gc_get_prev_stats(gcstate, gen);
 1403|      4|    struct gc_generation_stats *cur_stats = gc_get_stats(gcstate, gen);
 1404|       |
 1405|      4|    memcpy(cur_stats, prev_stats, sizeof(struct gc_generation_stats));
 1406|       |
 1407|      4|    cur_stats->ts_start = stats->ts_start;
 1408|      4|    cur_stats->collections += 1;
 1409|      4|    cur_stats->collected += stats->collected;
 1410|      4|    cur_stats->uncollectable += stats->uncollectable;
 1411|      4|    cur_stats->candidates += stats->candidates;
 1412|       |
 1413|      4|    cur_stats->duration += stats->duration;
 1414|      4|    cur_stats->heap_size = stats->heap_size;
 1415|       |    /* Publish ts_stop last so remote readers do not select a partially
 1416|       |       updated stats record as the latest collection. */
 1417|      4|    cur_stats->ts_stop = stats->ts_stop;
 1418|      4|}
gc.c:gc_get_prev_stats:
 1386|      4|{
 1387|      4|    if (gen == 0) {
  ------------------
  |  Branch (1387:9): [True: 4, False: 0]
  ------------------
 1388|      4|        struct gc_young_stats_buffer *buffer = &gcstate->generation_stats->young;
 1389|      4|        struct gc_generation_stats *stats = &buffer->items[buffer->index];
 1390|      4|        return stats;
 1391|      4|    }
 1392|      0|    else {
 1393|      0|        struct gc_old_stats_buffer *buffer = &gcstate->generation_stats->old[gen - 1];
 1394|      0|        struct gc_generation_stats *stats = &buffer->items[buffer->index];
 1395|      0|        return stats;
 1396|      0|    }
 1397|      4|}
gc.c:gc_get_stats:
 1369|      4|{
 1370|      4|    if (gen == 0) {
  ------------------
  |  Branch (1370:9): [True: 4, False: 0]
  ------------------
 1371|      4|        struct gc_young_stats_buffer *buffer = &gcstate->generation_stats->young;
 1372|      4|        buffer->index = (buffer->index + 1) % GC_YOUNG_STATS_SIZE;
  ------------------
  |  |  202|      4|#define GC_YOUNG_STATS_SIZE 11
  ------------------
 1373|      4|        struct gc_generation_stats *stats = &buffer->items[buffer->index];
 1374|      4|        return stats;
 1375|      4|    }
 1376|      0|    else {
 1377|      0|        struct gc_old_stats_buffer *buffer = &gcstate->generation_stats->old[gen - 1];
 1378|      0|        buffer->index = (buffer->index + 1) % GC_OLD_STATS_SIZE;
  ------------------
  |  |  203|      0|#define GC_OLD_STATS_SIZE 3
  ------------------
 1379|      0|        struct gc_generation_stats *stats = &buffer->items[buffer->index];
 1380|      0|        return stats;
 1381|      0|    }
 1382|      4|}
gc.c:gc_alloc:
 2005|  9.90k|{
 2006|  9.90k|    PyThreadState *tstate = _PyThreadState_GET();
 2007|  9.90k|    if (basicsize > PY_SSIZE_T_MAX - presize) {
  ------------------
  |  |  137|  9.90k|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (2007:9): [True: 0, False: 9.90k]
  ------------------
 2008|      0|        return _PyErr_NoMemory(tstate);
 2009|      0|    }
 2010|  9.90k|    size_t size = presize + basicsize;
 2011|  9.90k|    char *mem = _PyObject_MallocWithType(tp, size);
 2012|  9.90k|    if (mem == NULL) {
  ------------------
  |  Branch (2012:9): [True: 0, False: 9.90k]
  ------------------
 2013|      0|        return _PyErr_NoMemory(tstate);
 2014|      0|    }
 2015|  9.90k|    ((PyObject **)mem)[0] = NULL;
 2016|       |    ((PyObject **)mem)[1] = NULL;
 2017|  9.90k|    PyObject *op = (PyObject *)(mem + presize);
 2018|  9.90k|    _PyObject_GC_Link(op);
 2019|  9.90k|    return op;
 2020|  9.90k|}

PyArg_ParseTuple:
  104|    220|{
  105|    220|    int retval;
  106|    220|    va_list va;
  107|       |
  108|    220|    va_start(va, format);
  109|    220|    retval = vgetargs1(args, format, &va, 0);
  110|       |    va_end(va);
  111|    220|    return retval;
  112|    220|}
PyArg_ParseTupleAndKeywords:
 1426|     78|{
 1427|     78|    int retval;
 1428|     78|    va_list va;
 1429|       |
 1430|     78|    if ((args == NULL || !PyTuple_Check(args)) ||
  ------------------
  |  |   27|     78|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     78|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1430:10): [True: 0, False: 78]
  |  Branch (1430:26): [True: 0, False: 78]
  ------------------
 1431|     78|        (keywords != NULL && !PyDict_Check(keywords)) ||
  ------------------
  |  |   18|     14|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     14|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1431:10): [True: 14, False: 64]
  |  Branch (1431:30): [True: 0, False: 14]
  ------------------
 1432|     78|        format == NULL ||
  ------------------
  |  Branch (1432:9): [True: 0, False: 78]
  ------------------
 1433|     78|        kwlist == NULL)
  ------------------
  |  Branch (1433:9): [True: 0, False: 78]
  ------------------
 1434|      0|    {
 1435|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1436|      0|        return 0;
 1437|      0|    }
 1438|       |
 1439|     78|    va_start(va, kwlist);
 1440|     78|    retval = vgetargskeywords(args, keywords, format, kwlist, &va, 0);
 1441|       |    va_end(va);
 1442|     78|    return retval;
 1443|     78|}
PyArg_ValidateKeywordArguments:
 1640|     30|{
 1641|     30|    if (!PyDict_Check(kwargs)) {
  ------------------
  |  |   18|     30|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     30|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1641:9): [True: 0, False: 30]
  ------------------
 1642|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 1643|      0|        return 0;
 1644|      0|    }
 1645|     30|    if (!_PyDict_HasOnlyStringKeys(kwargs)) {
  ------------------
  |  Branch (1645:9): [True: 0, False: 30]
  ------------------
 1646|      0|        PyErr_SetString(PyExc_TypeError,
 1647|      0|                        "keywords must be strings");
 1648|      0|        return 0;
 1649|      0|    }
 1650|     30|    return 1;
 1651|     30|}
_PyArg_UnpackKeywords:
 2524|      2|{
 2525|      2|    PyObject *kwtuple;
 2526|      2|    PyObject *keyword;
 2527|      2|    int i, posonly, minposonly, maxargs;
 2528|      2|    int reqlimit = minkw ? maxpos + minkw : minpos;
  ------------------
  |  Branch (2528:20): [True: 0, False: 2]
  ------------------
 2529|      2|    Py_ssize_t nkwargs;
 2530|      2|    PyObject * const *kwstack = NULL;
 2531|       |
 2532|      2|    assert(kwargs == NULL || PyDict_Check(kwargs));
  ------------------
  |  Branch (2532:5): [True: 2, False: 0]
  |  Branch (2532:5): [True: 0, False: 0]
  ------------------
 2533|      2|    assert(kwargs == NULL || kwnames == NULL);
  ------------------
  |  Branch (2533:5): [True: 2, False: 0]
  |  Branch (2533:5): [True: 0, False: 0]
  ------------------
 2534|       |
 2535|      2|    if (parser == NULL) {
  ------------------
  |  Branch (2535:9): [True: 0, False: 2]
  ------------------
 2536|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2537|      0|        return NULL;
 2538|      0|    }
 2539|       |
 2540|      2|    if (kwnames != NULL && !PyTuple_Check(kwnames)) {
  ------------------
  |  |   27|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2540:9): [True: 2, False: 0]
  |  Branch (2540:28): [True: 0, False: 2]
  ------------------
 2541|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2542|      0|        return NULL;
 2543|      0|    }
 2544|       |
 2545|      2|    if (args == NULL && nargs == 0) {
  ------------------
  |  Branch (2545:9): [True: 0, False: 2]
  |  Branch (2545:25): [True: 0, False: 0]
  ------------------
 2546|      0|        args = buf;
 2547|      0|    }
 2548|       |
 2549|      2|    if (parser_init(parser) < 0) {
  ------------------
  |  Branch (2549:9): [True: 0, False: 2]
  ------------------
 2550|      0|        return NULL;
 2551|      0|    }
 2552|       |
 2553|      2|    kwtuple = parser->kwtuple;
 2554|      2|    posonly = parser->pos;
 2555|      2|    minposonly = Py_MIN(posonly, minpos);
  ------------------
  |  |  112|      2|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2556|      2|    maxargs = posonly + (int)PyTuple_GET_SIZE(kwtuple);
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2557|       |
 2558|      2|    if (kwargs != NULL) {
  ------------------
  |  Branch (2558:9): [True: 0, False: 2]
  ------------------
 2559|      0|        nkwargs = PyDict_GET_SIZE(kwargs);
  ------------------
  |  |   63|      0|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2560|      0|    }
 2561|      2|    else if (kwnames != NULL) {
  ------------------
  |  Branch (2561:14): [True: 2, False: 0]
  ------------------
 2562|      2|        nkwargs = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|      2|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2563|      2|        kwstack = args + nargs;
 2564|      2|    }
 2565|      0|    else {
 2566|      0|        nkwargs = 0;
 2567|      0|    }
 2568|      2|    if (nkwargs == 0 && minkw == 0 && minpos <= nargs && (varpos || nargs <= maxpos)) {
  ------------------
  |  Branch (2568:9): [True: 0, False: 2]
  |  Branch (2568:25): [True: 0, False: 0]
  |  Branch (2568:39): [True: 0, False: 0]
  |  Branch (2568:59): [True: 0, False: 0]
  |  Branch (2568:69): [True: 0, False: 0]
  ------------------
 2569|       |        /* Fast path. */
 2570|      0|        return args;
 2571|      0|    }
 2572|      2|    if (!varpos && nargs + nkwargs > maxargs) {
  ------------------
  |  Branch (2572:9): [True: 2, False: 0]
  |  Branch (2572:20): [True: 0, False: 2]
  ------------------
 2573|       |        /* Adding "keyword" (when nargs == 0) prevents producing wrong error
 2574|       |           messages in some special cases (see bpo-31229). */
 2575|      0|        PyErr_Format(PyExc_TypeError,
 2576|      0|                     "%.200s%s takes at most %d %sargument%s (%zd given)",
 2577|      0|                     (parser->fname == NULL) ? "function" : parser->fname,
  ------------------
  |  Branch (2577:22): [True: 0, False: 0]
  ------------------
 2578|      0|                     (parser->fname == NULL) ? "" : "()",
  ------------------
  |  Branch (2578:22): [True: 0, False: 0]
  ------------------
 2579|      0|                     maxargs,
 2580|      0|                     (nargs == 0) ? "keyword " : "",
  ------------------
  |  Branch (2580:22): [True: 0, False: 0]
  ------------------
 2581|      0|                     (maxargs == 1) ? "" : "s",
  ------------------
  |  Branch (2581:22): [True: 0, False: 0]
  ------------------
 2582|      0|                     nargs + nkwargs);
 2583|      0|        return NULL;
 2584|      0|    }
 2585|      2|    if (!varpos && nargs > maxpos) {
  ------------------
  |  Branch (2585:9): [True: 2, False: 0]
  |  Branch (2585:20): [True: 0, False: 2]
  ------------------
 2586|      0|        if (maxpos == 0) {
  ------------------
  |  Branch (2586:13): [True: 0, False: 0]
  ------------------
 2587|      0|            PyErr_Format(PyExc_TypeError,
 2588|      0|                         "%.200s%s takes no positional arguments",
 2589|      0|                         (parser->fname == NULL) ? "function" : parser->fname,
  ------------------
  |  Branch (2589:26): [True: 0, False: 0]
  ------------------
 2590|      0|                         (parser->fname == NULL) ? "" : "()");
  ------------------
  |  Branch (2590:26): [True: 0, False: 0]
  ------------------
 2591|      0|        }
 2592|      0|        else {
 2593|      0|            PyErr_Format(PyExc_TypeError,
 2594|      0|                         "%.200s%s takes %s %d positional argument%s (%zd given)",
 2595|      0|                         (parser->fname == NULL) ? "function" : parser->fname,
  ------------------
  |  Branch (2595:26): [True: 0, False: 0]
  ------------------
 2596|      0|                         (parser->fname == NULL) ? "" : "()",
  ------------------
  |  Branch (2596:26): [True: 0, False: 0]
  ------------------
 2597|      0|                         (minpos < maxpos) ? "at most" : "exactly",
  ------------------
  |  Branch (2597:26): [True: 0, False: 0]
  ------------------
 2598|      0|                         maxpos,
 2599|      0|                         (maxpos == 1) ? "" : "s",
  ------------------
  |  Branch (2599:26): [True: 0, False: 0]
  ------------------
 2600|      0|                         nargs);
 2601|      0|        }
 2602|      0|        return NULL;
 2603|      0|    }
 2604|      2|    if (nargs < minposonly) {
  ------------------
  |  Branch (2604:9): [True: 0, False: 2]
  ------------------
 2605|      0|        PyErr_Format(PyExc_TypeError,
 2606|      0|                     "%.200s%s takes %s %d positional argument%s"
 2607|      0|                     " (%zd given)",
 2608|      0|                     (parser->fname == NULL) ? "function" : parser->fname,
  ------------------
  |  Branch (2608:22): [True: 0, False: 0]
  ------------------
 2609|      0|                     (parser->fname == NULL) ? "" : "()",
  ------------------
  |  Branch (2609:22): [True: 0, False: 0]
  ------------------
 2610|      0|                     (varpos || minposonly < maxpos) ? "at least" : "exactly",
  ------------------
  |  Branch (2610:23): [True: 0, False: 0]
  |  Branch (2610:33): [True: 0, False: 0]
  ------------------
 2611|      0|                     minposonly,
 2612|      0|                     minposonly == 1 ? "" : "s",
  ------------------
  |  Branch (2612:22): [True: 0, False: 0]
  ------------------
 2613|      0|                     nargs);
 2614|      0|        return NULL;
 2615|      0|    }
 2616|       |
 2617|      2|    if (varpos) {
  ------------------
  |  Branch (2617:9): [True: 0, False: 2]
  ------------------
 2618|      0|        nargs = Py_MIN(maxpos, nargs);
  ------------------
  |  |  112|      0|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2619|      0|    }
 2620|       |    /* copy tuple args */
 2621|      4|    for (i = 0; i < nargs; i++) {
  ------------------
  |  Branch (2621:17): [True: 2, False: 2]
  ------------------
 2622|      2|        buf[i] = args[i];
 2623|      2|    }
 2624|       |
 2625|       |    /* copy keyword args using kwtuple to drive process */
 2626|     10|    for (i = Py_MAX((int)nargs, posonly); i < maxargs; i++) {
  ------------------
  |  |  115|      2|#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (115:23): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2626:43): [True: 8, False: 2]
  ------------------
 2627|      8|        PyObject *current_arg;
 2628|      8|        if (nkwargs) {
  ------------------
  |  Branch (2628:13): [True: 8, False: 0]
  ------------------
 2629|      8|            keyword = PyTuple_GET_ITEM(kwtuple, i - posonly);
  ------------------
  |  |   29|      8|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      8|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2629:23): [True: 8, False: 0]
  ------------------
 2630|      8|            if (kwargs != NULL) {
  ------------------
  |  Branch (2630:17): [True: 0, False: 8]
  ------------------
 2631|      0|                if (PyDict_GetItemRef(kwargs, keyword, &current_arg) < 0) {
  ------------------
  |  Branch (2631:21): [True: 0, False: 0]
  ------------------
 2632|      0|                    return NULL;
 2633|      0|                }
 2634|      0|            }
 2635|      8|            else {
 2636|      8|                current_arg = find_keyword(kwnames, kwstack, keyword);
 2637|      8|            }
 2638|      8|        }
 2639|      0|        else if (i >= reqlimit) {
  ------------------
  |  Branch (2639:18): [True: 0, False: 0]
  ------------------
 2640|      0|            break;
 2641|      0|        }
 2642|      0|        else {
 2643|      0|            current_arg = NULL;
 2644|      0|        }
 2645|       |
 2646|      8|        buf[i] = current_arg;
 2647|       |
 2648|      8|        if (current_arg) {
  ------------------
  |  Branch (2648:13): [True: 4, False: 4]
  ------------------
 2649|      4|            Py_DECREF(current_arg);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2650|      4|            --nkwargs;
 2651|      4|        }
 2652|      4|        else if (i < minpos || (maxpos <= i && i < reqlimit)) {
  ------------------
  |  Branch (2652:18): [True: 0, False: 4]
  |  Branch (2652:33): [True: 0, False: 4]
  |  Branch (2652:48): [True: 0, False: 0]
  ------------------
 2653|       |            /* Less arguments than required */
 2654|      0|            keyword = PyTuple_GET_ITEM(kwtuple, i - posonly);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2654:23): [True: 0, False: 0]
  ------------------
 2655|      0|            PyErr_Format(PyExc_TypeError,  "%.200s%s missing required "
 2656|      0|                         "argument '%U' (pos %d)",
 2657|      0|                         (parser->fname == NULL) ? "function" : parser->fname,
  ------------------
  |  Branch (2657:26): [True: 0, False: 0]
  ------------------
 2658|      0|                         (parser->fname == NULL) ? "" : "()",
  ------------------
  |  Branch (2658:26): [True: 0, False: 0]
  ------------------
 2659|      0|                         keyword, i+1);
 2660|      0|            return NULL;
 2661|      0|        }
 2662|      8|    }
 2663|       |
 2664|      2|    if (nkwargs > 0) {
  ------------------
  |  Branch (2664:9): [True: 0, False: 2]
  ------------------
 2665|       |        /* make sure there are no arguments given by name and position */
 2666|      0|        for (i = posonly; i < nargs; i++) {
  ------------------
  |  Branch (2666:27): [True: 0, False: 0]
  ------------------
 2667|      0|            PyObject *current_arg;
 2668|      0|            keyword = PyTuple_GET_ITEM(kwtuple, i - posonly);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2668:23): [True: 0, False: 0]
  ------------------
 2669|      0|            if (kwargs != NULL) {
  ------------------
  |  Branch (2669:17): [True: 0, False: 0]
  ------------------
 2670|      0|                if (PyDict_GetItemRef(kwargs, keyword, &current_arg) < 0) {
  ------------------
  |  Branch (2670:21): [True: 0, False: 0]
  ------------------
 2671|      0|                    return NULL;
 2672|      0|                }
 2673|      0|            }
 2674|      0|            else {
 2675|      0|                current_arg = find_keyword(kwnames, kwstack, keyword);
 2676|      0|            }
 2677|      0|            if (current_arg) {
  ------------------
  |  Branch (2677:17): [True: 0, False: 0]
  ------------------
 2678|      0|                Py_DECREF(current_arg);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2679|       |                /* arg present in tuple and in dict */
 2680|      0|                PyErr_Format(PyExc_TypeError,
 2681|      0|                             "argument for %.200s%s given by name ('%U') "
 2682|      0|                             "and position (%d)",
 2683|      0|                             (parser->fname == NULL) ? "function" : parser->fname,
  ------------------
  |  Branch (2683:30): [True: 0, False: 0]
  ------------------
 2684|      0|                             (parser->fname == NULL) ? "" : "()",
  ------------------
  |  Branch (2684:30): [True: 0, False: 0]
  ------------------
 2685|      0|                             keyword, i+1);
 2686|      0|                return NULL;
 2687|      0|            }
 2688|      0|        }
 2689|       |
 2690|      0|        error_unexpected_keyword_arg(kwargs, kwnames, kwtuple, parser->fname);
 2691|      0|        return NULL;
 2692|      0|    }
 2693|       |
 2694|      2|    return buf;
 2695|      2|}
_PyArg_CheckPositional:
 2838|    504|{
 2839|    504|    assert(min >= 0);
  ------------------
  |  Branch (2839:5): [True: 504, False: 0]
  ------------------
 2840|    504|    assert(min <= max);
  ------------------
  |  Branch (2840:5): [True: 504, False: 0]
  ------------------
 2841|       |
 2842|    504|    if (nargs < min) {
  ------------------
  |  Branch (2842:9): [True: 0, False: 504]
  ------------------
 2843|      0|        if (name != NULL)
  ------------------
  |  Branch (2843:13): [True: 0, False: 0]
  ------------------
 2844|      0|            PyErr_Format(
 2845|      0|                PyExc_TypeError,
 2846|      0|                "%.200s expected %s%zd argument%s, got %zd",
 2847|      0|                name, (min == max ? "" : "at least "), min, min == 1 ? "" : "s", nargs);
  ------------------
  |  Branch (2847:24): [True: 0, False: 0]
  |  Branch (2847:61): [True: 0, False: 0]
  ------------------
 2848|      0|        else
 2849|      0|            PyErr_Format(
 2850|      0|                PyExc_TypeError,
 2851|      0|                "unpacked tuple should have %s%zd element%s,"
 2852|      0|                " but has %zd",
 2853|      0|                (min == max ? "" : "at least "), min, min == 1 ? "" : "s", nargs);
  ------------------
  |  Branch (2853:18): [True: 0, False: 0]
  |  Branch (2853:55): [True: 0, False: 0]
  ------------------
 2854|      0|        return 0;
 2855|      0|    }
 2856|       |
 2857|    504|    if (nargs == 0) {
  ------------------
  |  Branch (2857:9): [True: 30, False: 474]
  ------------------
 2858|     30|        return 1;
 2859|     30|    }
 2860|       |
 2861|    474|    if (nargs > max) {
  ------------------
  |  Branch (2861:9): [True: 0, False: 474]
  ------------------
 2862|      0|        if (name != NULL)
  ------------------
  |  Branch (2862:13): [True: 0, False: 0]
  ------------------
 2863|      0|            PyErr_Format(
 2864|      0|                PyExc_TypeError,
 2865|      0|                "%.200s expected %s%zd argument%s, got %zd",
 2866|      0|                name, (min == max ? "" : "at most "), max, max == 1 ? "" : "s", nargs);
  ------------------
  |  Branch (2866:24): [True: 0, False: 0]
  |  Branch (2866:60): [True: 0, False: 0]
  ------------------
 2867|      0|        else
 2868|      0|            PyErr_Format(
 2869|      0|                PyExc_TypeError,
 2870|      0|                "unpacked tuple should have %s%zd element%s,"
 2871|      0|                " but has %zd",
 2872|      0|                (min == max ? "" : "at most "), max, max == 1 ? "" : "s", nargs);
  ------------------
  |  Branch (2872:18): [True: 0, False: 0]
  |  Branch (2872:54): [True: 0, False: 0]
  ------------------
 2873|      0|        return 0;
 2874|      0|    }
 2875|       |
 2876|    474|    return 1;
 2877|    474|}
PyArg_UnpackTuple:
 2899|    500|{
 2900|    500|    PyObject **stack;
 2901|    500|    Py_ssize_t nargs;
 2902|    500|    int retval;
 2903|    500|    va_list vargs;
 2904|       |
 2905|    500|    if (!PyTuple_Check(args)) {
  ------------------
  |  |   27|    500|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    500|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (2905:9): [True: 0, False: 500]
  ------------------
 2906|      0|        PyErr_SetString(PyExc_SystemError,
 2907|      0|            "PyArg_UnpackTuple() argument list is not a tuple");
 2908|      0|        return 0;
 2909|      0|    }
 2910|    500|    stack = _PyTuple_ITEMS(args);
  ------------------
  |  |   26|    500|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|  1.00k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 500, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2911|    500|    nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|    500|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    500|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    500|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2912|       |
 2913|    500|    va_start(vargs, max);
 2914|    500|    retval = unpack_stack(stack, nargs, name, min, max, vargs);
 2915|       |    va_end(vargs);
 2916|    500|    return retval;
 2917|    500|}
_PyArg_UnpackStack:
 2922|      4|{
 2923|      4|    int retval;
 2924|      4|    va_list vargs;
 2925|       |
 2926|      4|    va_start(vargs, max);
 2927|      4|    retval = unpack_stack(args, nargs, name, min, max, vargs);
 2928|       |    va_end(vargs);
 2929|      4|    return retval;
 2930|      4|}
_PyArg_NoPositional:
 2963|     48|{
 2964|     48|    if (args == NULL)
  ------------------
  |  Branch (2964:9): [True: 0, False: 48]
  ------------------
 2965|      0|        return 1;
 2966|     48|    if (!PyTuple_CheckExact(args)) {
  ------------------
  |  |   28|     48|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|     48|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2966:9): [True: 0, False: 48]
  ------------------
 2967|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2968|      0|        return 0;
 2969|      0|    }
 2970|     48|    if (PyTuple_GET_SIZE(args) == 0)
  ------------------
  |  |   27|     48|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2970:9): [True: 48, False: 0]
  ------------------
 2971|     48|        return 1;
 2972|       |
 2973|      0|    PyErr_Format(PyExc_TypeError, "%.200s() takes no positional arguments",
 2974|      0|                    funcname);
 2975|      0|    return 0;
 2976|     48|}
getargs.c:vgetargs1_impl:
  258|    220|{
  259|    220|    char msgbuf[256];
  260|    220|    int levels[32];
  261|    220|    const char *fname = NULL;
  262|    220|    const char *message = NULL;
  263|    220|    int min = -1;
  264|    220|    int max = 0;
  265|    220|    int level = 0;
  266|    220|    int endfmt = 0;
  267|    220|    const char *formatsave = format;
  268|    220|    Py_ssize_t i;
  269|    220|    const char *msg;
  270|    220|    int compat = flags & FLAG_COMPAT;
  ------------------
  |  |   24|    220|#define FLAG_COMPAT 1
  ------------------
  271|    220|    freelistentry_t static_entries[STATIC_FREELIST_ENTRIES];
  272|    220|    freelist_t freelist;
  273|       |
  274|    220|    assert(nargs == 0 || stack != NULL);
  ------------------
  |  Branch (274:5): [True: 0, False: 220]
  |  Branch (274:5): [True: 220, False: 0]
  ------------------
  275|       |
  276|    220|    freelist.entries = static_entries;
  277|    220|    freelist.first_available = 0;
  278|    220|    freelist.entries_malloced = 0;
  279|       |
  280|    220|    flags = flags & ~FLAG_COMPAT;
  ------------------
  |  |   24|    220|#define FLAG_COMPAT 1
  ------------------
  281|       |
  282|  1.18k|    while (endfmt == 0) {
  ------------------
  |  Branch (282:12): [True: 962, False: 220]
  ------------------
  283|    962|        int c = *format++;
  284|    962|        switch (c) {
  285|      0|        case '(':
  ------------------
  |  Branch (285:9): [True: 0, False: 962]
  ------------------
  286|      0|            if (level == 0)
  ------------------
  |  Branch (286:17): [True: 0, False: 0]
  ------------------
  287|      0|                max++;
  288|      0|            level++;
  289|      0|            if (level >= 30)
  ------------------
  |  Branch (289:17): [True: 0, False: 0]
  ------------------
  290|      0|                Py_FatalError("too many tuple nesting levels "
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  291|      0|                              "in argument format string");
  292|      0|            break;
  293|      0|        case ')':
  ------------------
  |  Branch (293:9): [True: 0, False: 962]
  ------------------
  294|      0|            if (level == 0)
  ------------------
  |  Branch (294:17): [True: 0, False: 0]
  ------------------
  295|      0|                Py_FatalError("excess ')' in getargs format");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  296|      0|            else
  297|      0|                level--;
  298|      0|            break;
  299|     46|        case '\0':
  ------------------
  |  Branch (299:9): [True: 46, False: 916]
  ------------------
  300|     46|            endfmt = 1;
  301|     46|            break;
  302|    174|        case ':':
  ------------------
  |  Branch (302:9): [True: 174, False: 788]
  ------------------
  303|    174|            fname = format;
  304|    174|            endfmt = 1;
  305|    174|            break;
  306|      0|        case ';':
  ------------------
  |  Branch (306:9): [True: 0, False: 962]
  ------------------
  307|      0|            message = format;
  308|      0|            endfmt = 1;
  309|      0|            break;
  310|      0|        case '|':
  ------------------
  |  Branch (310:9): [True: 0, False: 962]
  ------------------
  311|      0|            if (level == 0)
  ------------------
  |  Branch (311:17): [True: 0, False: 0]
  ------------------
  312|      0|                min = max;
  313|      0|            break;
  314|    742|        default:
  ------------------
  |  Branch (314:9): [True: 742, False: 220]
  ------------------
  315|    742|            if (level == 0) {
  ------------------
  |  Branch (315:17): [True: 742, False: 0]
  ------------------
  316|    742|                if (Py_ISALPHA(c))
  ------------------
  |  |   23|    742|#define Py_ISALPHA(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA)
  |  |  ------------------
  |  |  |  |  138|    742|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISALPHA(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA)
  |  |  ------------------
  |  |  |  |   10|    742|#define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  ------------------
  |  |  |  |  |  |    8|    742|#define PY_CTF_LOWER  0x01
  |  |  |  |  ------------------
  |  |  |  |               #define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  ------------------
  |  |  |  |  |  |    9|    742|#define PY_CTF_UPPER  0x02
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (23:24): [True: 568, False: 174]
  |  |  ------------------
  ------------------
  317|    568|                    if (c != 'e') /* skip encoded */
  ------------------
  |  Branch (317:25): [True: 568, False: 0]
  ------------------
  318|    568|                        max++;
  319|    742|            }
  320|    742|            break;
  321|    962|        }
  322|    962|    }
  323|       |
  324|    220|    if (level != 0)
  ------------------
  |  Branch (324:9): [True: 0, False: 220]
  ------------------
  325|      0|        Py_FatalError(/* '(' */ "missing ')' in getargs format");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  326|       |
  327|    220|    if (min < 0)
  ------------------
  |  Branch (327:9): [True: 220, False: 0]
  ------------------
  328|    220|        min = max;
  329|       |
  330|    220|    format = formatsave;
  331|       |
  332|    220|    if (max > STATIC_FREELIST_ENTRIES) {
  ------------------
  |  |   44|    220|#define STATIC_FREELIST_ENTRIES 8
  ------------------
  |  Branch (332:9): [True: 0, False: 220]
  ------------------
  333|      0|        freelist.entries = PyMem_NEW(freelistentry_t, max);
  ------------------
  |  |   82|      0|#define PyMem_NEW(type, n)        PyMem_New(type, (n))
  |  |  ------------------
  |  |  |  |   64|      0|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   65|      0|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  |  |  ------------------
  ------------------
  334|      0|        if (freelist.entries == NULL) {
  ------------------
  |  Branch (334:13): [True: 0, False: 0]
  ------------------
  335|      0|            PyErr_NoMemory();
  336|      0|            return 0;
  337|      0|        }
  338|      0|        freelist.entries_malloced = 1;
  339|      0|    }
  340|       |
  341|    220|    if (compat) {
  ------------------
  |  Branch (341:9): [True: 0, False: 220]
  ------------------
  342|      0|        if (max == 0) {
  ------------------
  |  Branch (342:13): [True: 0, False: 0]
  ------------------
  343|      0|            if (compat_args == NULL)
  ------------------
  |  Branch (343:17): [True: 0, False: 0]
  ------------------
  344|      0|                return 1;
  345|      0|            PyErr_Format(PyExc_TypeError,
  346|      0|                         "%.200s%s takes no arguments",
  347|      0|                         fname==NULL ? "function" : fname,
  ------------------
  |  Branch (347:26): [True: 0, False: 0]
  ------------------
  348|      0|                         fname==NULL ? "" : "()");
  ------------------
  |  Branch (348:26): [True: 0, False: 0]
  ------------------
  349|      0|            return cleanreturn(0, &freelist);
  350|      0|        }
  351|      0|        else if (min == 1 && max == 1) {
  ------------------
  |  Branch (351:18): [True: 0, False: 0]
  |  Branch (351:30): [True: 0, False: 0]
  ------------------
  352|      0|            if (compat_args == NULL) {
  ------------------
  |  Branch (352:17): [True: 0, False: 0]
  ------------------
  353|      0|                PyErr_Format(PyExc_TypeError,
  354|      0|                             "%.200s%s takes at least one argument",
  355|      0|                             fname==NULL ? "function" : fname,
  ------------------
  |  Branch (355:30): [True: 0, False: 0]
  ------------------
  356|      0|                             fname==NULL ? "" : "()");
  ------------------
  |  Branch (356:30): [True: 0, False: 0]
  ------------------
  357|      0|                return cleanreturn(0, &freelist);
  358|      0|            }
  359|      0|            msg = convertitem(compat_args, &format, p_va, flags, levels,
  360|      0|                              msgbuf, sizeof(msgbuf), &freelist);
  361|      0|            if (msg == NULL)
  ------------------
  |  Branch (361:17): [True: 0, False: 0]
  ------------------
  362|      0|                return cleanreturn(1, &freelist);
  363|      0|            seterror(levels[0], msg, levels+1, fname, message);
  364|      0|            return cleanreturn(0, &freelist);
  365|      0|        }
  366|      0|        else {
  367|      0|            PyErr_SetString(PyExc_SystemError,
  368|      0|                "old style getargs format uses new features");
  369|      0|            return cleanreturn(0, &freelist);
  370|      0|        }
  371|      0|    }
  372|       |
  373|    220|    if (nargs < min || max < nargs) {
  ------------------
  |  Branch (373:9): [True: 0, False: 220]
  |  Branch (373:24): [True: 0, False: 220]
  ------------------
  374|      0|        if (message == NULL)
  ------------------
  |  Branch (374:13): [True: 0, False: 0]
  ------------------
  375|      0|            PyErr_Format(PyExc_TypeError,
  376|      0|                         "%.150s%s takes %s %d argument%s (%zd given)",
  377|      0|                         fname==NULL ? "function" : fname,
  ------------------
  |  Branch (377:26): [True: 0, False: 0]
  ------------------
  378|      0|                         fname==NULL ? "" : "()",
  ------------------
  |  Branch (378:26): [True: 0, False: 0]
  ------------------
  379|      0|                         min==max ? "exactly"
  ------------------
  |  Branch (379:26): [True: 0, False: 0]
  ------------------
  380|      0|                         : nargs < min ? "at least" : "at most",
  ------------------
  |  Branch (380:28): [True: 0, False: 0]
  ------------------
  381|      0|                         nargs < min ? min : max,
  ------------------
  |  Branch (381:26): [True: 0, False: 0]
  ------------------
  382|      0|                         (nargs < min ? min : max) == 1 ? "" : "s",
  ------------------
  |  Branch (382:26): [True: 0, False: 0]
  |  Branch (382:27): [True: 0, False: 0]
  ------------------
  383|      0|                         nargs);
  384|      0|        else
  385|      0|            PyErr_SetString(PyExc_TypeError, message);
  386|      0|        return cleanreturn(0, &freelist);
  387|      0|    }
  388|       |
  389|    788|    for (i = 0; i < nargs; i++) {
  ------------------
  |  Branch (389:17): [True: 568, False: 220]
  ------------------
  390|    568|        if (*format == '|')
  ------------------
  |  Branch (390:13): [True: 0, False: 568]
  ------------------
  391|      0|            format++;
  392|    568|        msg = convertitem(stack[i], &format, p_va,
  393|    568|                          flags, levels, msgbuf,
  394|    568|                          sizeof(msgbuf), &freelist);
  395|    568|        if (msg) {
  ------------------
  |  Branch (395:13): [True: 0, False: 568]
  ------------------
  396|      0|            seterror(i+1, msg, levels, fname, message);
  397|      0|            return cleanreturn(0, &freelist);
  398|      0|        }
  399|    568|    }
  400|       |
  401|    220|    if (*format != '\0' && !Py_ISALPHA(*format) &&
  ------------------
  |  |   23|    394|#define Py_ISALPHA(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA)
  |  |  ------------------
  |  |  |  |  138|    174|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  |  |               #define Py_ISALPHA(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA)
  |  |  ------------------
  |  |  |  |   10|    174|#define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  ------------------
  |  |  |  |  |  |    8|    174|#define PY_CTF_LOWER  0x01
  |  |  |  |  ------------------
  |  |  |  |               #define PY_CTF_ALPHA  (PY_CTF_LOWER|PY_CTF_UPPER)
  |  |  |  |  ------------------
  |  |  |  |  |  |    9|    174|#define PY_CTF_UPPER  0x02
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (401:9): [True: 174, False: 46]
  |  Branch (401:28): [True: 174, False: 0]
  ------------------
  402|    174|        *format != '(' &&
  ------------------
  |  Branch (402:9): [True: 174, False: 0]
  ------------------
  403|    174|        *format != '|' && *format != ':' && *format != ';') {
  ------------------
  |  Branch (403:9): [True: 174, False: 0]
  |  Branch (403:27): [True: 0, False: 174]
  |  Branch (403:45): [True: 0, False: 0]
  ------------------
  404|      0|        PyErr_Format(PyExc_SystemError,
  405|      0|                     "bad format string: %.200s", formatsave);
  406|      0|        return cleanreturn(0, &freelist);
  407|      0|    }
  408|       |
  409|    220|    return cleanreturn(1, &freelist);
  410|    220|}
getargs.c:cleanreturn:
  237|    298|{
  238|    298|    int index;
  239|       |
  240|    298|    if (retval == 0) {
  ------------------
  |  Branch (240:9): [True: 0, False: 298]
  ------------------
  241|       |      /* A failure occurred, therefore execute all of the cleanup
  242|       |         functions.
  243|       |      */
  244|      0|      for (index = 0; index < freelist->first_available; ++index) {
  ------------------
  |  Branch (244:23): [True: 0, False: 0]
  ------------------
  245|      0|          freelist->entries[index].destructor(NULL,
  246|      0|                                              freelist->entries[index].item);
  247|      0|      }
  248|      0|    }
  249|    298|    if (freelist->entries_malloced)
  ------------------
  |  Branch (249:9): [True: 0, False: 298]
  ------------------
  250|      0|        PyMem_Free(freelist->entries);
  251|    298|    return retval;
  252|    298|}
getargs.c:convertitem:
  634|    582|{
  635|    582|    const char *msg;
  636|    582|    const char *format = *p_format;
  637|       |
  638|    582|    if (*format == '(' /* ')' */) {
  ------------------
  |  Branch (638:9): [True: 0, False: 582]
  ------------------
  639|      0|        format++;
  640|      0|        msg = converttuple(arg, &format, p_va, flags, levels, msgbuf,
  641|      0|                           bufsize, freelist);
  642|      0|        if (msg == NULL)
  ------------------
  |  Branch (642:13): [True: 0, False: 0]
  ------------------
  643|      0|            format++;
  644|      0|    }
  645|    582|    else {
  646|    582|        msg = convertsimple(arg, &format, p_va, flags,
  647|    582|                            msgbuf, bufsize, freelist);
  648|    582|        if (msg != NULL)
  ------------------
  |  Branch (648:13): [True: 0, False: 582]
  ------------------
  649|      0|            levels[0] = 0;
  650|    582|    }
  651|    582|    if (msg == NULL)
  ------------------
  |  Branch (651:9): [True: 582, False: 0]
  ------------------
  652|    582|        *p_format = format;
  653|    582|    return msg;
  654|    582|}
getargs.c:convertsimple:
  714|    582|{
  715|    582|#define RETURN_ERR_OCCURRED return msgbuf
  716|       |
  717|    582|    const char *format = *p_format;
  718|    582|    char c = *format++;
  719|    582|    const char *sarg;
  720|       |
  721|    582|    switch (c) {
  722|       |
  723|      0|    case 'b': { /* unsigned byte -- very short int */
  ------------------
  |  Branch (723:5): [True: 0, False: 582]
  ------------------
  724|      0|        unsigned char *p = va_arg(*p_va, unsigned char *);
  725|      0|        long ival = PyLong_AsLong(arg);
  726|      0|        if (ival == -1 && PyErr_Occurred())
  ------------------
  |  Branch (726:13): [True: 0, False: 0]
  |  Branch (726:27): [True: 0, False: 0]
  ------------------
  727|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  728|      0|        else if (ival < 0) {
  ------------------
  |  Branch (728:18): [True: 0, False: 0]
  ------------------
  729|      0|            PyErr_SetString(PyExc_OverflowError,
  730|      0|                            "unsigned byte integer is less than minimum");
  731|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  732|      0|        }
  733|      0|        else if (ival > UCHAR_MAX) {
  ------------------
  |  Branch (733:18): [True: 0, False: 0]
  ------------------
  734|      0|            PyErr_SetString(PyExc_OverflowError,
  735|      0|                            "unsigned byte integer is greater than maximum");
  736|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  737|      0|        }
  738|      0|        else
  739|      0|            *p = (unsigned char) ival;
  740|      0|        break;
  741|      0|    }
  742|       |
  743|      0|    case 'B': {/* byte sized bitfield - both signed and unsigned
  ------------------
  |  Branch (743:5): [True: 0, False: 582]
  ------------------
  744|       |                  values allowed */
  745|      0|        unsigned char *p = va_arg(*p_va, unsigned char *);
  746|      0|        Py_ssize_t bytes = PyLong_AsNativeBytes(arg, p, sizeof(unsigned char),
  747|      0|                Py_ASNATIVEBYTES_NATIVE_ENDIAN |
  ------------------
  |  |   47|      0|#define Py_ASNATIVEBYTES_NATIVE_ENDIAN 3
  ------------------
  748|      0|                Py_ASNATIVEBYTES_ALLOW_INDEX |
  ------------------
  |  |   50|      0|#define Py_ASNATIVEBYTES_ALLOW_INDEX 16
  ------------------
  749|      0|                Py_ASNATIVEBYTES_UNSIGNED_BUFFER);
  ------------------
  |  |   48|      0|#define Py_ASNATIVEBYTES_UNSIGNED_BUFFER 4
  ------------------
  750|      0|        if (bytes < 0) {
  ------------------
  |  Branch (750:13): [True: 0, False: 0]
  ------------------
  751|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  752|      0|        }
  753|      0|        if ((size_t)bytes > sizeof(unsigned char)) {
  ------------------
  |  Branch (753:13): [True: 0, False: 0]
  ------------------
  754|      0|            if (PyErr_WarnEx(PyExc_DeprecationWarning,
  ------------------
  |  Branch (754:17): [True: 0, False: 0]
  ------------------
  755|      0|                "integer value out of range", 1) < 0)
  756|      0|            {
  757|      0|                RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  758|      0|            }
  759|      0|        }
  760|      0|        break;
  761|      0|    }
  762|       |
  763|      0|    case 'h': {/* signed short int */
  ------------------
  |  Branch (763:5): [True: 0, False: 582]
  ------------------
  764|      0|        short *p = va_arg(*p_va, short *);
  765|      0|        long ival = PyLong_AsLong(arg);
  766|      0|        if (ival == -1 && PyErr_Occurred())
  ------------------
  |  Branch (766:13): [True: 0, False: 0]
  |  Branch (766:27): [True: 0, False: 0]
  ------------------
  767|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  768|      0|        else if (ival < SHRT_MIN) {
  ------------------
  |  Branch (768:18): [True: 0, False: 0]
  ------------------
  769|      0|            PyErr_SetString(PyExc_OverflowError,
  770|      0|                            "signed short integer is less than minimum");
  771|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  772|      0|        }
  773|      0|        else if (ival > SHRT_MAX) {
  ------------------
  |  Branch (773:18): [True: 0, False: 0]
  ------------------
  774|      0|            PyErr_SetString(PyExc_OverflowError,
  775|      0|                            "signed short integer is greater than maximum");
  776|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  777|      0|        }
  778|      0|        else
  779|      0|            *p = (short) ival;
  780|      0|        break;
  781|      0|    }
  782|       |
  783|      0|    case 'H': { /* short int sized bitfield, both signed and
  ------------------
  |  Branch (783:5): [True: 0, False: 582]
  ------------------
  784|       |                   unsigned allowed */
  785|      0|        unsigned short *p = va_arg(*p_va, unsigned short *);
  786|      0|        Py_ssize_t bytes = PyLong_AsNativeBytes(arg, p, sizeof(unsigned short),
  787|      0|                Py_ASNATIVEBYTES_NATIVE_ENDIAN |
  ------------------
  |  |   47|      0|#define Py_ASNATIVEBYTES_NATIVE_ENDIAN 3
  ------------------
  788|      0|                Py_ASNATIVEBYTES_ALLOW_INDEX |
  ------------------
  |  |   50|      0|#define Py_ASNATIVEBYTES_ALLOW_INDEX 16
  ------------------
  789|      0|                Py_ASNATIVEBYTES_UNSIGNED_BUFFER);
  ------------------
  |  |   48|      0|#define Py_ASNATIVEBYTES_UNSIGNED_BUFFER 4
  ------------------
  790|      0|        if (bytes < 0) {
  ------------------
  |  Branch (790:13): [True: 0, False: 0]
  ------------------
  791|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  792|      0|        }
  793|      0|        if ((size_t)bytes > sizeof(unsigned short)) {
  ------------------
  |  Branch (793:13): [True: 0, False: 0]
  ------------------
  794|      0|            if (PyErr_WarnEx(PyExc_DeprecationWarning,
  ------------------
  |  Branch (794:17): [True: 0, False: 0]
  ------------------
  795|      0|                "integer value out of range", 1) < 0)
  796|      0|            {
  797|      0|                RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  798|      0|            }
  799|      0|        }
  800|      0|        break;
  801|      0|    }
  802|       |
  803|      0|    case 'i': {/* signed int */
  ------------------
  |  Branch (803:5): [True: 0, False: 582]
  ------------------
  804|      0|        int *p = va_arg(*p_va, int *);
  805|      0|        long ival = PyLong_AsLong(arg);
  806|      0|        if (ival == -1 && PyErr_Occurred())
  ------------------
  |  Branch (806:13): [True: 0, False: 0]
  |  Branch (806:27): [True: 0, False: 0]
  ------------------
  807|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  808|      0|        else if (ival > INT_MAX) {
  ------------------
  |  Branch (808:18): [True: 0, False: 0]
  ------------------
  809|      0|            PyErr_SetString(PyExc_OverflowError,
  810|      0|                            "signed integer is greater than maximum");
  811|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  812|      0|        }
  813|      0|        else if (ival < INT_MIN) {
  ------------------
  |  Branch (813:18): [True: 0, False: 0]
  ------------------
  814|      0|            PyErr_SetString(PyExc_OverflowError,
  815|      0|                            "signed integer is less than minimum");
  816|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  817|      0|        }
  818|      0|        else
  819|      0|            *p = ival;
  820|      0|        break;
  821|      0|    }
  822|       |
  823|      0|    case 'I': { /* int sized bitfield, both signed and
  ------------------
  |  Branch (823:5): [True: 0, False: 582]
  ------------------
  824|       |                   unsigned allowed */
  825|      0|        unsigned int *p = va_arg(*p_va, unsigned int *);
  826|      0|        Py_ssize_t bytes = PyLong_AsNativeBytes(arg, p, sizeof(unsigned int),
  827|      0|                Py_ASNATIVEBYTES_NATIVE_ENDIAN |
  ------------------
  |  |   47|      0|#define Py_ASNATIVEBYTES_NATIVE_ENDIAN 3
  ------------------
  828|      0|                Py_ASNATIVEBYTES_ALLOW_INDEX |
  ------------------
  |  |   50|      0|#define Py_ASNATIVEBYTES_ALLOW_INDEX 16
  ------------------
  829|      0|                Py_ASNATIVEBYTES_UNSIGNED_BUFFER);
  ------------------
  |  |   48|      0|#define Py_ASNATIVEBYTES_UNSIGNED_BUFFER 4
  ------------------
  830|      0|        if (bytes < 0) {
  ------------------
  |  Branch (830:13): [True: 0, False: 0]
  ------------------
  831|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  832|      0|        }
  833|      0|        if ((size_t)bytes > sizeof(unsigned int)) {
  ------------------
  |  Branch (833:13): [True: 0, False: 0]
  ------------------
  834|      0|            if (PyErr_WarnEx(PyExc_DeprecationWarning,
  ------------------
  |  Branch (834:17): [True: 0, False: 0]
  ------------------
  835|      0|                "integer value out of range", 1) < 0)
  836|      0|            {
  837|      0|                RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  838|      0|            }
  839|      0|        }
  840|      0|        break;
  841|      0|    }
  842|       |
  843|      0|    case 'n': /* Py_ssize_t */
  ------------------
  |  Branch (843:5): [True: 0, False: 582]
  ------------------
  844|      0|    {
  845|      0|        PyObject *iobj;
  846|      0|        Py_ssize_t *p = va_arg(*p_va, Py_ssize_t *);
  847|      0|        Py_ssize_t ival = -1;
  848|      0|        iobj = _PyNumber_Index(arg);
  849|      0|        if (iobj != NULL) {
  ------------------
  |  Branch (849:13): [True: 0, False: 0]
  ------------------
  850|      0|            ival = PyLong_AsSsize_t(iobj);
  851|      0|            Py_DECREF(iobj);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  852|      0|        }
  853|      0|        if (ival == -1 && PyErr_Occurred())
  ------------------
  |  Branch (853:13): [True: 0, False: 0]
  |  Branch (853:27): [True: 0, False: 0]
  ------------------
  854|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  855|      0|        *p = ival;
  856|      0|        break;
  857|      0|    }
  858|      0|    case 'l': {/* long int */
  ------------------
  |  Branch (858:5): [True: 0, False: 582]
  ------------------
  859|      0|        long *p = va_arg(*p_va, long *);
  860|      0|        long ival = PyLong_AsLong(arg);
  861|      0|        if (ival == -1 && PyErr_Occurred())
  ------------------
  |  Branch (861:13): [True: 0, False: 0]
  |  Branch (861:27): [True: 0, False: 0]
  ------------------
  862|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  863|      0|        else
  864|      0|            *p = ival;
  865|      0|        break;
  866|      0|    }
  867|       |
  868|      0|    case 'k': { /* long sized bitfield */
  ------------------
  |  Branch (868:5): [True: 0, False: 582]
  ------------------
  869|      0|        unsigned long *p = va_arg(*p_va, unsigned long *);
  870|      0|        if (!PyIndex_Check(arg)) {
  ------------------
  |  Branch (870:13): [True: 0, False: 0]
  ------------------
  871|      0|            return converterr("int", arg, msgbuf, bufsize);
  872|      0|        }
  873|      0|        Py_ssize_t bytes = PyLong_AsNativeBytes(arg, p, sizeof(unsigned long),
  874|      0|                Py_ASNATIVEBYTES_NATIVE_ENDIAN |
  ------------------
  |  |   47|      0|#define Py_ASNATIVEBYTES_NATIVE_ENDIAN 3
  ------------------
  875|      0|                Py_ASNATIVEBYTES_ALLOW_INDEX |
  ------------------
  |  |   50|      0|#define Py_ASNATIVEBYTES_ALLOW_INDEX 16
  ------------------
  876|      0|                Py_ASNATIVEBYTES_UNSIGNED_BUFFER);
  ------------------
  |  |   48|      0|#define Py_ASNATIVEBYTES_UNSIGNED_BUFFER 4
  ------------------
  877|      0|        if (bytes < 0) {
  ------------------
  |  Branch (877:13): [True: 0, False: 0]
  ------------------
  878|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  879|      0|        }
  880|      0|        if ((size_t)bytes > sizeof(unsigned long)) {
  ------------------
  |  Branch (880:13): [True: 0, False: 0]
  ------------------
  881|      0|            if (PyErr_WarnEx(PyExc_DeprecationWarning,
  ------------------
  |  Branch (881:17): [True: 0, False: 0]
  ------------------
  882|      0|                "integer value out of range", 1) < 0)
  883|      0|            {
  884|      0|                RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  885|      0|            }
  886|      0|        }
  887|      0|        break;
  888|      0|    }
  889|       |
  890|      0|    case 'L': {/* long long */
  ------------------
  |  Branch (890:5): [True: 0, False: 582]
  ------------------
  891|      0|        long long *p = va_arg( *p_va, long long * );
  892|      0|        long long ival = PyLong_AsLongLong(arg);
  893|      0|        if (ival == (long long)-1 && PyErr_Occurred())
  ------------------
  |  Branch (893:13): [True: 0, False: 0]
  |  Branch (893:38): [True: 0, False: 0]
  ------------------
  894|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  895|      0|        else
  896|      0|            *p = ival;
  897|      0|        break;
  898|      0|    }
  899|       |
  900|      0|    case 'K': { /* long long sized bitfield */
  ------------------
  |  Branch (900:5): [True: 0, False: 582]
  ------------------
  901|      0|        unsigned long long *p = va_arg(*p_va, unsigned long long *);
  902|      0|        if (!PyIndex_Check(arg)) {
  ------------------
  |  Branch (902:13): [True: 0, False: 0]
  ------------------
  903|      0|            return converterr("int", arg, msgbuf, bufsize);
  904|      0|        }
  905|      0|        Py_ssize_t bytes = PyLong_AsNativeBytes(arg, p, sizeof(unsigned long long),
  906|      0|                Py_ASNATIVEBYTES_NATIVE_ENDIAN |
  ------------------
  |  |   47|      0|#define Py_ASNATIVEBYTES_NATIVE_ENDIAN 3
  ------------------
  907|      0|                Py_ASNATIVEBYTES_ALLOW_INDEX |
  ------------------
  |  |   50|      0|#define Py_ASNATIVEBYTES_ALLOW_INDEX 16
  ------------------
  908|      0|                Py_ASNATIVEBYTES_UNSIGNED_BUFFER);
  ------------------
  |  |   48|      0|#define Py_ASNATIVEBYTES_UNSIGNED_BUFFER 4
  ------------------
  909|      0|        if (bytes < 0) {
  ------------------
  |  Branch (909:13): [True: 0, False: 0]
  ------------------
  910|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  911|      0|        }
  912|      0|        if ((size_t)bytes > sizeof(unsigned long long)) {
  ------------------
  |  Branch (912:13): [True: 0, False: 0]
  ------------------
  913|      0|            if (PyErr_WarnEx(PyExc_DeprecationWarning,
  ------------------
  |  Branch (913:17): [True: 0, False: 0]
  ------------------
  914|      0|                "integer value out of range", 1) < 0)
  915|      0|            {
  916|      0|                RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  917|      0|            }
  918|      0|        }
  919|      0|        break;
  920|      0|    }
  921|       |
  922|      0|    case 'f': {/* float */
  ------------------
  |  Branch (922:5): [True: 0, False: 582]
  ------------------
  923|      0|        float *p = va_arg(*p_va, float *);
  924|      0|        double dval = PyFloat_AsDouble(arg);
  925|      0|        if (dval == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (925:13): [True: 0, False: 0]
  |  Branch (925:29): [True: 0, False: 0]
  ------------------
  926|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  927|      0|        else
  928|      0|            *p = (float) dval;
  929|      0|        break;
  930|      0|    }
  931|       |
  932|      0|    case 'd': {/* double */
  ------------------
  |  Branch (932:5): [True: 0, False: 582]
  ------------------
  933|      0|        double *p = va_arg(*p_va, double *);
  934|      0|        double dval = PyFloat_AsDouble(arg);
  935|      0|        if (dval == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (935:13): [True: 0, False: 0]
  |  Branch (935:29): [True: 0, False: 0]
  ------------------
  936|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  937|      0|        else
  938|      0|            *p = dval;
  939|      0|        break;
  940|      0|    }
  941|       |
  942|      0|    case 'D': {/* complex double */
  ------------------
  |  Branch (942:5): [True: 0, False: 582]
  ------------------
  943|      0|        Py_complex *p = va_arg(*p_va, Py_complex *);
  944|      0|        Py_complex cval;
  945|      0|        cval = PyComplex_AsCComplex(arg);
  946|      0|        if (PyErr_Occurred())
  ------------------
  |  Branch (946:13): [True: 0, False: 0]
  ------------------
  947|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
  948|      0|        else
  949|      0|            *p = cval;
  950|      0|        break;
  951|      0|    }
  952|       |
  953|      0|    case 'c': {/* char */
  ------------------
  |  Branch (953:5): [True: 0, False: 582]
  ------------------
  954|      0|        char *p = va_arg(*p_va, char *);
  955|      0|        if (PyBytes_Check(arg)) {
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  956|      0|            if (PyBytes_GET_SIZE(arg) != 1) {
  ------------------
  |  |   33|      0|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (956:17): [True: 0, False: 0]
  ------------------
  957|      0|                return convertcharerr("a byte string of length 1",
  958|      0|                                      "a bytes object", PyBytes_GET_SIZE(arg),
  ------------------
  |  |   33|      0|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  959|      0|                                      msgbuf, bufsize);
  960|      0|            }
  961|      0|            *p = PyBytes_AS_STRING(arg)[0];
  ------------------
  |  |   27|      0|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  962|      0|        }
  963|      0|        else if (PyByteArray_Check(arg)) {
  ------------------
  |  |   24|      0|#define PyByteArray_Check(self) PyObject_TypeCheck((self), &PyByteArray_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  964|      0|            if (PyByteArray_GET_SIZE(arg) != 1) {
  ------------------
  |  |   38|      0|#define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (964:17): [True: 0, False: 0]
  ------------------
  965|      0|                return convertcharerr("a byte string of length 1",
  966|      0|                                      "a bytearray object", PyByteArray_GET_SIZE(arg),
  ------------------
  |  |   38|      0|#define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  967|      0|                                      msgbuf, bufsize);
  968|      0|            }
  969|      0|            *p = PyByteArray_AS_STRING(arg)[0];
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  970|      0|        }
  971|      0|        else
  972|      0|            return converterr("a byte string of length 1", arg, msgbuf, bufsize);
  973|      0|        break;
  974|      0|    }
  975|       |
  976|      0|    case 'C': {/* unicode char */
  ------------------
  |  Branch (976:5): [True: 0, False: 582]
  ------------------
  977|      0|        int *p = va_arg(*p_va, int *);
  978|      0|        int kind;
  979|      0|        const void *data;
  980|       |
  981|      0|        if (!PyUnicode_Check(arg))
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (981:13): [True: 0, False: 0]
  ------------------
  982|      0|            return converterr("a unicode character", arg, msgbuf, bufsize);
  983|       |
  984|      0|        if (PyUnicode_GET_LENGTH(arg) != 1) {
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (984:13): [True: 0, False: 0]
  ------------------
  985|      0|            return convertcharerr("a unicode character",
  986|      0|                                  "a string", PyUnicode_GET_LENGTH(arg),
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  987|      0|                                  msgbuf, bufsize);
  988|      0|        }
  989|       |
  990|      0|        kind = PyUnicode_KIND(arg);
  ------------------
  |  |  258|      0|#define PyUnicode_KIND(op) _Py_RVALUE(_PyASCIIObject_CAST(op)->state.kind)
  |  |  ------------------
  |  |  |  |  277|      0|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  991|      0|        data = PyUnicode_DATA(arg);
  ------------------
  |  |  284|      0|#define PyUnicode_DATA(op) _PyUnicode_DATA(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  992|      0|        *p = PyUnicode_READ(kind, data, 0);
  ------------------
  |  |  354|      0|    PyUnicode_READ(_Py_STATIC_CAST(int, kind), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  355|      0|                   _Py_STATIC_CAST(const void*, data), \
  |  |  ------------------
  |  |  |  |   34|      0|#  define _Py_STATIC_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  |  |  356|      0|                   (index))
  ------------------
  993|      0|        break;
  994|      0|    }
  995|       |
  996|      0|    case 'p': {/* boolean *p*redicate */
  ------------------
  |  Branch (996:5): [True: 0, False: 582]
  ------------------
  997|      0|        int *p = va_arg(*p_va, int *);
  998|      0|        int val = PyObject_IsTrue(arg);
  999|      0|        if (val > 0)
  ------------------
  |  Branch (999:13): [True: 0, False: 0]
  ------------------
 1000|      0|            *p = 1;
 1001|      0|        else if (val == 0)
  ------------------
  |  Branch (1001:18): [True: 0, False: 0]
  ------------------
 1002|      0|            *p = 0;
 1003|      0|        else
 1004|      0|            RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
 1005|      0|        break;
 1006|      0|    }
 1007|       |
 1008|       |    /* XXX WAAAAH!  's', 'y', 'z', 'u', 'Z', 'e', 'w' codes all
 1009|       |       need to be cleaned up! */
 1010|       |
 1011|      0|    case 'y': {/* any bytes-like object */
  ------------------
  |  Branch (1011:5): [True: 0, False: 582]
  ------------------
 1012|      0|        void **p = (void **)va_arg(*p_va, char **);
 1013|      0|        const char *buf;
 1014|      0|        Py_ssize_t count;
 1015|      0|        if (*format == '*') {
  ------------------
  |  Branch (1015:13): [True: 0, False: 0]
  ------------------
 1016|      0|            if (getbuffer(arg, (Py_buffer*)p, &buf) < 0)
  ------------------
  |  Branch (1016:17): [True: 0, False: 0]
  ------------------
 1017|      0|                return converterr(buf, arg, msgbuf, bufsize);
 1018|      0|            format++;
 1019|      0|            if (addcleanup(p, freelist, cleanup_buffer)) {
  ------------------
  |  Branch (1019:17): [True: 0, False: 0]
  ------------------
 1020|      0|                return converterr(
 1021|      0|                    "(cleanup problem)",
 1022|      0|                    arg, msgbuf, bufsize);
 1023|      0|            }
 1024|      0|            break;
 1025|      0|        }
 1026|      0|        count = convertbuffer(arg, (const void **)p, &buf);
 1027|      0|        if (count < 0)
  ------------------
  |  Branch (1027:13): [True: 0, False: 0]
  ------------------
 1028|      0|            return converterr(buf, arg, msgbuf, bufsize);
 1029|      0|        if (*format == '#') {
  ------------------
  |  Branch (1029:13): [True: 0, False: 0]
  ------------------
 1030|      0|            Py_ssize_t *psize = va_arg(*p_va, Py_ssize_t*);
 1031|      0|            *psize = count;
 1032|      0|            format++;
 1033|      0|        } else {
 1034|      0|            if (strlen(*p) != (size_t)count) {
  ------------------
  |  Branch (1034:17): [True: 0, False: 0]
  ------------------
 1035|      0|                PyErr_SetString(PyExc_ValueError, "embedded null byte");
 1036|      0|                RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
 1037|      0|            }
 1038|      0|        }
 1039|      0|        break;
 1040|      0|    }
 1041|       |
 1042|      0|    case 's': /* text string or bytes-like object */
  ------------------
  |  Branch (1042:5): [True: 0, False: 582]
  ------------------
 1043|      0|    case 'z': /* text string, bytes-like object or None */
  ------------------
  |  Branch (1043:5): [True: 0, False: 582]
  ------------------
 1044|      0|    {
 1045|      0|        if (*format == '*') {
  ------------------
  |  Branch (1045:13): [True: 0, False: 0]
  ------------------
 1046|       |            /* "s*" or "z*" */
 1047|      0|            Py_buffer *p = (Py_buffer *)va_arg(*p_va, Py_buffer *);
 1048|       |
 1049|      0|            if (c == 'z' && arg == Py_None)
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1049:17): [True: 0, False: 0]
  |  Branch (1049:29): [True: 0, False: 0]
  ------------------
 1050|      0|                PyBuffer_FillInfo(p, NULL, NULL, 0, 1, 0);
 1051|      0|            else if (PyUnicode_Check(arg)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1052|      0|                Py_ssize_t len;
 1053|      0|                sarg = PyUnicode_AsUTF8AndSize(arg, &len);
 1054|      0|                if (sarg == NULL)
  ------------------
  |  Branch (1054:21): [True: 0, False: 0]
  ------------------
 1055|      0|                    return converterr(CONV_UNICODE,
  ------------------
  |  |  700|      0|#define CONV_UNICODE "(unicode conversion error)"
  ------------------
 1056|      0|                                      arg, msgbuf, bufsize);
 1057|      0|                PyBuffer_FillInfo(p, arg, (void *)sarg, len, 1, 0);
 1058|      0|            }
 1059|      0|            else { /* any bytes-like object */
 1060|      0|                const char *buf;
 1061|      0|                if (getbuffer(arg, p, &buf) < 0)
  ------------------
  |  Branch (1061:21): [True: 0, False: 0]
  ------------------
 1062|      0|                    return converterr(buf, arg, msgbuf, bufsize);
 1063|      0|            }
 1064|      0|            if (addcleanup(p, freelist, cleanup_buffer)) {
  ------------------
  |  Branch (1064:17): [True: 0, False: 0]
  ------------------
 1065|      0|                return converterr(
 1066|      0|                    "(cleanup problem)",
 1067|      0|                    arg, msgbuf, bufsize);
 1068|      0|            }
 1069|      0|            format++;
 1070|      0|        } else if (*format == '#') { /* a string or read-only bytes-like object */
  ------------------
  |  Branch (1070:20): [True: 0, False: 0]
  ------------------
 1071|       |            /* "s#" or "z#" */
 1072|      0|            const void **p = (const void **)va_arg(*p_va, const char **);
 1073|      0|            Py_ssize_t *psize = va_arg(*p_va, Py_ssize_t*);
 1074|       |
 1075|      0|            if (c == 'z' && arg == Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1075:17): [True: 0, False: 0]
  |  Branch (1075:29): [True: 0, False: 0]
  ------------------
 1076|      0|                *p = NULL;
 1077|      0|                *psize = 0;
 1078|      0|            }
 1079|      0|            else if (PyUnicode_Check(arg)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1080|      0|                Py_ssize_t len;
 1081|      0|                sarg = PyUnicode_AsUTF8AndSize(arg, &len);
 1082|      0|                if (sarg == NULL)
  ------------------
  |  Branch (1082:21): [True: 0, False: 0]
  ------------------
 1083|      0|                    return converterr(CONV_UNICODE,
  ------------------
  |  |  700|      0|#define CONV_UNICODE "(unicode conversion error)"
  ------------------
 1084|      0|                                      arg, msgbuf, bufsize);
 1085|      0|                *p = sarg;
 1086|      0|                *psize = len;
 1087|      0|            }
 1088|      0|            else { /* read-only bytes-like object */
 1089|       |                /* XXX Really? */
 1090|      0|                const char *buf;
 1091|      0|                Py_ssize_t count = convertbuffer(arg, p, &buf);
 1092|      0|                if (count < 0)
  ------------------
  |  Branch (1092:21): [True: 0, False: 0]
  ------------------
 1093|      0|                    return converterr(buf, arg, msgbuf, bufsize);
 1094|      0|                *psize = count;
 1095|      0|            }
 1096|      0|            format++;
 1097|      0|        } else {
 1098|       |            /* "s" or "z" */
 1099|      0|            const char **p = va_arg(*p_va, const char **);
 1100|      0|            Py_ssize_t len;
 1101|      0|            sarg = NULL;
 1102|       |
 1103|      0|            if (c == 'z' && arg == Py_None)
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1103:17): [True: 0, False: 0]
  |  Branch (1103:29): [True: 0, False: 0]
  ------------------
 1104|      0|                *p = NULL;
 1105|      0|            else if (PyUnicode_Check(arg)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1106|      0|                sarg = PyUnicode_AsUTF8AndSize(arg, &len);
 1107|      0|                if (sarg == NULL)
  ------------------
  |  Branch (1107:21): [True: 0, False: 0]
  ------------------
 1108|      0|                    return converterr(CONV_UNICODE,
  ------------------
  |  |  700|      0|#define CONV_UNICODE "(unicode conversion error)"
  ------------------
 1109|      0|                                      arg, msgbuf, bufsize);
 1110|      0|                if (strlen(sarg) != (size_t)len) {
  ------------------
  |  Branch (1110:21): [True: 0, False: 0]
  ------------------
 1111|      0|                    PyErr_SetString(PyExc_ValueError, "embedded null character");
 1112|      0|                    RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
 1113|      0|                }
 1114|      0|                *p = sarg;
 1115|      0|            }
 1116|      0|            else
 1117|      0|                return converterr(c == 'z' ? "str or None" : "str",
  ------------------
  |  Branch (1117:35): [True: 0, False: 0]
  ------------------
 1118|      0|                                  arg, msgbuf, bufsize);
 1119|      0|        }
 1120|      0|        break;
 1121|      0|    }
 1122|       |
 1123|      0|    case 'e': {/* encoded string */
  ------------------
  |  Branch (1123:5): [True: 0, False: 582]
  ------------------
 1124|      0|        char **buffer;
 1125|      0|        const char *encoding;
 1126|      0|        PyObject *s;
 1127|      0|        int recode_strings;
 1128|      0|        Py_ssize_t size;
 1129|      0|        const char *ptr;
 1130|       |
 1131|       |        /* Get 'e' parameter: the encoding name */
 1132|      0|        encoding = (const char *)va_arg(*p_va, const char *);
 1133|      0|        if (encoding == NULL)
  ------------------
  |  Branch (1133:13): [True: 0, False: 0]
  ------------------
 1134|      0|            encoding = PyUnicode_GetDefaultEncoding();
 1135|       |
 1136|       |        /* Get output buffer parameter:
 1137|       |           's' (recode all objects via Unicode) or
 1138|       |           't' (only recode non-string objects)
 1139|       |        */
 1140|      0|        if (*format == 's')
  ------------------
  |  Branch (1140:13): [True: 0, False: 0]
  ------------------
 1141|      0|            recode_strings = 1;
 1142|      0|        else if (*format == 't')
  ------------------
  |  Branch (1142:18): [True: 0, False: 0]
  ------------------
 1143|      0|            recode_strings = 0;
 1144|      0|        else
 1145|      0|            return converterr(
 1146|      0|                "(unknown parser marker combination)",
 1147|      0|                arg, msgbuf, bufsize);
 1148|      0|        buffer = (char **)va_arg(*p_va, char **);
 1149|      0|        format++;
 1150|      0|        if (buffer == NULL)
  ------------------
  |  Branch (1150:13): [True: 0, False: 0]
  ------------------
 1151|      0|            return converterr("(buffer is NULL)",
 1152|      0|                              arg, msgbuf, bufsize);
 1153|       |
 1154|       |        /* Encode object */
 1155|      0|        if (!recode_strings &&
  ------------------
  |  Branch (1155:13): [True: 0, False: 0]
  ------------------
 1156|      0|            (PyBytes_Check(arg) || PyByteArray_Check(arg))) {
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          (PyBytes_Check(arg) || PyByteArray_Check(arg))) {
  ------------------
  |  |   24|      0|#define PyByteArray_Check(self) PyObject_TypeCheck((self), &PyByteArray_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1157|      0|            s = Py_NewRef(arg);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1158|      0|            if (PyBytes_Check(arg)) {
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1159|      0|                size = PyBytes_GET_SIZE(s);
  ------------------
  |  |   33|      0|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1160|      0|                ptr = PyBytes_AS_STRING(s);
  ------------------
  |  |   27|      0|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1161|      0|            }
 1162|      0|            else {
 1163|      0|                size = PyByteArray_GET_SIZE(s);
  ------------------
  |  |   38|      0|#define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1164|      0|                ptr = PyByteArray_AS_STRING(s);
  ------------------
  |  |   28|      0|#define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1165|      0|            }
 1166|      0|        }
 1167|      0|        else if (PyUnicode_Check(arg)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1168|       |            /* Encode object; use default error handling */
 1169|      0|            s = PyUnicode_AsEncodedString(arg,
 1170|      0|                                          encoding,
 1171|      0|                                          NULL);
 1172|      0|            if (s == NULL)
  ------------------
  |  Branch (1172:17): [True: 0, False: 0]
  ------------------
 1173|      0|                return converterr("(encoding failed)",
 1174|      0|                                  arg, msgbuf, bufsize);
 1175|      0|            assert(PyBytes_Check(s));
  ------------------
  |  Branch (1175:13): [True: 0, False: 0]
  ------------------
 1176|      0|            size = PyBytes_GET_SIZE(s);
  ------------------
  |  |   33|      0|#define PyBytes_GET_SIZE(self) PyBytes_GET_SIZE(_PyObject_CAST(self))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1177|      0|            ptr = PyBytes_AS_STRING(s);
  ------------------
  |  |   27|      0|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1178|      0|            if (ptr == NULL)
  ------------------
  |  Branch (1178:17): [True: 0, False: 0]
  ------------------
 1179|      0|                ptr = "";
 1180|      0|        }
 1181|      0|        else {
 1182|      0|            return converterr(
 1183|      0|                recode_strings ? "str" : "str, bytes or bytearray",
  ------------------
  |  Branch (1183:17): [True: 0, False: 0]
  ------------------
 1184|      0|                arg, msgbuf, bufsize);
 1185|      0|        }
 1186|       |
 1187|       |        /* Write output; output is guaranteed to be 0-terminated */
 1188|      0|        if (*format == '#') {
  ------------------
  |  Branch (1188:13): [True: 0, False: 0]
  ------------------
 1189|       |            /* Using buffer length parameter '#':
 1190|       |
 1191|       |               - if *buffer is NULL, a new buffer of the
 1192|       |               needed size is allocated and the data
 1193|       |               copied into it; *buffer is updated to point
 1194|       |               to the new buffer; the caller is
 1195|       |               responsible for PyMem_Free()ing it after
 1196|       |               usage
 1197|       |
 1198|       |               - if *buffer is not NULL, the data is
 1199|       |               copied to *buffer; *buffer_len has to be
 1200|       |               set to the size of the buffer on input;
 1201|       |               buffer overflow is signalled with an error;
 1202|       |               buffer has to provide enough room for the
 1203|       |               encoded string plus the trailing 0-byte
 1204|       |
 1205|       |               - in both cases, *buffer_len is updated to
 1206|       |               the size of the buffer /excluding/ the
 1207|       |               trailing 0-byte
 1208|       |
 1209|       |            */
 1210|      0|            Py_ssize_t *psize = va_arg(*p_va, Py_ssize_t*);
 1211|       |
 1212|      0|            format++;
 1213|      0|            if (psize == NULL) {
  ------------------
  |  Branch (1213:17): [True: 0, False: 0]
  ------------------
 1214|      0|                Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1215|      0|                return converterr(
 1216|      0|                    "(buffer_len is NULL)",
 1217|      0|                    arg, msgbuf, bufsize);
 1218|      0|            }
 1219|      0|            if (*buffer == NULL) {
  ------------------
  |  Branch (1219:17): [True: 0, False: 0]
  ------------------
 1220|      0|                *buffer = PyMem_NEW(char, size + 1);
  ------------------
  |  |   82|      0|#define PyMem_NEW(type, n)        PyMem_New(type, (n))
  |  |  ------------------
  |  |  |  |   64|      0|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   65|      0|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  |  |  ------------------
  ------------------
 1221|      0|                if (*buffer == NULL) {
  ------------------
  |  Branch (1221:21): [True: 0, False: 0]
  ------------------
 1222|      0|                    Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1223|      0|                    PyErr_NoMemory();
 1224|      0|                    RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
 1225|      0|                }
 1226|      0|                if (addcleanup(buffer, freelist, cleanup_ptr)) {
  ------------------
  |  Branch (1226:21): [True: 0, False: 0]
  ------------------
 1227|      0|                    Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1228|      0|                    return converterr(
 1229|      0|                        "(cleanup problem)",
 1230|      0|                        arg, msgbuf, bufsize);
 1231|      0|                }
 1232|      0|            } else {
 1233|      0|                if (size + 1 > *psize) {
  ------------------
  |  Branch (1233:21): [True: 0, False: 0]
  ------------------
 1234|      0|                    Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1235|      0|                    PyErr_Format(PyExc_ValueError,
 1236|      0|                                 "encoded string too long "
 1237|      0|                                 "(%zd, maximum length %zd)",
 1238|      0|                                 (Py_ssize_t)size, (Py_ssize_t)(*psize - 1));
 1239|      0|                    RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
 1240|      0|                }
 1241|      0|            }
 1242|      0|            memcpy(*buffer, ptr, size+1);
 1243|       |
 1244|      0|            *psize = size;
 1245|      0|        }
 1246|      0|        else {
 1247|       |            /* Using a 0-terminated buffer:
 1248|       |
 1249|       |               - the encoded string has to be 0-terminated
 1250|       |               for this variant to work; if it is not, an
 1251|       |               error raised
 1252|       |
 1253|       |               - a new buffer of the needed size is
 1254|       |               allocated and the data copied into it;
 1255|       |               *buffer is updated to point to the new
 1256|       |               buffer; the caller is responsible for
 1257|       |               PyMem_Free()ing it after usage
 1258|       |
 1259|       |            */
 1260|      0|            if ((Py_ssize_t)strlen(ptr) != size) {
  ------------------
  |  Branch (1260:17): [True: 0, False: 0]
  ------------------
 1261|      0|                Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1262|      0|                return converterr(
 1263|      0|                    "encoded string without null bytes",
 1264|      0|                    arg, msgbuf, bufsize);
 1265|      0|            }
 1266|      0|            *buffer = PyMem_NEW(char, size + 1);
  ------------------
  |  |   82|      0|#define PyMem_NEW(type, n)        PyMem_New(type, (n))
  |  |  ------------------
  |  |  |  |   64|      0|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   65|      0|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  |  |  ------------------
  ------------------
 1267|      0|            if (*buffer == NULL) {
  ------------------
  |  Branch (1267:17): [True: 0, False: 0]
  ------------------
 1268|      0|                Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1269|      0|                PyErr_NoMemory();
 1270|      0|                RETURN_ERR_OCCURRED;
  ------------------
  |  |  715|      0|#define RETURN_ERR_OCCURRED return msgbuf
  ------------------
 1271|      0|            }
 1272|      0|            if (addcleanup(buffer, freelist, cleanup_ptr)) {
  ------------------
  |  Branch (1272:17): [True: 0, False: 0]
  ------------------
 1273|      0|                Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1274|      0|                return converterr("(cleanup problem)",
 1275|      0|                                arg, msgbuf, bufsize);
 1276|      0|            }
 1277|      0|            memcpy(*buffer, ptr, size+1);
 1278|      0|        }
 1279|      0|        Py_DECREF(s);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1280|      0|        break;
 1281|      0|    }
 1282|       |
 1283|      0|    case 'S': { /* PyBytes object */
  ------------------
  |  Branch (1283:5): [True: 0, False: 582]
  ------------------
 1284|      0|        PyObject **p = va_arg(*p_va, PyObject **);
 1285|      0|        if (PyBytes_Check(arg))
  ------------------
  |  |   28|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1286|      0|            *p = arg;
 1287|      0|        else
 1288|      0|            return converterr("bytes", arg, msgbuf, bufsize);
 1289|      0|        break;
 1290|      0|    }
 1291|       |
 1292|      0|    case 'Y': { /* PyByteArray object */
  ------------------
  |  Branch (1292:5): [True: 0, False: 582]
  ------------------
 1293|      0|        PyObject **p = va_arg(*p_va, PyObject **);
 1294|      0|        if (PyByteArray_Check(arg))
  ------------------
  |  |   24|      0|#define PyByteArray_Check(self) PyObject_TypeCheck((self), &PyByteArray_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1295|      0|            *p = arg;
 1296|      0|        else
 1297|      0|            return converterr("bytearray", arg, msgbuf, bufsize);
 1298|      0|        break;
 1299|      0|    }
 1300|       |
 1301|    220|    case 'U': { /* PyUnicode object */
  ------------------
  |  Branch (1301:5): [True: 220, False: 362]
  ------------------
 1302|    220|        PyObject **p = va_arg(*p_va, PyObject **);
 1303|    220|        if (PyUnicode_Check(arg)) {
  ------------------
  |  |  103|    220|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    220|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 220, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1304|    220|            *p = arg;
 1305|    220|        }
 1306|      0|        else
 1307|      0|            return converterr("str", arg, msgbuf, bufsize);
 1308|    220|        break;
 1309|    220|    }
 1310|       |
 1311|    362|    case 'O': { /* object */
  ------------------
  |  Branch (1311:5): [True: 362, False: 220]
  ------------------
 1312|    362|        PyTypeObject *type;
 1313|    362|        PyObject **p;
 1314|    362|        if (*format == '!') {
  ------------------
  |  Branch (1314:13): [True: 174, False: 188]
  ------------------
 1315|    174|            type = va_arg(*p_va, PyTypeObject*);
 1316|    174|            p = va_arg(*p_va, PyObject **);
 1317|    174|            format++;
 1318|    174|            if (PyType_IsSubtype(Py_TYPE(arg), type))
  ------------------
  |  |  213|    174|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    174|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    174|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1318:17): [True: 174, False: 0]
  ------------------
 1319|    174|                *p = arg;
 1320|      0|            else
 1321|      0|                return converterr(type->tp_name, arg, msgbuf, bufsize);
 1322|       |
 1323|    174|        }
 1324|    188|        else if (*format == '&') {
  ------------------
  |  Branch (1324:18): [True: 0, False: 188]
  ------------------
 1325|      0|            typedef int (*converter)(PyObject *, void *);
 1326|      0|            converter convert = va_arg(*p_va, converter);
 1327|      0|            void *addr = va_arg(*p_va, void *);
 1328|      0|            int res;
 1329|      0|            format++;
 1330|      0|            if (! (res = (*convert)(arg, addr)))
  ------------------
  |  Branch (1330:17): [True: 0, False: 0]
  ------------------
 1331|      0|                return converterr("(unspecified)",
 1332|      0|                                  arg, msgbuf, bufsize);
 1333|      0|            if (res == Py_CLEANUP_SUPPORTED &&
  ------------------
  |  |   57|      0|#define Py_CLEANUP_SUPPORTED 0x20000
  ------------------
  |  Branch (1333:17): [True: 0, False: 0]
  ------------------
 1334|      0|                addcleanup(addr, freelist, convert) == -1)
  ------------------
  |  Branch (1334:17): [True: 0, False: 0]
  ------------------
 1335|      0|                return converterr("(cleanup problem)",
 1336|      0|                                arg, msgbuf, bufsize);
 1337|      0|        }
 1338|    188|        else {
 1339|    188|            p = va_arg(*p_va, PyObject **);
 1340|    188|            *p = arg;
 1341|    188|        }
 1342|    362|        break;
 1343|    362|    }
 1344|       |
 1345|       |
 1346|    362|    case 'w': { /* "w*": memory buffer, read-write access */
  ------------------
  |  Branch (1346:5): [True: 0, False: 582]
  ------------------
 1347|      0|        void **p = va_arg(*p_va, void **);
 1348|       |
 1349|      0|        if (*format != '*')
  ------------------
  |  Branch (1349:13): [True: 0, False: 0]
  ------------------
 1350|      0|            return converterr(
 1351|      0|                "(invalid use of 'w' format character)",
 1352|      0|                arg, msgbuf, bufsize);
 1353|      0|        format++;
 1354|       |
 1355|       |        /* Caller is interested in Py_buffer, and the object supports it
 1356|       |           directly. The request implicitly asks for PyBUF_SIMPLE, so the
 1357|       |           result is C-contiguous with format 'B'. */
 1358|      0|        if (PyObject_GetBuffer(arg, (Py_buffer*)p, PyBUF_WRITABLE) < 0) {
  ------------------
  |  |  109|      0|#define PyBUF_WRITABLE 0x0001
  ------------------
  |  Branch (1358:13): [True: 0, False: 0]
  ------------------
 1359|      0|            PyErr_Clear();
 1360|      0|            return converterr("read-write bytes-like object",
 1361|      0|                              arg, msgbuf, bufsize);
 1362|      0|        }
 1363|      0|        assert(PyBuffer_IsContiguous((Py_buffer *)p, 'C'));
  ------------------
  |  Branch (1363:9): [True: 0, False: 0]
  ------------------
 1364|      0|        if (addcleanup(p, freelist, cleanup_buffer)) {
  ------------------
  |  Branch (1364:13): [True: 0, False: 0]
  ------------------
 1365|      0|            return converterr(
 1366|      0|                "(cleanup problem)",
 1367|      0|                arg, msgbuf, bufsize);
 1368|      0|        }
 1369|      0|        break;
 1370|      0|    }
 1371|       |
 1372|      0|    default:
  ------------------
  |  Branch (1372:5): [True: 0, False: 582]
  ------------------
 1373|      0|        return converterr("(impossible<bad format char>)", arg, msgbuf, bufsize);
 1374|       |
 1375|    582|    }
 1376|       |
 1377|    582|    *p_format = format;
 1378|    582|    return NULL;
 1379|       |
 1380|    582|#undef RETURN_ERR_OCCURRED
 1381|    582|}
getargs.c:vgetargs1:
  414|    220|{
  415|    220|    PyObject **stack;
  416|    220|    Py_ssize_t nargs;
  417|       |
  418|    220|    if (!(flags & FLAG_COMPAT)) {
  ------------------
  |  |   24|    220|#define FLAG_COMPAT 1
  ------------------
  |  Branch (418:9): [True: 220, False: 0]
  ------------------
  419|    220|        assert(args != NULL);
  ------------------
  |  Branch (419:9): [True: 220, False: 0]
  ------------------
  420|       |
  421|    220|        if (!PyTuple_Check(args)) {
  ------------------
  |  |   27|    220|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    220|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (421:13): [True: 0, False: 220]
  ------------------
  422|      0|            PyErr_SetString(PyExc_SystemError,
  423|      0|                "new style getargs format but argument is not a tuple");
  424|      0|            return 0;
  425|      0|        }
  426|       |
  427|    220|        stack = _PyTuple_ITEMS(args);
  ------------------
  |  |   26|    220|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|    440|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 220, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  428|    220|        nargs = PyTuple_GET_SIZE(args);
  ------------------
  |  |   27|    220|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    220|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    220|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  429|    220|    }
  430|      0|    else {
  431|      0|        stack = NULL;
  432|      0|        nargs = 0;
  433|      0|    }
  434|       |
  435|    220|    return vgetargs1_impl(args, stack, nargs, format, p_va, flags);
  436|    220|}
getargs.c:vgetargskeywords_impl:
 1677|     78|{
 1678|     78|    char msgbuf[512];
 1679|     78|    int levels[32];
 1680|     78|    const char *fname, *msg, *custom_msg;
 1681|     78|    int min = INT_MAX;
 1682|     78|    int max = INT_MAX;
 1683|     78|    int i, pos, len;
 1684|     78|    int skip = 0;
 1685|     78|    Py_ssize_t nkwargs;
 1686|     78|    freelistentry_t static_entries[STATIC_FREELIST_ENTRIES];
 1687|     78|    freelist_t freelist;
 1688|     78|    PyObject * const *kwstack = NULL;
 1689|       |
 1690|     78|    freelist.entries = static_entries;
 1691|     78|    freelist.first_available = 0;
 1692|     78|    freelist.entries_malloced = 0;
 1693|       |
 1694|     78|    assert(args != NULL || nargs == 0);
  ------------------
  |  Branch (1694:5): [True: 78, False: 0]
  |  Branch (1694:5): [True: 0, False: 0]
  ------------------
 1695|     78|    assert(kwargs == NULL || PyDict_Check(kwargs));
  ------------------
  |  Branch (1695:5): [True: 64, False: 14]
  |  Branch (1695:5): [True: 14, False: 0]
  ------------------
 1696|     78|    assert(kwnames == NULL || PyTuple_Check(kwnames));
  ------------------
  |  Branch (1696:5): [True: 78, False: 0]
  |  Branch (1696:5): [True: 0, False: 0]
  ------------------
 1697|     78|    assert(format != NULL);
  ------------------
  |  Branch (1697:5): [True: 78, False: 0]
  ------------------
 1698|     78|    assert(kwlist != NULL);
  ------------------
  |  Branch (1698:5): [True: 78, False: 0]
  ------------------
 1699|     78|    assert(p_va != NULL);
  ------------------
  |  Branch (1699:5): [True: 78, False: 0]
  ------------------
 1700|       |
 1701|       |    /* grab the function name or custom error msg first (mutually exclusive) */
 1702|     78|    fname = strchr(format, ':');
 1703|     78|    if (fname) {
  ------------------
  |  Branch (1703:9): [True: 78, False: 0]
  ------------------
 1704|     78|        fname++;
 1705|     78|        custom_msg = NULL;
 1706|     78|    }
 1707|      0|    else {
 1708|      0|        custom_msg = strchr(format,';');
 1709|      0|        if (custom_msg)
  ------------------
  |  Branch (1709:13): [True: 0, False: 0]
  ------------------
 1710|      0|            custom_msg++;
 1711|      0|    }
 1712|       |
 1713|       |    /* scan kwlist and count the number of positional-only parameters */
 1714|     78|    for (pos = 0; kwlist[pos] && !*kwlist[pos]; pos++) {
  ------------------
  |  Branch (1714:19): [True: 78, False: 0]
  |  Branch (1714:34): [True: 0, False: 78]
  ------------------
 1715|      0|    }
 1716|       |    /* scan kwlist and get greatest possible nbr of args */
 1717|    248|    for (len = pos; kwlist[len]; len++) {
  ------------------
  |  Branch (1717:21): [True: 170, False: 78]
  ------------------
 1718|    170|        if (!*kwlist[len]) {
  ------------------
  |  Branch (1718:13): [True: 0, False: 170]
  ------------------
 1719|      0|            PyErr_SetString(PyExc_SystemError,
 1720|      0|                            "Empty keyword parameter name");
 1721|      0|            return cleanreturn(0, &freelist);
 1722|      0|        }
 1723|    170|    }
 1724|       |
 1725|     78|    if (len > STATIC_FREELIST_ENTRIES) {
  ------------------
  |  |   44|     78|#define STATIC_FREELIST_ENTRIES 8
  ------------------
  |  Branch (1725:9): [True: 0, False: 78]
  ------------------
 1726|      0|        freelist.entries = PyMem_NEW(freelistentry_t, len);
  ------------------
  |  |   82|      0|#define PyMem_NEW(type, n)        PyMem_New(type, (n))
  |  |  ------------------
  |  |  |  |   64|      0|  ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (64:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   65|      0|        ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
  |  |  ------------------
  ------------------
 1727|      0|        if (freelist.entries == NULL) {
  ------------------
  |  Branch (1727:13): [True: 0, False: 0]
  ------------------
 1728|      0|            PyErr_NoMemory();
 1729|      0|            return 0;
 1730|      0|        }
 1731|      0|        freelist.entries_malloced = 1;
 1732|      0|    }
 1733|       |
 1734|     78|    if (kwargs != NULL) {
  ------------------
  |  Branch (1734:9): [True: 14, False: 64]
  ------------------
 1735|     14|        nkwargs = PyDict_GET_SIZE(kwargs);
  ------------------
  |  |   63|     14|#define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1736|     14|    }
 1737|     64|    else if (kwnames != NULL) {
  ------------------
  |  Branch (1737:14): [True: 0, False: 64]
  ------------------
 1738|      0|        nkwargs = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1739|      0|        kwstack = args + nargs;
 1740|      0|    }
 1741|     64|    else {
 1742|     64|        nkwargs = 0;
 1743|     64|    }
 1744|     78|    if (nargs + nkwargs > len) {
  ------------------
  |  Branch (1744:9): [True: 0, False: 78]
  ------------------
 1745|       |        /* Adding "keyword" (when nargs == 0) prevents producing wrong error
 1746|       |           messages in some special cases (see bpo-31229). */
 1747|      0|        PyErr_Format(PyExc_TypeError,
 1748|      0|                     "%.200s%s takes at most %d %sargument%s (%zd given)",
 1749|      0|                     (fname == NULL) ? "function" : fname,
  ------------------
  |  Branch (1749:22): [True: 0, False: 0]
  ------------------
 1750|      0|                     (fname == NULL) ? "" : "()",
  ------------------
  |  Branch (1750:22): [True: 0, False: 0]
  ------------------
 1751|      0|                     len,
 1752|      0|                     (nargs == 0) ? "keyword " : "",
  ------------------
  |  Branch (1752:22): [True: 0, False: 0]
  ------------------
 1753|      0|                     (len == 1) ? "" : "s",
  ------------------
  |  Branch (1753:22): [True: 0, False: 0]
  ------------------
 1754|      0|                     nargs + nkwargs);
 1755|      0|        return cleanreturn(0, &freelist);
 1756|      0|    }
 1757|       |
 1758|       |    /* convert tuple args and keyword args in same loop, using kwlist to drive process */
 1759|    102|    for (i = 0; i < len; i++) {
  ------------------
  |  Branch (1759:17): [True: 102, False: 0]
  ------------------
 1760|    102|        if (*format == '|') {
  ------------------
  |  Branch (1760:13): [True: 78, False: 24]
  ------------------
 1761|     78|            if (min != INT_MAX) {
  ------------------
  |  Branch (1761:17): [True: 0, False: 78]
  ------------------
 1762|      0|                PyErr_SetString(PyExc_SystemError,
 1763|      0|                                "Invalid format string (| specified twice)");
 1764|      0|                return cleanreturn(0, &freelist);
 1765|      0|            }
 1766|       |
 1767|     78|            min = i;
 1768|     78|            format++;
 1769|       |
 1770|     78|            if (max != INT_MAX) {
  ------------------
  |  Branch (1770:17): [True: 0, False: 78]
  ------------------
 1771|      0|                PyErr_SetString(PyExc_SystemError,
 1772|      0|                                "Invalid format string ($ before |)");
 1773|      0|                return cleanreturn(0, &freelist);
 1774|      0|            }
 1775|     78|        }
 1776|    102|        if (*format == '$') {
  ------------------
  |  Branch (1776:13): [True: 78, False: 24]
  ------------------
 1777|     78|            if (max != INT_MAX) {
  ------------------
  |  Branch (1777:17): [True: 0, False: 78]
  ------------------
 1778|      0|                PyErr_SetString(PyExc_SystemError,
 1779|      0|                                "Invalid format string ($ specified twice)");
 1780|      0|                return cleanreturn(0, &freelist);
 1781|      0|            }
 1782|       |
 1783|     78|            max = i;
 1784|     78|            format++;
 1785|       |
 1786|     78|            if (max < pos) {
  ------------------
  |  Branch (1786:17): [True: 0, False: 78]
  ------------------
 1787|      0|                PyErr_SetString(PyExc_SystemError,
 1788|      0|                                "Empty parameter name after $");
 1789|      0|                return cleanreturn(0, &freelist);
 1790|      0|            }
 1791|     78|            if (skip) {
  ------------------
  |  Branch (1791:17): [True: 0, False: 78]
  ------------------
 1792|       |                /* Now we know the minimal and the maximal numbers of
 1793|       |                 * positional arguments and can raise an exception with
 1794|       |                 * informative message (see below). */
 1795|      0|                break;
 1796|      0|            }
 1797|     78|            if (max < nargs) {
  ------------------
  |  Branch (1797:17): [True: 0, False: 78]
  ------------------
 1798|      0|                if (max == 0) {
  ------------------
  |  Branch (1798:21): [True: 0, False: 0]
  ------------------
 1799|      0|                    PyErr_Format(PyExc_TypeError,
 1800|      0|                                 "%.200s%s takes no positional arguments",
 1801|      0|                                 (fname == NULL) ? "function" : fname,
  ------------------
  |  Branch (1801:34): [True: 0, False: 0]
  ------------------
 1802|      0|                                 (fname == NULL) ? "" : "()");
  ------------------
  |  Branch (1802:34): [True: 0, False: 0]
  ------------------
 1803|      0|                }
 1804|      0|                else {
 1805|      0|                    PyErr_Format(PyExc_TypeError,
 1806|      0|                                 "%.200s%s takes %s %d positional argument%s"
 1807|      0|                                 " (%zd given)",
 1808|      0|                                 (fname == NULL) ? "function" : fname,
  ------------------
  |  Branch (1808:34): [True: 0, False: 0]
  ------------------
 1809|      0|                                 (fname == NULL) ? "" : "()",
  ------------------
  |  Branch (1809:34): [True: 0, False: 0]
  ------------------
 1810|      0|                                 (min != INT_MAX) ? "at most" : "exactly",
  ------------------
  |  Branch (1810:34): [True: 0, False: 0]
  ------------------
 1811|      0|                                 max,
 1812|      0|                                 max == 1 ? "" : "s",
  ------------------
  |  Branch (1812:34): [True: 0, False: 0]
  ------------------
 1813|      0|                                 nargs);
 1814|      0|                }
 1815|      0|                return cleanreturn(0, &freelist);
 1816|      0|            }
 1817|     78|        }
 1818|    102|        if (IS_END_OF_FORMAT(*format)) {
  ------------------
  |  | 1670|    102|#define IS_END_OF_FORMAT(c) (c == '\0' || c == ';' || c == ':')
  |  |  ------------------
  |  |  |  Branch (1670:30): [True: 0, False: 102]
  |  |  |  Branch (1670:43): [True: 0, False: 102]
  |  |  |  Branch (1670:55): [True: 0, False: 102]
  |  |  ------------------
  ------------------
 1819|      0|            PyErr_Format(PyExc_SystemError,
 1820|      0|                         "More keyword list entries (%d) than "
 1821|      0|                         "format specifiers (%d)", len, i);
 1822|      0|            return cleanreturn(0, &freelist);
 1823|      0|        }
 1824|    102|        if (!skip) {
  ------------------
  |  Branch (1824:13): [True: 102, False: 0]
  ------------------
 1825|    102|            PyObject *current_arg;
 1826|    102|            if (i < nargs) {
  ------------------
  |  Branch (1826:17): [True: 0, False: 102]
  ------------------
 1827|      0|                current_arg = Py_NewRef(args[i]);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1828|      0|            }
 1829|    102|            else if (nkwargs && i >= pos) {
  ------------------
  |  Branch (1829:22): [True: 24, False: 78]
  |  Branch (1829:33): [True: 24, False: 0]
  ------------------
 1830|     24|                if (kwargs != NULL) {
  ------------------
  |  Branch (1830:21): [True: 24, False: 0]
  ------------------
 1831|     24|                    if (PyDict_GetItemStringRef(kwargs, kwlist[i], &current_arg) < 0) {
  ------------------
  |  Branch (1831:25): [True: 0, False: 24]
  ------------------
 1832|      0|                        return cleanreturn(0, &freelist);
 1833|      0|                    }
 1834|     24|                }
 1835|      0|                else {
 1836|      0|                    current_arg = find_keyword_str(kwnames, kwstack, kwlist[i]);
 1837|      0|                }
 1838|     24|                if (current_arg) {
  ------------------
  |  Branch (1838:21): [True: 14, False: 10]
  ------------------
 1839|     14|                    --nkwargs;
 1840|     14|                }
 1841|     24|            }
 1842|     78|            else {
 1843|     78|                current_arg = NULL;
 1844|     78|            }
 1845|       |
 1846|    102|            if (current_arg) {
  ------------------
  |  Branch (1846:17): [True: 14, False: 88]
  ------------------
 1847|     14|                msg = convertitem(current_arg, &format, p_va, flags,
 1848|     14|                    levels, msgbuf, sizeof(msgbuf), &freelist);
 1849|     14|                Py_DECREF(current_arg);
  ------------------
  |  |  430|     14|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1850|     14|                if (msg) {
  ------------------
  |  Branch (1850:21): [True: 0, False: 14]
  ------------------
 1851|      0|                    seterror(i+1, msg, levels, fname, custom_msg);
 1852|      0|                    return cleanreturn(0, &freelist);
 1853|      0|                }
 1854|     14|                continue;
 1855|     14|            }
 1856|       |
 1857|     88|            if (i < min) {
  ------------------
  |  Branch (1857:17): [True: 0, False: 88]
  ------------------
 1858|      0|                if (i < pos) {
  ------------------
  |  Branch (1858:21): [True: 0, False: 0]
  ------------------
 1859|      0|                    assert (min == INT_MAX);
  ------------------
  |  Branch (1859:21): [True: 0, False: 0]
  ------------------
 1860|      0|                    assert (max == INT_MAX);
  ------------------
  |  Branch (1860:21): [True: 0, False: 0]
  ------------------
 1861|      0|                    skip = 1;
 1862|       |                    /* At that moment we still don't know the minimal and
 1863|       |                     * the maximal numbers of positional arguments.  Raising
 1864|       |                     * an exception is deferred until we encounter | and $
 1865|       |                     * or the end of the format. */
 1866|      0|                }
 1867|      0|                else {
 1868|      0|                    PyErr_Format(PyExc_TypeError,  "%.200s%s missing required "
 1869|      0|                                 "argument '%s' (pos %d)",
 1870|      0|                                 (fname == NULL) ? "function" : fname,
  ------------------
  |  Branch (1870:34): [True: 0, False: 0]
  ------------------
 1871|      0|                                 (fname == NULL) ? "" : "()",
  ------------------
  |  Branch (1871:34): [True: 0, False: 0]
  ------------------
 1872|      0|                                 kwlist[i], i+1);
 1873|      0|                    return cleanreturn(0, &freelist);
 1874|      0|                }
 1875|      0|            }
 1876|       |            /* current code reports success when all required args
 1877|       |             * fulfilled and no keyword args left, with no further
 1878|       |             * validation. XXX Maybe skip this in debug build ?
 1879|       |             */
 1880|     88|            if (!nkwargs && !skip) {
  ------------------
  |  Branch (1880:17): [True: 78, False: 10]
  |  Branch (1880:29): [True: 78, False: 0]
  ------------------
 1881|     78|                return cleanreturn(1, &freelist);
 1882|     78|            }
 1883|     88|        }
 1884|       |
 1885|       |        /* We are into optional args, skip through to any remaining
 1886|       |         * keyword args */
 1887|     10|        msg = skipitem(&format, p_va, flags);
 1888|     10|        if (msg) {
  ------------------
  |  Branch (1888:13): [True: 0, False: 10]
  ------------------
 1889|      0|            PyErr_Format(PyExc_SystemError, "%s: '%s'", msg,
 1890|      0|                         format);
 1891|      0|            return cleanreturn(0, &freelist);
 1892|      0|        }
 1893|     10|    }
 1894|       |
 1895|      0|    if (skip) {
  ------------------
  |  Branch (1895:9): [True: 0, False: 0]
  ------------------
 1896|      0|        PyErr_Format(PyExc_TypeError,
 1897|      0|                     "%.200s%s takes %s %d positional argument%s"
 1898|      0|                     " (%zd given)",
 1899|      0|                     (fname == NULL) ? "function" : fname,
  ------------------
  |  Branch (1899:22): [True: 0, False: 0]
  ------------------
 1900|      0|                     (fname == NULL) ? "" : "()",
  ------------------
  |  Branch (1900:22): [True: 0, False: 0]
  ------------------
 1901|      0|                     (Py_MIN(pos, min) < i) ? "at least" : "exactly",
  ------------------
  |  |  112|      0|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (1901:22): [True: 0, False: 0]
  ------------------
 1902|      0|                     Py_MIN(pos, min),
  ------------------
  |  |  112|      0|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1903|      0|                     Py_MIN(pos, min) == 1 ? "" : "s",
  ------------------
  |  |  112|      0|#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
  |  |  ------------------
  |  |  |  Branch (112:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (1903:22): [True: 0, False: 0]
  ------------------
 1904|      0|                     nargs);
 1905|      0|        return cleanreturn(0, &freelist);
 1906|      0|    }
 1907|       |
 1908|      0|    if (!IS_END_OF_FORMAT(*format) && (*format != '|') && (*format != '$')) {
  ------------------
  |  | 1670|      0|#define IS_END_OF_FORMAT(c) (c == '\0' || c == ';' || c == ':')
  |  |  ------------------
  |  |  |  Branch (1670:30): [True: 0, False: 0]
  |  |  |  Branch (1670:43): [True: 0, False: 0]
  |  |  |  Branch (1670:55): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (1908:39): [True: 0, False: 0]
  |  Branch (1908:59): [True: 0, False: 0]
  ------------------
 1909|      0|        PyErr_Format(PyExc_SystemError,
 1910|      0|            "more argument specifiers than keyword list entries "
 1911|      0|            "(remaining format:'%s')", format);
 1912|      0|        return cleanreturn(0, &freelist);
 1913|      0|    }
 1914|       |
 1915|      0|    if (nkwargs > 0) {
  ------------------
  |  Branch (1915:9): [True: 0, False: 0]
  ------------------
 1916|      0|        PyObject *key;
 1917|      0|        Py_ssize_t j;
 1918|       |        /* make sure there are no arguments given by name and position */
 1919|      0|        for (i = pos; i < nargs; i++) {
  ------------------
  |  Branch (1919:23): [True: 0, False: 0]
  ------------------
 1920|      0|            PyObject *current_arg;
 1921|      0|            if (kwargs != NULL) {
  ------------------
  |  Branch (1921:17): [True: 0, False: 0]
  ------------------
 1922|      0|                if (PyDict_GetItemStringRef(kwargs, kwlist[i], &current_arg) < 0) {
  ------------------
  |  Branch (1922:21): [True: 0, False: 0]
  ------------------
 1923|      0|                    return cleanreturn(0, &freelist);
 1924|      0|                }
 1925|      0|            }
 1926|      0|            else {
 1927|      0|                current_arg = find_keyword_str(kwnames, kwstack, kwlist[i]);
 1928|      0|            }
 1929|      0|            if (current_arg) {
  ------------------
  |  Branch (1929:17): [True: 0, False: 0]
  ------------------
 1930|      0|                Py_DECREF(current_arg);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1931|       |                /* arg present in tuple and in dict */
 1932|      0|                PyErr_Format(PyExc_TypeError,
 1933|      0|                             "argument for %.200s%s given by name ('%s') "
 1934|      0|                             "and position (%d)",
 1935|      0|                             (fname == NULL) ? "function" : fname,
  ------------------
  |  Branch (1935:30): [True: 0, False: 0]
  ------------------
 1936|      0|                             (fname == NULL) ? "" : "()",
  ------------------
  |  Branch (1936:30): [True: 0, False: 0]
  ------------------
 1937|      0|                             kwlist[i], i+1);
 1938|      0|                return cleanreturn(0, &freelist);
 1939|      0|            }
 1940|      0|        }
 1941|       |        /* make sure there are no extraneous keyword arguments */
 1942|      0|        j = 0;
 1943|      0|        while (1) {
  ------------------
  |  Branch (1943:16): [True: 0, Folded]
  ------------------
 1944|      0|            if (kwargs != NULL) {
  ------------------
  |  Branch (1944:17): [True: 0, False: 0]
  ------------------
 1945|      0|                if (!PyDict_Next(kwargs, &j, &key, NULL)) {
  ------------------
  |  Branch (1945:21): [True: 0, False: 0]
  ------------------
 1946|      0|                    break;
 1947|      0|                }
 1948|      0|            }
 1949|      0|            else {
 1950|      0|                if (j >= nkwargs) {
  ------------------
  |  Branch (1950:21): [True: 0, False: 0]
  ------------------
 1951|      0|                    break;
 1952|      0|                }
 1953|      0|                key = PyTuple_GET_ITEM(kwnames, j);
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1953:23): [True: 0, False: 0]
  ------------------
 1954|      0|                j++;
 1955|      0|            }
 1956|       |
 1957|      0|            int match = 0;
 1958|      0|            if (!PyUnicode_Check(key)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1958:17): [True: 0, False: 0]
  ------------------
 1959|      0|                PyErr_SetString(PyExc_TypeError,
 1960|      0|                                "keywords must be strings");
 1961|      0|                return cleanreturn(0, &freelist);
 1962|      0|            }
 1963|      0|            for (i = pos; i < len; i++) {
  ------------------
  |  Branch (1963:27): [True: 0, False: 0]
  ------------------
 1964|      0|                if (PyUnicode_EqualToUTF8(key, kwlist[i])) {
  ------------------
  |  Branch (1964:21): [True: 0, False: 0]
  ------------------
 1965|      0|                    match = 1;
 1966|      0|                    break;
 1967|      0|                }
 1968|      0|            }
 1969|      0|            if (!match) {
  ------------------
  |  Branch (1969:17): [True: 0, False: 0]
  ------------------
 1970|      0|                PyObject *_pykwtuple = new_kwtuple(kwlist, len, pos);
 1971|      0|                if (!_pykwtuple) {
  ------------------
  |  Branch (1971:21): [True: 0, False: 0]
  ------------------
 1972|      0|                    return cleanreturn(0, &freelist);
 1973|      0|                }
 1974|      0|                PyObject *pykwlist = PySequence_List(_pykwtuple);
 1975|      0|                Py_DECREF(_pykwtuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1976|      0|                if (!pykwlist) {
  ------------------
  |  Branch (1976:21): [True: 0, False: 0]
  ------------------
 1977|      0|                    return cleanreturn(0, &freelist);
 1978|      0|                }
 1979|      0|                PyObject *suggestion_keyword = _Py_CalculateSuggestions(pykwlist, key);
 1980|      0|                Py_DECREF(pykwlist);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1981|       |
 1982|      0|                if (suggestion_keyword) {
  ------------------
  |  Branch (1982:21): [True: 0, False: 0]
  ------------------
 1983|      0|                    PyErr_Format(PyExc_TypeError,
 1984|      0|                                "%.200s%s got an unexpected keyword argument '%S'."
 1985|      0|                                " Did you mean '%S'?",
 1986|      0|                                (fname == NULL) ? "this function" : fname,
  ------------------
  |  Branch (1986:33): [True: 0, False: 0]
  ------------------
 1987|      0|                                (fname == NULL) ? "" : "()",
  ------------------
  |  Branch (1987:33): [True: 0, False: 0]
  ------------------
 1988|      0|                                key,
 1989|      0|                                suggestion_keyword);
 1990|      0|                    Py_DECREF(suggestion_keyword);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1991|      0|                }
 1992|      0|                else {
 1993|      0|                    PyErr_Format(PyExc_TypeError,
 1994|      0|                                "%.200s%s got an unexpected keyword argument '%S'",
 1995|      0|                                (fname == NULL) ? "this function" : fname,
  ------------------
  |  Branch (1995:33): [True: 0, False: 0]
  ------------------
 1996|      0|                                (fname == NULL) ? "" : "()",
  ------------------
  |  Branch (1996:33): [True: 0, False: 0]
  ------------------
 1997|      0|                                key);
 1998|      0|                }
 1999|      0|                return cleanreturn(0, &freelist);
 2000|      0|            }
 2001|      0|        }
 2002|       |        /* Something wrong happened. There are extraneous keyword arguments,
 2003|       |         * but we don't know what. And we don't bother. */
 2004|      0|        PyErr_Format(PyExc_TypeError,
 2005|      0|                     "invalid keyword argument for %.200s%s",
 2006|      0|                     (fname == NULL) ? "this function" : fname,
  ------------------
  |  Branch (2006:22): [True: 0, False: 0]
  ------------------
 2007|      0|                     (fname == NULL) ? "" : "()");
  ------------------
  |  Branch (2007:22): [True: 0, False: 0]
  ------------------
 2008|      0|        return cleanreturn(0, &freelist);
 2009|      0|    }
 2010|       |
 2011|      0|    return cleanreturn(1, &freelist);
 2012|      0|}
getargs.c:skipitem:
 2699|     10|{
 2700|     10|    const char *format = *p_format;
 2701|     10|    char c = *format++;
 2702|       |
 2703|     10|    switch (c) {
 2704|       |
 2705|       |    /*
 2706|       |     * codes that take a single data pointer as an argument
 2707|       |     * (the type of the pointer is irrelevant)
 2708|       |     */
 2709|       |
 2710|      0|    case 'b': /* byte -- very short int */
  ------------------
  |  Branch (2710:5): [True: 0, False: 10]
  ------------------
 2711|      0|    case 'B': /* byte as bitfield */
  ------------------
  |  Branch (2711:5): [True: 0, False: 10]
  ------------------
 2712|      0|    case 'h': /* short int */
  ------------------
  |  Branch (2712:5): [True: 0, False: 10]
  ------------------
 2713|      0|    case 'H': /* short int as bitfield */
  ------------------
  |  Branch (2713:5): [True: 0, False: 10]
  ------------------
 2714|      0|    case 'i': /* int */
  ------------------
  |  Branch (2714:5): [True: 0, False: 10]
  ------------------
 2715|      0|    case 'I': /* int sized bitfield */
  ------------------
  |  Branch (2715:5): [True: 0, False: 10]
  ------------------
 2716|      0|    case 'l': /* long int */
  ------------------
  |  Branch (2716:5): [True: 0, False: 10]
  ------------------
 2717|      0|    case 'k': /* long int sized bitfield */
  ------------------
  |  Branch (2717:5): [True: 0, False: 10]
  ------------------
 2718|      0|    case 'L': /* long long */
  ------------------
  |  Branch (2718:5): [True: 0, False: 10]
  ------------------
 2719|      0|    case 'K': /* long long sized bitfield */
  ------------------
  |  Branch (2719:5): [True: 0, False: 10]
  ------------------
 2720|      0|    case 'n': /* Py_ssize_t */
  ------------------
  |  Branch (2720:5): [True: 0, False: 10]
  ------------------
 2721|      0|    case 'f': /* float */
  ------------------
  |  Branch (2721:5): [True: 0, False: 10]
  ------------------
 2722|      0|    case 'd': /* double */
  ------------------
  |  Branch (2722:5): [True: 0, False: 10]
  ------------------
 2723|      0|    case 'D': /* complex double */
  ------------------
  |  Branch (2723:5): [True: 0, False: 10]
  ------------------
 2724|      0|    case 'c': /* char */
  ------------------
  |  Branch (2724:5): [True: 0, False: 10]
  ------------------
 2725|      0|    case 'C': /* unicode char */
  ------------------
  |  Branch (2725:5): [True: 0, False: 10]
  ------------------
 2726|      0|    case 'p': /* boolean predicate */
  ------------------
  |  Branch (2726:5): [True: 0, False: 10]
  ------------------
 2727|      0|    case 'S': /* string object */
  ------------------
  |  Branch (2727:5): [True: 0, False: 10]
  ------------------
 2728|      0|    case 'Y': /* string object */
  ------------------
  |  Branch (2728:5): [True: 0, False: 10]
  ------------------
 2729|      0|    case 'U': /* unicode string object */
  ------------------
  |  Branch (2729:5): [True: 0, False: 10]
  ------------------
 2730|      0|        {
 2731|      0|            if (p_va != NULL) {
  ------------------
  |  Branch (2731:17): [True: 0, False: 0]
  ------------------
 2732|      0|                (void) va_arg(*p_va, void *);
 2733|      0|            }
 2734|      0|            break;
 2735|      0|        }
 2736|       |
 2737|       |    /* string codes */
 2738|       |
 2739|      0|    case 'e': /* string with encoding */
  ------------------
  |  Branch (2739:5): [True: 0, False: 10]
  ------------------
 2740|      0|        {
 2741|      0|            if (p_va != NULL) {
  ------------------
  |  Branch (2741:17): [True: 0, False: 0]
  ------------------
 2742|      0|                (void) va_arg(*p_va, const char *);
 2743|      0|            }
 2744|      0|            if (!(*format == 's' || *format == 't'))
  ------------------
  |  Branch (2744:19): [True: 0, False: 0]
  |  Branch (2744:37): [True: 0, False: 0]
  ------------------
 2745|       |                /* after 'e', only 's' and 't' is allowed */
 2746|      0|                goto err;
 2747|      0|            format++;
 2748|      0|        }
 2749|      0|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|      0|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 2750|       |
 2751|      0|    case 's': /* string */
  ------------------
  |  Branch (2751:5): [True: 0, False: 10]
  ------------------
 2752|      0|    case 'z': /* string or None */
  ------------------
  |  Branch (2752:5): [True: 0, False: 10]
  ------------------
 2753|      0|    case 'y': /* bytes */
  ------------------
  |  Branch (2753:5): [True: 0, False: 10]
  ------------------
 2754|      0|    case 'w': /* buffer, read-write */
  ------------------
  |  Branch (2754:5): [True: 0, False: 10]
  ------------------
 2755|      0|        {
 2756|      0|            if (p_va != NULL) {
  ------------------
  |  Branch (2756:17): [True: 0, False: 0]
  ------------------
 2757|      0|                (void) va_arg(*p_va, char **);
 2758|      0|            }
 2759|      0|            if (c == 'w' && *format != '*')
  ------------------
  |  Branch (2759:17): [True: 0, False: 0]
  |  Branch (2759:29): [True: 0, False: 0]
  ------------------
 2760|      0|            {
 2761|       |                /* after 'w', only '*' is allowed */
 2762|      0|                goto err;
 2763|      0|            }
 2764|      0|            if (*format == '#') {
  ------------------
  |  Branch (2764:17): [True: 0, False: 0]
  ------------------
 2765|      0|                if (p_va != NULL) {
  ------------------
  |  Branch (2765:21): [True: 0, False: 0]
  ------------------
 2766|      0|                    (void) va_arg(*p_va, Py_ssize_t *);
 2767|      0|                }
 2768|      0|                format++;
 2769|      0|            } else if ((c == 's' || c == 'z' || c == 'y' || c == 'w')
  ------------------
  |  Branch (2769:25): [True: 0, False: 0]
  |  Branch (2769:37): [True: 0, False: 0]
  |  Branch (2769:49): [True: 0, False: 0]
  |  Branch (2769:61): [True: 0, False: 0]
  ------------------
 2770|      0|                       && *format == '*')
  ------------------
  |  Branch (2770:27): [True: 0, False: 0]
  ------------------
 2771|      0|            {
 2772|      0|                format++;
 2773|      0|            }
 2774|      0|            break;
 2775|      0|        }
 2776|       |
 2777|     10|    case 'O': /* object */
  ------------------
  |  Branch (2777:5): [True: 10, False: 0]
  ------------------
 2778|     10|        {
 2779|     10|            if (*format == '!') {
  ------------------
  |  Branch (2779:17): [True: 0, False: 10]
  ------------------
 2780|      0|                format++;
 2781|      0|                if (p_va != NULL) {
  ------------------
  |  Branch (2781:21): [True: 0, False: 0]
  ------------------
 2782|      0|                    (void) va_arg(*p_va, PyTypeObject*);
 2783|      0|                    (void) va_arg(*p_va, PyObject **);
 2784|      0|                }
 2785|      0|            }
 2786|     10|            else if (*format == '&') {
  ------------------
  |  Branch (2786:22): [True: 0, False: 10]
  ------------------
 2787|      0|                typedef int (*converter)(PyObject *, void *);
 2788|      0|                if (p_va != NULL) {
  ------------------
  |  Branch (2788:21): [True: 0, False: 0]
  ------------------
 2789|      0|                    (void) va_arg(*p_va, converter);
 2790|      0|                    (void) va_arg(*p_va, void *);
 2791|      0|                }
 2792|      0|                format++;
 2793|      0|            }
 2794|     10|            else {
 2795|     10|                if (p_va != NULL) {
  ------------------
  |  Branch (2795:21): [True: 10, False: 0]
  ------------------
 2796|     10|                    (void) va_arg(*p_va, PyObject **);
 2797|     10|                }
 2798|     10|            }
 2799|     10|            break;
 2800|      0|        }
 2801|       |
 2802|      0|    case '(':           /* bypass tuple, not handled at all previously */
  ------------------
  |  Branch (2802:5): [True: 0, False: 10]
  ------------------
 2803|      0|        {
 2804|      0|            const char *msg;
 2805|      0|            for (;;) {
 2806|      0|                if (*format==')')
  ------------------
  |  Branch (2806:21): [True: 0, False: 0]
  ------------------
 2807|      0|                    break;
 2808|      0|                if (IS_END_OF_FORMAT(*format))
  ------------------
  |  | 1670|      0|#define IS_END_OF_FORMAT(c) (c == '\0' || c == ';' || c == ':')
  |  |  ------------------
  |  |  |  Branch (1670:30): [True: 0, False: 0]
  |  |  |  Branch (1670:43): [True: 0, False: 0]
  |  |  |  Branch (1670:55): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2809|      0|                    return "Unmatched left paren in format "
 2810|      0|                           "string";
 2811|      0|                msg = skipitem(&format, p_va, flags);
 2812|      0|                if (msg)
  ------------------
  |  Branch (2812:21): [True: 0, False: 0]
  ------------------
 2813|      0|                    return msg;
 2814|      0|            }
 2815|      0|            format++;
 2816|      0|            break;
 2817|      0|        }
 2818|       |
 2819|      0|    case ')':
  ------------------
  |  Branch (2819:5): [True: 0, False: 10]
  ------------------
 2820|      0|        return "Unmatched right paren in format string";
 2821|       |
 2822|      0|    default:
  ------------------
  |  Branch (2822:5): [True: 0, False: 10]
  ------------------
 2823|      0|err:
 2824|      0|        return "impossible<bad format char>";
 2825|       |
 2826|     10|    }
 2827|       |
 2828|     10|    *p_format = format;
 2829|       |    return NULL;
 2830|     10|}
getargs.c:vgetargskeywords:
 2018|     78|{
 2019|     78|    PyObject *const *args = _PyTuple_ITEMS(argstuple);
  ------------------
  |  |   26|     78|#define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item)
  |  |  ------------------
  |  |  |  |  277|    156|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:37): [True: 78, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2020|     78|    Py_ssize_t nargs = PyTuple_GET_SIZE(argstuple);
  ------------------
  |  |   27|     78|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     78|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     78|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2021|       |    return vgetargskeywords_impl(args, nargs, kwargs, NULL,
 2022|     78|                                 format, kwlist, p_va, flags);
 2023|     78|}
getargs.c:parser_init:
 2228|      2|{
 2229|      2|    return _PyOnceFlag_CallOnce(&parser->once, &_parser_init, parser);
 2230|      2|}
getargs.c:_parser_init:
 2151|      2|{
 2152|      2|    struct _PyArg_Parser *parser = (struct _PyArg_Parser *)arg;
 2153|      2|    const char * const *keywords = parser->keywords;
 2154|      2|    assert(keywords != NULL);
  ------------------
  |  Branch (2154:5): [True: 2, False: 0]
  ------------------
 2155|      2|    assert(parser->pos == 0 &&
  ------------------
  |  Branch (2155:5): [True: 2, False: 0]
  |  Branch (2155:5): [True: 0, False: 0]
  |  Branch (2155:5): [True: 2, False: 0]
  |  Branch (2155:5): [True: 2, False: 0]
  |  Branch (2155:5): [True: 2, False: 0]
  |  Branch (2155:5): [True: 2, False: 0]
  ------------------
 2156|      2|           (parser->format == NULL || parser->fname == NULL) &&
 2157|      2|           parser->custom_msg == NULL &&
 2158|      2|           parser->min == 0 &&
 2159|      2|           parser->max == 0);
 2160|       |
 2161|      2|    int len, pos;
 2162|      2|    if (scan_keywords(keywords, &len, &pos) < 0) {
  ------------------
  |  Branch (2162:9): [True: 0, False: 2]
  ------------------
 2163|      0|        return -1;
 2164|      0|    }
 2165|       |
 2166|      2|    const char *fname, *custommsg = NULL;
 2167|      2|    int min = 0, max = 0;
 2168|      2|    if (parser->format) {
  ------------------
  |  Branch (2168:9): [True: 0, False: 2]
  ------------------
 2169|      0|        assert(parser->fname == NULL);
  ------------------
  |  Branch (2169:9): [True: 0, False: 0]
  ------------------
 2170|      0|        if (parse_format(parser->format, len, pos,
  ------------------
  |  Branch (2170:13): [True: 0, False: 0]
  ------------------
 2171|      0|                         &fname, &custommsg, &min, &max) < 0) {
 2172|      0|            return -1;
 2173|      0|        }
 2174|      0|    }
 2175|      2|    else {
 2176|      2|        assert(parser->fname != NULL);
  ------------------
  |  Branch (2176:9): [True: 2, False: 0]
  ------------------
 2177|      2|        fname = parser->fname;
 2178|      2|    }
 2179|       |
 2180|      2|    int owned;
 2181|      2|    PyObject *kwtuple = parser->kwtuple;
 2182|      2|    if (kwtuple == NULL) {
  ------------------
  |  Branch (2182:9): [True: 0, False: 2]
  ------------------
 2183|       |        /* We may temporarily switch to the main interpreter to avoid
 2184|       |         * creating a tuple that could outlive its owning interpreter. */
 2185|      0|        PyThreadState *save_tstate = NULL;
 2186|      0|        PyThreadState *temp_tstate = NULL;
 2187|      0|        if (!_Py_IsMainInterpreter(PyInterpreterState_Get())) {
  ------------------
  |  Branch (2187:13): [True: 0, False: 0]
  ------------------
 2188|      0|            temp_tstate = PyThreadState_New(_PyInterpreterState_Main());
 2189|      0|            if (temp_tstate == NULL) {
  ------------------
  |  Branch (2189:17): [True: 0, False: 0]
  ------------------
 2190|      0|                return -1;
 2191|      0|            }
 2192|      0|            save_tstate = PyThreadState_Swap(temp_tstate);
 2193|      0|        }
 2194|      0|        kwtuple = new_kwtuple(keywords, len, pos);
 2195|      0|        if (temp_tstate != NULL) {
  ------------------
  |  Branch (2195:13): [True: 0, False: 0]
  ------------------
 2196|      0|            PyThreadState_Clear(temp_tstate);
 2197|      0|            (void)PyThreadState_Swap(save_tstate);
 2198|      0|            PyThreadState_Delete(temp_tstate);
 2199|      0|        }
 2200|      0|        if (kwtuple == NULL) {
  ------------------
  |  Branch (2200:13): [True: 0, False: 0]
  ------------------
 2201|      0|            return -1;
 2202|      0|        }
 2203|      0|        owned = 1;
 2204|      0|    }
 2205|      2|    else {
 2206|      2|        owned = 0;
 2207|      2|    }
 2208|       |
 2209|      2|    parser->pos = pos;
 2210|      2|    parser->fname = fname;
 2211|      2|    parser->custom_msg = custommsg;
 2212|      2|    parser->min = min;
 2213|      2|    parser->max = max;
 2214|      2|    parser->kwtuple = kwtuple;
 2215|      2|    parser->is_kwtuple_owned = owned;
 2216|       |
 2217|      2|    assert(parser->next == NULL);
  ------------------
  |  Branch (2217:5): [True: 2, False: 0]
  ------------------
 2218|      2|    parser->next = _Py_atomic_load_ptr(&_PyRuntime.getargs.static_parsers);
 2219|      2|    do {
 2220|       |        // compare-exchange updates parser->next on failure
 2221|      2|    } while (!_Py_atomic_compare_exchange_ptr(&_PyRuntime.getargs.static_parsers,
  ------------------
  |  Branch (2221:14): [True: 0, False: 2]
  ------------------
 2222|      2|                                              &parser->next, parser));
 2223|      2|    return 0;
 2224|      2|}
getargs.c:scan_keywords:
 2027|      2|{
 2028|       |    /* scan keywords and count the number of positional-only parameters */
 2029|      2|    int i;
 2030|      2|    for (i = 0; keywords[i] && !*keywords[i]; i++) {
  ------------------
  |  Branch (2030:17): [True: 2, False: 0]
  |  Branch (2030:32): [True: 0, False: 2]
  ------------------
 2031|      0|    }
 2032|      2|    *pposonly = i;
 2033|       |
 2034|       |    /* scan keywords and get greatest possible nbr of args */
 2035|     12|    for (; keywords[i]; i++) {
  ------------------
  |  Branch (2035:12): [True: 10, False: 2]
  ------------------
 2036|     10|        if (!*keywords[i]) {
  ------------------
  |  Branch (2036:13): [True: 0, False: 10]
  ------------------
 2037|      0|            PyErr_SetString(PyExc_SystemError,
 2038|      0|                            "Empty keyword parameter name");
 2039|      0|            return -1;
 2040|      0|        }
 2041|     10|    }
 2042|      2|    *ptotal = i;
 2043|      2|    return 0;
 2044|      2|}
getargs.c:find_keyword:
 2255|      8|{
 2256|      8|    Py_ssize_t i, nkwargs;
 2257|       |
 2258|      8|    nkwargs = PyTuple_GET_SIZE(kwnames);
  ------------------
  |  |   27|      8|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2259|     18|    for (i = 0; i < nkwargs; i++) {
  ------------------
  |  Branch (2259:17): [True: 14, False: 4]
  ------------------
 2260|     14|        PyObject *kwname = PyTuple_GET_ITEM(kwnames, i);
  ------------------
  |  |   29|     14|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|     14|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2260:28): [True: 14, False: 0]
  ------------------
 2261|       |
 2262|       |        /* kwname == key will normally find a match in since keyword keys
 2263|       |           should be interned strings; if not retry below in a new loop. */
 2264|     14|        if (kwname == key) {
  ------------------
  |  Branch (2264:13): [True: 4, False: 10]
  ------------------
 2265|      4|            return Py_NewRef(kwstack[i]);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2266|      4|        }
 2267|     14|    }
 2268|       |
 2269|     12|    for (i = 0; i < nkwargs; i++) {
  ------------------
  |  Branch (2269:17): [True: 8, False: 4]
  ------------------
 2270|      8|        PyObject *kwname = PyTuple_GET_ITEM(kwnames, i);
  ------------------
  |  |   29|      8|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      8|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2270:28): [True: 8, False: 0]
  ------------------
 2271|      8|        assert(PyUnicode_Check(kwname));
  ------------------
  |  Branch (2271:9): [True: 8, False: 0]
  ------------------
 2272|      8|        if (_PyUnicode_Equal(kwname, key)) {
  ------------------
  |  Branch (2272:13): [True: 0, False: 8]
  ------------------
 2273|      0|            return Py_NewRef(kwstack[i]);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2274|      0|        }
 2275|      8|    }
 2276|      4|    return NULL;
 2277|      4|}
getargs.c:unpack_stack:
 2882|    504|{
 2883|    504|    Py_ssize_t i;
 2884|    504|    PyObject **o;
 2885|       |
 2886|    504|    if (!_PyArg_CheckPositional(name, nargs, min, max)) {
  ------------------
  |  Branch (2886:9): [True: 0, False: 504]
  ------------------
 2887|      0|        return 0;
 2888|      0|    }
 2889|       |
 2890|  1.22k|    for (i = 0; i < nargs; i++) {
  ------------------
  |  Branch (2890:17): [True: 720, False: 504]
  ------------------
 2891|       |        o = va_arg(vargs, PyObject **);
 2892|    720|        *o = args[i];
 2893|    720|    }
 2894|    504|    return 1;
 2895|    504|}

Py_GetCompiler:
   29|      2|{
   30|      2|    return COMPILER;
  ------------------
  |  |   15|      2|#define COMPILER "[Clang " __clang_version__ "]"
  ------------------
   31|      2|}

Py_GetCopyright:
   21|      2|{
   22|      2|    return cprt;
   23|      2|}

_PyOS_ResetGetOpt:
   53|      8|{
   54|      8|    _PyOS_opterr = 1;
   55|      8|    _PyOS_optind = 1;
   56|       |    _PyOS_optarg = NULL;
   57|      8|    opt_ptr = L"";
   58|      8|}
_PyOS_GetOpt:
   61|      8|{
   62|      8|    wchar_t *ptr;
   63|      8|    wchar_t option;
   64|       |
   65|      8|    if (*opt_ptr == '\0') {
  ------------------
  |  Branch (65:9): [True: 8, False: 0]
  ------------------
   66|       |
   67|      8|        if (_PyOS_optind >= argc)
  ------------------
  |  Branch (67:13): [True: 8, False: 0]
  ------------------
   68|      8|            return -1;
   69|       |#ifdef MS_WINDOWS
   70|       |        else if (wcscmp(argv[_PyOS_optind], L"/?") == 0) {
   71|       |            ++_PyOS_optind;
   72|       |            return 'h';
   73|       |        }
   74|       |#endif
   75|       |
   76|      0|        else if (argv[_PyOS_optind][0] != L'-' ||
  ------------------
  |  Branch (76:18): [True: 0, False: 0]
  ------------------
   77|      0|                 argv[_PyOS_optind][1] == L'\0' /* lone dash */ )
  ------------------
  |  Branch (77:18): [True: 0, False: 0]
  ------------------
   78|      0|            return -1;
   79|       |
   80|      0|        else if (wcscmp(argv[_PyOS_optind], L"--") == 0) {
  ------------------
  |  Branch (80:18): [True: 0, False: 0]
  ------------------
   81|      0|            ++_PyOS_optind;
   82|      0|            return -1;
   83|      0|        }
   84|       |
   85|      0|        else if (wcscmp(argv[_PyOS_optind], L"--help") == 0) {
  ------------------
  |  Branch (85:18): [True: 0, False: 0]
  ------------------
   86|      0|            ++_PyOS_optind;
   87|      0|            return 'h';
   88|      0|        }
   89|       |
   90|      0|        else if (wcscmp(argv[_PyOS_optind], L"--version") == 0) {
  ------------------
  |  Branch (90:18): [True: 0, False: 0]
  ------------------
   91|      0|            ++_PyOS_optind;
   92|      0|            return 'V';
   93|      0|        }
   94|       |
   95|      0|        opt_ptr = &argv[_PyOS_optind++][1];
   96|      0|    }
   97|       |
   98|      0|    if ((option = *opt_ptr++) == L'\0')
  ------------------
  |  Branch (98:9): [True: 0, False: 0]
  ------------------
   99|      0|        return -1;
  100|       |
  101|      0|    if (option == L'-') {
  ------------------
  |  Branch (101:9): [True: 0, False: 0]
  ------------------
  102|       |        // Parse long option.
  103|      0|        if (*opt_ptr == L'\0') {
  ------------------
  |  Branch (103:13): [True: 0, False: 0]
  ------------------
  104|      0|            if (_PyOS_opterr) {
  ------------------
  |  Branch (104:17): [True: 0, False: 0]
  ------------------
  105|      0|                fprintf(stderr, "Expected long option\n");
  106|      0|            }
  107|      0|            return -1;
  108|      0|        }
  109|      0|        *longindex = 0;
  110|      0|        const _PyOS_LongOption *opt;
  111|      0|        for (opt = &longopts[*longindex]; opt->name; opt = &longopts[++(*longindex)]) {
  ------------------
  |  Branch (111:43): [True: 0, False: 0]
  ------------------
  112|      0|            if (!wcscmp(opt->name, opt_ptr))
  ------------------
  |  Branch (112:17): [True: 0, False: 0]
  ------------------
  113|      0|                break;
  114|      0|        }
  115|      0|        if (!opt->name) {
  ------------------
  |  Branch (115:13): [True: 0, False: 0]
  ------------------
  116|      0|            if (_PyOS_opterr) {
  ------------------
  |  Branch (116:17): [True: 0, False: 0]
  ------------------
  117|      0|                fprintf(stderr, "Unknown option: %ls\n", argv[_PyOS_optind - 1]);
  118|      0|            }
  119|      0|            return '_';
  120|      0|        }
  121|      0|        opt_ptr = L"";
  122|      0|        if (!opt->has_arg) {
  ------------------
  |  Branch (122:13): [True: 0, False: 0]
  ------------------
  123|      0|            return opt->val;
  124|      0|        }
  125|      0|        if (_PyOS_optind >= argc) {
  ------------------
  |  Branch (125:13): [True: 0, False: 0]
  ------------------
  126|      0|            if (_PyOS_opterr) {
  ------------------
  |  Branch (126:17): [True: 0, False: 0]
  ------------------
  127|      0|                fprintf(stderr, "Argument expected for the %ls options\n",
  128|      0|                        argv[_PyOS_optind - 1]);
  129|      0|            }
  130|      0|            return '_';
  131|      0|        }
  132|      0|        _PyOS_optarg = argv[_PyOS_optind++];
  133|      0|        return opt->val;
  134|      0|    }
  135|       |
  136|      0|    if ((ptr = wcschr(SHORT_OPTS, option)) == NULL) {
  ------------------
  |  |   40|      0|#define SHORT_OPTS L"bBc:dEhiIm:OPqRsStuvVW:xX:?"
  ------------------
  |  Branch (136:9): [True: 0, False: 0]
  ------------------
  137|      0|        if (_PyOS_opterr) {
  ------------------
  |  Branch (137:13): [True: 0, False: 0]
  ------------------
  138|      0|            fprintf(stderr, "Unknown option: -%c\n", (char)option);
  139|      0|        }
  140|      0|        return '_';
  141|      0|    }
  142|       |
  143|      0|    if (*(ptr + 1) == L':') {
  ------------------
  |  Branch (143:9): [True: 0, False: 0]
  ------------------
  144|      0|        if (*opt_ptr != L'\0') {
  ------------------
  |  Branch (144:13): [True: 0, False: 0]
  ------------------
  145|      0|            _PyOS_optarg  = opt_ptr;
  146|      0|            opt_ptr = L"";
  147|      0|        }
  148|       |
  149|      0|        else {
  150|      0|            if (_PyOS_optind >= argc) {
  ------------------
  |  Branch (150:17): [True: 0, False: 0]
  ------------------
  151|      0|                if (_PyOS_opterr) {
  ------------------
  |  Branch (151:21): [True: 0, False: 0]
  ------------------
  152|      0|                    fprintf(stderr,
  153|      0|                        "Argument expected for the -%c option\n", (char)option);
  154|      0|                }
  155|      0|                return '_';
  156|      0|            }
  157|       |
  158|      0|            _PyOS_optarg = argv[_PyOS_optind++];
  159|      0|        }
  160|      0|    }
  161|       |
  162|      0|    return option;
  163|      0|}

Py_GetPlatform:
   10|      2|{
   11|      2|    return PLATFORM;
   12|      2|}

_Py_InitVersion:
   12|      4|{
   13|      4|    if (initialized) {
  ------------------
  |  Branch (13:9): [True: 2, False: 2]
  ------------------
   14|      2|        return;
   15|      2|    }
   16|      2|    initialized = 1;
   17|       |#ifdef Py_GIL_DISABLED
   18|       |    const char *buildinfo_format = "%.80s free-threading build (%.80s) %.80s";
   19|       |#else
   20|      2|    const char *buildinfo_format = "%.80s (%.80s) %.80s";
   21|      2|#endif
   22|      2|    PyOS_snprintf(version, sizeof(version), buildinfo_format,
   23|      2|                  PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());
  ------------------
  |  |   30|      2|#define PY_VERSION              "3.16.0a0"
  ------------------
   24|      2|}
Py_GetVersion:
   28|      2|{
   29|      2|    _Py_InitVersion();
   30|      2|    return version;
   31|      2|}

_Py_hashtable_get_entry_generic:
  141|  19.2k|{
  142|  19.2k|    Py_uhash_t key_hash = ht->hash_func(key);
  143|  19.2k|    size_t index = key_hash & (ht->nbuckets - 1);
  144|  19.2k|    _Py_hashtable_entry_t *entry = TABLE_HEAD(ht, index);
  ------------------
  |  |   59|  19.2k|        ((_Py_hashtable_entry_t *)_Py_SLIST_HEAD(&(HT)->buckets[BUCKET]))
  |  |  ------------------
  |  |  |  |   23|  19.2k|#define _Py_SLIST_HEAD(SLIST) _Py_RVALUE(((_Py_slist_t *)(SLIST))->head)
  |  |  |  |  ------------------
  |  |  |  |  |  |  277|  19.2k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  145|  24.0k|    while (1) {
  ------------------
  |  Branch (145:12): [True: 24.0k, Folded]
  ------------------
  146|  24.0k|        if (entry == NULL) {
  ------------------
  |  Branch (146:13): [True: 13.7k, False: 10.2k]
  ------------------
  147|  13.7k|            return NULL;
  148|  13.7k|        }
  149|  10.2k|        if (entry->key_hash == key_hash && ht->compare_func(key, entry->key)) {
  ------------------
  |  Branch (149:13): [True: 5.48k, False: 4.80k]
  |  Branch (149:44): [True: 5.48k, False: 0]
  ------------------
  150|  5.48k|            break;
  151|  5.48k|        }
  152|  4.80k|        entry = ENTRY_NEXT(entry);
  ------------------
  |  |   61|  4.80k|        ((_Py_hashtable_entry_t *)_Py_SLIST_ITEM_NEXT(ENTRY))
  |  |  ------------------
  |  |  |  |   21|  4.80k|#define _Py_SLIST_ITEM_NEXT(ITEM) _Py_RVALUE(((_Py_slist_item_t *)(ITEM))->next)
  |  |  |  |  ------------------
  |  |  |  |  |  |  277|  4.80k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  153|  4.80k|    }
  154|  5.48k|    return entry;
  155|  19.2k|}
_Py_hashtable_set:
  218|  2.24k|{
  219|  2.24k|    _Py_hashtable_entry_t *entry;
  220|       |
  221|  2.24k|#ifndef NDEBUG
  222|       |    /* Don't write the assertion on a single line because it is interesting
  223|       |       to know the duplicated entry if the assertion failed. The entry can
  224|       |       be read using a debugger. */
  225|  2.24k|    entry = ht->get_entry_func(ht, key);
  226|  2.24k|    assert(entry == NULL);
  ------------------
  |  Branch (226:5): [True: 2.24k, False: 0]
  ------------------
  227|  2.24k|#endif
  228|       |
  229|  2.24k|    entry = ht->alloc.malloc(sizeof(_Py_hashtable_entry_t));
  230|  2.24k|    if (entry == NULL) {
  ------------------
  |  Branch (230:9): [True: 0, False: 2.24k]
  ------------------
  231|       |        /* memory allocation failed */
  232|      0|        return -1;
  233|      0|    }
  234|       |
  235|  2.24k|    entry->key_hash = ht->hash_func(key);
  236|  2.24k|    entry->key = (void *)key;
  237|  2.24k|    entry->value = value;
  238|       |
  239|  2.24k|    ht->nentries++;
  240|  2.24k|    if ((float)ht->nentries / (float)ht->nbuckets > HASHTABLE_HIGH) {
  ------------------
  |  |   52|  2.24k|#define HASHTABLE_HIGH 0.50
  ------------------
  |  Branch (240:9): [True: 16, False: 2.22k]
  ------------------
  241|     16|        if (hashtable_rehash(ht) < 0) {
  ------------------
  |  Branch (241:13): [True: 0, False: 16]
  ------------------
  242|      0|            ht->nentries--;
  243|      0|            ht->alloc.free(entry);
  244|      0|            return -1;
  245|      0|        }
  246|     16|    }
  247|       |
  248|  2.24k|    size_t index = entry->key_hash & (ht->nbuckets - 1);
  249|  2.24k|    _Py_slist_prepend(&ht->buckets[index], (_Py_slist_item_t*)entry);
  250|  2.24k|    return 0;
  251|  2.24k|}
_Py_hashtable_get:
  256|  16.9k|{
  257|  16.9k|    _Py_hashtable_entry_t *entry = ht->get_entry_func(ht, key);
  258|  16.9k|    if (entry != NULL) {
  ------------------
  |  Branch (258:9): [True: 5.48k, False: 11.5k]
  ------------------
  259|  5.48k|        return entry->value;
  260|  5.48k|    }
  261|  11.5k|    else {
  262|       |        return NULL;
  263|  11.5k|    }
  264|  16.9k|}
_Py_hashtable_new_full:
  328|     12|{
  329|     12|    _Py_hashtable_allocator_t alloc;
  330|     12|    if (allocator == NULL) {
  ------------------
  |  Branch (330:9): [True: 0, False: 12]
  ------------------
  331|      0|        alloc.malloc = PyMem_Malloc;
  332|      0|        alloc.free = PyMem_Free;
  333|      0|    }
  334|     12|    else {
  335|     12|        alloc = *allocator;
  336|     12|    }
  337|       |
  338|     12|    _Py_hashtable_t *ht = (_Py_hashtable_t *)alloc.malloc(sizeof(_Py_hashtable_t));
  339|     12|    if (ht == NULL) {
  ------------------
  |  Branch (339:9): [True: 0, False: 12]
  ------------------
  340|      0|        return ht;
  341|      0|    }
  342|       |
  343|     12|    ht->nbuckets = HASHTABLE_MIN_SIZE;
  ------------------
  |  |   51|     12|#define HASHTABLE_MIN_SIZE 16
  ------------------
  344|     12|    ht->nentries = 0;
  345|       |
  346|     12|    size_t buckets_size = ht->nbuckets * sizeof(ht->buckets[0]);
  347|     12|    ht->buckets = alloc.malloc(buckets_size);
  348|     12|    if (ht->buckets == NULL) {
  ------------------
  |  Branch (348:9): [True: 0, False: 12]
  ------------------
  349|      0|        alloc.free(ht);
  350|      0|        return NULL;
  351|      0|    }
  352|     12|    memset(ht->buckets, 0, buckets_size);
  353|       |
  354|     12|    ht->get_entry_func = _Py_hashtable_get_entry_generic;
  355|     12|    ht->hash_func = hash_func;
  356|     12|    ht->compare_func = compare_func;
  357|     12|    ht->key_destroy_func = key_destroy_func;
  358|     12|    ht->value_destroy_func = value_destroy_func;
  359|     12|    ht->alloc = alloc;
  360|     12|    if (ht->hash_func == _Py_hashtable_hash_ptr
  ------------------
  |  Branch (360:9): [True: 2, False: 10]
  ------------------
  361|      2|        && ht->compare_func == _Py_hashtable_compare_direct)
  ------------------
  |  Branch (361:12): [True: 2, False: 0]
  ------------------
  362|      2|    {
  363|      2|        ht->get_entry_func = _Py_hashtable_get_entry_ptr;
  364|      2|    }
  365|     12|    return ht;
  366|     12|}
hashtable.c:_Py_slist_prepend:
   75|  6.32k|{
   76|  6.32k|    item->next = list->head;
   77|  6.32k|    list->head = item;
   78|  6.32k|}
hashtable.c:hashtable_rehash:
  288|     16|{
  289|     16|    size_t new_size = round_size((size_t)(ht->nentries * HASHTABLE_REHASH_FACTOR));
  ------------------
  |  |   54|     16|#define HASHTABLE_REHASH_FACTOR 2.0 / (HASHTABLE_LOW + HASHTABLE_HIGH)
  |  |  ------------------
  |  |  |  |   53|     16|#define HASHTABLE_LOW 0.10
  |  |  ------------------
  |  |               #define HASHTABLE_REHASH_FACTOR 2.0 / (HASHTABLE_LOW + HASHTABLE_HIGH)
  |  |  ------------------
  |  |  |  |   52|     16|#define HASHTABLE_HIGH 0.50
  |  |  ------------------
  ------------------
  290|     16|    if (new_size == ht->nbuckets) {
  ------------------
  |  Branch (290:9): [True: 0, False: 16]
  ------------------
  291|      0|        return 0;
  292|      0|    }
  293|       |
  294|     16|    size_t buckets_size = new_size * sizeof(ht->buckets[0]);
  295|     16|    _Py_slist_t *new_buckets = ht->alloc.malloc(buckets_size);
  296|     16|    if (new_buckets == NULL) {
  ------------------
  |  Branch (296:9): [True: 0, False: 16]
  ------------------
  297|       |        /* memory allocation failed */
  298|      0|        return -1;
  299|      0|    }
  300|     16|    memset(new_buckets, 0, buckets_size);
  301|       |
  302|  8.17k|    for (size_t bucket = 0; bucket < ht->nbuckets; bucket++) {
  ------------------
  |  Branch (302:29): [True: 8.16k, False: 16]
  ------------------
  303|  8.16k|        _Py_hashtable_entry_t *entry = BUCKETS_HEAD(ht->buckets[bucket]);
  ------------------
  |  |   57|  8.16k|        ((_Py_hashtable_entry_t *)_Py_SLIST_HEAD(&(SLIST)))
  |  |  ------------------
  |  |  |  |   23|  8.16k|#define _Py_SLIST_HEAD(SLIST) _Py_RVALUE(((_Py_slist_t *)(SLIST))->head)
  |  |  |  |  ------------------
  |  |  |  |  |  |  277|  8.16k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  304|  12.2k|        while (entry != NULL) {
  ------------------
  |  Branch (304:16): [True: 4.08k, False: 8.16k]
  ------------------
  305|  4.08k|            assert(ht->hash_func(entry->key) == entry->key_hash);
  ------------------
  |  Branch (305:13): [True: 4.08k, False: 0]
  ------------------
  306|  4.08k|            _Py_hashtable_entry_t *next = ENTRY_NEXT(entry);
  ------------------
  |  |   61|  4.08k|        ((_Py_hashtable_entry_t *)_Py_SLIST_ITEM_NEXT(ENTRY))
  |  |  ------------------
  |  |  |  |   21|  4.08k|#define _Py_SLIST_ITEM_NEXT(ITEM) _Py_RVALUE(((_Py_slist_item_t *)(ITEM))->next)
  |  |  |  |  ------------------
  |  |  |  |  |  |  277|  4.08k|#define _Py_RVALUE(EXPR) ((void)0, (EXPR))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  307|  4.08k|            size_t entry_index = entry->key_hash & (new_size - 1);
  308|       |
  309|  4.08k|            _Py_slist_prepend(&new_buckets[entry_index], (_Py_slist_item_t*)entry);
  310|       |
  311|  4.08k|            entry = next;
  312|  4.08k|        }
  313|  8.16k|    }
  314|       |
  315|     16|    ht->alloc.free(ht->buckets);
  316|     16|    ht->nbuckets = new_size;
  317|     16|    ht->buckets = new_buckets;
  318|     16|    return 0;
  319|     16|}
hashtable.c:round_size:
  109|     16|{
  110|     16|    size_t i;
  111|     16|    if (s < HASHTABLE_MIN_SIZE)
  ------------------
  |  |   51|     16|#define HASHTABLE_MIN_SIZE 16
  ------------------
  |  Branch (111:9): [True: 0, False: 16]
  ------------------
  112|      0|        return HASHTABLE_MIN_SIZE;
  ------------------
  |  |   51|      0|#define HASHTABLE_MIN_SIZE 16
  ------------------
  113|     16|    i = 1;
  114|    152|    while (i < s)
  ------------------
  |  Branch (114:12): [True: 136, False: 16]
  ------------------
  115|    136|        i <<= 1;
  116|     16|    return i;
  117|     16|}

_PyImport_AcquireLock:
  154|    192|{
  155|    192|    _PyRecursiveMutex_Lock(&IMPORT_LOCK(interp));
  ------------------
  |  |  114|    192|    (interp)->imports.lock
  ------------------
  156|    192|}
_PyImport_ReleaseLock:
  160|    192|{
  161|    192|    _PyRecursiveMutex_Unlock(&IMPORT_LOCK(interp));
  ------------------
  |  |  114|    192|    (interp)->imports.lock
  ------------------
  162|    192|}
_PyImport_InitModules:
  178|      2|{
  179|      2|    assert(MODULES(interp) == NULL);
  ------------------
  |  Branch (179:5): [True: 2, False: 0]
  ------------------
  180|      2|    MODULES(interp) = PyDict_New();
  ------------------
  |  |   92|      2|    (interp)->imports.modules
  ------------------
  181|      2|    if (MODULES(interp) == NULL) {
  ------------------
  |  |   92|      2|    (interp)->imports.modules
  ------------------
  |  Branch (181:9): [True: 0, False: 2]
  ------------------
  182|      0|        return NULL;
  183|      0|    }
  184|      2|    return MODULES(interp);
  ------------------
  |  |   92|      2|    (interp)->imports.modules
  ------------------
  185|      2|}
_PyImport_GetModules:
  189|      2|{
  190|      2|    return MODULES(interp);
  ------------------
  |  |   92|      2|    (interp)->imports.modules
  ------------------
  191|      2|}
_PyImport_SetModuleString:
  250|      2|{
  251|      2|    PyThreadState *tstate = _PyThreadState_GET();
  252|       |    PyObject *modules = get_modules_dict(tstate, true);
  253|      2|    return PyMapping_SetItemString(modules, name, m);
  254|      2|}
_PyImport_InitLazyModules:
  273|      2|{
  274|      2|    assert(LAZY_MODULES(interp) == NULL);
  ------------------
  |  Branch (274:5): [True: 2, False: 0]
  ------------------
  275|      2|    LAZY_MODULES(interp) = PyDict_New();
  ------------------
  |  |   96|      2|    (interp)->imports.lazy_modules
  ------------------
  276|      2|    return LAZY_MODULES(interp);
  ------------------
  |  |   96|      2|    (interp)->imports.lazy_modules
  ------------------
  277|      2|}
PyImport_AddModuleRef:
  412|      2|{
  413|      2|    PyObject *name_obj = PyUnicode_FromString(name);
  414|      2|    if (name_obj == NULL) {
  ------------------
  |  Branch (414:9): [True: 0, False: 2]
  ------------------
  415|      0|        return NULL;
  416|      0|    }
  417|      2|    PyThreadState *tstate = _PyThreadState_GET();
  418|      2|    PyObject *module = import_add_module(tstate, name_obj);
  419|      2|    Py_DECREF(name_obj);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  420|      2|    return module;
  421|      2|}
PyImport_AddModuleObject:
  426|      2|{
  427|      2|    PyThreadState *tstate = _PyThreadState_GET();
  428|      2|    PyObject *mod = import_add_module(tstate, name);
  429|      2|    if (!mod) {
  ------------------
  |  Branch (429:9): [True: 0, False: 2]
  ------------------
  430|      0|        return NULL;
  431|      0|    }
  432|       |
  433|       |    // gh-86160: PyImport_AddModuleObject() returns a borrowed reference.
  434|       |    // Create a weak reference to produce a borrowed reference, since it can
  435|       |    // become NULL. sys.modules type can be different than dict and it is not
  436|       |    // guaranteed that it keeps a strong reference to the module. It can be a
  437|       |    // custom mapping with __getitem__() which returns a new object or removes
  438|       |    // returned object, or __setitem__ which does nothing. There is so much
  439|       |    // unknown.  With weakref we can be sure that we get either a reference to
  440|       |    // live object or NULL.
  441|       |    //
  442|       |    // Use PyImport_AddModuleRef() to avoid these issues.
  443|      2|    PyObject *ref = PyWeakref_NewRef(mod, NULL);
  444|      2|    Py_DECREF(mod);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  445|      2|    if (ref == NULL) {
  ------------------
  |  Branch (445:9): [True: 0, False: 2]
  ------------------
  446|      0|        return NULL;
  447|      0|    }
  448|      2|    mod = _PyWeakref_GET_REF(ref);
  449|      2|    Py_DECREF(ref);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  450|      2|    Py_XDECREF(mod);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  451|       |
  452|      2|    if (mod == NULL && !PyErr_Occurred()) {
  ------------------
  |  Branch (452:9): [True: 0, False: 2]
  |  Branch (452:24): [True: 0, False: 0]
  ------------------
  453|      0|        PyErr_SetString(PyExc_RuntimeError,
  454|      0|                        "sys.modules does not hold a strong reference "
  455|      0|                        "to the module");
  456|      0|    }
  457|      2|    return mod; /* borrowed reference */
  458|      2|}
_PyImport_GetNextModuleIndex:
  505|     32|{
  506|     32|    return _Py_atomic_add_ssize(&LAST_MODULE_INDEX, 1) + 1;
  ------------------
  |  |   81|     32|#define LAST_MODULE_INDEX _PyRuntime.imports.last_module_index
  ------------------
  507|     32|}
_PyImport_ResolveNameWithPackageContext:
  885|      8|{
  886|      8|    if (PKGCONTEXT != NULL) {
  ------------------
  |  |  881|      8|# define PKGCONTEXT pkgcontext
  ------------------
  |  Branch (886:9): [True: 0, False: 8]
  ------------------
  887|      0|        const char *p = strrchr(PKGCONTEXT, '.');
  ------------------
  |  |  881|      0|# define PKGCONTEXT pkgcontext
  ------------------
  888|      0|        if (p != NULL && strcmp(name, p+1) == 0) {
  ------------------
  |  Branch (888:13): [True: 0, False: 0]
  |  Branch (888:26): [True: 0, False: 0]
  ------------------
  889|      0|            name = PKGCONTEXT;
  ------------------
  |  |  881|      0|# define PKGCONTEXT pkgcontext
  ------------------
  890|      0|            PKGCONTEXT = NULL;
  ------------------
  |  |  881|      0|# define PKGCONTEXT pkgcontext
  ------------------
  891|      0|        }
  892|      0|    }
  893|      8|    return name;
  894|      8|}
_PyImport_SwapPackageContext:
  898|     48|{
  899|     48|    const char *oldcontext = PKGCONTEXT;
  ------------------
  |  |  881|     48|# define PKGCONTEXT pkgcontext
  ------------------
  900|     48|    PKGCONTEXT = newcontext;
  ------------------
  |  |  881|     48|# define PKGCONTEXT pkgcontext
  ------------------
  901|     48|    return oldcontext;
  902|     48|}
_PyImport_FixupBuiltin:
 2383|      4|{
 2384|      4|    int res = -1;
 2385|      4|    assert(mod != NULL && PyModule_Check(mod));
  ------------------
  |  Branch (2385:5): [True: 4, False: 0]
  |  Branch (2385:5): [True: 4, False: 0]
  ------------------
 2386|       |
 2387|      4|    PyObject *nameobj;
 2388|      4|    nameobj = PyUnicode_InternFromString(name);
 2389|      4|    if (nameobj == NULL) {
  ------------------
  |  Branch (2389:9): [True: 0, False: 4]
  ------------------
 2390|      0|        return -1;
 2391|      0|    }
 2392|       |
 2393|      4|    PyModuleDef *def = _PyModule_GetDefOrNull(mod);
 2394|      4|    if (def == NULL) {
  ------------------
  |  Branch (2394:9): [True: 0, False: 4]
  ------------------
 2395|      0|        assert(!PyErr_Occurred());
  ------------------
  |  Branch (2395:9): [True: 0, False: 0]
  ------------------
 2396|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
 2397|      0|        goto finally;
 2398|      0|    }
 2399|       |
 2400|       |    /* We only use _PyImport_FixupBuiltin() for the core builtin modules
 2401|       |     * (sys and builtins).  These modules are single-phase init with no
 2402|       |     * module state, but we also don't populate def->m_base.m_copy
 2403|       |     * for them. */
 2404|      4|    assert(is_core_module(tstate->interp, nameobj, nameobj));
  ------------------
  |  Branch (2404:5): [True: 4, False: 0]
  ------------------
 2405|      4|    assert_singlephase_def(def);
  ------------------
  |  | 1786|      4|    do {                                                            \
  |  | 1787|      4|        _Py_ext_module_kind kind = _get_extension_kind(def, true);  \
  |  | 1788|      4|        assert(kind == _Py_ext_module_kind_SINGLEPHASE              \
  |  | 1789|      4|                || kind == _Py_ext_module_kind_UNKNOWN);            \
  |  | 1790|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1790:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  |  Branch (2405:5): [True: 4, False: 0]
  |  Branch (2405:5): [True: 0, False: 0]
  ------------------
 2406|      4|    assert(def->m_size == -1);
  ------------------
  |  Branch (2406:5): [True: 4, False: 0]
  ------------------
 2407|      4|    assert(def->m_base.m_copy == NULL);
  ------------------
  |  Branch (2407:5): [True: 4, False: 0]
  ------------------
 2408|      4|    assert(def->m_base.m_index >= 0);
  ------------------
  |  Branch (2408:5): [True: 4, False: 0]
  ------------------
 2409|       |
 2410|       |    /* We aren't using import_find_extension() for core modules,
 2411|       |     * so we have to do the extra check to make sure the module
 2412|       |     * isn't already in the global cache before calling
 2413|       |     * update_global_state_for_extension(). */
 2414|      4|    struct extensions_cache_value *cached
 2415|      4|            = _extensions_cache_get(nameobj, nameobj);
 2416|      4|    if (cached == NULL) {
  ------------------
  |  Branch (2416:9): [True: 4, False: 0]
  ------------------
 2417|      4|        struct singlephase_global_update singlephase = {
 2418|      4|            .m_index=def->m_base.m_index,
 2419|       |            /* We don't want def->m_base.m_copy populated. */
 2420|      4|            .m_dict=NULL,
 2421|      4|            .origin=_Py_ext_module_origin_CORE,
 2422|       |#ifdef Py_GIL_DISABLED
 2423|       |            /* Unused when m_dict == NULL. */
 2424|       |            .md_requires_gil=false,
 2425|       |#endif
 2426|      4|        };
 2427|      4|        cached = update_global_state_for_extension(
 2428|      4|                tstate, nameobj, nameobj, def, &singlephase);
 2429|      4|        if (cached == NULL) {
  ------------------
  |  Branch (2429:13): [True: 0, False: 4]
  ------------------
 2430|      0|            goto finally;
 2431|      0|        }
 2432|      4|    }
 2433|       |
 2434|      4|    if (finish_singlephase_extension(tstate, mod, cached, nameobj, modules) < 0) {
  ------------------
  |  Branch (2434:9): [True: 0, False: 4]
  ------------------
 2435|      0|        goto finally;
 2436|      0|    }
 2437|       |
 2438|      4|    res = 0;
 2439|       |
 2440|      4|finally:
 2441|      4|    Py_DECREF(nameobj);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2442|      4|    return res;
 2443|      4|}
_PyImport_GetBuiltinModuleNames:
 2688|      2|{
 2689|      2|    PyObject *list = PyList_New(0);
 2690|      2|    if (list == NULL) {
  ------------------
  |  Branch (2690:9): [True: 0, False: 2]
  ------------------
 2691|      0|        return NULL;
 2692|      0|    }
 2693|      2|    struct _inittab *inittab = INITTAB;
  ------------------
  |  |   80|      2|#define INITTAB _PyRuntime.imports.inittab
  ------------------
 2694|     78|    for (Py_ssize_t i = 0; inittab[i].name != NULL; i++) {
  ------------------
  |  Branch (2694:28): [True: 76, False: 2]
  ------------------
 2695|     76|        PyObject *name = PyUnicode_FromString(inittab[i].name);
 2696|     76|        if (name == NULL) {
  ------------------
  |  Branch (2696:13): [True: 0, False: 76]
  ------------------
 2697|      0|            Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2698|      0|            return NULL;
 2699|      0|        }
 2700|     76|        if (PyList_Append(list, name) < 0) {
  ------------------
  |  Branch (2700:13): [True: 0, False: 76]
  ------------------
 2701|      0|            Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2702|      0|            Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2703|      0|            return NULL;
 2704|      0|        }
 2705|     76|        Py_DECREF(name);
  ------------------
  |  |  430|     76|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     76|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     76|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2706|     76|    }
 2707|      2|    return list;
 2708|      2|}
PyImport_ImportFrozenModuleObject:
 3233|      2|{
 3234|      2|    PyThreadState *tstate = _PyThreadState_GET();
 3235|      2|    PyObject *co, *m, *d = NULL;
 3236|      2|    int err;
 3237|       |
 3238|      2|    struct frozen_info info;
 3239|      2|    frozen_status status = find_frozen(name, &info);
 3240|      2|    if (status == FROZEN_NOT_FOUND || status == FROZEN_DISABLED) {
  ------------------
  |  Branch (3240:9): [True: 0, False: 2]
  |  Branch (3240:39): [True: 0, False: 2]
  ------------------
 3241|      0|        return 0;
 3242|      0|    }
 3243|      2|    else if (status == FROZEN_BAD_NAME) {
  ------------------
  |  Branch (3243:14): [True: 0, False: 2]
  ------------------
 3244|      0|        return 0;
 3245|      0|    }
 3246|      2|    else if (status != FROZEN_OKAY) {
  ------------------
  |  Branch (3246:14): [True: 0, False: 2]
  ------------------
 3247|      0|        set_frozen_error(status, name);
 3248|      0|        return -1;
 3249|      0|    }
 3250|      2|    co = unmarshal_frozen_code(tstate->interp, &info);
 3251|      2|    if (co == NULL) {
  ------------------
  |  Branch (3251:9): [True: 0, False: 2]
  ------------------
 3252|      0|        return -1;
 3253|      0|    }
 3254|      2|    if (info.is_package) {
  ------------------
  |  Branch (3254:9): [True: 0, False: 2]
  ------------------
 3255|       |        /* Set __path__ to the empty list */
 3256|      0|        PyObject *l;
 3257|      0|        m = import_add_module(tstate, name);
 3258|      0|        if (m == NULL)
  ------------------
  |  Branch (3258:13): [True: 0, False: 0]
  ------------------
 3259|      0|            goto err_return;
 3260|      0|        d = PyModule_GetDict(m);
 3261|      0|        l = PyList_New(0);
 3262|      0|        if (l == NULL) {
  ------------------
  |  Branch (3262:13): [True: 0, False: 0]
  ------------------
 3263|      0|            Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3264|      0|            goto err_return;
 3265|      0|        }
 3266|      0|        err = PyDict_SetItemString(d, "__path__", l);
 3267|      0|        Py_DECREF(l);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3268|      0|        Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3269|      0|        if (err != 0)
  ------------------
  |  Branch (3269:13): [True: 0, False: 0]
  ------------------
 3270|      0|            goto err_return;
 3271|      0|    }
 3272|      2|    d = module_dict_for_exec(tstate, name);
 3273|      2|    if (d == NULL) {
  ------------------
  |  Branch (3273:9): [True: 0, False: 2]
  ------------------
 3274|      0|        goto err_return;
 3275|      0|    }
 3276|      2|    m = exec_code_in_module(tstate, name, d, co);
 3277|      2|    if (m == NULL) {
  ------------------
  |  Branch (3277:9): [True: 0, False: 2]
  ------------------
 3278|      0|        goto err_return;
 3279|      0|    }
 3280|      2|    Py_DECREF(m);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3281|       |    /* Set __origname__ (consumed in FrozenImporter._setup_module()). */
 3282|      2|    PyObject *origname;
 3283|      2|    if (info.origname) {
  ------------------
  |  Branch (3283:9): [True: 2, False: 0]
  ------------------
 3284|      2|        origname = PyUnicode_FromString(info.origname);
 3285|      2|        if (origname == NULL) {
  ------------------
  |  Branch (3285:13): [True: 0, False: 2]
  ------------------
 3286|      0|            goto err_return;
 3287|      0|        }
 3288|      2|    }
 3289|      0|    else {
 3290|      0|        origname = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3291|      0|    }
 3292|      2|    err = PyDict_SetItemString(d, "__origname__", origname);
 3293|      2|    Py_DECREF(origname);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3294|      2|    if (err != 0) {
  ------------------
  |  Branch (3294:9): [True: 0, False: 2]
  ------------------
 3295|      0|        goto err_return;
 3296|      0|    }
 3297|      2|    Py_DECREF(d);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3298|      2|    Py_DECREF(co);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3299|      2|    return 1;
 3300|       |
 3301|      0|err_return:
 3302|      0|    Py_XDECREF(d);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3303|      0|    Py_DECREF(co);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3304|      0|    return -1;
 3305|      2|}
PyImport_ImportFrozenModule:
 3309|      2|{
 3310|      2|    PyObject *nameobj;
 3311|      2|    int ret;
 3312|      2|    nameobj = PyUnicode_InternFromString(name);
 3313|      2|    if (nameobj == NULL)
  ------------------
  |  Branch (3313:9): [True: 0, False: 2]
  ------------------
 3314|      0|        return -1;
 3315|      2|    ret = PyImport_ImportFrozenModuleObject(nameobj);
 3316|      2|    Py_DECREF(nameobj);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3317|      2|    return ret;
 3318|      2|}
_PyImport_GetImportlibLoader:
 3448|      2|{
 3449|      2|    return PyObject_GetAttrString(IMPORTLIB(interp), loader_name);
  ------------------
  |  |   98|      2|    (interp)->imports.importlib
  ------------------
 3450|      2|}
_PyImport_InitDefaultImportFunc:
 3577|      2|{
 3578|       |    // Get the __import__ function
 3579|      2|    PyObject *import_func;
 3580|      2|    if (PyDict_GetItemStringRef(interp->builtins, "__import__", &import_func) <= 0) {
  ------------------
  |  Branch (3580:9): [True: 0, False: 2]
  ------------------
 3581|      0|        return -1;
 3582|      0|    }
 3583|      2|    IMPORT_FUNC(interp) = import_func;
  ------------------
  |  |  108|      2|    (interp)->imports.import_func
  ------------------
 3584|       |
 3585|       |    // Get the __lazy_import__ function
 3586|      2|    if (PyDict_GetItemStringRef(interp->builtins, "__lazy_import__",
  ------------------
  |  Branch (3586:9): [True: 0, False: 2]
  ------------------
 3587|      2|                                &import_func) <= 0) {
 3588|      0|        return -1;
 3589|      0|    }
 3590|      2|    LAZY_IMPORT_FUNC(interp) = import_func;
  ------------------
  |  |  111|      2|    (interp)->imports.lazy_import_func
  ------------------
 3591|      2|    return 0;
 3592|      2|}
_PyImport_IsDefaultImportFunc:
 3596|    124|{
 3597|    124|    return func == IMPORT_FUNC(interp);
  ------------------
  |  |  108|    124|    (interp)->imports.import_func
  ------------------
 3598|    124|}
_PyImport_IsDefaultLazyImportFunc:
 3602|      8|{
 3603|      8|    return func == LAZY_IMPORT_FUNC(interp);
  ------------------
  |  |  111|      8|    (interp)->imports.lazy_import_func
  ------------------
 3604|      8|}
PyImport_ImportModule:
 3611|     10|{
 3612|     10|    PyObject *pname;
 3613|     10|    PyObject *result;
 3614|       |
 3615|     10|    pname = PyUnicode_FromString(name);
 3616|     10|    if (pname == NULL)
  ------------------
  |  Branch (3616:9): [True: 0, False: 10]
  ------------------
 3617|      0|        return NULL;
 3618|     10|    result = PyImport_Import(pname);
 3619|     10|    Py_DECREF(pname);
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3620|     10|    return result;
 3621|     10|}
PyImport_ImportModuleLevelObject:
 4177|    160|{
 4178|    160|    PyThreadState *tstate = _PyThreadState_GET();
 4179|    160|    PyObject *abs_name = NULL;
 4180|    160|    PyObject *final_mod = NULL;
 4181|    160|    PyObject *mod = NULL;
 4182|    160|    PyInterpreterState *interp = tstate->interp;
 4183|    160|    int has_from;
 4184|       |
 4185|    160|    if (name == NULL) {
  ------------------
  |  Branch (4185:9): [True: 0, False: 160]
  ------------------
 4186|      0|        _PyErr_SetString(tstate, PyExc_ValueError, "Empty module name");
 4187|      0|        goto error;
 4188|      0|    }
 4189|       |
 4190|       |    /* The below code is importlib.__import__() & _gcd_import(), ported to C
 4191|       |       for added performance. */
 4192|       |
 4193|    160|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|    160|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|    160|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4193:9): [True: 0, False: 160]
  ------------------
 4194|      0|        _PyErr_SetString(tstate, PyExc_TypeError,
 4195|      0|                         "module name must be a string");
 4196|      0|        goto error;
 4197|      0|    }
 4198|    160|    if (level < 0) {
  ------------------
  |  Branch (4198:9): [True: 0, False: 160]
  ------------------
 4199|      0|        _PyErr_SetString(tstate, PyExc_ValueError, "level must be >= 0");
 4200|      0|        goto error;
 4201|      0|    }
 4202|       |
 4203|    160|    abs_name = get_abs_name(tstate, name, globals, level);
 4204|    160|    if (abs_name == NULL) {
  ------------------
  |  Branch (4204:9): [True: 0, False: 160]
  ------------------
 4205|      0|        goto error;
 4206|      0|    }
 4207|       |
 4208|    160|    mod = import_get_module(tstate, abs_name);
 4209|    160|    if (mod == NULL && _PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (4209:9): [True: 48, False: 112]
  |  Branch (4209:24): [True: 0, False: 48]
  ------------------
 4210|      0|        goto error;
 4211|      0|    }
 4212|       |
 4213|    160|    if (mod != NULL && mod != Py_None) {
  ------------------
  |  |  616|    112|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (4213:9): [True: 112, False: 48]
  |  Branch (4213:24): [True: 112, False: 0]
  ------------------
 4214|    112|        if (import_ensure_initialized(tstate->interp, mod, abs_name) < 0) {
  ------------------
  |  Branch (4214:13): [True: 0, False: 112]
  ------------------
 4215|      0|            goto error;
 4216|      0|        }
 4217|       |        /* Verify the module is still in sys.modules. Another thread may have
 4218|       |           removed it (due to import failure) between our import_get_module()
 4219|       |           call and the _initializing check in import_ensure_initialized().
 4220|       |           If removed, we retry the import to preserve normal semantics: the
 4221|       |           caller gets the exception from the actual import failure rather
 4222|       |           than a synthetic error. */
 4223|    112|        PyObject *mod_check = import_get_module(tstate, abs_name);
 4224|    112|        if (mod_check != mod) {
  ------------------
  |  Branch (4224:13): [True: 0, False: 112]
  ------------------
 4225|      0|            Py_XDECREF(mod_check);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4226|      0|            if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (4226:17): [True: 0, False: 0]
  ------------------
 4227|      0|                goto error;
 4228|      0|            }
 4229|      0|            Py_DECREF(mod);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4230|      0|            mod = import_find_and_load(tstate, abs_name);
 4231|      0|            if (mod == NULL) {
  ------------------
  |  Branch (4231:17): [True: 0, False: 0]
  ------------------
 4232|      0|                goto error;
 4233|      0|            }
 4234|      0|        }
 4235|    112|        else {
 4236|    112|            Py_DECREF(mod_check);
  ------------------
  |  |  430|    112|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4237|    112|        }
 4238|    112|    }
 4239|     48|    else {
 4240|     48|        Py_XDECREF(mod);
  ------------------
  |  |  524|     48|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     48|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     48|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4241|     48|        mod = import_find_and_load(tstate, abs_name);
 4242|     48|        if (mod == NULL) {
  ------------------
  |  Branch (4242:13): [True: 4, False: 44]
  ------------------
 4243|      4|            goto error;
 4244|      4|        }
 4245|     48|    }
 4246|       |
 4247|    156|    has_from = 0;
 4248|    156|    if (fromlist != NULL && fromlist != Py_None) {
  ------------------
  |  |  616|    136|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (4248:9): [True: 136, False: 20]
  |  Branch (4248:29): [True: 52, False: 84]
  ------------------
 4249|     52|        has_from = PyObject_IsTrue(fromlist);
 4250|     52|        if (has_from < 0)
  ------------------
  |  Branch (4250:13): [True: 0, False: 52]
  ------------------
 4251|      0|            goto error;
 4252|     52|    }
 4253|    156|    if (!has_from) {
  ------------------
  |  Branch (4253:9): [True: 118, False: 38]
  ------------------
 4254|    118|        Py_ssize_t len = PyUnicode_GET_LENGTH(name);
  ------------------
  |  |  299|    118|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    118|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    118|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4255|    118|        if (level == 0 || len > 0) {
  ------------------
  |  Branch (4255:13): [True: 118, False: 0]
  |  Branch (4255:27): [True: 0, False: 0]
  ------------------
 4256|    118|            Py_ssize_t dot;
 4257|       |
 4258|    118|            dot = PyUnicode_FindChar(name, '.', 0, len, 1);
 4259|    118|            if (dot == -2) {
  ------------------
  |  Branch (4259:17): [True: 0, False: 118]
  ------------------
 4260|      0|                goto error;
 4261|      0|            }
 4262|       |
 4263|    118|            if (dot == -1) {
  ------------------
  |  Branch (4263:17): [True: 116, False: 2]
  ------------------
 4264|       |                /* No dot in module name, simple exit */
 4265|    116|                final_mod = Py_NewRef(mod);
  ------------------
  |  |  550|    116|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    116|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    116|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4266|    116|                goto error;
 4267|    116|            }
 4268|       |
 4269|      2|            if (level == 0) {
  ------------------
  |  Branch (4269:17): [True: 2, False: 0]
  ------------------
 4270|      2|                PyObject *front = PyUnicode_Substring(name, 0, dot);
 4271|      2|                if (front == NULL) {
  ------------------
  |  Branch (4271:21): [True: 0, False: 2]
  ------------------
 4272|      0|                    goto error;
 4273|      0|                }
 4274|       |
 4275|      2|                final_mod = PyImport_ImportModuleLevelObject(front, NULL, NULL, NULL, 0);
 4276|      2|                Py_DECREF(front);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4277|      2|            }
 4278|      0|            else {
 4279|      0|                Py_ssize_t cut_off = len - dot;
 4280|      0|                Py_ssize_t abs_name_len = PyUnicode_GET_LENGTH(abs_name);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4281|      0|                PyObject *to_return = PyUnicode_Substring(abs_name, 0,
 4282|      0|                                                        abs_name_len - cut_off);
 4283|      0|                if (to_return == NULL) {
  ------------------
  |  Branch (4283:21): [True: 0, False: 0]
  ------------------
 4284|      0|                    goto error;
 4285|      0|                }
 4286|       |
 4287|      0|                final_mod = import_get_module(tstate, to_return);
 4288|      0|                if (final_mod == NULL) {
  ------------------
  |  Branch (4288:21): [True: 0, False: 0]
  ------------------
 4289|      0|                    if (!_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (4289:25): [True: 0, False: 0]
  ------------------
 4290|      0|                        _PyErr_Format(tstate, PyExc_KeyError,
 4291|      0|                                      "%R not in sys.modules as expected",
 4292|      0|                                      to_return);
 4293|      0|                    }
 4294|      0|                    Py_DECREF(to_return);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4295|      0|                    goto error;
 4296|      0|                }
 4297|       |
 4298|      0|                Py_DECREF(to_return);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4299|      0|            }
 4300|      2|        }
 4301|      0|        else {
 4302|      0|            final_mod = Py_NewRef(mod);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4303|      0|        }
 4304|    118|    }
 4305|     38|    else {
 4306|     38|        int has_path = PyObject_HasAttrWithError(mod, &_Py_ID(__path__));
  ------------------
  |  |  917|     38|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     38|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     38|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4307|     38|        if (has_path < 0) {
  ------------------
  |  Branch (4307:13): [True: 0, False: 38]
  ------------------
 4308|      0|            goto error;
 4309|      0|        }
 4310|     38|        if (has_path) {
  ------------------
  |  Branch (4310:13): [True: 2, False: 36]
  ------------------
 4311|      2|            final_mod = PyObject_CallMethodObjArgs(
 4312|      2|                        IMPORTLIB(interp), &_Py_ID(_handle_fromlist),
  ------------------
  |  |   98|      2|    (interp)->imports.importlib
  ------------------
                                      IMPORTLIB(interp), &_Py_ID(_handle_fromlist),
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4313|      2|                        mod, fromlist, IMPORT_FUNC(interp), NULL);
  ------------------
  |  |  108|      2|    (interp)->imports.import_func
  ------------------
 4314|      2|        }
 4315|     36|        else {
 4316|     36|            final_mod = Py_NewRef(mod);
  ------------------
  |  |  550|     36|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4317|     36|        }
 4318|     38|    }
 4319|       |
 4320|    160|  error:
 4321|    160|    Py_XDECREF(abs_name);
  ------------------
  |  |  524|    160|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    160|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    160|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4322|    160|    Py_XDECREF(mod);
  ------------------
  |  |  524|    160|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    160|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    160|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4323|    160|    if (final_mod == NULL) {
  ------------------
  |  Branch (4323:9): [True: 4, False: 156]
  ------------------
 4324|      4|        remove_importlib_frames(tstate);
 4325|      4|    }
 4326|    160|    return final_mod;
 4327|    156|}
_PyImport_LazyImportModuleLevelObject:
 4477|      8|{
 4478|      8|    assert(name != NULL);
  ------------------
  |  Branch (4478:5): [True: 8, False: 0]
  ------------------
 4479|      8|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|      8|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (4479:9): [True: 0, False: 8]
  ------------------
 4480|      0|        _PyErr_Format(tstate, PyExc_TypeError,
 4481|      0|                      "module name must be a string, got %T", name);
 4482|      0|        return NULL;
 4483|      0|    }
 4484|      8|    if (level < 0) {
  ------------------
  |  Branch (4484:9): [True: 0, False: 8]
  ------------------
 4485|      0|        _PyErr_SetString(tstate, PyExc_ValueError, "level must be >= 0");
 4486|      0|        return NULL;
 4487|      0|    }
 4488|       |
 4489|      8|    PyObject *abs_name = get_abs_name(tstate, name, globals, level);
 4490|      8|    if (abs_name == NULL) {
  ------------------
  |  Branch (4490:9): [True: 0, False: 8]
  ------------------
 4491|      0|        return NULL;
 4492|      0|    }
 4493|       |
 4494|      8|    PyInterpreterState *interp = tstate->interp;
 4495|      8|    _PyInterpreterFrame *frame = _PyEval_GetFrame();
 4496|      8|    if (frame == NULL || frame->f_globals != frame->f_locals) {
  ------------------
  |  Branch (4496:9): [True: 0, False: 8]
  |  Branch (4496:26): [True: 0, False: 8]
  ------------------
 4497|      0|        Py_DECREF(abs_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4498|      0|        PyErr_SetString(PyExc_SyntaxError,
 4499|      0|                        "'lazy import' is only allowed at module level");
 4500|      0|        return NULL;
 4501|      0|    }
 4502|       |
 4503|       |    // Check if the filter disables the lazy import.
 4504|       |    // We must hold a reference to the filter while calling it to prevent
 4505|       |    // use-after-free if another thread replaces it via
 4506|       |    // PyImport_SetLazyImportsFilter.
 4507|      8|    LAZY_IMPORTS_LOCK(interp);
 4508|      8|    PyObject *filter = Py_XNewRef(LAZY_IMPORTS_FILTER(interp));
  ------------------
  |  |  551|      8|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4509|      8|    LAZY_IMPORTS_UNLOCK(interp);
 4510|       |
 4511|      8|    if (filter != NULL) {
  ------------------
  |  Branch (4511:9): [True: 0, False: 8]
  ------------------
 4512|      0|        PyObject *modname;
 4513|      0|        if (PyDict_GetItemRef(globals, &_Py_ID(__name__), &modname) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4513:13): [True: 0, False: 0]
  ------------------
 4514|      0|            Py_DECREF(filter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4515|      0|            Py_DECREF(abs_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4516|      0|            return NULL;
 4517|      0|        }
 4518|      0|        if (modname == NULL) {
  ------------------
  |  Branch (4518:13): [True: 0, False: 0]
  ------------------
 4519|      0|            assert(!PyErr_Occurred());
  ------------------
  |  Branch (4519:13): [True: 0, False: 0]
  ------------------
 4520|      0|            modname = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4521|      0|        }
 4522|      0|        if (fromlist == NULL) {
  ------------------
  |  Branch (4522:13): [True: 0, False: 0]
  ------------------
 4523|      0|            assert(!PyErr_Occurred());
  ------------------
  |  Branch (4523:13): [True: 0, False: 0]
  ------------------
 4524|      0|            fromlist = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4525|      0|        }
 4526|      0|        PyObject *args[] = {modname, abs_name, fromlist};
 4527|      0|        PyObject *res = PyObject_Vectorcall(filter, args, 3, NULL);
 4528|       |
 4529|      0|        Py_DECREF(modname);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4530|      0|        Py_DECREF(filter);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4531|       |
 4532|      0|        if (res == NULL) {
  ------------------
  |  Branch (4532:13): [True: 0, False: 0]
  ------------------
 4533|      0|            Py_DECREF(abs_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4534|      0|            return NULL;
 4535|      0|        }
 4536|       |
 4537|      0|        int is_true = PyObject_IsTrue(res);
 4538|      0|        Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4539|       |
 4540|      0|        if (is_true < 0) {
  ------------------
  |  Branch (4540:13): [True: 0, False: 0]
  ------------------
 4541|      0|            Py_DECREF(abs_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4542|      0|            return NULL;
 4543|      0|        }
 4544|      0|        if (!is_true) {
  ------------------
  |  Branch (4544:13): [True: 0, False: 0]
  ------------------
 4545|      0|            Py_DECREF(abs_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4546|      0|            return PyImport_ImportModuleLevelObject(
 4547|      0|                name, globals, locals, fromlist, level
 4548|      0|            );
 4549|      0|        }
 4550|      0|    }
 4551|       |
 4552|       |    // here, 'filter' is either NULL or is equivalent to a borrowed reference
 4553|      8|    PyObject *res = _PyLazyImport_New(frame, builtins, abs_name, fromlist);
 4554|      8|    if (res == NULL) {
  ------------------
  |  Branch (4554:9): [True: 0, False: 8]
  ------------------
 4555|      0|        Py_DECREF(abs_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4556|      0|        return NULL;
 4557|      0|    }
 4558|      8|    if (fromlist && PyUnicode_Check(fromlist)) {
  ------------------
  |  |  103|      8|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4558:9): [True: 8, False: 0]
  ------------------
 4559|      0|        if (register_from_lazy_on_parent(tstate, abs_name, fromlist,
  ------------------
  |  Branch (4559:13): [True: 0, False: 0]
  ------------------
 4560|      0|                                         builtins) < 0) {
 4561|      0|            goto error;
 4562|      0|        }
 4563|      0|    }
 4564|      8|    else if (fromlist && PyTuple_Check(fromlist) &&
  ------------------
  |  |   27|      8|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     16|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4564:14): [True: 8, False: 0]
  ------------------
 4565|      0|             PyTuple_GET_SIZE(fromlist)) {
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (27:30): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 4566|      0|        for (Py_ssize_t i = 0; i < PyTuple_GET_SIZE(fromlist); i++) {
  ------------------
  |  |   27|      0|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4566:32): [True: 0, False: 0]
  ------------------
 4567|      0|            if (register_from_lazy_on_parent(tstate, abs_name,
  ------------------
  |  Branch (4567:17): [True: 0, False: 0]
  ------------------
 4568|      0|                                             PyTuple_GET_ITEM(fromlist, i),
  ------------------
  |  |   29|      0|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      0|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4568:46): [True: 0, False: 0]
  ------------------
 4569|      0|                                             builtins) < 0)
 4570|      0|            {
 4571|      0|                goto error;
 4572|      0|            }
 4573|      0|        }
 4574|      0|    }
 4575|      8|    else if (register_lazy_on_parent(tstate, abs_name, builtins) < 0) {
  ------------------
  |  Branch (4575:14): [True: 0, False: 8]
  ------------------
 4576|      0|        goto error;
 4577|      0|    }
 4578|       |
 4579|      8|    Py_DECREF(abs_name);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4580|      8|    return res;
 4581|      0|error:
 4582|      0|    Py_DECREF(abs_name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4583|      0|    Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4584|       |    return NULL;
 4585|      8|}
PyImport_ImportModuleLevel:
 4590|     14|{
 4591|     14|    PyObject *nameobj, *mod;
 4592|     14|    nameobj = PyUnicode_FromString(name);
 4593|     14|    if (nameobj == NULL)
  ------------------
  |  Branch (4593:9): [True: 0, False: 14]
  ------------------
 4594|      0|        return NULL;
 4595|     14|    mod = PyImport_ImportModuleLevelObject(nameobj, globals, locals,
 4596|     14|                                           fromlist, level);
 4597|     14|    Py_DECREF(nameobj);
  ------------------
  |  |  430|     14|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4598|     14|    return mod;
 4599|     14|}
PyImport_Import:
 4638|     14|{
 4639|     14|    PyThreadState *tstate = _PyThreadState_GET();
 4640|     14|    PyObject *globals = NULL;
 4641|     14|    PyObject *import = NULL;
 4642|     14|    PyObject *builtins = NULL;
 4643|     14|    PyObject *r = NULL;
 4644|       |
 4645|     14|    PyObject *from_list = PyList_New(0);
 4646|     14|    if (from_list == NULL) {
  ------------------
  |  Branch (4646:9): [True: 0, False: 14]
  ------------------
 4647|      0|        goto err;
 4648|      0|    }
 4649|       |
 4650|       |    /* Get the builtins from current globals */
 4651|     14|    globals = PyEval_GetGlobals();  // borrowed
 4652|     14|    if (globals != NULL) {
  ------------------
  |  Branch (4652:9): [True: 0, False: 14]
  ------------------
 4653|      0|        Py_INCREF(globals);
  ------------------
  |  |  310|      0|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4654|       |        // XXX Use _PyEval_EnsureBuiltins()?
 4655|      0|        builtins = PyObject_GetItem(globals, &_Py_ID(__builtins__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4656|      0|        if (builtins == NULL) {
  ------------------
  |  Branch (4656:13): [True: 0, False: 0]
  ------------------
 4657|       |            // XXX Fall back to interp->builtins or sys.modules['builtins']?
 4658|      0|            goto err;
 4659|      0|        }
 4660|      0|    }
 4661|     14|    else if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (4661:14): [True: 0, False: 14]
  ------------------
 4662|      0|        goto err;
 4663|      0|    }
 4664|     14|    else {
 4665|       |        /* No globals -- use standard builtins, and fake globals */
 4666|     14|        globals = PyDict_New();
 4667|     14|        if (globals == NULL) {
  ------------------
  |  Branch (4667:13): [True: 0, False: 14]
  ------------------
 4668|      0|            goto err;
 4669|      0|        }
 4670|     14|        if (_PyEval_EnsureBuiltinsWithModule(tstate, globals, &builtins) < 0) {
  ------------------
  |  Branch (4670:13): [True: 0, False: 14]
  ------------------
 4671|      0|            goto err;
 4672|      0|        }
 4673|     14|    }
 4674|       |
 4675|       |    /* Get the __import__ function from the builtins */
 4676|     14|    if (PyDict_Check(builtins)) {
  ------------------
  |  |   18|     14|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     14|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 0, False: 14]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4677|      0|        import = PyObject_GetItem(builtins, &_Py_ID(__import__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4678|      0|        if (import == NULL) {
  ------------------
  |  Branch (4678:13): [True: 0, False: 0]
  ------------------
 4679|      0|            _PyErr_SetObject(tstate, PyExc_KeyError, &_Py_ID(__import__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4680|      0|        }
 4681|      0|    }
 4682|     14|    else
 4683|     14|        import = PyObject_GetAttr(builtins, &_Py_ID(__import__));
  ------------------
  |  |  917|     14|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     14|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     14|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4684|     14|    if (import == NULL)
  ------------------
  |  Branch (4684:9): [True: 0, False: 14]
  ------------------
 4685|      0|        goto err;
 4686|       |
 4687|       |    /* Call the __import__ function with the proper argument list
 4688|       |       Always use absolute import here.
 4689|       |       Calling for side-effect of import. */
 4690|     14|    r = PyObject_CallFunction(import, "OOOOi", module_name, globals,
 4691|     14|                              globals, from_list, 0, NULL);
 4692|     14|    if (r == NULL)
  ------------------
  |  Branch (4692:9): [True: 0, False: 14]
  ------------------
 4693|      0|        goto err;
 4694|     14|    Py_DECREF(r);
  ------------------
  |  |  430|     14|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4695|       |
 4696|     14|    r = import_get_module(tstate, module_name);
 4697|     14|    if (r == NULL && !_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (4697:9): [True: 0, False: 14]
  |  Branch (4697:22): [True: 0, False: 0]
  ------------------
 4698|      0|        _PyErr_SetObject(tstate, PyExc_KeyError, module_name);
 4699|      0|    }
 4700|       |
 4701|     14|  err:
 4702|     14|    Py_XDECREF(globals);
  ------------------
  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4703|     14|    Py_XDECREF(builtins);
  ------------------
  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4704|     14|    Py_XDECREF(import);
  ------------------
  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4705|     14|    Py_XDECREF(from_list);
  ------------------
  |  |  524|     14|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4706|       |
 4707|     14|    return r;
 4708|     14|}
_PyImport_Init:
 4717|      2|{
 4718|      2|    if (INITTAB != NULL) {
  ------------------
  |  |   80|      2|#define INITTAB _PyRuntime.imports.inittab
  ------------------
  |  Branch (4718:9): [True: 0, False: 2]
  ------------------
 4719|      0|        return _PyStatus_ERR("global import state already initialized");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4720|      0|    }
 4721|      2|    if (init_builtin_modules_table() != 0) {
  ------------------
  |  Branch (4721:9): [True: 0, False: 2]
  ------------------
 4722|      0|        return PyStatus_NoMemory();
 4723|      0|    }
 4724|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4725|      2|}
_PyImport_InitCore:
 4757|      2|{
 4758|       |    // XXX Initialize here: interp->modules and interp->import_func.
 4759|       |    // XXX Initialize here: sys.modules and sys.meta_path.
 4760|       |
 4761|      2|    if (importlib) {
  ------------------
  |  Branch (4761:9): [True: 2, False: 0]
  ------------------
 4762|       |        /* This call sets up builtin and frozen import support */
 4763|      2|        if (init_importlib(tstate, sysmod) < 0) {
  ------------------
  |  Branch (4763:13): [True: 0, False: 2]
  ------------------
 4764|      0|            return _PyStatus_ERR("failed to initialize importlib");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4765|      0|        }
 4766|      2|    }
 4767|       |
 4768|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4769|      2|}
_PyImport_InitExternal:
 4862|      2|{
 4863|      2|    int verbose = _PyInterpreterState_GetConfig(tstate->interp)->verbose;
 4864|       |
 4865|       |    // XXX Initialize here: sys.path_hooks and sys.path_importer_cache.
 4866|       |
 4867|      2|    if (init_importlib_external(tstate->interp) != 0) {
  ------------------
  |  Branch (4867:9): [True: 0, False: 2]
  ------------------
 4868|      0|        _PyErr_Print(tstate);
 4869|      0|        return _PyStatus_ERR("external importer setup failed");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4870|      0|    }
 4871|       |
 4872|      2|    if (init_zipimport(tstate, verbose) != 0) {
  ------------------
  |  Branch (4872:9): [True: 0, False: 2]
  ------------------
 4873|      0|        PyErr_Print();
 4874|      0|        return _PyStatus_ERR("initializing zipimport failed");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4875|      0|    }
 4876|       |
 4877|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4878|      2|}
PyImport_ImportModuleAttr:
 4904|      4|{
 4905|      4|    PyObject *mod = PyImport_Import(modname);
 4906|      4|    if (mod == NULL) {
  ------------------
  |  Branch (4906:9): [True: 0, False: 4]
  ------------------
 4907|      0|        return NULL;
 4908|      0|    }
 4909|      4|    PyObject *result = PyObject_GetAttr(mod, attrname);
 4910|      4|    Py_DECREF(mod);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4911|      4|    return result;
 4912|      4|}
PyImport_ImportModuleAttrString:
 4916|      4|{
 4917|      4|    PyObject *pmodname = PyUnicode_FromString(modname);
 4918|      4|    if (pmodname == NULL) {
  ------------------
  |  Branch (4918:9): [True: 0, False: 4]
  ------------------
 4919|      0|        return NULL;
 4920|      0|    }
 4921|      4|    PyObject *pattrname = PyUnicode_FromString(attrname);
 4922|      4|    if (pattrname == NULL) {
  ------------------
  |  Branch (4922:9): [True: 0, False: 4]
  ------------------
 4923|      0|        Py_DECREF(pmodname);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4924|      0|        return NULL;
 4925|      0|    }
 4926|      4|    PyObject *result = PyImport_ImportModuleAttr(pmodname, pattrname);
 4927|      4|    Py_DECREF(pattrname);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4928|      4|    Py_DECREF(pmodname);
  ------------------
  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4929|      4|    return result;
 4930|      4|}
PyImport_GetLazyImportsMode:
 4980|     98|{
 4981|     98|    PyInterpreterState *interp = _PyInterpreterState_GET();
 4982|     98|    return FT_ATOMIC_LOAD_INT_RELAXED(LAZY_IMPORTS_MODE(interp));
  ------------------
  |  |  186|     98|#define FT_ATOMIC_LOAD_INT_RELAXED(value) value
  ------------------
 4983|     98|}
PyInit__imp:
 5741|      2|{
 5742|      2|    return PyModuleDef_Init(&imp_module);
 5743|      2|}
import.c:get_modules_dict:
  215|    320|{
  216|       |    /* Technically, it would make sense to incref the dict,
  217|       |     * since sys.modules could be swapped out and decref'ed to 0
  218|       |     * before the caller is done using it.  However, that is highly
  219|       |     * unlikely, especially since we can rely on a global lock
  220|       |     * (i.e. the GIL) for thread-safety. */
  221|    320|    PyObject *modules = MODULES(tstate->interp);
  ------------------
  |  |   92|    320|    (interp)->imports.modules
  ------------------
  222|    320|    if (modules == NULL) {
  ------------------
  |  Branch (222:9): [True: 0, False: 320]
  ------------------
  223|      0|        if (fatal) {
  ------------------
  |  Branch (223:13): [True: 0, False: 0]
  ------------------
  224|      0|            Py_FatalError("interpreter has no modules dictionary");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  225|      0|        }
  226|      0|        _PyErr_SetString(tstate, PyExc_RuntimeError,
  227|      0|                         "unable to get sys.modules");
  228|      0|        return NULL;
  229|      0|    }
  230|    320|    return modules;
  231|    320|}
import.c:import_get_module:
  258|    288|{
  259|    288|    PyObject *modules = get_modules_dict(tstate, false);
  260|    288|    if (modules == NULL) {
  ------------------
  |  Branch (260:9): [True: 0, False: 288]
  ------------------
  261|      0|        return NULL;
  262|      0|    }
  263|       |
  264|    288|    PyObject *m;
  265|    288|    Py_INCREF(modules);
  ------------------
  |  |  310|    288|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    288|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    288|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  266|    288|    (void)PyMapping_GetOptionalItem(modules, name, &m);
  267|    288|    Py_DECREF(modules);
  ------------------
  |  |  430|    288|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    288|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    288|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  268|    288|    return m;
  269|    288|}
import.c:import_ensure_initialized:
  287|    112|{
  288|    112|    PyObject *spec;
  289|       |
  290|       |    /* Optimization: only call _bootstrap._lock_unlock_module() if
  291|       |       __spec__._initializing is true.
  292|       |       NOTE: because of this, initializing must be set *before*
  293|       |       stuffing the new module in sys.modules.
  294|       |    */
  295|    112|    int rc = PyObject_GetOptionalAttr(mod, &_Py_ID(__spec__), &spec);
  ------------------
  |  |  917|    112|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|    112|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|    112|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  296|    112|    if (rc > 0) {
  ------------------
  |  Branch (296:9): [True: 112, False: 0]
  ------------------
  297|    112|        rc = _PyModuleSpec_IsInitializing(spec);
  298|    112|        Py_DECREF(spec);
  ------------------
  |  |  430|    112|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    112|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    112|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  299|    112|    }
  300|    112|    if (rc == 0) {
  ------------------
  |  Branch (300:9): [True: 102, False: 10]
  ------------------
  301|    102|        goto done;
  302|    102|    }
  303|     10|    else if (rc < 0) {
  ------------------
  |  Branch (303:14): [True: 0, False: 10]
  ------------------
  304|      0|        return rc;
  305|      0|    }
  306|       |
  307|       |    /* Wait until module is done importing. */
  308|     10|    PyObject *value = PyObject_CallMethodOneArg(
  309|     10|        IMPORTLIB(interp), &_Py_ID(_lock_unlock_module), name);
  ------------------
  |  |   98|     10|    (interp)->imports.importlib
  ------------------
                      IMPORTLIB(interp), &_Py_ID(_lock_unlock_module), name);
  ------------------
  |  |  917|     10|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     10|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     10|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  310|     10|    if (value == NULL) {
  ------------------
  |  Branch (310:9): [True: 0, False: 10]
  ------------------
  311|      0|        return -1;
  312|      0|    }
  313|     10|    Py_DECREF(value);
  ------------------
  |  |  430|     10|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  314|       |
  315|    112|done:
  316|       |    /* When -X importtime=2, print an import time entry even if an
  317|       |       imported module has already been loaded.
  318|       |     */
  319|    112|    if (_PyInterpreterState_GetConfig(interp)->import_time == 2) {
  ------------------
  |  Branch (319:9): [True: 0, False: 112]
  ------------------
  320|      0|        _IMPORT_TIME_HEADER(interp);
  ------------------
  |  |  135|      0|    do {                                                                      \
  |  |  136|      0|        if (FIND_AND_LOAD((interp)).header) {                                 \
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  |  |  |  Branch (136:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  137|      0|            fputs("import time: self [us] | cumulative | imported package\n", \
  |  |  138|      0|                  stderr);                                                    \
  |  |  139|      0|            FIND_AND_LOAD((interp)).header = 0;                               \
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  |  |  140|      0|        }                                                                     \
  |  |  141|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (141:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  321|      0|#define import_level FIND_AND_LOAD(interp).import_level
  322|      0|        fprintf(stderr, "import time: cached    | cached     | %*s\n",
  323|      0|                import_level*2, PyUnicode_AsUTF8(name));
  ------------------
  |  |  321|      0|#define import_level FIND_AND_LOAD(interp).import_level
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
  324|      0|#undef import_level
  325|      0|    }
  326|       |
  327|    112|    return 0;
  328|     10|}
import.c:import_add_module:
  397|      6|{
  398|      6|    PyObject *modules = get_modules_dict(tstate, false);
  399|      6|    if (modules == NULL) {
  ------------------
  |  Branch (399:9): [True: 0, False: 6]
  ------------------
  400|      0|        return NULL;
  401|      0|    }
  402|       |
  403|      6|    PyObject *m;
  404|      6|    Py_BEGIN_CRITICAL_SECTION(modules);
  ------------------
  |  |   51|      6|    {
  ------------------
  405|      6|    m = import_add_module_lock_held(modules, name);
  406|      6|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      6|    }
  ------------------
  407|      6|    return m;
  408|      6|}
import.c:import_add_module_lock_held:
  375|      6|{
  376|      6|    PyObject *m;
  377|      6|    if (PyMapping_GetOptionalItem(modules, name, &m) < 0) {
  ------------------
  |  Branch (377:9): [True: 0, False: 6]
  ------------------
  378|      0|        return NULL;
  379|      0|    }
  380|      6|    if (m != NULL && PyModule_Check(m)) {
  ------------------
  |  |   12|      2|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|      2|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (378:40): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (380:9): [True: 2, False: 4]
  ------------------
  381|      2|        return m;
  382|      2|    }
  383|      4|    Py_XDECREF(m);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  384|      4|    m = PyModule_NewObject(name);
  385|      4|    if (m == NULL)
  ------------------
  |  Branch (385:9): [True: 0, False: 4]
  ------------------
  386|      0|        return NULL;
  387|      4|    if (PyObject_SetItem(modules, name, m) != 0) {
  ------------------
  |  Branch (387:9): [True: 0, False: 4]
  ------------------
  388|      0|        Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  389|      0|        return NULL;
  390|      0|    }
  391|       |
  392|      4|    return m;
  393|      4|}
import.c:_get_cached_module_index:
 1120|      4|{
 1121|      4|    assert(cached->m_index > 0);
  ------------------
  |  Branch (1121:5): [True: 4, False: 0]
  ------------------
 1122|      4|    return cached->m_index;
 1123|      4|}
import.c:_modules_by_index_set:
  575|      4|{
  576|      4|    assert(index > 0);
  ------------------
  |  Branch (576:5): [True: 4, False: 0]
  ------------------
  577|       |
  578|      4|    if (MODULES_BY_INDEX(interp) == NULL) {
  ------------------
  |  |   94|      4|    (interp)->imports.modules_by_index
  ------------------
  |  Branch (578:9): [True: 2, False: 2]
  ------------------
  579|      2|        MODULES_BY_INDEX(interp) = PyList_New(0);
  ------------------
  |  |   94|      2|    (interp)->imports.modules_by_index
  ------------------
  580|      2|        if (MODULES_BY_INDEX(interp) == NULL) {
  ------------------
  |  |   94|      2|    (interp)->imports.modules_by_index
  ------------------
  |  Branch (580:13): [True: 0, False: 2]
  ------------------
  581|      0|            return -1;
  582|      0|        }
  583|      2|    }
  584|       |
  585|     14|    while (PyList_GET_SIZE(MODULES_BY_INDEX(interp)) <= index) {
  ------------------
  |  |   38|     14|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (585:12): [True: 10, False: 4]
  ------------------
  586|     10|        if (PyList_Append(MODULES_BY_INDEX(interp), Py_None) < 0) {
  ------------------
  |  |   94|     10|    (interp)->imports.modules_by_index
  ------------------
                      if (PyList_Append(MODULES_BY_INDEX(interp), Py_None) < 0) {
  ------------------
  |  |  616|     10|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (586:13): [True: 0, False: 10]
  ------------------
  587|      0|            return -1;
  588|      0|        }
  589|     10|    }
  590|       |
  591|      4|    return PyList_SetItem(MODULES_BY_INDEX(interp), index, Py_NewRef(module));
  ------------------
  |  |   94|      4|    (interp)->imports.modules_by_index
  ------------------
                  return PyList_SetItem(MODULES_BY_INDEX(interp), index, Py_NewRef(module));
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  592|      4|}
import.c:switch_to_main_interpreter:
 1664|     24|{
 1665|     24|    if (_Py_IsMainInterpreter(tstate->interp)) {
  ------------------
  |  Branch (1665:9): [True: 24, False: 0]
  ------------------
 1666|     24|        return tstate;
 1667|     24|    }
 1668|      0|    PyThreadState *main_tstate = _PyThreadState_NewBound(
 1669|      0|            _PyInterpreterState_Main(), _PyThreadState_WHENCE_EXEC);
  ------------------
  |  |  109|      0|#  define _PyThreadState_WHENCE_EXEC 5
  ------------------
 1670|      0|    if (main_tstate == NULL) {
  ------------------
  |  Branch (1670:9): [True: 0, False: 0]
  ------------------
 1671|      0|        return NULL;
 1672|      0|    }
 1673|      0|#ifndef NDEBUG
 1674|      0|    PyThreadState *old_tstate = PyThreadState_Swap(main_tstate);
 1675|      0|    assert(old_tstate == tstate);
  ------------------
  |  Branch (1675:5): [True: 0, False: 0]
  ------------------
 1676|       |#else
 1677|       |    (void)PyThreadState_Swap(main_tstate);
 1678|       |#endif
 1679|      0|    return main_tstate;
 1680|      0|}
import.c:extensions_lock_acquire:
 1033|     36|{
 1034|     36|    PyMutex_Lock(&_PyRuntime.imports.extensions.mutex);
  ------------------
  |  |   59|     36|#define PyMutex_Lock _PyMutex_Lock
  ------------------
 1035|     36|}
import.c:_extensions_cache_find_unlocked:
 1382|     36|{
 1383|     36|    if (EXTENSIONS.hashtable == NULL) {
  ------------------
  |  |   82|     36|#define EXTENSIONS _PyRuntime.imports.extensions
  ------------------
  |  Branch (1383:9): [True: 4, False: 32]
  ------------------
 1384|      4|        return NULL;
 1385|      4|    }
 1386|     32|    void *key = hashtable_key_from_2_strings(path, name, HTSEP);
  ------------------
  |  | 1359|     32|#define HTSEP ':'
  ------------------
 1387|     32|    if (key == NULL) {
  ------------------
  |  Branch (1387:9): [True: 0, False: 32]
  ------------------
 1388|      0|        return NULL;
 1389|      0|    }
 1390|     32|    _Py_hashtable_entry_t *entry =
 1391|     32|            _Py_hashtable_get_entry(EXTENSIONS.hashtable, key);
  ------------------
  |  |   82|     32|#define EXTENSIONS _PyRuntime.imports.extensions
  ------------------
 1392|     32|    if (p_key != NULL) {
  ------------------
  |  Branch (1392:9): [True: 4, False: 28]
  ------------------
 1393|      4|        *p_key = key;
 1394|      4|    }
 1395|     28|    else {
 1396|     28|        hashtable_destroy_str(key);
 1397|     28|    }
 1398|     32|    return entry;
 1399|     32|}
import.c:hashtable_key_from_2_strings:
 1278|     32|{
 1279|     32|    const char *str1_data = _PyUnicode_AsUTF8NoNUL(str1);
 1280|     32|    const char *str2_data = _PyUnicode_AsUTF8NoNUL(str2);
 1281|     32|    if (str1_data == NULL || str2_data == NULL) {
  ------------------
  |  Branch (1281:9): [True: 0, False: 32]
  |  Branch (1281:30): [True: 0, False: 32]
  ------------------
 1282|      0|        return NULL;
 1283|      0|    }
 1284|     32|    Py_ssize_t str1_len = strlen(str1_data);
 1285|     32|    Py_ssize_t str2_len = strlen(str2_data);
 1286|       |
 1287|       |    /* Make sure sep and the NULL byte won't cause an overflow. */
 1288|     32|    assert(SIZE_MAX - str1_len - str2_len > 2);
  ------------------
  |  Branch (1288:5): [True: 32, False: 0]
  ------------------
 1289|     32|    size_t size = str1_len + 1 + str2_len + 1;
 1290|       |
 1291|       |    // XXX Use a buffer if it's a temp value (every case but "set").
 1292|     32|    char *key = PyMem_RawMalloc(size);
 1293|     32|    if (key == NULL) {
  ------------------
  |  Branch (1293:9): [True: 0, False: 32]
  ------------------
 1294|      0|        PyErr_NoMemory();
 1295|      0|        return NULL;
 1296|      0|    }
 1297|       |
 1298|     32|    memcpy(key, str1_data, str1_len);
 1299|     32|    key[str1_len] = sep;
 1300|     32|    memcpy(key + str1_len + 1, str2_data, str2_len);
 1301|     32|    key[size - 1] = '\0';
 1302|     32|    assert(strlen(key) == size - 1);
  ------------------
  |  Branch (1302:5): [True: 32, False: 0]
  ------------------
 1303|     32|    return key;
 1304|     32|}
import.c:hashtable_destroy_str:
 1320|     28|{
 1321|     28|    PyMem_RawFree(ptr);
 1322|     28|}
import.c:extensions_lock_release:
 1039|     36|{
 1040|     36|    PyMutex_Unlock(&_PyRuntime.imports.extensions.mutex);
  ------------------
  |  |   70|     36|#define PyMutex_Unlock _PyMutex_Unlock
  ------------------
 1041|     36|}
import.c:is_core_module:
 1733|     32|{
 1734|       |    /* This might be called before the core dict copies are in place,
 1735|       |       so we can't rely on get_core_module_dict() here. */
 1736|     32|    if (path == name) {
  ------------------
  |  Branch (1736:9): [True: 32, False: 0]
  ------------------
 1737|     32|        if (PyUnicode_CompareWithASCIIString(name, "sys") == 0) {
  ------------------
  |  Branch (1737:13): [True: 4, False: 28]
  ------------------
 1738|      4|            return 1;
 1739|      4|        }
 1740|     28|        if (PyUnicode_CompareWithASCIIString(name, "builtins") == 0) {
  ------------------
  |  Branch (1740:13): [True: 4, False: 24]
  ------------------
 1741|      4|            return 1;
 1742|      4|        }
 1743|     28|    }
 1744|     24|    return 0;
 1745|     32|}
import.c:_get_extension_kind:
 1750|     28|{
 1751|     28|    _Py_ext_module_kind kind;
 1752|     28|    if (def == NULL) {
  ------------------
  |  Branch (1752:9): [True: 0, False: 28]
  ------------------
 1753|       |        /* It must be a module created by reload_singlephase_extension()
 1754|       |         * from m_copy.  Ideally we'd do away with this case. */
 1755|      0|        kind = _Py_ext_module_kind_SINGLEPHASE;
 1756|      0|    }
 1757|     28|    else if (def->m_slots != NULL) {
  ------------------
  |  Branch (1757:14): [True: 24, False: 4]
  ------------------
 1758|     24|        kind = _Py_ext_module_kind_MULTIPHASE;
 1759|     24|    }
 1760|      4|    else if (check_size && def->m_size == -1) {
  ------------------
  |  Branch (1760:14): [True: 4, False: 0]
  |  Branch (1760:28): [True: 4, False: 0]
  ------------------
 1761|      4|        kind = _Py_ext_module_kind_SINGLEPHASE;
 1762|      4|    }
 1763|      0|    else if (def->m_base.m_init != NULL) {
  ------------------
  |  Branch (1763:14): [True: 0, False: 0]
  ------------------
 1764|      0|        kind = _Py_ext_module_kind_SINGLEPHASE;
 1765|      0|    }
 1766|      0|    else {
 1767|       |        // This is probably single-phase init, but a multi-phase
 1768|       |        // module *can* have NULL m_slots.
 1769|      0|        kind = _Py_ext_module_kind_UNKNOWN;
 1770|      0|    }
 1771|     28|    return kind;
 1772|     28|}
import.c:_extensions_cache_get:
 1404|     32|{
 1405|     32|    struct extensions_cache_value *value = NULL;
 1406|     32|    extensions_lock_acquire();
 1407|       |
 1408|     32|    _Py_hashtable_entry_t *entry =
 1409|     32|            _extensions_cache_find_unlocked(path, name, NULL);
 1410|     32|    if (entry == NULL) {
  ------------------
  |  Branch (1410:9): [True: 32, False: 0]
  ------------------
 1411|       |        /* It was never added. */
 1412|     32|        goto finally;
 1413|     32|    }
 1414|      0|    value = (struct extensions_cache_value *)entry->value;
 1415|       |
 1416|     32|finally:
 1417|     32|    extensions_lock_release();
 1418|     32|    return value;
 1419|      0|}
import.c:update_global_state_for_extension:
 1818|      4|{
 1819|      4|    struct extensions_cache_value *cached = NULL;
 1820|      4|    PyModInitFunction m_init = NULL;
 1821|      4|    PyObject *m_dict = NULL;
 1822|       |
 1823|       |    /* Set up for _extensions_cache_set(). */
 1824|      4|    if (singlephase == NULL) {
  ------------------
  |  Branch (1824:9): [True: 0, False: 4]
  ------------------
 1825|      0|        assert(def->m_base.m_init == NULL);
  ------------------
  |  Branch (1825:9): [True: 0, False: 0]
  ------------------
 1826|      0|        assert(def->m_base.m_copy == NULL);
  ------------------
  |  Branch (1826:9): [True: 0, False: 0]
  ------------------
 1827|      0|    }
 1828|      4|    else {
 1829|      4|        if (singlephase->m_init != NULL) {
  ------------------
  |  Branch (1829:13): [True: 0, False: 4]
  ------------------
 1830|      0|            assert(singlephase->m_dict == NULL);
  ------------------
  |  Branch (1830:13): [True: 0, False: 0]
  ------------------
 1831|      0|            assert(def->m_base.m_copy == NULL);
  ------------------
  |  Branch (1831:13): [True: 0, False: 0]
  ------------------
 1832|      0|            assert(def->m_size >= 0);
  ------------------
  |  Branch (1832:13): [True: 0, False: 0]
  ------------------
 1833|       |            /* Remember pointer to module init function. */
 1834|       |            // XXX If two modules share a def then def->m_base will
 1835|       |            // reflect the last one added (here) to the global cache.
 1836|       |            // We should prevent this somehow.  The simplest solution
 1837|       |            // is probably to store m_copy/m_init in the cache along
 1838|       |            // with the def, rather than within the def.
 1839|      0|            m_init = singlephase->m_init;
 1840|      0|        }
 1841|      4|        else if (singlephase->m_dict == NULL) {
  ------------------
  |  Branch (1841:18): [True: 4, False: 0]
  ------------------
 1842|       |            /* It must be a core builtin module. */
 1843|      4|            assert(is_core_module(tstate->interp, name, path));
  ------------------
  |  Branch (1843:13): [True: 4, False: 0]
  ------------------
 1844|      4|            assert(def->m_size == -1);
  ------------------
  |  Branch (1844:13): [True: 4, False: 0]
  ------------------
 1845|      4|            assert(def->m_base.m_copy == NULL);
  ------------------
  |  Branch (1845:13): [True: 4, False: 0]
  ------------------
 1846|      4|            assert(def->m_base.m_init == NULL);
  ------------------
  |  Branch (1846:13): [True: 4, False: 0]
  ------------------
 1847|      4|        }
 1848|      0|        else {
 1849|      0|            assert(PyDict_Check(singlephase->m_dict));
  ------------------
  |  Branch (1849:13): [True: 0, False: 0]
  ------------------
 1850|       |            // gh-88216: Extensions and def->m_base.m_copy can be updated
 1851|       |            // when the extension module doesn't support sub-interpreters.
 1852|      0|            assert(def->m_size == -1);
  ------------------
  |  Branch (1852:13): [True: 0, False: 0]
  ------------------
 1853|      0|            assert(!is_core_module(tstate->interp, name, path));
  ------------------
  |  Branch (1853:13): [True: 0, False: 0]
  ------------------
 1854|      0|            assert(PyUnicode_CompareWithASCIIString(name, "sys") != 0);
  ------------------
  |  Branch (1854:13): [True: 0, False: 0]
  ------------------
 1855|      0|            assert(PyUnicode_CompareWithASCIIString(name, "builtins") != 0);
  ------------------
  |  Branch (1855:13): [True: 0, False: 0]
  ------------------
 1856|      0|            m_dict = singlephase->m_dict;
 1857|      0|        }
 1858|      4|    }
 1859|       |
 1860|       |    /* Add the module's def to the global cache. */
 1861|       |    // XXX Why special-case the main interpreter?
 1862|      4|    if (_Py_IsMainInterpreter(tstate->interp) || def->m_size == -1) {
  ------------------
  |  Branch (1862:9): [True: 4, False: 0]
  |  Branch (1862:50): [True: 0, False: 0]
  ------------------
 1863|      4|#ifndef NDEBUG
 1864|      4|        cached = _extensions_cache_get(path, name);
 1865|      4|        assert(cached == NULL || cached->def == def);
  ------------------
  |  Branch (1865:9): [True: 4, False: 0]
  |  Branch (1865:9): [True: 0, False: 0]
  ------------------
 1866|      4|#endif
 1867|      4|        cached = _extensions_cache_set(
 1868|      4|                path, name, def, m_init, singlephase->m_index, m_dict,
 1869|      4|                singlephase->origin, singlephase->md_requires_gil);
 1870|      4|        if (cached == NULL) {
  ------------------
  |  Branch (1870:13): [True: 0, False: 4]
  ------------------
 1871|       |            // XXX Ignore this error?  Doing so would effectively
 1872|       |            // mark the module as not loadable.
 1873|      0|            return NULL;
 1874|      0|        }
 1875|      4|    }
 1876|       |
 1877|      4|    return cached;
 1878|      4|}
import.c:_extensions_cache_set:
 1427|      4|{
 1428|      4|    struct extensions_cache_value *value = NULL;
 1429|      4|    void *key = NULL;
 1430|      4|    struct extensions_cache_value *newvalue = NULL;
 1431|      4|    PyModuleDef_Base olddefbase = def->m_base;
 1432|       |
 1433|      4|    assert(def != NULL);
  ------------------
  |  Branch (1433:5): [True: 4, False: 0]
  ------------------
 1434|      4|    assert(m_init == NULL || m_dict == NULL);
  ------------------
  |  Branch (1434:5): [True: 4, False: 0]
  |  Branch (1434:5): [True: 0, False: 0]
  ------------------
 1435|       |    /* We expect the same symbol to be used and the shared object file
 1436|       |     * to have remained loaded, so it must be the same pointer. */
 1437|      4|    assert(def->m_base.m_init == NULL || def->m_base.m_init == m_init);
  ------------------
  |  Branch (1437:5): [True: 4, False: 0]
  |  Branch (1437:5): [True: 0, False: 0]
  ------------------
 1438|       |    /* For now we don't worry about comparing value->m_copy. */
 1439|      4|    assert(def->m_base.m_copy == NULL || m_dict != NULL);
  ------------------
  |  Branch (1439:5): [True: 4, False: 0]
  |  Branch (1439:5): [True: 0, False: 0]
  ------------------
 1440|      4|    assert((origin == _Py_ext_module_origin_DYNAMIC) == (name != path));
  ------------------
  |  Branch (1440:5): [True: 4, False: 0]
  ------------------
 1441|      4|    assert(origin != _Py_ext_module_origin_CORE || m_dict == NULL);
  ------------------
  |  Branch (1441:5): [True: 0, False: 4]
  |  Branch (1441:5): [True: 4, False: 0]
  ------------------
 1442|       |
 1443|      4|    extensions_lock_acquire();
 1444|       |
 1445|      4|    if (EXTENSIONS.hashtable == NULL) {
  ------------------
  |  |   82|      4|#define EXTENSIONS _PyRuntime.imports.extensions
  ------------------
  |  Branch (1445:9): [True: 2, False: 2]
  ------------------
 1446|      2|        if (_extensions_cache_init() < 0) {
  ------------------
  |  Branch (1446:13): [True: 0, False: 2]
  ------------------
 1447|      0|            goto finally;
 1448|      0|        }
 1449|      2|    }
 1450|       |
 1451|       |    /* Create a cached value to populate for the module. */
 1452|      4|    _Py_hashtable_entry_t *entry =
 1453|      4|            _extensions_cache_find_unlocked(path, name, &key);
 1454|      4|    value = entry == NULL
  ------------------
  |  Branch (1454:13): [True: 4, False: 0]
  ------------------
 1455|      4|        ? NULL
 1456|      4|        : (struct extensions_cache_value *)entry->value;
 1457|      4|    if (value != NULL) {
  ------------------
  |  Branch (1457:9): [True: 0, False: 4]
  ------------------
 1458|       |        /* gh-123880: If there's an existing cache value, it means a module is
 1459|       |         * being imported recursively from its PyInit_* or Py_mod_* function.
 1460|       |         * (That function presumably handles returning a partially
 1461|       |         *  constructed module in such a case.)
 1462|       |         * We can reuse the existing cache value; it is owned by the cache.
 1463|       |         * (Entries get removed from it in exceptional circumstances,
 1464|       |         *  after interpreter shutdown, and in runtime shutdown.)
 1465|       |         */
 1466|      0|        goto finally_oldvalue;
 1467|      0|    }
 1468|      4|    newvalue = alloc_extensions_cache_value();
 1469|      4|    if (newvalue == NULL) {
  ------------------
  |  Branch (1469:9): [True: 0, False: 4]
  ------------------
 1470|      0|        goto finally;
 1471|      0|    }
 1472|       |
 1473|       |    /* Populate the new cache value data. */
 1474|      4|    *newvalue = (struct extensions_cache_value){
 1475|      4|        .def=def,
 1476|      4|        .m_init=m_init,
 1477|      4|        .m_index=m_index,
 1478|       |        /* m_dict is set by set_cached_m_dict(). */
 1479|      4|        .origin=origin,
 1480|       |#ifdef Py_GIL_DISABLED
 1481|       |        .md_requires_gil=requires_gil,
 1482|       |#endif
 1483|      4|    };
 1484|      4|#ifndef Py_GIL_DISABLED
 1485|      4|    (void)requires_gil;
 1486|      4|#endif
 1487|      4|    if (init_cached_m_dict(newvalue, m_dict) < 0) {
  ------------------
  |  Branch (1487:9): [True: 0, False: 4]
  ------------------
 1488|      0|        goto finally;
 1489|      0|    }
 1490|      4|    fixup_cached_def(newvalue);
 1491|       |
 1492|      4|    if (entry == NULL) {
  ------------------
  |  Branch (1492:9): [True: 4, False: 0]
  ------------------
 1493|       |        /* It was never added. */
 1494|      4|        if (_Py_hashtable_set(EXTENSIONS.hashtable, key, newvalue) < 0) {
  ------------------
  |  |   82|      4|#define EXTENSIONS _PyRuntime.imports.extensions
  ------------------
  |  Branch (1494:13): [True: 0, False: 4]
  ------------------
 1495|      0|            PyErr_NoMemory();
 1496|      0|            goto finally;
 1497|      0|        }
 1498|       |        /* The hashtable owns the key now. */
 1499|      4|        key = NULL;
 1500|      4|    }
 1501|      0|    else if (value == NULL) {
  ------------------
  |  Branch (1501:14): [True: 0, False: 0]
  ------------------
 1502|       |        /* It was previously deleted. */
 1503|      0|        entry->value = newvalue;
 1504|      0|    }
 1505|      0|    else {
 1506|       |        /* We are updating the entry for an existing module. */
 1507|       |        /* We expect def to be static, so it must be the same pointer. */
 1508|      0|        assert(value->def == def);
  ------------------
  |  Branch (1508:9): [True: 0, False: 0]
  ------------------
 1509|       |        /* We expect the same symbol to be used and the shared object file
 1510|       |         * to have remained loaded, so it must be the same pointer. */
 1511|      0|        assert(value->m_init == m_init);
  ------------------
  |  Branch (1511:9): [True: 0, False: 0]
  ------------------
 1512|       |        /* The same module can't switch between caching __dict__ and not. */
 1513|      0|        assert((value->m_dict == NULL) == (m_dict == NULL));
  ------------------
  |  Branch (1513:9): [True: 0, False: 0]
  ------------------
 1514|       |        /* This shouldn't ever happen. */
 1515|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1516|      0|    }
 1517|       |
 1518|      4|    value = newvalue;
 1519|       |
 1520|      4|finally:
 1521|      4|    if (value == NULL) {
  ------------------
  |  Branch (1521:9): [True: 0, False: 4]
  ------------------
 1522|      0|        restore_old_cached_def(def, &olddefbase);
 1523|      0|        if (newvalue != NULL) {
  ------------------
  |  Branch (1523:13): [True: 0, False: 0]
  ------------------
 1524|      0|            del_extensions_cache_value(newvalue);
 1525|      0|        }
 1526|      0|    }
 1527|      4|    else {
 1528|      4|        cleanup_old_cached_def(&olddefbase);
 1529|      4|    }
 1530|       |
 1531|      4|finally_oldvalue:
 1532|      4|    extensions_lock_release();
 1533|      4|    if (key != NULL) {
  ------------------
  |  Branch (1533:9): [True: 0, False: 4]
  ------------------
 1534|      0|        hashtable_destroy_str(key);
 1535|      0|    }
 1536|       |
 1537|      4|    return value;
 1538|      4|}
import.c:_extensions_cache_init:
 1363|      2|{
 1364|      2|    _Py_hashtable_allocator_t alloc = {PyMem_RawMalloc, PyMem_RawFree};
 1365|      2|    EXTENSIONS.hashtable = _Py_hashtable_new_full(
  ------------------
  |  |   82|      2|#define EXTENSIONS _PyRuntime.imports.extensions
  ------------------
 1366|      2|        hashtable_hash_str,
 1367|      2|        hashtable_compare_str,
 1368|      2|        hashtable_destroy_str,  // key
 1369|      2|        del_extensions_cache_value,  // value
 1370|      2|        &alloc
 1371|      2|    );
 1372|      2|    if (EXTENSIONS.hashtable == NULL) {
  ------------------
  |  |   82|      2|#define EXTENSIONS _PyRuntime.imports.extensions
  ------------------
  |  Branch (1372:9): [True: 0, False: 2]
  ------------------
 1373|      0|        PyErr_NoMemory();
 1374|      0|        return -1;
 1375|      0|    }
 1376|      2|    return 0;
 1377|      2|}
import.c:hashtable_hash_str:
 1308|     40|{
 1309|     40|    return Py_HashBuffer(key, strlen((const char *)key));
 1310|     40|}
import.c:alloc_extensions_cache_value:
 1101|      4|{
 1102|      4|    struct extensions_cache_value *value
 1103|      4|            = PyMem_RawMalloc(sizeof(struct extensions_cache_value));
 1104|      4|    if (value == NULL) {
  ------------------
  |  Branch (1104:9): [True: 0, False: 4]
  ------------------
 1105|      0|        PyErr_NoMemory();
 1106|      0|        return NULL;
 1107|      0|    }
 1108|      4|    *value = (struct extensions_cache_value){0};
 1109|      4|    return value;
 1110|      4|}
import.c:init_cached_m_dict:
 1188|      4|{
 1189|      4|    assert(value != NULL);
  ------------------
  |  Branch (1189:5): [True: 4, False: 0]
  ------------------
 1190|       |    /* This should only have been called without an m_dict already set. */
 1191|      4|    assert(value->m_dict == NULL);
  ------------------
  |  Branch (1191:5): [True: 4, False: 0]
  ------------------
 1192|      4|    if (m_dict == NULL) {
  ------------------
  |  Branch (1192:9): [True: 4, False: 0]
  ------------------
 1193|      4|        return 0;
 1194|      4|    }
 1195|      4|    assert(PyDict_Check(m_dict));
  ------------------
  |  Branch (1195:5): [True: 0, False: 0]
  ------------------
 1196|      0|    assert(value->origin != _Py_ext_module_origin_CORE);
  ------------------
  |  Branch (1196:5): [True: 0, False: 0]
  ------------------
 1197|       |
 1198|      0|    PyInterpreterState *interp = _PyInterpreterState_GET();
 1199|      0|    assert(!is_interpreter_isolated(interp));
  ------------------
  |  Branch (1199:5): [True: 0, False: 0]
  ------------------
 1200|       |
 1201|       |    /* XXX gh-88216: The copied dict is owned by the current
 1202|       |     * interpreter.  That's a problem if the interpreter has
 1203|       |     * its own obmalloc state or if the module is successfully
 1204|       |     * imported into such an interpreter.  If the interpreter
 1205|       |     * has its own GIL then there may be data races and
 1206|       |     * PyImport_ClearModulesByIndex() can crash.  Normally,
 1207|       |     * a single-phase init module cannot be imported in an
 1208|       |     * isolated interpreter, but there are ways around that.
 1209|       |     * Hence, heere be dragons!  Ideally we would instead do
 1210|       |     * something like make a read-only, immortal copy of the
 1211|       |     * dict using PyMem_RawMalloc() and store *that* in m_copy.
 1212|       |     * Then we'd need to make sure to clear that when the
 1213|       |     * runtime is finalized, rather than in
 1214|       |     * PyImport_ClearModulesByIndex(). */
 1215|      0|    PyObject *copied = PyDict_Copy(m_dict);
 1216|      0|    if (copied == NULL) {
  ------------------
  |  Branch (1216:9): [True: 0, False: 0]
  ------------------
 1217|       |        /* We expect this can only be "out of memory". */
 1218|      0|        return -1;
 1219|      0|    }
 1220|       |    // XXX We may want to make the copy immortal.
 1221|       |
 1222|      0|    value->_m_dict = (struct cached_m_dict){
 1223|      0|        .copied=copied,
 1224|      0|        .interpid=PyInterpreterState_GetID(interp),
 1225|      0|    };
 1226|       |
 1227|      0|    value->m_dict = &value->_m_dict;
 1228|      0|    return 0;
 1229|      0|}
import.c:fixup_cached_def:
 1127|      4|{
 1128|       |    /* For the moment, the values in the def's m_base may belong
 1129|       |     * to another module, and we're replacing them here.  This can
 1130|       |     * cause problems later if the old module is reloaded.
 1131|       |     *
 1132|       |     * Also, we don't decref any old cached values first when we
 1133|       |     * replace them here, in case we need to restore them in the
 1134|       |     * near future.  Instead, the caller is responsible for wrapping
 1135|       |     * this up by calling cleanup_old_cached_def() or
 1136|       |     * restore_old_cached_def() if there was an error. */
 1137|      4|    PyModuleDef *def = value->def;
 1138|      4|    assert(def != NULL);
  ------------------
  |  Branch (1138:5): [True: 4, False: 0]
  ------------------
 1139|       |
 1140|       |    /* We assume that all module defs are statically allocated
 1141|       |       and will never be freed.  Otherwise, we would incref here. */
 1142|      4|    _Py_SetImmortalUntracked((PyObject *)def);
 1143|       |
 1144|      4|    def->m_base.m_init = value->m_init;
 1145|       |
 1146|      4|    assert(value->m_index > 0);
  ------------------
  |  Branch (1146:5): [True: 4, False: 0]
  ------------------
 1147|      4|    _set_module_index(def, value->m_index);
 1148|       |
 1149|       |    /* Different modules can share the same def, so we can't just
 1150|       |     * expect m_copy to be NULL. */
 1151|      4|    assert(def->m_base.m_copy == NULL
  ------------------
  |  Branch (1151:5): [True: 4, False: 0]
  |  Branch (1151:5): [True: 0, False: 0]
  |  Branch (1151:5): [True: 0, False: 0]
  ------------------
 1152|      4|           || def->m_base.m_init == NULL
 1153|      4|           || value->m_dict != NULL);
 1154|      4|    if (value->m_dict != NULL) {
  ------------------
  |  Branch (1154:9): [True: 0, False: 4]
  ------------------
 1155|      0|        assert(value->m_dict->copied != NULL);
  ------------------
  |  Branch (1155:9): [True: 0, False: 0]
  ------------------
 1156|       |        /* As noted above, we don't first decref the old value, if any. */
 1157|      0|        def->m_base.m_copy = Py_NewRef(value->m_dict->copied);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1158|      0|    }
 1159|      4|}
import.c:_set_module_index:
  528|      4|{
  529|      4|    assert(index > 0);
  ------------------
  |  Branch (529:5): [True: 4, False: 0]
  ------------------
  530|      4|    if (index == def->m_base.m_index) {
  ------------------
  |  Branch (530:9): [True: 4, False: 0]
  ------------------
  531|       |        /* There's nothing to do. */
  532|      4|    }
  533|      0|    else if (def->m_base.m_index == 0) {
  ------------------
  |  Branch (533:14): [True: 0, False: 0]
  ------------------
  534|       |        /* It should have been initialized by PyModuleDef_Init().
  535|       |         * We assert here to catch this in dev, but keep going otherwise. */
  536|      0|        assert(def->m_base.m_index != 0);
  ------------------
  |  Branch (536:9): [True: 0, False: 0]
  ------------------
  537|      0|        def->m_base.m_index = index;
  538|      0|    }
  539|      0|    else {
  540|       |        /* It was already set for a different module.
  541|       |         * We replace the old value. */
  542|      0|        assert(def->m_base.m_index > 0);
  ------------------
  |  Branch (542:9): [True: 0, False: 0]
  ------------------
  543|      0|        def->m_base.m_index = index;
  544|      0|    }
  545|      4|}
import.c:cleanup_old_cached_def:
 1169|      4|{
 1170|      4|    Py_XDECREF(oldbase->m_copy);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1171|      4|}
import.c:finish_singlephase_extension:
 1886|      4|{
 1887|      4|    assert(mod != NULL && PyModule_Check(mod));
  ------------------
  |  Branch (1887:5): [True: 4, False: 0]
  |  Branch (1887:5): [True: 4, False: 0]
  ------------------
 1888|      4|    assert(cached->def == _PyModule_GetDefOrNull(mod));
  ------------------
  |  Branch (1888:5): [True: 4, False: 0]
  ------------------
 1889|       |
 1890|      4|    Py_ssize_t index = _get_cached_module_index(cached);
 1891|      4|    if (_modules_by_index_set(tstate->interp, index, mod) < 0) {
  ------------------
  |  Branch (1891:9): [True: 0, False: 4]
  ------------------
 1892|      0|        return -1;
 1893|      0|    }
 1894|       |
 1895|      4|    if (modules != NULL) {
  ------------------
  |  Branch (1895:9): [True: 4, False: 0]
  ------------------
 1896|      4|        if (PyObject_SetItem(modules, name, mod) < 0) {
  ------------------
  |  Branch (1896:13): [True: 0, False: 4]
  ------------------
 1897|      0|            return -1;
 1898|      0|        }
 1899|      4|    }
 1900|       |
 1901|      4|    return 0;
 1902|      4|}
import.c:create_builtin:
 2480|     24|{
 2481|     24|    struct _Py_ext_module_loader_info info;
 2482|     24|    if (_Py_ext_module_loader_info_init_for_builtin(&info, name) < 0) {
  ------------------
  |  Branch (2482:9): [True: 0, False: 24]
  ------------------
 2483|      0|        return NULL;
 2484|      0|    }
 2485|       |
 2486|     24|    struct extensions_cache_value *cached = NULL;
 2487|     24|    PyObject *mod = import_find_extension(tstate, &info, &cached);
 2488|     24|    if (mod != NULL) {
  ------------------
  |  Branch (2488:9): [True: 0, False: 24]
  ------------------
 2489|      0|        assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (2489:9): [True: 0, False: 0]
  ------------------
 2490|      0|        assert(cached != NULL);
  ------------------
  |  Branch (2490:9): [True: 0, False: 0]
  ------------------
 2491|       |        /* The module might not have md_def set in certain reload cases. */
 2492|      0|        assert(_PyModule_GetDefOrNull(mod) == NULL
  ------------------
  |  Branch (2492:9): [True: 0, False: 0]
  |  Branch (2492:9): [True: 0, False: 0]
  ------------------
 2493|      0|                || cached->def == _PyModule_GetDefOrNull(mod));
 2494|      0|        assert_singlephase(cached);
  ------------------
  |  | 1793|      0|    do {                                                                    \
  |  | 1794|      0|        _Py_ext_module_kind kind = _get_extension_kind(cached->def, true);  \
  |  | 1795|      0|        assert(kind == _Py_ext_module_kind_SINGLEPHASE);                    \
  |  | 1796|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1796:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2494:9): [True: 0, False: 0]
  ------------------
 2495|      0|        goto finally;
 2496|      0|    }
 2497|     24|    else if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2497:14): [True: 0, False: 24]
  ------------------
 2498|      0|        goto finally;
 2499|      0|    }
 2500|       |
 2501|       |    /* If the module was added to the global cache
 2502|       |     * but def->m_base.m_copy was cleared (e.g. subinterp fini)
 2503|       |     * then we have to do a little dance here. */
 2504|     24|    if (cached != NULL) {
  ------------------
  |  Branch (2504:9): [True: 0, False: 24]
  ------------------
 2505|      0|        assert(cached->def->m_base.m_copy == NULL);
  ------------------
  |  Branch (2505:9): [True: 0, False: 0]
  ------------------
 2506|       |        /* For now we clear the cache and move on. */
 2507|      0|        _extensions_cache_delete(info.path, info.name);
 2508|      0|    }
 2509|       |
 2510|     24|    PyModInitFunction p0 = NULL;
 2511|     24|    if (initfunc == NULL) {
  ------------------
  |  Branch (2511:9): [True: 24, False: 0]
  ------------------
 2512|     24|        struct _inittab *entry = lookup_inittab_entry(&info);
 2513|     24|        if (entry == NULL) {
  ------------------
  |  Branch (2513:13): [True: 0, False: 24]
  ------------------
 2514|      0|            mod = NULL;
 2515|      0|            _PyErr_SetModuleNotFoundError(name);
 2516|      0|            goto finally;
 2517|      0|        }
 2518|       |
 2519|     24|        p0 = (PyModInitFunction)entry->initfunc;
 2520|     24|    }
 2521|      0|    else {
 2522|      0|        p0 = initfunc;
 2523|      0|    }
 2524|       |
 2525|     24|    if (p0 == NULL) {
  ------------------
  |  Branch (2525:9): [True: 0, False: 24]
  ------------------
 2526|       |        /* Cannot re-init internal module ("sys" or "builtins") */
 2527|      0|        assert(is_core_module(tstate->interp, info.name, info.path));
  ------------------
  |  Branch (2527:9): [True: 0, False: 0]
  ------------------
 2528|      0|        mod = import_add_module(tstate, info.name);
 2529|      0|        goto finally;
 2530|      0|    }
 2531|       |
 2532|       |
 2533|       |#ifdef Py_GIL_DISABLED
 2534|       |    // This call (and the corresponding call to _PyImport_CheckGILForModule())
 2535|       |    // would ideally be inside import_run_extension(). They are kept in the
 2536|       |    // callers for now because that would complicate the control flow inside
 2537|       |    // import_run_extension(). It should be possible to restructure
 2538|       |    // import_run_extension() to address this.
 2539|       |    _PyEval_EnableGILTransient(tstate);
 2540|       |#endif
 2541|       |    /* Now load it. */
 2542|     24|    mod = import_run_extension(
 2543|     24|                    tstate, p0, &info, spec, get_modules_dict(tstate, true));
 2544|       |#ifdef Py_GIL_DISABLED
 2545|       |    if (_PyImport_CheckGILForModule(mod, info.name) < 0) {
 2546|       |        Py_CLEAR(mod);
 2547|       |        goto finally;
 2548|       |    }
 2549|       |#endif
 2550|       |
 2551|     24|finally:
 2552|     24|    _Py_ext_module_loader_info_clear(&info);
 2553|     24|    return mod;
 2554|     24|}
import.c:import_find_extension:
 2020|     24|{
 2021|       |    /* Only single-phase init modules will be in the cache. */
 2022|     24|    struct extensions_cache_value *cached
 2023|     24|            = _extensions_cache_get(info->path, info->name);
 2024|     24|    if (cached == NULL) {
  ------------------
  |  Branch (2024:9): [True: 24, False: 0]
  ------------------
 2025|     24|        return NULL;
 2026|     24|    }
 2027|     24|    assert(cached->def != NULL);
  ------------------
  |  Branch (2027:5): [True: 0, False: 0]
  ------------------
 2028|      0|    assert_singlephase(cached);
  ------------------
  |  | 1793|      0|    do {                                                                    \
  |  | 1794|      0|        _Py_ext_module_kind kind = _get_extension_kind(cached->def, true);  \
  |  | 1795|      0|        assert(kind == _Py_ext_module_kind_SINGLEPHASE);                    \
  |  | 1796|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1796:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2028:5): [True: 0, False: 0]
  ------------------
 2029|      0|    *p_cached = cached;
 2030|       |
 2031|       |    /* It may have been successfully imported previously
 2032|       |       in an interpreter that allows legacy modules
 2033|       |       but is not allowed in the current interpreter. */
 2034|      0|    const char *name_buf = PyUnicode_AsUTF8(info->name);
 2035|      0|    assert(name_buf != NULL);
  ------------------
  |  Branch (2035:5): [True: 0, False: 0]
  ------------------
 2036|      0|    if (_PyImport_CheckSubinterpIncompatibleExtensionAllowed(name_buf) < 0) {
  ------------------
  |  Branch (2036:9): [True: 0, False: 0]
  ------------------
 2037|      0|        return NULL;
 2038|      0|    }
 2039|       |
 2040|      0|    PyObject *mod = reload_singlephase_extension(tstate, cached, info);
 2041|      0|    if (mod == NULL) {
  ------------------
  |  Branch (2041:9): [True: 0, False: 0]
  ------------------
 2042|      0|        return NULL;
 2043|      0|    }
 2044|       |
 2045|      0|    int verbose = _PyInterpreterState_GetConfig(tstate->interp)->verbose;
 2046|      0|    if (verbose) {
  ------------------
  |  Branch (2046:9): [True: 0, False: 0]
  ------------------
 2047|      0|        PySys_FormatStderr("import %U # previously loaded (%R)\n",
 2048|      0|                           info->name, info->path);
 2049|      0|    }
 2050|       |
 2051|      0|    return mod;
 2052|      0|}
import.c:lookup_inittab_entry:
 2465|     24|{
 2466|    464|    for (struct _inittab *p = INITTAB; p->name != NULL; p++) {
  ------------------
  |  |   80|     24|#define INITTAB _PyRuntime.imports.inittab
  ------------------
  |  Branch (2466:40): [True: 464, False: 0]
  ------------------
 2467|    464|        if (_PyUnicode_EqualToASCIIString(info->name, p->name)) {
  ------------------
  |  Branch (2467:13): [True: 24, False: 440]
  ------------------
 2468|     24|            return p;
 2469|     24|        }
 2470|    464|    }
 2471|       |    // not found
 2472|      0|    return NULL;
 2473|     24|}
import.c:import_run_extension:
 2095|     24|{
 2096|       |    /* Core modules go through _PyImport_FixupBuiltin(). */
 2097|     24|    assert(!is_core_module(tstate->interp, info->name, info->path));
  ------------------
  |  Branch (2097:5): [True: 24, False: 0]
  ------------------
 2098|       |
 2099|     24|    PyObject *mod = NULL;
 2100|     24|    PyModuleDef *def = NULL;
 2101|     24|    struct extensions_cache_value *cached = NULL;
 2102|     24|    const char *name_buf = PyBytes_AS_STRING(info->name_encoded);
  ------------------
  |  |   27|     24|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2103|       |
 2104|       |    /* We cannot know if the module is single-phase init or
 2105|       |     * multi-phase init until after we call its init function. Even
 2106|       |     * in isolated interpreters (that do not support single-phase init),
 2107|       |     * the init function will run without restriction.  For multi-phase
 2108|       |     * init modules that isn't a problem because the init function only
 2109|       |     * runs PyModuleDef_Init() on the module's def and then returns it.
 2110|       |     *
 2111|       |     * However, for single-phase init the module's init function will
 2112|       |     * create the module, create other objects (and allocate other
 2113|       |     * memory), populate it and its module state, and initialize static
 2114|       |     * types.  Some modules store other objects and data in global C
 2115|       |     * variables and register callbacks with the runtime/stdlib or
 2116|       |     * even external libraries (which is part of why we can't just
 2117|       |     * dlclose() the module in the error case).  That's a problem
 2118|       |     * for isolated interpreters since all of the above happens
 2119|       |     * and only then * will the import fail.  Memory will leak,
 2120|       |     * callbacks will still get used, and sometimes there
 2121|       |     * will be crashes (memory access violations
 2122|       |     * and use-after-free).
 2123|       |     *
 2124|       |     * To put it another way, if the module is single-phase init
 2125|       |     * then the import will probably break interpreter isolation
 2126|       |     * and should fail ASAP.  However, the module's init function
 2127|       |     * will still get run.  That means it may still store state
 2128|       |     * in the shared-object/DLL address space (which never gets
 2129|       |     * closed/cleared), including objects (e.g. static types).
 2130|       |     * This is a problem for isolated subinterpreters since each
 2131|       |     * has its own object allocator.  If the loaded shared-object
 2132|       |     * still holds a reference to an object after the corresponding
 2133|       |     * interpreter has finalized then either we must let it leak
 2134|       |     * or else any later use of that object by another interpreter
 2135|       |     * (or across multiple init-fini cycles) will crash the process.
 2136|       |     *
 2137|       |     * To avoid all of that, we make sure the module's init function
 2138|       |     * is always run first with the main interpreter active.  If it was
 2139|       |     * already the main interpreter then we can continue loading the
 2140|       |     * module like normal.  Otherwise, right after the init function,
 2141|       |     * we take care of some import state bookkeeping, switch back
 2142|       |     * to the subinterpreter, check for single-phase init,
 2143|       |     * and then continue loading like normal. */
 2144|       |
 2145|     24|    bool switched = false;
 2146|       |    /* We *could* leave in place a legacy interpreter here
 2147|       |     * (one that shares obmalloc/GIL with main interp),
 2148|       |     * but there isn't a big advantage, we anticipate
 2149|       |     * such interpreters will be increasingly uncommon,
 2150|       |     * and the code is a bit simpler if we always switch
 2151|       |     * to the main interpreter. */
 2152|     24|    PyThreadState *main_tstate = switch_to_main_interpreter(tstate);
 2153|     24|    if (main_tstate == NULL) {
  ------------------
  |  Branch (2153:9): [True: 0, False: 24]
  ------------------
 2154|      0|        return NULL;
 2155|      0|    }
 2156|     24|    else if (main_tstate != tstate) {
  ------------------
  |  Branch (2156:14): [True: 0, False: 24]
  ------------------
 2157|      0|        switched = true;
 2158|       |        /* In the switched case, we could play it safe
 2159|       |         * by getting the main interpreter's import lock here.
 2160|       |         * It's unlikely to matter though. */
 2161|      0|    }
 2162|       |
 2163|     24|    struct _Py_ext_module_loader_result res;
 2164|     24|    int rc = _PyImport_RunModInitFunc(p0, info, &res);
 2165|     24|    if (rc < 0) {
  ------------------
  |  Branch (2165:9): [True: 0, False: 24]
  ------------------
 2166|       |        /* We discard res.def. */
 2167|      0|        assert(res.module == NULL);
  ------------------
  |  Branch (2167:9): [True: 0, False: 0]
  ------------------
 2168|      0|    }
 2169|     24|    else {
 2170|     24|        assert(!PyErr_Occurred());
  ------------------
  |  Branch (2170:9): [True: 24, False: 0]
  ------------------
 2171|     24|        assert(res.err == NULL);
  ------------------
  |  Branch (2171:9): [True: 24, False: 0]
  ------------------
 2172|       |
 2173|     24|        mod = res.module;
 2174|     24|        res.module = NULL;
 2175|     24|        def = res.def;
 2176|     24|        assert(def != NULL);
  ------------------
  |  Branch (2176:9): [True: 24, False: 0]
  ------------------
 2177|       |
 2178|       |        /* Do anything else that should be done
 2179|       |         * while still using the main interpreter. */
 2180|     24|        if (res.kind == _Py_ext_module_kind_SINGLEPHASE) {
  ------------------
  |  Branch (2180:13): [True: 0, False: 24]
  ------------------
 2181|       |            /* Remember the filename as the __file__ attribute */
 2182|      0|            if (info->filename != NULL) {
  ------------------
  |  Branch (2182:17): [True: 0, False: 0]
  ------------------
 2183|      0|                PyObject *filename = NULL;
 2184|      0|                if (switched) {
  ------------------
  |  Branch (2184:21): [True: 0, False: 0]
  ------------------
 2185|       |                    // The original filename may be allocated by subinterpreter's
 2186|       |                    // obmalloc, so we create a copy here.
 2187|      0|                    filename = _PyUnicode_Copy(info->filename);
 2188|      0|                    if (filename == NULL) {
  ------------------
  |  Branch (2188:25): [True: 0, False: 0]
  ------------------
 2189|      0|                        return NULL;
 2190|      0|                    }
 2191|      0|                }
 2192|      0|                else {
 2193|      0|                    filename = Py_NewRef(info->filename);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2194|      0|                }
 2195|       |                // XXX There's a refleak somewhere with the filename.
 2196|       |                // Until we can track it down, we immortalize it.
 2197|      0|                PyInterpreterState *interp = _PyInterpreterState_GET();
 2198|      0|                _PyUnicode_InternImmortal(interp, &filename);
 2199|       |
 2200|      0|                if (PyModule_AddObjectRef(mod, "__file__", filename) < 0) {
  ------------------
  |  Branch (2200:21): [True: 0, False: 0]
  ------------------
 2201|      0|                    PyErr_Clear(); /* Not important enough to report */
 2202|      0|                }
 2203|      0|            }
 2204|       |
 2205|       |            /* Update global import state. */
 2206|      0|            assert(def->m_base.m_index != 0);
  ------------------
  |  Branch (2206:13): [True: 0, False: 0]
  ------------------
 2207|      0|            struct singlephase_global_update singlephase = {
 2208|       |                // XXX Modules that share a def should each get their own index,
 2209|       |                // whereas currently they share (which means the per-interpreter
 2210|       |                // cache is less reliable than it should be).
 2211|      0|                .m_index=def->m_base.m_index,
 2212|      0|                .origin=info->origin,
 2213|       |#ifdef Py_GIL_DISABLED
 2214|       |                .md_requires_gil=((PyModuleObject *)mod)->md_requires_gil,
 2215|       |#endif
 2216|      0|            };
 2217|       |            // gh-88216: Extensions and def->m_base.m_copy can be updated
 2218|       |            // when the extension module doesn't support sub-interpreters.
 2219|      0|            if (def->m_size == -1) {
  ------------------
  |  Branch (2219:17): [True: 0, False: 0]
  ------------------
 2220|       |                /* We will reload from m_copy. */
 2221|      0|                assert(def->m_base.m_init == NULL);
  ------------------
  |  Branch (2221:17): [True: 0, False: 0]
  ------------------
 2222|      0|                singlephase.m_dict = PyModule_GetDict(mod);
 2223|      0|                assert(singlephase.m_dict != NULL);
  ------------------
  |  Branch (2223:17): [True: 0, False: 0]
  ------------------
 2224|      0|            }
 2225|      0|            else {
 2226|       |                /* We will reload via the init function. */
 2227|      0|                assert(def->m_size >= 0);
  ------------------
  |  Branch (2227:17): [True: 0, False: 0]
  ------------------
 2228|      0|                assert(def->m_base.m_copy == NULL);
  ------------------
  |  Branch (2228:17): [True: 0, False: 0]
  ------------------
 2229|      0|                singlephase.m_init = p0;
 2230|      0|            }
 2231|      0|            cached = update_global_state_for_extension(
 2232|      0|                    main_tstate, info->path, info->name, def, &singlephase);
 2233|      0|            if (cached == NULL) {
  ------------------
  |  Branch (2233:17): [True: 0, False: 0]
  ------------------
 2234|      0|                assert(PyErr_Occurred());
  ------------------
  |  Branch (2234:17): [True: 0, False: 0]
  ------------------
 2235|      0|                goto main_finally;
 2236|      0|            }
 2237|      0|        }
 2238|     24|    }
 2239|       |
 2240|     24|main_finally:
 2241|     24|    if (rc < 0) {
  ------------------
  |  Branch (2241:9): [True: 0, False: 24]
  ------------------
 2242|      0|        _Py_ext_module_loader_result_apply_error(&res, name_buf);
 2243|      0|    }
 2244|       |
 2245|       |    /* Switch back to the subinterpreter. */
 2246|     24|    if (switched) {
  ------------------
  |  Branch (2246:9): [True: 0, False: 24]
  ------------------
 2247|       |        // gh-144601: The exception object can't be transferred across
 2248|       |        // interpreters. Instead, we print out an unraisable exception, and
 2249|       |        // then raise a different exception for the calling interpreter.
 2250|      0|        if (rc < 0) {
  ------------------
  |  Branch (2250:13): [True: 0, False: 0]
  ------------------
 2251|      0|            assert(PyErr_Occurred());
  ------------------
  |  Branch (2251:13): [True: 0, False: 0]
  ------------------
 2252|      0|            PyErr_FormatUnraisable("Exception while importing from subinterpreter");
 2253|      0|        }
 2254|      0|        assert(main_tstate != tstate);
  ------------------
  |  Branch (2254:9): [True: 0, False: 0]
  ------------------
 2255|      0|        switch_back_from_main_interpreter(tstate, main_tstate, mod);
 2256|       |        /* Any module we got from the init function will have to be
 2257|       |         * reloaded in the subinterpreter. */
 2258|      0|        mod = NULL;
 2259|      0|        if (rc < 0) {
  ------------------
  |  Branch (2259:13): [True: 0, False: 0]
  ------------------
 2260|      0|            PyErr_SetString(PyExc_ImportError,
 2261|      0|                            "failed to import from subinterpreter due to exception");
 2262|      0|            goto error;
 2263|      0|        }
 2264|      0|    }
 2265|       |
 2266|       |    /*****************************************************************/
 2267|       |    /* At this point we are back to the interpreter we started with. */
 2268|       |    /*****************************************************************/
 2269|       |
 2270|       |    /* Finally we handle the error return from _PyImport_RunModInitFunc(). */
 2271|     24|    if (rc < 0) {
  ------------------
  |  Branch (2271:9): [True: 0, False: 24]
  ------------------
 2272|      0|        goto error;
 2273|      0|    }
 2274|       |
 2275|     24|    if (res.kind == _Py_ext_module_kind_MULTIPHASE) {
  ------------------
  |  Branch (2275:9): [True: 24, False: 0]
  ------------------
 2276|     24|        assert_multiphase_def(def);
  ------------------
  |  | 1778|     24|    do {                                                            \
  |  | 1779|     24|        _Py_ext_module_kind kind = _get_extension_kind(def, false); \
  |  | 1780|     24|        assert(kind == _Py_ext_module_kind_MULTIPHASE               \
  |  | 1781|     24|                /* m_slots can be NULL. */                          \
  |  | 1782|     24|                || kind == _Py_ext_module_kind_UNKNOWN);            \
  |  | 1783|     24|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1783:14): [Folded, False: 24]
  |  |  ------------------
  ------------------
  |  Branch (2276:9): [True: 24, False: 0]
  |  Branch (2276:9): [True: 0, False: 0]
  ------------------
 2277|     24|        assert(mod == NULL);
  ------------------
  |  Branch (2277:9): [True: 24, False: 0]
  ------------------
 2278|       |        /* Note that we cheat a little by not repeating the calls
 2279|       |         * to _PyImport_GetModuleExportHooks() and _PyImport_RunModInitFunc(). */
 2280|     24|        mod = PyModule_FromDefAndSpec(def, spec);
  ------------------
  |  |   80|     24|    PyModule_FromDefAndSpec2((module), (spec), PYTHON_API_VERSION)
  |  |  ------------------
  |  |  |  |   59|     24|#define PYTHON_API_VERSION 1013
  |  |  ------------------
  ------------------
 2281|     24|        if (mod == NULL) {
  ------------------
  |  Branch (2281:13): [True: 0, False: 24]
  ------------------
 2282|      0|            goto error;
 2283|      0|        }
 2284|     24|    }
 2285|      0|    else {
 2286|      0|        assert(res.kind == _Py_ext_module_kind_SINGLEPHASE);
  ------------------
  |  Branch (2286:9): [True: 0, False: 0]
  ------------------
 2287|      0|        assert_singlephase_def(def);
  ------------------
  |  | 1786|      0|    do {                                                            \
  |  | 1787|      0|        _Py_ext_module_kind kind = _get_extension_kind(def, true);  \
  |  | 1788|      0|        assert(kind == _Py_ext_module_kind_SINGLEPHASE              \
  |  | 1789|      0|                || kind == _Py_ext_module_kind_UNKNOWN);            \
  |  | 1790|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1790:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (2287:9): [True: 0, False: 0]
  |  Branch (2287:9): [True: 0, False: 0]
  ------------------
 2288|       |
 2289|      0|        if (_PyImport_CheckSubinterpIncompatibleExtensionAllowed(name_buf) < 0) {
  ------------------
  |  Branch (2289:13): [True: 0, False: 0]
  ------------------
 2290|      0|            goto error;
 2291|      0|        }
 2292|      0|        assert(!PyErr_Occurred());
  ------------------
  |  Branch (2292:9): [True: 0, False: 0]
  ------------------
 2293|       |
 2294|      0|        if (switched) {
  ------------------
  |  Branch (2294:13): [True: 0, False: 0]
  ------------------
 2295|       |            /* We switched to the main interpreter to run the init
 2296|       |             * function, so now we will "reload" the module from the
 2297|       |             * cached data using the original subinterpreter. */
 2298|      0|            assert(mod == NULL);
  ------------------
  |  Branch (2298:13): [True: 0, False: 0]
  ------------------
 2299|      0|            mod = reload_singlephase_extension(tstate, cached, info);
 2300|      0|            if (mod == NULL) {
  ------------------
  |  Branch (2300:17): [True: 0, False: 0]
  ------------------
 2301|      0|                goto error;
 2302|      0|            }
 2303|      0|            assert(!PyErr_Occurred());
  ------------------
  |  Branch (2303:13): [True: 0, False: 0]
  ------------------
 2304|      0|            assert(PyModule_Check(mod));
  ------------------
  |  Branch (2304:13): [True: 0, False: 0]
  ------------------
 2305|      0|        }
 2306|      0|        else {
 2307|      0|            assert(mod != NULL);
  ------------------
  |  Branch (2307:13): [True: 0, False: 0]
  ------------------
 2308|      0|            assert(PyModule_Check(mod));
  ------------------
  |  Branch (2308:13): [True: 0, False: 0]
  ------------------
 2309|       |
 2310|       |            /* Update per-interpreter import state. */
 2311|      0|            PyObject *modules = get_modules_dict(tstate, true);
 2312|      0|            if (finish_singlephase_extension(
  ------------------
  |  Branch (2312:17): [True: 0, False: 0]
  ------------------
 2313|      0|                    tstate, mod, cached, info->name, modules) < 0)
 2314|      0|            {
 2315|      0|                goto error;
 2316|      0|            }
 2317|      0|        }
 2318|      0|    }
 2319|       |
 2320|     24|    _Py_ext_module_loader_result_clear(&res);
 2321|     24|    return mod;
 2322|       |
 2323|      0|error:
 2324|      0|    Py_XDECREF(mod);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2325|      0|    _Py_ext_module_loader_result_clear(&res);
 2326|       |    return NULL;
 2327|     24|}
import.c:module_dict_for_exec:
 2815|      2|{
 2816|      2|    PyObject *m, *d;
 2817|       |
 2818|      2|    m = import_add_module(tstate, name);
 2819|      2|    if (m == NULL)
  ------------------
  |  Branch (2819:9): [True: 0, False: 2]
  ------------------
 2820|      0|        return NULL;
 2821|       |    /* If the module is being reloaded, we get the old module back
 2822|       |       and re-use its dict to exec the new code. */
 2823|      2|    d = PyModule_GetDict(m);
 2824|      2|    int r = PyDict_Contains(d, &_Py_ID(__builtins__));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2825|      2|    if (r == 0) {
  ------------------
  |  Branch (2825:9): [True: 2, False: 0]
  ------------------
 2826|      2|        r = PyDict_SetItem(d, &_Py_ID(__builtins__), PyEval_GetBuiltins());
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2827|      2|    }
 2828|      2|    if (r < 0) {
  ------------------
  |  Branch (2828:9): [True: 0, False: 2]
  ------------------
 2829|      0|        remove_module(tstate, name);
 2830|      0|        Py_DECREF(m);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2831|      0|        return NULL;
 2832|      0|    }
 2833|       |
 2834|      2|    Py_INCREF(d);
  ------------------
  |  |  310|      2|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2835|      2|    Py_DECREF(m);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2836|      2|    return d;
 2837|      2|}
import.c:exec_code_in_module:
 2842|      2|{
 2843|      2|    PyObject *v, *m;
 2844|       |
 2845|      2|    v = PyEval_EvalCode(code_object, module_dict, module_dict);
 2846|      2|    if (v == NULL) {
  ------------------
  |  Branch (2846:9): [True: 0, False: 2]
  ------------------
 2847|      0|        remove_module(tstate, name);
 2848|      0|        return NULL;
 2849|      0|    }
 2850|      2|    Py_DECREF(v);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2851|       |
 2852|      2|    m = import_get_module(tstate, name);
 2853|      2|    if (m == NULL && !_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (2853:9): [True: 0, False: 2]
  |  Branch (2853:22): [True: 0, False: 0]
  ------------------
 2854|      0|        _PyErr_Format(tstate, PyExc_ImportError,
 2855|      0|                      "Loaded module %R not found in sys.modules",
 2856|      0|                      name);
 2857|      0|    }
 2858|       |
 2859|      2|    return m;
 2860|      2|}
import.c:find_frozen:
 3157|     66|{
 3158|     66|    if (info != NULL) {
  ------------------
  |  Branch (3158:9): [True: 66, False: 0]
  ------------------
 3159|     66|        memset(info, 0, sizeof(*info));
 3160|     66|    }
 3161|       |
 3162|     66|    if (nameobj == NULL || nameobj == Py_None) {
  ------------------
  |  |  616|     66|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (3162:9): [True: 0, False: 66]
  |  Branch (3162:28): [True: 0, False: 66]
  ------------------
 3163|      0|        return FROZEN_BAD_NAME;
 3164|      0|    }
 3165|     66|    const char *name = PyUnicode_AsUTF8(nameobj);
 3166|     66|    if (name == NULL) {
  ------------------
  |  Branch (3166:9): [True: 0, False: 66]
  ------------------
 3167|       |        // Note that this function previously used
 3168|       |        // _PyUnicode_EqualToASCIIString().  We clear the error here
 3169|       |        // (instead of propagating it) to match the earlier behavior
 3170|       |        // more closely.
 3171|      0|        PyErr_Clear();
 3172|      0|        return FROZEN_BAD_NAME;
 3173|      0|    }
 3174|       |
 3175|     66|    const struct _frozen *p = look_up_frozen(name);
 3176|     66|    if (p == NULL) {
  ------------------
  |  Branch (3176:9): [True: 4, False: 62]
  ------------------
 3177|      4|        return FROZEN_NOT_FOUND;
 3178|      4|    }
 3179|     62|    if (info != NULL) {
  ------------------
  |  Branch (3179:9): [True: 62, False: 0]
  ------------------
 3180|     62|        info->nameobj = nameobj;  // borrowed
 3181|     62|        info->data = (const char *)p->code;
 3182|     62|        info->size = p->size;
 3183|     62|        info->is_package = p->is_package;
 3184|     62|        if (p->size < 0) {
  ------------------
  |  Branch (3184:13): [True: 0, False: 62]
  ------------------
 3185|       |            // backward compatibility with negative size values
 3186|      0|            info->size = -(p->size);
 3187|      0|            info->is_package = true;
 3188|      0|        }
 3189|     62|        info->origname = name;
 3190|     62|        info->is_alias = resolve_module_alias(name, _PyImport_FrozenAliases,
 3191|     62|                                              &info->origname);
 3192|     62|    }
 3193|     62|    if (p->code == NULL) {
  ------------------
  |  Branch (3193:9): [True: 0, False: 62]
  ------------------
 3194|       |        /* It is frozen but marked as un-importable. */
 3195|      0|        return FROZEN_EXCLUDED;
 3196|      0|    }
 3197|     62|    if (p->code[0] == '\0' || p->size == 0) {
  ------------------
  |  Branch (3197:9): [True: 0, False: 62]
  |  Branch (3197:31): [True: 0, False: 62]
  ------------------
 3198|       |        /* Does not contain executable code. */
 3199|      0|        return FROZEN_INVALID;
 3200|      0|    }
 3201|     62|    return FROZEN_OKAY;
 3202|     62|}
import.c:look_up_frozen:
 3100|     66|{
 3101|     66|    const struct _frozen *p;
 3102|       |    // We always use the bootstrap modules.
 3103|    234|    for (p = _PyImport_FrozenBootstrap; ; p++) {
 3104|    234|        if (p->name == NULL) {
  ------------------
  |  Branch (3104:13): [True: 52, False: 182]
  ------------------
 3105|       |            // We hit the end-of-list sentinel value.
 3106|     52|            break;
 3107|     52|        }
 3108|    182|        if (strcmp(name, p->name) == 0) {
  ------------------
  |  Branch (3108:13): [True: 14, False: 168]
  ------------------
 3109|     14|            return p;
 3110|     14|        }
 3111|    182|    }
 3112|       |    // Prefer custom modules, if any.  Frozen stdlib modules can be
 3113|       |    // disabled here by setting "code" to NULL in the array entry.
 3114|     52|    if (PyImport_FrozenModules != NULL) {
  ------------------
  |  Branch (3114:9): [True: 0, False: 52]
  ------------------
 3115|      0|        for (p = PyImport_FrozenModules; ; p++) {
 3116|      0|            if (p->name == NULL) {
  ------------------
  |  Branch (3116:17): [True: 0, False: 0]
  ------------------
 3117|      0|                break;
 3118|      0|            }
 3119|      0|            if (strcmp(name, p->name) == 0) {
  ------------------
  |  Branch (3119:17): [True: 0, False: 0]
  ------------------
 3120|      0|                return p;
 3121|      0|            }
 3122|      0|        }
 3123|      0|    }
 3124|       |    // Frozen stdlib modules may be disabled.
 3125|     52|    if (use_frozen()) {
  ------------------
  |  Branch (3125:9): [True: 52, False: 0]
  ------------------
 3126|    464|        for (p = _PyImport_FrozenStdlib; ; p++) {
 3127|    464|            if (p->name == NULL) {
  ------------------
  |  Branch (3127:17): [True: 4, False: 460]
  ------------------
 3128|      4|                break;
 3129|      4|            }
 3130|    460|            if (strcmp(name, p->name) == 0) {
  ------------------
  |  Branch (3130:17): [True: 48, False: 412]
  ------------------
 3131|     48|                return p;
 3132|     48|            }
 3133|    460|        }
 3134|     48|        for (p = _PyImport_FrozenTest; ; p++) {
 3135|     48|            if (p->name == NULL) {
  ------------------
  |  Branch (3135:17): [True: 4, False: 44]
  ------------------
 3136|      4|                break;
 3137|      4|            }
 3138|     44|            if (strcmp(name, p->name) == 0) {
  ------------------
  |  Branch (3138:17): [True: 0, False: 44]
  ------------------
 3139|      0|                return p;
 3140|      0|            }
 3141|     44|        }
 3142|      4|    }
 3143|      4|    return NULL;
 3144|     52|}
import.c:use_frozen:
 2959|     52|{
 2960|     52|    PyInterpreterState *interp = _PyInterpreterState_GET();
 2961|     52|    int override = OVERRIDE_FROZEN_MODULES(interp);
  ------------------
  |  |  102|     52|    (interp)->imports.override_frozen_modules
  ------------------
 2962|     52|    if (override > 0) {
  ------------------
  |  Branch (2962:9): [True: 0, False: 52]
  ------------------
 2963|      0|        return true;
 2964|      0|    }
 2965|     52|    else if (override < 0) {
  ------------------
  |  Branch (2965:14): [True: 0, False: 52]
  ------------------
 2966|      0|        return false;
 2967|      0|    }
 2968|     52|    else {
 2969|     52|        return interp->config.use_frozen_modules;
 2970|     52|    }
 2971|     52|}
import.c:resolve_module_alias:
 2941|     62|{
 2942|     62|    const struct _module_alias *entry;
 2943|    482|    for (entry = aliases; ; entry++) {
 2944|    482|        if (entry->name == NULL) {
  ------------------
  |  Branch (2944:13): [True: 52, False: 430]
  ------------------
 2945|       |            /* It isn't an alias. */
 2946|     52|            return false;
 2947|     52|        }
 2948|    430|        if (strcmp(name, entry->name) == 0) {
  ------------------
  |  Branch (2948:13): [True: 10, False: 420]
  ------------------
 2949|     10|            if (alias != NULL) {
  ------------------
  |  Branch (2949:17): [True: 10, False: 0]
  ------------------
 2950|     10|                *alias = entry->orig;
 2951|     10|            }
 2952|       |            return true;
 2953|     10|        }
 2954|    430|    }
 2955|     62|}
import.c:unmarshal_frozen_code:
 3206|     30|{
 3207|     30|    PyObject *co = PyMarshal_ReadObjectFromString(info->data, info->size);
 3208|     30|    if (co == NULL) {
  ------------------
  |  Branch (3208:9): [True: 0, False: 30]
  ------------------
 3209|       |        /* Does not contain executable code. */
 3210|      0|        PyErr_Clear();
 3211|      0|        set_frozen_error(FROZEN_INVALID, info->nameobj);
 3212|      0|        return NULL;
 3213|      0|    }
 3214|     30|    if (!PyCode_Check(co)) {
  ------------------
  |  |  164|     30|#define PyCode_Check(op) Py_IS_TYPE((op), &PyCode_Type)
  |  |  ------------------
  |  |  |  |  215|     30|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3214:9): [True: 0, False: 30]
  ------------------
 3215|       |        // We stick with TypeError for backward compatibility.
 3216|      0|        PyErr_Format(PyExc_TypeError,
 3217|      0|                     "frozen object %R is not a code object",
 3218|      0|                     info->nameobj);
 3219|      0|        Py_DECREF(co);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3220|      0|        return NULL;
 3221|      0|    }
 3222|     30|    return co;
 3223|     30|}
import.c:remove_importlib_frames:
 3652|      4|{
 3653|      4|    const char *importlib_filename = "<frozen importlib._bootstrap>";
 3654|      4|    const char *external_filename = "<frozen importlib._bootstrap_external>";
 3655|      4|    const char *remove_frames = "_call_with_frames_removed";
 3656|      4|    int always_trim = 0;
 3657|      4|    int in_importlib = 0;
 3658|      4|    PyObject **prev_link, **outer_link = NULL;
 3659|      4|    PyObject *base_tb = NULL;
 3660|       |
 3661|       |    /* Synopsis: if it's an ImportError, we trim all importlib chunks
 3662|       |       from the traceback. We always trim chunks
 3663|       |       which end with a call to "_call_with_frames_removed". */
 3664|       |
 3665|      4|    PyObject *exc = _PyErr_GetRaisedException(tstate);
 3666|      4|    if (exc == NULL || _PyInterpreterState_GetConfig(tstate->interp)->verbose) {
  ------------------
  |  Branch (3666:9): [True: 0, False: 4]
  |  Branch (3666:24): [True: 0, False: 4]
  ------------------
 3667|      0|        goto done;
 3668|      0|    }
 3669|       |
 3670|      4|    if (PyType_IsSubtype(Py_TYPE(exc), (PyTypeObject *) PyExc_ImportError)) {
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3670:9): [True: 4, False: 0]
  ------------------
 3671|      4|        always_trim = 1;
 3672|      4|    }
 3673|       |
 3674|      4|    assert(PyExceptionInstance_Check(exc));
  ------------------
  |  Branch (3674:5): [True: 4, False: 0]
  ------------------
 3675|      4|    base_tb = PyException_GetTraceback(exc);
 3676|      4|    prev_link = &base_tb;
 3677|      4|    PyObject *tb = base_tb;
 3678|     12|    while (tb != NULL) {
  ------------------
  |  Branch (3678:12): [True: 8, False: 4]
  ------------------
 3679|      8|        assert(PyTraceBack_Check(tb));
  ------------------
  |  Branch (3679:9): [True: 8, False: 0]
  ------------------
 3680|      8|        PyTracebackObject *traceback = (PyTracebackObject *)tb;
 3681|      8|        PyObject *next = (PyObject *) traceback->tb_next;
 3682|      8|        PyFrameObject *frame = traceback->tb_frame;
 3683|      8|        PyCodeObject *code = PyFrame_GetCode(frame);
 3684|      8|        int now_in_importlib;
 3685|       |
 3686|      8|        now_in_importlib = _PyUnicode_EqualToASCIIString(code->co_filename, importlib_filename) ||
  ------------------
  |  Branch (3686:28): [True: 8, False: 0]
  ------------------
 3687|      0|                           _PyUnicode_EqualToASCIIString(code->co_filename, external_filename);
  ------------------
  |  Branch (3687:28): [True: 0, False: 0]
  ------------------
 3688|      8|        if (now_in_importlib && !in_importlib) {
  ------------------
  |  Branch (3688:13): [True: 8, False: 0]
  |  Branch (3688:33): [True: 4, False: 4]
  ------------------
 3689|       |            /* This is the link to this chunk of importlib tracebacks */
 3690|      4|            outer_link = prev_link;
 3691|      4|        }
 3692|      8|        in_importlib = now_in_importlib;
 3693|       |
 3694|      8|        if (in_importlib &&
  ------------------
  |  Branch (3694:13): [True: 8, False: 0]
  ------------------
 3695|      8|            (always_trim ||
  ------------------
  |  Branch (3695:14): [True: 8, False: 0]
  ------------------
 3696|      8|             _PyUnicode_EqualToASCIIString(code->co_name, remove_frames))) {
  ------------------
  |  Branch (3696:14): [True: 0, False: 0]
  ------------------
 3697|      8|            Py_XSETREF(*outer_link, Py_XNewRef(next));
  ------------------
  |  |  374|      8|    do { \
  |  |  375|      8|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      8|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      8|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      8|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      8|        *_tmp_dst_ptr = (src); \
  |  |  378|      8|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 3698|      8|            prev_link = outer_link;
 3699|      8|        }
 3700|      0|        else {
 3701|      0|            prev_link = (PyObject **) &traceback->tb_next;
 3702|      0|        }
 3703|      8|        Py_DECREF(code);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3704|      8|        tb = next;
 3705|      8|    }
 3706|      4|    if (base_tb == NULL) {
  ------------------
  |  Branch (3706:9): [True: 4, False: 0]
  ------------------
 3707|      4|        base_tb = Py_None;
  ------------------
  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  ------------------
 3708|      4|        Py_INCREF(Py_None);
  ------------------
  |  |  310|      4|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3709|      4|    }
 3710|      4|    PyException_SetTraceback(exc, base_tb);
 3711|      4|done:
 3712|      4|    Py_XDECREF(base_tb);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3713|      4|    _PyErr_SetRaisedException(tstate, exc);
 3714|      4|}
import.c:resolve_name:
 3719|      2|{
 3720|      2|    PyObject *abs_name;
 3721|      2|    PyObject *package = NULL;
 3722|      2|    PyObject *spec = NULL;
 3723|      2|    Py_ssize_t last_dot;
 3724|      2|    PyObject *base;
 3725|      2|    int level_up;
 3726|       |
 3727|      2|    if (globals == NULL) {
  ------------------
  |  Branch (3727:9): [True: 0, False: 2]
  ------------------
 3728|      0|        _PyErr_SetString(tstate, PyExc_KeyError, "'__name__' not in globals");
 3729|      0|        goto error;
 3730|      0|    }
 3731|      2|    if (!PyAnyDict_Check(globals)) {
  ------------------
  |  |   43|      2|    (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   18|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_Check(ob) || PyFrozenDict_Check(ob))
  |  |  ------------------
  |  |  |  |   37|      0|#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (378:40): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3732|      0|        _PyErr_SetString(tstate, PyExc_TypeError,
 3733|      0|                         "globals must be a dict or a frozendict");
 3734|      0|        goto error;
 3735|      0|    }
 3736|      2|    if (PyDict_GetItemRef(globals, &_Py_ID(__package__), &package) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3736:9): [True: 0, False: 2]
  ------------------
 3737|      0|        goto error;
 3738|      0|    }
 3739|      2|    if (package == Py_None) {
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (3739:9): [True: 0, False: 2]
  ------------------
 3740|      0|        Py_DECREF(package);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3741|      0|        package = NULL;
 3742|      0|    }
 3743|      2|    if (PyDict_GetItemRef(globals, &_Py_ID(__spec__), &spec) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3743:9): [True: 0, False: 2]
  ------------------
 3744|      0|        goto error;
 3745|      0|    }
 3746|       |
 3747|      2|    if (package != NULL) {
  ------------------
  |  Branch (3747:9): [True: 2, False: 0]
  ------------------
 3748|      2|        if (!PyUnicode_Check(package)) {
  ------------------
  |  |  103|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3748:13): [True: 0, False: 2]
  ------------------
 3749|      0|            _PyErr_SetString(tstate, PyExc_TypeError,
 3750|      0|                             "package must be a string");
 3751|      0|            goto error;
 3752|      0|        }
 3753|      2|        else if (spec != NULL && spec != Py_None) {
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (3753:18): [True: 2, False: 0]
  |  Branch (3753:34): [True: 2, False: 0]
  ------------------
 3754|      2|            int equal;
 3755|      2|            PyObject *parent = PyObject_GetAttr(spec, &_Py_ID(parent));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3756|      2|            if (parent == NULL) {
  ------------------
  |  Branch (3756:17): [True: 0, False: 2]
  ------------------
 3757|      0|                goto error;
 3758|      0|            }
 3759|       |
 3760|      2|            equal = PyObject_RichCompareBool(package, parent, Py_EQ);
  ------------------
  |  |  654|      2|#define Py_EQ 2
  ------------------
 3761|      2|            Py_DECREF(parent);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3762|      2|            if (equal < 0) {
  ------------------
  |  Branch (3762:17): [True: 0, False: 2]
  ------------------
 3763|      0|                goto error;
 3764|      0|            }
 3765|      2|            else if (equal == 0) {
  ------------------
  |  Branch (3765:22): [True: 0, False: 2]
  ------------------
 3766|      0|                if (PyErr_WarnEx(PyExc_DeprecationWarning,
  ------------------
  |  Branch (3766:21): [True: 0, False: 0]
  ------------------
 3767|      0|                        "__package__ != __spec__.parent", 1) < 0) {
 3768|      0|                    goto error;
 3769|      0|                }
 3770|      0|            }
 3771|      2|        }
 3772|      2|    }
 3773|      0|    else if (spec != NULL && spec != Py_None) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (3773:14): [True: 0, False: 0]
  |  Branch (3773:30): [True: 0, False: 0]
  ------------------
 3774|      0|        package = PyObject_GetAttr(spec, &_Py_ID(parent));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3775|      0|        if (package == NULL) {
  ------------------
  |  Branch (3775:13): [True: 0, False: 0]
  ------------------
 3776|      0|            goto error;
 3777|      0|        }
 3778|      0|        else if (!PyUnicode_Check(package)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3778:18): [True: 0, False: 0]
  ------------------
 3779|      0|            _PyErr_SetString(tstate, PyExc_TypeError,
 3780|      0|                             "__spec__.parent must be a string");
 3781|      0|            goto error;
 3782|      0|        }
 3783|      0|    }
 3784|      0|    else {
 3785|      0|        if (PyErr_WarnEx(PyExc_ImportWarning,
  ------------------
  |  Branch (3785:13): [True: 0, False: 0]
  ------------------
 3786|      0|                    "can't resolve package from __spec__ or __package__, "
 3787|      0|                    "falling back on __name__ and __path__", 1) < 0) {
 3788|      0|            goto error;
 3789|      0|        }
 3790|       |
 3791|      0|        if (PyDict_GetItemRef(globals, &_Py_ID(__name__), &package) < 0) {
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3791:13): [True: 0, False: 0]
  ------------------
 3792|      0|            goto error;
 3793|      0|        }
 3794|      0|        if (package == NULL) {
  ------------------
  |  Branch (3794:13): [True: 0, False: 0]
  ------------------
 3795|      0|            _PyErr_SetString(tstate, PyExc_KeyError,
 3796|      0|                             "'__name__' not in globals");
 3797|      0|            goto error;
 3798|      0|        }
 3799|       |
 3800|      0|        if (!PyUnicode_Check(package)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3800:13): [True: 0, False: 0]
  ------------------
 3801|      0|            _PyErr_SetString(tstate, PyExc_TypeError,
 3802|      0|                             "__name__ must be a string");
 3803|      0|            goto error;
 3804|      0|        }
 3805|       |
 3806|      0|        int haspath = PyDict_Contains(globals, &_Py_ID(__path__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3807|      0|        if (haspath < 0) {
  ------------------
  |  Branch (3807:13): [True: 0, False: 0]
  ------------------
 3808|      0|            goto error;
 3809|      0|        }
 3810|      0|        if (!haspath) {
  ------------------
  |  Branch (3810:13): [True: 0, False: 0]
  ------------------
 3811|      0|            Py_ssize_t dot;
 3812|       |
 3813|      0|            dot = PyUnicode_FindChar(package, '.',
 3814|      0|                                        0, PyUnicode_GET_LENGTH(package), -1);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3815|      0|            if (dot == -2) {
  ------------------
  |  Branch (3815:17): [True: 0, False: 0]
  ------------------
 3816|      0|                goto error;
 3817|      0|            }
 3818|      0|            else if (dot == -1) {
  ------------------
  |  Branch (3818:22): [True: 0, False: 0]
  ------------------
 3819|      0|                goto no_parent_error;
 3820|      0|            }
 3821|      0|            PyObject *substr = PyUnicode_Substring(package, 0, dot);
 3822|      0|            if (substr == NULL) {
  ------------------
  |  Branch (3822:17): [True: 0, False: 0]
  ------------------
 3823|      0|                goto error;
 3824|      0|            }
 3825|      0|            Py_SETREF(package, substr);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3826|      0|        }
 3827|      0|    }
 3828|       |
 3829|      2|    last_dot = PyUnicode_GET_LENGTH(package);
  ------------------
  |  |  299|      2|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3830|      2|    if (last_dot == 0) {
  ------------------
  |  Branch (3830:9): [True: 0, False: 2]
  ------------------
 3831|      0|        goto no_parent_error;
 3832|      0|    }
 3833|       |
 3834|      2|    for (level_up = 1; level_up < level; level_up += 1) {
  ------------------
  |  Branch (3834:24): [True: 0, False: 2]
  ------------------
 3835|      0|        last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1);
 3836|      0|        if (last_dot == -2) {
  ------------------
  |  Branch (3836:13): [True: 0, False: 0]
  ------------------
 3837|      0|            goto error;
 3838|      0|        }
 3839|      0|        else if (last_dot == -1) {
  ------------------
  |  Branch (3839:18): [True: 0, False: 0]
  ------------------
 3840|      0|            _PyErr_SetString(tstate, PyExc_ImportError,
 3841|      0|                             "attempted relative import beyond top-level "
 3842|      0|                             "package");
 3843|      0|            goto error;
 3844|      0|        }
 3845|      0|    }
 3846|       |
 3847|      2|    Py_XDECREF(spec);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3848|      2|    base = PyUnicode_Substring(package, 0, last_dot);
 3849|      2|    Py_DECREF(package);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3850|      2|    if (base == NULL || PyUnicode_GET_LENGTH(name) == 0) {
  ------------------
  |  |  299|      2|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3850:9): [True: 0, False: 2]
  |  Branch (3850:25): [True: 2, False: 0]
  ------------------
 3851|      2|        return base;
 3852|      2|    }
 3853|       |
 3854|      0|    abs_name = PyUnicode_FromFormat("%U.%U", base, name);
 3855|      0|    Py_DECREF(base);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3856|      0|    return abs_name;
 3857|       |
 3858|      0|  no_parent_error:
 3859|      0|    _PyErr_SetString(tstate, PyExc_ImportError,
 3860|      0|                     "attempted relative import "
 3861|      0|                     "with no known parent package");
 3862|       |
 3863|      0|  error:
 3864|      0|    Py_XDECREF(spec);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3865|      0|    Py_XDECREF(package);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3866|       |    return NULL;
 3867|      0|}
import.c:get_abs_name:
 4154|    168|{
 4155|    168|    if (level > 0) {
  ------------------
  |  Branch (4155:9): [True: 2, False: 166]
  ------------------
 4156|      2|        return resolve_name(tstate, name, globals, level);
 4157|      2|    }
 4158|    166|    if (PyUnicode_GET_LENGTH(name) == 0) {
  ------------------
  |  |  299|    166|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4158:9): [True: 0, False: 166]
  ------------------
 4159|      0|        _PyErr_SetString(tstate, PyExc_ValueError, "Empty module name");
 4160|      0|        return NULL;
 4161|      0|    }
 4162|    166|    return Py_NewRef(name);
  ------------------
  |  |  550|    166|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    166|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    166|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4163|    166|}
import.c:import_find_and_load:
 4099|     48|{
 4100|     48|    PyObject *mod = NULL;
 4101|     48|    PyInterpreterState *interp = tstate->interp;
 4102|     48|    int import_time = _PyInterpreterState_GetConfig(interp)->import_time;
 4103|     48|#define import_level FIND_AND_LOAD(interp).import_level
 4104|     48|#define accumulated FIND_AND_LOAD(interp).accumulated
 4105|       |
 4106|     48|    PyTime_t t1 = 0, accumulated_copy = accumulated;
  ------------------
  |  | 4104|     48|#define accumulated FIND_AND_LOAD(interp).accumulated
  |  |  ------------------
  |  |  |  |  117|     48|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
 4107|       |
 4108|       |    /* XOptions is initialized after first some imports.
 4109|       |     * So we can't have negative cache before completed initialization.
 4110|       |     * Anyway, importlib._find_and_load is much slower than
 4111|       |     * _PyDict_GetItemIdWithError().
 4112|       |     */
 4113|     48|    if (import_time) {
  ------------------
  |  Branch (4113:9): [True: 0, False: 48]
  ------------------
 4114|      0|        _IMPORT_TIME_HEADER(interp);
  ------------------
  |  |  135|      0|    do {                                                                      \
  |  |  136|      0|        if (FIND_AND_LOAD((interp)).header) {                                 \
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  |  |  |  Branch (136:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  137|      0|            fputs("import time: self [us] | cumulative | imported package\n", \
  |  |  138|      0|                  stderr);                                                    \
  |  |  139|      0|            FIND_AND_LOAD((interp)).header = 0;                               \
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  |  |  140|      0|        }                                                                     \
  |  |  141|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (141:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4115|       |
 4116|      0|        import_level++;
  ------------------
  |  | 4103|      0|#define import_level FIND_AND_LOAD(interp).import_level
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
 4117|       |        // ignore error: don't block import if reading the clock fails
 4118|      0|        (void)PyTime_PerfCounterRaw(&t1);
 4119|      0|        accumulated = 0;
  ------------------
  |  | 4104|      0|#define accumulated FIND_AND_LOAD(interp).accumulated
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
 4120|      0|    }
 4121|       |
 4122|     48|    if (PyDTrace_IMPORT_FIND_LOAD_START_ENABLED())
  ------------------
  |  Branch (4122:9): [True: 0, False: 48]
  ------------------
 4123|      0|        PyDTrace_IMPORT_FIND_LOAD_START(PyUnicode_AsUTF8(abs_name));
 4124|       |
 4125|     48|    mod = PyObject_CallMethodObjArgs(IMPORTLIB(interp), &_Py_ID(_find_and_load),
  ------------------
  |  |   98|     48|    (interp)->imports.importlib
  ------------------
                  mod = PyObject_CallMethodObjArgs(IMPORTLIB(interp), &_Py_ID(_find_and_load),
  ------------------
  |  |  917|     48|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     48|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     48|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4126|     48|                                     abs_name, IMPORT_FUNC(interp), NULL);
  ------------------
  |  |  108|     48|    (interp)->imports.import_func
  ------------------
 4127|       |
 4128|     48|    if (PyDTrace_IMPORT_FIND_LOAD_DONE_ENABLED())
  ------------------
  |  Branch (4128:9): [True: 0, False: 48]
  ------------------
 4129|      0|        PyDTrace_IMPORT_FIND_LOAD_DONE(PyUnicode_AsUTF8(abs_name),
 4130|      0|                                       mod != NULL);
 4131|       |
 4132|     48|    if (import_time) {
  ------------------
  |  Branch (4132:9): [True: 0, False: 48]
  ------------------
 4133|      0|        PyTime_t t2;
 4134|      0|        (void)PyTime_PerfCounterRaw(&t2);
 4135|      0|        PyTime_t cum = t2 - t1;
 4136|       |
 4137|      0|        import_level--;
  ------------------
  |  | 4103|      0|#define import_level FIND_AND_LOAD(interp).import_level
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
 4138|      0|        fprintf(stderr, "import time: %9ld | %10ld | %*s%s\n",
 4139|      0|                (long)_PyTime_AsMicroseconds(cum - accumulated, _PyTime_ROUND_CEILING),
  ------------------
  |  | 4104|      0|#define accumulated FIND_AND_LOAD(interp).accumulated
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
 4140|      0|                (long)_PyTime_AsMicroseconds(cum, _PyTime_ROUND_CEILING),
 4141|      0|                import_level*2, "", PyUnicode_AsUTF8(abs_name));
  ------------------
  |  | 4103|      0|#define import_level FIND_AND_LOAD(interp).import_level
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
 4142|       |
 4143|      0|        accumulated = accumulated_copy + cum;
  ------------------
  |  | 4104|      0|#define accumulated FIND_AND_LOAD(interp).accumulated
  |  |  ------------------
  |  |  |  |  117|      0|    (interp)->imports.find_and_load
  |  |  ------------------
  ------------------
 4144|      0|    }
 4145|       |
 4146|     48|    return mod;
 4147|     48|#undef import_level
 4148|     48|#undef accumulated
 4149|     48|}
import.c:register_lazy_on_parent:
 4364|      8|{
 4365|      8|    int ret = -1;
 4366|      8|    PyObject *parent = NULL;
 4367|      8|    PyObject *child = NULL;
 4368|      8|    PyObject *parent_module = NULL;
 4369|      8|    PyObject *parent_dict = NULL;
 4370|       |
 4371|      8|    PyInterpreterState *interp = tstate->interp;
 4372|      8|    PyObject *lazy_modules = LAZY_MODULES(interp);
  ------------------
  |  |   96|      8|    (interp)->imports.lazy_modules
  ------------------
 4373|      8|    assert(lazy_modules != NULL);
  ------------------
  |  Branch (4373:5): [True: 8, False: 0]
  ------------------
 4374|       |
 4375|      8|    Py_INCREF(name);
  ------------------
  |  |  310|      8|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4376|      8|    while (true) {
  ------------------
  |  Branch (4376:12): [True: 8, Folded]
  ------------------
 4377|      8|        Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0,
 4378|      8|                                            PyUnicode_GET_LENGTH(name), -1);
  ------------------
  |  |  299|      8|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4379|      8|        if (dot < 0) {
  ------------------
  |  Branch (4379:13): [True: 8, False: 0]
  ------------------
 4380|      8|            PyObject *lazy_submodules = ensure_lazy_submodules(
 4381|      8|                (PyDictObject *)lazy_modules, name);
 4382|      8|            if (lazy_submodules == NULL) {
  ------------------
  |  Branch (4382:17): [True: 0, False: 8]
  ------------------
 4383|      0|                goto done;
 4384|      0|            }
 4385|      8|            Py_DECREF(lazy_submodules);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4386|      8|            ret = 0;
 4387|      8|            goto done;
 4388|      8|        }
 4389|      0|        parent = PyUnicode_Substring(name, 0, dot);
 4390|       |        // If `parent` is NULL then this has hit the end of the import, no
 4391|       |        // more "parent.child" in the import name. The entire import will be
 4392|       |        // resolved lazily.
 4393|      0|        if (parent == NULL) {
  ------------------
  |  Branch (4393:13): [True: 0, False: 0]
  ------------------
 4394|      0|            goto done;
 4395|      0|        }
 4396|      0|        Py_XDECREF(child);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4397|      0|        child = PyUnicode_Substring(name, dot + 1, PyUnicode_GET_LENGTH(name));
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4398|      0|        if (child == NULL) {
  ------------------
  |  Branch (4398:13): [True: 0, False: 0]
  ------------------
 4399|      0|            goto done;
 4400|      0|        }
 4401|       |
 4402|       |        // Record the child as being lazily imported from the parent.
 4403|      0|        PyObject *lazy_submodules = ensure_lazy_submodules(
 4404|      0|            (PyDictObject *)lazy_modules, parent);
 4405|      0|        if (lazy_submodules == NULL) {
  ------------------
  |  Branch (4405:13): [True: 0, False: 0]
  ------------------
 4406|      0|            goto done;
 4407|      0|        }
 4408|       |
 4409|      0|        if (PySet_Add(lazy_submodules, child) < 0) {
  ------------------
  |  Branch (4409:13): [True: 0, False: 0]
  ------------------
 4410|      0|            Py_DECREF(lazy_submodules);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4411|      0|            goto done;
 4412|      0|        }
 4413|      0|        Py_DECREF(lazy_submodules);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4414|       |
 4415|       |        // Add the lazy import for the child to the parent.
 4416|      0|        Py_XSETREF(parent_module, PyImport_GetModule(parent));
  ------------------
  |  |  374|      0|    do { \
  |  |  375|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      0|        *_tmp_dst_ptr = (src); \
  |  |  378|      0|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4417|      0|        if (parent_module != NULL) {
  ------------------
  |  Branch (4417:13): [True: 0, False: 0]
  ------------------
 4418|      0|            Py_XSETREF(parent_dict, get_mod_dict(parent_module));
  ------------------
  |  |  374|      0|    do { \
  |  |  375|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  376|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  377|      0|        *_tmp_dst_ptr = (src); \
  |  |  378|      0|        Py_XDECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  379|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (379:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4419|      0|            if (parent_dict == NULL) {
  ------------------
  |  Branch (4419:17): [True: 0, False: 0]
  ------------------
 4420|      0|                goto done;
 4421|      0|            }
 4422|      0|            if (PyDict_CheckExact(parent_dict)) {
  ------------------
  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4423|      0|                int contains = PyDict_Contains(parent_dict, child);
 4424|      0|                if (contains < 0) {
  ------------------
  |  Branch (4424:21): [True: 0, False: 0]
  ------------------
 4425|      0|                    goto done;
 4426|      0|                }
 4427|      0|                if (!contains) {
  ------------------
  |  Branch (4427:21): [True: 0, False: 0]
  ------------------
 4428|      0|                    PyObject *lazy_module_attr = _PyLazyImport_New(
 4429|      0|                        tstate->current_frame, builtins, parent, child
 4430|      0|                    );
 4431|      0|                    if (lazy_module_attr == NULL) {
  ------------------
  |  Branch (4431:25): [True: 0, False: 0]
  ------------------
 4432|      0|                        goto done;
 4433|      0|                    }
 4434|      0|                    if (PyDict_SetItem(parent_dict, child,
  ------------------
  |  Branch (4434:25): [True: 0, False: 0]
  ------------------
 4435|      0|                                       lazy_module_attr) < 0) {
 4436|      0|                        Py_DECREF(lazy_module_attr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4437|      0|                        goto done;
 4438|      0|                    }
 4439|      0|                    Py_DECREF(lazy_module_attr);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4440|      0|                }
 4441|      0|            }
 4442|      0|            ret = 0;
 4443|      0|            goto done;
 4444|      0|        }
 4445|       |
 4446|      0|        Py_SETREF(name, parent);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4447|      0|        parent = NULL;
 4448|      0|    }
 4449|       |
 4450|      8|done:
 4451|      8|    Py_XDECREF(parent_dict);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4452|      8|    Py_XDECREF(parent_module);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4453|      8|    Py_XDECREF(child);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4454|      8|    Py_XDECREF(parent);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4455|      8|    Py_XDECREF(name);
  ------------------
  |  |  524|      8|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4456|      8|    return ret;
 4457|      8|}
import.c:ensure_lazy_submodules:
 4343|      8|{
 4344|      8|    PyObject *lazy_submodules;
 4345|      8|    Py_BEGIN_CRITICAL_SECTION(lazy_modules);
  ------------------
  |  |   51|      8|    {
  ------------------
 4346|      8|    int err = _PyDict_GetItemRef_Unicode_LockHeld(lazy_modules, parent,
 4347|      8|                                                  &lazy_submodules);
 4348|      8|    if (err == 0) {
  ------------------
  |  Branch (4348:9): [True: 8, False: 0]
  ------------------
 4349|       |        // value isn't present
 4350|      8|        lazy_submodules = PySet_New(NULL);
 4351|      8|        if (lazy_submodules != NULL &&
  ------------------
  |  Branch (4351:13): [True: 8, False: 0]
  ------------------
 4352|      8|            _PyDict_SetItem_LockHeld(lazy_modules, parent,
  ------------------
  |  Branch (4352:13): [True: 0, False: 8]
  ------------------
 4353|      8|                                     lazy_submodules) < 0) {
 4354|      0|            Py_CLEAR(lazy_submodules);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4355|      0|        }
 4356|      8|    }
 4357|      8|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      8|    }
  ------------------
 4358|      8|    return lazy_submodules;
 4359|      8|}
import.c:init_builtin_modules_table:
 2662|      2|{
 2663|      2|    size_t size;
 2664|     78|    for (size = 0; PyImport_Inittab[size].name != NULL; size++)
  ------------------
  |  Branch (2664:20): [True: 76, False: 2]
  ------------------
 2665|     76|        ;
 2666|      2|    size++;
 2667|       |
 2668|       |    /* Make the copy. */
 2669|      2|    struct _inittab *copied = _PyMem_DefaultRawMalloc(size * sizeof(struct _inittab));
 2670|      2|    if (copied == NULL) {
  ------------------
  |  Branch (2670:9): [True: 0, False: 2]
  ------------------
 2671|      0|        return -1;
 2672|      0|    }
 2673|      2|    memcpy(copied, PyImport_Inittab, size * sizeof(struct _inittab));
 2674|      2|    INITTAB = copied;
  ------------------
  |  |   80|      2|#define INITTAB _PyRuntime.imports.inittab
  ------------------
 2675|      2|    return 0;
 2676|      2|}
import.c:init_importlib:
 3385|      2|{
 3386|      2|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (3386:5): [True: 2, False: 0]
  ------------------
 3387|       |
 3388|      2|    PyInterpreterState *interp = tstate->interp;
 3389|      2|    int verbose = _PyInterpreterState_GetConfig(interp)->verbose;
 3390|       |
 3391|       |    // Import _importlib through its frozen version, _frozen_importlib.
 3392|      2|    if (verbose) {
  ------------------
  |  Branch (3392:9): [True: 0, False: 2]
  ------------------
 3393|      0|        PySys_FormatStderr("import _frozen_importlib # frozen\n");
 3394|      0|    }
 3395|      2|    if (PyImport_ImportFrozenModule("_frozen_importlib") <= 0) {
  ------------------
  |  Branch (3395:9): [True: 0, False: 2]
  ------------------
 3396|      0|        return -1;
 3397|      0|    }
 3398|       |
 3399|      2|    PyObject *importlib = PyImport_AddModuleRef("_frozen_importlib");
 3400|      2|    if (importlib == NULL) {
  ------------------
  |  Branch (3400:9): [True: 0, False: 2]
  ------------------
 3401|      0|        return -1;
 3402|      0|    }
 3403|      2|    IMPORTLIB(interp) = importlib;
  ------------------
  |  |   98|      2|    (interp)->imports.importlib
  ------------------
 3404|       |
 3405|       |    // Import the _imp module
 3406|      2|    if (verbose) {
  ------------------
  |  Branch (3406:9): [True: 0, False: 2]
  ------------------
 3407|      0|        PySys_FormatStderr("import _imp # builtin\n");
 3408|      0|    }
 3409|      2|    PyObject *imp_mod = bootstrap_imp(tstate);
 3410|      2|    if (imp_mod == NULL) {
  ------------------
  |  Branch (3410:9): [True: 0, False: 2]
  ------------------
 3411|      0|        return -1;
 3412|      0|    }
 3413|      2|    if (_PyImport_SetModuleString("_imp", imp_mod) < 0) {
  ------------------
  |  Branch (3413:9): [True: 0, False: 2]
  ------------------
 3414|      0|        Py_DECREF(imp_mod);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3415|      0|        return -1;
 3416|      0|    }
 3417|       |
 3418|       |    // Install importlib as the implementation of import
 3419|      2|    PyObject *value = PyObject_CallMethod(importlib, "_install",
 3420|      2|                                          "OO", sysmod, imp_mod);
 3421|      2|    Py_DECREF(imp_mod);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3422|      2|    if (value == NULL) {
  ------------------
  |  Branch (3422:9): [True: 0, False: 2]
  ------------------
 3423|      0|        return -1;
 3424|      0|    }
 3425|      2|    Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3426|       |
 3427|      2|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (3427:5): [True: 2, False: 0]
  ------------------
 3428|      2|    return 0;
 3429|      2|}
import.c:bootstrap_imp:
 3331|      2|{
 3332|      2|    PyObject *name = PyUnicode_FromString("_imp");
 3333|      2|    if (name == NULL) {
  ------------------
  |  Branch (3333:9): [True: 0, False: 2]
  ------------------
 3334|      0|        return NULL;
 3335|      0|    }
 3336|       |
 3337|       |    // Mock a ModuleSpec object just good enough for PyModule_FromDefAndSpec():
 3338|       |    // an object with just a name attribute.
 3339|       |    //
 3340|       |    // _imp.__spec__ is overridden by importlib._bootstrap._instal() anyway.
 3341|      2|    PyObject *attrs = Py_BuildValue("{sO}", "name", name);
 3342|      2|    if (attrs == NULL) {
  ------------------
  |  Branch (3342:9): [True: 0, False: 2]
  ------------------
 3343|      0|        goto error;
 3344|      0|    }
 3345|      2|    PyObject *spec = _PyNamespace_New(attrs);
 3346|      2|    Py_DECREF(attrs);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3347|      2|    if (spec == NULL) {
  ------------------
  |  Branch (3347:9): [True: 0, False: 2]
  ------------------
 3348|      0|        goto error;
 3349|      0|    }
 3350|       |
 3351|       |    // Create the _imp module from its definition.
 3352|      2|    PyObject *mod = create_builtin(tstate, name, spec, NULL);
 3353|      2|    Py_CLEAR(name);
  ------------------
  |  |  484|      2|    do { \
  |  |  485|      2|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      2|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      2|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      2|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  488|      2|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      2|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      2|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      2|        } \
  |  |  491|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 3354|      2|    Py_DECREF(spec);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3355|      2|    if (mod == NULL) {
  ------------------
  |  Branch (3355:9): [True: 0, False: 2]
  ------------------
 3356|      0|        goto error;
 3357|      0|    }
 3358|      2|    assert(mod != Py_None);  // not found
  ------------------
  |  Branch (3358:5): [True: 2, False: 0]
  ------------------
 3359|       |
 3360|       |    // Execute the _imp module: call imp_module_exec().
 3361|      2|    if (exec_builtin_or_dynamic(mod) < 0) {
  ------------------
  |  Branch (3361:9): [True: 0, False: 2]
  ------------------
 3362|      0|        Py_DECREF(mod);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3363|      0|        goto error;
 3364|      0|    }
 3365|      2|    return mod;
 3366|       |
 3367|      0|error:
 3368|      0|    Py_XDECREF(name);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3369|       |    return NULL;
 3370|      2|}
import.c:exec_builtin_or_dynamic:
  921|     24|exec_builtin_or_dynamic(PyObject *mod) {
  922|     24|    void *state;
  923|       |
  924|     24|    if (!PyModule_Check(mod)) {
  ------------------
  |  |   12|     24|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|     24|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (924:9): [True: 0, False: 24]
  ------------------
  925|      0|        return 0;
  926|      0|    }
  927|       |
  928|     24|    state = PyModule_GetState(mod);
  929|     24|    if (state) {
  ------------------
  |  Branch (929:9): [True: 0, False: 24]
  ------------------
  930|       |        /* Already initialized; skip reload */
  931|      0|        return 0;
  932|      0|    }
  933|       |
  934|     24|    return PyModule_Exec(mod);
  935|     24|}
import.c:init_importlib_external:
 3434|      2|{
 3435|      2|    PyObject *value;
 3436|      2|    value = PyObject_CallMethod(IMPORTLIB(interp),
  ------------------
  |  |   98|      2|    (interp)->imports.importlib
  ------------------
 3437|      2|                                "_install_external_importers", "");
 3438|      2|    if (value == NULL) {
  ------------------
  |  Branch (3438:9): [True: 0, False: 2]
  ------------------
 3439|      0|        return -1;
 3440|      0|    }
 3441|      2|    Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3442|      2|    return 0;
 3443|      2|}
import.c:init_zipimport:
 4826|      2|{
 4827|      2|    PyObject *path_hooks = PySys_GetAttrString("path_hooks");
 4828|      2|    if (path_hooks == NULL) {
  ------------------
  |  Branch (4828:9): [True: 0, False: 2]
  ------------------
 4829|      0|        return -1;
 4830|      0|    }
 4831|       |
 4832|      2|    if (verbose) {
  ------------------
  |  Branch (4832:9): [True: 0, False: 2]
  ------------------
 4833|      0|        PySys_WriteStderr("# installing zipimport hook\n");
 4834|      0|    }
 4835|       |
 4836|      2|    PyObject *zipimporter = PyImport_ImportModuleAttrString("zipimport", "zipimporter");
 4837|      2|    if (zipimporter == NULL) {
  ------------------
  |  Branch (4837:9): [True: 0, False: 2]
  ------------------
 4838|      0|        _PyErr_Clear(tstate); /* No zipimporter object -- okay */
 4839|      0|        if (verbose) {
  ------------------
  |  Branch (4839:13): [True: 0, False: 0]
  ------------------
 4840|      0|            PySys_WriteStderr("# can't import zipimport.zipimporter\n");
 4841|      0|        }
 4842|      0|    }
 4843|      2|    else {
 4844|       |        /* sys.path_hooks.insert(0, zipimporter) */
 4845|      2|        int err = PyList_Insert(path_hooks, 0, zipimporter);
 4846|      2|        Py_DECREF(zipimporter);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4847|      2|        if (err < 0) {
  ------------------
  |  Branch (4847:13): [True: 0, False: 2]
  ------------------
 4848|      0|            Py_DECREF(path_hooks);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4849|      0|            return -1;
 4850|      0|        }
 4851|      2|        if (verbose) {
  ------------------
  |  Branch (4851:13): [True: 0, False: 2]
  ------------------
 4852|      0|            PySys_WriteStderr("# installed zipimport hook\n");
 4853|      0|        }
 4854|      2|    }
 4855|      2|    Py_DECREF(path_hooks);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4856|       |
 4857|      2|    return 0;
 4858|      2|}
import.c:_imp_extension_suffixes_impl:
 5121|      4|{
 5122|      4|    PyObject *list;
 5123|       |
 5124|      4|    list = PyList_New(0);
 5125|      4|    if (list == NULL)
  ------------------
  |  Branch (5125:9): [True: 0, False: 4]
  ------------------
 5126|      0|        return NULL;
 5127|      4|#ifdef HAVE_DYNAMIC_LOADING
 5128|      4|    const char *suffix;
 5129|      4|    unsigned int index = 0;
 5130|       |
 5131|     20|    while ((suffix = _PyImport_DynLoadFiletab[index])) {
  ------------------
  |  Branch (5131:12): [True: 16, False: 4]
  ------------------
 5132|     16|        PyObject *item = PyUnicode_FromString(suffix);
 5133|     16|        if (item == NULL) {
  ------------------
  |  Branch (5133:13): [True: 0, False: 16]
  ------------------
 5134|      0|            Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5135|      0|            return NULL;
 5136|      0|        }
 5137|     16|        if (PyList_Append(list, item) < 0) {
  ------------------
  |  Branch (5137:13): [True: 0, False: 16]
  ------------------
 5138|      0|            Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5139|      0|            Py_DECREF(item);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5140|      0|            return NULL;
 5141|      0|        }
 5142|     16|        Py_DECREF(item);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5143|     16|        index += 1;
 5144|     16|    }
 5145|      4|#endif
 5146|      4|    return list;
 5147|      4|}
import.c:_imp_acquire_lock_impl:
 5018|    192|{
 5019|    192|    PyInterpreterState *interp = _PyInterpreterState_GET();
 5020|    192|    _PyImport_AcquireLock(interp);
 5021|    192|    Py_RETURN_NONE;
  ------------------
  |  |  628|    192|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|    192|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 5022|    192|}
import.c:_imp_release_lock_impl:
 5035|    192|{
 5036|    192|    PyInterpreterState *interp = _PyInterpreterState_GET();
 5037|    192|    if (!_PyRecursiveMutex_IsLockedByCurrentThread(&IMPORT_LOCK(interp))) {
  ------------------
  |  |  114|    192|    (interp)->imports.lock
  ------------------
  |  Branch (5037:9): [True: 0, False: 192]
  ------------------
 5038|      0|        PyErr_SetString(PyExc_RuntimeError,
 5039|      0|                        "not holding the import lock");
 5040|      0|        return NULL;
 5041|      0|    }
 5042|    192|    _PyImport_ReleaseLock(interp);
 5043|    192|    Py_RETURN_NONE;
  ------------------
  |  |  628|    192|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|    192|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 5044|    192|}
import.c:_imp_find_frozen_impl:
 5196|     32|{
 5197|     32|    struct frozen_info info;
 5198|     32|    frozen_status status = find_frozen(name, &info);
 5199|     32|    if (status == FROZEN_NOT_FOUND || status == FROZEN_DISABLED) {
  ------------------
  |  Branch (5199:9): [True: 4, False: 28]
  |  Branch (5199:39): [True: 0, False: 28]
  ------------------
 5200|      4|        Py_RETURN_NONE;
  ------------------
  |  |  628|      4|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      4|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 5201|      4|    }
 5202|     28|    else if (status == FROZEN_BAD_NAME) {
  ------------------
  |  Branch (5202:14): [True: 0, False: 28]
  ------------------
 5203|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 5204|      0|    }
 5205|     28|    else if (status != FROZEN_OKAY) {
  ------------------
  |  Branch (5205:14): [True: 0, False: 28]
  ------------------
 5206|      0|        set_frozen_error(status, name);
 5207|      0|        return NULL;
 5208|      0|    }
 5209|       |
 5210|     28|    PyObject *data = NULL;
 5211|     28|    if (withdata) {
  ------------------
  |  Branch (5211:9): [True: 0, False: 28]
  ------------------
 5212|      0|        data = PyMemoryView_FromMemory((char *)info.data, info.size, PyBUF_READ);
  ------------------
  |  |  137|      0|#define PyBUF_READ  0x100
  ------------------
 5213|      0|        if (data == NULL) {
  ------------------
  |  Branch (5213:13): [True: 0, False: 0]
  ------------------
 5214|      0|            return NULL;
 5215|      0|        }
 5216|      0|    }
 5217|       |
 5218|     28|    PyObject *origname = NULL;
 5219|     28|    if (info.origname != NULL && info.origname[0] != '\0') {
  ------------------
  |  Branch (5219:9): [True: 28, False: 0]
  |  Branch (5219:34): [True: 28, False: 0]
  ------------------
 5220|     28|        origname = PyUnicode_FromString(info.origname);
 5221|     28|        if (origname == NULL) {
  ------------------
  |  Branch (5221:13): [True: 0, False: 28]
  ------------------
 5222|      0|            Py_XDECREF(data);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5223|      0|            return NULL;
 5224|      0|        }
 5225|     28|    }
 5226|       |
 5227|     28|    PyObject *result = PyTuple_Pack(3, data ? data : Py_None,
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (5227:40): [True: 0, False: 28]
  ------------------
 5228|     28|                                    info.is_package ? Py_True : Py_False,
  ------------------
  |  |   26|     28|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                                                  info.is_package ? Py_True : Py_False,
  ------------------
  |  |   25|     28|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5228:37): [True: 2, False: 26]
  ------------------
 5229|     28|                                    origname ? origname : Py_None);
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (5229:37): [True: 28, False: 0]
  ------------------
 5230|     28|    Py_XDECREF(origname);
  ------------------
  |  |  524|     28|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5231|     28|    Py_XDECREF(data);
  ------------------
  |  |  524|     28|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5232|     28|    return result;
 5233|     28|}
import.c:_imp_get_frozen_object_impl:
 5249|     28|{
 5250|     28|    struct frozen_info info = {0};
 5251|     28|    Py_buffer buf = {0};
 5252|     28|    if (PyObject_CheckBuffer(dataobj)) {
  ------------------
  |  Branch (5252:9): [True: 0, False: 28]
  ------------------
 5253|      0|        if (PyObject_GetBuffer(dataobj, &buf, PyBUF_SIMPLE) != 0) {
  ------------------
  |  |  108|      0|#define PyBUF_SIMPLE 0
  ------------------
  |  Branch (5253:13): [True: 0, False: 0]
  ------------------
 5254|      0|            return NULL;
 5255|      0|        }
 5256|      0|        info.data = (const char *)buf.buf;
 5257|      0|        info.size = buf.len;
 5258|      0|    }
 5259|     28|    else if (dataobj != Py_None) {
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (5259:14): [True: 0, False: 28]
  ------------------
 5260|      0|        _PyArg_BadArgument("get_frozen_object", "argument 2", "bytes", dataobj);
 5261|      0|        return NULL;
 5262|      0|    }
 5263|     28|    else {
 5264|     28|        frozen_status status = find_frozen(name, &info);
 5265|     28|        if (status != FROZEN_OKAY) {
  ------------------
  |  Branch (5265:13): [True: 0, False: 28]
  ------------------
 5266|      0|            set_frozen_error(status, name);
 5267|      0|            return NULL;
 5268|      0|        }
 5269|     28|    }
 5270|       |
 5271|     28|    if (info.nameobj == NULL) {
  ------------------
  |  Branch (5271:9): [True: 0, False: 28]
  ------------------
 5272|      0|        info.nameobj = name;
 5273|      0|    }
 5274|     28|    if (info.size == 0) {
  ------------------
  |  Branch (5274:9): [True: 0, False: 28]
  ------------------
 5275|       |        /* Does not contain executable code. */
 5276|      0|        set_frozen_error(FROZEN_INVALID, name);
 5277|      0|        return NULL;
 5278|      0|    }
 5279|       |
 5280|     28|    PyInterpreterState *interp = _PyInterpreterState_GET();
 5281|     28|    PyObject *codeobj = unmarshal_frozen_code(interp, &info);
 5282|     28|    if (dataobj != Py_None) {
  ------------------
  |  |  616|     28|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (5282:9): [True: 0, False: 28]
  ------------------
 5283|      0|        PyBuffer_Release(&buf);
 5284|      0|    }
 5285|     28|    return codeobj;
 5286|     28|}
import.c:_imp_is_frozen_package_impl:
 5300|      2|{
 5301|      2|    struct frozen_info info;
 5302|      2|    frozen_status status = find_frozen(name, &info);
 5303|      2|    if (status != FROZEN_OKAY && status != FROZEN_EXCLUDED) {
  ------------------
  |  Branch (5303:9): [True: 0, False: 2]
  |  Branch (5303:34): [True: 0, False: 0]
  ------------------
 5304|      0|        set_frozen_error(status, name);
 5305|      0|        return NULL;
 5306|      0|    }
 5307|      2|    return PyBool_FromLong(info.is_package);
 5308|      2|}
import.c:_imp_create_builtin:
 5084|     22|{
 5085|     22|    PyThreadState *tstate = _PyThreadState_GET();
 5086|       |
 5087|     22|    PyObject *name = PyObject_GetAttrString(spec, "name");
 5088|     22|    if (name == NULL) {
  ------------------
  |  Branch (5088:9): [True: 0, False: 22]
  ------------------
 5089|      0|        return NULL;
 5090|      0|    }
 5091|       |
 5092|     22|    if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|     22|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     22|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (5092:9): [True: 0, False: 22]
  ------------------
 5093|      0|        PyErr_Format(PyExc_TypeError,
 5094|      0|                     "name must be string, not %.200s",
 5095|      0|                     Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5096|      0|        Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5097|      0|        return NULL;
 5098|      0|    }
 5099|       |
 5100|     22|    if (PyUnicode_GetLength(name) == 0) {
  ------------------
  |  Branch (5100:9): [True: 0, False: 22]
  ------------------
 5101|      0|        PyErr_Format(PyExc_ValueError, "name must not be empty");
 5102|      0|        Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5103|      0|        return NULL;
 5104|      0|    }
 5105|       |
 5106|     22|    PyObject *mod = create_builtin(tstate, name, spec, NULL);
 5107|     22|    Py_DECREF(name);
  ------------------
  |  |  430|     22|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5108|     22|    return mod;
 5109|     22|}
import.c:_imp_is_builtin_impl:
 5322|     54|{
 5323|     54|    return PyLong_FromLong(is_builtin(name));
 5324|     54|}
import.c:is_builtin:
 2449|     54|{
 2450|     54|    int i;
 2451|     54|    struct _inittab *inittab = INITTAB;
  ------------------
  |  |   80|     54|#define INITTAB _PyRuntime.imports.inittab
  ------------------
 2452|  1.65k|    for (i = 0; inittab[i].name != NULL; i++) {
  ------------------
  |  Branch (2452:17): [True: 1.62k, False: 32]
  ------------------
 2453|  1.62k|        if (_PyUnicode_EqualToASCIIString(name, inittab[i].name)) {
  ------------------
  |  Branch (2453:13): [True: 22, False: 1.59k]
  ------------------
 2454|     22|            if (inittab[i].initfunc == NULL)
  ------------------
  |  Branch (2454:17): [True: 0, False: 22]
  ------------------
 2455|      0|                return -1;
 2456|     22|            else
 2457|     22|                return 1;
 2458|     22|        }
 2459|  1.62k|    }
 2460|     32|    return 0;
 2461|     54|}
import.c:_imp_is_frozen_impl:
 5338|      2|{
 5339|      2|    struct frozen_info info;
 5340|      2|    frozen_status status = find_frozen(name, &info);
 5341|      2|    if (status != FROZEN_OKAY) {
  ------------------
  |  Branch (5341:9): [True: 0, False: 2]
  ------------------
 5342|      0|        Py_RETURN_FALSE;
  ------------------
  |  |   45|      0|#  define Py_RETURN_FALSE return Py_False
  |  |  ------------------
  |  |  |  |   25|      0|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5343|      0|    }
 5344|      2|    Py_RETURN_TRUE;
  ------------------
  |  |   44|      2|#  define Py_RETURN_TRUE return Py_True
  |  |  ------------------
  |  |  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5345|      2|}
import.c:_imp_exec_builtin_impl:
 5551|     22|{
 5552|     22|    return exec_builtin_or_dynamic(mod);
 5553|     22|}
import.c:_imp__set_lazy_attributes_impl:
 5635|     44|{
 5636|     44|    PyThreadState *tstate = _PyThreadState_GET();
 5637|     44|    PyObject *module_dict = NULL;
 5638|     44|    PyObject *ret = NULL;
 5639|     44|    PyObject *lazy_modules = LAZY_MODULES(tstate->interp);
  ------------------
  |  |   96|     44|    (interp)->imports.lazy_modules
  ------------------
 5640|     44|    assert(lazy_modules != NULL);
  ------------------
  |  Branch (5640:5): [True: 44, False: 0]
  ------------------
 5641|       |
 5642|     44|    PyObject *lazy_submodules;
 5643|     44|    if (PyDict_GetItemRef(lazy_modules, name, &lazy_submodules) < 0) {
  ------------------
  |  Branch (5643:9): [True: 0, False: 44]
  ------------------
 5644|      0|        return NULL;
 5645|      0|    }
 5646|     44|    else if (lazy_submodules == NULL) {
  ------------------
  |  Branch (5646:14): [True: 44, False: 0]
  ------------------
 5647|     44|        Py_RETURN_NONE;
  ------------------
  |  |  628|     44|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     44|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 5648|     44|    }
 5649|       |
 5650|      0|    module_dict = get_mod_dict(modobj);
 5651|      0|    if (module_dict == NULL || !PyDict_CheckExact(module_dict)) {
  ------------------
  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (5651:9): [True: 0, False: 0]
  |  Branch (5651:32): [True: 0, False: 0]
  ------------------
 5652|      0|        Py_DECREF(lazy_submodules);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5653|      0|        goto done;
 5654|      0|    }
 5655|       |
 5656|      0|    assert(PyAnySet_CheckExact(lazy_submodules));
  ------------------
  |  Branch (5656:5): [True: 0, False: 0]
  |  Branch (5656:5): [True: 0, False: 0]
  ------------------
 5657|      0|    Py_BEGIN_CRITICAL_SECTION(lazy_submodules);
  ------------------
  |  |   51|      0|    {
  ------------------
 5658|      0|    publish_lazy_imports_on_module(tstate, lazy_submodules, name, module_dict);
 5659|      0|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
 5660|      0|    Py_DECREF(lazy_submodules);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5661|       |
 5662|       |    // once a module is imported it is removed from sys.lazy_modules
 5663|      0|    if (PyDict_DelItem(lazy_modules, name) < 0) {
  ------------------
  |  Branch (5663:9): [True: 0, False: 0]
  ------------------
 5664|      0|        goto error;
 5665|      0|    }
 5666|       |
 5667|      0|done:
 5668|      0|    ret = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5669|       |
 5670|      0|error:
 5671|      0|    Py_XDECREF(module_dict);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 5672|      0|    return ret;
 5673|      0|}
import.c:imp_module_exec:
 5705|      2|{
 5706|      2|    const wchar_t *mode = _Py_GetConfig()->check_hash_pycs_mode;
 5707|      2|    PyObject *pyc_mode = PyUnicode_FromWideChar(mode, -1);
 5708|      2|    if (PyModule_Add(module, "check_hash_based_pycs", pyc_mode) < 0) {
  ------------------
  |  Branch (5708:9): [True: 0, False: 2]
  ------------------
 5709|      0|        return -1;
 5710|      0|    }
 5711|       |
 5712|      2|    if (PyModule_AddIntConstant(
  ------------------
  |  Branch (5712:9): [True: 0, False: 2]
  ------------------
 5713|      2|            module, "pyc_magic_number_token", PYC_MAGIC_NUMBER_TOKEN) < 0)
  ------------------
  |  |  318|      2|    ((uint32_t)PYC_MAGIC_NUMBER | ((uint32_t)'\r' << 16) | ((uint32_t)'\n' << 24))
  |  |  ------------------
  |  |  |  |  314|      2|#define PYC_MAGIC_NUMBER 3700
  |  |  ------------------
  ------------------
 5714|      0|    {
 5715|      0|        return -1;
 5716|      0|    }
 5717|       |
 5718|      2|    return 0;
 5719|      2|}

_Py_ext_module_loader_info_clear:
   86|     24|{
   87|     24|    Py_CLEAR(info->filename);
  ------------------
  |  |  484|     24|    do { \
  |  |  485|     24|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     24|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     24|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 24]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|     24|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 24]
  |  |  ------------------
  ------------------
   88|     24|#ifndef MS_WINDOWS
   89|     24|    Py_CLEAR(info->filename_encoded);
  ------------------
  |  |  484|     24|    do { \
  |  |  485|     24|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     24|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     24|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 24]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|     24|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 24]
  |  |  ------------------
  ------------------
   90|     24|#endif
   91|     24|    Py_CLEAR(info->name);
  ------------------
  |  |  484|     24|    do { \
  |  |  485|     24|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     24|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     24|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 24, False: 0]
  |  |  ------------------
  |  |  488|     24|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     24|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     24|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     24|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     24|        } \
  |  |  491|     24|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 24]
  |  |  ------------------
  ------------------
   92|       |    Py_CLEAR(info->name_encoded);
  ------------------
  |  |  484|     24|    do { \
  |  |  485|     24|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|     24|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|     24|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|     24|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 24, False: 0]
  |  |  ------------------
  |  |  488|     24|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|     24|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|     24|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|     24|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|     24|        } \
  |  |  491|     24|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 24]
  |  |  ------------------
  ------------------
   93|     24|}
_Py_ext_module_loader_info_init_for_builtin:
  157|     24|{
  158|     24|    assert(PyUnicode_Check(name));
  ------------------
  |  Branch (158:5): [True: 24, False: 0]
  ------------------
  159|     24|    assert(PyUnicode_GetLength(name) > 0);
  ------------------
  |  Branch (159:5): [True: 24, False: 0]
  ------------------
  160|       |
  161|     24|    PyObject *name_encoded = PyUnicode_AsEncodedString(name, "ascii", NULL);
  162|     24|    if (name_encoded == NULL) {
  ------------------
  |  Branch (162:9): [True: 0, False: 24]
  ------------------
  163|      0|        return -1;
  164|      0|    }
  165|       |
  166|     24|    *info = (struct _Py_ext_module_loader_info){
  167|     24|        .name=Py_NewRef(name),
  ------------------
  |  |  550|     24|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  168|     24|        .name_encoded=name_encoded,
  169|       |        /* We won't need filename. */
  170|     24|        .path=name,
  171|     24|        .origin=_Py_ext_module_origin_BUILTIN,
  172|     24|        .hook_prefixes=&ascii_only_prefixes,
  173|       |        .newcontext=NULL,
  174|     24|    };
  175|     24|    return 0;
  176|     24|}
_Py_ext_module_loader_result_clear:
  221|     24|{
  222|       |    /* Instead, the caller should have called
  223|       |     * _Py_ext_module_loader_result_apply_error(). */
  224|     24|    assert(res->err == NULL);
  ------------------
  |  Branch (224:5): [True: 24, False: 0]
  ------------------
  225|     24|    *res = (struct _Py_ext_module_loader_result){0};
  226|     24|}
_PyImport_RunModInitFunc:
  427|     24|{
  428|     24|    struct _Py_ext_module_loader_result res = {
  429|     24|        .kind=_Py_ext_module_kind_UNKNOWN,
  430|     24|    };
  431|       |
  432|       |    /* Call the module init function. */
  433|       |
  434|       |    /* Package context is needed for single-phase init */
  435|     24|    const char *oldcontext = _PyImport_SwapPackageContext(info->newcontext);
  436|     24|    PyObject *m = p0();
  437|     24|    _PyImport_SwapPackageContext(oldcontext);
  438|       |
  439|       |    /* Validate the result (and populate "res". */
  440|       |
  441|     24|    if (m == NULL) {
  ------------------
  |  Branch (441:9): [True: 0, False: 24]
  ------------------
  442|       |        /* The init func for multi-phase init modules is expected
  443|       |         * to return a PyModuleDef after calling PyModuleDef_Init().
  444|       |         * That function never raises an exception nor returns NULL,
  445|       |         * so at this point it must be a single-phase init modules. */
  446|      0|        res.kind = _Py_ext_module_kind_SINGLEPHASE;
  447|      0|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (447:13): [True: 0, False: 0]
  ------------------
  448|      0|            _Py_ext_module_loader_result_set_error(
  449|      0|                        &res, _Py_ext_module_loader_result_EXCEPTION);
  450|      0|        }
  451|      0|        else {
  452|      0|            _Py_ext_module_loader_result_set_error(
  453|      0|                        &res, _Py_ext_module_loader_result_ERR_MISSING);
  454|      0|        }
  455|      0|        goto error;
  456|     24|    } else if (PyErr_Occurred()) {
  ------------------
  |  Branch (456:16): [True: 0, False: 24]
  ------------------
  457|       |        /* Likewise, we infer that this is a single-phase init module. */
  458|      0|        res.kind = _Py_ext_module_kind_SINGLEPHASE;
  459|      0|        _Py_ext_module_loader_result_set_error(
  460|      0|                &res, _Py_ext_module_loader_result_ERR_UNREPORTED_EXC);
  461|       |        /* We would probably be correct to decref m here,
  462|       |         * but we weren't doing so before,
  463|       |         * so we stick with doing nothing. */
  464|      0|        m = NULL;
  465|      0|        goto error;
  466|      0|    }
  467|       |
  468|     24|    if (Py_IS_TYPE(m, NULL)) {
  ------------------
  |  |  215|     24|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 24]
  |  |  ------------------
  ------------------
  469|       |        /* This can happen when a PyModuleDef is returned without calling
  470|       |         * PyModuleDef_Init on it
  471|       |         */
  472|      0|        _Py_ext_module_loader_result_set_error(
  473|      0|                &res, _Py_ext_module_loader_result_ERR_UNINITIALIZED);
  474|       |        /* Likewise, decref'ing here makes sense.  However, the original
  475|       |         * code has a note about "prevent segfault in DECREF",
  476|       |         * so we play it safe and leave it alone. */
  477|      0|        m = NULL; /* prevent segfault in DECREF */
  478|      0|        goto error;
  479|      0|    }
  480|       |
  481|     24|    if (PyObject_TypeCheck(m, &PyModuleDef_Type)) {
  ------------------
  |  |  378|     24|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (378:40): [True: 24, False: 0]
  |  |  ------------------
  ------------------
  482|       |        /* multi-phase init */
  483|     24|        res.kind = _Py_ext_module_kind_MULTIPHASE;
  484|     24|        res.def = (PyModuleDef *)m;
  485|       |        /* Run PyModule_FromDefAndSpec() to finish loading the module. */
  486|     24|    }
  487|      0|    else if (info->hook_prefixes == &nonascii_prefixes) {
  ------------------
  |  Branch (487:14): [True: 0, False: 0]
  ------------------
  488|       |        /* Non-ASCII is only supported for multi-phase init. */
  489|      0|        res.kind = _Py_ext_module_kind_MULTIPHASE;
  490|       |        /* Don't allow legacy init for non-ASCII module names. */
  491|      0|        _Py_ext_module_loader_result_set_error(
  492|      0|                &res, _Py_ext_module_loader_result_ERR_NONASCII_NOT_MULTIPHASE);
  493|      0|        goto error;
  494|      0|    }
  495|      0|    else {
  496|       |        /* single-phase init (legacy) */
  497|      0|        res.kind = _Py_ext_module_kind_SINGLEPHASE;
  498|      0|        res.module = m;
  499|       |
  500|      0|        if (!PyModule_Check(m)) {
  ------------------
  |  |   12|      0|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|      0|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (500:13): [True: 0, False: 0]
  ------------------
  501|      0|            _Py_ext_module_loader_result_set_error(
  502|      0|                    &res, _Py_ext_module_loader_result_ERR_NOT_MODULE);
  503|      0|            goto error;
  504|      0|        }
  505|       |
  506|      0|        res.def = _PyModule_GetDefOrNull(m);
  507|      0|        if (res.def == NULL) {
  ------------------
  |  Branch (507:13): [True: 0, False: 0]
  ------------------
  508|      0|            PyErr_Clear();
  509|      0|            _Py_ext_module_loader_result_set_error(
  510|      0|                    &res, _Py_ext_module_loader_result_ERR_MISSING_DEF);
  511|      0|            goto error;
  512|      0|        }
  513|      0|    }
  514|       |
  515|     24|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (515:5): [True: 24, False: 0]
  ------------------
  516|     24|    assert(res.err == NULL);
  ------------------
  |  Branch (516:5): [True: 24, False: 0]
  ------------------
  517|     24|    *p_res = res;
  518|     24|    return 0;
  519|       |
  520|      0|error:
  521|      0|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (521:5): [True: 0, False: 0]
  ------------------
  522|      0|    assert(res.err != NULL);
  ------------------
  |  Branch (522:5): [True: 0, False: 0]
  ------------------
  523|      0|    Py_CLEAR(res.module);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  524|       |    res.def = NULL;
  525|      0|    *p_res = res;
  526|      0|    p_res->err = &p_res->_err;
  527|      0|    return -1;
  528|      0|}

Py_GETENV:
  690|     24|{
  691|     24|_Py_COMP_DIAG_PUSH
  692|     24|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
  693|     24|    if (Py_IgnoreEnvironmentFlag) {
  ------------------
  |  Branch (693:9): [True: 0, False: 24]
  ------------------
  694|      0|        return NULL;
  695|      0|    }
  696|     24|    return getenv(name);
  697|     24|_Py_COMP_DIAG_POP
  698|     24|}
PyStatus_Ok:
  703|      6|{ return _PyStatus_OK(); }
  ------------------
  |  |   24|      6|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
PyStatus_Exception:
  726|      4|{ return _PyStatus_EXCEPTION(status); }
  ------------------
  |  |   43|      4|    ((err)._type != _PyStatus_TYPE_OK)
  ------------------
_PyWideStringList_CheckConsistency:
  764|    214|{
  765|    214|    assert(list->length >= 0);
  ------------------
  |  Branch (765:5): [True: 214, False: 0]
  ------------------
  766|    214|    if (list->length != 0) {
  ------------------
  |  Branch (766:9): [True: 24, False: 190]
  ------------------
  767|     24|        assert(list->items != NULL);
  ------------------
  |  Branch (767:9): [True: 24, False: 0]
  ------------------
  768|     24|    }
  769|    250|    for (Py_ssize_t i = 0; i < list->length; i++) {
  ------------------
  |  Branch (769:28): [True: 36, False: 214]
  ------------------
  770|     36|        assert(list->items[i] != NULL);
  ------------------
  |  Branch (770:9): [True: 36, False: 0]
  ------------------
  771|     36|    }
  772|    214|    return 1;
  773|    214|}
_PyWideStringList_Clear:
  802|     68|{
  803|       |    _PyWideStringList_ClearEx(list, false);
  804|     68|}
_PyWideStringList_Copy:
  855|     38|{
  856|       |    return _PyWideStringList_CopyEx(list, list2, false);
  857|     38|}
PyWideStringList_Insert:
  862|     10|{
  863|     10|    Py_ssize_t len = list->length;
  864|     10|    if (len == PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|     10|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (864:9): [True: 0, False: 10]
  ------------------
  865|       |        /* length+1 would overflow */
  866|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  867|      0|    }
  868|     10|    if (index < 0) {
  ------------------
  |  Branch (868:9): [True: 0, False: 10]
  ------------------
  869|      0|        return _PyStatus_ERR("PyWideStringList_Insert index must be >= 0");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  870|      0|    }
  871|     10|    if (index > len) {
  ------------------
  |  Branch (871:9): [True: 0, False: 10]
  ------------------
  872|      0|        index = len;
  873|      0|    }
  874|       |
  875|     10|    wchar_t *item2 = _PyMem_RawWcsdup(item);
  876|     10|    if (item2 == NULL) {
  ------------------
  |  Branch (876:9): [True: 0, False: 10]
  ------------------
  877|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  878|      0|    }
  879|       |
  880|     10|    size_t size = (len + 1) * sizeof(list->items[0]);
  881|     10|    wchar_t **items2 = (wchar_t **)PyMem_RawRealloc(list->items, size);
  882|     10|    if (items2 == NULL) {
  ------------------
  |  Branch (882:9): [True: 0, False: 10]
  ------------------
  883|      0|        PyMem_RawFree(item2);
  884|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  885|      0|    }
  886|       |
  887|     10|    if (index < len) {
  ------------------
  |  Branch (887:9): [True: 0, False: 10]
  ------------------
  888|      0|        memmove(&items2[index + 1],
  889|      0|                &items2[index],
  890|      0|                (len - index) * sizeof(items2[0]));
  891|      0|    }
  892|       |
  893|     10|    items2[index] = item2;
  894|     10|    list->items = items2;
  895|     10|    list->length++;
  896|     10|    return _PyStatus_OK();
  ------------------
  |  |   24|     10|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  897|     10|}
PyWideStringList_Append:
  902|     10|{
  903|     10|    return PyWideStringList_Insert(list, list->length, item);
  904|     10|}
_PyWideStringList_Extend:
  909|      4|{
  910|      4|    for (Py_ssize_t i = 0; i < list2->length; i++) {
  ------------------
  |  Branch (910:28): [True: 0, False: 4]
  ------------------
  911|      0|        PyStatus status = PyWideStringList_Append(list, list2->items[i]);
  912|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  913|      0|            return status;
  914|      0|        }
  915|      0|    }
  916|      4|    return _PyStatus_OK();
  ------------------
  |  |   24|      4|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  917|      4|}
_PyWideStringList_AsList:
  934|      8|{
  935|      8|    assert(_PyWideStringList_CheckConsistency(list));
  ------------------
  |  Branch (935:5): [True: 8, False: 0]
  ------------------
  936|       |
  937|      8|    PyObject *pylist = PyList_New(list->length);
  938|      8|    if (pylist == NULL) {
  ------------------
  |  Branch (938:9): [True: 0, False: 8]
  ------------------
  939|      0|        return NULL;
  940|      0|    }
  941|       |
  942|     16|    for (Py_ssize_t i = 0; i < list->length; i++) {
  ------------------
  |  Branch (942:28): [True: 8, False: 8]
  ------------------
  943|      8|        PyObject *item = PyUnicode_FromWideChar(list->items[i], -1);
  944|      8|        if (item == NULL) {
  ------------------
  |  Branch (944:13): [True: 0, False: 8]
  ------------------
  945|      0|            Py_DECREF(pylist);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  946|      0|            return NULL;
  947|      0|        }
  948|      8|        PyList_SET_ITEM(pylist, i, item);
  ------------------
  |  |   50|      8|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  949|      8|    }
  950|      8|    return pylist;
  951|      8|}
PyConfig_Clear:
 1088|      8|{
 1089|      8|#define CLEAR(ATTR) \
 1090|      8|    do { \
 1091|      8|        PyMem_RawFree(ATTR); \
 1092|      8|        ATTR = NULL; \
 1093|      8|    } while (0)
 1094|       |
 1095|      8|    CLEAR(config->pycache_prefix);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1096|      8|    CLEAR(config->pythonpath_env);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1097|      8|    CLEAR(config->home);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1098|      8|    CLEAR(config->program_name);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1099|       |
 1100|      8|    _PyWideStringList_Clear(&config->argv);
 1101|      8|    _PyWideStringList_Clear(&config->warnoptions);
 1102|      8|    _PyWideStringList_Clear(&config->xoptions);
 1103|      8|    _PyWideStringList_Clear(&config->module_search_paths);
 1104|      8|    config->module_search_paths_set = 0;
 1105|      8|    CLEAR(config->stdlib_dir);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1106|       |
 1107|      8|    CLEAR(config->executable);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1108|      8|    CLEAR(config->base_executable);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1109|      8|    CLEAR(config->prefix);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1110|      8|    CLEAR(config->base_prefix);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1111|      8|    CLEAR(config->exec_prefix);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1112|      8|    CLEAR(config->base_exec_prefix);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1113|      8|    CLEAR(config->platlibdir);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1114|      8|    CLEAR(config->sys_path_0);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1115|       |
 1116|      8|    CLEAR(config->filesystem_encoding);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1117|      8|    CLEAR(config->filesystem_errors);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1118|      8|    CLEAR(config->stdio_encoding);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1119|      8|    CLEAR(config->stdio_errors);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1120|      8|    CLEAR(config->run_command);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1121|      8|    CLEAR(config->run_module);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1122|      8|    CLEAR(config->run_filename);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1123|      8|    CLEAR(config->check_hash_pycs_mode);
  ------------------
  |  | 1090|      8|    do { \
  |  | 1091|      8|        PyMem_RawFree(ATTR); \
  |  | 1092|      8|        ATTR = NULL; \
  |  | 1093|      8|    } while (0)
  |  |  ------------------
  |  |  |  Branch (1093:14): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1124|       |#ifdef Py_DEBUG
 1125|       |    CLEAR(config->run_presite);
 1126|       |#endif
 1127|       |
 1128|      8|    _PyWideStringList_Clear(&config->orig_argv);
 1129|      8|#undef CLEAR
 1130|      8|}
_PyConfig_InitCompatConfig:
 1135|      6|{
 1136|      6|    memset(config, 0, sizeof(*config));
 1137|       |
 1138|      6|    config->_config_init = (int)_PyConfig_INIT_COMPAT;
 1139|      6|    config->import_time = -1;
 1140|      6|    config->isolated = -1;
 1141|      6|    config->use_environment = -1;
 1142|      6|    config->dev_mode = -1;
 1143|      6|    config->install_signal_handlers = 1;
 1144|      6|    config->use_hash_seed = -1;
 1145|      6|    config->faulthandler = -1;
 1146|      6|    config->tracemalloc = -1;
 1147|      6|    config->perf_profiling = -1;
 1148|      6|    config->remote_debug = -1;
 1149|      6|    config->module_search_paths_set = 0;
 1150|      6|    config->parse_argv = 0;
 1151|      6|    config->site_import = -1;
 1152|      6|    config->bytes_warning = -1;
 1153|      6|    config->warn_default_encoding = 0;
 1154|      6|    config->inspect = -1;
 1155|      6|    config->interactive = -1;
 1156|      6|    config->optimization_level = -1;
 1157|      6|    config->parser_debug= -1;
 1158|      6|    config->write_bytecode = -1;
 1159|      6|    config->verbose = -1;
 1160|      6|    config->quiet = -1;
 1161|      6|    config->user_site_directory = -1;
 1162|      6|    config->configure_c_stdio = 0;
 1163|      6|    config->buffered_stdio = -1;
 1164|      6|    config->_install_importlib = 1;
 1165|      6|    config->check_hash_pycs_mode = NULL;
 1166|      6|    config->pathconfig_warnings = -1;
 1167|      6|    config->_init_main = 1;
 1168|       |#ifdef MS_WINDOWS
 1169|       |    config->legacy_windows_stdio = -1;
 1170|       |#endif
 1171|       |#ifdef Py_DEBUG
 1172|       |    config->use_frozen_modules = 0;
 1173|       |#else
 1174|      6|    config->use_frozen_modules = 1;
 1175|      6|#endif
 1176|      6|    config->safe_path = 0;
 1177|      6|    config->int_max_str_digits = -1;
 1178|      6|    config->_is_python_build = 0;
 1179|      6|    config->code_debug_ranges = 1;
 1180|      6|    config->cpu_count = -1;
 1181|      6|    config->lazy_imports = -1;
 1182|       |#ifdef Py_GIL_DISABLED
 1183|       |    config->thread_inherit_context = 1;
 1184|       |    config->context_aware_warnings = 1;
 1185|       |#else
 1186|      6|    config->thread_inherit_context = 0;
 1187|      6|    config->context_aware_warnings = 0;
 1188|      6|#endif
 1189|       |#ifdef __APPLE__
 1190|       |    config->use_system_logger = USE_SYSTEM_LOGGER_DEFAULT;
 1191|       |#endif
 1192|       |#ifdef Py_GIL_DISABLED
 1193|       |    config->enable_gil = _PyConfig_GIL_DEFAULT;
 1194|       |    config->tlbc_enabled = 1;
 1195|       |#endif
 1196|      6|}
PyConfig_InitPythonConfig:
 1236|      6|{
 1237|      6|    config_init_defaults(config);
 1238|       |
 1239|      6|    config->_config_init = (int)_PyConfig_INIT_PYTHON;
 1240|      6|    config->configure_c_stdio = 1;
 1241|      6|    config->parse_argv = 1;
 1242|      6|}
PyConfig_SetString:
 1279|    142|{
 1280|    142|    PyStatus status = _Py_PreInitializeFromConfig(config, NULL);
 1281|    142|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|    142|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 142]
  |  |  ------------------
  ------------------
 1282|      0|        return status;
 1283|      0|    }
 1284|       |
 1285|    142|    wchar_t *str2;
 1286|    142|    if (str != NULL) {
  ------------------
  |  Branch (1286:9): [True: 52, False: 90]
  ------------------
 1287|     52|        str2 = _PyMem_RawWcsdup(str);
 1288|     52|        if (str2 == NULL) {
  ------------------
  |  Branch (1288:13): [True: 0, False: 52]
  ------------------
 1289|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 1290|      0|        }
 1291|     52|    }
 1292|     90|    else {
 1293|     90|        str2 = NULL;
 1294|     90|    }
 1295|    142|    PyMem_RawFree(*config_str);
 1296|    142|    *config_str = str2;
 1297|    142|    return _PyStatus_OK();
  ------------------
  |  |   24|    142|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1298|    142|}
PyConfig_SetBytesString:
 1342|      2|{
 1343|      2|    return CONFIG_SET_BYTES_STR(config, config_str, str, "string");
  ------------------
  |  | 1333|      2|    config_set_bytes_string(config, config_str, str, "cannot decode " NAME)
  ------------------
 1344|      2|}
_PyConfig_Copy:
 1363|      4|{
 1364|      4|    PyConfig_Clear(config);
 1365|       |
 1366|      4|    PyStatus status;
 1367|      4|    const PyConfigSpec *spec = PYCONFIG_SPEC;
 1368|    288|    for (; spec->name != NULL; spec++) {
  ------------------
  |  Branch (1368:12): [True: 284, False: 4]
  ------------------
 1369|    284|        void *member = config_get_spec_member(config, spec);
 1370|    284|        const void *member2 = config_get_spec_member((PyConfig*)config2, spec);
 1371|    284|        switch (spec->type) {
 1372|     16|        case PyConfig_MEMBER_INT:
  ------------------
  |  Branch (1372:9): [True: 16, False: 268]
  ------------------
 1373|     48|        case PyConfig_MEMBER_UINT:
  ------------------
  |  Branch (1373:9): [True: 32, False: 252]
  ------------------
 1374|    172|        case PyConfig_MEMBER_BOOL:
  ------------------
  |  Branch (1374:9): [True: 124, False: 160]
  ------------------
 1375|    172|        {
 1376|    172|            *(int*)member = *(int*)member2;
 1377|    172|            break;
 1378|     48|        }
 1379|      4|        case PyConfig_MEMBER_ULONG:
  ------------------
  |  Branch (1379:9): [True: 4, False: 280]
  ------------------
 1380|      4|        {
 1381|      4|            *(unsigned long*)member = *(unsigned long*)member2;
 1382|      4|            break;
 1383|     48|        }
 1384|     28|        case PyConfig_MEMBER_WSTR:
  ------------------
  |  Branch (1384:9): [True: 28, False: 256]
  ------------------
 1385|     88|        case PyConfig_MEMBER_WSTR_OPT:
  ------------------
  |  Branch (1385:9): [True: 60, False: 224]
  ------------------
 1386|     88|        {
 1387|     88|            const wchar_t *str = *(const wchar_t**)member2;
 1388|     88|            status = PyConfig_SetString(config, (wchar_t**)member, str);
 1389|     88|            if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|     88|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 88]
  |  |  ------------------
  ------------------
 1390|      0|                return status;
 1391|      0|            }
 1392|     88|            break;
 1393|     88|        }
 1394|     88|        case PyConfig_MEMBER_WSTR_LIST:
  ------------------
  |  Branch (1394:9): [True: 20, False: 264]
  ------------------
 1395|     20|        {
 1396|     20|            if (_PyWideStringList_Copy((PyWideStringList*)member,
  ------------------
  |  Branch (1396:17): [True: 0, False: 20]
  ------------------
 1397|     20|                                       (const PyWideStringList*)member2) < 0) {
 1398|      0|                return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 1399|      0|            }
 1400|     20|            break;
 1401|     20|        }
 1402|     20|        default:
  ------------------
  |  Branch (1402:9): [True: 0, False: 284]
  ------------------
 1403|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1404|    284|        }
 1405|    284|    }
 1406|      4|    return _PyStatus_OK();
  ------------------
  |  |   24|      4|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1407|      4|}
_PyConfig_AsDict:
 1412|      2|{
 1413|      2|    PyObject *dict = PyDict_New();
 1414|      2|    if (dict == NULL) {
  ------------------
  |  Branch (1414:9): [True: 0, False: 2]
  ------------------
 1415|      0|        return NULL;
 1416|      0|    }
 1417|       |
 1418|      2|    const PyConfigSpec *spec = PYCONFIG_SPEC;
 1419|    144|    for (; spec->name != NULL; spec++) {
  ------------------
  |  Branch (1419:12): [True: 142, False: 2]
  ------------------
 1420|    142|        PyObject *obj = config_get(config, spec, 0);
 1421|    142|        if (obj == NULL) {
  ------------------
  |  Branch (1421:13): [True: 0, False: 142]
  ------------------
 1422|      0|            Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1423|      0|            return NULL;
 1424|      0|        }
 1425|       |
 1426|    142|        int res = PyDict_SetItemString(dict, spec->name, obj);
 1427|    142|        Py_DECREF(obj);
  ------------------
  |  |  430|    142|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    142|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    142|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1428|    142|        if (res < 0) {
  ------------------
  |  Branch (1428:13): [True: 0, False: 142]
  ------------------
 1429|      0|            Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1430|      0|            return NULL;
 1431|      0|        }
 1432|    142|    }
 1433|      2|    return dict;
 1434|      2|}
_PyConfig_FromDict:
 1646|      2|{
 1647|      2|    if (!PyDict_Check(dict)) {
  ------------------
  |  |   18|      2|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      2|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1647:9): [True: 0, False: 2]
  ------------------
 1648|      0|        PyErr_SetString(PyExc_TypeError, "dict expected");
 1649|      0|        return -1;
 1650|      0|    }
 1651|       |
 1652|      2|    const PyConfigSpec *spec = PYCONFIG_SPEC;
 1653|    144|    for (; spec->name != NULL; spec++) {
  ------------------
  |  Branch (1653:12): [True: 142, False: 2]
  ------------------
 1654|    142|        char *member = (char *)config + spec->offset;
 1655|    142|        switch (spec->type) {
 1656|      8|        case PyConfig_MEMBER_INT:
  ------------------
  |  Branch (1656:9): [True: 8, False: 134]
  ------------------
 1657|     24|        case PyConfig_MEMBER_UINT:
  ------------------
  |  Branch (1657:9): [True: 16, False: 126]
  ------------------
 1658|     86|        case PyConfig_MEMBER_BOOL:
  ------------------
  |  Branch (1658:9): [True: 62, False: 80]
  ------------------
 1659|     86|        {
 1660|     86|            int value;
 1661|     86|            if (config_dict_get_int(dict, spec->name, &value) < 0) {
  ------------------
  |  Branch (1661:17): [True: 0, False: 86]
  ------------------
 1662|      0|                return -1;
 1663|      0|            }
 1664|     86|            if (spec->type == PyConfig_MEMBER_BOOL
  ------------------
  |  Branch (1664:17): [True: 62, False: 24]
  ------------------
 1665|     24|                || spec->type == PyConfig_MEMBER_UINT)
  ------------------
  |  Branch (1665:20): [True: 16, False: 8]
  ------------------
 1666|     78|            {
 1667|     78|                if (value < 0) {
  ------------------
  |  Branch (1667:21): [True: 0, False: 78]
  ------------------
 1668|      0|                    config_dict_invalid_value(spec->name);
 1669|      0|                    return -1;
 1670|      0|                }
 1671|     78|            }
 1672|     86|            *(int*)member = value;
 1673|     86|            break;
 1674|     86|        }
 1675|      2|        case PyConfig_MEMBER_ULONG:
  ------------------
  |  Branch (1675:9): [True: 2, False: 140]
  ------------------
 1676|      2|        {
 1677|      2|            if (config_dict_get_ulong(dict, spec->name,
  ------------------
  |  Branch (1677:17): [True: 0, False: 2]
  ------------------
 1678|      2|                                      (unsigned long*)member) < 0) {
 1679|      0|                return -1;
 1680|      0|            }
 1681|      2|            break;
 1682|      2|        }
 1683|     14|        case PyConfig_MEMBER_WSTR:
  ------------------
  |  Branch (1683:9): [True: 14, False: 128]
  ------------------
 1684|     14|        {
 1685|     14|            wchar_t **wstr = (wchar_t**)member;
 1686|     14|            if (config_dict_get_wstr(dict, spec->name, config, wstr) < 0) {
  ------------------
  |  Branch (1686:17): [True: 0, False: 14]
  ------------------
 1687|      0|                return -1;
 1688|      0|            }
 1689|     14|            if (*wstr == NULL) {
  ------------------
  |  Branch (1689:17): [True: 0, False: 14]
  ------------------
 1690|      0|                config_dict_invalid_value(spec->name);
 1691|      0|                return -1;
 1692|      0|            }
 1693|     14|            break;
 1694|     14|        }
 1695|     30|        case PyConfig_MEMBER_WSTR_OPT:
  ------------------
  |  Branch (1695:9): [True: 30, False: 112]
  ------------------
 1696|     30|        {
 1697|     30|            wchar_t **wstr = (wchar_t**)member;
 1698|     30|            if (config_dict_get_wstr(dict, spec->name, config, wstr) < 0) {
  ------------------
  |  Branch (1698:17): [True: 0, False: 30]
  ------------------
 1699|      0|                return -1;
 1700|      0|            }
 1701|     30|            break;
 1702|     30|        }
 1703|     30|        case PyConfig_MEMBER_WSTR_LIST:
  ------------------
  |  Branch (1703:9): [True: 10, False: 132]
  ------------------
 1704|     10|        {
 1705|     10|            if (strcmp(spec->name, "xoptions") == 0) {
  ------------------
  |  Branch (1705:17): [True: 2, False: 8]
  ------------------
 1706|      2|                if (config_dict_get_xoptions(dict, spec->name, config,
  ------------------
  |  Branch (1706:21): [True: 0, False: 2]
  ------------------
 1707|      2|                                             (PyWideStringList*)member) < 0) {
 1708|      0|                    return -1;
 1709|      0|                }
 1710|      2|            }
 1711|      8|            else {
 1712|      8|                if (config_dict_get_wstrlist(dict, spec->name, config,
  ------------------
  |  Branch (1712:21): [True: 0, False: 8]
  ------------------
 1713|      8|                                             (PyWideStringList*)member) < 0) {
 1714|      0|                    return -1;
 1715|      0|                }
 1716|      8|            }
 1717|     10|            break;
 1718|     10|        }
 1719|     10|        default:
  ------------------
  |  Branch (1719:9): [True: 0, False: 142]
  ------------------
 1720|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 1721|    142|        }
 1722|    142|    }
 1723|       |
 1724|      2|    if (!(config->_config_init == _PyConfig_INIT_COMPAT
  ------------------
  |  Branch (1724:11): [True: 0, False: 2]
  ------------------
 1725|      2|          || config->_config_init == _PyConfig_INIT_PYTHON
  ------------------
  |  Branch (1725:14): [True: 2, False: 0]
  ------------------
 1726|      0|          || config->_config_init == _PyConfig_INIT_ISOLATED))
  ------------------
  |  Branch (1726:14): [True: 0, False: 0]
  ------------------
 1727|      0|    {
 1728|      0|        config_dict_invalid_value("_config_init");
 1729|      0|        return -1;
 1730|      0|    }
 1731|       |
 1732|      2|    if (config->hash_seed > MAX_HASH_SEED) {
  ------------------
  |  | 1007|      2|#define MAX_HASH_SEED 4294967295UL
  ------------------
  |  Branch (1732:9): [True: 0, False: 2]
  ------------------
 1733|      0|        config_dict_invalid_value("hash_seed");
 1734|      0|        return -1;
 1735|      0|    }
 1736|      2|    return 0;
 1737|      2|}
_PyConfig_InitImportConfig:
 2855|      2|{
 2856|      2|    return config_init_import(config, 1);
 2857|      2|}
_PyConfig_Write:
 3021|      2|{
 3022|      2|    config_set_global_vars(config);
 3023|       |
 3024|      2|    if (config->configure_c_stdio) {
  ------------------
  |  Branch (3024:9): [True: 2, False: 0]
  ------------------
 3025|      2|        config_init_stdio(config);
 3026|      2|    }
 3027|       |
 3028|       |    /* Write the new pre-configuration into _PyRuntime */
 3029|      2|    PyPreConfig *preconfig = &runtime->preconfig;
 3030|      2|    preconfig->isolated = config->isolated;
 3031|      2|    preconfig->use_environment = config->use_environment;
 3032|      2|    preconfig->dev_mode = config->dev_mode;
 3033|       |
 3034|      2|    if (_Py_SetArgcArgv(config->orig_argv.length,
  ------------------
  |  Branch (3034:9): [True: 0, False: 2]
  ------------------
 3035|      2|                        config->orig_argv.items) < 0)
 3036|      0|    {
 3037|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3038|      0|    }
 3039|       |
 3040|       |#ifdef PYMALLOC_USE_HUGEPAGES
 3041|       |    runtime->allocators.use_hugepages = config->pymalloc_hugepages;
 3042|       |#endif
 3043|       |
 3044|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3045|      2|}
_PyConfig_Read:
 3738|      2|{
 3739|      2|    PyStatus status;
 3740|       |
 3741|      2|    status = _Py_PreInitializeFromConfig(config, NULL);
 3742|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3743|      0|        return status;
 3744|      0|    }
 3745|       |
 3746|      2|    config_get_global_vars(config);
 3747|       |
 3748|       |#ifdef __CYGWIN__
 3749|       |    status = config_argv0_add_exe(config);
 3750|       |    if (_PyStatus_EXCEPTION(status)) {
 3751|       |        return status;
 3752|       |    }
 3753|       |#endif
 3754|       |
 3755|      2|    if (config->orig_argv.length == 0
  ------------------
  |  Branch (3755:9): [True: 2, False: 0]
  ------------------
 3756|      2|        && !(config->argv.length == 1
  ------------------
  |  Branch (3756:14): [True: 0, False: 2]
  ------------------
 3757|      0|             && wcscmp(config->argv.items[0], L"") == 0))
  ------------------
  |  Branch (3757:17): [True: 0, False: 0]
  ------------------
 3758|      2|    {
 3759|      2|        if (_PyWideStringList_Copy(&config->orig_argv, &config->argv) < 0) {
  ------------------
  |  Branch (3759:13): [True: 0, False: 2]
  ------------------
 3760|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3761|      0|        }
 3762|      2|    }
 3763|       |
 3764|      2|    _PyPreCmdline precmdline = _PyPreCmdline_INIT;
  ------------------
  |  |  111|      2|    (_PyPreCmdline){ \
  |  |  112|      2|        .use_environment = -1, \
  |  |  113|      2|        .isolated = -1, \
  |  |  114|      2|        .dev_mode = -1}
  ------------------
 3765|      2|    status = core_read_precmdline(config, &precmdline);
 3766|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3767|      0|        goto done;
 3768|      0|    }
 3769|       |
 3770|      2|    assert(config->isolated >= 0);
  ------------------
  |  Branch (3770:5): [True: 2, False: 0]
  ------------------
 3771|      2|    if (config->isolated) {
  ------------------
  |  Branch (3771:9): [True: 0, False: 2]
  ------------------
 3772|      0|        config->safe_path = 1;
 3773|      0|        config->use_environment = 0;
 3774|      0|        config->user_site_directory = 0;
 3775|      0|    }
 3776|       |
 3777|      2|    status = config_read_cmdline(config);
 3778|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3779|      0|        goto done;
 3780|      0|    }
 3781|       |
 3782|       |    /* Handle early PySys_AddXOption() calls */
 3783|      2|    status = _PySys_ReadPreinitXOptions(config);
 3784|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3785|      0|        goto done;
 3786|      0|    }
 3787|       |
 3788|      2|    status = config_read(config, compute_path_config);
 3789|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3790|      0|        goto done;
 3791|      0|    }
 3792|       |
 3793|      2|    assert(config_check_consistency(config));
  ------------------
  |  Branch (3793:5): [True: 2, False: 0]
  ------------------
 3794|       |
 3795|      2|    status = _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3796|       |
 3797|      2|done:
 3798|      2|    _PyPreCmdline_Clear(&precmdline);
 3799|      2|    return status;
 3800|      2|}
_PyConfig_CreateXOptionsDict:
 4593|      4|{
 4594|      4|    PyObject *dict = PyDict_New();
 4595|      4|    if (dict == NULL) {
  ------------------
  |  Branch (4595:9): [True: 0, False: 4]
  ------------------
 4596|      0|        return NULL;
 4597|      0|    }
 4598|       |
 4599|      4|    Py_ssize_t nxoption = config->xoptions.length;
 4600|      4|    wchar_t **xoptions = config->xoptions.items;
 4601|      4|    for (Py_ssize_t i=0; i < nxoption; i++) {
  ------------------
  |  Branch (4601:26): [True: 0, False: 4]
  ------------------
 4602|      0|        const wchar_t *option = xoptions[i];
 4603|      0|        if (config_add_xoption(dict, option) < 0) {
  ------------------
  |  Branch (4603:13): [True: 0, False: 0]
  ------------------
 4604|      0|            Py_DECREF(dict);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4605|      0|            return NULL;
 4606|      0|        }
 4607|      0|    }
 4608|      4|    return dict;
 4609|      4|}
initconfig.c:_PyWideStringList_ClearEx:
  780|    108|{
  781|    108|    assert(_PyWideStringList_CheckConsistency(list));
  ------------------
  |  Branch (781:5): [True: 108, False: 0]
  ------------------
  782|    120|    for (Py_ssize_t i=0; i < list->length; i++) {
  ------------------
  |  Branch (782:26): [True: 12, False: 108]
  ------------------
  783|     12|        if (use_default_allocator) {
  ------------------
  |  Branch (783:13): [True: 0, False: 12]
  ------------------
  784|      0|            _PyMem_DefaultRawFree(list->items[i]);
  785|      0|        }
  786|     12|        else {
  787|     12|            PyMem_RawFree(list->items[i]);
  788|     12|        }
  789|     12|    }
  790|    108|    if (use_default_allocator) {
  ------------------
  |  Branch (790:9): [True: 2, False: 106]
  ------------------
  791|      2|        _PyMem_DefaultRawFree(list->items);
  792|      2|    }
  793|    106|    else {
  794|    106|        PyMem_RawFree(list->items);
  795|    106|    }
  796|    108|    list->length = 0;
  797|       |    list->items = NULL;
  798|    108|}
initconfig.c:_PyWideStringList_CopyEx:
  810|     40|{
  811|     40|    assert(_PyWideStringList_CheckConsistency(list));
  ------------------
  |  Branch (811:5): [True: 40, False: 0]
  ------------------
  812|     40|    assert(_PyWideStringList_CheckConsistency(list2));
  ------------------
  |  Branch (812:5): [True: 40, False: 0]
  ------------------
  813|       |
  814|     40|    if (list2->length == 0) {
  ------------------
  |  Branch (814:9): [True: 34, False: 6]
  ------------------
  815|     34|        _PyWideStringList_ClearEx(list, use_default_allocator);
  816|     34|        return 0;
  817|     34|    }
  818|       |
  819|      6|    PyWideStringList copy = _PyWideStringList_INIT;
  ------------------
  |  |   53|      6|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
  820|       |
  821|      6|    size_t size = list2->length * sizeof(list2->items[0]);
  822|      6|    if (use_default_allocator) {
  ------------------
  |  Branch (822:9): [True: 0, False: 6]
  ------------------
  823|      0|        copy.items = _PyMem_DefaultRawMalloc(size);
  824|      0|    }
  825|      6|    else {
  826|      6|        copy.items = PyMem_RawMalloc(size);
  827|      6|    }
  828|      6|    if (copy.items == NULL) {
  ------------------
  |  Branch (828:9): [True: 0, False: 6]
  ------------------
  829|      0|        return -1;
  830|      0|    }
  831|       |
  832|     16|    for (Py_ssize_t i=0; i < list2->length; i++) {
  ------------------
  |  Branch (832:26): [True: 10, False: 6]
  ------------------
  833|     10|        wchar_t *item;
  834|     10|        if (use_default_allocator) {
  ------------------
  |  Branch (834:13): [True: 0, False: 10]
  ------------------
  835|      0|            item = _PyMem_DefaultRawWcsdup(list2->items[i]);
  836|      0|        }
  837|     10|        else {
  838|     10|            item = _PyMem_RawWcsdup(list2->items[i]);
  839|     10|        }
  840|     10|        if (item == NULL) {
  ------------------
  |  Branch (840:13): [True: 0, False: 10]
  ------------------
  841|      0|            _PyWideStringList_ClearEx(&copy, use_default_allocator);
  842|      0|            return -1;
  843|      0|        }
  844|     10|        copy.items[i] = item;
  845|     10|        copy.length = i + 1;
  846|     10|    }
  847|       |
  848|      6|    _PyWideStringList_ClearEx(list, use_default_allocator);
  849|      6|    *list = copy;
  850|      6|    return 0;
  851|      6|}
initconfig.c:config_init_defaults:
 1201|      6|{
 1202|      6|    _PyConfig_InitCompatConfig(config);
 1203|       |
 1204|      6|    config->isolated = 0;
 1205|      6|    config->use_environment = 1;
 1206|      6|    config->site_import = 1;
 1207|      6|    config->bytes_warning = 0;
 1208|      6|    config->inspect = 0;
 1209|      6|    config->interactive = 0;
 1210|      6|    config->optimization_level = 0;
 1211|      6|    config->parser_debug= 0;
 1212|      6|    config->write_bytecode = 1;
 1213|      6|    config->verbose = 0;
 1214|      6|    config->quiet = 0;
 1215|      6|    config->user_site_directory = 1;
 1216|      6|    config->buffered_stdio = 1;
 1217|      6|    config->pathconfig_warnings = 1;
 1218|       |#ifdef MS_WINDOWS
 1219|       |    config->legacy_windows_stdio = 0;
 1220|       |#endif
 1221|       |#ifdef Py_GIL_DISABLED
 1222|       |    config->thread_inherit_context = 1;
 1223|       |    config->context_aware_warnings = 1;
 1224|       |#else
 1225|      6|    config->thread_inherit_context = 0;
 1226|      6|    config->context_aware_warnings = 0;
 1227|      6|#endif
 1228|       |#ifdef __APPLE__
 1229|       |    config->use_system_logger = USE_SYSTEM_LOGGER_DEFAULT;
 1230|       |#endif
 1231|      6|}
initconfig.c:config_set_bytes_string:
 1304|      2|{
 1305|      2|    PyStatus status = _Py_PreInitializeFromConfig(config, NULL);
 1306|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1307|      0|        return status;
 1308|      0|    }
 1309|       |
 1310|      2|    wchar_t *str2;
 1311|      2|    if (str != NULL) {
  ------------------
  |  Branch (1311:9): [True: 2, False: 0]
  ------------------
 1312|      2|        size_t len;
 1313|      2|        str2 = Py_DecodeLocale(str, &len);
 1314|      2|        if (str2 == NULL) {
  ------------------
  |  Branch (1314:13): [True: 0, False: 2]
  ------------------
 1315|      0|            if (len == (size_t)-2) {
  ------------------
  |  Branch (1315:17): [True: 0, False: 0]
  ------------------
 1316|      0|                return _PyStatus_ERR(decode_err_msg);
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1317|      0|            }
 1318|      0|            else {
 1319|      0|                return  _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 1320|      0|            }
 1321|      0|        }
 1322|      2|    }
 1323|      0|    else {
 1324|      0|        str2 = NULL;
 1325|      0|    }
 1326|      2|    PyMem_RawFree(*config_str);
 1327|      2|    *config_str = str2;
 1328|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1329|      2|}
initconfig.c:config_get_spec_member:
 1349|    710|{
 1350|    710|    return (char *)config + spec->offset;
 1351|    710|}
initconfig.c:config_dict_get_int:
 1446|     86|{
 1447|     86|    PyObject *item = config_dict_get(dict, name);
 1448|     86|    if (item == NULL) {
  ------------------
  |  Branch (1448:9): [True: 0, False: 86]
  ------------------
 1449|      0|        return -1;
 1450|      0|    }
 1451|     86|    int value = PyLong_AsInt(item);
 1452|     86|    Py_DECREF(item);
  ------------------
  |  |  430|     86|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     86|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     86|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1453|     86|    if (value == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1453:9): [True: 4, False: 82]
  |  Branch (1453:24): [True: 0, False: 4]
  ------------------
 1454|      0|        if (PyErr_ExceptionMatches(PyExc_TypeError)) {
  ------------------
  |  Branch (1454:13): [True: 0, False: 0]
  ------------------
 1455|      0|            config_dict_invalid_type(name);
 1456|      0|        }
 1457|      0|        else if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
  ------------------
  |  Branch (1457:18): [True: 0, False: 0]
  ------------------
 1458|      0|            config_dict_invalid_value(name);
 1459|      0|        }
 1460|      0|        return -1;
 1461|      0|    }
 1462|     86|    *result = value;
 1463|     86|    return 0;
 1464|     86|}
initconfig.c:config_dict_get_ulong:
 1469|      2|{
 1470|      2|    PyObject *item = config_dict_get(dict, name);
 1471|      2|    if (item == NULL) {
  ------------------
  |  Branch (1471:9): [True: 0, False: 2]
  ------------------
 1472|      0|        return -1;
 1473|      0|    }
 1474|      2|    unsigned long value = PyLong_AsUnsignedLong(item);
 1475|      2|    Py_DECREF(item);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1476|      2|    if (value == (unsigned long)-1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1476:9): [True: 0, False: 2]
  |  Branch (1476:39): [True: 0, False: 0]
  ------------------
 1477|      0|        if (PyErr_ExceptionMatches(PyExc_TypeError)) {
  ------------------
  |  Branch (1477:13): [True: 0, False: 0]
  ------------------
 1478|      0|            config_dict_invalid_type(name);
 1479|      0|        }
 1480|      0|        else if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
  ------------------
  |  Branch (1480:18): [True: 0, False: 0]
  ------------------
 1481|      0|            config_dict_invalid_value(name);
 1482|      0|        }
 1483|      0|        return -1;
 1484|      0|    }
 1485|      2|    *result = value;
 1486|      2|    return 0;
 1487|      2|}
initconfig.c:config_dict_get_wstr:
 1493|     44|{
 1494|     44|    PyObject *item = config_dict_get(dict, name);
 1495|     44|    if (item == NULL) {
  ------------------
  |  Branch (1495:9): [True: 0, False: 44]
  ------------------
 1496|      0|        return -1;
 1497|      0|    }
 1498|       |
 1499|     44|    PyStatus status;
 1500|     44|    if (item == Py_None) {
  ------------------
  |  |  616|     44|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1500:9): [True: 16, False: 28]
  ------------------
 1501|     16|        status = PyConfig_SetString(config, result, NULL);
 1502|     16|    }
 1503|     28|    else if (!PyUnicode_Check(item)) {
  ------------------
  |  |  103|     28|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     28|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1503:14): [True: 0, False: 28]
  ------------------
 1504|      0|        config_dict_invalid_type(name);
 1505|      0|        goto error;
 1506|      0|    }
 1507|     28|    else {
 1508|     28|        wchar_t *wstr = PyUnicode_AsWideCharString(item, NULL);
 1509|     28|        if (wstr == NULL) {
  ------------------
  |  Branch (1509:13): [True: 0, False: 28]
  ------------------
 1510|      0|            goto error;
 1511|      0|        }
 1512|     28|        status = PyConfig_SetString(config, result, wstr);
 1513|     28|        PyMem_Free(wstr);
 1514|     28|    }
 1515|     44|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|     44|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 44]
  |  |  ------------------
  ------------------
 1516|      0|        PyErr_NoMemory();
 1517|      0|        goto error;
 1518|      0|    }
 1519|     44|    Py_DECREF(item);
  ------------------
  |  |  430|     44|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     44|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     44|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1520|     44|    return 0;
 1521|       |
 1522|      0|error:
 1523|      0|    Py_DECREF(item);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1524|      0|    return -1;
 1525|     44|}
initconfig.c:config_dict_get_xoptions:
 1587|      2|{
 1588|      2|    PyObject *xoptions = config_dict_get(dict, name);
 1589|      2|    if (xoptions == NULL) {
  ------------------
  |  Branch (1589:9): [True: 0, False: 2]
  ------------------
 1590|      0|        return -1;
 1591|      0|    }
 1592|       |
 1593|      2|    if (!PyDict_CheckExact(xoptions)) {
  ------------------
  |  |   19|      2|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1593:9): [True: 0, False: 2]
  ------------------
 1594|      0|        Py_DECREF(xoptions);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1595|      0|        config_dict_invalid_type(name);
 1596|      0|        return -1;
 1597|      0|    }
 1598|       |
 1599|      2|    Py_ssize_t pos = 0;
 1600|      2|    PyObject *key, *value;
 1601|      2|    PyWideStringList wstrlist = _PyWideStringList_INIT;
  ------------------
  |  |   53|      2|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
 1602|      2|    while (PyDict_Next(xoptions, &pos, &key, &value)) {
  ------------------
  |  Branch (1602:12): [True: 0, False: 2]
  ------------------
 1603|      0|        PyObject *item;
 1604|       |
 1605|      0|        if (value != Py_True) {
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1605:13): [True: 0, False: 0]
  ------------------
 1606|      0|            item = PyUnicode_FromFormat("%S=%S", key, value);
 1607|      0|            if (item == NULL) {
  ------------------
  |  Branch (1607:17): [True: 0, False: 0]
  ------------------
 1608|      0|                goto error;
 1609|      0|            }
 1610|      0|        }
 1611|      0|        else {
 1612|      0|            item = Py_NewRef(key);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1613|      0|        }
 1614|       |
 1615|      0|        wchar_t *wstr = PyUnicode_AsWideCharString(item, NULL);
 1616|      0|        Py_DECREF(item);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1617|      0|        if (wstr == NULL) {
  ------------------
  |  Branch (1617:13): [True: 0, False: 0]
  ------------------
 1618|      0|            goto error;
 1619|      0|        }
 1620|       |
 1621|      0|        PyStatus status = PyWideStringList_Append(&wstrlist, wstr);
 1622|      0|        PyMem_Free(wstr);
 1623|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1624|      0|            PyErr_NoMemory();
 1625|      0|            goto error;
 1626|      0|        }
 1627|      0|    }
 1628|       |
 1629|      2|    if (_PyWideStringList_Copy(result, &wstrlist) < 0) {
  ------------------
  |  Branch (1629:9): [True: 0, False: 2]
  ------------------
 1630|      0|        PyErr_NoMemory();
 1631|      0|        goto error;
 1632|      0|    }
 1633|      2|    _PyWideStringList_Clear(&wstrlist);
 1634|      2|    Py_DECREF(xoptions);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1635|      2|    return 0;
 1636|       |
 1637|      0|error:
 1638|      0|    _PyWideStringList_Clear(&wstrlist);
 1639|      0|    Py_DECREF(xoptions);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1640|      0|    return -1;
 1641|      2|}
initconfig.c:config_dict_get_wstrlist:
 1531|      8|{
 1532|      8|    PyObject *list = config_dict_get(dict, name);
 1533|      8|    if (list == NULL) {
  ------------------
  |  Branch (1533:9): [True: 0, False: 8]
  ------------------
 1534|      0|        return -1;
 1535|      0|    }
 1536|       |
 1537|      8|    int is_list = PyList_CheckExact(list);
  ------------------
  |  |   26|      8|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|      8|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1538|      8|    if (!is_list && !PyTuple_CheckExact(list)) {
  ------------------
  |  |   28|      6|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|      6|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1538:9): [True: 6, False: 2]
  |  Branch (1538:21): [True: 0, False: 6]
  ------------------
 1539|      0|        Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1540|      0|        config_dict_invalid_type(name);
 1541|      0|        return -1;
 1542|      0|    }
 1543|       |
 1544|      8|    PyWideStringList wstrlist = _PyWideStringList_INIT;
  ------------------
  |  |   53|      8|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
 1545|      8|    Py_ssize_t len = is_list ? PyList_GET_SIZE(list) : PyTuple_GET_SIZE(list);
  ------------------
  |  |   38|      2|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  Py_ssize_t len = is_list ? PyList_GET_SIZE(list) : PyTuple_GET_SIZE(list);
  ------------------
  |  |   27|      6|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1545:22): [True: 2, False: 6]
  ------------------
 1546|     16|    for (Py_ssize_t i=0; i < len; i++) {
  ------------------
  |  Branch (1546:26): [True: 8, False: 8]
  ------------------
 1547|      8|        PyObject *item = is_list ? PyList_GET_ITEM(list, i) : PyTuple_GET_ITEM(list, i);
  ------------------
  |  |   40|      6|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|      6|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      PyObject *item = is_list ? PyList_GET_ITEM(list, i) : PyTuple_GET_ITEM(list, i);
  ------------------
  |  |   29|      2|#define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   19|      2|    (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1547:26): [True: 6, False: 2]
  |  Branch (1547:36): [True: 6, False: 0]
  |  Branch (1547:63): [True: 2, False: 0]
  ------------------
 1548|       |
 1549|      8|        if (item == Py_None) {
  ------------------
  |  |  616|      8|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1549:13): [True: 0, False: 8]
  ------------------
 1550|      0|            config_dict_invalid_value(name);
 1551|      0|            goto error;
 1552|      0|        }
 1553|      8|        else if (!PyUnicode_Check(item)) {
  ------------------
  |  |  103|      8|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      8|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (1553:18): [True: 0, False: 8]
  ------------------
 1554|      0|            config_dict_invalid_type(name);
 1555|      0|            goto error;
 1556|      0|        }
 1557|      8|        wchar_t *wstr = PyUnicode_AsWideCharString(item, NULL);
 1558|      8|        if (wstr == NULL) {
  ------------------
  |  Branch (1558:13): [True: 0, False: 8]
  ------------------
 1559|      0|            goto error;
 1560|      0|        }
 1561|      8|        PyStatus status = PyWideStringList_Append(&wstrlist, wstr);
 1562|      8|        PyMem_Free(wstr);
 1563|      8|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      8|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 8]
  |  |  ------------------
  ------------------
 1564|      0|            PyErr_NoMemory();
 1565|      0|            goto error;
 1566|      0|        }
 1567|      8|    }
 1568|       |
 1569|      8|    if (_PyWideStringList_Copy(result, &wstrlist) < 0) {
  ------------------
  |  Branch (1569:9): [True: 0, False: 8]
  ------------------
 1570|      0|        PyErr_NoMemory();
 1571|      0|        goto error;
 1572|      0|    }
 1573|      8|    _PyWideStringList_Clear(&wstrlist);
 1574|      8|    Py_DECREF(list);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1575|      8|    return 0;
 1576|       |
 1577|      0|error:
 1578|      0|    _PyWideStringList_Clear(&wstrlist);
 1579|      0|    Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1580|      0|    return -1;
 1581|      8|}
initconfig.c:config_init_import:
 2809|      4|{
 2810|      4|    PyStatus status;
 2811|       |
 2812|      4|    status = _PyConfig_InitPathConfig(config, compute_path_config);
 2813|      4|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      4|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 4]
  |  |  ------------------
  ------------------
 2814|      0|        return status;
 2815|      0|    }
 2816|       |
 2817|      4|    const char *env = config_get_env(config, "PYTHON_FROZEN_MODULES");
 2818|      4|    if (env == NULL) {
  ------------------
  |  Branch (2818:9): [True: 4, False: 0]
  ------------------
 2819|      4|    }
 2820|      0|    else if (strcmp(env, "on") == 0) {
  ------------------
  |  Branch (2820:14): [True: 0, False: 0]
  ------------------
 2821|      0|        config->use_frozen_modules = 1;
 2822|      0|    }
 2823|      0|    else if (strcmp(env, "off") == 0) {
  ------------------
  |  Branch (2823:14): [True: 0, False: 0]
  ------------------
 2824|      0|        config->use_frozen_modules = 0;
 2825|      0|    } else {
 2826|      0|        return PyStatus_Error("bad value for PYTHON_FROZEN_MODULES "
 2827|      0|                              "(expected \"on\" or \"off\")");
 2828|      0|    }
 2829|       |
 2830|       |    /* -X frozen_modules=[on|off] */
 2831|      4|    const wchar_t *value = config_get_xoption_value(config, L"frozen_modules");
 2832|      4|    if (value == NULL) {
  ------------------
  |  Branch (2832:9): [True: 4, False: 0]
  ------------------
 2833|      4|    }
 2834|      0|    else if (wcscmp(value, L"on") == 0) {
  ------------------
  |  Branch (2834:14): [True: 0, False: 0]
  ------------------
 2835|      0|        config->use_frozen_modules = 1;
 2836|      0|    }
 2837|      0|    else if (wcscmp(value, L"off") == 0) {
  ------------------
  |  Branch (2837:14): [True: 0, False: 0]
  ------------------
 2838|      0|        config->use_frozen_modules = 0;
 2839|      0|    }
 2840|      0|    else if (wcslen(value) == 0) {
  ------------------
  |  Branch (2840:14): [True: 0, False: 0]
  ------------------
 2841|       |        // "-X frozen_modules" and "-X frozen_modules=" both imply "on".
 2842|      0|        config->use_frozen_modules = 1;
 2843|      0|    }
 2844|      0|    else {
 2845|      0|        return PyStatus_Error("bad value for option -X frozen_modules "
 2846|      0|                              "(expected \"on\" or \"off\")");
 2847|      0|    }
 2848|       |
 2849|      4|    assert(config->use_frozen_modules >= 0);
  ------------------
  |  Branch (2849:5): [True: 4, False: 0]
  ------------------
 2850|      4|    return _PyStatus_OK();
  ------------------
  |  |   24|      4|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2851|      4|}
initconfig.c:config_get_env:
 1742|     38|{
 1743|     38|    return _Py_GetEnv(config->use_environment, name);
 1744|     38|}
initconfig.c:config_get_xoption_value:
 1884|     10|{
 1885|     10|    const wchar_t *xoption = config_get_xoption(config, name);
 1886|     10|    if (xoption == NULL) {
  ------------------
  |  Branch (1886:9): [True: 10, False: 0]
  ------------------
 1887|     10|        return NULL;
 1888|     10|    }
 1889|      0|    const wchar_t *sep = wcschr(xoption, L'=');
 1890|      0|    return sep ? sep + 1 : L"";
  ------------------
  |  Branch (1890:12): [True: 0, False: 0]
  ------------------
 1891|     10|}
initconfig.c:config_get_xoption:
 1878|     34|{
 1879|     34|    return _Py_get_xoption(&config->xoptions, name);
 1880|     34|}
initconfig.c:config_set_global_vars:
 1835|      2|{
 1836|      2|_Py_COMP_DIAG_PUSH
 1837|      2|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
 1838|      2|#define COPY_FLAG(ATTR, VAR) \
 1839|      2|        if (config->ATTR != -1) { \
 1840|      2|            VAR = config->ATTR; \
 1841|      2|        }
 1842|      2|#define COPY_NOT_FLAG(ATTR, VAR) \
 1843|      2|        if (config->ATTR != -1) { \
 1844|      2|            VAR = !config->ATTR; \
 1845|      2|        }
 1846|       |
 1847|      2|    COPY_FLAG(isolated, Py_IsolatedFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1848|      2|    COPY_NOT_FLAG(use_environment, Py_IgnoreEnvironmentFlag);
  ------------------
  |  | 1843|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1843:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1844|      2|            VAR = !config->ATTR; \
  |  | 1845|      2|        }
  ------------------
 1849|      2|    COPY_FLAG(bytes_warning, Py_BytesWarningFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1850|      2|    COPY_FLAG(inspect, Py_InspectFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1851|      2|    COPY_FLAG(interactive, Py_InteractiveFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1852|      2|    COPY_FLAG(optimization_level, Py_OptimizeFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1853|      2|    COPY_FLAG(parser_debug, Py_DebugFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1854|      2|    COPY_FLAG(verbose, Py_VerboseFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1855|      2|    COPY_FLAG(quiet, Py_QuietFlag);
  ------------------
  |  | 1839|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1839:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1840|      2|            VAR = config->ATTR; \
  |  | 1841|      2|        }
  ------------------
 1856|       |#ifdef MS_WINDOWS
 1857|       |    COPY_FLAG(legacy_windows_stdio, Py_LegacyWindowsStdioFlag);
 1858|       |#endif
 1859|      2|    COPY_NOT_FLAG(pathconfig_warnings, Py_FrozenFlag);
  ------------------
  |  | 1843|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1843:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1844|      2|            VAR = !config->ATTR; \
  |  | 1845|      2|        }
  ------------------
 1860|       |
 1861|      2|    COPY_NOT_FLAG(buffered_stdio, Py_UnbufferedStdioFlag);
  ------------------
  |  | 1843|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1843:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1844|      2|            VAR = !config->ATTR; \
  |  | 1845|      2|        }
  ------------------
 1862|      2|    COPY_NOT_FLAG(site_import, Py_NoSiteFlag);
  ------------------
  |  | 1843|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1843:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1844|      2|            VAR = !config->ATTR; \
  |  | 1845|      2|        }
  ------------------
 1863|      2|    COPY_NOT_FLAG(write_bytecode, Py_DontWriteBytecodeFlag);
  ------------------
  |  | 1843|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1843:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1844|      2|            VAR = !config->ATTR; \
  |  | 1845|      2|        }
  ------------------
 1864|      2|    COPY_NOT_FLAG(user_site_directory, Py_NoUserSiteDirectory);
  ------------------
  |  | 1843|      2|        if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (1843:13): [True: 2, False: 0]
  |  |  ------------------
  |  | 1844|      2|            VAR = !config->ATTR; \
  |  | 1845|      2|        }
  ------------------
 1865|       |
 1866|       |    /* Random or non-zero hash seed */
 1867|      2|    Py_HashRandomizationFlag = (config->use_hash_seed == 0 ||
  ------------------
  |  Branch (1867:33): [True: 2, False: 0]
  ------------------
 1868|      0|                                config->hash_seed != 0);
  ------------------
  |  Branch (1868:33): [True: 0, False: 0]
  ------------------
 1869|       |
 1870|      2|#undef COPY_FLAG
 1871|      2|#undef COPY_NOT_FLAG
 1872|      2|_Py_COMP_DIAG_POP
 1873|      2|}
initconfig.c:config_init_stdio:
 2980|      2|{
 2981|       |#if defined(MS_WINDOWS) || defined(__CYGWIN__)
 2982|       |    /* don't translate newlines (\r\n <=> \n) */
 2983|       |    _setmode(fileno(stdin), O_BINARY);
 2984|       |    _setmode(fileno(stdout), O_BINARY);
 2985|       |    _setmode(fileno(stderr), O_BINARY);
 2986|       |#endif
 2987|       |
 2988|      2|    if (!config->buffered_stdio) {
  ------------------
  |  Branch (2988:9): [True: 0, False: 2]
  ------------------
 2989|      0|#ifdef HAVE_SETVBUF
 2990|      0|        setvbuf(stdin,  (char *)NULL, _IONBF, BUFSIZ);
 2991|      0|        setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
 2992|      0|        setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
 2993|       |#else /* !HAVE_SETVBUF */
 2994|       |        setbuf(stdin,  (char *)NULL);
 2995|       |        setbuf(stdout, (char *)NULL);
 2996|       |        setbuf(stderr, (char *)NULL);
 2997|       |#endif /* !HAVE_SETVBUF */
 2998|      0|    }
 2999|      2|    else if (config->interactive) {
  ------------------
  |  Branch (2999:14): [True: 0, False: 2]
  ------------------
 3000|       |#ifdef MS_WINDOWS
 3001|       |        /* Doesn't have to have line-buffered -- use unbuffered */
 3002|       |        /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
 3003|       |        setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
 3004|       |#else /* !MS_WINDOWS */
 3005|      0|#ifdef HAVE_SETVBUF
 3006|      0|        setvbuf(stdin,  (char *)NULL, _IOLBF, BUFSIZ);
 3007|      0|        setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
 3008|      0|#endif /* HAVE_SETVBUF */
 3009|      0|#endif /* !MS_WINDOWS */
 3010|       |        /* Leave stderr alone - it should be unbuffered anyway. */
 3011|      0|    }
 3012|      2|}
initconfig.c:_Py_SetArgcArgv:
  987|      2|{
  988|      2|    const PyWideStringList argv_list = {.length = argc, .items = (wchar_t **)argv};
  989|       |
  990|       |    // XXX _PyRuntime.orig_argv only gets cleared by Py_Main(),
  991|       |    // so it currently leaks for embedders.
  992|       |    return _PyWideStringList_CopyEx(&_PyRuntime.orig_argv, &argv_list, true);
  993|      2|}
initconfig.c:config_get_global_vars:
 1790|      2|{
 1791|      2|_Py_COMP_DIAG_PUSH
 1792|      2|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
 1793|      2|    if (config->_config_init != _PyConfig_INIT_COMPAT) {
  ------------------
  |  Branch (1793:9): [True: 2, False: 0]
  ------------------
 1794|       |        /* Python and Isolated configuration ignore global variables */
 1795|      2|        return;
 1796|      2|    }
 1797|       |
 1798|      0|#define COPY_FLAG(ATTR, VALUE) \
 1799|      0|        if (config->ATTR == -1) { \
 1800|      0|            config->ATTR = VALUE; \
 1801|      0|        }
 1802|      0|#define COPY_NOT_FLAG(ATTR, VALUE) \
 1803|      0|        if (config->ATTR == -1) { \
 1804|      0|            config->ATTR = !(VALUE); \
 1805|      0|        }
 1806|       |
 1807|      0|    COPY_FLAG(isolated, Py_IsolatedFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1808|      0|    COPY_NOT_FLAG(use_environment, Py_IgnoreEnvironmentFlag);
  ------------------
  |  | 1803|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1803:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1804|      0|            config->ATTR = !(VALUE); \
  |  | 1805|      0|        }
  ------------------
 1809|      0|    COPY_FLAG(bytes_warning, Py_BytesWarningFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1810|      0|    COPY_FLAG(inspect, Py_InspectFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1811|      0|    COPY_FLAG(interactive, Py_InteractiveFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1812|      0|    COPY_FLAG(optimization_level, Py_OptimizeFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1813|      0|    COPY_FLAG(parser_debug, Py_DebugFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1814|      0|    COPY_FLAG(verbose, Py_VerboseFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1815|      0|    COPY_FLAG(quiet, Py_QuietFlag);
  ------------------
  |  | 1799|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1799:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1800|      0|            config->ATTR = VALUE; \
  |  | 1801|      0|        }
  ------------------
 1816|       |#ifdef MS_WINDOWS
 1817|       |    COPY_FLAG(legacy_windows_stdio, Py_LegacyWindowsStdioFlag);
 1818|       |#endif
 1819|      0|    COPY_NOT_FLAG(pathconfig_warnings, Py_FrozenFlag);
  ------------------
  |  | 1803|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1803:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1804|      0|            config->ATTR = !(VALUE); \
  |  | 1805|      0|        }
  ------------------
 1820|       |
 1821|      0|    COPY_NOT_FLAG(buffered_stdio, Py_UnbufferedStdioFlag);
  ------------------
  |  | 1803|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1803:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1804|      0|            config->ATTR = !(VALUE); \
  |  | 1805|      0|        }
  ------------------
 1822|      0|    COPY_NOT_FLAG(site_import, Py_NoSiteFlag);
  ------------------
  |  | 1803|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1803:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1804|      0|            config->ATTR = !(VALUE); \
  |  | 1805|      0|        }
  ------------------
 1823|      0|    COPY_NOT_FLAG(write_bytecode, Py_DontWriteBytecodeFlag);
  ------------------
  |  | 1803|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1803:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1804|      0|            config->ATTR = !(VALUE); \
  |  | 1805|      0|        }
  ------------------
 1824|      0|    COPY_NOT_FLAG(user_site_directory, Py_NoUserSiteDirectory);
  ------------------
  |  | 1803|      0|        if (config->ATTR == -1) { \
  |  |  ------------------
  |  |  |  Branch (1803:13): [True: 0, False: 0]
  |  |  ------------------
  |  | 1804|      0|            config->ATTR = !(VALUE); \
  |  | 1805|      0|        }
  ------------------
 1825|       |
 1826|      0|#undef COPY_FLAG
 1827|      0|#undef COPY_NOT_FLAG
 1828|      0|_Py_COMP_DIAG_POP
 1829|      0|}
initconfig.c:core_read_precmdline:
 3507|      2|{
 3508|      2|    PyStatus status;
 3509|       |
 3510|      2|    if (config->parse_argv == 1) {
  ------------------
  |  Branch (3510:9): [True: 2, False: 0]
  ------------------
 3511|      2|        if (_PyWideStringList_Copy(&precmdline->argv, &config->argv) < 0) {
  ------------------
  |  Branch (3511:13): [True: 0, False: 2]
  ------------------
 3512|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3513|      0|        }
 3514|      2|    }
 3515|       |
 3516|      2|    PyPreConfig preconfig;
 3517|       |
 3518|      2|    status = _PyPreConfig_InitFromPreConfig(&preconfig, &_PyRuntime.preconfig);
 3519|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3520|      0|        return status;
 3521|      0|    }
 3522|       |
 3523|      2|    _PyPreConfig_GetConfig(&preconfig, config);
 3524|       |
 3525|      2|    status = _PyPreCmdline_Read(precmdline, &preconfig);
 3526|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3527|      0|        return status;
 3528|      0|    }
 3529|       |
 3530|      2|    status = _PyPreCmdline_SetConfig(precmdline, config);
 3531|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3532|      0|        return status;
 3533|      0|    }
 3534|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3535|      2|}
initconfig.c:config_read_cmdline:
 3571|      2|{
 3572|      2|    PyStatus status;
 3573|      2|    PyWideStringList cmdline_warnoptions = _PyWideStringList_INIT;
  ------------------
  |  |   53|      2|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
 3574|      2|    PyWideStringList env_warnoptions = _PyWideStringList_INIT;
  ------------------
  |  |   53|      2|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
 3575|      2|    PyWideStringList sys_warnoptions = _PyWideStringList_INIT;
  ------------------
  |  |   53|      2|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
 3576|       |
 3577|      2|    if (config->parse_argv < 0) {
  ------------------
  |  Branch (3577:9): [True: 0, False: 2]
  ------------------
 3578|      0|        config->parse_argv = 1;
 3579|      0|    }
 3580|       |
 3581|      2|    if (config->parse_argv == 1) {
  ------------------
  |  Branch (3581:9): [True: 2, False: 0]
  ------------------
 3582|      2|        Py_ssize_t opt_index;
 3583|      2|        status = config_parse_cmdline(config, &cmdline_warnoptions, &opt_index);
 3584|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3585|      0|            goto done;
 3586|      0|        }
 3587|       |
 3588|      2|        status = config_run_filename_abspath(config);
 3589|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3590|      0|            goto done;
 3591|      0|        }
 3592|       |
 3593|      2|        status = config_update_argv(config, opt_index);
 3594|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3595|      0|            goto done;
 3596|      0|        }
 3597|      2|    }
 3598|      0|    else {
 3599|      0|        status = config_run_filename_abspath(config);
 3600|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3601|      0|            goto done;
 3602|      0|        }
 3603|      0|    }
 3604|       |
 3605|      2|    if (config->use_environment) {
  ------------------
  |  Branch (3605:9): [True: 2, False: 0]
  ------------------
 3606|      2|        status = config_init_env_warnoptions(config, &env_warnoptions);
 3607|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3608|      0|            goto done;
 3609|      0|        }
 3610|      2|    }
 3611|       |
 3612|       |    /* Handle early PySys_AddWarnOption() calls */
 3613|      2|    status = _PySys_ReadPreinitWarnOptions(&sys_warnoptions);
 3614|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3615|      0|        goto done;
 3616|      0|    }
 3617|       |
 3618|      2|    status = config_init_warnoptions(config,
 3619|      2|                                     &cmdline_warnoptions,
 3620|      2|                                     &env_warnoptions,
 3621|      2|                                     &sys_warnoptions);
 3622|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3623|      0|        goto done;
 3624|      0|    }
 3625|       |
 3626|      2|    status = _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3627|       |
 3628|      2|done:
 3629|      2|    _PyWideStringList_Clear(&cmdline_warnoptions);
 3630|      2|    _PyWideStringList_Clear(&env_warnoptions);
 3631|      2|    _PyWideStringList_Clear(&sys_warnoptions);
 3632|      2|    return status;
 3633|      2|}
initconfig.c:config_parse_cmdline:
 3094|      2|{
 3095|      2|    PyStatus status;
 3096|      2|    const PyWideStringList *argv = &config->argv;
 3097|      2|    int print_version = 0;
 3098|      2|    const wchar_t* program = config->program_name;
 3099|      2|    if (!program && argv->length >= 1) {
  ------------------
  |  Branch (3099:9): [True: 0, False: 2]
  |  Branch (3099:21): [True: 0, False: 0]
  ------------------
 3100|      0|        program = argv->items[0];
 3101|      0|    }
 3102|       |
 3103|      2|    _PyOS_ResetGetOpt();
 3104|      2|    do {
 3105|      2|        int longindex = -1;
 3106|      2|        int c = _PyOS_GetOpt(argv->length, argv->items, &longindex);
 3107|      2|        if (c == EOF) {
  ------------------
  |  Branch (3107:13): [True: 2, False: 0]
  ------------------
 3108|      2|            break;
 3109|      2|        }
 3110|       |
 3111|      0|        if (c == 'c') {
  ------------------
  |  Branch (3111:13): [True: 0, False: 0]
  ------------------
 3112|      0|            if (config->run_command == NULL) {
  ------------------
  |  Branch (3112:17): [True: 0, False: 0]
  ------------------
 3113|       |                /* -c is the last option; following arguments
 3114|       |                   that look like options are left for the
 3115|       |                   command to interpret. */
 3116|      0|                size_t len = wcslen(_PyOS_optarg) + 1 + 1;
 3117|      0|                wchar_t *command = PyMem_RawMalloc(sizeof(wchar_t) * len);
 3118|      0|                if (command == NULL) {
  ------------------
  |  Branch (3118:21): [True: 0, False: 0]
  ------------------
 3119|      0|                    return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3120|      0|                }
 3121|      0|                memcpy(command, _PyOS_optarg, (len - 2) * sizeof(wchar_t));
 3122|      0|                command[len - 2] = '\n';
 3123|      0|                command[len - 1] = 0;
 3124|      0|                config->run_command = command;
 3125|      0|            }
 3126|      0|            break;
 3127|      0|        }
 3128|       |
 3129|      0|        if (c == 'm') {
  ------------------
  |  Branch (3129:13): [True: 0, False: 0]
  ------------------
 3130|       |            /* -m is the last option; following arguments
 3131|       |               that look like options are left for the
 3132|       |               module to interpret. */
 3133|      0|            if (config->run_module == NULL) {
  ------------------
  |  Branch (3133:17): [True: 0, False: 0]
  ------------------
 3134|      0|                config->run_module = _PyMem_RawWcsdup(_PyOS_optarg);
 3135|      0|                if (config->run_module == NULL) {
  ------------------
  |  Branch (3135:21): [True: 0, False: 0]
  ------------------
 3136|      0|                    return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3137|      0|                }
 3138|      0|            }
 3139|      0|            break;
 3140|      0|        }
 3141|       |
 3142|      0|        switch (c) {
 3143|       |        // Integers represent long options, see Python/getopt.c
 3144|      0|        case 0:
  ------------------
  |  Branch (3144:9): [True: 0, False: 0]
  ------------------
 3145|       |            // check-hash-based-pycs
 3146|      0|            if (wcscmp(_PyOS_optarg, L"always") == 0
  ------------------
  |  Branch (3146:17): [True: 0, False: 0]
  ------------------
 3147|      0|                || wcscmp(_PyOS_optarg, L"never") == 0
  ------------------
  |  Branch (3147:20): [True: 0, False: 0]
  ------------------
 3148|      0|                || wcscmp(_PyOS_optarg, L"default") == 0)
  ------------------
  |  Branch (3148:20): [True: 0, False: 0]
  ------------------
 3149|      0|            {
 3150|      0|                status = PyConfig_SetString(config, &config->check_hash_pycs_mode,
 3151|      0|                                            _PyOS_optarg);
 3152|      0|                if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3153|      0|                    return status;
 3154|      0|                }
 3155|      0|            } else {
 3156|      0|                fprintf(stderr, "--check-hash-based-pycs must be one of "
 3157|      0|                        "'default', 'always', or 'never'\n");
 3158|      0|                config_usage(1, program);
 3159|      0|                return _PyStatus_EXIT(2);
  ------------------
  |  |   35|      0|    (PyStatus){ \
  |  |   36|      0|        ._type = _PyStatus_TYPE_EXIT, \
  |  |   37|      0|        .exitcode = (EXITCODE)}
  ------------------
 3160|      0|            }
 3161|      0|            break;
 3162|       |
 3163|      0|        case 1:
  ------------------
  |  Branch (3163:9): [True: 0, False: 0]
  ------------------
 3164|       |            // help-all
 3165|      0|            config_complete_usage(program);
 3166|      0|            return _PyStatus_EXIT(0);
  ------------------
  |  |   35|      0|    (PyStatus){ \
  |  |   36|      0|        ._type = _PyStatus_TYPE_EXIT, \
  |  |   37|      0|        .exitcode = (EXITCODE)}
  ------------------
 3167|       |
 3168|      0|        case 2:
  ------------------
  |  Branch (3168:9): [True: 0, False: 0]
  ------------------
 3169|       |            // help-env
 3170|      0|            config_envvars_usage();
 3171|      0|            return _PyStatus_EXIT(0);
  ------------------
  |  |   35|      0|    (PyStatus){ \
  |  |   36|      0|        ._type = _PyStatus_TYPE_EXIT, \
  |  |   37|      0|        .exitcode = (EXITCODE)}
  ------------------
 3172|       |
 3173|      0|        case 3:
  ------------------
  |  Branch (3173:9): [True: 0, False: 0]
  ------------------
 3174|       |            // help-xoptions
 3175|      0|            config_xoptions_usage();
 3176|      0|            return _PyStatus_EXIT(0);
  ------------------
  |  |   35|      0|    (PyStatus){ \
  |  |   36|      0|        ._type = _PyStatus_TYPE_EXIT, \
  |  |   37|      0|        .exitcode = (EXITCODE)}
  ------------------
 3177|       |
 3178|      0|        case 'b':
  ------------------
  |  Branch (3178:9): [True: 0, False: 0]
  ------------------
 3179|      0|            config->bytes_warning++;
 3180|      0|            break;
 3181|       |
 3182|      0|        case 'd':
  ------------------
  |  Branch (3182:9): [True: 0, False: 0]
  ------------------
 3183|      0|            config->parser_debug++;
 3184|      0|            break;
 3185|       |
 3186|      0|        case 'i':
  ------------------
  |  Branch (3186:9): [True: 0, False: 0]
  ------------------
 3187|      0|            config->inspect++;
 3188|      0|            config->interactive++;
 3189|      0|            break;
 3190|       |
 3191|      0|        case 'E':
  ------------------
  |  Branch (3191:9): [True: 0, False: 0]
  ------------------
 3192|      0|        case 'I':
  ------------------
  |  Branch (3192:9): [True: 0, False: 0]
  ------------------
 3193|      0|        case 'X':
  ------------------
  |  Branch (3193:9): [True: 0, False: 0]
  ------------------
 3194|       |            /* option handled by _PyPreCmdline_Read() */
 3195|      0|            break;
 3196|       |
 3197|      0|        case 'O':
  ------------------
  |  Branch (3197:9): [True: 0, False: 0]
  ------------------
 3198|      0|            config->optimization_level++;
 3199|      0|            break;
 3200|       |
 3201|      0|        case 'P':
  ------------------
  |  Branch (3201:9): [True: 0, False: 0]
  ------------------
 3202|      0|            config->safe_path = 1;
 3203|      0|            break;
 3204|       |
 3205|      0|        case 'B':
  ------------------
  |  Branch (3205:9): [True: 0, False: 0]
  ------------------
 3206|      0|            config->write_bytecode = 0;
 3207|      0|            break;
 3208|       |
 3209|      0|        case 's':
  ------------------
  |  Branch (3209:9): [True: 0, False: 0]
  ------------------
 3210|      0|            config->user_site_directory = 0;
 3211|      0|            break;
 3212|       |
 3213|      0|        case 'S':
  ------------------
  |  Branch (3213:9): [True: 0, False: 0]
  ------------------
 3214|      0|            config->site_import = 0;
 3215|      0|            break;
 3216|       |
 3217|      0|        case 't':
  ------------------
  |  Branch (3217:9): [True: 0, False: 0]
  ------------------
 3218|       |            /* ignored for backwards compatibility */
 3219|      0|            break;
 3220|       |
 3221|      0|        case 'u':
  ------------------
  |  Branch (3221:9): [True: 0, False: 0]
  ------------------
 3222|      0|            config->buffered_stdio = 0;
 3223|      0|            break;
 3224|       |
 3225|      0|        case 'v':
  ------------------
  |  Branch (3225:9): [True: 0, False: 0]
  ------------------
 3226|      0|            config->verbose++;
 3227|      0|            break;
 3228|       |
 3229|      0|        case 'x':
  ------------------
  |  Branch (3229:9): [True: 0, False: 0]
  ------------------
 3230|      0|            config->skip_source_first_line = 1;
 3231|      0|            break;
 3232|       |
 3233|      0|        case 'h':
  ------------------
  |  Branch (3233:9): [True: 0, False: 0]
  ------------------
 3234|      0|        case '?':
  ------------------
  |  Branch (3234:9): [True: 0, False: 0]
  ------------------
 3235|      0|            config_usage(0, program);
 3236|      0|            return _PyStatus_EXIT(0);
  ------------------
  |  |   35|      0|    (PyStatus){ \
  |  |   36|      0|        ._type = _PyStatus_TYPE_EXIT, \
  |  |   37|      0|        .exitcode = (EXITCODE)}
  ------------------
 3237|       |
 3238|      0|        case 'V':
  ------------------
  |  Branch (3238:9): [True: 0, False: 0]
  ------------------
 3239|      0|            print_version++;
 3240|      0|            break;
 3241|       |
 3242|      0|        case 'W':
  ------------------
  |  Branch (3242:9): [True: 0, False: 0]
  ------------------
 3243|      0|            status = PyWideStringList_Append(warnoptions, _PyOS_optarg);
 3244|      0|            if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3245|      0|                return status;
 3246|      0|            }
 3247|      0|            break;
 3248|       |
 3249|      0|        case 'q':
  ------------------
  |  Branch (3249:9): [True: 0, False: 0]
  ------------------
 3250|      0|            config->quiet++;
 3251|      0|            break;
 3252|       |
 3253|      0|        case 'R':
  ------------------
  |  Branch (3253:9): [True: 0, False: 0]
  ------------------
 3254|      0|            config->use_hash_seed = 0;
 3255|      0|            break;
 3256|       |
 3257|       |        /* This space reserved for other options */
 3258|       |
 3259|      0|        default:
  ------------------
  |  Branch (3259:9): [True: 0, False: 0]
  ------------------
 3260|       |            /* unknown argument: parsing failed */
 3261|      0|            config_usage(1, program);
 3262|      0|            return _PyStatus_EXIT(2);
  ------------------
  |  |   35|      0|    (PyStatus){ \
  |  |   36|      0|        ._type = _PyStatus_TYPE_EXIT, \
  |  |   37|      0|        .exitcode = (EXITCODE)}
  ------------------
 3263|      0|        }
 3264|      0|    } while (1);
  ------------------
  |  Branch (3264:14): [True: 0, Folded]
  ------------------
 3265|       |
 3266|      2|    if (print_version) {
  ------------------
  |  Branch (3266:9): [True: 0, False: 2]
  ------------------
 3267|      0|        printf("Python %s\n",
 3268|      0|                (print_version >= 2) ? Py_GetVersion() : PY_VERSION);
  ------------------
  |  |   30|      0|#define PY_VERSION              "3.16.0a0"
  ------------------
  |  Branch (3268:17): [True: 0, False: 0]
  ------------------
 3269|      0|        return _PyStatus_EXIT(0);
  ------------------
  |  |   35|      0|    (PyStatus){ \
  |  |   36|      0|        ._type = _PyStatus_TYPE_EXIT, \
  |  |   37|      0|        .exitcode = (EXITCODE)}
  ------------------
 3270|      0|    }
 3271|       |
 3272|      2|    if (config->run_command == NULL && config->run_module == NULL
  ------------------
  |  Branch (3272:9): [True: 2, False: 0]
  |  Branch (3272:40): [True: 2, False: 0]
  ------------------
 3273|      2|        && _PyOS_optind < argv->length
  ------------------
  |  Branch (3273:12): [True: 0, False: 2]
  ------------------
 3274|      0|        && wcscmp(argv->items[_PyOS_optind], L"-") != 0
  ------------------
  |  Branch (3274:12): [True: 0, False: 0]
  ------------------
 3275|      0|        && config->run_filename == NULL)
  ------------------
  |  Branch (3275:12): [True: 0, False: 0]
  ------------------
 3276|      0|    {
 3277|      0|        config->run_filename = _PyMem_RawWcsdup(argv->items[_PyOS_optind]);
 3278|      0|        if (config->run_filename == NULL) {
  ------------------
  |  Branch (3278:13): [True: 0, False: 0]
  ------------------
 3279|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3280|      0|        }
 3281|      0|    }
 3282|       |
 3283|      2|    if (config->run_command != NULL || config->run_module != NULL) {
  ------------------
  |  Branch (3283:9): [True: 0, False: 2]
  |  Branch (3283:40): [True: 0, False: 2]
  ------------------
 3284|       |        /* Backup _PyOS_optind */
 3285|      0|        _PyOS_optind--;
 3286|      0|    }
 3287|       |
 3288|      2|    *opt_index = _PyOS_optind;
 3289|       |
 3290|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3291|      2|}
initconfig.c:config_run_filename_abspath:
 3541|      2|{
 3542|      2|    if (!config->run_filename) {
  ------------------
  |  Branch (3542:9): [True: 2, False: 0]
  ------------------
 3543|      2|        return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3544|      2|    }
 3545|       |
 3546|      0|#ifndef MS_WINDOWS
 3547|      0|    if (_Py_isabs(config->run_filename)) {
  ------------------
  |  Branch (3547:9): [True: 0, False: 0]
  ------------------
 3548|       |        /* path is already absolute */
 3549|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3550|      0|    }
 3551|      0|#endif
 3552|       |
 3553|      0|    wchar_t *abs_filename;
 3554|      0|    if (_Py_abspath(config->run_filename, &abs_filename) < 0) {
  ------------------
  |  Branch (3554:9): [True: 0, False: 0]
  ------------------
 3555|       |        /* failed to get the absolute path of the command line filename:
 3556|       |           ignore the error, keep the relative path */
 3557|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3558|      0|    }
 3559|      0|    if (abs_filename == NULL) {
  ------------------
  |  Branch (3559:9): [True: 0, False: 0]
  ------------------
 3560|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3561|      0|    }
 3562|       |
 3563|      0|    PyMem_RawFree(config->run_filename);
 3564|      0|    config->run_filename = abs_filename;
 3565|      0|    return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3566|      0|}
initconfig.c:config_update_argv:
 3456|      2|{
 3457|      2|    const PyWideStringList *cmdline_argv = &config->argv;
 3458|      2|    PyWideStringList config_argv = _PyWideStringList_INIT;
  ------------------
  |  |   53|      2|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
 3459|       |
 3460|       |    /* Copy argv to be able to modify it (to force -c/-m) */
 3461|      2|    if (cmdline_argv->length <= opt_index) {
  ------------------
  |  Branch (3461:9): [True: 2, False: 0]
  ------------------
 3462|       |        /* Ensure at least one (empty) argument is seen */
 3463|      2|        PyStatus status = PyWideStringList_Append(&config_argv, L"");
 3464|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3465|      0|            return status;
 3466|      0|        }
 3467|      2|    }
 3468|      0|    else {
 3469|      0|        PyWideStringList slice;
 3470|      0|        slice.length = cmdline_argv->length - opt_index;
 3471|      0|        slice.items = &cmdline_argv->items[opt_index];
 3472|      0|        if (_PyWideStringList_Copy(&config_argv, &slice) < 0) {
  ------------------
  |  Branch (3472:13): [True: 0, False: 0]
  ------------------
 3473|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3474|      0|        }
 3475|      0|    }
 3476|      2|    assert(config_argv.length >= 1);
  ------------------
  |  Branch (3476:5): [True: 2, False: 0]
  ------------------
 3477|       |
 3478|      2|    wchar_t *arg0 = NULL;
 3479|      2|    if (config->run_command != NULL) {
  ------------------
  |  Branch (3479:9): [True: 0, False: 2]
  ------------------
 3480|       |        /* Force sys.argv[0] = '-c' */
 3481|      0|        arg0 = L"-c";
 3482|      0|    }
 3483|      2|    else if (config->run_module != NULL) {
  ------------------
  |  Branch (3483:14): [True: 0, False: 2]
  ------------------
 3484|       |        /* Force sys.argv[0] = '-m'*/
 3485|      0|        arg0 = L"-m";
 3486|      0|    }
 3487|       |
 3488|      2|    if (arg0 != NULL) {
  ------------------
  |  Branch (3488:9): [True: 0, False: 2]
  ------------------
 3489|      0|        arg0 = _PyMem_RawWcsdup(arg0);
 3490|      0|        if (arg0 == NULL) {
  ------------------
  |  Branch (3490:13): [True: 0, False: 0]
  ------------------
 3491|      0|            _PyWideStringList_Clear(&config_argv);
 3492|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 3493|      0|        }
 3494|       |
 3495|      0|        PyMem_RawFree(config_argv.items[0]);
 3496|      0|        config_argv.items[0] = arg0;
 3497|      0|    }
 3498|       |
 3499|      2|    _PyWideStringList_Clear(&config->argv);
 3500|      2|    config->argv = config_argv;
 3501|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3502|      2|}
initconfig.c:config_init_env_warnoptions:
 3303|      2|{
 3304|      2|    PyStatus status;
 3305|       |    /* CONFIG_GET_ENV_DUP requires dest to be initialized to NULL */
 3306|      2|    wchar_t *env = NULL;
 3307|      2|    status = CONFIG_GET_ENV_DUP(config, &env,
  ------------------
  |  | 1785|      2|    config_get_env_dup(CONFIG, DEST, WNAME, NAME, "cannot decode " NAME)
  ------------------
 3308|      2|                             L"PYTHONWARNINGS", "PYTHONWARNINGS");
 3309|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3310|      0|        return status;
 3311|      0|    }
 3312|       |
 3313|       |    /* env var is not set or is empty */
 3314|      2|    if (env == NULL) {
  ------------------
  |  Branch (3314:9): [True: 2, False: 0]
  ------------------
 3315|      2|        return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3316|      2|    }
 3317|       |
 3318|       |
 3319|      0|    wchar_t *warning, *context = NULL;
 3320|      0|    for (warning = WCSTOK(env, L",", &context);
  ------------------
  |  | 3297|      0|#  define WCSTOK wcstok
  ------------------
 3321|      0|         warning != NULL;
  ------------------
  |  Branch (3321:10): [True: 0, False: 0]
  ------------------
 3322|      0|         warning = WCSTOK(NULL, L",", &context))
  ------------------
  |  | 3297|      0|#  define WCSTOK wcstok
  ------------------
 3323|      0|    {
 3324|      0|        status = PyWideStringList_Append(warnoptions, warning);
 3325|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3326|      0|            PyMem_RawFree(env);
 3327|      0|            return status;
 3328|      0|        }
 3329|      0|    }
 3330|      0|    PyMem_RawFree(env);
 3331|      0|    return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3332|      0|}
initconfig.c:config_get_env_dup:
 1755|     10|{
 1756|     10|    assert(*dest == NULL);
  ------------------
  |  Branch (1756:5): [True: 10, False: 0]
  ------------------
 1757|     10|    assert(config->use_environment >= 0);
  ------------------
  |  Branch (1757:5): [True: 10, False: 0]
  ------------------
 1758|       |
 1759|     10|    if (!config->use_environment) {
  ------------------
  |  Branch (1759:9): [True: 0, False: 10]
  ------------------
 1760|      0|        *dest = NULL;
 1761|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1762|      0|    }
 1763|       |
 1764|       |#ifdef MS_WINDOWS
 1765|       |    const wchar_t *var = _wgetenv(wname);
 1766|       |    if (!var || var[0] == '\0') {
 1767|       |        *dest = NULL;
 1768|       |        return _PyStatus_OK();
 1769|       |    }
 1770|       |
 1771|       |    return PyConfig_SetString(config, dest, var);
 1772|       |#else
 1773|     10|    const char *var = getenv(name);
 1774|     10|    if (!var || var[0] == '\0') {
  ------------------
  |  Branch (1774:9): [True: 10, False: 0]
  |  Branch (1774:17): [True: 0, False: 0]
  ------------------
 1775|     10|        *dest = NULL;
 1776|     10|        return _PyStatus_OK();
  ------------------
  |  |   24|     10|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1777|     10|    }
 1778|       |
 1779|      0|    return config_set_bytes_string(config, dest, var, decode_err_msg);
 1780|     10|#endif
 1781|     10|}
initconfig.c:config_init_warnoptions:
 3377|      2|{
 3378|      2|    PyStatus status;
 3379|      2|    PyWideStringList options = _PyWideStringList_INIT;
  ------------------
  |  |   53|      2|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
 3380|       |
 3381|       |    /* Priority of warnings options, lowest to highest:
 3382|       |     *
 3383|       |     * - any implicit filters added by _warnings.c/warnings.py
 3384|       |     * - PyConfig.dev_mode: "default" filter
 3385|       |     * - PYTHONWARNINGS environment variable
 3386|       |     * - '-W' command line options
 3387|       |     * - PyConfig.bytes_warning ('-b' and '-bb' command line options):
 3388|       |     *   "default::BytesWarning" or "error::BytesWarning" filter
 3389|       |     * - early PySys_AddWarnOption() calls
 3390|       |     * - PyConfig.warnoptions
 3391|       |     *
 3392|       |     * PyConfig.warnoptions is copied to sys.warnoptions. Since the warnings
 3393|       |     * module works on the basis of "the most recently added filter will be
 3394|       |     * checked first", we add the lowest precedence entries first so that later
 3395|       |     * entries override them.
 3396|       |     */
 3397|       |
 3398|      2|    if (config->dev_mode) {
  ------------------
  |  Branch (3398:9): [True: 0, False: 2]
  ------------------
 3399|      0|        status = warnoptions_append(config, &options, L"default");
 3400|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3401|      0|            goto error;
 3402|      0|        }
 3403|      0|    }
 3404|       |
 3405|      2|    status = warnoptions_extend(config, &options, env_warnoptions);
 3406|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3407|      0|        goto error;
 3408|      0|    }
 3409|       |
 3410|      2|    status = warnoptions_extend(config, &options, cmdline_warnoptions);
 3411|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3412|      0|        goto error;
 3413|      0|    }
 3414|       |
 3415|       |    /* If the bytes_warning_flag isn't set, bytesobject.c and bytearrayobject.c
 3416|       |     * don't even try to emit a warning, so we skip setting the filter in that
 3417|       |     * case.
 3418|       |     */
 3419|      2|    if (config->bytes_warning) {
  ------------------
  |  Branch (3419:9): [True: 0, False: 2]
  ------------------
 3420|      0|        const wchar_t *filter;
 3421|      0|        if (config->bytes_warning> 1) {
  ------------------
  |  Branch (3421:13): [True: 0, False: 0]
  ------------------
 3422|      0|            filter = L"error::BytesWarning";
 3423|      0|        }
 3424|      0|        else {
 3425|      0|            filter = L"default::BytesWarning";
 3426|      0|        }
 3427|      0|        status = warnoptions_append(config, &options, filter);
 3428|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3429|      0|            goto error;
 3430|      0|        }
 3431|      0|    }
 3432|       |
 3433|      2|    status = warnoptions_extend(config, &options, sys_warnoptions);
 3434|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3435|      0|        goto error;
 3436|      0|    }
 3437|       |
 3438|       |    /* Always add all PyConfig.warnoptions options */
 3439|      2|    status = _PyWideStringList_Extend(&options, &config->warnoptions);
 3440|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 3441|      0|        goto error;
 3442|      0|    }
 3443|       |
 3444|      2|    _PyWideStringList_Clear(&config->warnoptions);
 3445|      2|    config->warnoptions = options;
 3446|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3447|       |
 3448|      0|error:
 3449|      0|    _PyWideStringList_Clear(&options);
 3450|      0|    return status;
 3451|      2|}
initconfig.c:warnoptions_extend:
 3358|      6|{
 3359|      6|    const Py_ssize_t len = options2->length;
 3360|      6|    wchar_t *const *items = options2->items;
 3361|       |
 3362|      6|    for (Py_ssize_t i = 0; i < len; i++) {
  ------------------
  |  Branch (3362:28): [True: 0, False: 6]
  ------------------
 3363|      0|        PyStatus status = warnoptions_append(config, options, items[i]);
 3364|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3365|      0|            return status;
 3366|      0|        }
 3367|      0|    }
 3368|      6|    return _PyStatus_OK();
  ------------------
  |  |   24|      6|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3369|      6|}
initconfig.c:config_read:
 2862|      2|{
 2863|      2|    PyStatus status;
 2864|      2|    const PyPreConfig *preconfig = &_PyRuntime.preconfig;
 2865|       |
 2866|      2|    if (config->use_environment) {
  ------------------
  |  Branch (2866:9): [True: 2, False: 0]
  ------------------
 2867|      2|        status = config_read_env_vars(config);
 2868|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2869|      0|            return status;
 2870|      0|        }
 2871|      2|    }
 2872|       |
 2873|       |    /* -X options */
 2874|      2|    if (config_get_xoption(config, L"showrefcount")) {
  ------------------
  |  Branch (2874:9): [True: 0, False: 2]
  ------------------
 2875|      0|        config->show_ref_count = 1;
 2876|      0|    }
 2877|       |
 2878|      2|    const wchar_t *x_gil = config_get_xoption_value(config, L"gil");
 2879|      2|    if (x_gil != NULL) {
  ------------------
  |  Branch (2879:9): [True: 0, False: 2]
  ------------------
 2880|      0|        size_t len = wcslen(x_gil);
 2881|      0|        status = config_read_gil(config, len, x_gil[0]);
 2882|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2883|      0|            return status;
 2884|      0|        }
 2885|      0|    }
 2886|       |
 2887|       |#ifdef Py_STATS
 2888|       |    if (config_get_xoption(config, L"pystats")) {
 2889|       |        config->_pystats = 1;
 2890|       |    }
 2891|       |    else if (config_get_env(config, "PYTHONSTATS")) {
 2892|       |        config->_pystats = 1;
 2893|       |    }
 2894|       |    if (config->_pystats < 0) {
 2895|       |        config->_pystats = 0;
 2896|       |    }
 2897|       |#endif
 2898|       |
 2899|      2|    status = config_read_complex_options(config);
 2900|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2901|      0|        return status;
 2902|      0|    }
 2903|       |
 2904|      2|    if (config->_install_importlib) {
  ------------------
  |  Branch (2904:9): [True: 2, False: 0]
  ------------------
 2905|      2|        status = config_init_import(config, compute_path_config);
 2906|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2907|      0|            return status;
 2908|      0|        }
 2909|      2|    }
 2910|       |
 2911|       |    /* default values */
 2912|      2|    if (config->dev_mode) {
  ------------------
  |  Branch (2912:9): [True: 0, False: 2]
  ------------------
 2913|      0|        if (config->faulthandler < 0) {
  ------------------
  |  Branch (2913:13): [True: 0, False: 0]
  ------------------
 2914|      0|            config->faulthandler = 1;
 2915|      0|        }
 2916|      0|    }
 2917|      2|    if (config->faulthandler < 0) {
  ------------------
  |  Branch (2917:9): [True: 2, False: 0]
  ------------------
 2918|      2|        config->faulthandler = 0;
 2919|      2|    }
 2920|      2|    if (config->tracemalloc < 0) {
  ------------------
  |  Branch (2920:9): [True: 2, False: 0]
  ------------------
 2921|      2|        config->tracemalloc = 0;
 2922|      2|    }
 2923|      2|    if (config->lazy_imports < 0) {
  ------------------
  |  Branch (2923:9): [True: 2, False: 0]
  ------------------
 2924|      2|        config->lazy_imports = -1;  // Default is auto/unset
 2925|      2|    }
 2926|      2|    if (config->perf_profiling < 0) {
  ------------------
  |  Branch (2926:9): [True: 2, False: 0]
  ------------------
 2927|      2|        config->perf_profiling = 0;
 2928|      2|    }
 2929|      2|    if (config->remote_debug < 0) {
  ------------------
  |  Branch (2929:9): [True: 0, False: 2]
  ------------------
 2930|      0|        config->remote_debug = -1;
 2931|      0|    }
 2932|      2|    if (config->use_hash_seed < 0) {
  ------------------
  |  Branch (2932:9): [True: 0, False: 2]
  ------------------
 2933|      0|        config->use_hash_seed = 0;
 2934|      0|        config->hash_seed = 0;
 2935|      0|    }
 2936|       |
 2937|      2|    if (config->filesystem_encoding == NULL || config->filesystem_errors == NULL) {
  ------------------
  |  Branch (2937:9): [True: 2, False: 0]
  |  Branch (2937:48): [True: 0, False: 0]
  ------------------
 2938|      2|        status = config_init_fs_encoding(config, preconfig);
 2939|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2940|      0|            return status;
 2941|      0|        }
 2942|      2|    }
 2943|       |
 2944|      2|    status = config_init_stdio_encoding(config, preconfig);
 2945|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2946|      0|        return status;
 2947|      0|    }
 2948|       |
 2949|      2|    if (config->argv.length < 1) {
  ------------------
  |  Branch (2949:9): [True: 0, False: 2]
  ------------------
 2950|       |        /* Ensure at least one (empty) argument is seen */
 2951|      0|        status = PyWideStringList_Append(&config->argv, L"");
 2952|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2953|      0|            return status;
 2954|      0|        }
 2955|      0|    }
 2956|       |
 2957|      2|    if (config->check_hash_pycs_mode == NULL) {
  ------------------
  |  Branch (2957:9): [True: 2, False: 0]
  ------------------
 2958|      2|        status = PyConfig_SetString(config, &config->check_hash_pycs_mode,
 2959|      2|                                    L"default");
 2960|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2961|      0|            return status;
 2962|      0|        }
 2963|      2|    }
 2964|       |
 2965|      2|    if (config->configure_c_stdio < 0) {
  ------------------
  |  Branch (2965:9): [True: 0, False: 2]
  ------------------
 2966|      0|        config->configure_c_stdio = 1;
 2967|      0|    }
 2968|       |
 2969|       |    // Only parse arguments once.
 2970|      2|    if (config->parse_argv == 1) {
  ------------------
  |  Branch (2970:9): [True: 2, False: 0]
  ------------------
 2971|      2|        config->parse_argv = 2;
 2972|      2|    }
 2973|       |
 2974|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2975|      2|}
initconfig.c:config_read_env_vars:
 1970|      2|{
 1971|      2|    PyStatus status;
 1972|      2|    int use_env = config->use_environment;
 1973|       |
 1974|       |    /* Get environment variables */
 1975|      2|    _Py_get_env_flag(use_env, &config->parser_debug, "PYTHONDEBUG");
 1976|      2|    _Py_get_env_flag(use_env, &config->verbose, "PYTHONVERBOSE");
 1977|      2|    _Py_get_env_flag(use_env, &config->optimization_level, "PYTHONOPTIMIZE");
 1978|      2|    if (!config->inspect && _Py_GetEnv(use_env, "PYTHONINSPECT")) {
  ------------------
  |  Branch (1978:9): [True: 2, False: 0]
  |  Branch (1978:29): [True: 0, False: 2]
  ------------------
 1979|      0|        config->inspect = 1;
 1980|      0|    }
 1981|       |
 1982|      2|    int dont_write_bytecode = 0;
 1983|      2|    _Py_get_env_flag(use_env, &dont_write_bytecode, "PYTHONDONTWRITEBYTECODE");
 1984|      2|    if (dont_write_bytecode) {
  ------------------
  |  Branch (1984:9): [True: 0, False: 2]
  ------------------
 1985|      0|        config->write_bytecode = 0;
 1986|      0|    }
 1987|       |
 1988|      2|    int no_user_site_directory = 0;
 1989|      2|    _Py_get_env_flag(use_env, &no_user_site_directory, "PYTHONNOUSERSITE");
 1990|      2|    if (no_user_site_directory) {
  ------------------
  |  Branch (1990:9): [True: 0, False: 2]
  ------------------
 1991|      0|        config->user_site_directory = 0;
 1992|      0|    }
 1993|       |
 1994|      2|    int unbuffered_stdio = 0;
 1995|      2|    _Py_get_env_flag(use_env, &unbuffered_stdio, "PYTHONUNBUFFERED");
 1996|      2|    if (unbuffered_stdio) {
  ------------------
  |  Branch (1996:9): [True: 0, False: 2]
  ------------------
 1997|      0|        config->buffered_stdio = 0;
 1998|      0|    }
 1999|       |
 2000|       |#ifdef MS_WINDOWS
 2001|       |    _Py_get_env_flag(use_env, &config->legacy_windows_stdio,
 2002|       |                     "PYTHONLEGACYWINDOWSSTDIO");
 2003|       |#endif
 2004|       |
 2005|      2|    if (config_get_env(config, "PYTHONDUMPREFS")) {
  ------------------
  |  Branch (2005:9): [True: 0, False: 2]
  ------------------
 2006|      0|        config->dump_refs = 1;
 2007|      0|    }
 2008|      2|    if (config_get_env(config, "PYTHONMALLOCSTATS")) {
  ------------------
  |  Branch (2008:9): [True: 0, False: 2]
  ------------------
 2009|      0|        config->malloc_stats = 1;
 2010|      0|    }
 2011|      2|    {
 2012|      2|        const char *env = _Py_GetEnv(use_env, "PYTHON_PYMALLOC_HUGEPAGES");
 2013|      2|        if (env) {
  ------------------
  |  Branch (2013:13): [True: 0, False: 2]
  ------------------
 2014|      0|            int value;
 2015|      0|            if (_Py_str_to_int(env, &value) < 0 || value < 0) {
  ------------------
  |  Branch (2015:17): [True: 0, False: 0]
  |  Branch (2015:52): [True: 0, False: 0]
  ------------------
 2016|       |                /* PYTHON_PYMALLOC_HUGEPAGES=text or negative
 2017|       |                   behaves as PYTHON_PYMALLOC_HUGEPAGES=1 */
 2018|      0|                value = 1;
 2019|      0|            }
 2020|      0|            config->pymalloc_hugepages = (value > 0);
 2021|      0|        }
 2022|      2|    }
 2023|       |
 2024|      2|    if (config->dump_refs_file == NULL) {
  ------------------
  |  Branch (2024:9): [True: 2, False: 0]
  ------------------
 2025|      2|        status = CONFIG_GET_ENV_DUP(config, &config->dump_refs_file,
  ------------------
  |  | 1785|      2|    config_get_env_dup(CONFIG, DEST, WNAME, NAME, "cannot decode " NAME)
  ------------------
 2026|      2|                                    L"PYTHONDUMPREFSFILE", "PYTHONDUMPREFSFILE");
 2027|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2028|      0|            return status;
 2029|      0|        }
 2030|      2|    }
 2031|       |
 2032|      2|    if (config->pythonpath_env == NULL) {
  ------------------
  |  Branch (2032:9): [True: 2, False: 0]
  ------------------
 2033|      2|        status = CONFIG_GET_ENV_DUP(config, &config->pythonpath_env,
  ------------------
  |  | 1785|      2|    config_get_env_dup(CONFIG, DEST, WNAME, NAME, "cannot decode " NAME)
  ------------------
 2034|      2|                                    L"PYTHONPATH", "PYTHONPATH");
 2035|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2036|      0|            return status;
 2037|      0|        }
 2038|      2|    }
 2039|       |
 2040|      2|    if(config->platlibdir == NULL) {
  ------------------
  |  Branch (2040:8): [True: 2, False: 0]
  ------------------
 2041|      2|        status = CONFIG_GET_ENV_DUP(config, &config->platlibdir,
  ------------------
  |  | 1785|      2|    config_get_env_dup(CONFIG, DEST, WNAME, NAME, "cannot decode " NAME)
  ------------------
 2042|      2|                                    L"PYTHONPLATLIBDIR", "PYTHONPLATLIBDIR");
 2043|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2044|      0|            return status;
 2045|      0|        }
 2046|      2|    }
 2047|       |
 2048|      2|    if (config->use_hash_seed < 0) {
  ------------------
  |  Branch (2048:9): [True: 2, False: 0]
  ------------------
 2049|      2|        status = config_init_hash_seed(config);
 2050|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2051|      0|            return status;
 2052|      0|        }
 2053|      2|    }
 2054|       |
 2055|      2|    if (config_get_env(config, "PYTHONSAFEPATH")) {
  ------------------
  |  Branch (2055:9): [True: 0, False: 2]
  ------------------
 2056|      0|        config->safe_path = 1;
 2057|      0|    }
 2058|       |
 2059|      2|    const char *gil = config_get_env(config, "PYTHON_GIL");
 2060|      2|    if (gil != NULL) {
  ------------------
  |  Branch (2060:9): [True: 0, False: 2]
  ------------------
 2061|      0|        size_t len = strlen(gil);
 2062|      0|        status = config_read_gil(config, len, gil[0]);
 2063|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2064|      0|            return status;
 2065|      0|        }
 2066|      0|    }
 2067|       |
 2068|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2069|      2|}
initconfig.c:config_init_hash_seed:
 1896|      2|{
 1897|      2|    static_assert(sizeof(_Py_HashSecret_t) == sizeof(_Py_HashSecret.uc),
 1898|      2|                  "_Py_HashSecret_t has wrong size");
 1899|       |
 1900|      2|    const char *seed_text = config_get_env(config, "PYTHONHASHSEED");
 1901|       |
 1902|       |    /* Convert a text seed to a numeric one */
 1903|      2|    if (seed_text && strcmp(seed_text, "random") != 0) {
  ------------------
  |  Branch (1903:9): [True: 0, False: 2]
  |  Branch (1903:22): [True: 0, False: 0]
  ------------------
 1904|      0|        const char *endptr = seed_text;
 1905|      0|        unsigned long seed;
 1906|      0|        errno = 0;
 1907|      0|        seed = strtoul(seed_text, (char **)&endptr, 10);
 1908|      0|        if (*endptr != '\0'
  ------------------
  |  Branch (1908:13): [True: 0, False: 0]
  ------------------
 1909|      0|            || seed > MAX_HASH_SEED
  ------------------
  |  | 1007|      0|#define MAX_HASH_SEED 4294967295UL
  ------------------
  |  Branch (1909:16): [True: 0, False: 0]
  ------------------
 1910|      0|            || (errno == ERANGE && seed == ULONG_MAX))
  ------------------
  |  Branch (1910:17): [True: 0, False: 0]
  |  Branch (1910:36): [True: 0, False: 0]
  ------------------
 1911|      0|        {
 1912|      0|            return _PyStatus_ERR("PYTHONHASHSEED must be \"random\" "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1913|      0|                                "or an integer in range [0; 4294967295]");
 1914|      0|        }
 1915|       |        /* Use a specific hash */
 1916|      0|        config->use_hash_seed = 1;
 1917|      0|        config->hash_seed = seed;
 1918|      0|    }
 1919|      2|    else {
 1920|       |        /* Use a random hash */
 1921|      2|        config->use_hash_seed = 0;
 1922|      2|        config->hash_seed = 0;
 1923|      2|    }
 1924|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1925|      2|}
initconfig.c:config_read_complex_options:
 2501|      2|{
 2502|       |    /* More complex options configured by env var and -X option */
 2503|      2|    if (config->faulthandler < 0) {
  ------------------
  |  Branch (2503:9): [True: 2, False: 0]
  ------------------
 2504|      2|        if (config_get_env(config, "PYTHONFAULTHANDLER")
  ------------------
  |  Branch (2504:13): [True: 0, False: 2]
  ------------------
 2505|      2|           || config_get_xoption(config, L"faulthandler")) {
  ------------------
  |  Branch (2505:15): [True: 0, False: 2]
  ------------------
 2506|      0|            config->faulthandler = 1;
 2507|      0|        }
 2508|      2|    }
 2509|      2|    if (config_get_env(config, "PYTHONNODEBUGRANGES")
  ------------------
  |  Branch (2509:9): [True: 0, False: 2]
  ------------------
 2510|      2|       || config_get_xoption(config, L"no_debug_ranges")) {
  ------------------
  |  Branch (2510:11): [True: 0, False: 2]
  ------------------
 2511|      0|        config->code_debug_ranges = 0;
 2512|      0|    }
 2513|       |
 2514|      2|    PyStatus status;
 2515|      2|    if (config->import_time < 0) {
  ------------------
  |  Branch (2515:9): [True: 2, False: 0]
  ------------------
 2516|      2|        status = config_init_import_time(config);
 2517|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2518|      0|            return status;
 2519|      0|        }
 2520|      2|    }
 2521|       |
 2522|      2|    if (config->lazy_imports < 0) {
  ------------------
  |  Branch (2522:9): [True: 2, False: 0]
  ------------------
 2523|      2|        status = config_init_lazy_imports(config);
 2524|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2525|      0|            return status;
 2526|      0|        }
 2527|      2|    }
 2528|       |
 2529|      2|    if (config->tracemalloc < 0) {
  ------------------
  |  Branch (2529:9): [True: 2, False: 0]
  ------------------
 2530|      2|        status = config_init_tracemalloc(config);
 2531|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2532|      0|            return status;
 2533|      0|        }
 2534|      2|    }
 2535|       |
 2536|      2|    if (config->perf_profiling < 0) {
  ------------------
  |  Branch (2536:9): [True: 2, False: 0]
  ------------------
 2537|      2|        status = config_init_perf_profiling(config);
 2538|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2539|      0|            return status;
 2540|      0|        }
 2541|      2|    }
 2542|       |
 2543|      2|    if (config->remote_debug < 0) {
  ------------------
  |  Branch (2543:9): [True: 2, False: 0]
  ------------------
 2544|      2|        status = config_init_remote_debug(config);
 2545|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2546|      0|            return status;
 2547|      0|        }
 2548|      2|    }
 2549|       |
 2550|      2|    if (config->int_max_str_digits < 0) {
  ------------------
  |  Branch (2550:9): [True: 0, False: 2]
  ------------------
 2551|      0|        status = config_init_int_max_str_digits(config);
 2552|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2553|      0|            return status;
 2554|      0|        }
 2555|      0|    }
 2556|       |
 2557|      2|    if (config->cpu_count < 0) {
  ------------------
  |  Branch (2557:9): [True: 2, False: 0]
  ------------------
 2558|      2|        status = config_init_cpu_count(config);
 2559|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2560|      0|            return status;
 2561|      0|        }
 2562|      2|    }
 2563|       |
 2564|      2|    if (config->pycache_prefix == NULL) {
  ------------------
  |  Branch (2564:9): [True: 2, False: 0]
  ------------------
 2565|      2|        status = config_init_pycache_prefix(config);
 2566|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2567|      0|            return status;
 2568|      0|        }
 2569|      2|    }
 2570|       |
 2571|       |#ifdef Py_DEBUG
 2572|       |    if (config->run_presite == NULL) {
 2573|       |        status = config_init_run_presite(config);
 2574|       |        if (_PyStatus_EXCEPTION(status)) {
 2575|       |            return status;
 2576|       |        }
 2577|       |    }
 2578|       |#endif
 2579|       |
 2580|      2|    status = config_init_thread_inherit_context(config);
 2581|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2582|      0|        return status;
 2583|      0|    }
 2584|       |
 2585|      2|    status = config_init_context_aware_warnings(config);
 2586|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2587|      0|        return status;
 2588|      0|    }
 2589|       |
 2590|      2|    status = config_init_tlbc(config);
 2591|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2592|      0|        return status;
 2593|      0|    }
 2594|       |
 2595|      2|    status = config_init_pathconfig_warnings(config);
 2596|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2597|      0|        return status;
 2598|      0|    }
 2599|       |
 2600|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2601|      2|}
initconfig.c:config_init_import_time:
 2399|      2|{
 2400|      2|    int importtime = 0;
 2401|       |
 2402|      2|    const char *env = config_get_env(config, "PYTHONPROFILEIMPORTTIME");
 2403|      2|    if (env) {
  ------------------
  |  Branch (2403:9): [True: 0, False: 2]
  ------------------
 2404|      0|        if (_Py_str_to_int(env, &importtime) != 0) {
  ------------------
  |  Branch (2404:13): [True: 0, False: 0]
  ------------------
 2405|      0|            importtime = 1;
 2406|      0|        }
 2407|      0|        if (importtime < 0 || importtime > 2) {
  ------------------
  |  Branch (2407:13): [True: 0, False: 0]
  |  Branch (2407:31): [True: 0, False: 0]
  ------------------
 2408|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2409|      0|                "PYTHONPROFILEIMPORTTIME: numeric values other than 1 and 2 "
 2410|      0|                "are reserved for future use.");
 2411|      0|        }
 2412|      0|    }
 2413|       |
 2414|      2|    const wchar_t *x_value = config_get_xoption_value(config, L"importtime");
 2415|      2|    if (x_value) {
  ------------------
  |  Branch (2415:9): [True: 0, False: 2]
  ------------------
 2416|      0|        if (*x_value == 0 || config_wstr_to_int(x_value, &importtime) != 0) {
  ------------------
  |  Branch (2416:13): [True: 0, False: 0]
  |  Branch (2416:30): [True: 0, False: 0]
  ------------------
 2417|      0|            importtime = 1;
 2418|      0|        }
 2419|      0|        if (importtime < 0 || importtime > 2) {
  ------------------
  |  Branch (2419:13): [True: 0, False: 0]
  |  Branch (2419:31): [True: 0, False: 0]
  ------------------
 2420|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2421|      0|                "-X importtime: values other than 1 and 2 "
 2422|      0|                "are reserved for future use.");
 2423|      0|        }
 2424|      0|    }
 2425|       |
 2426|      2|    config->import_time = importtime;
 2427|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2428|      2|}
initconfig.c:config_init_lazy_imports:
 2432|      2|{
 2433|      2|    int lazy_imports = -1;
 2434|       |
 2435|      2|    const char *env = config_get_env(config, "PYTHON_LAZY_IMPORTS");
 2436|      2|    if (env) {
  ------------------
  |  Branch (2436:9): [True: 0, False: 2]
  ------------------
 2437|      0|        if (strcmp(env, "all") == 0) {
  ------------------
  |  Branch (2437:13): [True: 0, False: 0]
  ------------------
 2438|      0|            lazy_imports = 1;
 2439|      0|        }
 2440|      0|        else if (strcmp(env, "none") == 0) {
  ------------------
  |  Branch (2440:18): [True: 0, False: 0]
  ------------------
 2441|      0|            lazy_imports = 0;
 2442|      0|        }
 2443|      0|        else if (strcmp(env, "normal") == 0) {
  ------------------
  |  Branch (2443:18): [True: 0, False: 0]
  ------------------
 2444|      0|            lazy_imports = -1;
 2445|      0|        }
 2446|      0|        else {
 2447|      0|            return _PyStatus_ERR("PYTHON_LAZY_IMPORTS: invalid value; "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2448|      0|                                 "expected 'all', 'none', or 'normal'");
 2449|      0|        }
 2450|      0|        config->lazy_imports = lazy_imports;
 2451|      0|    }
 2452|       |
 2453|      2|    const wchar_t *x_value = config_get_xoption_value(config, L"lazy_imports");
 2454|      2|    if (x_value) {
  ------------------
  |  Branch (2454:9): [True: 0, False: 2]
  ------------------
 2455|      0|        if (wcscmp(x_value, L"all") == 0) {
  ------------------
  |  Branch (2455:13): [True: 0, False: 0]
  ------------------
 2456|      0|            lazy_imports = 1;
 2457|      0|        }
 2458|      0|        else if (wcscmp(x_value, L"none") == 0) {
  ------------------
  |  Branch (2458:18): [True: 0, False: 0]
  ------------------
 2459|      0|            lazy_imports = 0;
 2460|      0|        }
 2461|      0|        else if (wcscmp(x_value, L"normal") == 0) {
  ------------------
  |  Branch (2461:18): [True: 0, False: 0]
  ------------------
 2462|      0|            lazy_imports = -1;
 2463|      0|        }
 2464|      0|        else {
 2465|      0|            return _PyStatus_ERR("-X lazy_imports: invalid value; "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2466|      0|                                 "expected 'all', 'none', or 'normal'");
 2467|      0|        }
 2468|      0|        config->lazy_imports = lazy_imports;
 2469|      0|    }
 2470|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2471|      2|}
initconfig.c:config_init_tracemalloc:
 2251|      2|{
 2252|      2|    int nframe;
 2253|      2|    int valid;
 2254|       |
 2255|      2|    const char *env = config_get_env(config, "PYTHONTRACEMALLOC");
 2256|      2|    if (env) {
  ------------------
  |  Branch (2256:9): [True: 0, False: 2]
  ------------------
 2257|      0|        if (!_Py_str_to_int(env, &nframe)) {
  ------------------
  |  Branch (2257:13): [True: 0, False: 0]
  ------------------
 2258|      0|            valid = (nframe >= 0);
 2259|      0|        }
 2260|      0|        else {
 2261|      0|            valid = 0;
 2262|      0|        }
 2263|      0|        if (!valid) {
  ------------------
  |  Branch (2263:13): [True: 0, False: 0]
  ------------------
 2264|      0|            return _PyStatus_ERR("PYTHONTRACEMALLOC: invalid number of frames");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2265|      0|        }
 2266|      0|        config->tracemalloc = nframe;
 2267|      0|    }
 2268|       |
 2269|      2|    const wchar_t *xoption = config_get_xoption(config, L"tracemalloc");
 2270|      2|    if (xoption) {
  ------------------
  |  Branch (2270:9): [True: 0, False: 2]
  ------------------
 2271|      0|        const wchar_t *sep = wcschr(xoption, L'=');
 2272|      0|        if (sep) {
  ------------------
  |  Branch (2272:13): [True: 0, False: 0]
  ------------------
 2273|      0|            if (!config_wstr_to_int(sep + 1, &nframe)) {
  ------------------
  |  Branch (2273:17): [True: 0, False: 0]
  ------------------
 2274|      0|                valid = (nframe >= 0);
 2275|      0|            }
 2276|      0|            else {
 2277|      0|                valid = 0;
 2278|      0|            }
 2279|      0|            if (!valid) {
  ------------------
  |  Branch (2279:17): [True: 0, False: 0]
  ------------------
 2280|      0|                return _PyStatus_ERR("-X tracemalloc=NFRAME: "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2281|      0|                                     "invalid number of frames");
 2282|      0|            }
 2283|      0|        }
 2284|      0|        else {
 2285|       |            /* -X tracemalloc behaves as -X tracemalloc=1 */
 2286|      0|            nframe = 1;
 2287|      0|        }
 2288|      0|        config->tracemalloc = nframe;
 2289|      0|    }
 2290|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2291|      2|}
initconfig.c:config_init_perf_profiling:
 2194|      2|{
 2195|      2|    int active = 0;
 2196|      2|    const char *env = config_get_env(config, "PYTHONPERFSUPPORT");
 2197|      2|    if (env) {
  ------------------
  |  Branch (2197:9): [True: 0, False: 2]
  ------------------
 2198|      0|        if (_Py_str_to_int(env, &active) != 0) {
  ------------------
  |  Branch (2198:13): [True: 0, False: 0]
  ------------------
 2199|      0|            active = 0;
 2200|      0|        }
 2201|      0|        if (active) {
  ------------------
  |  Branch (2201:13): [True: 0, False: 0]
  ------------------
 2202|      0|            config->perf_profiling = 1;
 2203|      0|        }
 2204|      0|    }
 2205|      2|    const wchar_t *xoption = config_get_xoption(config, L"perf");
 2206|      2|    if (xoption) {
  ------------------
  |  Branch (2206:9): [True: 0, False: 2]
  ------------------
 2207|      0|        config->perf_profiling = 1;
 2208|      0|    }
 2209|      2|    env = config_get_env(config, "PYTHON_PERF_JIT_SUPPORT");
 2210|      2|    if (env) {
  ------------------
  |  Branch (2210:9): [True: 0, False: 2]
  ------------------
 2211|      0|        if (_Py_str_to_int(env, &active) != 0) {
  ------------------
  |  Branch (2211:13): [True: 0, False: 0]
  ------------------
 2212|      0|            active = 0;
 2213|      0|        }
 2214|      0|        if (active) {
  ------------------
  |  Branch (2214:13): [True: 0, False: 0]
  ------------------
 2215|      0|            config->perf_profiling = 2;
 2216|      0|        }
 2217|      0|    }
 2218|      2|    xoption = config_get_xoption(config, L"perf_jit");
 2219|      2|    if (xoption) {
  ------------------
  |  Branch (2219:9): [True: 0, False: 2]
  ------------------
 2220|      0|        config->perf_profiling = 2;
 2221|      0|    }
 2222|       |
 2223|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2224|       |
 2225|      2|}
initconfig.c:config_init_remote_debug:
 2229|      2|{
 2230|       |#ifndef Py_REMOTE_DEBUG
 2231|       |    config->remote_debug = 0;
 2232|       |#else
 2233|      2|    int active = 1;
 2234|      2|    const char *env = Py_GETENV("PYTHON_DISABLE_REMOTE_DEBUG");
 2235|      2|    if (env) {
  ------------------
  |  Branch (2235:9): [True: 0, False: 2]
  ------------------
 2236|      0|        active = 0;
 2237|      0|    }
 2238|      2|    const wchar_t *xoption = config_get_xoption(config, L"disable-remote-debug");
 2239|      2|    if (xoption) {
  ------------------
  |  Branch (2239:9): [True: 0, False: 2]
  ------------------
 2240|      0|        active = 0;
 2241|      0|    }
 2242|       |
 2243|      2|    config->remote_debug = active;
 2244|      2|#endif
 2245|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2246|       |
 2247|      2|}
initconfig.c:config_init_cpu_count:
 2073|      2|{
 2074|      2|    const char *env = config_get_env(config, "PYTHON_CPU_COUNT");
 2075|      2|    if (env) {
  ------------------
  |  Branch (2075:9): [True: 0, False: 2]
  ------------------
 2076|      0|        int cpu_count = -1;
 2077|      0|        if (strcmp(env, "default") == 0) {
  ------------------
  |  Branch (2077:13): [True: 0, False: 0]
  ------------------
 2078|      0|            cpu_count = -1;
 2079|      0|        }
 2080|      0|        else if (_Py_str_to_int(env, &cpu_count) < 0 || cpu_count < 1) {
  ------------------
  |  Branch (2080:18): [True: 0, False: 0]
  |  Branch (2080:57): [True: 0, False: 0]
  ------------------
 2081|      0|            goto error;
 2082|      0|        }
 2083|      0|        config->cpu_count = cpu_count;
 2084|      0|    }
 2085|       |
 2086|      2|    const wchar_t *xoption = config_get_xoption(config, L"cpu_count");
 2087|      2|    if (xoption) {
  ------------------
  |  Branch (2087:9): [True: 0, False: 2]
  ------------------
 2088|      0|        int cpu_count = -1;
 2089|      0|        const wchar_t *sep = wcschr(xoption, L'=');
 2090|      0|        if (sep) {
  ------------------
  |  Branch (2090:13): [True: 0, False: 0]
  ------------------
 2091|      0|            if (wcscmp(sep + 1, L"default") == 0) {
  ------------------
  |  Branch (2091:17): [True: 0, False: 0]
  ------------------
 2092|      0|                cpu_count = -1;
 2093|      0|            }
 2094|      0|            else if (config_wstr_to_int(sep + 1, &cpu_count) < 0 || cpu_count < 1) {
  ------------------
  |  Branch (2094:22): [True: 0, False: 0]
  |  Branch (2094:69): [True: 0, False: 0]
  ------------------
 2095|      0|                goto error;
 2096|      0|            }
 2097|      0|        }
 2098|      0|        else {
 2099|      0|            goto error;
 2100|      0|        }
 2101|      0|        config->cpu_count = cpu_count;
 2102|      0|    }
 2103|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2104|       |
 2105|      0|error:
 2106|      0|    return _PyStatus_ERR("-X cpu_count=n option: n is missing or an invalid number, "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2107|      2|                         "n must be greater than 0");
 2108|      2|}
initconfig.c:config_init_pycache_prefix:
 2342|      2|{
 2343|      2|    assert(config->pycache_prefix == NULL);
  ------------------
  |  Branch (2343:5): [True: 2, False: 0]
  ------------------
 2344|       |
 2345|      2|    const wchar_t *xoption = config_get_xoption(config, L"pycache_prefix");
 2346|      2|    if (xoption) {
  ------------------
  |  Branch (2346:9): [True: 0, False: 2]
  ------------------
 2347|      0|        const wchar_t *sep = wcschr(xoption, L'=');
 2348|      0|        if (sep && wcslen(sep) > 1) {
  ------------------
  |  Branch (2348:13): [True: 0, False: 0]
  |  Branch (2348:20): [True: 0, False: 0]
  ------------------
 2349|      0|            config->pycache_prefix = _PyMem_RawWcsdup(sep + 1);
 2350|      0|            if (config->pycache_prefix == NULL) {
  ------------------
  |  Branch (2350:17): [True: 0, False: 0]
  ------------------
 2351|      0|                return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 2352|      0|            }
 2353|      0|        }
 2354|      0|        else {
 2355|       |            // PYTHONPYCACHEPREFIX env var ignored
 2356|       |            // if "-X pycache_prefix=" option is used
 2357|      0|            config->pycache_prefix = NULL;
 2358|      0|        }
 2359|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2360|      0|    }
 2361|       |
 2362|      2|    return CONFIG_GET_ENV_DUP(config, &config->pycache_prefix,
  ------------------
  |  | 1785|      2|    config_get_env_dup(CONFIG, DEST, WNAME, NAME, "cannot decode " NAME)
  ------------------
 2363|      2|                              L"PYTHONPYCACHEPREFIX",
 2364|      2|                              "PYTHONPYCACHEPREFIX");
 2365|      2|}
initconfig.c:config_init_thread_inherit_context:
 2112|      2|{
 2113|      2|    const char *env = config_get_env(config, "PYTHON_THREAD_INHERIT_CONTEXT");
 2114|      2|    if (env) {
  ------------------
  |  Branch (2114:9): [True: 0, False: 2]
  ------------------
 2115|      0|        int enabled;
 2116|      0|        if (_Py_str_to_int(env, &enabled) < 0 || (enabled < 0) || (enabled > 1)) {
  ------------------
  |  Branch (2116:13): [True: 0, False: 0]
  |  Branch (2116:50): [True: 0, False: 0]
  |  Branch (2116:67): [True: 0, False: 0]
  ------------------
 2117|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2118|      0|                "PYTHON_THREAD_INHERIT_CONTEXT=N: N is missing or invalid");
 2119|      0|        }
 2120|      0|        config->thread_inherit_context = enabled;
 2121|      0|    }
 2122|       |
 2123|      2|    const wchar_t *xoption = config_get_xoption(config, L"thread_inherit_context");
 2124|      2|    if (xoption) {
  ------------------
  |  Branch (2124:9): [True: 0, False: 2]
  ------------------
 2125|      0|        int enabled;
 2126|      0|        const wchar_t *sep = wcschr(xoption, L'=');
 2127|      0|        if (!sep || (config_wstr_to_int(sep + 1, &enabled) < 0) || (enabled < 0) || (enabled > 1)) {
  ------------------
  |  Branch (2127:13): [True: 0, False: 0]
  |  Branch (2127:21): [True: 0, False: 0]
  |  Branch (2127:68): [True: 0, False: 0]
  |  Branch (2127:85): [True: 0, False: 0]
  ------------------
 2128|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2129|      0|                "-X thread_inherit_context=n: n is missing or invalid");
 2130|      0|        }
 2131|      0|        config->thread_inherit_context = enabled;
 2132|      0|    }
 2133|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2134|      2|}
initconfig.c:config_init_context_aware_warnings:
 2138|      2|{
 2139|      2|    const char *env = config_get_env(config, "PYTHON_CONTEXT_AWARE_WARNINGS");
 2140|      2|    if (env) {
  ------------------
  |  Branch (2140:9): [True: 0, False: 2]
  ------------------
 2141|      0|        int enabled;
 2142|      0|        if (_Py_str_to_int(env, &enabled) < 0 || (enabled < 0) || (enabled > 1)) {
  ------------------
  |  Branch (2142:13): [True: 0, False: 0]
  |  Branch (2142:50): [True: 0, False: 0]
  |  Branch (2142:67): [True: 0, False: 0]
  ------------------
 2143|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2144|      0|                "PYTHON_CONTEXT_AWARE_WARNINGS=N: N is missing or invalid");
 2145|      0|        }
 2146|      0|        config->context_aware_warnings = enabled;
 2147|      0|    }
 2148|       |
 2149|      2|    const wchar_t *xoption = config_get_xoption(config, L"context_aware_warnings");
 2150|      2|    if (xoption) {
  ------------------
  |  Branch (2150:9): [True: 0, False: 2]
  ------------------
 2151|      0|        int enabled;
 2152|      0|        const wchar_t *sep = wcschr(xoption, L'=');
 2153|      0|        if (!sep || (config_wstr_to_int(sep + 1, &enabled) < 0) || (enabled < 0) || (enabled > 1)) {
  ------------------
  |  Branch (2153:13): [True: 0, False: 0]
  |  Branch (2153:21): [True: 0, False: 0]
  |  Branch (2153:68): [True: 0, False: 0]
  |  Branch (2153:85): [True: 0, False: 0]
  ------------------
 2154|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2155|      0|                "-X context_aware_warnings=n: n is missing or invalid");
 2156|      0|        }
 2157|      0|        config->context_aware_warnings = enabled;
 2158|      0|    }
 2159|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2160|      2|}
initconfig.c:config_init_tlbc:
 2164|      2|{
 2165|       |#ifdef Py_GIL_DISABLED
 2166|       |    const char *env = config_get_env(config, "PYTHON_TLBC");
 2167|       |    if (env) {
 2168|       |        int enabled;
 2169|       |        if (_Py_str_to_int(env, &enabled) < 0 || (enabled < 0) || (enabled > 1)) {
 2170|       |            return _PyStatus_ERR(
 2171|       |                "PYTHON_TLBC=N: N is missing or invalid");
 2172|       |        }
 2173|       |        config->tlbc_enabled = enabled;
 2174|       |    }
 2175|       |
 2176|       |    const wchar_t *xoption = config_get_xoption(config, L"tlbc");
 2177|       |    if (xoption) {
 2178|       |        int enabled;
 2179|       |        const wchar_t *sep = wcschr(xoption, L'=');
 2180|       |        if (!sep || (config_wstr_to_int(sep + 1, &enabled) < 0) || (enabled < 0) || (enabled > 1)) {
 2181|       |            return _PyStatus_ERR(
 2182|       |                "-X tlbc=n: n is missing or invalid");
 2183|       |        }
 2184|       |        config->tlbc_enabled = enabled;
 2185|       |    }
 2186|       |    return _PyStatus_OK();
 2187|       |#else
 2188|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2189|      2|#endif
 2190|      2|}
initconfig.c:config_init_pathconfig_warnings:
 2475|      2|{
 2476|      2|    const char *env = config_get_env(config, "PYTHON_PATHCONFIG_WARNINGS");
 2477|      2|    if (env) {
  ------------------
  |  Branch (2477:9): [True: 0, False: 2]
  ------------------
 2478|      0|        int enabled;
 2479|      0|        if (_Py_str_to_int(env, &enabled) < 0 || (enabled < 0) || (enabled > 1)) {
  ------------------
  |  Branch (2479:13): [True: 0, False: 0]
  |  Branch (2479:50): [True: 0, False: 0]
  |  Branch (2479:67): [True: 0, False: 0]
  ------------------
 2480|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2481|      0|                "PYTHON_PATHCONFIG_WARNINGS=N: N is missing or invalid");
 2482|      0|        }
 2483|      0|        config->pathconfig_warnings = enabled;
 2484|      0|    }
 2485|       |
 2486|      2|    const wchar_t *xoption = config_get_xoption(config, L"pathconfig_warnings");
 2487|      2|    if (xoption) {
  ------------------
  |  Branch (2487:9): [True: 0, False: 2]
  ------------------
 2488|      0|        int enabled;
 2489|      0|        const wchar_t *sep = wcschr(xoption, L'=');
 2490|      0|        if (!sep || (config_wstr_to_int(sep + 1, &enabled) < 0) || (enabled < 0) || (enabled > 1)) {
  ------------------
  |  Branch (2490:13): [True: 0, False: 0]
  |  Branch (2490:21): [True: 0, False: 0]
  |  Branch (2490:68): [True: 0, False: 0]
  |  Branch (2490:85): [True: 0, False: 0]
  ------------------
 2491|      0|            return _PyStatus_ERR(
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2492|      0|                "-X pathconfig_warnings=n: n is missing or invalid");
 2493|      0|        }
 2494|      0|        config->pathconfig_warnings = enabled;
 2495|      0|    }
 2496|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2497|      2|}
initconfig.c:config_init_fs_encoding:
 2775|      2|{
 2776|      2|    PyStatus status;
 2777|       |
 2778|      2|    if (config->filesystem_encoding == NULL) {
  ------------------
  |  Branch (2778:9): [True: 2, False: 0]
  ------------------
 2779|      2|        status = config_get_fs_encoding(config, preconfig,
 2780|      2|                                        &config->filesystem_encoding);
 2781|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2782|      0|            return status;
 2783|      0|        }
 2784|      2|    }
 2785|       |
 2786|      2|    if (config->filesystem_errors == NULL) {
  ------------------
  |  Branch (2786:9): [True: 2, False: 0]
  ------------------
 2787|      2|        const wchar_t *errors;
 2788|       |#ifdef MS_WINDOWS
 2789|       |        if (preconfig->legacy_windows_fs_encoding) {
 2790|       |            errors = L"replace";
 2791|       |        }
 2792|       |        else {
 2793|       |            errors = L"surrogatepass";
 2794|       |        }
 2795|       |#else
 2796|      2|        errors = L"surrogateescape";
 2797|      2|#endif
 2798|      2|        status = PyConfig_SetString(config, &config->filesystem_errors, errors);
 2799|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2800|      0|            return status;
 2801|      0|        }
 2802|      2|    }
 2803|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2804|      2|}
initconfig.c:config_get_fs_encoding:
 2745|      2|{
 2746|       |#ifdef _Py_FORCE_UTF8_FS_ENCODING
 2747|       |    return PyConfig_SetString(config, fs_encoding, L"utf-8");
 2748|       |#elif defined(MS_WINDOWS)
 2749|       |    const wchar_t *encoding;
 2750|       |    if (preconfig->legacy_windows_fs_encoding) {
 2751|       |        // Legacy Windows filesystem encoding: mbcs/replace
 2752|       |        encoding = L"mbcs";
 2753|       |    }
 2754|       |    else {
 2755|       |        // Windows defaults to utf-8/surrogatepass (PEP 529)
 2756|       |        encoding = L"utf-8";
 2757|       |    }
 2758|       |     return PyConfig_SetString(config, fs_encoding, encoding);
 2759|       |#else  // !MS_WINDOWS
 2760|      2|    if (preconfig->utf8_mode) {
  ------------------
  |  Branch (2760:9): [True: 2, False: 0]
  ------------------
 2761|      2|        return PyConfig_SetString(config, fs_encoding, L"utf-8");
 2762|      2|    }
 2763|       |
 2764|      0|    if (_Py_GetForceASCII()) {
  ------------------
  |  Branch (2764:9): [True: 0, False: 0]
  ------------------
 2765|      0|        return PyConfig_SetString(config, fs_encoding, L"ascii");
 2766|      0|    }
 2767|       |
 2768|      0|    return config_get_locale_encoding(config, preconfig, fs_encoding);
 2769|      0|#endif  // !MS_WINDOWS
 2770|      0|}
initconfig.c:config_get_locale_encoding:
 2640|      2|{
 2641|      2|    wchar_t *encoding;
 2642|      2|    if (preconfig->utf8_mode) {
  ------------------
  |  Branch (2642:9): [True: 2, False: 0]
  ------------------
 2643|      2|        encoding = _PyMem_RawWcsdup(L"utf-8");
 2644|      2|    }
 2645|      0|    else {
 2646|      0|        encoding = _Py_GetLocaleEncoding();
 2647|      0|    }
 2648|      2|    if (encoding == NULL) {
  ------------------
  |  Branch (2648:9): [True: 0, False: 2]
  ------------------
 2649|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 2650|      0|    }
 2651|      2|    PyStatus status = PyConfig_SetString(config, locale_encoding, encoding);
 2652|      2|    PyMem_RawFree(encoding);
 2653|      2|    return status;
 2654|      2|}
initconfig.c:config_init_stdio_encoding:
 2660|      2|{
 2661|      2|    PyStatus status;
 2662|       |
 2663|       |    // Exit if encoding and errors are defined
 2664|      2|    if (config->stdio_encoding != NULL && config->stdio_errors != NULL) {
  ------------------
  |  Branch (2664:9): [True: 0, False: 2]
  |  Branch (2664:43): [True: 0, False: 0]
  ------------------
 2665|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2666|      0|    }
 2667|       |
 2668|       |    /* PYTHONIOENCODING environment variable */
 2669|      2|    const char *opt = config_get_env(config, "PYTHONIOENCODING");
 2670|      2|    if (opt) {
  ------------------
  |  Branch (2670:9): [True: 0, False: 2]
  ------------------
 2671|      0|        char *pythonioencoding = _PyMem_RawStrdup(opt);
 2672|      0|        if (pythonioencoding == NULL) {
  ------------------
  |  Branch (2672:13): [True: 0, False: 0]
  ------------------
 2673|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
 2674|      0|        }
 2675|       |
 2676|      0|        char *errors = strchr(pythonioencoding, ':');
 2677|      0|        if (errors) {
  ------------------
  |  Branch (2677:13): [True: 0, False: 0]
  ------------------
 2678|      0|            *errors = '\0';
 2679|      0|            errors++;
 2680|      0|            if (!errors[0]) {
  ------------------
  |  Branch (2680:17): [True: 0, False: 0]
  ------------------
 2681|      0|                errors = NULL;
 2682|      0|            }
 2683|      0|        }
 2684|       |
 2685|       |        /* Does PYTHONIOENCODING contain an encoding? */
 2686|      0|        if (pythonioencoding[0]) {
  ------------------
  |  Branch (2686:13): [True: 0, False: 0]
  ------------------
 2687|      0|            if (config->stdio_encoding == NULL) {
  ------------------
  |  Branch (2687:17): [True: 0, False: 0]
  ------------------
 2688|      0|                status = CONFIG_SET_BYTES_STR(config, &config->stdio_encoding,
  ------------------
  |  | 1333|      0|    config_set_bytes_string(config, config_str, str, "cannot decode " NAME)
  ------------------
 2689|      0|                                              pythonioencoding,
 2690|      0|                                              "PYTHONIOENCODING environment variable");
 2691|      0|                if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2692|      0|                    PyMem_RawFree(pythonioencoding);
 2693|      0|                    return status;
 2694|      0|                }
 2695|      0|            }
 2696|       |
 2697|       |            /* If the encoding is set but not the error handler,
 2698|       |               use "strict" error handler by default.
 2699|       |               PYTHONIOENCODING=latin1 behaves as
 2700|       |               PYTHONIOENCODING=latin1:strict. */
 2701|      0|            if (!errors) {
  ------------------
  |  Branch (2701:17): [True: 0, False: 0]
  ------------------
 2702|      0|                errors = "strict";
 2703|      0|            }
 2704|      0|        }
 2705|       |
 2706|      0|        if (config->stdio_errors == NULL && errors != NULL) {
  ------------------
  |  Branch (2706:13): [True: 0, False: 0]
  |  Branch (2706:45): [True: 0, False: 0]
  ------------------
 2707|      0|            status = CONFIG_SET_BYTES_STR(config, &config->stdio_errors,
  ------------------
  |  | 1333|      0|    config_set_bytes_string(config, config_str, str, "cannot decode " NAME)
  ------------------
 2708|      0|                                          errors,
 2709|      0|                                          "PYTHONIOENCODING environment variable");
 2710|      0|            if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 2711|      0|                PyMem_RawFree(pythonioencoding);
 2712|      0|                return status;
 2713|      0|            }
 2714|      0|        }
 2715|       |
 2716|      0|        PyMem_RawFree(pythonioencoding);
 2717|      0|    }
 2718|       |
 2719|       |    /* Choose the default error handler based on the current locale. */
 2720|      2|    if (config->stdio_encoding == NULL) {
  ------------------
  |  Branch (2720:9): [True: 2, False: 0]
  ------------------
 2721|      2|        status = config_get_locale_encoding(config, preconfig,
 2722|      2|                                            &config->stdio_encoding);
 2723|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2724|      0|            return status;
 2725|      0|        }
 2726|      2|    }
 2727|      2|    if (config->stdio_errors == NULL) {
  ------------------
  |  Branch (2727:9): [True: 2, False: 0]
  ------------------
 2728|      2|        const wchar_t *errors = config_get_stdio_errors(preconfig);
 2729|      2|        assert(errors != NULL);
  ------------------
  |  Branch (2729:9): [True: 2, False: 0]
  ------------------
 2730|       |
 2731|      2|        status = PyConfig_SetString(config, &config->stdio_errors, errors);
 2732|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 2733|      0|            return status;
 2734|      0|        }
 2735|      2|    }
 2736|       |
 2737|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2738|      2|}
initconfig.c:config_get_stdio_errors:
 2606|      2|{
 2607|      2|    if (preconfig->utf8_mode) {
  ------------------
  |  Branch (2607:9): [True: 2, False: 0]
  ------------------
 2608|       |        /* UTF-8 Mode uses UTF-8/surrogateescape */
 2609|      2|        return L"surrogateescape";
 2610|      2|    }
 2611|       |
 2612|      0|#ifndef MS_WINDOWS
 2613|      0|    const char *loc = setlocale(LC_CTYPE, NULL);
 2614|      0|    if (loc != NULL) {
  ------------------
  |  Branch (2614:9): [True: 0, False: 0]
  ------------------
 2615|       |        /* surrogateescape is the default in the legacy C and POSIX locales */
 2616|      0|        if (strcmp(loc, "C") == 0 || strcmp(loc, "POSIX") == 0) {
  ------------------
  |  Branch (2616:13): [True: 0, False: 0]
  |  Branch (2616:38): [True: 0, False: 0]
  ------------------
 2617|      0|            return L"surrogateescape";
 2618|      0|        }
 2619|       |
 2620|      0|#ifdef PY_COERCE_C_LOCALE
 2621|       |        /* surrogateescape is the default in locale coercion target locales */
 2622|      0|        if (_Py_IsLocaleCoercionTarget(loc)) {
  ------------------
  |  Branch (2622:13): [True: 0, False: 0]
  ------------------
 2623|      0|            return L"surrogateescape";
 2624|      0|        }
 2625|      0|#endif
 2626|      0|    }
 2627|       |
 2628|      0|    return L"strict";
 2629|       |#else
 2630|       |    /* On Windows, always use surrogateescape by default */
 2631|       |    return L"surrogateescape";
 2632|       |#endif
 2633|      0|}
initconfig.c:config_check_consistency:
 1013|      2|{
 1014|       |    /* Check config consistency */
 1015|      2|    assert(config->isolated >= 0);
  ------------------
  |  Branch (1015:5): [True: 2, False: 0]
  ------------------
 1016|      2|    assert(config->use_environment >= 0);
  ------------------
  |  Branch (1016:5): [True: 2, False: 0]
  ------------------
 1017|      2|    assert(config->dev_mode >= 0);
  ------------------
  |  Branch (1017:5): [True: 2, False: 0]
  ------------------
 1018|      2|    assert(config->install_signal_handlers >= 0);
  ------------------
  |  Branch (1018:5): [True: 2, False: 0]
  ------------------
 1019|      2|    assert(config->use_hash_seed >= 0);
  ------------------
  |  Branch (1019:5): [True: 2, False: 0]
  ------------------
 1020|      2|    assert(config->hash_seed <= MAX_HASH_SEED);
  ------------------
  |  Branch (1020:5): [True: 2, False: 0]
  ------------------
 1021|      2|    assert(config->faulthandler >= 0);
  ------------------
  |  Branch (1021:5): [True: 2, False: 0]
  ------------------
 1022|      2|    assert(config->tracemalloc >= 0);
  ------------------
  |  Branch (1022:5): [True: 2, False: 0]
  ------------------
 1023|      2|    assert(config->import_time >= 0);
  ------------------
  |  Branch (1023:5): [True: 2, False: 0]
  ------------------
 1024|      2|    assert(config->code_debug_ranges >= 0);
  ------------------
  |  Branch (1024:5): [True: 2, False: 0]
  ------------------
 1025|      2|    assert(config->show_ref_count >= 0);
  ------------------
  |  Branch (1025:5): [True: 2, False: 0]
  ------------------
 1026|      2|    assert(config->dump_refs >= 0);
  ------------------
  |  Branch (1026:5): [True: 2, False: 0]
  ------------------
 1027|      2|    assert(config->malloc_stats >= 0);
  ------------------
  |  Branch (1027:5): [True: 2, False: 0]
  ------------------
 1028|      2|    assert(config->pymalloc_hugepages >= 0);
  ------------------
  |  Branch (1028:5): [True: 2, False: 0]
  ------------------
 1029|      2|    assert(config->site_import >= 0);
  ------------------
  |  Branch (1029:5): [True: 2, False: 0]
  ------------------
 1030|      2|    assert(config->bytes_warning >= 0);
  ------------------
  |  Branch (1030:5): [True: 2, False: 0]
  ------------------
 1031|      2|    assert(config->warn_default_encoding >= 0);
  ------------------
  |  Branch (1031:5): [True: 2, False: 0]
  ------------------
 1032|      2|    assert(config->inspect >= 0);
  ------------------
  |  Branch (1032:5): [True: 2, False: 0]
  ------------------
 1033|      2|    assert(config->interactive >= 0);
  ------------------
  |  Branch (1033:5): [True: 2, False: 0]
  ------------------
 1034|      2|    assert(config->optimization_level >= 0);
  ------------------
  |  Branch (1034:5): [True: 2, False: 0]
  ------------------
 1035|      2|    assert(config->parser_debug >= 0);
  ------------------
  |  Branch (1035:5): [True: 2, False: 0]
  ------------------
 1036|      2|    assert(config->write_bytecode >= 0);
  ------------------
  |  Branch (1036:5): [True: 2, False: 0]
  ------------------
 1037|      2|    assert(config->verbose >= 0);
  ------------------
  |  Branch (1037:5): [True: 2, False: 0]
  ------------------
 1038|      2|    assert(config->quiet >= 0);
  ------------------
  |  Branch (1038:5): [True: 2, False: 0]
  ------------------
 1039|      2|    assert(config->user_site_directory >= 0);
  ------------------
  |  Branch (1039:5): [True: 2, False: 0]
  ------------------
 1040|      2|    assert(config->parse_argv >= 0);
  ------------------
  |  Branch (1040:5): [True: 2, False: 0]
  ------------------
 1041|      2|    assert(config->configure_c_stdio >= 0);
  ------------------
  |  Branch (1041:5): [True: 2, False: 0]
  ------------------
 1042|      2|    assert(config->buffered_stdio >= 0);
  ------------------
  |  Branch (1042:5): [True: 2, False: 0]
  ------------------
 1043|      2|    assert(_PyWideStringList_CheckConsistency(&config->orig_argv));
  ------------------
  |  Branch (1043:5): [True: 2, False: 0]
  ------------------
 1044|      2|    assert(_PyWideStringList_CheckConsistency(&config->argv));
  ------------------
  |  Branch (1044:5): [True: 2, False: 0]
  ------------------
 1045|       |    /* sys.argv must be non-empty: empty argv is replaced with [''] */
 1046|      2|    assert(config->argv.length >= 1);
  ------------------
  |  Branch (1046:5): [True: 2, False: 0]
  ------------------
 1047|      2|    assert(_PyWideStringList_CheckConsistency(&config->xoptions));
  ------------------
  |  Branch (1047:5): [True: 2, False: 0]
  ------------------
 1048|      2|    assert(_PyWideStringList_CheckConsistency(&config->warnoptions));
  ------------------
  |  Branch (1048:5): [True: 2, False: 0]
  ------------------
 1049|      2|    assert(_PyWideStringList_CheckConsistency(&config->module_search_paths));
  ------------------
  |  Branch (1049:5): [True: 2, False: 0]
  ------------------
 1050|      2|    assert(config->module_search_paths_set >= 0);
  ------------------
  |  Branch (1050:5): [True: 2, False: 0]
  ------------------
 1051|      2|    assert(config->filesystem_encoding != NULL);
  ------------------
  |  Branch (1051:5): [True: 2, False: 0]
  ------------------
 1052|      2|    assert(config->filesystem_errors != NULL);
  ------------------
  |  Branch (1052:5): [True: 2, False: 0]
  ------------------
 1053|      2|    assert(config->stdio_encoding != NULL);
  ------------------
  |  Branch (1053:5): [True: 2, False: 0]
  ------------------
 1054|      2|    assert(config->stdio_errors != NULL);
  ------------------
  |  Branch (1054:5): [True: 2, False: 0]
  ------------------
 1055|       |#ifdef MS_WINDOWS
 1056|       |    assert(config->legacy_windows_stdio >= 0);
 1057|       |#endif
 1058|       |    /* -c and -m options are exclusive */
 1059|      2|    assert(!(config->run_command != NULL && config->run_module != NULL));
  ------------------
  |  Branch (1059:5): [True: 0, False: 2]
  |  Branch (1059:5): [True: 0, False: 0]
  ------------------
 1060|      2|    assert(config->check_hash_pycs_mode != NULL);
  ------------------
  |  Branch (1060:5): [True: 2, False: 0]
  ------------------
 1061|      2|    assert(config->_install_importlib >= 0);
  ------------------
  |  Branch (1061:5): [True: 2, False: 0]
  ------------------
 1062|      2|    assert(config->pathconfig_warnings >= 0);
  ------------------
  |  Branch (1062:5): [True: 2, False: 0]
  ------------------
 1063|      2|    assert(config->_is_python_build >= 0);
  ------------------
  |  Branch (1063:5): [True: 2, False: 0]
  ------------------
 1064|      2|    assert(config->safe_path >= 0);
  ------------------
  |  Branch (1064:5): [True: 2, False: 0]
  ------------------
 1065|      2|    assert(config->int_max_str_digits >= 0);
  ------------------
  |  Branch (1065:5): [True: 2, False: 0]
  ------------------
 1066|       |    // cpu_count can be -1 if the user doesn't override it.
 1067|      2|    assert(config->cpu_count != 0);
  ------------------
  |  Branch (1067:5): [True: 2, False: 0]
  ------------------
 1068|       |    // lazy_imports can be -1 (default), 0 (off), or 1 (on).
 1069|      2|    assert(config->lazy_imports >= -1 && config->lazy_imports <= 1);
  ------------------
  |  Branch (1069:5): [True: 2, False: 0]
  |  Branch (1069:5): [True: 2, False: 0]
  ------------------
 1070|       |    // config->use_frozen_modules is initialized later
 1071|       |    // by _PyConfig_InitImportConfig().
 1072|      2|    assert(config->thread_inherit_context >= 0);
  ------------------
  |  Branch (1072:5): [True: 2, False: 0]
  ------------------
 1073|      2|    assert(config->context_aware_warnings >= 0);
  ------------------
  |  Branch (1073:5): [True: 2, False: 0]
  ------------------
 1074|       |#ifdef __APPLE__
 1075|       |    assert(config->use_system_logger >= 0);
 1076|       |#endif
 1077|       |#ifdef Py_STATS
 1078|       |    assert(config->_pystats >= 0);
 1079|       |#endif
 1080|      2|    return 1;
 1081|      2|}
initconfig.c:config_get:
 4633|    142|{
 4634|    142|    if (use_sys) {
  ------------------
  |  Branch (4634:9): [True: 0, False: 142]
  ------------------
 4635|      0|        if (spec->sys.attr != NULL) {
  ------------------
  |  Branch (4635:13): [True: 0, False: 0]
  ------------------
 4636|      0|            return PySys_GetAttrString(spec->sys.attr);
 4637|      0|        }
 4638|       |
 4639|      0|        if (strcmp(spec->name, "write_bytecode") == 0) {
  ------------------
  |  Branch (4639:13): [True: 0, False: 0]
  ------------------
 4640|      0|            int value;
 4641|      0|            if (config_get_sys_write_bytecode(config, &value) < 0) {
  ------------------
  |  Branch (4641:17): [True: 0, False: 0]
  ------------------
 4642|      0|                return NULL;
 4643|      0|            }
 4644|      0|            return PyBool_FromLong(value);
 4645|      0|        }
 4646|       |
 4647|      0|        if (strcmp(spec->name, "int_max_str_digits") == 0) {
  ------------------
  |  Branch (4647:13): [True: 0, False: 0]
  ------------------
 4648|      0|            PyInterpreterState *interp = _PyInterpreterState_GET();
 4649|      0|            return PyLong_FromLong(interp->long_state.max_str_digits);
 4650|      0|        }
 4651|      0|    }
 4652|       |
 4653|    142|    void *member = config_get_spec_member(config, spec);
 4654|    142|    switch (spec->type) {
 4655|      8|    case PyConfig_MEMBER_INT:
  ------------------
  |  Branch (4655:5): [True: 8, False: 134]
  ------------------
 4656|     24|    case PyConfig_MEMBER_UINT:
  ------------------
  |  Branch (4656:5): [True: 16, False: 126]
  ------------------
 4657|     24|    {
 4658|     24|        int value = *(int *)member;
 4659|     24|        return PyLong_FromLong(value);
 4660|      8|    }
 4661|       |
 4662|     62|    case PyConfig_MEMBER_BOOL:
  ------------------
  |  Branch (4662:5): [True: 62, False: 80]
  ------------------
 4663|     62|    {
 4664|     62|        int value = *(int *)member;
 4665|     62|        return PyBool_FromLong(value != 0);
 4666|      8|    }
 4667|       |
 4668|      2|    case PyConfig_MEMBER_ULONG:
  ------------------
  |  Branch (4668:5): [True: 2, False: 140]
  ------------------
 4669|      2|    {
 4670|      2|        unsigned long value = *(unsigned long *)member;
 4671|      2|        return PyLong_FromUnsignedLong(value);
 4672|      8|    }
 4673|       |
 4674|     14|    case PyConfig_MEMBER_WSTR:
  ------------------
  |  Branch (4674:5): [True: 14, False: 128]
  ------------------
 4675|     44|    case PyConfig_MEMBER_WSTR_OPT:
  ------------------
  |  Branch (4675:5): [True: 30, False: 112]
  ------------------
 4676|     44|    {
 4677|     44|        wchar_t *wstr = *(wchar_t **)member;
 4678|     44|        if (wstr != NULL) {
  ------------------
  |  Branch (4678:13): [True: 12, False: 32]
  ------------------
 4679|     12|            return PyUnicode_FromWideChar(wstr, -1);
 4680|     12|        }
 4681|     32|        else {
 4682|     32|            return Py_NewRef(Py_None);
  ------------------
  |  |  550|     32|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4683|     32|        }
 4684|     44|    }
 4685|       |
 4686|     10|    case PyConfig_MEMBER_WSTR_LIST:
  ------------------
  |  Branch (4686:5): [True: 10, False: 132]
  ------------------
 4687|     10|    {
 4688|     10|        if (strcmp(spec->name, "xoptions") == 0) {
  ------------------
  |  Branch (4688:13): [True: 2, False: 8]
  ------------------
 4689|      2|            return _PyConfig_CreateXOptionsDict(config);
 4690|      2|        }
 4691|      8|        else {
 4692|      8|            const PyWideStringList *list = (const PyWideStringList *)member;
 4693|      8|            return _PyWideStringList_AsTuple(list);
 4694|      8|        }
 4695|     10|    }
 4696|       |
 4697|      0|    default:
  ------------------
  |  Branch (4697:5): [True: 0, False: 142]
  ------------------
 4698|      0|        Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
 4699|    142|    }
 4700|    142|}
initconfig.c:_PyWideStringList_AsTuple:
  956|      8|{
  957|      8|    assert(_PyWideStringList_CheckConsistency(list));
  ------------------
  |  Branch (957:5): [True: 8, False: 0]
  ------------------
  958|       |
  959|      8|    PyObject *tuple = PyTuple_New(list->length);
  960|      8|    if (tuple == NULL) {
  ------------------
  |  Branch (960:9): [True: 0, False: 8]
  ------------------
  961|      0|        return NULL;
  962|      0|    }
  963|       |
  964|     10|    for (Py_ssize_t i = 0; i < list->length; i++) {
  ------------------
  |  Branch (964:28): [True: 2, False: 8]
  ------------------
  965|      2|        PyObject *item = PyUnicode_FromWideChar(list->items[i], -1);
  966|      2|        if (item == NULL) {
  ------------------
  |  Branch (966:13): [True: 0, False: 2]
  ------------------
  967|      0|            Py_DECREF(tuple);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  968|      0|            return NULL;
  969|      0|        }
  970|      2|        PyTuple_SET_ITEM(tuple, i, item);
  ------------------
  |  |   40|      2|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  971|      2|    }
  972|      8|    return tuple;
  973|      8|}

_Py_CreateMonitoringObject:
 2565|      2|{
 2566|      2|    PyObject *mod = _PyModule_CreateInitialized(&monitoring_module, PYTHON_API_VERSION);
  ------------------
  |  |   59|      2|#define PYTHON_API_VERSION 1013
  ------------------
 2567|      2|    if (mod == NULL) {
  ------------------
  |  Branch (2567:9): [True: 0, False: 2]
  ------------------
 2568|      0|        return NULL;
 2569|      0|    }
 2570|      2|    if (PyObject_SetAttrString(mod, "DISABLE", &_PyInstrumentation_DISABLE)) {
  ------------------
  |  Branch (2570:9): [True: 0, False: 2]
  ------------------
 2571|      0|        goto error;
 2572|      0|    }
 2573|      2|    if (PyObject_SetAttrString(mod, "MISSING", &_PyInstrumentation_MISSING)) {
  ------------------
  |  Branch (2573:9): [True: 0, False: 2]
  ------------------
 2574|      0|        goto error;
 2575|      0|    }
 2576|      2|    PyObject *events = _PyNamespace_New(NULL);
 2577|      2|    if (events == NULL) {
  ------------------
  |  Branch (2577:9): [True: 0, False: 2]
  ------------------
 2578|      0|        goto error;
 2579|      0|    }
 2580|      2|    int err = PyObject_SetAttrString(mod, "events", events);
 2581|      2|    Py_DECREF(events);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2582|      2|    if (err) {
  ------------------
  |  Branch (2582:9): [True: 0, False: 2]
  ------------------
 2583|      0|        goto error;
 2584|      0|    }
 2585|     40|    for (int i = 0; i < _PY_MONITORING_EVENTS; i++) {
  ------------------
  |  |   77|     40|#define _PY_MONITORING_EVENTS 19
  ------------------
  |  Branch (2585:21): [True: 38, False: 2]
  ------------------
 2586|     38|        if (add_power2_constant(events, event_names[i], i)) {
  ------------------
  |  Branch (2586:13): [True: 0, False: 38]
  ------------------
 2587|      0|            goto error;
 2588|      0|        }
 2589|     38|    }
 2590|      2|    err = PyObject_SetAttrString(events, "NO_EVENTS", _PyLong_GetZero());
 2591|      2|    if (err) goto error;
  ------------------
  |  Branch (2591:9): [True: 0, False: 2]
  ------------------
 2592|      2|    PyObject *val = PyLong_FromLong(PY_MONITORING_DEBUGGER_ID);
  ------------------
  |  |   20|      2|#define PY_MONITORING_DEBUGGER_ID 0
  ------------------
 2593|      2|    assert(val != NULL); /* Can't return NULL because the int is small. */
  ------------------
  |  Branch (2593:5): [True: 2, False: 0]
  ------------------
 2594|      2|    err = PyObject_SetAttrString(mod, "DEBUGGER_ID", val);
 2595|      2|    Py_DECREF(val);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2596|      2|    if (err) goto error;
  ------------------
  |  Branch (2596:9): [True: 0, False: 2]
  ------------------
 2597|      2|    val = PyLong_FromLong(PY_MONITORING_COVERAGE_ID);
  ------------------
  |  |   21|      2|#define PY_MONITORING_COVERAGE_ID 1
  ------------------
 2598|      2|    assert(val != NULL);
  ------------------
  |  Branch (2598:5): [True: 2, False: 0]
  ------------------
 2599|      2|    err = PyObject_SetAttrString(mod, "COVERAGE_ID", val);
 2600|      2|    Py_DECREF(val);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2601|      2|    if (err) goto error;
  ------------------
  |  Branch (2601:9): [True: 0, False: 2]
  ------------------
 2602|      2|    val = PyLong_FromLong(PY_MONITORING_PROFILER_ID);
  ------------------
  |  |   22|      2|#define PY_MONITORING_PROFILER_ID 2
  ------------------
 2603|      2|    assert(val != NULL);
  ------------------
  |  Branch (2603:5): [True: 2, False: 0]
  ------------------
 2604|      2|    err = PyObject_SetAttrString(mod, "PROFILER_ID", val);
 2605|      2|    Py_DECREF(val);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2606|      2|    if (err) goto error;
  ------------------
  |  Branch (2606:9): [True: 0, False: 2]
  ------------------
 2607|      2|    val = PyLong_FromLong(PY_MONITORING_OPTIMIZER_ID);
  ------------------
  |  |   23|      2|#define PY_MONITORING_OPTIMIZER_ID 5
  ------------------
 2608|      2|    assert(val != NULL);
  ------------------
  |  Branch (2608:5): [True: 2, False: 0]
  ------------------
 2609|      2|    err = PyObject_SetAttrString(mod, "OPTIMIZER_ID", val);
 2610|      2|    Py_DECREF(val);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2611|      2|    if (err) goto error;
  ------------------
  |  Branch (2611:9): [True: 0, False: 2]
  ------------------
 2612|      2|    return mod;
 2613|      0|error:
 2614|      0|    Py_DECREF(mod);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2615|       |    return NULL;
 2616|      2|}
instrumentation.c:add_power2_constant:
 2502|     38|{
 2503|     38|    PyObject *val = PyLong_FromLong(1<<i);
 2504|     38|    if (val == NULL) {
  ------------------
  |  Branch (2504:9): [True: 0, False: 38]
  ------------------
 2505|      0|        return -1;
 2506|      0|    }
 2507|     38|    int err = PyObject_SetAttrString(obj, name, val);
 2508|     38|    Py_DECREF(val);
  ------------------
  |  |  430|     38|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     38|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     38|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2509|     38|    return err;
 2510|     38|}

intrinsics.c:import_star:
  125|      8|{
  126|      8|    _PyInterpreterFrame *frame = tstate->current_frame;
  127|       |
  128|      8|    PyObject *locals = _PyFrame_GetLocals(frame);
  129|      8|    if (locals == NULL) {
  ------------------
  |  Branch (129:9): [True: 0, False: 8]
  ------------------
  130|      0|        _PyErr_SetString(tstate, PyExc_SystemError,
  131|      0|                            "no locals found during 'import *'");
  132|      0|        return NULL;
  133|      0|    }
  134|      8|    int err = import_all_from(tstate, locals, from);
  135|      8|    Py_DECREF(locals);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  136|      8|    if (err < 0) {
  ------------------
  |  Branch (136:9): [True: 0, False: 8]
  ------------------
  137|      0|        return NULL;
  138|      0|    }
  139|      8|    Py_RETURN_NONE;
  ------------------
  |  |  628|      8|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      8|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  140|      8|}
intrinsics.c:import_all_from:
   41|      8|{
   42|      8|    PyObject *all, *dict, *name, *value;
   43|      8|    int skip_leading_underscores = 0;
   44|      8|    int pos, err;
   45|       |
   46|      8|    if (PyObject_GetOptionalAttr(v, &_Py_ID(__all__), &all) < 0) {
  ------------------
  |  |  917|      8|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      8|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      8|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (46:9): [True: 0, False: 8]
  ------------------
   47|      0|        return -1; /* Unexpected error */
   48|      0|    }
   49|      8|    if (all == NULL) {
  ------------------
  |  Branch (49:9): [True: 6, False: 2]
  ------------------
   50|      6|        if (PyObject_GetOptionalAttr(v, &_Py_ID(__dict__), &dict) < 0) {
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (50:13): [True: 0, False: 6]
  ------------------
   51|      0|            return -1;
   52|      0|        }
   53|      6|        if (dict == NULL) {
  ------------------
  |  Branch (53:13): [True: 0, False: 6]
  ------------------
   54|      0|            _PyErr_SetString(tstate, PyExc_ImportError,
   55|      0|                    "from-import-* object has no __dict__ and no __all__");
   56|      0|            return -1;
   57|      0|        }
   58|      6|        all = PyMapping_Keys(dict);
   59|      6|        Py_DECREF(dict);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   60|      6|        if (all == NULL)
  ------------------
  |  Branch (60:13): [True: 0, False: 6]
  ------------------
   61|      0|            return -1;
   62|      6|        skip_leading_underscores = 1;
   63|      6|    }
   64|       |
   65|  1.03k|    for (pos = 0, err = 0; ; pos++) {
   66|  1.03k|        name = PySequence_GetItem(all, pos);
   67|  1.03k|        if (name == NULL) {
  ------------------
  |  Branch (67:13): [True: 8, False: 1.02k]
  ------------------
   68|      8|            if (!_PyErr_ExceptionMatches(tstate, PyExc_IndexError)) {
  ------------------
  |  Branch (68:17): [True: 0, False: 8]
  ------------------
   69|      0|                err = -1;
   70|      0|            }
   71|      8|            else {
   72|      8|                _PyErr_Clear(tstate);
   73|      8|            }
   74|      8|            break;
   75|      8|        }
   76|  1.02k|        if (!PyUnicode_Check(name)) {
  ------------------
  |  |  103|  1.02k|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|  1.02k|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (76:13): [True: 0, False: 1.02k]
  ------------------
   77|      0|            PyObject *modname = PyObject_GetAttr(v, &_Py_ID(__name__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   78|      0|            if (modname == NULL) {
  ------------------
  |  Branch (78:17): [True: 0, False: 0]
  ------------------
   79|      0|                Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   80|      0|                err = -1;
   81|      0|                break;
   82|      0|            }
   83|      0|            if (!PyUnicode_Check(modname)) {
  ------------------
  |  |  103|      0|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (83:17): [True: 0, False: 0]
  ------------------
   84|      0|                _PyErr_Format(tstate, PyExc_TypeError,
   85|      0|                              "module __name__ must be a string, not %.100s",
   86|      0|                              Py_TYPE(modname)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   87|      0|            }
   88|      0|            else {
   89|      0|                _PyErr_Format(tstate, PyExc_TypeError,
   90|      0|                              "%s in %U.%s must be str, not %.100s",
   91|      0|                              skip_leading_underscores ? "Key" : "Item",
  ------------------
  |  Branch (91:31): [True: 0, False: 0]
  ------------------
   92|      0|                              modname,
   93|      0|                              skip_leading_underscores ? "__dict__" : "__all__",
  ------------------
  |  Branch (93:31): [True: 0, False: 0]
  ------------------
   94|      0|                              Py_TYPE(name)->tp_name);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   95|      0|            }
   96|      0|            Py_DECREF(modname);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   97|      0|            Py_DECREF(name);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   98|      0|            err = -1;
   99|      0|            break;
  100|      0|        }
  101|  1.02k|        if (skip_leading_underscores) {
  ------------------
  |  Branch (101:13): [True: 994, False: 34]
  ------------------
  102|    994|            if (PyUnicode_READ_CHAR(name, 0) == '_') {
  ------------------
  |  |  381|    994|    PyUnicode_READ_CHAR(_PyObject_CAST(unicode), (index))
  |  |  ------------------
  |  |  |  |  171|    994|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    994|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (102:17): [True: 50, False: 944]
  ------------------
  103|     50|                Py_DECREF(name);
  ------------------
  |  |  430|     50|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     50|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     50|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  104|     50|                continue;
  105|     50|            }
  106|    994|        }
  107|    978|        value = PyObject_GetAttr(v, name);
  108|    978|        if (value == NULL)
  ------------------
  |  Branch (108:13): [True: 0, False: 978]
  ------------------
  109|      0|            err = -1;
  110|    978|        else if (PyDict_CheckExact(locals))
  ------------------
  |  |   19|    978|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|    978|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    978|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    978|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 978, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  111|    978|            err = PyDict_SetItem(locals, name, value);
  112|      0|        else
  113|      0|            err = PyObject_SetItem(locals, name, value);
  114|    978|        Py_DECREF(name);
  ------------------
  |  |  430|    978|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    978|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    978|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  115|    978|        Py_XDECREF(value);
  ------------------
  |  |  524|    978|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    978|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    978|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  116|    978|        if (err < 0)
  ------------------
  |  Branch (116:13): [True: 0, False: 978]
  ------------------
  117|      0|            break;
  118|    978|    }
  119|      8|    Py_DECREF(all);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  120|      8|    return err;
  121|      8|}
intrinsics.c:list_to_tuple:
  194|      8|{
  195|       |    /* INTRINSIC_LIST_TO_TUPLE is only emitted by the compiler for a
  196|       |       freshly-built, uniquely-referenced temporary list, so steal its items
  197|       |       into the tuple instead of copying them. */
  198|      8|    assert(PyList_CheckExact(v));
  ------------------
  |  Branch (198:5): [True: 8, False: 0]
  ------------------
  199|      8|    assert(_PyObject_IsUniquelyReferenced(v));
  ------------------
  |  Branch (199:5): [True: 8, False: 0]
  ------------------
  200|      8|    return _PyList_AsTupleAndClear((PyListObject *)v);
  201|      8|}

_PyMutex_LockTimed:
   57|    120|{
   58|    120|    uint8_t v = _Py_atomic_load_uint8_relaxed(&m->_bits);
   59|    120|    if ((v & _Py_LOCKED) == 0) {
  ------------------
  |  |   10|    120|#define _Py_LOCKED      1
  ------------------
  |  Branch (59:9): [True: 120, False: 0]
  ------------------
   60|    120|        if (_Py_atomic_compare_exchange_uint8(&m->_bits, &v, v|_Py_LOCKED)) {
  ------------------
  |  |   10|    120|#define _Py_LOCKED      1
  ------------------
  |  Branch (60:13): [True: 120, False: 0]
  ------------------
   61|    120|            return PY_LOCK_ACQUIRED;
   62|    120|        }
   63|    120|    }
   64|      0|    if (timeout == 0) {
  ------------------
  |  Branch (64:9): [True: 0, False: 0]
  ------------------
   65|      0|        return PY_LOCK_FAILURE;
   66|      0|    }
   67|       |
   68|      0|    FT_STAT_MUTEX_SLEEP_INC();
   69|       |
   70|      0|    PyTime_t now;
   71|       |    // silently ignore error: cannot report error to the caller
   72|      0|    (void)PyTime_MonotonicRaw(&now);
   73|      0|    PyTime_t endtime = 0;
   74|      0|    if (timeout > 0) {
  ------------------
  |  Branch (74:9): [True: 0, False: 0]
  ------------------
   75|      0|        endtime = _PyTime_Add(now, timeout);
   76|      0|    }
   77|       |
   78|      0|    struct mutex_entry entry = {
   79|      0|        .time_to_be_fair = now + TIME_TO_BE_FAIR_NS,
   80|      0|        .handed_off = 0,
   81|      0|    };
   82|       |
   83|      0|    Py_ssize_t spin_count = 0;
   84|       |#ifdef Py_GIL_DISABLED
   85|       |    // Using thread-id as a way of reducing contention further in the reload below.
   86|       |    // It adds a pseudo-random starting offset to the recurrence, so that threads
   87|       |    // are less likely to try and run compare-exchange at the same time.
   88|       |    // The lower bits of platform thread ids are likely to not be random,
   89|       |    // hence the right shift.
   90|       |    const Py_ssize_t tid = (Py_ssize_t)(_Py_ThreadId() >> 12);
   91|       |#else
   92|      0|    const Py_ssize_t tid = 0;
   93|      0|#endif
   94|      0|    for (;;) {
   95|      0|        if ((v & _Py_LOCKED) == 0) {
  ------------------
  |  |   10|      0|#define _Py_LOCKED      1
  ------------------
  |  Branch (95:13): [True: 0, False: 0]
  ------------------
   96|       |            // The lock is unlocked. Try to grab it.
   97|      0|            if (_Py_atomic_compare_exchange_uint8(&m->_bits, &v, v|_Py_LOCKED)) {
  ------------------
  |  |   10|      0|#define _Py_LOCKED      1
  ------------------
  |  Branch (97:17): [True: 0, False: 0]
  ------------------
   98|      0|                return PY_LOCK_ACQUIRED;
   99|      0|            }
  100|      0|            continue;
  101|      0|        }
  102|       |
  103|      0|        if (!(v & _Py_HAS_PARKED) && spin_count < MAX_SPIN_COUNT) {
  ------------------
  |  |   17|      0|#define _Py_HAS_PARKED  2
  ------------------
  |  Branch (103:13): [True: 0, False: 0]
  |  Branch (103:38): [True: 0, False: 0]
  ------------------
  104|       |            // Spin for a bit.
  105|      0|            _Py_yield();
  106|      0|            spin_count++;
  107|      0|            if (((spin_count + tid) & RELOAD_SPIN_MASK) == 0) {
  ------------------
  |  Branch (107:17): [True: 0, False: 0]
  ------------------
  108|      0|                v = _Py_atomic_load_uint8_relaxed(&m->_bits);
  109|      0|            }
  110|      0|            continue;
  111|      0|        }
  112|       |
  113|      0|        if (timeout == 0) {
  ------------------
  |  Branch (113:13): [True: 0, False: 0]
  ------------------
  114|      0|            return PY_LOCK_FAILURE;
  115|      0|        }
  116|      0|        if ((flags & _PY_LOCK_PYTHONLOCK) && Py_IsFinalizing()) {
  ------------------
  |  Branch (116:13): [True: 0, False: 0]
  |  Branch (116:46): [True: 0, False: 0]
  ------------------
  117|       |            // At this phase of runtime shutdown, only the finalization thread
  118|       |            // can have attached thread state; others hang if they try
  119|       |            // attaching. And since operations on this lock requires attached
  120|       |            // thread state (_PY_LOCK_PYTHONLOCK), the finalization thread is
  121|       |            // running this code, and no other thread can unlock.
  122|       |            // Raise rather than hang. (_PY_LOCK_PYTHONLOCK allows raising
  123|       |            // exceptons.)
  124|      0|            PyErr_SetString(PyExc_PythonFinalizationError,
  125|      0|                            "cannot acquire lock at interpreter finalization");
  126|      0|            return PY_LOCK_FAILURE;
  127|      0|        }
  128|       |
  129|      0|        uint8_t newv = v;
  130|      0|        if (!(v & _Py_HAS_PARKED)) {
  ------------------
  |  |   17|      0|#define _Py_HAS_PARKED  2
  ------------------
  |  Branch (130:13): [True: 0, False: 0]
  ------------------
  131|       |            // We are the first waiter. Set the _Py_HAS_PARKED flag.
  132|      0|            newv = v | _Py_HAS_PARKED;
  ------------------
  |  |   17|      0|#define _Py_HAS_PARKED  2
  ------------------
  133|      0|            if (!_Py_atomic_compare_exchange_uint8(&m->_bits, &v, newv)) {
  ------------------
  |  Branch (133:17): [True: 0, False: 0]
  ------------------
  134|      0|                continue;
  135|      0|            }
  136|      0|        }
  137|       |
  138|      0|        int ret = _PyParkingLot_Park(&m->_bits, &newv, sizeof(newv), timeout,
  139|      0|                                     &entry, (flags & _PY_LOCK_DETACH) != 0);
  140|      0|        if (ret == Py_PARK_OK) {
  ------------------
  |  Branch (140:13): [True: 0, False: 0]
  ------------------
  141|      0|            if (entry.handed_off) {
  ------------------
  |  Branch (141:17): [True: 0, False: 0]
  ------------------
  142|       |                // We own the lock now. thread.Lock allows other threads
  143|       |                // to concurrently release the lock so we cannot assert that
  144|       |                // it is locked if _PY_LOCK_PYTHONLOCK is set.
  145|      0|                assert(_Py_atomic_load_uint8_relaxed(&m->_bits) & _Py_LOCKED ||
  ------------------
  |  Branch (145:17): [True: 0, False: 0]
  |  Branch (145:17): [True: 0, False: 0]
  ------------------
  146|      0|                       (flags & _PY_LOCK_PYTHONLOCK) != 0);
  147|      0|                return PY_LOCK_ACQUIRED;
  148|      0|            }
  149|      0|        }
  150|      0|        else if (ret == Py_PARK_INTR && (flags & _PY_LOCK_HANDLE_SIGNALS)) {
  ------------------
  |  Branch (150:18): [True: 0, False: 0]
  |  Branch (150:41): [True: 0, False: 0]
  ------------------
  151|      0|            if (Py_MakePendingCalls() < 0) {
  ------------------
  |  Branch (151:17): [True: 0, False: 0]
  ------------------
  152|      0|                return PY_LOCK_INTR;
  153|      0|            }
  154|      0|        }
  155|      0|        else if (ret == Py_PARK_INTR && (flags & _PY_FAIL_IF_INTERRUPTED)) {
  ------------------
  |  Branch (155:18): [True: 0, False: 0]
  |  Branch (155:41): [True: 0, False: 0]
  ------------------
  156|      0|            return PY_LOCK_INTR;
  157|      0|        }
  158|      0|        else if (ret == Py_PARK_TIMEOUT) {
  ------------------
  |  Branch (158:18): [True: 0, False: 0]
  ------------------
  159|      0|            assert(timeout >= 0);
  ------------------
  |  Branch (159:13): [True: 0, False: 0]
  ------------------
  160|      0|            return PY_LOCK_FAILURE;
  161|      0|        }
  162|       |
  163|      0|        if (timeout > 0) {
  ------------------
  |  Branch (163:13): [True: 0, False: 0]
  ------------------
  164|      0|            timeout = _PyDeadline_Get(endtime);
  165|      0|            if (timeout <= 0) {
  ------------------
  |  Branch (165:17): [True: 0, False: 0]
  ------------------
  166|       |                // Avoid negative values because those mean block forever.
  167|      0|                timeout = 0;
  168|      0|            }
  169|      0|        }
  170|       |
  171|      0|        v = _Py_atomic_load_uint8_relaxed(&m->_bits);
  172|      0|    }
  173|      0|}
_PyOnceFlag_CallOnceSlow:
  372|      2|{
  373|      2|    uint8_t v = _Py_atomic_load_uint8(&flag->v);
  374|      2|    for (;;) {
  375|      2|        if (v == _Py_UNLOCKED) {
  ------------------
  |  |    9|      2|#define _Py_UNLOCKED    0
  ------------------
  |  Branch (375:13): [True: 2, False: 0]
  ------------------
  376|      2|            if (!_Py_atomic_compare_exchange_uint8(&flag->v, &v, _Py_LOCKED)) {
  ------------------
  |  |   10|      2|#define _Py_LOCKED      1
  ------------------
  |  Branch (376:17): [True: 0, False: 2]
  ------------------
  377|      0|                continue;
  378|      0|            }
  379|      2|            int res = fn(arg);
  380|      2|            return unlock_once(flag, res);
  381|      2|        }
  382|       |
  383|      0|        if (v == _Py_ONCE_INITIALIZED) {
  ------------------
  |  |   18|      0|#define _Py_ONCE_INITIALIZED 4
  ------------------
  |  Branch (383:13): [True: 0, False: 0]
  ------------------
  384|      0|            return 0;
  385|      0|        }
  386|       |
  387|       |        // The once flag is initializing (locked).
  388|      0|        assert((v & _Py_LOCKED));
  ------------------
  |  Branch (388:9): [True: 0, False: 0]
  ------------------
  389|      0|        if (!(v & _Py_HAS_PARKED)) {
  ------------------
  |  |   17|      0|#define _Py_HAS_PARKED  2
  ------------------
  |  Branch (389:13): [True: 0, False: 0]
  ------------------
  390|       |            // We are the first waiter. Set the _Py_HAS_PARKED flag.
  391|      0|            uint8_t new_value = v | _Py_HAS_PARKED;
  ------------------
  |  |   17|      0|#define _Py_HAS_PARKED  2
  ------------------
  392|      0|            if (!_Py_atomic_compare_exchange_uint8(&flag->v, &v, new_value)) {
  ------------------
  |  Branch (392:17): [True: 0, False: 0]
  ------------------
  393|      0|                continue;
  394|      0|            }
  395|      0|            v = new_value;
  396|      0|        }
  397|       |
  398|       |        // Wait for initialization to finish.
  399|      0|        _PyParkingLot_Park(&flag->v, &v, sizeof(v), -1, NULL, 1);
  400|      0|        v = _Py_atomic_load_uint8(&flag->v);
  401|      0|    }
  402|      2|}
_PyRecursiveMutex_IsLockedByCurrentThread:
  412|    192|{
  413|    192|    return recursive_mutex_is_owned_by(m, PyThread_get_thread_ident_ex());
  414|    192|}
_PyRecursiveMutex_Lock:
  418|    192|{
  419|    192|    PyThread_ident_t thread = PyThread_get_thread_ident_ex();
  420|    192|    if (recursive_mutex_is_owned_by(m, thread)) {
  ------------------
  |  Branch (420:9): [True: 0, False: 192]
  ------------------
  421|      0|        m->level++;
  422|      0|        return;
  423|      0|    }
  424|    192|    PyMutex_Lock(&m->mutex);
  ------------------
  |  |   59|    192|#define PyMutex_Lock _PyMutex_Lock
  ------------------
  425|    192|    _Py_atomic_store_ullong_relaxed(&m->thread, thread);
  426|       |    assert(m->level == 0);
  ------------------
  |  Branch (426:5): [True: 192, False: 0]
  ------------------
  427|    192|}
_PyRecursiveMutex_LockTimed:
  431|    120|{
  432|    120|    PyThread_ident_t thread = PyThread_get_thread_ident_ex();
  433|    120|    if (recursive_mutex_is_owned_by(m, thread)) {
  ------------------
  |  Branch (433:9): [True: 0, False: 120]
  ------------------
  434|      0|        m->level++;
  435|      0|        return PY_LOCK_ACQUIRED;
  436|      0|    }
  437|    120|    PyLockStatus s = _PyMutex_LockTimed(&m->mutex, timeout, flags);
  438|    120|    if (s == PY_LOCK_ACQUIRED) {
  ------------------
  |  Branch (438:9): [True: 120, False: 0]
  ------------------
  439|    120|        _Py_atomic_store_ullong_relaxed(&m->thread, thread);
  440|    120|        assert(m->level == 0);
  ------------------
  |  Branch (440:9): [True: 120, False: 0]
  ------------------
  441|    120|    }
  442|    120|    return s;
  443|    120|}
_PyRecursiveMutex_Unlock:
  447|    192|{
  448|    192|    if (_PyRecursiveMutex_TryUnlock(m) < 0) {
  ------------------
  |  Branch (448:9): [True: 0, False: 192]
  ------------------
  449|      0|        Py_FatalError("unlocking a recursive mutex that is not "
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  450|      0|                      "owned by the current thread");
  451|      0|    }
  452|    192|}
_PyRecursiveMutex_TryUnlock:
  456|    312|{
  457|    312|    PyThread_ident_t thread = PyThread_get_thread_ident_ex();
  458|    312|    if (!recursive_mutex_is_owned_by(m, thread)) {
  ------------------
  |  Branch (458:9): [True: 0, False: 312]
  ------------------
  459|      0|        return -1;
  460|      0|    }
  461|    312|    if (m->level > 0) {
  ------------------
  |  Branch (461:9): [True: 0, False: 312]
  ------------------
  462|      0|        m->level--;
  463|      0|        return 0;
  464|      0|    }
  465|    312|    assert(m->level == 0);
  ------------------
  |  Branch (465:5): [True: 312, False: 0]
  ------------------
  466|    312|    _Py_atomic_store_ullong_relaxed(&m->thread, 0);
  467|    312|    PyMutex_Unlock(&m->mutex);
  ------------------
  |  |   70|    312|#define PyMutex_Unlock _PyMutex_Unlock
  ------------------
  468|    312|    return 0;
  469|    312|}
lock.c:unlock_once:
  348|      2|{
  349|       |    // On success (res=0), we set the state to _Py_ONCE_INITIALIZED.
  350|       |    // On failure (res=-1), we reset the state to _Py_UNLOCKED.
  351|      2|    uint8_t new_value;
  352|      2|    switch (res) {
  353|      0|        case -1: new_value = _Py_UNLOCKED; break;
  ------------------
  |  |    9|      0|#define _Py_UNLOCKED    0
  ------------------
  |  Branch (353:9): [True: 0, False: 2]
  ------------------
  354|      2|        case  0: new_value = _Py_ONCE_INITIALIZED; break;
  ------------------
  |  |   18|      2|#define _Py_ONCE_INITIALIZED 4
  ------------------
  |  Branch (354:9): [True: 2, False: 0]
  ------------------
  355|      0|        default: {
  ------------------
  |  Branch (355:9): [True: 0, False: 2]
  ------------------
  356|      0|            Py_FatalError("invalid result from _PyOnceFlag_CallOnce");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
  357|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  358|      0|            break;
  359|      0|        }
  360|      2|    }
  361|       |
  362|      2|    uint8_t old_value = _Py_atomic_exchange_uint8(&o->v, new_value);
  363|      2|    if ((old_value & _Py_HAS_PARKED) != 0) {
  ------------------
  |  |   17|      2|#define _Py_HAS_PARKED  2
  ------------------
  |  Branch (363:9): [True: 0, False: 2]
  ------------------
  364|       |        // wake up anyone waiting on the once flag
  365|      0|        _PyParkingLot_UnparkAll(&o->v);
  366|      0|    }
  367|      2|    return res;
  368|      2|}
lock.c:recursive_mutex_is_owned_by:
  406|    816|{
  407|    816|    return _Py_atomic_load_ullong_relaxed(&m->thread) == tid;
  408|    816|}

PyMarshal_ReadObjectFromString:
 1882|     32|{
 1883|     32|    RFILE rf;
 1884|     32|    PyObject *result;
 1885|     32|    rf.allow_code = 1;
 1886|     32|    rf.fp = NULL;
 1887|     32|    rf.readable = NULL;
 1888|     32|    rf.ptr = str;
 1889|     32|    rf.end = str + len;
 1890|     32|    rf.buf = NULL;
 1891|     32|    rf.depth = 0;
 1892|     32|    rf.refs = PyList_New(0);
 1893|     32|    if (rf.refs == NULL)
  ------------------
  |  Branch (1893:9): [True: 0, False: 32]
  ------------------
 1894|      0|        return NULL;
 1895|     32|    result = read_object(&rf);
 1896|     32|    Py_DECREF(rf.refs);
  ------------------
  |  |  430|     32|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     32|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     32|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1897|     32|    if (rf.buf != NULL)
  ------------------
  |  Branch (1897:9): [True: 0, False: 32]
  ------------------
 1898|      0|        PyMem_Free(rf.buf);
 1899|     32|    return result;
 1900|     32|}
PyMarshal_Init:
 2192|      2|{
 2193|      2|    return PyModuleDef_Init(&marshalmodule);
 2194|      2|}
marshal.c:r_short:
  937|     24|{
  938|     24|    short x = -1;
  939|     24|    const unsigned char *buffer;
  940|       |
  941|     24|    buffer = (const unsigned char *) r_string(2, p);
  942|     24|    if (buffer != NULL) {
  ------------------
  |  Branch (942:9): [True: 24, False: 0]
  ------------------
  943|     24|        x = buffer[0];
  944|     24|        x |= buffer[1] << 8;
  945|       |        /* Sign-extension, in case short greater than 16 bits */
  946|     24|        x |= -(x & 0x8000);
  947|     24|    }
  948|     24|    return x;
  949|     24|}
marshal.c:r_string:
  839|  43.3k|{
  840|  43.3k|    Py_ssize_t read = -1;
  841|       |
  842|  43.3k|    if (p->ptr != NULL) {
  ------------------
  |  Branch (842:9): [True: 43.3k, False: 0]
  ------------------
  843|       |        /* Fast path for loads() */
  844|  43.3k|        const char *res = p->ptr;
  845|  43.3k|        Py_ssize_t left = p->end - p->ptr;
  846|  43.3k|        if (left < n) {
  ------------------
  |  Branch (846:13): [True: 0, False: 43.3k]
  ------------------
  847|      0|            PyErr_SetString(PyExc_EOFError,
  848|      0|                            "marshal data too short");
  849|      0|            return NULL;
  850|      0|        }
  851|  43.3k|        p->ptr += n;
  852|  43.3k|        return res;
  853|  43.3k|    }
  854|      0|    if (p->buf == NULL) {
  ------------------
  |  Branch (854:9): [True: 0, False: 0]
  ------------------
  855|      0|        p->buf = PyMem_Malloc(n);
  856|      0|        if (p->buf == NULL) {
  ------------------
  |  Branch (856:13): [True: 0, False: 0]
  ------------------
  857|      0|            PyErr_NoMemory();
  858|      0|            return NULL;
  859|      0|        }
  860|      0|        p->buf_size = n;
  861|      0|    }
  862|      0|    else if (p->buf_size < n) {
  ------------------
  |  Branch (862:14): [True: 0, False: 0]
  ------------------
  863|      0|        char *tmp = PyMem_Realloc(p->buf, n);
  864|      0|        if (tmp == NULL) {
  ------------------
  |  Branch (864:13): [True: 0, False: 0]
  ------------------
  865|      0|            PyErr_NoMemory();
  866|      0|            return NULL;
  867|      0|        }
  868|      0|        p->buf = tmp;
  869|      0|        p->buf_size = n;
  870|      0|    }
  871|       |
  872|      0|    if (!p->readable) {
  ------------------
  |  Branch (872:9): [True: 0, False: 0]
  ------------------
  873|      0|        assert(p->fp != NULL);
  ------------------
  |  Branch (873:9): [True: 0, False: 0]
  ------------------
  874|      0|        read = fread(p->buf, 1, n, p->fp);
  875|      0|    }
  876|      0|    else {
  877|      0|        PyObject *res, *mview;
  878|      0|        Py_buffer buf;
  879|       |
  880|      0|        if (PyBuffer_FillInfo(&buf, NULL, p->buf, n, 0, PyBUF_CONTIG) == -1)
  ------------------
  |  |  124|      0|#define PyBUF_CONTIG (PyBUF_ND | PyBUF_WRITABLE)
  |  |  ------------------
  |  |  |  |  117|      0|#define PyBUF_ND 0x0008
  |  |  ------------------
  |  |               #define PyBUF_CONTIG (PyBUF_ND | PyBUF_WRITABLE)
  |  |  ------------------
  |  |  |  |  109|      0|#define PyBUF_WRITABLE 0x0001
  |  |  ------------------
  ------------------
  |  Branch (880:13): [True: 0, False: 0]
  ------------------
  881|      0|            return NULL;
  882|      0|        mview = PyMemoryView_FromBuffer(&buf);
  883|      0|        if (mview == NULL)
  ------------------
  |  Branch (883:13): [True: 0, False: 0]
  ------------------
  884|      0|            return NULL;
  885|       |
  886|      0|        res = _PyObject_CallMethod(p->readable, &_Py_ID(readinto), "N", mview);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  887|      0|        if (res != NULL) {
  ------------------
  |  Branch (887:13): [True: 0, False: 0]
  ------------------
  888|      0|            read = PyNumber_AsSsize_t(res, PyExc_ValueError);
  889|      0|            Py_DECREF(res);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  890|      0|        }
  891|      0|    }
  892|      0|    if (read != n) {
  ------------------
  |  Branch (892:9): [True: 0, False: 0]
  ------------------
  893|      0|        if (!PyErr_Occurred()) {
  ------------------
  |  Branch (893:13): [True: 0, False: 0]
  ------------------
  894|      0|            if (read > n)
  ------------------
  |  Branch (894:17): [True: 0, False: 0]
  ------------------
  895|      0|                PyErr_Format(PyExc_ValueError,
  896|      0|                             "read() returned too much data: "
  897|      0|                             "%zd bytes requested, %zd returned",
  898|      0|                             n, read);
  899|      0|            else
  900|      0|                PyErr_SetString(PyExc_EOFError,
  901|      0|                                "EOF read where not expected");
  902|      0|        }
  903|      0|        return NULL;
  904|      0|    }
  905|      0|    return p->buf;
  906|      0|}
marshal.c:r_long:
  953|  29.7k|{
  954|  29.7k|    long x = -1;
  955|  29.7k|    const unsigned char *buffer;
  956|       |
  957|  29.7k|    buffer = (const unsigned char *) r_string(4, p);
  958|  29.7k|    if (buffer != NULL) {
  ------------------
  |  Branch (958:9): [True: 29.7k, False: 0]
  ------------------
  959|  29.7k|        x = buffer[0];
  960|  29.7k|        x |= (long)buffer[1] << 8;
  961|  29.7k|        x |= (long)buffer[2] << 16;
  962|  29.7k|        x |= (long)buffer[3] << 24;
  963|  29.7k|#if SIZEOF_LONG > 4
  964|       |        /* Sign extension for 64-bit machines */
  965|  29.7k|        x |= -(x & 0x80000000L);
  966|  29.7k|#endif
  967|  29.7k|    }
  968|  29.7k|    return x;
  969|  29.7k|}
marshal.c:read_object:
 1761|     32|{
 1762|     32|    PyObject *v;
 1763|     32|    if (PyErr_Occurred()) {
  ------------------
  |  Branch (1763:9): [True: 0, False: 32]
  ------------------
 1764|      0|        fprintf(stderr, "XXX readobject called with exception set\n");
 1765|      0|        return NULL;
 1766|      0|    }
 1767|     32|    if (p->ptr && p->end) {
  ------------------
  |  Branch (1767:9): [True: 32, False: 0]
  |  Branch (1767:19): [True: 32, False: 0]
  ------------------
 1768|     32|        if (PySys_Audit("marshal.loads", "y#", p->ptr, (Py_ssize_t)(p->end - p->ptr)) < 0) {
  ------------------
  |  Branch (1768:13): [True: 0, False: 32]
  ------------------
 1769|      0|            return NULL;
 1770|      0|        }
 1771|     32|    } else if (p->fp || p->readable) {
  ------------------
  |  Branch (1771:16): [True: 0, False: 0]
  |  Branch (1771:25): [True: 0, False: 0]
  ------------------
 1772|      0|        if (PySys_Audit("marshal.load", NULL) < 0) {
  ------------------
  |  Branch (1772:13): [True: 0, False: 0]
  ------------------
 1773|      0|            return NULL;
 1774|      0|        }
 1775|      0|    }
 1776|     32|    v = r_object(p);
 1777|     32|    if (v == NULL && !PyErr_Occurred())
  ------------------
  |  Branch (1777:9): [True: 0, False: 32]
  |  Branch (1777:22): [True: 0, False: 0]
  ------------------
 1778|      0|        PyErr_SetString(PyExc_TypeError, "NULL object in marshal data for object");
 1779|     32|    return v;
 1780|     32|}
marshal.c:r_object:
 1174|  35.0k|{
 1175|       |    /* NULL is a valid return value, it does not necessarily means that
 1176|       |       an exception is set. */
 1177|  35.0k|    PyObject *v, *v2;
 1178|  35.0k|    Py_ssize_t idx = 0;
 1179|  35.0k|    long i, n;
 1180|  35.0k|    int type, code = r_byte(p);
 1181|  35.0k|    int flag, is_interned = 0;
 1182|  35.0k|    PyObject *retval = NULL;
 1183|       |
 1184|  35.0k|    if (code == EOF) {
  ------------------
  |  Branch (1184:9): [True: 0, False: 35.0k]
  ------------------
 1185|      0|        if (PyErr_ExceptionMatches(PyExc_EOFError)) {
  ------------------
  |  Branch (1185:13): [True: 0, False: 0]
  ------------------
 1186|      0|            PyErr_SetString(PyExc_EOFError,
 1187|      0|                            "EOF read where object expected");
 1188|      0|        }
 1189|      0|        return NULL;
 1190|      0|    }
 1191|       |
 1192|  35.0k|    p->depth++;
 1193|       |
 1194|  35.0k|    if (p->depth > MAX_MARSHAL_STACK_DEPTH) {
  ------------------
  |  |   54|  35.0k|#  define MAX_MARSHAL_STACK_DEPTH 2000
  ------------------
  |  Branch (1194:9): [True: 0, False: 35.0k]
  ------------------
 1195|      0|        p->depth--;
 1196|      0|        PyErr_SetString(PyExc_ValueError, "recursion limit exceeded");
 1197|      0|        return NULL;
 1198|      0|    }
 1199|       |
 1200|  35.0k|    flag = code & FLAG_REF;
  ------------------
  |  |  100|  35.0k|#define FLAG_REF                '\x80' /* with a type, add obj to index */
  ------------------
 1201|  35.0k|    type = code & ~FLAG_REF;
  ------------------
  |  |  100|  35.0k|#define FLAG_REF                '\x80' /* with a type, add obj to index */
  ------------------
 1202|       |
 1203|  35.0k|#define R_REF(O) do{\
 1204|  35.0k|    if (flag) \
 1205|  35.0k|        O = r_ref(O, flag, p);\
 1206|  35.0k|} while (0)
 1207|       |
 1208|  35.0k|    switch (type) {
 1209|       |
 1210|      0|    case TYPE_NULL:
  ------------------
  |  |   58|      0|#define TYPE_NULL               '0'
  ------------------
  |  Branch (1210:5): [True: 0, False: 35.0k]
  ------------------
 1211|      0|        break;
 1212|       |
 1213|    244|    case TYPE_NONE:
  ------------------
  |  |   59|    244|#define TYPE_NONE               'N'
  ------------------
  |  Branch (1213:5): [True: 244, False: 34.7k]
  ------------------
 1214|    244|        retval = Py_None;
  ------------------
  |  |  616|    244|#  define Py_None (&_Py_NoneStruct)
  ------------------
 1215|    244|        break;
 1216|       |
 1217|      0|    case TYPE_STOPITER:
  ------------------
  |  |   62|      0|#define TYPE_STOPITER           'S'
  ------------------
  |  Branch (1217:5): [True: 0, False: 35.0k]
  ------------------
 1218|      0|        retval = Py_NewRef(PyExc_StopIteration);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1219|      0|        break;
 1220|       |
 1221|      2|    case TYPE_ELLIPSIS:
  ------------------
  |  |   63|      2|#define TYPE_ELLIPSIS           '.'
  ------------------
  |  Branch (1221:5): [True: 2, False: 35.0k]
  ------------------
 1222|      2|        retval = Py_Ellipsis;
  ------------------
  |  |   14|      2|#  define Py_Ellipsis (&_Py_EllipsisObject)
  ------------------
 1223|      2|        break;
 1224|       |
 1225|     24|    case TYPE_FALSE:
  ------------------
  |  |   60|     24|#define TYPE_FALSE              'F'
  ------------------
  |  Branch (1225:5): [True: 24, False: 35.0k]
  ------------------
 1226|     24|        retval = Py_False;
  ------------------
  |  |   25|     24|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|     24|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     24|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1227|     24|        break;
 1228|       |
 1229|     26|    case TYPE_TRUE:
  ------------------
  |  |   61|     26|#define TYPE_TRUE               'T'
  ------------------
  |  Branch (1229:5): [True: 26, False: 35.0k]
  ------------------
 1230|     26|        retval = Py_True;
  ------------------
  |  |   26|     26|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1231|     26|        break;
 1232|       |
 1233|    306|    case TYPE_INT:
  ------------------
  |  |   90|    306|#define TYPE_INT                'i'  // All versions. 32-bit encoding.
  ------------------
  |  Branch (1233:5): [True: 306, False: 34.7k]
  ------------------
 1234|    306|        n = r_long(p);
 1235|    306|        if (n == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1235:13): [True: 6, False: 300]
  |  Branch (1235:24): [True: 0, False: 6]
  ------------------
 1236|      0|            break;
 1237|      0|        }
 1238|    306|        retval = PyLong_FromLong(n);
 1239|    306|        R_REF(retval);
  ------------------
  |  | 1203|    306|#define R_REF(O) do{\
  |  | 1204|    306|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 212, False: 94]
  |  |  ------------------
  |  | 1205|    306|        O = r_ref(O, flag, p);\
  |  | 1206|    306|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 306]
  |  |  ------------------
  ------------------
 1240|    306|        break;
 1241|       |
 1242|      0|    case TYPE_INT64:
  ------------------
  |  |   96|      0|#define TYPE_INT64              'I'  // Not generated any more.
  ------------------
  |  Branch (1242:5): [True: 0, False: 35.0k]
  ------------------
 1243|      0|        retval = r_long64(p);
 1244|      0|        R_REF(retval);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1245|      0|        break;
 1246|       |
 1247|      8|    case TYPE_LONG:
  ------------------
  |  |   66|      8|#define TYPE_LONG               'l'  // See also TYPE_INT.
  ------------------
  |  Branch (1247:5): [True: 8, False: 35.0k]
  ------------------
 1248|      8|        retval = r_PyLong(p);
 1249|      8|        R_REF(retval);
  ------------------
  |  | 1203|      8|#define R_REF(O) do{\
  |  | 1204|      8|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 2, False: 6]
  |  |  ------------------
  |  | 1205|      8|        O = r_ref(O, flag, p);\
  |  | 1206|      8|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 8]
  |  |  ------------------
  ------------------
 1250|      8|        break;
 1251|       |
 1252|      0|    case TYPE_FLOAT:
  ------------------
  |  |   95|      0|#define TYPE_FLOAT              'f'  // Generated for version 0 only.
  ------------------
  |  Branch (1252:5): [True: 0, False: 35.0k]
  ------------------
 1253|      0|        {
 1254|      0|            double x = r_float_str(p);
 1255|      0|            if (x == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (1255:17): [True: 0, False: 0]
  |  Branch (1255:30): [True: 0, False: 0]
  ------------------
 1256|      0|                break;
 1257|      0|            retval = PyFloat_FromDouble(x);
 1258|      0|            R_REF(retval);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1259|      0|            break;
 1260|      0|        }
 1261|       |
 1262|      0|    case TYPE_BINARY_FLOAT:
  ------------------
  |  |   64|      0|#define TYPE_BINARY_FLOAT       'g'  // Version 0 uses TYPE_FLOAT instead.
  ------------------
  |  Branch (1262:5): [True: 0, False: 35.0k]
  ------------------
 1263|      0|        {
 1264|      0|            double x = r_float_bin(p);
 1265|      0|            if (x == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (1265:17): [True: 0, False: 0]
  |  Branch (1265:30): [True: 0, False: 0]
  ------------------
 1266|      0|                break;
 1267|      0|            retval = PyFloat_FromDouble(x);
 1268|      0|            R_REF(retval);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1269|      0|            break;
 1270|      0|        }
 1271|       |
 1272|      0|    case TYPE_COMPLEX:
  ------------------
  |  |   94|      0|#define TYPE_COMPLEX            'x'  // Generated for version 0 only.
  ------------------
  |  Branch (1272:5): [True: 0, False: 35.0k]
  ------------------
 1273|      0|        {
 1274|      0|            Py_complex c;
 1275|      0|            c.real = r_float_str(p);
 1276|      0|            if (c.real == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (1276:17): [True: 0, False: 0]
  |  Branch (1276:35): [True: 0, False: 0]
  ------------------
 1277|      0|                break;
 1278|      0|            c.imag = r_float_str(p);
 1279|      0|            if (c.imag == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (1279:17): [True: 0, False: 0]
  |  Branch (1279:35): [True: 0, False: 0]
  ------------------
 1280|      0|                break;
 1281|      0|            retval = PyComplex_FromCComplex(c);
 1282|      0|            R_REF(retval);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1283|      0|            break;
 1284|      0|        }
 1285|       |
 1286|      0|    case TYPE_BINARY_COMPLEX:
  ------------------
  |  |   65|      0|#define TYPE_BINARY_COMPLEX     'y'  // Version 0 uses TYPE_COMPLEX instead.
  ------------------
  |  Branch (1286:5): [True: 0, False: 35.0k]
  ------------------
 1287|      0|        {
 1288|      0|            Py_complex c;
 1289|      0|            c.real = r_float_bin(p);
 1290|      0|            if (c.real == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (1290:17): [True: 0, False: 0]
  |  Branch (1290:35): [True: 0, False: 0]
  ------------------
 1291|      0|                break;
 1292|      0|            c.imag = r_float_bin(p);
 1293|      0|            if (c.imag == -1.0 && PyErr_Occurred())
  ------------------
  |  Branch (1293:17): [True: 0, False: 0]
  |  Branch (1293:35): [True: 0, False: 0]
  ------------------
 1294|      0|                break;
 1295|      0|            retval = PyComplex_FromCComplex(c);
 1296|      0|            R_REF(retval);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1297|      0|            break;
 1298|      0|        }
 1299|       |
 1300|  4.62k|    case TYPE_STRING:
  ------------------
  |  |   67|  4.62k|#define TYPE_STRING             's'  // Bytes. (Name comes from Python 2.)
  ------------------
  |  Branch (1300:5): [True: 4.62k, False: 30.4k]
  ------------------
 1301|  4.62k|        {
 1302|  4.62k|            const char *ptr;
 1303|  4.62k|            n = r_long(p);
 1304|  4.62k|            if (n < 0 || n > SIZE32_MAX) {
  ------------------
  |  |  212|  4.62k|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
  |  Branch (1304:17): [True: 0, False: 4.62k]
  |  Branch (1304:26): [True: 0, False: 4.62k]
  ------------------
 1305|      0|                if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1305:21): [True: 0, False: 0]
  ------------------
 1306|      0|                    PyErr_SetString(PyExc_ValueError,
 1307|      0|                        "bad marshal data (bytes object size out of range)");
 1308|      0|                }
 1309|      0|                break;
 1310|      0|            }
 1311|  4.62k|            v = PyBytes_FromStringAndSize((char *)NULL, n);
 1312|  4.62k|            if (v == NULL)
  ------------------
  |  Branch (1312:17): [True: 0, False: 4.62k]
  ------------------
 1313|      0|                break;
 1314|  4.62k|            ptr = r_string(n, p);
 1315|  4.62k|            if (ptr == NULL) {
  ------------------
  |  Branch (1315:17): [True: 0, False: 4.62k]
  ------------------
 1316|      0|                Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1317|      0|                break;
 1318|      0|            }
 1319|  4.62k|            memcpy(PyBytes_AS_STRING(v), ptr, n);
  ------------------
  |  |   27|  4.62k|#define PyBytes_AS_STRING(op) PyBytes_AS_STRING(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  4.62k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  4.62k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1320|  4.62k|            retval = v;
 1321|  4.62k|            R_REF(retval);
  ------------------
  |  | 1203|  4.62k|#define R_REF(O) do{\
  |  | 1204|  4.62k|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 1.65k, False: 2.96k]
  |  |  ------------------
  |  | 1205|  4.62k|        O = r_ref(O, flag, p);\
  |  | 1206|  4.62k|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 4.62k]
  |  |  ------------------
  ------------------
 1322|  4.62k|            break;
 1323|  4.62k|        }
 1324|       |
 1325|      0|    case TYPE_ASCII_INTERNED:
  ------------------
  |  |   85|      0|#define TYPE_ASCII_INTERNED     'A'
  ------------------
  |  Branch (1325:5): [True: 0, False: 35.0k]
  ------------------
 1326|      0|        is_interned = 1;
 1327|      0|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|      0|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 1328|    138|    case TYPE_ASCII:
  ------------------
  |  |   84|    138|#define TYPE_ASCII              'a'
  ------------------
  |  Branch (1328:5): [True: 138, False: 34.8k]
  ------------------
 1329|    138|        n = r_long(p);
 1330|    138|        if (n < 0 || n > SIZE32_MAX) {
  ------------------
  |  |  212|    138|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
  |  Branch (1330:13): [True: 0, False: 138]
  |  Branch (1330:22): [True: 0, False: 138]
  ------------------
 1331|      0|            if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1331:17): [True: 0, False: 0]
  ------------------
 1332|      0|                PyErr_SetString(PyExc_ValueError,
 1333|      0|                    "bad marshal data (string size out of range)");
 1334|      0|            }
 1335|      0|            break;
 1336|      0|        }
 1337|    138|        goto _read_ascii;
 1338|       |
 1339|  7.58k|    case TYPE_SHORT_ASCII_INTERNED:
  ------------------
  |  |   87|  7.58k|#define TYPE_SHORT_ASCII_INTERNED 'Z'
  ------------------
  |  Branch (1339:5): [True: 7.58k, False: 27.4k]
  ------------------
 1340|  7.58k|        is_interned = 1;
 1341|  7.58k|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|  7.58k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 1342|  8.82k|    case TYPE_SHORT_ASCII:
  ------------------
  |  |   86|  8.82k|#define TYPE_SHORT_ASCII        'z'
  ------------------
  |  Branch (1342:5): [True: 1.24k, False: 33.7k]
  ------------------
 1343|  8.82k|        n = r_byte(p);
 1344|  8.82k|        if (n == EOF) {
  ------------------
  |  Branch (1344:13): [True: 0, False: 8.82k]
  ------------------
 1345|      0|            break;
 1346|      0|        }
 1347|  8.96k|    _read_ascii:
 1348|  8.96k|        {
 1349|  8.96k|            const char *ptr;
 1350|  8.96k|            ptr = r_string(n, p);
 1351|  8.96k|            if (ptr == NULL)
  ------------------
  |  Branch (1351:17): [True: 0, False: 8.96k]
  ------------------
 1352|      0|                break;
 1353|  8.96k|            v = PyUnicode_FromKindAndData(PyUnicode_1BYTE_KIND, ptr, n);
 1354|  8.96k|            if (v == NULL)
  ------------------
  |  Branch (1354:17): [True: 0, False: 8.96k]
  ------------------
 1355|      0|                break;
 1356|  8.96k|            if (is_interned) {
  ------------------
  |  Branch (1356:17): [True: 7.58k, False: 1.38k]
  ------------------
 1357|       |                // marshal is meant to serialize .pyc files with code
 1358|       |                // objects, and code-related strings are currently immortal.
 1359|  7.58k|                PyInterpreterState *interp = _PyInterpreterState_GET();
 1360|  7.58k|                _PyUnicode_InternImmortal(interp, &v);
 1361|  7.58k|            }
 1362|  8.96k|            retval = v;
 1363|  8.96k|            R_REF(retval);
  ------------------
  |  | 1203|  8.96k|#define R_REF(O) do{\
  |  | 1204|  8.96k|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 7.64k, False: 1.32k]
  |  |  ------------------
  |  | 1205|  8.96k|        O = r_ref(O, flag, p);\
  |  | 1206|  8.96k|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 8.96k]
  |  |  ------------------
  ------------------
 1364|  8.96k|            break;
 1365|  8.96k|        }
 1366|       |
 1367|      0|    case TYPE_INTERNED:
  ------------------
  |  |   83|      0|#define TYPE_INTERNED           't' // Version 1+
  ------------------
  |  Branch (1367:5): [True: 0, False: 35.0k]
  ------------------
 1368|      0|        is_interned = 1;
 1369|      0|        _Py_FALLTHROUGH;
  ------------------
  |  |  644|      0|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 1370|      2|    case TYPE_UNICODE:
  ------------------
  |  |   73|      2|#define TYPE_UNICODE            'u'
  ------------------
  |  Branch (1370:5): [True: 2, False: 35.0k]
  ------------------
 1371|      2|        {
 1372|      2|        const char *buffer;
 1373|       |
 1374|      2|        n = r_long(p);
 1375|      2|        if (n < 0 || n > SIZE32_MAX) {
  ------------------
  |  |  212|      2|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
  |  Branch (1375:13): [True: 0, False: 2]
  |  Branch (1375:22): [True: 0, False: 2]
  ------------------
 1376|      0|            if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1376:17): [True: 0, False: 0]
  ------------------
 1377|      0|                PyErr_SetString(PyExc_ValueError,
 1378|      0|                    "bad marshal data (string size out of range)");
 1379|      0|            }
 1380|      0|            break;
 1381|      0|        }
 1382|      2|        if (n != 0) {
  ------------------
  |  Branch (1382:13): [True: 2, False: 0]
  ------------------
 1383|      2|            buffer = r_string(n, p);
 1384|      2|            if (buffer == NULL)
  ------------------
  |  Branch (1384:17): [True: 0, False: 2]
  ------------------
 1385|      0|                break;
 1386|      2|            v = PyUnicode_DecodeUTF8(buffer, n, "surrogatepass");
 1387|      2|        }
 1388|      0|        else {
 1389|      0|            v = Py_GetConstant(Py_CONSTANT_EMPTY_STR);
  ------------------
  |  |  597|      0|#define Py_CONSTANT_EMPTY_STR 7
  ------------------
 1390|      0|        }
 1391|      2|        if (v == NULL)
  ------------------
  |  Branch (1391:13): [True: 0, False: 2]
  ------------------
 1392|      0|            break;
 1393|      2|        if (is_interned) {
  ------------------
  |  Branch (1393:13): [True: 0, False: 2]
  ------------------
 1394|       |            // marshal is meant to serialize .pyc files with code
 1395|       |            // objects, and code-related strings are currently immortal.
 1396|      0|            PyInterpreterState *interp = _PyInterpreterState_GET();
 1397|      0|            _PyUnicode_InternImmortal(interp, &v);
 1398|      0|        }
 1399|      2|        retval = v;
 1400|      2|        R_REF(retval);
  ------------------
  |  | 1203|      2|#define R_REF(O) do{\
  |  | 1204|      2|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 2]
  |  |  ------------------
  |  | 1205|      2|        O = r_ref(O, flag, p);\
  |  | 1206|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1401|      2|        break;
 1402|      2|        }
 1403|       |
 1404|  3.51k|    case TYPE_SMALL_TUPLE:
  ------------------
  |  |   91|  3.51k|#define TYPE_SMALL_TUPLE        ')'  // Version 4+
  ------------------
  |  Branch (1404:5): [True: 3.51k, False: 31.5k]
  ------------------
 1405|  3.51k|        n = r_byte(p);
 1406|  3.51k|        if (n == EOF) {
  ------------------
  |  Branch (1406:13): [True: 0, False: 3.51k]
  ------------------
 1407|      0|            break;
 1408|      0|        }
 1409|  3.51k|        goto _read_tuple;
 1410|  3.51k|    case TYPE_TUPLE:
  ------------------
  |  |   68|      2|#define TYPE_TUPLE              '('  // See also TYPE_SMALL_TUPLE.
  ------------------
  |  Branch (1410:5): [True: 2, False: 35.0k]
  ------------------
 1411|      2|        n = r_long(p);
 1412|      2|        if (n < 0 || n > SIZE32_MAX) {
  ------------------
  |  |  212|      2|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
  |  Branch (1412:13): [True: 0, False: 2]
  |  Branch (1412:22): [True: 0, False: 2]
  ------------------
 1413|      0|            if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1413:17): [True: 0, False: 0]
  ------------------
 1414|      0|                PyErr_SetString(PyExc_ValueError,
 1415|      0|                    "bad marshal data (tuple size out of range)");
 1416|      0|            }
 1417|      0|            break;
 1418|      0|        }
 1419|  3.51k|    _read_tuple:
 1420|  3.51k|        v = PyTuple_New(n);
 1421|  3.51k|        R_REF(v);
  ------------------
  |  | 1203|  3.51k|#define R_REF(O) do{\
  |  | 1204|  3.51k|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 396, False: 3.11k]
  |  |  ------------------
  |  | 1205|  3.51k|        O = r_ref(O, flag, p);\
  |  | 1206|  3.51k|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 3.51k]
  |  |  ------------------
  ------------------
 1422|  3.51k|        if (v == NULL)
  ------------------
  |  Branch (1422:13): [True: 0, False: 3.51k]
  ------------------
 1423|      0|            break;
 1424|       |
 1425|  23.3k|        for (i = 0; i < n; i++) {
  ------------------
  |  Branch (1425:21): [True: 19.8k, False: 3.51k]
  ------------------
 1426|  19.8k|            v2 = r_object(p);
 1427|  19.8k|            if ( v2 == NULL ) {
  ------------------
  |  Branch (1427:18): [True: 0, False: 19.8k]
  ------------------
 1428|      0|                if (!PyErr_Occurred())
  ------------------
  |  Branch (1428:21): [True: 0, False: 0]
  ------------------
 1429|      0|                    PyErr_SetString(PyExc_TypeError,
 1430|      0|                        "NULL object in marshal data for tuple");
 1431|      0|                Py_SETREF(v, NULL);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1432|      0|                break;
 1433|      0|            }
 1434|  19.8k|            PyTuple_SET_ITEM(v, i, v2);
  ------------------
  |  |   40|  19.8k|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  19.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  19.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|  19.8k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  19.8k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1435|  19.8k|        }
 1436|  3.51k|        retval = v;
 1437|  3.51k|        break;
 1438|       |
 1439|      0|    case TYPE_LIST:
  ------------------
  |  |   69|      0|#define TYPE_LIST               '['
  ------------------
  |  Branch (1439:5): [True: 0, False: 35.0k]
  ------------------
 1440|      0|        n = r_long(p);
 1441|      0|        if (n < 0 || n > SIZE32_MAX) {
  ------------------
  |  |  212|      0|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
  |  Branch (1441:13): [True: 0, False: 0]
  |  Branch (1441:22): [True: 0, False: 0]
  ------------------
 1442|      0|            if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1442:17): [True: 0, False: 0]
  ------------------
 1443|      0|                PyErr_SetString(PyExc_ValueError,
 1444|      0|                    "bad marshal data (list size out of range)");
 1445|      0|            }
 1446|      0|            break;
 1447|      0|        }
 1448|      0|        v = PyList_New(n);
 1449|      0|        R_REF(v);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1450|      0|        if (v == NULL)
  ------------------
  |  Branch (1450:13): [True: 0, False: 0]
  ------------------
 1451|      0|            break;
 1452|      0|        for (i = 0; i < n; i++) {
  ------------------
  |  Branch (1452:21): [True: 0, False: 0]
  ------------------
 1453|      0|            v2 = r_object(p);
 1454|      0|            if ( v2 == NULL ) {
  ------------------
  |  Branch (1454:18): [True: 0, False: 0]
  ------------------
 1455|      0|                if (!PyErr_Occurred())
  ------------------
  |  Branch (1455:21): [True: 0, False: 0]
  ------------------
 1456|      0|                    PyErr_SetString(PyExc_TypeError,
 1457|      0|                        "NULL object in marshal data for list");
 1458|      0|                Py_SETREF(v, NULL);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1459|      0|                break;
 1460|      0|            }
 1461|      0|            PyList_SET_ITEM(v, i, v2);
  ------------------
  |  |   50|      0|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1462|      0|        }
 1463|      0|        retval = v;
 1464|      0|        break;
 1465|       |
 1466|      0|    case TYPE_DICT:
  ------------------
  |  |   70|      0|#define TYPE_DICT               '{'
  ------------------
  |  Branch (1466:5): [True: 0, False: 35.0k]
  ------------------
 1467|      0|    case TYPE_FROZENDICT:
  ------------------
  |  |   71|      0|#define TYPE_FROZENDICT         '}'
  ------------------
  |  Branch (1467:5): [True: 0, False: 35.0k]
  ------------------
 1468|      0|        v = PyDict_New();
 1469|      0|        if (v == NULL) {
  ------------------
  |  Branch (1469:13): [True: 0, False: 0]
  ------------------
 1470|      0|            break;
 1471|      0|        }
 1472|      0|        if (type == TYPE_DICT) {
  ------------------
  |  |   70|      0|#define TYPE_DICT               '{'
  ------------------
  |  Branch (1472:13): [True: 0, False: 0]
  ------------------
 1473|      0|            R_REF(v);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1474|      0|        }
 1475|      0|        else {
 1476|      0|            idx = r_ref_reserve(flag, p);
 1477|      0|            if (idx < 0) {
  ------------------
  |  Branch (1477:17): [True: 0, False: 0]
  ------------------
 1478|      0|                Py_CLEAR(v);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1479|      0|                break;
 1480|      0|            }
 1481|      0|        }
 1482|      0|        for (;;) {
 1483|      0|            PyObject *key, *val;
 1484|      0|            key = r_object(p);
 1485|      0|            if (key == NULL)
  ------------------
  |  Branch (1485:17): [True: 0, False: 0]
  ------------------
 1486|      0|                break;
 1487|      0|            val = r_object(p);
 1488|      0|            if (val == NULL) {
  ------------------
  |  Branch (1488:17): [True: 0, False: 0]
  ------------------
 1489|      0|                Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1490|      0|                break;
 1491|      0|            }
 1492|      0|            if (PyDict_SetItem(v, key, val) < 0) {
  ------------------
  |  Branch (1492:17): [True: 0, False: 0]
  ------------------
 1493|      0|                Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1494|      0|                Py_DECREF(val);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1495|      0|                break;
 1496|      0|            }
 1497|      0|            Py_DECREF(key);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1498|      0|            Py_DECREF(val);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1499|      0|        }
 1500|      0|        if (PyErr_Occurred()) {
  ------------------
  |  Branch (1500:13): [True: 0, False: 0]
  ------------------
 1501|      0|            Py_CLEAR(v);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1502|      0|        }
 1503|      0|        if (type == TYPE_FROZENDICT && v != NULL) {
  ------------------
  |  |   71|      0|#define TYPE_FROZENDICT         '}'
  ------------------
  |  Branch (1503:13): [True: 0, False: 0]
  |  Branch (1503:40): [True: 0, False: 0]
  ------------------
 1504|      0|            Py_SETREF(v, PyFrozenDict_New(v));
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1505|      0|        }
 1506|      0|        retval = v;
 1507|      0|        break;
 1508|       |
 1509|      0|    case TYPE_SET:
  ------------------
  |  |   76|      0|#define TYPE_SET                '<'
  ------------------
  |  Branch (1509:5): [True: 0, False: 35.0k]
  ------------------
 1510|      8|    case TYPE_FROZENSET:
  ------------------
  |  |   77|      8|#define TYPE_FROZENSET          '>'
  ------------------
  |  Branch (1510:5): [True: 8, False: 35.0k]
  ------------------
 1511|      8|        n = r_long(p);
 1512|      8|        if (n < 0 || n > SIZE32_MAX) {
  ------------------
  |  |  212|      8|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
  |  Branch (1512:13): [True: 0, False: 8]
  |  Branch (1512:22): [True: 0, False: 8]
  ------------------
 1513|      0|            if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1513:17): [True: 0, False: 0]
  ------------------
 1514|      0|                PyErr_SetString(PyExc_ValueError,
 1515|      0|                    "bad marshal data (set size out of range)");
 1516|      0|            }
 1517|      0|            break;
 1518|      0|        }
 1519|       |
 1520|      8|        if (n == 0 && type == TYPE_FROZENSET) {
  ------------------
  |  |   77|      0|#define TYPE_FROZENSET          '>'
  ------------------
  |  Branch (1520:13): [True: 0, False: 8]
  |  Branch (1520:23): [True: 0, False: 0]
  ------------------
 1521|       |            /* call frozenset() to get the empty frozenset singleton */
 1522|      0|            v = _PyObject_CallNoArgs((PyObject*)&PyFrozenSet_Type);
 1523|      0|            if (v == NULL)
  ------------------
  |  Branch (1523:17): [True: 0, False: 0]
  ------------------
 1524|      0|                break;
 1525|      0|            R_REF(v);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1526|      0|            retval = v;
 1527|      0|        }
 1528|      8|        else {
 1529|      8|            v = (type == TYPE_SET) ? PySet_New(NULL) : PyFrozenSet_New(NULL);
  ------------------
  |  |   76|      8|#define TYPE_SET                '<'
  ------------------
  |  Branch (1529:17): [True: 0, False: 8]
  ------------------
 1530|      8|            if (type == TYPE_SET) {
  ------------------
  |  |   76|      8|#define TYPE_SET                '<'
  ------------------
  |  Branch (1530:17): [True: 0, False: 8]
  ------------------
 1531|      0|                R_REF(v);
  ------------------
  |  | 1203|      0|#define R_REF(O) do{\
  |  | 1204|      0|    if (flag) \
  |  |  ------------------
  |  |  |  Branch (1204:9): [True: 0, False: 0]
  |  |  ------------------
  |  | 1205|      0|        O = r_ref(O, flag, p);\
  |  | 1206|      0|} while (0)
  |  |  ------------------
  |  |  |  Branch (1206:10): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1532|      8|            } else {
 1533|       |                /* must use delayed registration of frozensets because they must
 1534|       |                 * be init with a refcount of 1
 1535|       |                 */
 1536|      8|                idx = r_ref_reserve(flag, p);
 1537|      8|                if (idx < 0)
  ------------------
  |  Branch (1537:21): [True: 0, False: 8]
  ------------------
 1538|      0|                    Py_CLEAR(v); /* signal error */
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1539|      8|            }
 1540|      8|            if (v == NULL)
  ------------------
  |  Branch (1540:17): [True: 0, False: 8]
  ------------------
 1541|      0|                break;
 1542|       |
 1543|     34|            for (i = 0; i < n; i++) {
  ------------------
  |  Branch (1543:25): [True: 26, False: 8]
  ------------------
 1544|     26|                v2 = r_object(p);
 1545|     26|                if ( v2 == NULL ) {
  ------------------
  |  Branch (1545:22): [True: 0, False: 26]
  ------------------
 1546|      0|                    if (!PyErr_Occurred())
  ------------------
  |  Branch (1546:25): [True: 0, False: 0]
  ------------------
 1547|      0|                        PyErr_SetString(PyExc_TypeError,
 1548|      0|                            "NULL object in marshal data for set");
 1549|      0|                    Py_SETREF(v, NULL);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1550|      0|                    break;
 1551|      0|                }
 1552|     26|                if (PySet_Add(v, v2) == -1) {
  ------------------
  |  Branch (1552:21): [True: 0, False: 26]
  ------------------
 1553|      0|                    Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1554|      0|                    Py_DECREF(v2);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1555|      0|                    v = NULL;
 1556|      0|                    break;
 1557|      0|                }
 1558|     26|                Py_DECREF(v2);
  ------------------
  |  |  430|     26|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1559|     26|            }
 1560|      8|            if (type != TYPE_SET)
  ------------------
  |  |   76|      8|#define TYPE_SET                '<'
  ------------------
  |  Branch (1560:17): [True: 8, False: 0]
  ------------------
 1561|      8|                v = r_ref_insert(v, idx, flag, p);
 1562|      8|            retval = v;
 1563|      8|        }
 1564|      8|        break;
 1565|       |
 1566|  1.48k|    case TYPE_CODE:
  ------------------
  |  |   72|  1.48k|#define TYPE_CODE               'c'
  ------------------
  |  Branch (1566:5): [True: 1.48k, False: 33.5k]
  ------------------
 1567|  1.48k|        {
 1568|  1.48k|            int argcount;
 1569|  1.48k|            int posonlyargcount;
 1570|  1.48k|            int kwonlyargcount;
 1571|  1.48k|            int stacksize;
 1572|  1.48k|            int flags;
 1573|  1.48k|            PyObject *code = NULL;
 1574|  1.48k|            PyObject *consts = NULL;
 1575|  1.48k|            PyObject *names = NULL;
 1576|  1.48k|            PyObject *localsplusnames = NULL;
 1577|  1.48k|            PyObject *localspluskinds = NULL;
 1578|  1.48k|            PyObject *filename = NULL;
 1579|  1.48k|            PyObject *name = NULL;
 1580|  1.48k|            PyObject *qualname = NULL;
 1581|  1.48k|            int firstlineno;
 1582|  1.48k|            PyObject* linetable = NULL;
 1583|  1.48k|            PyObject *exceptiontable = NULL;
 1584|       |
 1585|  1.48k|            if (!p->allow_code) {
  ------------------
  |  Branch (1585:17): [True: 0, False: 1.48k]
  ------------------
 1586|      0|                PyErr_SetString(PyExc_ValueError,
 1587|      0|                                "unmarshalling code objects is disallowed");
 1588|      0|                break;
 1589|      0|            }
 1590|  1.48k|            idx = r_ref_reserve(flag, p);
 1591|  1.48k|            if (idx < 0)
  ------------------
  |  Branch (1591:17): [True: 0, False: 1.48k]
  ------------------
 1592|      0|                break;
 1593|       |
 1594|  1.48k|            v = NULL;
 1595|       |
 1596|       |            /* XXX ignore long->int overflows for now */
 1597|  1.48k|            argcount = (int)r_long(p);
 1598|  1.48k|            if (argcount == -1 && PyErr_Occurred())
  ------------------
  |  Branch (1598:17): [True: 0, False: 1.48k]
  |  Branch (1598:35): [True: 0, False: 0]
  ------------------
 1599|      0|                goto code_error;
 1600|  1.48k|            posonlyargcount = (int)r_long(p);
 1601|  1.48k|            if (posonlyargcount == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1601:17): [True: 0, False: 1.48k]
  |  Branch (1601:42): [True: 0, False: 0]
  ------------------
 1602|      0|                goto code_error;
 1603|      0|            }
 1604|  1.48k|            kwonlyargcount = (int)r_long(p);
 1605|  1.48k|            if (kwonlyargcount == -1 && PyErr_Occurred())
  ------------------
  |  Branch (1605:17): [True: 0, False: 1.48k]
  |  Branch (1605:41): [True: 0, False: 0]
  ------------------
 1606|      0|                goto code_error;
 1607|  1.48k|            stacksize = (int)r_long(p);
 1608|  1.48k|            if (stacksize == -1 && PyErr_Occurred())
  ------------------
  |  Branch (1608:17): [True: 0, False: 1.48k]
  |  Branch (1608:36): [True: 0, False: 0]
  ------------------
 1609|      0|                goto code_error;
 1610|  1.48k|            flags = (int)r_long(p);
 1611|  1.48k|            if (flags == -1 && PyErr_Occurred())
  ------------------
  |  Branch (1611:17): [True: 0, False: 1.48k]
  |  Branch (1611:32): [True: 0, False: 0]
  ------------------
 1612|      0|                goto code_error;
 1613|  1.48k|            code = r_object(p);
 1614|  1.48k|            if (code == NULL)
  ------------------
  |  Branch (1614:17): [True: 0, False: 1.48k]
  ------------------
 1615|      0|                goto code_error;
 1616|  1.48k|            consts = r_object(p);
 1617|  1.48k|            if (consts == NULL)
  ------------------
  |  Branch (1617:17): [True: 0, False: 1.48k]
  ------------------
 1618|      0|                goto code_error;
 1619|  1.48k|            names = r_object(p);
 1620|  1.48k|            if (names == NULL)
  ------------------
  |  Branch (1620:17): [True: 0, False: 1.48k]
  ------------------
 1621|      0|                goto code_error;
 1622|  1.48k|            localsplusnames = r_object(p);
 1623|  1.48k|            if (localsplusnames == NULL)
  ------------------
  |  Branch (1623:17): [True: 0, False: 1.48k]
  ------------------
 1624|      0|                goto code_error;
 1625|  1.48k|            localspluskinds = r_object(p);
 1626|  1.48k|            if (localspluskinds == NULL)
  ------------------
  |  Branch (1626:17): [True: 0, False: 1.48k]
  ------------------
 1627|      0|                goto code_error;
 1628|  1.48k|            filename = r_object(p);
 1629|  1.48k|            if (filename == NULL)
  ------------------
  |  Branch (1629:17): [True: 0, False: 1.48k]
  ------------------
 1630|      0|                goto code_error;
 1631|  1.48k|            name = r_object(p);
 1632|  1.48k|            if (name == NULL)
  ------------------
  |  Branch (1632:17): [True: 0, False: 1.48k]
  ------------------
 1633|      0|                goto code_error;
 1634|  1.48k|            qualname = r_object(p);
 1635|  1.48k|            if (qualname == NULL)
  ------------------
  |  Branch (1635:17): [True: 0, False: 1.48k]
  ------------------
 1636|      0|                goto code_error;
 1637|  1.48k|            firstlineno = (int)r_long(p);
 1638|  1.48k|            if (firstlineno == -1 && PyErr_Occurred())
  ------------------
  |  Branch (1638:17): [True: 0, False: 1.48k]
  |  Branch (1638:38): [True: 0, False: 0]
  ------------------
 1639|      0|                goto code_error;
 1640|  1.48k|            linetable = r_object(p);
 1641|  1.48k|            if (linetable == NULL)
  ------------------
  |  Branch (1641:17): [True: 0, False: 1.48k]
  ------------------
 1642|      0|                goto code_error;
 1643|  1.48k|            exceptiontable = r_object(p);
 1644|  1.48k|            if (exceptiontable == NULL)
  ------------------
  |  Branch (1644:17): [True: 0, False: 1.48k]
  ------------------
 1645|      0|                goto code_error;
 1646|       |
 1647|  1.48k|            struct _PyCodeConstructor con = {
 1648|  1.48k|                .filename = filename,
 1649|  1.48k|                .name = name,
 1650|  1.48k|                .qualname = qualname,
 1651|  1.48k|                .flags = flags,
 1652|       |
 1653|  1.48k|                .code = code,
 1654|  1.48k|                .firstlineno = firstlineno,
 1655|  1.48k|                .linetable = linetable,
 1656|       |
 1657|  1.48k|                .consts = consts,
 1658|  1.48k|                .names = names,
 1659|       |
 1660|  1.48k|                .localsplusnames = localsplusnames,
 1661|  1.48k|                .localspluskinds = localspluskinds,
 1662|       |
 1663|  1.48k|                .argcount = argcount,
 1664|  1.48k|                .posonlyargcount = posonlyargcount,
 1665|  1.48k|                .kwonlyargcount = kwonlyargcount,
 1666|       |
 1667|  1.48k|                .stacksize = stacksize,
 1668|       |
 1669|  1.48k|                .exceptiontable = exceptiontable,
 1670|  1.48k|            };
 1671|       |
 1672|  1.48k|            if (_PyCode_Validate(&con) < 0) {
  ------------------
  |  Branch (1672:17): [True: 0, False: 1.48k]
  ------------------
 1673|      0|                goto code_error;
 1674|      0|            }
 1675|       |
 1676|  1.48k|            v = (PyObject *)_PyCode_New(&con);
 1677|  1.48k|            if (v == NULL) {
  ------------------
  |  Branch (1677:17): [True: 0, False: 1.48k]
  ------------------
 1678|      0|                goto code_error;
 1679|      0|            }
 1680|       |
 1681|  1.48k|            v = r_ref_insert(v, idx, flag, p);
 1682|       |
 1683|  1.48k|          code_error:
 1684|  1.48k|            if (v == NULL && !PyErr_Occurred()) {
  ------------------
  |  Branch (1684:17): [True: 0, False: 1.48k]
  |  Branch (1684:30): [True: 0, False: 0]
  ------------------
 1685|      0|                PyErr_SetString(PyExc_TypeError,
 1686|      0|                    "NULL object in marshal data for code object");
 1687|      0|            }
 1688|  1.48k|            Py_XDECREF(code);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1689|  1.48k|            Py_XDECREF(consts);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1690|  1.48k|            Py_XDECREF(names);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1691|  1.48k|            Py_XDECREF(localsplusnames);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1692|  1.48k|            Py_XDECREF(localspluskinds);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1693|  1.48k|            Py_XDECREF(filename);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1694|  1.48k|            Py_XDECREF(name);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1695|  1.48k|            Py_XDECREF(qualname);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1696|  1.48k|            Py_XDECREF(linetable);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1697|  1.48k|            Py_XDECREF(exceptiontable);
  ------------------
  |  |  524|  1.48k|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.48k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.48k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1698|  1.48k|        }
 1699|      0|        retval = v;
 1700|  1.48k|        break;
 1701|       |
 1702|  15.7k|    case TYPE_REF:
  ------------------
  |  |   99|  15.7k|#define TYPE_REF                'r'
  ------------------
  |  Branch (1702:5): [True: 15.7k, False: 19.2k]
  ------------------
 1703|  15.7k|        n = r_long(p);
 1704|  15.7k|        if (n < 0 || n >= PyList_GET_SIZE(p->refs)) {
  ------------------
  |  |   38|  15.7k|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  15.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1704:13): [True: 0, False: 15.7k]
  |  Branch (1704:22): [True: 0, False: 15.7k]
  ------------------
 1705|      0|            if (!PyErr_Occurred()) {
  ------------------
  |  Branch (1705:17): [True: 0, False: 0]
  ------------------
 1706|      0|                PyErr_SetString(PyExc_ValueError,
 1707|      0|                    "bad marshal data (invalid reference)");
 1708|      0|            }
 1709|      0|            break;
 1710|      0|        }
 1711|  15.7k|        v = PyList_GET_ITEM(p->refs, n);
  ------------------
  |  |   40|  15.7k|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|  15.7k|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1711:13): [True: 15.7k, False: 0]
  ------------------
 1712|  15.7k|        if (v == Py_None) {
  ------------------
  |  |  616|  15.7k|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1712:13): [True: 0, False: 15.7k]
  ------------------
 1713|      0|            PyErr_SetString(PyExc_ValueError, "bad marshal data (invalid reference)");
 1714|      0|            break;
 1715|      0|        }
 1716|  15.7k|        retval = Py_NewRef(v);
  ------------------
  |  |  550|  15.7k|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|  15.7k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  15.7k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1717|  15.7k|        break;
 1718|       |
 1719|     94|    case TYPE_SLICE:
  ------------------
  |  |   79|     94|#define TYPE_SLICE              ':'
  ------------------
  |  Branch (1719:5): [True: 94, False: 34.9k]
  ------------------
 1720|     94|    {
 1721|     94|        Py_ssize_t idx = r_ref_reserve(flag, p);
 1722|     94|        if (idx < 0) {
  ------------------
  |  Branch (1722:13): [True: 0, False: 94]
  ------------------
 1723|      0|            break;
 1724|      0|        }
 1725|     94|        PyObject *stop = NULL;
 1726|     94|        PyObject *step = NULL;
 1727|     94|        PyObject *start = r_object(p);
 1728|     94|        if (start == NULL) {
  ------------------
  |  Branch (1728:13): [True: 0, False: 94]
  ------------------
 1729|      0|            goto cleanup;
 1730|      0|        }
 1731|     94|        stop = r_object(p);
 1732|     94|        if (stop == NULL) {
  ------------------
  |  Branch (1732:13): [True: 0, False: 94]
  ------------------
 1733|      0|            goto cleanup;
 1734|      0|        }
 1735|     94|        step = r_object(p);
 1736|     94|        if (step == NULL) {
  ------------------
  |  Branch (1736:13): [True: 0, False: 94]
  ------------------
 1737|      0|            goto cleanup;
 1738|      0|        }
 1739|     94|        retval = PySlice_New(start, stop, step);
 1740|     94|        r_ref_insert(retval, idx, flag, p);
 1741|     94|    cleanup:
 1742|     94|        Py_XDECREF(start);
  ------------------
  |  |  524|     94|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1743|     94|        Py_XDECREF(stop);
  ------------------
  |  |  524|     94|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1744|     94|        Py_XDECREF(step);
  ------------------
  |  |  524|     94|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     94|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     94|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1745|     94|        break;
 1746|     94|    }
 1747|       |
 1748|      0|    default:
  ------------------
  |  Branch (1748:5): [True: 0, False: 35.0k]
  ------------------
 1749|       |        /* Bogus data got written, which isn't ideal.
 1750|       |           This will let you keep working and recover. */
 1751|      0|        PyErr_SetString(PyExc_ValueError, "bad marshal data (unknown type code)");
 1752|      0|        break;
 1753|       |
 1754|  35.0k|    }
 1755|  35.0k|    p->depth--;
 1756|  35.0k|    return retval;
 1757|  35.0k|}
marshal.c:r_byte:
  910|  47.3k|{
  911|  47.3k|    if (p->ptr != NULL) {
  ------------------
  |  Branch (911:9): [True: 47.3k, False: 0]
  ------------------
  912|  47.3k|        if (p->ptr < p->end) {
  ------------------
  |  Branch (912:13): [True: 47.3k, False: 0]
  ------------------
  913|  47.3k|            return (unsigned char) *p->ptr++;
  914|  47.3k|        }
  915|  47.3k|    }
  916|      0|    else if (!p->readable) {
  ------------------
  |  Branch (916:14): [True: 0, False: 0]
  ------------------
  917|      0|        assert(p->fp);
  ------------------
  |  Branch (917:9): [True: 0, False: 0]
  ------------------
  918|      0|        int c = getc(p->fp);
  919|      0|        if (c != EOF) {
  ------------------
  |  Branch (919:13): [True: 0, False: 0]
  ------------------
  920|      0|            return c;
  921|      0|        }
  922|      0|    }
  923|      0|    else {
  924|      0|        const char *ptr = r_string(1, p);
  925|      0|        if (ptr != NULL) {
  ------------------
  |  Branch (925:13): [True: 0, False: 0]
  ------------------
  926|      0|            return *(const unsigned char *) ptr;
  927|      0|        }
  928|      0|        return EOF;
  929|      0|    }
  930|      0|    PyErr_SetString(PyExc_EOFError,
  931|      0|                    "EOF read where not expected");
  932|       |    return EOF;
  933|  47.3k|}
marshal.c:r_ref:
 1161|  9.90k|{
 1162|  9.90k|    assert(flag & FLAG_REF);
  ------------------
  |  Branch (1162:5): [True: 9.90k, False: 0]
  ------------------
 1163|  9.90k|    if (o == NULL)
  ------------------
  |  Branch (1163:9): [True: 0, False: 9.90k]
  ------------------
 1164|      0|        return NULL;
 1165|  9.90k|    if (PyList_Append(p->refs, o) < 0) {
  ------------------
  |  Branch (1165:9): [True: 0, False: 9.90k]
  ------------------
 1166|      0|        Py_DECREF(o); /* release the new object */
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1167|      0|        return NULL;
 1168|      0|    }
 1169|  9.90k|    return o;
 1170|  9.90k|}
marshal.c:r_PyLong:
 1038|      8|{
 1039|      8|    long n = r_long(p);
 1040|      8|    if (n == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (1040:9): [True: 0, False: 8]
  |  Branch (1040:20): [True: 0, False: 0]
  ------------------
 1041|      0|        return NULL;
 1042|      0|    }
 1043|      8|    if (n < -SIZE32_MAX || n > SIZE32_MAX) {
  ------------------
  |  |  212|     16|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
                  if (n < -SIZE32_MAX || n > SIZE32_MAX) {
  ------------------
  |  |  212|      8|#define SIZE32_MAX  0x7FFFFFFF
  ------------------
  |  Branch (1043:9): [True: 0, False: 8]
  |  Branch (1043:28): [True: 0, False: 8]
  ------------------
 1044|      0|        PyErr_SetString(PyExc_ValueError,
 1045|      0|                       "bad marshal data (long size out of range)");
 1046|      0|        return NULL;
 1047|      0|    }
 1048|       |
 1049|      8|    const PyLongLayout *layout = PyLong_GetNativeLayout();
 1050|      8|    Py_ssize_t marshal_ratio = layout->bits_per_digit/PyLong_MARSHAL_SHIFT;
  ------------------
  |  |  245|      8|#define PyLong_MARSHAL_SHIFT 15
  ------------------
 1051|       |
 1052|       |    /* must be a multiple of PyLong_MARSHAL_SHIFT */
 1053|      8|    assert(layout->bits_per_digit % PyLong_MARSHAL_SHIFT == 0);
  ------------------
  |  Branch (1053:5): [True: 8, False: 0]
  ------------------
 1054|      8|    assert(layout->bits_per_digit >= PyLong_MARSHAL_SHIFT);
  ------------------
  |  Branch (1054:5): [True: 8, False: 0]
  ------------------
 1055|       |
 1056|       |    /* other assumptions on PyLongObject internals */
 1057|      8|    assert(layout->bits_per_digit <= 32);
  ------------------
  |  Branch (1057:5): [True: 8, False: 0]
  ------------------
 1058|      8|    assert(layout->digits_order == -1);
  ------------------
  |  Branch (1058:5): [True: 8, False: 0]
  ------------------
 1059|      8|    assert(layout->digit_endianness == (PY_LITTLE_ENDIAN ? -1 : 1));
  ------------------
  |  Branch (1059:5): [True: 8, Folded]
  |  Branch (1059:5): [True: 8, False: 0]
  ------------------
 1060|      8|    assert(layout->digit_size == 2 || layout->digit_size == 4);
  ------------------
  |  Branch (1060:5): [True: 0, False: 8]
  |  Branch (1060:5): [True: 8, False: 0]
  ------------------
 1061|       |
 1062|      8|    Py_ssize_t size = 1 + (Py_ABS(n) - 1) / marshal_ratio;
  ------------------
  |  |  118|      8|#define Py_ABS(x) ((x) < 0 ? -(x) : (x))
  |  |  ------------------
  |  |  |  Branch (118:20): [True: 0, False: 8]
  |  |  ------------------
  ------------------
 1063|       |
 1064|      8|    assert(size >= 1);
  ------------------
  |  Branch (1064:5): [True: 8, False: 0]
  ------------------
 1065|       |
 1066|      8|    int shorts_in_top_digit = 1 + (Py_ABS(n) - 1) % marshal_ratio;
  ------------------
  |  |  118|      8|#define Py_ABS(x) ((x) < 0 ? -(x) : (x))
  |  |  ------------------
  |  |  |  Branch (118:20): [True: 0, False: 8]
  |  |  ------------------
  ------------------
 1067|      8|    void *digits;
 1068|      8|    PyLongWriter *writer = PyLongWriter_Create(n < 0, size, &digits);
 1069|       |
 1070|      8|    if (writer == NULL) {
  ------------------
  |  Branch (1070:9): [True: 0, False: 8]
  ------------------
 1071|      0|        return NULL;
 1072|      0|    }
 1073|       |
 1074|      8|    int ret;
 1075|       |
 1076|      8|    if (layout->digit_size == 4) {
  ------------------
  |  Branch (1076:9): [True: 8, False: 0]
  ------------------
 1077|      8|        ret = _w_digits32(digits, size, marshal_ratio, shorts_in_top_digit, p);
 1078|      8|    }
 1079|      0|    else {
 1080|      0|        ret = _w_digits16(digits, size, marshal_ratio, shorts_in_top_digit, p);
 1081|      0|    }
 1082|      8|    if (ret < 0) {
  ------------------
  |  Branch (1082:9): [True: 0, False: 8]
  ------------------
 1083|      0|        PyLongWriter_Discard(writer);
 1084|      0|        return NULL;
 1085|      0|    }
 1086|      8|    return PyLongWriter_Finish(writer);
 1087|      8|}
marshal.c:r_ref_reserve:
 1122|  1.58k|{
 1123|  1.58k|    if (flag) { /* currently only FLAG_REF is defined */
  ------------------
  |  Branch (1123:9): [True: 16, False: 1.57k]
  ------------------
 1124|     16|        Py_ssize_t idx = PyList_GET_SIZE(p->refs);
  ------------------
  |  |   38|     16|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1125|     16|        if (idx >= 0x7ffffffe) {
  ------------------
  |  Branch (1125:13): [True: 0, False: 16]
  ------------------
 1126|      0|            PyErr_SetString(PyExc_ValueError, "bad marshal data (index list too large)");
 1127|      0|            return -1;
 1128|      0|        }
 1129|     16|        if (PyList_Append(p->refs, Py_None) < 0)
  ------------------
  |  |  616|     16|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (1129:13): [True: 0, False: 16]
  ------------------
 1130|      0|            return -1;
 1131|     16|        return idx;
 1132|     16|    } else
 1133|  1.57k|        return 0;
 1134|  1.58k|}
marshal.c:r_ref_insert:
 1146|  1.58k|{
 1147|  1.58k|    if (o != NULL && flag) { /* currently only FLAG_REF is defined */
  ------------------
  |  Branch (1147:9): [True: 1.58k, False: 0]
  |  Branch (1147:22): [True: 16, False: 1.57k]
  ------------------
 1148|     16|        PyObject *tmp = PyList_GET_ITEM(p->refs, idx);
  ------------------
  |  |   40|     16|#define PyList_GET_ITEM(op, index) (_PyList_CAST(op)->ob_item[(index)])
  |  |  ------------------
  |  |  |  |   26|     16|    (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1148:25): [True: 16, False: 0]
  ------------------
 1149|     16|        PyList_SET_ITEM(p->refs, idx, Py_NewRef(o));
  ------------------
  |  |   50|     16|    PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyList_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1150|     16|        Py_DECREF(tmp);
  ------------------
  |  |  430|     16|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1151|     16|    }
 1152|  1.58k|    return o;
 1153|  1.58k|}
marshal.c:marshal_module_exec:
 2167|      2|{
 2168|      2|    if (PyModule_AddIntConstant(mod, "version", Py_MARSHAL_VERSION) < 0) {
  ------------------
  |  |    9|      2|#define Py_MARSHAL_VERSION 6
  ------------------
  |  Branch (2168:9): [True: 0, False: 2]
  ------------------
 2169|      0|        return -1;
 2170|      0|    }
 2171|      2|    return 0;
 2172|      2|}

Py_BuildValue:
  497|     28|{
  498|     28|    va_list va;
  499|     28|    PyObject* retval;
  500|     28|    va_start(va, format);
  501|     28|    retval = va_build_value(format, va);
  502|       |    va_end(va);
  503|     28|    return retval;
  504|     28|}
_Py_VaBuildStack:
  555|     54|{
  556|     54|    const char *f;
  557|     54|    Py_ssize_t n;
  558|     54|    va_list lva;
  559|     54|    PyObject **stack;
  560|     54|    int res;
  561|       |
  562|     54|    n = countformat(format, '\0');
  563|     54|    if (n < 0) {
  ------------------
  |  Branch (563:9): [True: 0, False: 54]
  ------------------
  564|      0|        *p_nargs = 0;
  565|      0|        return NULL;
  566|      0|    }
  567|       |
  568|     54|    if (n == 0) {
  ------------------
  |  Branch (568:9): [True: 0, False: 54]
  ------------------
  569|      0|        *p_nargs = 0;
  570|      0|        return small_stack;
  571|      0|    }
  572|       |
  573|     54|    if (n <= small_stack_len) {
  ------------------
  |  Branch (573:9): [True: 42, False: 12]
  ------------------
  574|     42|        stack = small_stack;
  575|     42|    }
  576|     12|    else {
  577|     12|        stack = PyMem_Malloc(n * sizeof(stack[0]));
  578|     12|        if (stack == NULL) {
  ------------------
  |  Branch (578:13): [True: 0, False: 12]
  ------------------
  579|      0|            PyErr_NoMemory();
  580|      0|            return NULL;
  581|      0|        }
  582|     12|    }
  583|       |
  584|     54|    va_copy(lva, va);
  585|     54|    f = format;
  586|     54|    res = do_mkstack(stack, &f, &lva, '\0', n);
  587|     54|    va_end(lva);
  588|       |
  589|     54|    if (res < 0) {
  ------------------
  |  Branch (589:9): [True: 0, False: 54]
  ------------------
  590|      0|        if (stack != small_stack) {
  ------------------
  |  Branch (590:13): [True: 0, False: 0]
  ------------------
  591|      0|            PyMem_Free(stack);
  592|      0|        }
  593|      0|        return NULL;
  594|      0|    }
  595|       |
  596|     54|    *p_nargs = n;
  597|     54|    return stack;
  598|     54|}
PyModule_AddObjectRef:
  603|    586|{
  604|    586|    if (!PyModule_Check(mod)) {
  ------------------
  |  |   12|    586|#define PyModule_Check(op) PyObject_TypeCheck((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  378|    586|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    586|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    586|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (604:9): [True: 0, False: 586]
  ------------------
  605|      0|        PyErr_SetString(PyExc_TypeError,
  606|      0|                        "PyModule_AddObjectRef() first argument "
  607|      0|                        "must be a module");
  608|      0|        return -1;
  609|      0|    }
  610|    586|    if (!value) {
  ------------------
  |  Branch (610:9): [True: 0, False: 586]
  ------------------
  611|      0|        if (!PyErr_Occurred()) {
  ------------------
  |  Branch (611:13): [True: 0, False: 0]
  ------------------
  612|      0|            PyErr_SetString(PyExc_SystemError,
  613|      0|                            "PyModule_AddObjectRef() must be called "
  614|      0|                            "with an exception raised if value is NULL");
  615|      0|        }
  616|      0|        return -1;
  617|      0|    }
  618|       |
  619|    586|    PyObject *dict = PyModule_GetDict(mod);
  620|    586|    if (dict == NULL) {
  ------------------
  |  Branch (620:9): [True: 0, False: 586]
  ------------------
  621|       |        /* Internal error -- modules must have a dict! */
  622|      0|        PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__",
  623|      0|                     PyModule_GetName(mod));
  624|      0|        return -1;
  625|      0|    }
  626|    586|    return PyDict_SetItemString(dict, name, value);
  627|    586|}
PyModule_Add:
  631|    508|{
  632|    508|    int res = PyModule_AddObjectRef(mod, name, value);
  633|    508|    Py_XDECREF(value);
  ------------------
  |  |  524|    508|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    508|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    508|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  634|    508|    return res;
  635|    508|}
PyModule_AddIntConstant:
  649|    490|{
  650|    490|    return PyModule_Add(m, name, PyLong_FromLong(value));
  651|    490|}
PyModule_AddType:
  661|     38|{
  662|     38|    if (!_PyType_IsReady(type) && PyType_Ready(type) < 0) {
  ------------------
  |  Branch (662:9): [True: 0, False: 38]
  |  Branch (662:35): [True: 0, False: 0]
  ------------------
  663|      0|        return -1;
  664|      0|    }
  665|       |
  666|     38|    const char *name = _PyType_Name(type);
  667|     38|    assert(name != NULL);
  ------------------
  |  Branch (667:5): [True: 38, False: 0]
  ------------------
  668|       |
  669|     38|    return PyModule_AddObjectRef(module, name, (PyObject *)type);
  670|     38|}
PyABIInfo_Check:
  707|     20|{
  708|     20|    if (!info) {
  ------------------
  |  Branch (708:9): [True: 0, False: 20]
  ------------------
  709|      0|        return _abiinfo_raise(module_name, "NULL PyABIInfo");
  710|      0|    }
  711|       |
  712|       |    /* abiinfo_major_version */
  713|     20|    if (info->abiinfo_major_version == 0) {
  ------------------
  |  Branch (713:9): [True: 0, False: 20]
  ------------------
  714|      0|        return 0;
  715|      0|    }
  716|     20|    if (info->abiinfo_major_version > 1) {
  ------------------
  |  Branch (716:9): [True: 0, False: 20]
  ------------------
  717|      0|        return _abiinfo_raise(module_name, "PyABIInfo version too high");
  718|      0|    }
  719|       |
  720|       |    /* Internal ABI */
  721|     20|    if (info->flags & PyABIInfo_INTERNAL) {
  ------------------
  |  |   97|     20|#define PyABIInfo_INTERNAL      0x0008
  ------------------
  |  Branch (721:9): [True: 20, False: 0]
  ------------------
  722|     20|        if (info->abi_version && (info->abi_version != PY_VERSION_HEX)) {
  ------------------
  |  |   43|     20|#define PY_VERSION_HEX _Py_PACK_FULL_VERSION( \
  |  |  ------------------
  |  |  |  |   34|     20|#define _Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \
  |  |  |  |   35|     20|    (((X) & 0xff) << 24) |                              \
  |  |  |  |   36|     20|    (((Y) & 0xff) << 16) |                              \
  |  |  |  |   37|     20|    (((Z) & 0xff) << 8) |                               \
  |  |  |  |   38|     20|    (((LEVEL) & 0xf) << 4) |                            \
  |  |  |  |   39|     20|    (((SERIAL) & 0xf) << 0))
  |  |  ------------------
  |  |   44|     20|    PY_MAJOR_VERSION,                         \
  |  |   45|     20|    PY_MINOR_VERSION,                         \
  |  |   46|     20|    PY_MICRO_VERSION,                         \
  |  |   47|     20|    PY_RELEASE_LEVEL,                         \
  |  |   48|     20|    PY_RELEASE_SERIAL)
  ------------------
  |  Branch (722:13): [True: 20, False: 0]
  |  Branch (722:34): [True: 0, False: 20]
  ------------------
  723|      0|            return _abiinfo_raise(
  724|      0|                module_name,
  725|      0|                "incompatible internal ABI (0x%x != 0x%x)",
  726|      0|                info->abi_version, PY_VERSION_HEX);
  ------------------
  |  |   43|      0|#define PY_VERSION_HEX _Py_PACK_FULL_VERSION( \
  |  |  ------------------
  |  |  |  |   34|      0|#define _Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \
  |  |  |  |   35|      0|    (((X) & 0xff) << 24) |                              \
  |  |  |  |   36|      0|    (((Y) & 0xff) << 16) |                              \
  |  |  |  |   37|      0|    (((Z) & 0xff) << 8) |                               \
  |  |  |  |   38|      0|    (((LEVEL) & 0xf) << 4) |                            \
  |  |  |  |   39|      0|    (((SERIAL) & 0xf) << 0))
  |  |  ------------------
  |  |   44|      0|    PY_MAJOR_VERSION,                         \
  |  |   45|      0|    PY_MINOR_VERSION,                         \
  |  |   46|      0|    PY_MICRO_VERSION,                         \
  |  |   47|      0|    PY_RELEASE_LEVEL,                         \
  |  |   48|      0|    PY_RELEASE_SERIAL)
  ------------------
  727|      0|        }
  728|     20|    }
  729|       |
  730|     20|#define XY_MASK 0xffff0000
  731|     20|    if (info->flags & PyABIInfo_STABLE) {
  ------------------
  |  |   94|     20|#define PyABIInfo_STABLE        0x0001
  ------------------
  |  Branch (731:9): [True: 0, False: 20]
  ------------------
  732|       |        /* Greater-than major.minor version check */
  733|      0|        if (info->abi_version) {
  ------------------
  |  Branch (733:13): [True: 0, False: 0]
  ------------------
  734|      0|            if ((info->abi_version & XY_MASK) > (PY_VERSION_HEX & XY_MASK)) {
  ------------------
  |  |  730|      0|#define XY_MASK 0xffff0000
  ------------------
                          if ((info->abi_version & XY_MASK) > (PY_VERSION_HEX & XY_MASK)) {
  ------------------
  |  |   43|      0|#define PY_VERSION_HEX _Py_PACK_FULL_VERSION( \
  |  |  ------------------
  |  |  |  |   34|      0|#define _Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \
  |  |  |  |   35|      0|    (((X) & 0xff) << 24) |                              \
  |  |  |  |   36|      0|    (((Y) & 0xff) << 16) |                              \
  |  |  |  |   37|      0|    (((Z) & 0xff) << 8) |                               \
  |  |  |  |   38|      0|    (((LEVEL) & 0xf) << 4) |                            \
  |  |  |  |   39|      0|    (((SERIAL) & 0xf) << 0))
  |  |  ------------------
  |  |   44|      0|    PY_MAJOR_VERSION,                         \
  |  |   45|      0|    PY_MINOR_VERSION,                         \
  |  |   46|      0|    PY_MICRO_VERSION,                         \
  |  |   47|      0|    PY_RELEASE_LEVEL,                         \
  |  |   48|      0|    PY_RELEASE_SERIAL)
  ------------------
                          if ((info->abi_version & XY_MASK) > (PY_VERSION_HEX & XY_MASK)) {
  ------------------
  |  |  730|      0|#define XY_MASK 0xffff0000
  ------------------
  |  Branch (734:17): [True: 0, False: 0]
  ------------------
  735|      0|                return _abiinfo_raise(
  736|      0|                    module_name,
  737|      0|                    "incompatible future stable ABI version (%d.%d)",
  738|      0|                    ((info->abi_version) >> 24) & 0xff,
  739|      0|                    ((info->abi_version) >> 16) & 0xff);
  740|      0|            }
  741|      0|            if (info->abi_version < Py_PACK_VERSION(3, 2)) {
  ------------------
  |  |  290|      0|#define Py_PACK_VERSION _Py_PACK_VERSION
  |  |  ------------------
  |  |  |  |  285|      0|#define _Py_PACK_VERSION(X, Y) _Py_PACK_FULL_VERSION(X, Y, 0, 0, 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |   34|      0|#define _Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \
  |  |  |  |  |  |   35|      0|    (((X) & 0xff) << 24) |                              \
  |  |  |  |  |  |   36|      0|    (((Y) & 0xff) << 16) |                              \
  |  |  |  |  |  |   37|      0|    (((Z) & 0xff) << 8) |                               \
  |  |  |  |  |  |   38|      0|    (((LEVEL) & 0xf) << 4) |                            \
  |  |  |  |  |  |   39|      0|    (((SERIAL) & 0xf) << 0))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (741:17): [True: 0, False: 0]
  ------------------
  742|      0|                return _abiinfo_raise(
  743|      0|                    module_name,
  744|      0|                    "invalid stable ABI version (%d.%d)",
  745|      0|                    ((info->abi_version) >> 24) & 0xff,
  746|      0|                    ((info->abi_version) >> 16) & 0xff);
  747|      0|            }
  748|      0|        }
  749|      0|        if (info->flags & PyABIInfo_INTERNAL) {
  ------------------
  |  |   97|      0|#define PyABIInfo_INTERNAL      0x0008
  ------------------
  |  Branch (749:13): [True: 0, False: 0]
  ------------------
  750|      0|            return _abiinfo_raise(module_name,
  751|      0|                                  "cannot use both internal and stable ABI");
  752|      0|        }
  753|      0|    }
  754|     20|    else {
  755|       |        /* Exact major.minor version check */
  756|     20|        if (info->abi_version) {
  ------------------
  |  Branch (756:13): [True: 20, False: 0]
  ------------------
  757|     20|            if ((info->abi_version & XY_MASK) != (PY_VERSION_HEX & XY_MASK)) {
  ------------------
  |  |  730|     20|#define XY_MASK 0xffff0000
  ------------------
                          if ((info->abi_version & XY_MASK) != (PY_VERSION_HEX & XY_MASK)) {
  ------------------
  |  |   43|     20|#define PY_VERSION_HEX _Py_PACK_FULL_VERSION( \
  |  |  ------------------
  |  |  |  |   34|     20|#define _Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \
  |  |  |  |   35|     20|    (((X) & 0xff) << 24) |                              \
  |  |  |  |   36|     20|    (((Y) & 0xff) << 16) |                              \
  |  |  |  |   37|     20|    (((Z) & 0xff) << 8) |                               \
  |  |  |  |   38|     20|    (((LEVEL) & 0xf) << 4) |                            \
  |  |  |  |   39|     20|    (((SERIAL) & 0xf) << 0))
  |  |  ------------------
  |  |   44|     20|    PY_MAJOR_VERSION,                         \
  |  |   45|     20|    PY_MINOR_VERSION,                         \
  |  |   46|     20|    PY_MICRO_VERSION,                         \
  |  |   47|     20|    PY_RELEASE_LEVEL,                         \
  |  |   48|     20|    PY_RELEASE_SERIAL)
  ------------------
                          if ((info->abi_version & XY_MASK) != (PY_VERSION_HEX & XY_MASK)) {
  ------------------
  |  |  730|     20|#define XY_MASK 0xffff0000
  ------------------
  |  Branch (757:17): [True: 0, False: 20]
  ------------------
  758|      0|                return _abiinfo_raise(
  759|      0|                    module_name,
  760|      0|                    "incompatible ABI version (%d.%d)",
  761|      0|                    ((info->abi_version) >> 24) & 0xff,
  762|      0|                    ((info->abi_version) >> 16) & 0xff);
  763|      0|            }
  764|     20|        }
  765|     20|    }
  766|     20|#undef XY_MASK
  767|       |
  768|       |    /* Free-threading/GIL */
  769|     20|    uint16_t gilflags = info->flags & (PyABIInfo_GIL | PyABIInfo_FREETHREADED);
  ------------------
  |  |   95|     20|#define PyABIInfo_GIL           0x0002
  ------------------
                  uint16_t gilflags = info->flags & (PyABIInfo_GIL | PyABIInfo_FREETHREADED);
  ------------------
  |  |   96|     20|#define PyABIInfo_FREETHREADED  0x0004
  ------------------
  770|       |#if Py_GIL_DISABLED
  771|       |    if (gilflags == PyABIInfo_GIL) {
  772|       |        return _abiinfo_raise(module_name,
  773|       |                              "incompatible with free-threaded CPython");
  774|       |    }
  775|       |#else
  776|     20|    if (gilflags == PyABIInfo_FREETHREADED) {
  ------------------
  |  |   96|     20|#define PyABIInfo_FREETHREADED  0x0004
  ------------------
  |  Branch (776:9): [True: 0, False: 20]
  ------------------
  777|      0|        return _abiinfo_raise(module_name,
  778|      0|                              "only compatible with free-threaded CPython");
  779|      0|    }
  780|     20|#endif
  781|       |
  782|     20|    return 0;
  783|     20|}
modsupport.c:va_build_value:
  531|     28|{
  532|     28|    const char *f = format;
  533|     28|    Py_ssize_t n = countformat(f, '\0');
  534|     28|    va_list lva;
  535|     28|    PyObject *retval;
  536|       |
  537|     28|    if (n < 0)
  ------------------
  |  Branch (537:9): [True: 0, False: 28]
  ------------------
  538|      0|        return NULL;
  539|     28|    if (n == 0) {
  ------------------
  |  Branch (539:9): [True: 0, False: 28]
  ------------------
  540|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  541|      0|    }
  542|     28|    va_copy(lva, va);
  543|     28|    if (n == 1) {
  ------------------
  |  Branch (543:9): [True: 28, False: 0]
  ------------------
  544|     28|        retval = do_mkvalue(&f, &lva);
  545|     28|    } else {
  546|      0|        retval = do_mktuple(&f, &lva, '\0', n);
  547|      0|    }
  548|       |    va_end(lva);
  549|     28|    return retval;
  550|     28|}
modsupport.c:do_mkvalue:
  287|    320|{
  288|    320|    for (;;) {
  289|    320|        switch (*(*p_format)++) {
  290|     30|        case '(':
  ------------------
  |  Branch (290:9): [True: 30, False: 290]
  ------------------
  291|     30|            return do_mktuple(p_format, p_va, ')',
  292|     30|                              countformat(*p_format, ')'));
  293|       |
  294|      0|        case '[':
  ------------------
  |  Branch (294:9): [True: 0, False: 320]
  ------------------
  295|      0|            return do_mklist(p_format, p_va, ']',
  296|      0|                             countformat(*p_format, ']'));
  297|       |
  298|      4|        case '{':
  ------------------
  |  Branch (298:9): [True: 4, False: 316]
  ------------------
  299|      4|            return do_mkdict(p_format, p_va, '}',
  300|      4|                             countformat(*p_format, '}'));
  301|       |
  302|      0|        case 'b':
  ------------------
  |  Branch (302:9): [True: 0, False: 320]
  ------------------
  303|      0|        case 'B':
  ------------------
  |  Branch (303:9): [True: 0, False: 320]
  ------------------
  304|      0|        case 'h':
  ------------------
  |  Branch (304:9): [True: 0, False: 320]
  ------------------
  305|     52|        case 'i':
  ------------------
  |  Branch (305:9): [True: 52, False: 268]
  ------------------
  306|     52|            return PyLong_FromLong((long)va_arg(*p_va, int));
  307|       |
  308|      0|        case 'H':
  ------------------
  |  Branch (308:9): [True: 0, False: 320]
  ------------------
  309|      0|            return PyLong_FromLong((long)va_arg(*p_va, unsigned int));
  310|       |
  311|      0|        case 'I':
  ------------------
  |  Branch (311:9): [True: 0, False: 320]
  ------------------
  312|      0|        {
  313|      0|            unsigned int n;
  314|      0|            n = va_arg(*p_va, unsigned int);
  315|      0|            return PyLong_FromUnsignedLong(n);
  316|      0|        }
  317|       |
  318|      0|        case 'n':
  ------------------
  |  Branch (318:9): [True: 0, False: 320]
  ------------------
  319|       |#if SIZEOF_SIZE_T!=SIZEOF_LONG
  320|       |            return PyLong_FromSsize_t(va_arg(*p_va, Py_ssize_t));
  321|       |#endif
  322|       |            /* Fall through from 'n' to 'l' if Py_ssize_t is long */
  323|      0|            _Py_FALLTHROUGH;
  ------------------
  |  |  644|      0|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
  324|      0|        case 'l':
  ------------------
  |  Branch (324:9): [True: 0, False: 320]
  ------------------
  325|      0|            return PyLong_FromLong(va_arg(*p_va, long));
  326|       |
  327|      0|        case 'k':
  ------------------
  |  Branch (327:9): [True: 0, False: 320]
  ------------------
  328|      0|        {
  329|      0|            unsigned long n;
  330|      0|            n = va_arg(*p_va, unsigned long);
  331|      0|            return PyLong_FromUnsignedLong(n);
  332|      0|        }
  333|       |
  334|      0|        case 'L':
  ------------------
  |  Branch (334:9): [True: 0, False: 320]
  ------------------
  335|      0|            return PyLong_FromLongLong((long long)va_arg(*p_va, long long));
  336|       |
  337|      0|        case 'K':
  ------------------
  |  Branch (337:9): [True: 0, False: 320]
  ------------------
  338|      0|            return PyLong_FromUnsignedLongLong(
  339|      0|                va_arg(*p_va, unsigned long long));
  340|       |
  341|      0|        case 'u':
  ------------------
  |  Branch (341:9): [True: 0, False: 320]
  ------------------
  342|      0|        {
  343|      0|            PyObject *v;
  344|      0|            const wchar_t *u = va_arg(*p_va, wchar_t*);
  345|      0|            Py_ssize_t n;
  346|      0|            if (**p_format == '#') {
  ------------------
  |  Branch (346:17): [True: 0, False: 0]
  ------------------
  347|      0|                ++*p_format;
  348|      0|                n = va_arg(*p_va, Py_ssize_t);
  349|      0|            }
  350|      0|            else
  351|      0|                n = -1;
  352|      0|            if (u == NULL) {
  ------------------
  |  Branch (352:17): [True: 0, False: 0]
  ------------------
  353|      0|                v = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  354|      0|            }
  355|      0|            else {
  356|      0|                if (n < 0)
  ------------------
  |  Branch (356:21): [True: 0, False: 0]
  ------------------
  357|      0|                    n = wcslen(u);
  358|      0|                v = PyUnicode_FromWideChar(u, n);
  359|      0|            }
  360|      0|            return v;
  361|      0|        }
  362|      0|        case 'f':
  ------------------
  |  Branch (362:9): [True: 0, False: 320]
  ------------------
  363|      0|        case 'd':
  ------------------
  |  Branch (363:9): [True: 0, False: 320]
  ------------------
  364|      0|            return PyFloat_FromDouble(
  365|      0|                (double)va_arg(*p_va, va_double));
  366|       |
  367|      0|        case 'D':
  ------------------
  |  Branch (367:9): [True: 0, False: 320]
  ------------------
  368|      0|            return PyComplex_FromCComplex(
  369|      0|                *((Py_complex *)va_arg(*p_va, Py_complex *)));
  370|       |
  371|      0|        case 'c':
  ------------------
  |  Branch (371:9): [True: 0, False: 320]
  ------------------
  372|      0|        {
  373|      0|            char p[1];
  374|      0|            p[0] = (char)va_arg(*p_va, int);
  375|      0|            return PyBytes_FromStringAndSize(p, 1);
  376|      0|        }
  377|      0|        case 'C':
  ------------------
  |  Branch (377:9): [True: 0, False: 320]
  ------------------
  378|      0|        {
  379|      0|            int i = va_arg(*p_va, int);
  380|      0|            return PyUnicode_FromOrdinal(i);
  381|      0|        }
  382|      0|        case 'p':
  ------------------
  |  Branch (382:9): [True: 0, False: 320]
  ------------------
  383|      0|        {
  384|      0|            int i = va_arg(*p_va, int);
  385|      0|            return PyBool_FromLong(i);
  386|      0|        }
  387|       |
  388|     42|        case 's':
  ------------------
  |  Branch (388:9): [True: 42, False: 278]
  ------------------
  389|     50|        case 'z':
  ------------------
  |  Branch (389:9): [True: 8, False: 312]
  ------------------
  390|     50|        case 'U':   /* XXX deprecated alias */
  ------------------
  |  Branch (390:9): [True: 0, False: 320]
  ------------------
  391|     50|        {
  392|     50|            PyObject *v;
  393|     50|            const char *str = va_arg(*p_va, const char *);
  394|     50|            Py_ssize_t n;
  395|     50|            if (**p_format == '#') {
  ------------------
  |  Branch (395:17): [True: 0, False: 50]
  ------------------
  396|      0|                ++*p_format;
  397|      0|                n = va_arg(*p_va, Py_ssize_t);
  398|      0|            }
  399|     50|            else
  400|     50|                n = -1;
  401|     50|            if (str == NULL) {
  ------------------
  |  Branch (401:17): [True: 0, False: 50]
  ------------------
  402|      0|                v = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  403|      0|            }
  404|     50|            else {
  405|     50|                if (n < 0) {
  ------------------
  |  Branch (405:21): [True: 50, False: 0]
  ------------------
  406|     50|                    size_t m = strlen(str);
  407|     50|                    if (m > PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|     50|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (407:25): [True: 0, False: 50]
  ------------------
  408|      0|                        PyErr_SetString(PyExc_OverflowError,
  409|      0|                            "string too long for Python string");
  410|      0|                        return NULL;
  411|      0|                    }
  412|     50|                    n = (Py_ssize_t)m;
  413|     50|                }
  414|     50|                v = PyUnicode_FromStringAndSize(str, n);
  415|     50|            }
  416|     50|            return v;
  417|     50|        }
  418|       |
  419|      0|        case 'y':
  ------------------
  |  Branch (419:9): [True: 0, False: 320]
  ------------------
  420|      0|        {
  421|      0|            PyObject *v;
  422|      0|            const char *str = va_arg(*p_va, const char *);
  423|      0|            Py_ssize_t n;
  424|      0|            if (**p_format == '#') {
  ------------------
  |  Branch (424:17): [True: 0, False: 0]
  ------------------
  425|      0|                ++*p_format;
  426|      0|                n = va_arg(*p_va, Py_ssize_t);
  427|      0|            }
  428|      0|            else
  429|      0|                n = -1;
  430|      0|            if (str == NULL) {
  ------------------
  |  Branch (430:17): [True: 0, False: 0]
  ------------------
  431|      0|                v = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  432|      0|            }
  433|      0|            else {
  434|      0|                if (n < 0) {
  ------------------
  |  Branch (434:21): [True: 0, False: 0]
  ------------------
  435|      0|                    size_t m = strlen(str);
  436|      0|                    if (m > PY_SSIZE_T_MAX) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (436:25): [True: 0, False: 0]
  ------------------
  437|      0|                        PyErr_SetString(PyExc_OverflowError,
  438|      0|                            "string too long for Python bytes");
  439|      0|                        return NULL;
  440|      0|                    }
  441|      0|                    n = (Py_ssize_t)m;
  442|      0|                }
  443|      0|                v = PyBytes_FromStringAndSize(str, n);
  444|      0|            }
  445|      0|            return v;
  446|      0|        }
  447|       |
  448|      0|        case 'N':
  ------------------
  |  Branch (448:9): [True: 0, False: 320]
  ------------------
  449|      0|        case 'S':
  ------------------
  |  Branch (449:9): [True: 0, False: 320]
  ------------------
  450|    184|        case 'O':
  ------------------
  |  Branch (450:9): [True: 184, False: 136]
  ------------------
  451|    184|        if (**p_format == '&') {
  ------------------
  |  Branch (451:13): [True: 0, False: 184]
  ------------------
  452|      0|            typedef PyObject *(*converter)(void *);
  453|      0|            converter func = va_arg(*p_va, converter);
  454|      0|            void *arg = va_arg(*p_va, void *);
  455|      0|            ++*p_format;
  456|      0|            return (*func)(arg);
  457|      0|        }
  458|    184|        else {
  459|    184|            PyObject *v;
  460|    184|            v = va_arg(*p_va, PyObject *);
  461|    184|            if (v != NULL) {
  ------------------
  |  Branch (461:17): [True: 184, False: 0]
  ------------------
  462|    184|                if (*(*p_format - 1) != 'N')
  ------------------
  |  Branch (462:21): [True: 184, False: 0]
  ------------------
  463|    184|                    Py_INCREF(v);
  ------------------
  |  |  310|    184|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    184|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    184|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  464|    184|            }
  465|      0|            else if (!PyErr_Occurred())
  ------------------
  |  Branch (465:22): [True: 0, False: 0]
  ------------------
  466|       |                /* If a NULL was passed
  467|       |                 * because a call that should
  468|       |                 * have constructed a value
  469|       |                 * failed, that's OK, and we
  470|       |                 * pass the error on; but if
  471|       |                 * no error occurred it's not
  472|       |                 * clear that the caller knew
  473|       |                 * what she was doing. */
  474|      0|                PyErr_SetString(PyExc_SystemError,
  475|      0|                    "NULL object passed to Py_BuildValue");
  476|    184|            return v;
  477|    184|        }
  478|       |
  479|      0|        case ':':
  ------------------
  |  Branch (479:9): [True: 0, False: 320]
  ------------------
  480|      0|        case ',':
  ------------------
  |  Branch (480:9): [True: 0, False: 320]
  ------------------
  481|      0|        case ' ':
  ------------------
  |  Branch (481:9): [True: 0, False: 320]
  ------------------
  482|      0|        case '\t':
  ------------------
  |  Branch (482:9): [True: 0, False: 320]
  ------------------
  483|      0|            break;
  484|       |
  485|      0|        default:
  ------------------
  |  Branch (485:9): [True: 0, False: 320]
  ------------------
  486|      0|            PyErr_SetString(PyExc_SystemError,
  487|      0|                "bad format char passed to Py_BuildValue");
  488|      0|            return NULL;
  489|       |
  490|    320|        }
  491|    320|    }
  492|    320|}
modsupport.c:check_end:
  107|     88|{
  108|     88|    const char *f = *p_format;
  109|     88|    while (*f != endchar) {
  ------------------
  |  Branch (109:12): [True: 0, False: 88]
  ------------------
  110|      0|        if (*f != ' ' && *f != '\t' && *f != ',' && *f != ':') {
  ------------------
  |  Branch (110:13): [True: 0, False: 0]
  |  Branch (110:26): [True: 0, False: 0]
  |  Branch (110:40): [True: 0, False: 0]
  |  Branch (110:53): [True: 0, False: 0]
  ------------------
  111|      0|            PyErr_SetString(PyExc_SystemError,
  112|      0|                            "Unmatched paren in format");
  113|      0|            return 0;
  114|      0|        }
  115|      0|        f++;
  116|      0|    }
  117|     88|    if (endchar) {
  ------------------
  |  Branch (117:9): [True: 34, False: 54]
  ------------------
  118|     34|        f++;
  119|     34|    }
  120|     88|    *p_format = f;
  121|     88|    return 1;
  122|     88|}
modsupport.c:do_mkdict:
  150|      4|{
  151|      4|    PyObject *d;
  152|      4|    Py_ssize_t i;
  153|      4|    if (n < 0)
  ------------------
  |  Branch (153:9): [True: 0, False: 4]
  ------------------
  154|      0|        return NULL;
  155|      4|    if (n % 2) {
  ------------------
  |  Branch (155:9): [True: 0, False: 4]
  ------------------
  156|      0|        PyErr_SetString(PyExc_SystemError,
  157|      0|                        "Bad dict format");
  158|      0|        do_ignore(p_format, p_va, endchar, n);
  159|      0|        return NULL;
  160|      0|    }
  161|       |    /* Note that we can't bail immediately on error as this will leak
  162|       |       refcounts on any 'N' arguments. */
  163|      4|    if ((d = PyDict_New()) == NULL) {
  ------------------
  |  Branch (163:9): [True: 0, False: 4]
  ------------------
  164|      0|        do_ignore(p_format, p_va, endchar, n);
  165|      0|        return NULL;
  166|      0|    }
  167|      6|    for (i = 0; i < n; i+= 2) {
  ------------------
  |  Branch (167:17): [True: 2, False: 4]
  ------------------
  168|      2|        PyObject *k, *v;
  169|       |
  170|      2|        k = do_mkvalue(p_format, p_va);
  171|      2|        if (k == NULL) {
  ------------------
  |  Branch (171:13): [True: 0, False: 2]
  ------------------
  172|      0|            do_ignore(p_format, p_va, endchar, n - i - 1);
  173|      0|            Py_DECREF(d);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  174|      0|            return NULL;
  175|      0|        }
  176|      2|        v = do_mkvalue(p_format, p_va);
  177|      2|        if (v == NULL || PyDict_SetItem(d, k, v) < 0) {
  ------------------
  |  Branch (177:13): [True: 0, False: 2]
  |  Branch (177:26): [True: 0, False: 2]
  ------------------
  178|      0|            do_ignore(p_format, p_va, endchar, n - i - 2);
  179|      0|            Py_DECREF(k);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  180|      0|            Py_XDECREF(v);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  181|      0|            Py_DECREF(d);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  182|      0|            return NULL;
  183|      0|        }
  184|      2|        Py_DECREF(k);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  185|      2|        Py_DECREF(v);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  186|      2|    }
  187|      4|    if (!check_end(p_format, endchar)) {
  ------------------
  |  Branch (187:9): [True: 0, False: 4]
  ------------------
  188|      0|        Py_DECREF(d);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  189|      0|        return NULL;
  190|      0|    }
  191|      4|    return d;
  192|      4|}
modsupport.c:do_mktuple:
  258|     30|{
  259|     30|    PyObject *v;
  260|     30|    Py_ssize_t i;
  261|     30|    if (n < 0)
  ------------------
  |  Branch (261:9): [True: 0, False: 30]
  ------------------
  262|      0|        return NULL;
  263|       |    /* Note that we can't bail immediately on error as this will leak
  264|       |       refcounts on any 'N' arguments. */
  265|     30|    if ((v = PyTuple_New(n)) == NULL) {
  ------------------
  |  Branch (265:9): [True: 0, False: 30]
  ------------------
  266|      0|        do_ignore(p_format, p_va, endchar, n);
  267|      0|        return NULL;
  268|      0|    }
  269|    104|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (269:17): [True: 74, False: 30]
  ------------------
  270|     74|        PyObject *w = do_mkvalue(p_format, p_va);
  271|     74|        if (w == NULL) {
  ------------------
  |  Branch (271:13): [True: 0, False: 74]
  ------------------
  272|      0|            do_ignore(p_format, p_va, endchar, n - i - 1);
  273|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  274|      0|            return NULL;
  275|      0|        }
  276|     74|        PyTuple_SET_ITEM(v, i, w);
  ------------------
  |  |   40|     74|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     74|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|     74|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     74|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  277|     74|    }
  278|     30|    if (!check_end(p_format, endchar)) {
  ------------------
  |  Branch (278:9): [True: 0, False: 30]
  ------------------
  279|      0|        Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  280|      0|        return NULL;
  281|      0|    }
  282|     30|    return v;
  283|     30|}
modsupport.c:countformat:
   55|    116|{
   56|    116|    Py_ssize_t count = 0;
   57|    116|    int level = 0;
   58|    548|    while (level > 0 || *format != endchar) {
  ------------------
  |  Branch (58:12): [True: 112, False: 436]
  |  Branch (58:25): [True: 320, False: 116]
  ------------------
   59|    432|        switch (*format) {
   60|      0|        case '\0':
  ------------------
  |  Branch (60:9): [True: 0, False: 432]
  ------------------
   61|       |            /* Premature end */
   62|      0|            PyErr_SetString(PyExc_SystemError,
   63|      0|                            "unmatched paren in format");
   64|      0|            return -1;
   65|     30|        case '(':
  ------------------
  |  Branch (65:9): [True: 30, False: 402]
  ------------------
   66|     30|        case '[':
  ------------------
  |  Branch (66:9): [True: 0, False: 432]
  ------------------
   67|     34|        case '{':
  ------------------
  |  Branch (67:9): [True: 4, False: 428]
  ------------------
   68|     34|            if (level == 0) {
  ------------------
  |  Branch (68:17): [True: 34, False: 0]
  ------------------
   69|     34|                count++;
   70|     34|            }
   71|     34|            level++;
   72|     34|            break;
   73|     30|        case ')':
  ------------------
  |  Branch (73:9): [True: 30, False: 402]
  ------------------
   74|     30|        case ']':
  ------------------
  |  Branch (74:9): [True: 0, False: 432]
  ------------------
   75|     34|        case '}':
  ------------------
  |  Branch (75:9): [True: 4, False: 428]
  ------------------
   76|     34|            level--;
   77|     34|            break;
   78|      0|        case '#':
  ------------------
  |  Branch (78:9): [True: 0, False: 432]
  ------------------
   79|      0|        case '&':
  ------------------
  |  Branch (79:9): [True: 0, False: 432]
  ------------------
   80|      0|        case ',':
  ------------------
  |  Branch (80:9): [True: 0, False: 432]
  ------------------
   81|      0|        case ':':
  ------------------
  |  Branch (81:9): [True: 0, False: 432]
  ------------------
   82|      0|        case ' ':
  ------------------
  |  Branch (82:9): [True: 0, False: 432]
  ------------------
   83|      0|        case '\t':
  ------------------
  |  Branch (83:9): [True: 0, False: 432]
  ------------------
   84|      0|            break;
   85|    364|        default:
  ------------------
  |  Branch (85:9): [True: 364, False: 68]
  ------------------
   86|    364|            if (level == 0) {
  ------------------
  |  Branch (86:17): [True: 286, False: 78]
  ------------------
   87|    286|                count++;
   88|    286|            }
   89|    432|        }
   90|    432|        format++;
   91|    432|    }
   92|    116|    return count;
   93|    116|}
modsupport.c:do_mkstack:
  227|     54|{
  228|     54|    Py_ssize_t i;
  229|       |
  230|     54|    if (n < 0) {
  ------------------
  |  Branch (230:9): [True: 0, False: 54]
  ------------------
  231|      0|        return -1;
  232|      0|    }
  233|       |    /* Note that we can't bail immediately on error as this will leak
  234|       |       refcounts on any 'N' arguments. */
  235|    268|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (235:17): [True: 214, False: 54]
  ------------------
  236|    214|        PyObject *w = do_mkvalue(p_format, p_va);
  237|    214|        if (w == NULL) {
  ------------------
  |  Branch (237:13): [True: 0, False: 214]
  ------------------
  238|      0|            do_ignore(p_format, p_va, endchar, n - i - 1);
  239|      0|            goto error;
  240|      0|        }
  241|    214|        stack[i] = w;
  242|    214|    }
  243|     54|    if (!check_end(p_format, endchar)) {
  ------------------
  |  Branch (243:9): [True: 0, False: 54]
  ------------------
  244|      0|        goto error;
  245|      0|    }
  246|     54|    return 0;
  247|       |
  248|      0|error:
  249|      0|    n = i;
  250|      0|    for (i=0; i < n; i++) {
  ------------------
  |  Branch (250:15): [True: 0, False: 0]
  ------------------
  251|      0|        Py_DECREF(stack[i]);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  252|      0|    }
  253|      0|    return -1;
  254|     54|}

PyOS_snprintf:
   42|      4|{
   43|      4|    int rc;
   44|      4|    va_list va;
   45|       |
   46|      4|    va_start(va, format);
   47|      4|    rc = PyOS_vsnprintf(str, size, format, va);
   48|       |    va_end(va);
   49|      4|    return rc;
   50|      4|}
PyOS_vsnprintf:
   54|      4|{
   55|      4|    assert(str != NULL);
  ------------------
  |  Branch (55:5): [True: 4, False: 0]
  ------------------
   56|      4|    assert(size > 0);
  ------------------
  |  Branch (56:5): [True: 4, False: 0]
  ------------------
   57|      4|    assert(size <= (INT_MAX - 1));
  ------------------
  |  Branch (57:5): [True: 4, False: 0]
  ------------------
   58|      4|    assert(format != NULL);
  ------------------
  |  Branch (58:5): [True: 4, False: 0]
  ------------------
   59|       |
   60|      4|    int len;  /* # bytes written, excluding \0 */
   61|       |    /* We take a size_t as input but return an int.  Sanity check
   62|       |     * our input so that it won't cause an overflow in the
   63|       |     * vsnprintf return value.  */
   64|      4|    if (size > INT_MAX - 1) {
  ------------------
  |  Branch (64:9): [True: 0, False: 4]
  ------------------
   65|      0|        len = -666;
   66|      0|        goto Done;
   67|      0|    }
   68|       |
   69|       |#if defined(_MSC_VER)
   70|       |    len = _vsnprintf(str, size, format, va);
   71|       |#else
   72|      4|    len = vsnprintf(str, size, format, va);
   73|      4|#endif
   74|       |
   75|      4|Done:
   76|      4|    if (size > 0) {
  ------------------
  |  Branch (76:9): [True: 4, False: 0]
  ------------------
   77|      4|        str[size-1] = '\0';
   78|      4|    }
   79|      4|    return len;
   80|      4|}

_PyPathConfig_GetGlobalModuleSearchPath:
   49|      2|{
   50|      2|    return _Py_path_config.module_search_path;
   51|      2|}
_PyPathConfig_ReadGlobal:
   78|      4|{
   79|      4|    PyStatus status = _PyStatus_OK();
  ------------------
  |  |   24|      4|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
   80|       |
   81|      4|#define COPY(ATTR) \
   82|      4|    do { \
   83|      4|        if (_Py_path_config.ATTR && !config->ATTR) { \
   84|      4|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.ATTR); \
   85|      4|            if (_PyStatus_EXCEPTION(status)) goto done; \
   86|      4|        } \
   87|      4|    } while (0)
   88|       |
   89|      4|#define COPY2(ATTR, SRCATTR) \
   90|      4|    do { \
   91|      4|        if (_Py_path_config.SRCATTR && !config->ATTR) { \
   92|      4|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.SRCATTR); \
   93|      4|            if (_PyStatus_EXCEPTION(status)) goto done; \
   94|      4|        } \
   95|      4|    } while (0)
   96|       |
   97|      4|#define COPY_INT(ATTR) \
   98|      4|    do { \
   99|      4|        assert(_Py_path_config.ATTR >= 0); \
  100|      4|        if ((_Py_path_config.ATTR >= 0) && (config->ATTR <= 0)) { \
  101|      4|            config->ATTR = _Py_path_config.ATTR; \
  102|      4|        } \
  103|      4|    } while (0)
  104|       |
  105|      4|    COPY(prefix);
  ------------------
  |  |   82|      4|    do { \
  |  |   83|      4|        if (_Py_path_config.ATTR && !config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (83:13): [True: 0, False: 4]
  |  |  |  Branch (83:37): [True: 0, False: 0]
  |  |  ------------------
  |  |   84|      0|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.ATTR); \
  |  |   85|      0|            if (_PyStatus_EXCEPTION(status)) goto done; \
  |  |  ------------------
  |  |  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      0|        } \
  |  |   87|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (87:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  106|      4|    COPY(exec_prefix);
  ------------------
  |  |   82|      4|    do { \
  |  |   83|      4|        if (_Py_path_config.ATTR && !config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (83:13): [True: 0, False: 4]
  |  |  |  Branch (83:37): [True: 0, False: 0]
  |  |  ------------------
  |  |   84|      0|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.ATTR); \
  |  |   85|      0|            if (_PyStatus_EXCEPTION(status)) goto done; \
  |  |  ------------------
  |  |  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      0|        } \
  |  |   87|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (87:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  107|      4|    COPY(stdlib_dir);
  ------------------
  |  |   82|      4|    do { \
  |  |   83|      4|        if (_Py_path_config.ATTR && !config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (83:13): [True: 0, False: 4]
  |  |  |  Branch (83:37): [True: 0, False: 0]
  |  |  ------------------
  |  |   84|      0|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.ATTR); \
  |  |   85|      0|            if (_PyStatus_EXCEPTION(status)) goto done; \
  |  |  ------------------
  |  |  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      0|        } \
  |  |   87|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (87:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  108|      4|    COPY(program_name);
  ------------------
  |  |   82|      4|    do { \
  |  |   83|      4|        if (_Py_path_config.ATTR && !config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (83:13): [True: 0, False: 4]
  |  |  |  Branch (83:37): [True: 0, False: 0]
  |  |  ------------------
  |  |   84|      0|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.ATTR); \
  |  |   85|      0|            if (_PyStatus_EXCEPTION(status)) goto done; \
  |  |  ------------------
  |  |  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      0|        } \
  |  |   87|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (87:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  109|      4|    COPY(home);
  ------------------
  |  |   82|      4|    do { \
  |  |   83|      4|        if (_Py_path_config.ATTR && !config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (83:13): [True: 0, False: 4]
  |  |  |  Branch (83:37): [True: 0, False: 0]
  |  |  ------------------
  |  |   84|      0|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.ATTR); \
  |  |   85|      0|            if (_PyStatus_EXCEPTION(status)) goto done; \
  |  |  ------------------
  |  |  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      0|        } \
  |  |   87|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (87:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  110|      4|    COPY2(executable, program_full_path);
  ------------------
  |  |   90|      4|    do { \
  |  |   91|      4|        if (_Py_path_config.SRCATTR && !config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (91:13): [True: 0, False: 4]
  |  |  |  Branch (91:40): [True: 0, False: 0]
  |  |  ------------------
  |  |   92|      0|            status = PyConfig_SetString(config, &config->ATTR, _Py_path_config.SRCATTR); \
  |  |   93|      0|            if (_PyStatus_EXCEPTION(status)) goto done; \
  |  |  ------------------
  |  |  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   94|      0|        } \
  |  |   95|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (95:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  111|      4|    COPY_INT(_is_python_build);
  ------------------
  |  |   98|      4|    do { \
  |  |   99|      4|        assert(_Py_path_config.ATTR >= 0); \
  |  |  100|      4|        if ((_Py_path_config.ATTR >= 0) && (config->ATTR <= 0)) { \
  |  |  ------------------
  |  |  |  Branch (100:13): [True: 4, False: 0]
  |  |  |  Branch (100:44): [True: 4, False: 0]
  |  |  ------------------
  |  |  101|      4|            config->ATTR = _Py_path_config.ATTR; \
  |  |  102|      4|        } \
  |  |  103|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (103:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
  |  Branch (111:5): [True: 4, False: 0]
  ------------------
  112|       |    // module_search_path must be initialised - not read
  113|      4|#undef COPY
  114|      4|#undef COPY2
  115|      4|#undef COPY_INT
  116|       |
  117|      4|done:
  118|      4|    return status;
  119|      4|}
_PyPathConfig_UpdateGlobal:
  123|      2|{
  124|      2|#define COPY(ATTR) \
  125|      2|    do { \
  126|      2|        if (config->ATTR) { \
  127|      2|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  128|      2|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->ATTR); \
  129|      2|            if (!_Py_path_config.ATTR) goto error; \
  130|      2|        } \
  131|      2|    } while (0)
  132|       |
  133|      2|#define COPY2(ATTR, SRCATTR) \
  134|      2|    do { \
  135|      2|        if (config->SRCATTR) { \
  136|      2|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  137|      2|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->SRCATTR); \
  138|      2|            if (!_Py_path_config.ATTR) goto error; \
  139|      2|        } \
  140|      2|    } while (0)
  141|       |
  142|      2|#define COPY_INT(ATTR) \
  143|      2|    do { \
  144|      2|        if (config->ATTR > 0) { \
  145|      2|            _Py_path_config.ATTR = config->ATTR; \
  146|      2|        } \
  147|      2|    } while (0)
  148|       |
  149|      2|    COPY(prefix);
  ------------------
  |  |  125|      2|    do { \
  |  |  126|      2|        if (config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (126:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  127|      2|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  |  |  128|      2|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->ATTR); \
  |  |  129|      2|            if (!_Py_path_config.ATTR) goto error; \
  |  |  ------------------
  |  |  |  Branch (129:17): [True: 0, False: 2]
  |  |  ------------------
  |  |  130|      2|        } \
  |  |  131|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (131:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  150|      2|    COPY(exec_prefix);
  ------------------
  |  |  125|      2|    do { \
  |  |  126|      2|        if (config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (126:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  127|      2|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  |  |  128|      2|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->ATTR); \
  |  |  129|      2|            if (!_Py_path_config.ATTR) goto error; \
  |  |  ------------------
  |  |  |  Branch (129:17): [True: 0, False: 2]
  |  |  ------------------
  |  |  130|      2|        } \
  |  |  131|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (131:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  151|      2|    COPY(stdlib_dir);
  ------------------
  |  |  125|      2|    do { \
  |  |  126|      2|        if (config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (126:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  127|      2|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  |  |  128|      2|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->ATTR); \
  |  |  129|      2|            if (!_Py_path_config.ATTR) goto error; \
  |  |  ------------------
  |  |  |  Branch (129:17): [True: 0, False: 2]
  |  |  ------------------
  |  |  130|      2|        } \
  |  |  131|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (131:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  152|      2|    COPY(program_name);
  ------------------
  |  |  125|      2|    do { \
  |  |  126|      2|        if (config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (126:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  127|      2|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  |  |  128|      2|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->ATTR); \
  |  |  129|      2|            if (!_Py_path_config.ATTR) goto error; \
  |  |  ------------------
  |  |  |  Branch (129:17): [True: 0, False: 2]
  |  |  ------------------
  |  |  130|      2|        } \
  |  |  131|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (131:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  153|      2|    COPY(home);
  ------------------
  |  |  125|      2|    do { \
  |  |  126|      2|        if (config->ATTR) { \
  |  |  ------------------
  |  |  |  Branch (126:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  127|      0|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  |  |  128|      0|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->ATTR); \
  |  |  129|      0|            if (!_Py_path_config.ATTR) goto error; \
  |  |  ------------------
  |  |  |  Branch (129:17): [True: 0, False: 0]
  |  |  ------------------
  |  |  130|      0|        } \
  |  |  131|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (131:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  154|      2|    COPY2(program_full_path, executable);
  ------------------
  |  |  134|      2|    do { \
  |  |  135|      2|        if (config->SRCATTR) { \
  |  |  ------------------
  |  |  |  Branch (135:13): [True: 2, False: 0]
  |  |  ------------------
  |  |  136|      2|            _PyMem_DefaultRawFree(_Py_path_config.ATTR); \
  |  |  137|      2|            _Py_path_config.ATTR = _PyMem_DefaultRawWcsdup(config->SRCATTR); \
  |  |  138|      2|            if (!_Py_path_config.ATTR) goto error; \
  |  |  ------------------
  |  |  |  Branch (138:17): [True: 0, False: 2]
  |  |  ------------------
  |  |  139|      2|        } \
  |  |  140|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (140:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  155|      2|    COPY_INT(_is_python_build);
  ------------------
  |  |  143|      2|    do { \
  |  |  144|      2|        if (config->ATTR > 0) { \
  |  |  ------------------
  |  |  |  Branch (144:13): [True: 0, False: 2]
  |  |  ------------------
  |  |  145|      0|            _Py_path_config.ATTR = config->ATTR; \
  |  |  146|      0|        } \
  |  |  147|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (147:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
  156|      2|#undef COPY
  157|      2|#undef COPY2
  158|      2|#undef COPY_INT
  159|       |
  160|      2|    _PyMem_DefaultRawFree(_Py_path_config.module_search_path);
  161|      2|    _Py_path_config.module_search_path = NULL;
  162|      2|    _PyMem_DefaultRawFree(_Py_path_config.calculated_module_search_path);
  163|      2|    _Py_path_config.calculated_module_search_path = NULL;
  164|       |
  165|      2|    do {
  166|      2|        size_t cch = 1;
  167|      8|        for (Py_ssize_t i = 0; i < config->module_search_paths.length; ++i) {
  ------------------
  |  Branch (167:32): [True: 6, False: 2]
  ------------------
  168|      6|            cch += 1 + wcslen(config->module_search_paths.items[i]);
  169|      6|        }
  170|       |
  171|      2|        wchar_t *path = (wchar_t*)_PyMem_DefaultRawMalloc(sizeof(wchar_t) * cch);
  172|      2|        if (!path) {
  ------------------
  |  Branch (172:13): [True: 0, False: 2]
  ------------------
  173|      0|            goto error;
  174|      0|        }
  175|      2|        wchar_t *p = path;
  176|      8|        for (Py_ssize_t i = 0; i < config->module_search_paths.length; ++i) {
  ------------------
  |  Branch (176:32): [True: 6, False: 2]
  ------------------
  177|      6|            wcscpy(p, config->module_search_paths.items[i]);
  178|      6|            p = wcschr(p, L'\0');
  179|      6|            *p++ = DELIM;
  ------------------
  |  |   51|      6|#  define DELIM L':'
  ------------------
  180|      6|            *p = L'\0';
  181|      6|        }
  182|       |
  183|      4|        do {
  184|      4|            *p = L'\0';
  185|      4|        } while (p != path && *--p == DELIM);
  ------------------
  |  |   51|      4|#  define DELIM L':'
  ------------------
  |  Branch (185:18): [True: 4, False: 0]
  |  Branch (185:31): [True: 2, False: 2]
  ------------------
  186|      2|        _Py_path_config.calculated_module_search_path = path;
  187|      2|    } while (0);
  ------------------
  |  Branch (187:14): [Folded, False: 2]
  ------------------
  188|       |
  189|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  190|       |
  191|      0|error:
  192|      0|    return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  193|      2|}
_Py_GetStdlibDir:
  290|      2|{
  291|      2|    wchar_t *stdlib_dir = _Py_path_config.stdlib_dir;
  292|      2|    if (stdlib_dir != NULL && stdlib_dir[0] != L'\0') {
  ------------------
  |  Branch (292:9): [True: 2, False: 0]
  |  Branch (292:31): [True: 2, False: 0]
  ------------------
  293|      2|        return stdlib_dir;
  294|      2|    }
  295|      0|    return NULL;
  296|      2|}

_Py_ClearFileSystemEncoding:
   27|      2|{
   28|      2|_Py_COMP_DIAG_PUSH
   29|      2|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
   30|      2|    if (!Py_HasFileSystemDefaultEncoding && Py_FileSystemDefaultEncoding) {
  ------------------
  |  Branch (30:9): [True: 2, False: 0]
  |  Branch (30:45): [True: 0, False: 2]
  ------------------
   31|      0|        PyMem_RawFree((char*)Py_FileSystemDefaultEncoding);
   32|      0|        Py_FileSystemDefaultEncoding = NULL;
   33|      0|    }
   34|      2|    if (!_Py_HasFileSystemDefaultEncodeErrors && Py_FileSystemDefaultEncodeErrors) {
  ------------------
  |  Branch (34:9): [True: 2, False: 0]
  |  Branch (34:50): [True: 0, False: 2]
  ------------------
   35|      0|        PyMem_RawFree((char*)Py_FileSystemDefaultEncodeErrors);
   36|       |        Py_FileSystemDefaultEncodeErrors = NULL;
   37|      0|    }
   38|      2|_Py_COMP_DIAG_POP
   39|      2|}
_Py_SetFileSystemEncoding:
   49|      2|{
   50|      2|    char *encoding2 = _PyMem_RawStrdup(encoding);
   51|      2|    if (encoding2 == NULL) {
  ------------------
  |  Branch (51:9): [True: 0, False: 2]
  ------------------
   52|      0|        return -1;
   53|      0|    }
   54|       |
   55|      2|    char *errors2 = _PyMem_RawStrdup(errors);
   56|      2|    if (errors2 == NULL) {
  ------------------
  |  Branch (56:9): [True: 0, False: 2]
  ------------------
   57|      0|        PyMem_RawFree(encoding2);
   58|      0|        return -1;
   59|      0|    }
   60|       |
   61|      2|    _Py_ClearFileSystemEncoding();
   62|       |
   63|      2|_Py_COMP_DIAG_PUSH
   64|      2|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
   65|      2|    Py_FileSystemDefaultEncoding = encoding2;
   66|      2|    Py_HasFileSystemDefaultEncoding = 0;
   67|       |
   68|      2|    Py_FileSystemDefaultEncodeErrors = errors2;
   69|      2|    _Py_HasFileSystemDefaultEncodeErrors = 0;
   70|      2|_Py_COMP_DIAG_POP
   71|      2|    return 0;
   72|      2|}
_PyArgv_AsWstrList:
   80|      4|{
   81|      4|    PyWideStringList wargv = _PyWideStringList_INIT;
  ------------------
  |  |   53|      4|#define _PyWideStringList_INIT (PyWideStringList){.length = 0, .items = NULL}
  ------------------
   82|      4|    if (args->use_bytes_argv) {
  ------------------
  |  Branch (82:9): [True: 0, False: 4]
  ------------------
   83|      0|        size_t size = sizeof(wchar_t*) * args->argc;
   84|      0|        wargv.items = (wchar_t **)PyMem_RawMalloc(size);
   85|      0|        if (wargv.items == NULL) {
  ------------------
  |  Branch (85:13): [True: 0, False: 0]
  ------------------
   86|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
   87|      0|        }
   88|       |
   89|      0|        for (Py_ssize_t i = 0; i < args->argc; i++) {
  ------------------
  |  Branch (89:32): [True: 0, False: 0]
  ------------------
   90|      0|            size_t len;
   91|      0|            wchar_t *arg = Py_DecodeLocale(args->bytes_argv[i], &len);
   92|      0|            if (arg == NULL) {
  ------------------
  |  Branch (92:17): [True: 0, False: 0]
  ------------------
   93|      0|                _PyWideStringList_Clear(&wargv);
   94|      0|                return DECODE_LOCALE_ERR("command line arguments", len);
  ------------------
  |  |  189|      0|    ((LEN) == (size_t)-2) \
  |  |  ------------------
  |  |  |  Branch (189:5): [True: 0, False: 0]
  |  |  ------------------
  |  |  190|      0|     ? _PyStatus_ERR("cannot decode " NAME) \
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  |  |  191|      0|     : _PyStatus_NO_MEMORY()
  |  |  ------------------
  |  |  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  |  |  ------------------
  |  |  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   95|      0|            }
   96|      0|            wargv.items[i] = arg;
   97|      0|            wargv.length++;
   98|      0|        }
   99|       |
  100|      0|        _PyWideStringList_Clear(list);
  101|      0|        *list = wargv;
  102|      0|    }
  103|      4|    else {
  104|      4|        wargv.length = args->argc;
  105|      4|        wargv.items = (wchar_t **)args->wchar_argv;
  106|      4|        if (_PyWideStringList_Copy(list, &wargv) < 0) {
  ------------------
  |  Branch (106:13): [True: 0, False: 4]
  ------------------
  107|      0|            return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  108|      0|        }
  109|      4|    }
  110|      4|    return _PyStatus_OK();
  ------------------
  |  |   24|      4|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  111|      4|}
_PyPreCmdline_Clear:
  118|      4|{
  119|      4|    _PyWideStringList_Clear(&cmdline->argv);
  120|      4|    _PyWideStringList_Clear(&cmdline->xoptions);
  121|      4|}
_PyPreCmdline_SetArgv:
  126|      4|{
  127|      4|    return _PyArgv_AsWstrList(args, &cmdline->argv);
  128|      4|}
_PyPreCmdline_SetConfig:
  163|      2|{
  164|      2|#define COPY_ATTR(ATTR) \
  165|      2|    config->ATTR = cmdline->ATTR
  166|       |
  167|      2|    PyStatus status = _PyWideStringList_Extend(&config->xoptions, &cmdline->xoptions);
  168|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  169|      0|        return status;
  170|      0|    }
  171|       |
  172|      2|    COPY_ATTR(isolated);
  ------------------
  |  |  165|      2|    config->ATTR = cmdline->ATTR
  ------------------
  173|      2|    COPY_ATTR(use_environment);
  ------------------
  |  |  165|      2|    config->ATTR = cmdline->ATTR
  ------------------
  174|      2|    COPY_ATTR(dev_mode);
  ------------------
  |  |  165|      2|    config->ATTR = cmdline->ATTR
  ------------------
  175|      2|    COPY_ATTR(warn_default_encoding);
  ------------------
  |  |  165|      2|    config->ATTR = cmdline->ATTR
  ------------------
  176|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  177|       |
  178|      2|#undef COPY_ATTR
  179|      2|}
_PyPreCmdline_Read:
  232|      6|{
  233|      6|    precmdline_get_preconfig(cmdline, preconfig);
  234|       |
  235|      6|    if (preconfig->parse_argv) {
  ------------------
  |  Branch (235:9): [True: 6, False: 0]
  ------------------
  236|      6|        PyStatus status = precmdline_parse_cmdline(cmdline);
  237|      6|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      6|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 6]
  |  |  ------------------
  ------------------
  238|      0|            return status;
  239|      0|        }
  240|      6|    }
  241|       |
  242|       |    /* isolated, use_environment */
  243|      6|    if (cmdline->isolated < 0) {
  ------------------
  |  Branch (243:9): [True: 0, False: 6]
  ------------------
  244|      0|        cmdline->isolated = 0;
  245|      0|    }
  246|      6|    if (cmdline->isolated > 0) {
  ------------------
  |  Branch (246:9): [True: 0, False: 6]
  ------------------
  247|      0|        cmdline->use_environment = 0;
  248|      0|    }
  249|      6|    if (cmdline->use_environment < 0) {
  ------------------
  |  Branch (249:9): [True: 0, False: 6]
  ------------------
  250|      0|        cmdline->use_environment = 0;
  251|      0|    }
  252|       |
  253|       |    /* dev_mode */
  254|      6|    if ((cmdline->dev_mode < 0)
  ------------------
  |  Branch (254:9): [True: 2, False: 4]
  ------------------
  255|      2|        && (_Py_get_xoption(&cmdline->xoptions, L"dev")
  ------------------
  |  Branch (255:13): [True: 0, False: 2]
  ------------------
  256|      2|            || _Py_GetEnv(cmdline->use_environment, "PYTHONDEVMODE")))
  ------------------
  |  Branch (256:16): [True: 0, False: 2]
  ------------------
  257|      0|    {
  258|      0|        cmdline->dev_mode = 1;
  259|      0|    }
  260|      6|    if (cmdline->dev_mode < 0) {
  ------------------
  |  Branch (260:9): [True: 2, False: 4]
  ------------------
  261|      2|        cmdline->dev_mode = 0;
  262|      2|    }
  263|       |
  264|       |    // warn_default_encoding
  265|      6|    if (_Py_get_xoption(&cmdline->xoptions, L"warn_default_encoding")
  ------------------
  |  Branch (265:9): [True: 0, False: 6]
  ------------------
  266|      6|            || _Py_GetEnv(cmdline->use_environment, "PYTHONWARNDEFAULTENCODING"))
  ------------------
  |  Branch (266:16): [True: 0, False: 6]
  ------------------
  267|      0|    {
  268|      0|        cmdline->warn_default_encoding = 1;
  269|      0|    }
  270|       |
  271|      6|    assert(cmdline->use_environment >= 0);
  ------------------
  |  Branch (271:5): [True: 6, False: 0]
  ------------------
  272|      6|    assert(cmdline->isolated >= 0);
  ------------------
  |  Branch (272:5): [True: 6, False: 0]
  ------------------
  273|      6|    assert(cmdline->dev_mode >= 0);
  ------------------
  |  Branch (273:5): [True: 6, False: 0]
  ------------------
  274|      6|    assert(cmdline->warn_default_encoding >= 0);
  ------------------
  |  Branch (274:5): [True: 6, False: 0]
  ------------------
  275|       |
  276|      6|    return _PyStatus_OK();
  ------------------
  |  |   24|      6|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  277|      6|}
_PyPreConfig_InitCompatConfig:
  285|     12|{
  286|     12|    memset(config, 0, sizeof(*config));
  287|       |
  288|     12|    config->_config_init = (int)_PyConfig_INIT_COMPAT;
  289|     12|    config->parse_argv = 0;
  290|     12|    config->isolated = -1;
  291|     12|    config->use_environment = -1;
  292|     12|    config->configure_locale = 1;
  293|       |
  294|       |    /* gh-80624: C locale coercion (PEP 538) is disabled by default using
  295|       |       the Compat configuration.
  296|       |
  297|       |       Py_UTF8Mode=0 disables the UTF-8 mode. PYTHONUTF8 environment variable
  298|       |       is ignored (even if use_environment=1). */
  299|     12|    config->utf8_mode = 1;
  300|     12|    config->coerce_c_locale = 0;
  301|     12|    config->coerce_c_locale_warn = 0;
  302|       |
  303|     12|    config->dev_mode = -1;
  304|     12|    config->allocator = PYMEM_ALLOCATOR_NOT_SET;
  305|       |#ifdef MS_WINDOWS
  306|       |    config->legacy_windows_fs_encoding = -1;
  307|       |#endif
  308|     12|}
PyPreConfig_InitPythonConfig:
  313|     12|{
  314|     12|    _PyPreConfig_InitCompatConfig(config);
  315|       |
  316|     12|    config->_config_init = (int)_PyConfig_INIT_PYTHON;
  317|     12|    config->isolated = 0;
  318|     12|    config->parse_argv = 1;
  319|     12|    config->use_environment = 1;
  320|       |    /* Set to -1 to enable C locale coercion (PEP 538) depending on
  321|       |       the LC_CTYPE locale, PYTHONUTF8 and PYTHONCOERCECLOCALE
  322|       |       environment variables. */
  323|     12|    config->coerce_c_locale = -1;
  324|     12|    config->coerce_c_locale_warn = -1;
  325|     12|    config->utf8_mode = -1;
  326|       |#ifdef MS_WINDOWS
  327|       |    config->legacy_windows_fs_encoding = 0;
  328|       |#endif
  329|     12|}
_PyPreConfig_InitFromPreConfig:
  352|      8|{
  353|      8|    PyPreConfig_InitPythonConfig(config);
  354|      8|    preconfig_copy(config, config2);
  355|      8|    return _PyStatus_OK();
  ------------------
  |  |   24|      8|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  356|      8|}
_PyPreConfig_InitFromConfig:
  361|      2|{
  362|      2|    _PyConfigInitEnum config_init = (_PyConfigInitEnum)config->_config_init;
  363|      2|    switch (config_init) {
  364|      2|    case _PyConfig_INIT_PYTHON:
  ------------------
  |  Branch (364:5): [True: 2, False: 0]
  ------------------
  365|      2|        PyPreConfig_InitPythonConfig(preconfig);
  366|      2|        break;
  367|      0|    case _PyConfig_INIT_ISOLATED:
  ------------------
  |  Branch (367:5): [True: 0, False: 2]
  ------------------
  368|      0|        PyPreConfig_InitIsolatedConfig(preconfig);
  369|      0|        break;
  370|      0|    case _PyConfig_INIT_COMPAT:
  ------------------
  |  Branch (370:5): [True: 0, False: 2]
  ------------------
  371|      0|    default:
  ------------------
  |  Branch (371:5): [True: 0, False: 2]
  ------------------
  372|      0|        _PyPreConfig_InitCompatConfig(preconfig);
  373|      2|    }
  374|       |
  375|      2|    _PyPreConfig_GetConfig(preconfig, config);
  376|      2|}
_PyPreConfig_GetConfig:
  450|      4|{
  451|      4|#define COPY_ATTR(ATTR) \
  452|      4|    if (config->ATTR != -1) { \
  453|      4|        preconfig->ATTR = config->ATTR; \
  454|      4|    }
  455|       |
  456|      4|    COPY_ATTR(parse_argv);
  ------------------
  |  |  452|      4|    if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (452:9): [True: 4, False: 0]
  |  |  ------------------
  |  |  453|      4|        preconfig->ATTR = config->ATTR; \
  |  |  454|      4|    }
  ------------------
  457|      4|    COPY_ATTR(isolated);
  ------------------
  |  |  452|      4|    if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (452:9): [True: 4, False: 0]
  |  |  ------------------
  |  |  453|      4|        preconfig->ATTR = config->ATTR; \
  |  |  454|      4|    }
  ------------------
  458|      4|    COPY_ATTR(use_environment);
  ------------------
  |  |  452|      4|    if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (452:9): [True: 4, False: 0]
  |  |  ------------------
  |  |  453|      4|        preconfig->ATTR = config->ATTR; \
  |  |  454|      4|    }
  ------------------
  459|      4|    COPY_ATTR(dev_mode);
  ------------------
  |  |  452|      4|    if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (452:9): [True: 0, False: 4]
  |  |  ------------------
  |  |  453|      0|        preconfig->ATTR = config->ATTR; \
  |  |  454|      0|    }
  ------------------
  460|       |
  461|      4|#undef COPY_ATTR
  462|      4|}
_Py_GetEnv:
  528|     72|{
  529|     72|    assert(use_environment >= 0);
  ------------------
  |  Branch (529:5): [True: 72, False: 0]
  ------------------
  530|       |
  531|     72|    if (!use_environment) {
  ------------------
  |  Branch (531:9): [True: 0, False: 72]
  ------------------
  532|      0|        return NULL;
  533|      0|    }
  534|       |
  535|     72|    const char *var = getenv(name);
  536|     72|    if (var && var[0] != '\0') {
  ------------------
  |  Branch (536:9): [True: 0, False: 72]
  |  Branch (536:16): [True: 0, False: 0]
  ------------------
  537|      0|        return var;
  538|      0|    }
  539|     72|    else {
  540|       |        return NULL;
  541|     72|    }
  542|     72|}
_Py_get_env_flag:
  565|     12|{
  566|     12|    const char *var = _Py_GetEnv(use_environment, name);
  567|     12|    if (!var) {
  ------------------
  |  Branch (567:9): [True: 12, False: 0]
  ------------------
  568|     12|        return;
  569|     12|    }
  570|      0|    int value;
  571|      0|    if (_Py_str_to_int(var, &value) < 0 || value < 0) {
  ------------------
  |  Branch (571:9): [True: 0, False: 0]
  |  Branch (571:44): [True: 0, False: 0]
  ------------------
  572|       |        /* PYTHONDEBUG=text and PYTHONDEBUG=-2 behave as PYTHONDEBUG=1 */
  573|      0|        value = 1;
  574|      0|    }
  575|      0|    if (*flag < value) {
  ------------------
  |  Branch (575:9): [True: 0, False: 0]
  ------------------
  576|      0|        *flag = value;
  577|      0|    }
  578|      0|}
_Py_get_xoption:
  583|     44|{
  584|     44|    for (Py_ssize_t i=0; i < xoptions->length; i++) {
  ------------------
  |  Branch (584:26): [True: 0, False: 44]
  ------------------
  585|      0|        const wchar_t *option = xoptions->items[i];
  586|      0|        size_t len;
  587|      0|        const wchar_t *sep = wcschr(option, L'=');
  588|      0|        if (sep != NULL) {
  ------------------
  |  Branch (588:13): [True: 0, False: 0]
  ------------------
  589|      0|            len = (sep - option);
  590|      0|        }
  591|      0|        else {
  592|      0|            len = wcslen(option);
  593|      0|        }
  594|      0|        if (wcsncmp(option, name, len) == 0 && name[len] == L'\0') {
  ------------------
  |  Branch (594:13): [True: 0, False: 0]
  |  Branch (594:48): [True: 0, False: 0]
  ------------------
  595|      0|            return option;
  596|      0|        }
  597|      0|    }
  598|     44|    return NULL;
  599|     44|}
_PyPreConfig_Read:
  783|      2|{
  784|      2|    PyStatus status;
  785|       |
  786|      2|    status = _PyRuntime_Initialize();
  787|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  788|      0|        return status;
  789|      0|    }
  790|       |
  791|      2|    preconfig_get_global_vars(config);
  792|       |
  793|       |    /* Copy LC_CTYPE locale, since it's modified later */
  794|      2|    const char *loc = setlocale(LC_CTYPE, NULL);
  795|      2|    if (loc == NULL) {
  ------------------
  |  Branch (795:9): [True: 0, False: 2]
  ------------------
  796|      0|        return _PyStatus_ERR("failed to LC_CTYPE locale");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  797|      0|    }
  798|      2|    char *init_ctype_locale = _PyMem_RawStrdup(loc);
  799|      2|    if (init_ctype_locale == NULL) {
  ------------------
  |  Branch (799:9): [True: 0, False: 2]
  ------------------
  800|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  801|      0|    }
  802|       |
  803|       |    /* Save the config to be able to restore it if encodings change */
  804|      2|    PyPreConfig save_config;
  805|       |
  806|      2|    status = _PyPreConfig_InitFromPreConfig(&save_config, config);
  807|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  808|      0|        return status;
  809|      0|    }
  810|       |
  811|       |    /* Set LC_CTYPE to the user preferred locale */
  812|      2|    if (config->configure_locale) {
  ------------------
  |  Branch (812:9): [True: 2, False: 0]
  ------------------
  813|      2|        _Py_SetLocaleFromEnv(LC_CTYPE);
  814|      2|    }
  815|       |
  816|      2|    PyPreConfig save_runtime_config;
  817|      2|    preconfig_copy(&save_runtime_config, &_PyRuntime.preconfig);
  818|       |
  819|      2|    _PyPreCmdline cmdline = _PyPreCmdline_INIT;
  ------------------
  |  |  111|      2|    (_PyPreCmdline){ \
  |  |  112|      2|        .use_environment = -1, \
  |  |  113|      2|        .isolated = -1, \
  |  |  114|      2|        .dev_mode = -1}
  ------------------
  820|      2|    int locale_coerced = 0;
  821|      2|    int loops = 0;
  822|       |
  823|      4|    while (1) {
  ------------------
  |  Branch (823:12): [True: 4, Folded]
  ------------------
  824|      4|        int utf8_mode = config->utf8_mode;
  825|       |
  826|       |        /* Watchdog to prevent an infinite loop */
  827|      4|        loops++;
  828|      4|        if (loops == 3) {
  ------------------
  |  Branch (828:13): [True: 0, False: 4]
  ------------------
  829|      0|            status = _PyStatus_ERR("Encoding changed twice while "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  830|      0|                                   "reading the configuration");
  831|      0|            goto done;
  832|      0|        }
  833|       |
  834|       |        /* bpo-34207: Py_DecodeLocale() and Py_EncodeLocale() depend
  835|       |           on the utf8_mode and legacy_windows_fs_encoding members
  836|       |           of _PyRuntime.preconfig. */
  837|      4|        preconfig_copy(&_PyRuntime.preconfig, config);
  838|       |
  839|      4|        if (args) {
  ------------------
  |  Branch (839:13): [True: 4, False: 0]
  ------------------
  840|       |            // Set command line arguments at each iteration. If they are bytes
  841|       |            // strings, they are decoded from the new encoding.
  842|      4|            status = _PyPreCmdline_SetArgv(&cmdline, args);
  843|      4|            if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      4|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 4]
  |  |  ------------------
  ------------------
  844|      0|                goto done;
  845|      0|            }
  846|      4|        }
  847|       |
  848|      4|        status = preconfig_read(config, &cmdline);
  849|      4|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      4|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 4]
  |  |  ------------------
  ------------------
  850|      0|            goto done;
  851|      0|        }
  852|       |
  853|       |        /* The legacy C locale assumes ASCII as the default text encoding, which
  854|       |         * causes problems not only for the CPython runtime, but also other
  855|       |         * components like GNU readline.
  856|       |         *
  857|       |         * Accordingly, when the CLI detects it, it attempts to coerce it to a
  858|       |         * more capable UTF-8 based alternative.
  859|       |         *
  860|       |         * See the documentation of the PYTHONCOERCECLOCALE setting for more
  861|       |         * details.
  862|       |         */
  863|      4|        int encoding_changed = 0;
  864|      4|        if (config->coerce_c_locale && !locale_coerced) {
  ------------------
  |  Branch (864:13): [True: 2, False: 2]
  |  Branch (864:40): [True: 1, False: 1]
  ------------------
  865|      1|            locale_coerced = 1;
  866|      1|            _Py_CoerceLegacyLocale(0);
  867|      1|            encoding_changed = 1;
  868|      1|        }
  869|       |
  870|      4|        if (utf8_mode == -1) {
  ------------------
  |  Branch (870:13): [True: 2, False: 2]
  ------------------
  871|      2|            if (config->utf8_mode == 1) {
  ------------------
  |  Branch (871:17): [True: 2, False: 0]
  ------------------
  872|       |                /* UTF-8 Mode enabled */
  873|      2|                encoding_changed = 1;
  874|      2|            }
  875|      2|        }
  876|      2|        else {
  877|      2|            if (config->utf8_mode != utf8_mode) {
  ------------------
  |  Branch (877:17): [True: 0, False: 2]
  ------------------
  878|      0|                encoding_changed = 1;
  879|      0|            }
  880|      2|        }
  881|       |
  882|      4|        if (!encoding_changed) {
  ------------------
  |  Branch (882:13): [True: 2, False: 2]
  ------------------
  883|      2|            break;
  884|      2|        }
  885|       |
  886|       |        /* Reset the configuration before reading again the configuration,
  887|       |           just keep UTF-8 Mode and coerce C locale value. */
  888|      2|        int new_utf8_mode = config->utf8_mode;
  889|      2|        int new_coerce_c_locale = config->coerce_c_locale;
  890|      2|        preconfig_copy(config, &save_config);
  891|      2|        config->utf8_mode = new_utf8_mode;
  892|      2|        config->coerce_c_locale = new_coerce_c_locale;
  893|       |
  894|       |        /* The encoding changed: read again the configuration
  895|       |           with the new encoding */
  896|      2|    }
  897|      2|    status = _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  898|       |
  899|      2|done:
  900|       |    // Revert side effects
  901|       |    setlocale(LC_CTYPE, init_ctype_locale);
  902|      2|    PyMem_RawFree(init_ctype_locale);
  903|      2|    preconfig_copy(&_PyRuntime.preconfig, &save_runtime_config);
  904|      2|    _PyPreCmdline_Clear(&cmdline);
  905|      2|    return status;
  906|      2|}
_PyPreConfig_Write:
  923|      2|{
  924|      2|    PyPreConfig config;
  925|       |
  926|      2|    PyStatus status = _PyPreConfig_InitFromPreConfig(&config, src_config);
  927|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  928|      0|        return status;
  929|      0|    }
  930|       |
  931|      2|    if (_Py_IsCoreInitialized()) {
  ------------------
  |  Branch (931:9): [True: 0, False: 2]
  ------------------
  932|       |        /* bpo-34008: Calling this functions after Py_Initialize() ignores
  933|       |           the new configuration. */
  934|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  935|      0|    }
  936|       |
  937|      2|    PyMemAllocatorName name = (PyMemAllocatorName)config.allocator;
  938|      2|    if (name != PYMEM_ALLOCATOR_NOT_SET) {
  ------------------
  |  Branch (938:9): [True: 0, False: 2]
  ------------------
  939|      0|        if (_PyMem_SetupAllocators(name) < 0) {
  ------------------
  |  Branch (939:13): [True: 0, False: 0]
  ------------------
  940|      0|            return _PyStatus_ERR("Unknown PYTHONMALLOC allocator");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  941|      0|        }
  942|      0|    }
  943|       |
  944|      2|    preconfig_set_global_vars(&config);
  945|       |
  946|      2|    if (config.configure_locale) {
  ------------------
  |  Branch (946:9): [True: 2, False: 0]
  ------------------
  947|      2|        if (config.coerce_c_locale) {
  ------------------
  |  Branch (947:13): [True: 1, False: 1]
  ------------------
  948|      1|            if (!_Py_CoerceLegacyLocale(config.coerce_c_locale_warn)) {
  ------------------
  |  Branch (948:17): [True: 0, False: 1]
  ------------------
  949|       |                /* C locale not coerced */
  950|      0|                config.coerce_c_locale = 0;
  951|      0|            }
  952|      1|        }
  953|       |
  954|       |        /* Set LC_CTYPE to the user preferred locale */
  955|      2|        _Py_SetLocaleFromEnv(LC_CTYPE);
  956|      2|    }
  957|       |
  958|       |    /* Write the new pre-configuration into _PyRuntime */
  959|      2|    preconfig_copy(&_PyRuntime.preconfig, &config);
  960|       |
  961|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  962|      2|}
preconfig.c:precmdline_get_preconfig:
  133|      6|{
  134|      6|#define COPY_ATTR(ATTR) \
  135|      6|    if (config->ATTR != -1) { \
  136|      6|        cmdline->ATTR = config->ATTR; \
  137|      6|    }
  138|       |
  139|      6|    COPY_ATTR(isolated);
  ------------------
  |  |  135|      6|    if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (135:9): [True: 6, False: 0]
  |  |  ------------------
  |  |  136|      6|        cmdline->ATTR = config->ATTR; \
  |  |  137|      6|    }
  ------------------
  140|      6|    COPY_ATTR(use_environment);
  ------------------
  |  |  135|      6|    if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (135:9): [True: 6, False: 0]
  |  |  ------------------
  |  |  136|      6|        cmdline->ATTR = config->ATTR; \
  |  |  137|      6|    }
  ------------------
  141|      6|    COPY_ATTR(dev_mode);
  ------------------
  |  |  135|      6|    if (config->ATTR != -1) { \
  |  |  ------------------
  |  |  |  Branch (135:9): [True: 2, False: 4]
  |  |  ------------------
  |  |  136|      2|        cmdline->ATTR = config->ATTR; \
  |  |  137|      2|    }
  ------------------
  142|       |
  143|      6|#undef COPY_ATTR
  144|      6|}
preconfig.c:precmdline_parse_cmdline:
  185|      6|{
  186|      6|    const PyWideStringList *argv = &cmdline->argv;
  187|       |
  188|      6|    _PyOS_ResetGetOpt();
  189|       |    /* Don't log parsing errors into stderr here: PyConfig_Read()
  190|       |       is responsible for that */
  191|      6|    _PyOS_opterr = 0;
  192|      6|    do {
  193|      6|        int longindex = -1;
  194|      6|        int c = _PyOS_GetOpt(argv->length, argv->items, &longindex);
  195|       |
  196|      6|        if (c == EOF || c == 'c' || c == 'm') {
  ------------------
  |  Branch (196:13): [True: 6, False: 0]
  |  Branch (196:25): [True: 0, False: 0]
  |  Branch (196:37): [True: 0, False: 0]
  ------------------
  197|      6|            break;
  198|      6|        }
  199|       |
  200|      0|        switch (c) {
  201|      0|        case 'E':
  ------------------
  |  Branch (201:9): [True: 0, False: 0]
  ------------------
  202|      0|            cmdline->use_environment = 0;
  203|      0|            break;
  204|       |
  205|      0|        case 'I':
  ------------------
  |  Branch (205:9): [True: 0, False: 0]
  ------------------
  206|      0|            cmdline->isolated = 1;
  207|      0|            break;
  208|       |
  209|      0|        case 'X':
  ------------------
  |  Branch (209:9): [True: 0, False: 0]
  ------------------
  210|      0|        {
  211|      0|            PyStatus status = PyWideStringList_Append(&cmdline->xoptions,
  212|      0|                                                      _PyOS_optarg);
  213|      0|            if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  214|      0|                return status;
  215|      0|            }
  216|      0|            break;
  217|      0|        }
  218|       |
  219|      0|        default:
  ------------------
  |  Branch (219:9): [True: 0, False: 0]
  ------------------
  220|       |            /* ignore other argument:
  221|       |               handled by PyConfig_Read() */
  222|      0|            break;
  223|      0|        }
  224|      0|    } while (1);
  ------------------
  |  Branch (224:14): [True: 0, Folded]
  ------------------
  225|       |
  226|      6|    return _PyStatus_OK();
  ------------------
  |  |   24|      6|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  227|      6|}
preconfig.c:preconfig_copy:
  381|     20|{
  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  383|       |
  384|     20|    COPY_ATTR(_config_init);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  385|     20|    COPY_ATTR(parse_argv);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  386|     20|    COPY_ATTR(isolated);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  387|     20|    COPY_ATTR(use_environment);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  388|     20|    COPY_ATTR(configure_locale);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  389|     20|    COPY_ATTR(dev_mode);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  390|     20|    COPY_ATTR(coerce_c_locale);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  391|     20|    COPY_ATTR(coerce_c_locale_warn);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  392|     20|    COPY_ATTR(utf8_mode);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  393|     20|    COPY_ATTR(allocator);
  ------------------
  |  |  382|     20|#define COPY_ATTR(ATTR) config->ATTR = config2->ATTR
  ------------------
  394|       |#ifdef MS_WINDOWS
  395|       |    COPY_ATTR(legacy_windows_fs_encoding);
  396|       |#endif
  397|       |
  398|     20|#undef COPY_ATTR
  399|     20|}
preconfig.c:preconfig_get_global_vars:
  467|      2|{
  468|      2|    if (config->_config_init != _PyConfig_INIT_COMPAT) {
  ------------------
  |  Branch (468:9): [True: 2, False: 0]
  ------------------
  469|       |        /* Python and Isolated configuration ignore global variables */
  470|      2|        return;
  471|      2|    }
  472|       |
  473|      0|#define COPY_FLAG(ATTR, VALUE) \
  474|      0|    if (config->ATTR < 0) { \
  475|      0|        config->ATTR = VALUE; \
  476|      0|    }
  477|      0|#define COPY_NOT_FLAG(ATTR, VALUE) \
  478|      0|    if (config->ATTR < 0) { \
  479|      0|        config->ATTR = !(VALUE); \
  480|      0|    }
  481|       |
  482|      0|_Py_COMP_DIAG_PUSH
  483|      0|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
  484|      0|    COPY_FLAG(isolated, Py_IsolatedFlag);
  ------------------
  |  |  474|      0|    if (config->ATTR < 0) { \
  |  |  ------------------
  |  |  |  Branch (474:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  475|      0|        config->ATTR = VALUE; \
  |  |  476|      0|    }
  ------------------
  485|      0|    COPY_NOT_FLAG(use_environment, Py_IgnoreEnvironmentFlag);
  ------------------
  |  |  478|      0|    if (config->ATTR < 0) { \
  |  |  ------------------
  |  |  |  Branch (478:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  479|      0|        config->ATTR = !(VALUE); \
  |  |  480|      0|    }
  ------------------
  486|      0|    if (Py_UTF8Mode > 0) {
  ------------------
  |  Branch (486:9): [True: 0, False: 0]
  ------------------
  487|      0|        config->utf8_mode = Py_UTF8Mode;
  488|      0|    }
  489|       |#ifdef MS_WINDOWS
  490|       |    COPY_FLAG(legacy_windows_fs_encoding, Py_LegacyWindowsFSEncodingFlag);
  491|       |#endif
  492|      0|_Py_COMP_DIAG_POP
  493|       |
  494|      0|#undef COPY_FLAG
  495|      0|#undef COPY_NOT_FLAG
  496|      0|}
preconfig.c:preconfig_read:
  731|      4|{
  732|      4|    PyStatus status;
  733|       |
  734|      4|    status = _PyPreCmdline_Read(cmdline, config);
  735|      4|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      4|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 4]
  |  |  ------------------
  ------------------
  736|      0|        return status;
  737|      0|    }
  738|       |
  739|      4|    precmdline_set_preconfig(cmdline, config);
  740|       |
  741|       |    /* legacy_windows_fs_encoding, coerce_c_locale, utf8_mode */
  742|       |#ifdef MS_WINDOWS
  743|       |    _Py_get_env_flag(config->use_environment,
  744|       |                     &config->legacy_windows_fs_encoding,
  745|       |                     "PYTHONLEGACYWINDOWSFSENCODING");
  746|       |#endif
  747|       |
  748|      4|    preconfig_init_coerce_c_locale(config);
  749|       |
  750|      4|    status = preconfig_init_utf8_mode(config, cmdline);
  751|      4|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      4|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 4]
  |  |  ------------------
  ------------------
  752|      0|        return status;
  753|      0|    }
  754|       |
  755|       |    /* allocator */
  756|      4|    status = preconfig_init_allocator(config);
  757|      4|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      4|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 4]
  |  |  ------------------
  ------------------
  758|      0|        return status;
  759|      0|    }
  760|       |
  761|      4|    assert(config->coerce_c_locale >= 0);
  ------------------
  |  Branch (761:5): [True: 4, False: 0]
  ------------------
  762|      4|    assert(config->coerce_c_locale_warn >= 0);
  ------------------
  |  Branch (762:5): [True: 4, False: 0]
  ------------------
  763|       |#ifdef MS_WINDOWS
  764|       |    assert(config->legacy_windows_fs_encoding >= 0);
  765|       |#endif
  766|      4|    assert(config->utf8_mode >= 0);
  ------------------
  |  Branch (766:5): [True: 4, False: 0]
  ------------------
  767|      4|    assert(config->isolated >= 0);
  ------------------
  |  Branch (767:5): [True: 4, False: 0]
  ------------------
  768|      4|    assert(config->use_environment >= 0);
  ------------------
  |  Branch (768:5): [True: 4, False: 0]
  ------------------
  769|      4|    assert(config->dev_mode >= 0);
  ------------------
  |  Branch (769:5): [True: 4, False: 0]
  ------------------
  770|       |
  771|      4|    return _PyStatus_OK();
  ------------------
  |  |   24|      4|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  772|      4|}
preconfig.c:precmdline_set_preconfig:
  149|      4|{
  150|      4|#define COPY_ATTR(ATTR) \
  151|      4|    config->ATTR = cmdline->ATTR
  152|       |
  153|      4|    COPY_ATTR(isolated);
  ------------------
  |  |  151|      4|    config->ATTR = cmdline->ATTR
  ------------------
  154|      4|    COPY_ATTR(use_environment);
  ------------------
  |  |  151|      4|    config->ATTR = cmdline->ATTR
  ------------------
  155|      4|    COPY_ATTR(dev_mode);
  ------------------
  |  |  151|      4|    config->ATTR = cmdline->ATTR
  ------------------
  156|       |
  157|      4|#undef COPY_ATTR
  158|      4|}
preconfig.c:preconfig_init_coerce_c_locale:
  659|      4|{
  660|      4|    if (!config->configure_locale) {
  ------------------
  |  Branch (660:9): [True: 0, False: 4]
  ------------------
  661|      0|        config->coerce_c_locale = 0;
  662|      0|        config->coerce_c_locale_warn = 0;
  663|      0|        return;
  664|      0|    }
  665|       |
  666|      4|    const char *env = _Py_GetEnv(config->use_environment, "PYTHONCOERCECLOCALE");
  667|      4|    if (env) {
  ------------------
  |  Branch (667:9): [True: 0, False: 4]
  ------------------
  668|      0|        if (strcmp(env, "0") == 0) {
  ------------------
  |  Branch (668:13): [True: 0, False: 0]
  ------------------
  669|      0|            if (config->coerce_c_locale < 0) {
  ------------------
  |  Branch (669:17): [True: 0, False: 0]
  ------------------
  670|      0|                config->coerce_c_locale = 0;
  671|      0|            }
  672|      0|        }
  673|      0|        else if (strcmp(env, "warn") == 0) {
  ------------------
  |  Branch (673:18): [True: 0, False: 0]
  ------------------
  674|      0|            if (config->coerce_c_locale_warn < 0) {
  ------------------
  |  Branch (674:17): [True: 0, False: 0]
  ------------------
  675|      0|                config->coerce_c_locale_warn = 1;
  676|      0|            }
  677|      0|        }
  678|      0|        else {
  679|      0|            if (config->coerce_c_locale < 0) {
  ------------------
  |  Branch (679:17): [True: 0, False: 0]
  ------------------
  680|      0|                config->coerce_c_locale = 1;
  681|      0|            }
  682|      0|        }
  683|      0|    }
  684|       |
  685|       |    /* Test if coerce_c_locale equals to -1 or equals to 1:
  686|       |       PYTHONCOERCECLOCALE=1 doesn't imply that the C locale is always coerced.
  687|       |       It is only coerced if the LC_CTYPE locale is "C". */
  688|      4|    if (config->coerce_c_locale < 0 || config->coerce_c_locale == 1) {
  ------------------
  |  Branch (688:9): [True: 2, False: 2]
  |  Branch (688:40): [True: 0, False: 2]
  ------------------
  689|       |        /* The C locale enables the C locale coercion (PEP 538) */
  690|      2|        if (_Py_LegacyLocaleDetected(0)) {
  ------------------
  |  Branch (690:13): [True: 1, False: 1]
  ------------------
  691|      1|            config->coerce_c_locale = 2;
  692|      1|        }
  693|      1|        else {
  694|      1|            config->coerce_c_locale = 0;
  695|      1|        }
  696|      2|    }
  697|       |
  698|      4|    if (config->coerce_c_locale_warn < 0) {
  ------------------
  |  Branch (698:9): [True: 4, False: 0]
  ------------------
  699|      4|        config->coerce_c_locale_warn = 0;
  700|      4|    }
  701|      4|}
preconfig.c:preconfig_init_utf8_mode:
  604|      4|{
  605|       |#ifdef MS_WINDOWS
  606|       |    if (config->legacy_windows_fs_encoding) {
  607|       |        config->utf8_mode = 0;
  608|       |    }
  609|       |#endif
  610|       |
  611|      4|    if (config->utf8_mode >= 0) {
  ------------------
  |  Branch (611:9): [True: 2, False: 2]
  ------------------
  612|      2|        return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  613|      2|    }
  614|       |
  615|      2|    const wchar_t *xopt;
  616|      2|    xopt = _Py_get_xoption(&cmdline->xoptions, L"utf8");
  617|      2|    if (xopt) {
  ------------------
  |  Branch (617:9): [True: 0, False: 2]
  ------------------
  618|      0|        const wchar_t *sep = wcschr(xopt, L'=');
  619|      0|        if (sep) {
  ------------------
  |  Branch (619:13): [True: 0, False: 0]
  ------------------
  620|      0|            xopt = sep + 1;
  621|      0|            if (wcscmp(xopt, L"1") == 0) {
  ------------------
  |  Branch (621:17): [True: 0, False: 0]
  ------------------
  622|      0|                config->utf8_mode = 1;
  623|      0|            }
  624|      0|            else if (wcscmp(xopt, L"0") == 0) {
  ------------------
  |  Branch (624:22): [True: 0, False: 0]
  ------------------
  625|      0|                config->utf8_mode = 0;
  626|      0|            }
  627|      0|            else {
  628|      0|                return _PyStatus_ERR("invalid -X utf8 option value");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  629|      0|            }
  630|      0|        }
  631|      0|        else {
  632|      0|            config->utf8_mode = 1;
  633|      0|        }
  634|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  635|      0|    }
  636|       |
  637|      2|    const char *opt = _Py_GetEnv(config->use_environment, "PYTHONUTF8");
  638|      2|    if (opt) {
  ------------------
  |  Branch (638:9): [True: 0, False: 2]
  ------------------
  639|      0|        if (strcmp(opt, "1") == 0) {
  ------------------
  |  Branch (639:13): [True: 0, False: 0]
  ------------------
  640|      0|            config->utf8_mode = 1;
  641|      0|        }
  642|      0|        else if (strcmp(opt, "0") == 0) {
  ------------------
  |  Branch (642:18): [True: 0, False: 0]
  ------------------
  643|      0|            config->utf8_mode = 0;
  644|      0|        }
  645|      0|        else {
  646|      0|            return _PyStatus_ERR("invalid PYTHONUTF8 environment "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  647|      0|                                "variable value");
  648|      0|        }
  649|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  650|      0|    }
  651|       |
  652|      2|    config->utf8_mode = 1;
  653|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  654|      2|}
preconfig.c:preconfig_init_allocator:
  706|      4|{
  707|      4|    if (config->allocator == PYMEM_ALLOCATOR_NOT_SET) {
  ------------------
  |  Branch (707:9): [True: 4, False: 0]
  ------------------
  708|       |        /* bpo-34247. The PYTHONMALLOC environment variable has the priority
  709|       |           over PYTHONDEV env var and "-X dev" command line option.
  710|       |           For example, PYTHONMALLOC=malloc PYTHONDEVMODE=1 sets the memory
  711|       |           allocators to "malloc" (and not to "debug"). */
  712|      4|        const char *envvar = _Py_GetEnv(config->use_environment, "PYTHONMALLOC");
  713|      4|        if (envvar) {
  ------------------
  |  Branch (713:13): [True: 0, False: 4]
  ------------------
  714|      0|            PyMemAllocatorName name;
  715|      0|            if (_PyMem_GetAllocatorName(envvar, &name) < 0) {
  ------------------
  |  Branch (715:17): [True: 0, False: 0]
  ------------------
  716|      0|                return _PyStatus_ERR("PYTHONMALLOC: unknown allocator");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  717|      0|            }
  718|      0|            config->allocator = (int)name;
  719|      0|        }
  720|      4|    }
  721|       |
  722|      4|    if (config->dev_mode && config->allocator == PYMEM_ALLOCATOR_NOT_SET) {
  ------------------
  |  Branch (722:9): [True: 0, False: 4]
  |  Branch (722:29): [True: 0, False: 0]
  ------------------
  723|      0|        config->allocator = PYMEM_ALLOCATOR_DEBUG;
  724|      0|    }
  725|      4|    return _PyStatus_OK();
  ------------------
  |  |   24|      4|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  726|      4|}
preconfig.c:preconfig_set_global_vars:
  501|      2|{
  502|      2|#define COPY_FLAG(ATTR, VAR) \
  503|      2|    if (config->ATTR >= 0) { \
  504|      2|        VAR = config->ATTR; \
  505|      2|    }
  506|      2|#define COPY_NOT_FLAG(ATTR, VAR) \
  507|      2|    if (config->ATTR >= 0) { \
  508|      2|        VAR = !config->ATTR; \
  509|      2|    }
  510|       |
  511|      2|_Py_COMP_DIAG_PUSH
  512|      2|_Py_COMP_DIAG_IGNORE_DEPR_DECLS
  513|      2|    COPY_FLAG(isolated, Py_IsolatedFlag);
  ------------------
  |  |  503|      2|    if (config->ATTR >= 0) { \
  |  |  ------------------
  |  |  |  Branch (503:9): [True: 2, False: 0]
  |  |  ------------------
  |  |  504|      2|        VAR = config->ATTR; \
  |  |  505|      2|    }
  ------------------
  514|      2|    COPY_NOT_FLAG(use_environment, Py_IgnoreEnvironmentFlag);
  ------------------
  |  |  507|      2|    if (config->ATTR >= 0) { \
  |  |  ------------------
  |  |  |  Branch (507:9): [True: 2, False: 0]
  |  |  ------------------
  |  |  508|      2|        VAR = !config->ATTR; \
  |  |  509|      2|    }
  ------------------
  515|       |#ifdef MS_WINDOWS
  516|       |    COPY_FLAG(legacy_windows_fs_encoding, Py_LegacyWindowsFSEncodingFlag);
  517|       |#endif
  518|      2|    COPY_FLAG(utf8_mode, Py_UTF8Mode);
  ------------------
  |  |  503|      2|    if (config->ATTR >= 0) { \
  |  |  ------------------
  |  |  |  Branch (503:9): [True: 2, False: 0]
  |  |  ------------------
  |  |  504|      2|        VAR = config->ATTR; \
  |  |  505|      2|    }
  ------------------
  519|      2|_Py_COMP_DIAG_POP
  520|       |
  521|      2|#undef COPY_FLAG
  522|      2|#undef COPY_NOT_FLAG
  523|      2|}

Py_HashPointer:
  134|    328|{
  135|    328|    Py_hash_t hash = _Py_HashPointerRaw(ptr);
  136|    328|    if (hash == -1) {
  ------------------
  |  Branch (136:9): [True: 0, False: 328]
  ------------------
  137|      0|        hash = -2;
  138|      0|    }
  139|    328|    return hash;
  140|    328|}
PyObject_GenericHash:
  144|    234|{
  145|    234|    return Py_HashPointer(obj);
  146|    234|}
Py_HashBuffer:
  150|  18.9k|{
  151|       |    /*
  152|       |      We make the hash of the empty string be 0, rather than using
  153|       |      (prefix ^ suffix), since this slightly obfuscates the hash secret
  154|       |    */
  155|  18.9k|    if (len == 0) {
  ------------------
  |  Branch (155:9): [True: 2, False: 18.9k]
  ------------------
  156|      2|        return 0;
  157|      2|    }
  158|       |
  159|       |#ifdef Py_HASH_STATS
  160|       |    hashstats[(len <= Py_HASH_STATS_MAX) ? len : 0]++;
  161|       |#endif
  162|       |
  163|  18.9k|    Py_hash_t x;
  164|       |#if Py_HASH_CUTOFF > 0
  165|       |    if (len < Py_HASH_CUTOFF) {
  166|       |        /* Optimize hashing of very small strings with inline DJBX33A. */
  167|       |        Py_uhash_t hash;
  168|       |        const unsigned char *p = ptr;
  169|       |        hash = 5381; /* DJBX33A starts with 5381 */
  170|       |
  171|       |        switch(len) {
  172|       |            /* ((hash << 5) + hash) + *p == hash * 33 + *p */
  173|       |            case 7: hash = ((hash << 5) + hash) + *p++; _Py_FALLTHROUGH;
  174|       |            case 6: hash = ((hash << 5) + hash) + *p++; _Py_FALLTHROUGH;
  175|       |            case 5: hash = ((hash << 5) + hash) + *p++; _Py_FALLTHROUGH;
  176|       |            case 4: hash = ((hash << 5) + hash) + *p++; _Py_FALLTHROUGH;
  177|       |            case 3: hash = ((hash << 5) + hash) + *p++; _Py_FALLTHROUGH;
  178|       |            case 2: hash = ((hash << 5) + hash) + *p++; _Py_FALLTHROUGH;
  179|       |            case 1: hash = ((hash << 5) + hash) + *p++; break;
  180|       |            default:
  181|       |                Py_UNREACHABLE();
  182|       |        }
  183|       |        hash ^= len;
  184|       |        hash ^= (Py_uhash_t) _Py_HashSecret.djbx33a.suffix;
  185|       |        x = (Py_hash_t)hash;
  186|       |    }
  187|       |    else
  188|       |#endif /* Py_HASH_CUTOFF */
  189|  18.9k|    {
  190|  18.9k|        x = PyHash_Func.hash(ptr, len);
  191|  18.9k|    }
  192|       |
  193|  18.9k|    if (x == -1) {
  ------------------
  |  Branch (193:9): [True: 0, False: 18.9k]
  ------------------
  194|      0|        return -2;
  195|      0|    }
  196|  18.9k|    return x;
  197|  18.9k|}
PyHash_GetFuncDef:
  216|      2|{
  217|      2|    return &PyHash_Func;
  218|      2|}
pyhash.c:siphash13:
  371|  18.9k|siphash13(uint64_t k0, uint64_t k1, const void *src, Py_ssize_t src_sz) {
  372|  18.9k|    uint64_t b = (uint64_t)src_sz << 56;
  373|  18.9k|    const uint8_t *in = (const uint8_t*)src;
  374|       |
  375|  18.9k|    uint64_t v0 = k0 ^ 0x736f6d6570736575ULL;
  376|  18.9k|    uint64_t v1 = k1 ^ 0x646f72616e646f6dULL;
  377|  18.9k|    uint64_t v2 = k0 ^ 0x6c7967656e657261ULL;
  378|  18.9k|    uint64_t v3 = k1 ^ 0x7465646279746573ULL;
  379|       |
  380|  18.9k|    uint64_t t;
  381|  18.9k|    uint8_t *pt;
  382|       |
  383|  34.4k|    while (src_sz >= 8) {
  ------------------
  |  Branch (383:12): [True: 15.5k, False: 18.9k]
  ------------------
  384|  15.5k|        uint64_t mi;
  385|  15.5k|        memcpy(&mi, in, sizeof(mi));
  386|  15.5k|        mi = _le64toh(mi);
  ------------------
  |  |  332|  15.5k|#  define _le64toh(x) ((uint64_t)(x))
  ------------------
  387|  15.5k|        in += sizeof(mi);
  388|  15.5k|        src_sz -= sizeof(mi);
  389|  15.5k|        v3 ^= mi;
  390|  15.5k|        SINGLE_ROUND(v0,v1,v2,v3);
  ------------------
  |  |  362|  15.5k|    HALF_ROUND(v0,v1,v2,v3,13,16);  \
  |  |  ------------------
  |  |  |  |  356|  15.5k|    a += b; c += d;                 \
  |  |  |  |  357|  15.5k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  15.5k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  15.5k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  15.5k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  15.5k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  15.5k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  363|  15.5k|    HALF_ROUND(v2,v1,v0,v3,17,21);
  |  |  ------------------
  |  |  |  |  356|  15.5k|    a += b; c += d;                 \
  |  |  |  |  357|  15.5k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  15.5k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  15.5k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  15.5k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  15.5k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  15.5k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  391|  15.5k|        v0 ^= mi;
  392|  15.5k|    }
  393|       |
  394|  18.9k|    t = 0;
  395|  18.9k|    pt = (uint8_t *)&t;
  396|  18.9k|    switch (src_sz) {
  ------------------
  |  Branch (396:13): [True: 16.0k, False: 2.94k]
  ------------------
  397|  2.49k|        case 7: pt[6] = in[6]; _Py_FALLTHROUGH;
  ------------------
  |  |  644|  2.49k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
  |  Branch (397:9): [True: 2.49k, False: 16.4k]
  ------------------
  398|  5.35k|        case 6: pt[5] = in[5]; _Py_FALLTHROUGH;
  ------------------
  |  |  644|  5.35k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
  |  Branch (398:9): [True: 2.85k, False: 16.1k]
  ------------------
  399|  7.35k|        case 5: pt[4] = in[4]; _Py_FALLTHROUGH;
  ------------------
  |  |  644|  7.35k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
  |  Branch (399:9): [True: 1.99k, False: 16.9k]
  ------------------
  400|  9.69k|        case 4: memcpy(pt, in, sizeof(uint32_t)); break;
  ------------------
  |  Branch (400:9): [True: 2.34k, False: 16.6k]
  ------------------
  401|  2.15k|        case 3: pt[2] = in[2]; _Py_FALLTHROUGH;
  ------------------
  |  |  644|  2.15k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
  |  Branch (401:9): [True: 2.15k, False: 16.8k]
  ------------------
  402|  4.06k|        case 2: pt[1] = in[1]; _Py_FALLTHROUGH;
  ------------------
  |  |  644|  4.06k|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
  |  Branch (402:9): [True: 1.91k, False: 17.0k]
  ------------------
  403|  6.33k|        case 1: pt[0] = in[0]; break;
  ------------------
  |  Branch (403:9): [True: 2.27k, False: 16.7k]
  ------------------
  404|  18.9k|    }
  405|  18.9k|    b |= _le64toh(t);
  ------------------
  |  |  332|  18.9k|#  define _le64toh(x) ((uint64_t)(x))
  ------------------
  406|       |
  407|  18.9k|    v3 ^= b;
  408|  18.9k|    SINGLE_ROUND(v0,v1,v2,v3);
  ------------------
  |  |  362|  18.9k|    HALF_ROUND(v0,v1,v2,v3,13,16);  \
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  363|  18.9k|    HALF_ROUND(v2,v1,v0,v3,17,21);
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  409|  18.9k|    v0 ^= b;
  410|  18.9k|    v2 ^= 0xff;
  411|  18.9k|    SINGLE_ROUND(v0,v1,v2,v3);
  ------------------
  |  |  362|  18.9k|    HALF_ROUND(v0,v1,v2,v3,13,16);  \
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  363|  18.9k|    HALF_ROUND(v2,v1,v0,v3,17,21);
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  412|  18.9k|    SINGLE_ROUND(v0,v1,v2,v3);
  ------------------
  |  |  362|  18.9k|    HALF_ROUND(v0,v1,v2,v3,13,16);  \
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  363|  18.9k|    HALF_ROUND(v2,v1,v0,v3,17,21);
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  413|  18.9k|    SINGLE_ROUND(v0,v1,v2,v3);
  ------------------
  |  |  362|  18.9k|    HALF_ROUND(v0,v1,v2,v3,13,16);  \
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  363|  18.9k|    HALF_ROUND(v2,v1,v0,v3,17,21);
  |  |  ------------------
  |  |  |  |  356|  18.9k|    a += b; c += d;                 \
  |  |  |  |  357|  18.9k|    b = ROTATE(b, s) ^ a;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  358|  18.9k|    d = ROTATE(d, t) ^ c;           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  |  |  359|  18.9k|    a = ROTATE(a, 32);
  |  |  |  |  ------------------
  |  |  |  |  |  |  352|  18.9k|#  define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  414|       |
  415|       |    /* modified */
  416|  18.9k|    t = (v0 ^ v1) ^ (v2 ^ v3);
  417|  18.9k|    return t;
  418|  18.9k|}
pyhash.c:pysiphash:
  480|  18.9k|pysiphash(const void *src, Py_ssize_t src_sz) {
  481|  18.9k|    return (Py_hash_t)siphash13(
  482|  18.9k|        _le64toh(_Py_HashSecret.siphash.k0), _le64toh(_Py_HashSecret.siphash.k1),
  ------------------
  |  |  332|  18.9k|#  define _le64toh(x) ((uint64_t)(x))
  ------------------
                      _le64toh(_Py_HashSecret.siphash.k0), _le64toh(_Py_HashSecret.siphash.k1),
  ------------------
  |  |  332|  18.9k|#  define _le64toh(x) ((uint64_t)(x))
  ------------------
  483|  18.9k|        src, src_sz);
  484|  18.9k|}

_PyRuntime_Initialize:
  130|    154|{
  131|       |    /* XXX We only initialize once in the process, which aligns with
  132|       |       the static initialization of the former globals now found in
  133|       |       _PyRuntime.  However, _PyRuntime *should* be initialized with
  134|       |       every Py_Initialize() call, but doing so breaks the runtime.
  135|       |       This is because the runtime state is not properly finalized
  136|       |       currently. */
  137|    154|    if (runtime_initialized) {
  ------------------
  |  Branch (137:9): [True: 152, False: 2]
  ------------------
  138|    152|        return _PyStatus_OK();
  ------------------
  |  |   24|    152|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  139|    152|    }
  140|      2|    runtime_initialized = 1;
  141|       |
  142|      2|    return _PyRuntimeState_Init(&_PyRuntime);
  143|    154|}
_Py_IsCoreInitialized:
  170|      2|{
  171|      2|    return _PyRuntimeState_GetCoreInitialized(&_PyRuntime);
  172|      2|}
Py_IsInitialized:
  176|  2.24k|{
  177|  2.24k|    return _PyRuntimeState_GetInitialized(&_PyRuntime);
  178|  2.24k|}
_Py_LegacyLocaleDetected:
  203|      2|{
  204|      2|#ifndef MS_WINDOWS
  205|      2|    if (!warn) {
  ------------------
  |  Branch (205:9): [True: 2, False: 0]
  ------------------
  206|      2|        const char *locale_override = getenv("LC_ALL");
  207|      2|        if (locale_override != NULL && *locale_override != '\0') {
  ------------------
  |  Branch (207:13): [True: 0, False: 2]
  |  Branch (207:40): [True: 0, False: 0]
  ------------------
  208|       |            /* Don't coerce C locale if the LC_ALL environment variable
  209|       |               is set */
  210|      0|            return 0;
  211|      0|        }
  212|      2|    }
  213|       |
  214|       |    /* On non-Windows systems, the C locale is considered a legacy locale */
  215|       |    /* XXX (ncoghlan): some platforms (notably Mac OS X) don't appear to treat
  216|       |     *                 the POSIX locale as a simple alias for the C locale, so
  217|       |     *                 we may also want to check for that explicitly.
  218|       |     */
  219|      2|    const char *ctype_loc = setlocale(LC_CTYPE, NULL);
  220|      2|    if (ctype_loc == NULL) {
  ------------------
  |  Branch (220:9): [True: 0, False: 2]
  ------------------
  221|      0|        return 0;
  222|      0|    }
  223|      2|    return (strcmp(ctype_loc, "C") == 0 || strcmp(ctype_loc, "POSIX") == 0);
  ------------------
  |  Branch (223:13): [True: 1, False: 1]
  |  Branch (223:44): [True: 0, False: 1]
  ------------------
  224|       |#else
  225|       |    /* Windows uses code pages instead of locales, so no locale is legacy */
  226|       |    return 0;
  227|       |#endif
  228|      2|}
_Py_CoerceLegacyLocale:
  303|      2|{
  304|      2|    int coerced = 0;
  305|      2|#ifdef PY_COERCE_C_LOCALE
  306|      2|    char *oldloc = NULL;
  307|       |
  308|      2|    oldloc = _PyMem_RawStrdup(setlocale(LC_CTYPE, NULL));
  309|      2|    if (oldloc == NULL) {
  ------------------
  |  Branch (309:9): [True: 0, False: 2]
  ------------------
  310|      0|        return coerced;
  311|      0|    }
  312|       |
  313|      2|    const char *locale_override = getenv("LC_ALL");
  314|      2|    if (locale_override == NULL || *locale_override == '\0') {
  ------------------
  |  Branch (314:9): [True: 2, False: 0]
  |  Branch (314:36): [True: 0, False: 0]
  ------------------
  315|       |        /* LC_ALL is also not set (or is set to an empty string) */
  316|      2|        const _LocaleCoercionTarget *target = NULL;
  317|      2|        for (target = _TARGET_LOCALES; target->locale_name; target++) {
  ------------------
  |  Branch (317:40): [True: 2, False: 0]
  ------------------
  318|      2|            const char *new_locale = setlocale(LC_CTYPE,
  319|      2|                                               target->locale_name);
  320|      2|            if (new_locale != NULL) {
  ------------------
  |  Branch (320:17): [True: 2, False: 0]
  ------------------
  321|      2|#if !defined(_Py_FORCE_UTF8_LOCALE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
  322|       |                /* Also ensure that nl_langinfo works in this locale */
  323|      2|                char *codeset = nl_langinfo(CODESET);
  324|      2|                if (!codeset || *codeset == '\0') {
  ------------------
  |  Branch (324:21): [True: 0, False: 2]
  |  Branch (324:33): [True: 0, False: 2]
  ------------------
  325|       |                    /* CODESET is not set or empty, so skip coercion */
  326|      0|                    new_locale = NULL;
  327|      0|                    _Py_SetLocaleFromEnv(LC_CTYPE);
  328|      0|                    continue;
  329|      0|                }
  330|      2|#endif
  331|       |                /* Successfully configured locale, so make it the default */
  332|      2|                coerced = _coerce_default_locale_settings(warn, target);
  333|      2|                goto done;
  334|      2|            }
  335|      2|        }
  336|      2|    }
  337|       |    /* No C locale warning here, as Py_Initialize will emit one later */
  338|       |
  339|      0|    setlocale(LC_CTYPE, oldloc);
  340|       |
  341|      2|done:
  342|      2|    PyMem_RawFree(oldloc);
  343|      2|#endif
  344|      2|    return coerced;
  345|      0|}
_Py_SetLocaleFromEnv:
  353|      8|{
  354|      8|    char *res;
  355|       |#ifdef __ANDROID__
  356|       |    const char *locale;
  357|       |    const char **pvar;
  358|       |#ifdef PY_COERCE_C_LOCALE
  359|       |    const char *coerce_c_locale;
  360|       |#endif
  361|       |    const char *utf8_locale = "C.UTF-8";
  362|       |    const char *env_var_set[] = {
  363|       |        "LC_ALL",
  364|       |        "LC_CTYPE",
  365|       |        "LANG",
  366|       |        NULL,
  367|       |    };
  368|       |
  369|       |    /* Android setlocale(category, "") doesn't check the environment variables
  370|       |     * and incorrectly sets the "C" locale at API 24 and older APIs. We only
  371|       |     * check the environment variables listed in env_var_set. */
  372|       |    for (pvar=env_var_set; *pvar; pvar++) {
  373|       |        locale = getenv(*pvar);
  374|       |        if (locale != NULL && *locale != '\0') {
  375|       |            if (strcmp(locale, utf8_locale) == 0 ||
  376|       |                    strcmp(locale, "en_US.UTF-8") == 0) {
  377|       |                return setlocale(category, utf8_locale);
  378|       |            }
  379|       |            return setlocale(category, "C");
  380|       |        }
  381|       |    }
  382|       |
  383|       |    /* Android uses UTF-8, so explicitly set the locale to C.UTF-8 if none of
  384|       |     * LC_ALL, LC_CTYPE, or LANG is set to a non-empty string.
  385|       |     * Quote from POSIX section "8.2 Internationalization Variables":
  386|       |     * "4. If the LANG environment variable is not set or is set to the empty
  387|       |     * string, the implementation-defined default locale shall be used." */
  388|       |
  389|       |#ifdef PY_COERCE_C_LOCALE
  390|       |    coerce_c_locale = getenv("PYTHONCOERCECLOCALE");
  391|       |    if (coerce_c_locale == NULL || strcmp(coerce_c_locale, "0") != 0) {
  392|       |        /* Some other ported code may check the environment variables (e.g. in
  393|       |         * extension modules), so we make sure that they match the locale
  394|       |         * configuration */
  395|       |        if (setenv("LC_CTYPE", utf8_locale, 1)) {
  396|       |            fprintf(stderr, "Warning: failed setting the LC_CTYPE "
  397|       |                            "environment variable to %s\n", utf8_locale);
  398|       |        }
  399|       |    }
  400|       |#endif
  401|       |    res = setlocale(category, utf8_locale);
  402|       |#else /* !defined(__ANDROID__) */
  403|      8|    res = setlocale(category, "");
  404|      8|#endif
  405|      8|    _Py_ResetForceASCII();
  406|      8|    return res;
  407|      8|}
_Py_PreInitializeFromPyArgv:
 1046|      2|{
 1047|      2|    PyStatus status;
 1048|       |
 1049|      2|    if (src_config == NULL) {
  ------------------
  |  Branch (1049:9): [True: 0, False: 2]
  ------------------
 1050|      0|        return _PyStatus_ERR("preinitialization config is NULL");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1051|      0|    }
 1052|       |
 1053|      2|    status = _PyRuntime_Initialize();
 1054|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1055|      0|        return status;
 1056|      0|    }
 1057|      2|    _PyRuntimeState *runtime = &_PyRuntime;
 1058|       |
 1059|      2|    if (runtime->preinitialized) {
  ------------------
  |  Branch (1059:9): [True: 0, False: 2]
  ------------------
 1060|       |        /* If it's already configured: ignored the new configuration */
 1061|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1062|      0|    }
 1063|       |
 1064|       |    /* Note: preinitializing remains 1 on error, it is only set to 0
 1065|       |       at exit on success. */
 1066|      2|    runtime->preinitializing = 1;
 1067|       |
 1068|      2|    PyPreConfig config;
 1069|       |
 1070|      2|    status = _PyPreConfig_InitFromPreConfig(&config, src_config);
 1071|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1072|      0|        return status;
 1073|      0|    }
 1074|       |
 1075|      2|    status = _PyPreConfig_Read(&config, args);
 1076|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1077|      0|        return status;
 1078|      0|    }
 1079|       |
 1080|      2|    status = _PyPreConfig_Write(&config);
 1081|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1082|      0|        return status;
 1083|      0|    }
 1084|       |
 1085|      2|    runtime->preinitializing = 0;
 1086|      2|    runtime->preinitialized = 1;
 1087|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1088|      2|}
_Py_PreInitializeFromConfig:
 1117|    148|{
 1118|    148|    assert(config != NULL);
  ------------------
  |  Branch (1118:5): [True: 148, False: 0]
  ------------------
 1119|       |
 1120|    148|    PyStatus status = _PyRuntime_Initialize();
 1121|    148|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|    148|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 148]
  |  |  ------------------
  ------------------
 1122|      0|        return status;
 1123|      0|    }
 1124|    148|    _PyRuntimeState *runtime = &_PyRuntime;
 1125|       |
 1126|    148|    if (runtime->preinitialized) {
  ------------------
  |  Branch (1126:9): [True: 146, False: 2]
  ------------------
 1127|       |        /* Already initialized: do nothing */
 1128|    146|        return _PyStatus_OK();
  ------------------
  |  |   24|    146|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1129|    146|    }
 1130|       |
 1131|      2|    PyPreConfig preconfig;
 1132|       |
 1133|      2|    _PyPreConfig_InitFromConfig(&preconfig, config);
 1134|       |
 1135|      2|    if (!config->parse_argv) {
  ------------------
  |  Branch (1135:9): [True: 0, False: 2]
  ------------------
 1136|      0|        return Py_PreInitialize(&preconfig);
 1137|      0|    }
 1138|      2|    else if (args == NULL) {
  ------------------
  |  Branch (1138:14): [True: 2, False: 0]
  ------------------
 1139|      2|        _PyArgv config_args = {
 1140|      2|            .use_bytes_argv = 0,
 1141|      2|            .argc = config->argv.length,
 1142|      2|            .wchar_argv = config->argv.items};
 1143|      2|        return _Py_PreInitializeFromPyArgv(&preconfig, &config_args);
 1144|      2|    }
 1145|      0|    else {
 1146|      0|        return _Py_PreInitializeFromPyArgv(&preconfig, args);
 1147|      0|    }
 1148|      2|}
Py_InitializeFromConfig:
 1614|      2|{
 1615|      2|    if (config == NULL) {
  ------------------
  |  Branch (1615:9): [True: 0, False: 2]
  ------------------
 1616|      0|        return _PyStatus_ERR("initialization config is NULL");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1617|      0|    }
 1618|       |
 1619|      2|    PyStatus status;
 1620|       |
 1621|      2|    status = _PyRuntime_Initialize();
 1622|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1623|      0|        return status;
 1624|      0|    }
 1625|      2|    _PyRuntimeState *runtime = &_PyRuntime;
 1626|       |
 1627|      2|    PyThreadState *tstate = NULL;
 1628|      2|    status = pyinit_core(runtime, config, &tstate);
 1629|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1630|      0|        return status;
 1631|      0|    }
 1632|      2|    config = _PyInterpreterState_GetConfig(tstate->interp);
 1633|       |
 1634|      2|    if (config->_init_main) {
  ------------------
  |  Branch (1634:9): [True: 2, False: 0]
  ------------------
 1635|      2|        status = pyinit_main(tstate);
 1636|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1637|      0|            return status;
 1638|      0|        }
 1639|      2|    }
 1640|       |
 1641|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1642|      2|}
pylifecycle.c:_coerce_default_locale_settings:
  279|      2|{
  280|      2|    const char *newloc = target->locale_name;
  281|       |
  282|       |    /* Reset locale back to currently configured defaults */
  283|      2|    _Py_SetLocaleFromEnv(LC_ALL);
  284|       |
  285|       |    /* Set the relevant locale environment variable */
  286|      2|    if (setenv("LC_CTYPE", newloc, 1)) {
  ------------------
  |  Branch (286:9): [True: 0, False: 2]
  ------------------
  287|      0|        fprintf(stderr,
  288|      0|                "Error setting LC_CTYPE, skipping C locale coercion\n");
  289|      0|        return 0;
  290|      0|    }
  291|      2|    if (warn) {
  ------------------
  |  Branch (291:9): [True: 0, False: 2]
  ------------------
  292|      0|        fprintf(stderr, C_LOCALE_COERCION_WARNING, newloc);
  293|      0|    }
  294|       |
  295|       |    /* Reconfigure with the overridden environment variables */
  296|       |    _Py_SetLocaleFromEnv(LC_ALL);
  297|      2|    return 1;
  298|      2|}
pylifecycle.c:pyinit_core:
 1172|      2|{
 1173|      2|    PyStatus status;
 1174|       |
 1175|      2|    status = _Py_PreInitializeFromConfig(src_config, NULL);
 1176|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1177|      0|        return status;
 1178|      0|    }
 1179|       |
 1180|      2|    PyConfig config;
 1181|      2|    PyConfig_InitPythonConfig(&config);
 1182|       |
 1183|      2|    status = _PyConfig_Copy(&config, src_config);
 1184|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1185|      0|        goto done;
 1186|      0|    }
 1187|       |
 1188|       |    // Read the configuration, but don't compute the path configuration
 1189|       |    // (it is computed in the main init).
 1190|      2|    status = _PyConfig_Read(&config, 0);
 1191|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1192|      0|        goto done;
 1193|      0|    }
 1194|       |
 1195|      2|    if (!runtime->core_initialized) {
  ------------------
  |  Branch (1195:9): [True: 2, False: 0]
  ------------------
 1196|      2|        status = pyinit_config(runtime, tstate_p, &config);
 1197|      2|    }
 1198|      0|    else {
 1199|      0|        status = pyinit_core_reconfigure(runtime, tstate_p, &config);
 1200|      0|    }
 1201|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1202|      0|        goto done;
 1203|      0|    }
 1204|       |
 1205|      2|done:
 1206|      2|    PyConfig_Clear(&config);
 1207|      2|    return status;
 1208|      2|}
pylifecycle.c:pyinit_config:
 1020|      2|{
 1021|      2|    PyStatus status = pycore_init_runtime(runtime, config);
 1022|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1023|      0|        return status;
 1024|      0|    }
 1025|       |
 1026|      2|    PyThreadState *tstate;
 1027|      2|    status = pycore_create_interpreter(runtime, config, &tstate);
 1028|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1029|      0|        return status;
 1030|      0|    }
 1031|      2|    *tstate_p = tstate;
 1032|       |
 1033|      2|    status = pycore_interp_init(tstate);
 1034|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1035|      0|        return status;
 1036|      0|    }
 1037|       |
 1038|       |    /* Only when we get here is the runtime core fully initialized */
 1039|      2|    _PyRuntimeState_SetCoreInitialized(runtime, 1);
 1040|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1041|      2|}
pylifecycle.c:pycore_init_runtime:
  530|      2|{
  531|      2|    if (_PyRuntimeState_GetInitialized(runtime)) {
  ------------------
  |  Branch (531:9): [True: 0, False: 2]
  ------------------
  532|      0|        return _PyStatus_ERR("main interpreter already initialized");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  533|      0|    }
  534|       |
  535|      2|    PyStatus status = _PyConfig_Write(config, runtime);
  536|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  537|      0|        return status;
  538|      0|    }
  539|       |
  540|       |#if defined(PYMALLOC_USE_HUGEPAGES) && defined(MS_WINDOWS)
  541|       |    if (runtime->allocators.use_hugepages) {
  542|       |        status = get_huge_pages_privilege();
  543|       |        if (_PyStatus_EXCEPTION(status)) {
  544|       |            return status;
  545|       |        }
  546|       |    }
  547|       |#endif
  548|       |
  549|       |    /* Py_Finalize leaves _Py_Finalizing set in order to help daemon
  550|       |     * threads behave a little more gracefully at interpreter shutdown.
  551|       |     * We clobber it here so the new interpreter can start with a clean
  552|       |     * slate.
  553|       |     *
  554|       |     * However, this may still lead to misbehaviour if there are daemon
  555|       |     * threads still hanging around from a previous Py_Initialize/Finalize
  556|       |     * pair :(
  557|       |     */
  558|      2|    _PyRuntimeState_SetFinalizing(runtime, NULL);
  559|       |
  560|      2|    _Py_InitVersion();
  561|      2|    _Py_DumpTraceback_Init();
  562|       |
  563|      2|    status = _Py_HashRandomization_Init(config);
  564|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  565|      0|        return status;
  566|      0|    }
  567|       |
  568|      2|    status = _PyImport_Init();
  569|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  570|      0|        return status;
  571|      0|    }
  572|       |
  573|      2|    status = _PyInterpreterState_Enable(runtime);
  574|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  575|      0|        return status;
  576|      0|    }
  577|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  578|      2|}
pylifecycle.c:pycore_create_interpreter:
  671|      2|{
  672|      2|    PyStatus status;
  673|      2|    PyInterpreterState *interp;
  674|      2|    status = _PyInterpreterState_New(NULL, &interp);
  675|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  676|      0|        return status;
  677|      0|    }
  678|      2|    assert(interp != NULL);
  ------------------
  |  Branch (678:5): [True: 2, False: 0]
  ------------------
  679|      2|    assert(_Py_IsMainInterpreter(interp));
  ------------------
  |  Branch (679:5): [True: 2, False: 0]
  ------------------
  680|      2|    _PyInterpreterState_SetWhence(interp, _PyInterpreterState_WHENCE_RUNTIME);
  ------------------
  |  |   18|      2|#define _PyInterpreterState_WHENCE_RUNTIME 1
  ------------------
  681|      2|    interp->_ready = 1;
  682|       |
  683|       |    /* Initialize the module dict watcher early, before any modules are created */
  684|      2|    if (_PyModule_InitModuleDictWatcher(interp) != 0) {
  ------------------
  |  Branch (684:9): [True: 0, False: 2]
  ------------------
  685|      0|        return _PyStatus_ERR("failed to initialize module dict watcher");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  686|      0|    }
  687|       |
  688|      2|    status = _PyConfig_Copy(&interp->config, src_config);
  689|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  690|      0|        return status;
  691|      0|    }
  692|       |
  693|       |    /* Auto-thread-state API */
  694|      2|    status = _PyGILState_Init(interp);
  695|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  696|      0|        return status;
  697|      0|    }
  698|       |
  699|      2|    PyInterpreterConfig config = _PyInterpreterConfig_LEGACY_INIT;
  ------------------
  |  |   76|      2|    { \
  |  |   77|      2|        .use_main_obmalloc = 1, \
  |  |   78|      2|        .allow_fork = 1, \
  |  |   79|      2|        .allow_exec = 1, \
  |  |   80|      2|        .allow_threads = 1, \
  |  |   81|      2|        .allow_daemon_threads = 1, \
  |  |   82|      2|        .check_multi_interp_extensions = _PyInterpreterConfig_LEGACY_CHECK_MULTI_INTERP_EXTENSIONS, \
  |  |  ------------------
  |  |  |  |   72|      2|#  define _PyInterpreterConfig_LEGACY_CHECK_MULTI_INTERP_EXTENSIONS 0
  |  |  ------------------
  |  |   83|      2|        .gil = PyInterpreterConfig_SHARED_GIL, \
  |  |  ------------------
  |  |  |  |   41|      2|#define PyInterpreterConfig_SHARED_GIL (1)
  |  |  ------------------
  |  |   84|      2|    }
  ------------------
  700|       |    // The main interpreter always has its own GIL and supports single-phase
  701|       |    // init extensions.
  702|      2|    config.gil = PyInterpreterConfig_OWN_GIL;
  ------------------
  |  |   42|      2|#define PyInterpreterConfig_OWN_GIL (2)
  ------------------
  703|      2|    config.check_multi_interp_extensions = 0;
  704|      2|    status = init_interp_settings(interp, &config);
  705|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  706|      0|        return status;
  707|      0|    }
  708|       |
  709|       |    // This could be done in init_interpreter() (in pystate.c) if it
  710|       |    // didn't depend on interp->feature_flags being set already.
  711|      2|    status = _PyObject_InitState(interp);
  712|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  713|      0|        return status;
  714|      0|    }
  715|       |
  716|       |#ifdef Py_STATS
  717|       |    // initialize pystats.  This must be done after the settings are loaded.
  718|       |    status = _PyStats_InterpInit(interp);
  719|       |    if (_PyStatus_EXCEPTION(status)) {
  720|       |        return status;
  721|       |    }
  722|       |#endif
  723|       |
  724|       |    // initialize the interp->obmalloc state.  This must be done after
  725|       |    // the settings are loaded (so that feature_flags are set) but before
  726|       |    // any calls are made to obmalloc functions.
  727|      2|    if (_PyMem_init_obmalloc(interp) < 0) {
  ------------------
  |  Branch (727:9): [True: 0, False: 2]
  ------------------
  728|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  729|      0|    }
  730|       |
  731|      2|    status = _PyTraceMalloc_Init();
  732|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  733|      0|        return status;
  734|      0|    }
  735|       |
  736|      2|    PyThreadState *tstate = _PyThreadState_New(interp,
  737|      2|                                               _PyThreadState_WHENCE_INIT);
  ------------------
  |  |  105|      2|#  define _PyThreadState_WHENCE_INIT 1
  ------------------
  738|      2|    if (tstate == NULL) {
  ------------------
  |  Branch (738:9): [True: 0, False: 2]
  ------------------
  739|      0|        return _PyStatus_ERR("can't make first thread");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  740|      0|    }
  741|      2|    runtime->main_tstate = tstate;
  742|      2|    _PyThreadState_Bind(tstate);
  743|       |
  744|      2|    init_interp_create_gil(tstate, config.gil);
  745|       |
  746|      2|    *tstate_p = tstate;
  747|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  748|      2|}
pylifecycle.c:init_interp_settings:
  584|      2|{
  585|      2|    assert(interp->feature_flags == 0);
  ------------------
  |  Branch (585:5): [True: 2, False: 0]
  ------------------
  586|       |
  587|      2|    if (config->use_main_obmalloc) {
  ------------------
  |  Branch (587:9): [True: 2, False: 0]
  ------------------
  588|      2|        interp->feature_flags |= Py_RTFLAGS_USE_MAIN_OBMALLOC;
  ------------------
  |  |   79|      2|#define Py_RTFLAGS_USE_MAIN_OBMALLOC (1UL << 5)
  ------------------
  589|      2|    }
  590|      0|    else if (!config->check_multi_interp_extensions) {
  ------------------
  |  Branch (590:14): [True: 0, False: 0]
  ------------------
  591|       |        /* The reason: PyModuleDef.m_base.m_copy leaks objects between
  592|       |           interpreters. */
  593|      0|        return _PyStatus_ERR("per-interpreter obmalloc does not support "
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  594|      0|                             "single-phase init extension modules");
  595|      0|    }
  596|       |#ifdef Py_GIL_DISABLED
  597|       |    if (!_Py_IsMainInterpreter(interp) &&
  598|       |        !config->check_multi_interp_extensions)
  599|       |    {
  600|       |        return _PyStatus_ERR("The free-threaded build does not support "
  601|       |                             "single-phase init extension modules in "
  602|       |                             "subinterpreters");
  603|       |    }
  604|       |#endif
  605|       |
  606|      2|    if (config->allow_fork) {
  ------------------
  |  Branch (606:9): [True: 2, False: 0]
  ------------------
  607|      2|        interp->feature_flags |= Py_RTFLAGS_FORK;
  ------------------
  |  |   91|      2|#define Py_RTFLAGS_FORK (1UL << 15)
  ------------------
  608|      2|    }
  609|      2|    if (config->allow_exec) {
  ------------------
  |  Branch (609:9): [True: 2, False: 0]
  ------------------
  610|      2|        interp->feature_flags |= Py_RTFLAGS_EXEC;
  ------------------
  |  |   94|      2|#define Py_RTFLAGS_EXEC (1UL << 16)
  ------------------
  611|      2|    }
  612|       |    // Note that fork+exec is always allowed.
  613|       |
  614|      2|    if (config->allow_threads) {
  ------------------
  |  Branch (614:9): [True: 2, False: 0]
  ------------------
  615|      2|        interp->feature_flags |= Py_RTFLAGS_THREADS;
  ------------------
  |  |   85|      2|#define Py_RTFLAGS_THREADS (1UL << 10)
  ------------------
  616|      2|    }
  617|      2|    if (config->allow_daemon_threads) {
  ------------------
  |  Branch (617:9): [True: 2, False: 0]
  ------------------
  618|      2|        interp->feature_flags |= Py_RTFLAGS_DAEMON_THREADS;
  ------------------
  |  |   88|      2|#define Py_RTFLAGS_DAEMON_THREADS (1UL << 11)
  ------------------
  619|      2|    }
  620|       |
  621|      2|    if (config->check_multi_interp_extensions) {
  ------------------
  |  Branch (621:9): [True: 0, False: 2]
  ------------------
  622|      0|        interp->feature_flags |= Py_RTFLAGS_MULTI_INTERP_EXTENSIONS;
  ------------------
  |  |   82|      0|#define Py_RTFLAGS_MULTI_INTERP_EXTENSIONS (1UL << 8)
  ------------------
  623|      0|    }
  624|       |
  625|      2|    switch (config->gil) {
  626|      0|    case PyInterpreterConfig_DEFAULT_GIL: break;
  ------------------
  |  |   40|      0|#define PyInterpreterConfig_DEFAULT_GIL (0)
  ------------------
  |  Branch (626:5): [True: 0, False: 2]
  ------------------
  627|      0|    case PyInterpreterConfig_SHARED_GIL: break;
  ------------------
  |  |   41|      0|#define PyInterpreterConfig_SHARED_GIL (1)
  ------------------
  |  Branch (627:5): [True: 0, False: 2]
  ------------------
  628|      2|    case PyInterpreterConfig_OWN_GIL: break;
  ------------------
  |  |   42|      2|#define PyInterpreterConfig_OWN_GIL (2)
  ------------------
  |  Branch (628:5): [True: 2, False: 0]
  ------------------
  629|      0|    default:
  ------------------
  |  Branch (629:5): [True: 0, False: 2]
  ------------------
  630|      0|        return _PyStatus_ERR("invalid interpreter config 'gil' value");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  631|      2|    }
  632|       |
  633|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  634|      2|}
pylifecycle.c:init_interp_create_gil:
  639|      2|{
  640|       |    /* finalize_interp_delete() comment explains why _PyEval_FiniGIL() is
  641|       |       only called here. */
  642|       |    // XXX This is broken with a per-interpreter GIL.
  643|      2|    _PyEval_FiniGIL(tstate->interp);
  644|       |
  645|       |    /* Auto-thread-state API */
  646|      2|    _PyGILState_SetTstate(tstate);
  647|       |
  648|      2|    int own_gil = (gil == PyInterpreterConfig_OWN_GIL);
  ------------------
  |  |   42|      2|#define PyInterpreterConfig_OWN_GIL (2)
  ------------------
  649|       |
  650|       |    /* Create the GIL and take it */
  651|      2|    _PyEval_InitGIL(tstate, own_gil);
  652|      2|}
pylifecycle.c:pycore_interp_init:
  940|      2|{
  941|      2|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
  942|      2|    if (_tstate->c_stack_hard_limit == 0) {
  ------------------
  |  Branch (942:9): [True: 0, False: 2]
  ------------------
  943|      0|        _Py_InitializeRecursionLimits(tstate);
  944|      0|    }
  945|      2|    PyInterpreterState *interp = tstate->interp;
  946|      2|    PyStatus status;
  947|      2|    PyObject *sysmod = NULL;
  948|       |
  949|       |    // Create singletons before the first PyType_Ready() call, since
  950|       |    // PyType_Ready() uses singletons like the Unicode empty string (tp_doc)
  951|       |    // and the empty tuple singletons (tp_bases).
  952|      2|    status = pycore_init_global_objects(interp);
  953|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  954|      0|        return status;
  955|      0|    }
  956|       |
  957|      2|    status = _PyCode_Init(interp);
  958|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  959|      0|        return status;
  960|      0|    }
  961|       |
  962|      2|    status = _PyDtoa_Init(interp);
  963|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  964|      0|        return status;
  965|      0|    }
  966|       |
  967|       |    // The GC must be initialized before the first GC collection.
  968|      2|    status = _PyGC_Init(interp);
  969|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  970|      0|        return status;
  971|      0|    }
  972|       |
  973|      2|    status = pycore_init_types(interp);
  974|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  975|      0|        goto done;
  976|      0|    }
  977|       |
  978|      2|    if (_PyWarnings_InitState(interp) < 0) {
  ------------------
  |  Branch (978:9): [True: 0, False: 2]
  ------------------
  979|      0|        return _PyStatus_ERR("can't initialize warnings");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  980|      0|    }
  981|       |
  982|      2|    status = _PyAtExit_Init(interp);
  983|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  984|      0|        return status;
  985|      0|    }
  986|       |
  987|      2|    status = _PySys_Create(tstate, &sysmod);
  988|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  989|      0|        goto done;
  990|      0|    }
  991|       |
  992|      2|    status = pycore_init_builtins(tstate);
  993|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  994|      0|        goto done;
  995|      0|    }
  996|       |
  997|      2|    status = _PyXI_Init(interp);
  998|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  999|      0|        goto done;
 1000|      0|    }
 1001|       |
 1002|      2|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
 1003|       |
 1004|      2|    status = _PyImport_InitCore(tstate, sysmod, config->_install_importlib);
 1005|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1006|      0|        goto done;
 1007|      0|    }
 1008|       |
 1009|      2|done:
 1010|       |    /* sys.modules['sys'] contains a strong reference to the module */
 1011|      2|    Py_XDECREF(sysmod);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1012|      2|    return status;
 1013|      2|}
pylifecycle.c:pycore_init_global_objects:
  753|      2|{
  754|      2|    PyStatus status;
  755|       |
  756|      2|    status = _PyUnicode_InitGlobalObjects(interp);
  757|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  758|      0|        return status;
  759|      0|    }
  760|       |
  761|      2|    _PyUnicode_InitState(interp);
  762|       |
  763|      2|    if (_Py_IsMainInterpreter(interp)) {
  ------------------
  |  Branch (763:9): [True: 2, False: 0]
  ------------------
  764|      2|        _Py_GetConstant_Init();
  765|      2|    }
  766|       |
  767|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  768|      2|}
pylifecycle.c:pycore_init_types:
  773|      2|{
  774|      2|    PyStatus status;
  775|       |
  776|      2|    status = _PyTypes_InitTypes(interp);
  777|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  778|      0|        return status;
  779|      0|    }
  780|       |
  781|      2|    status = _PyLong_InitTypes(interp);
  782|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  783|      0|        return status;
  784|      0|    }
  785|       |
  786|      2|    status = _PyUnicode_InitTypes(interp);
  787|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  788|      0|        return status;
  789|      0|    }
  790|       |
  791|      2|    status = _PyFloat_InitTypes(interp);
  792|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  793|      0|        return status;
  794|      0|    }
  795|       |
  796|      2|    if (_PyExc_InitTypes(interp) < 0) {
  ------------------
  |  Branch (796:9): [True: 0, False: 2]
  ------------------
  797|      0|        return _PyStatus_ERR("failed to initialize an exception type");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  798|      0|    }
  799|       |
  800|      2|    status = _PyExc_InitGlobalObjects(interp);
  801|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  802|      0|        return status;
  803|      0|    }
  804|       |
  805|      2|    status = _PyExc_InitState(interp);
  806|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  807|      0|        return status;
  808|      0|    }
  809|       |
  810|      2|    status = _PyErr_InitTypes(interp);
  811|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  812|      0|        return status;
  813|      0|    }
  814|       |
  815|      2|    status = _PyContext_Init(interp);
  816|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  817|      0|        return status;
  818|      0|    }
  819|       |
  820|      2|    status = _PyXI_InitTypes(interp);
  821|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  822|      0|        return status;
  823|      0|    }
  824|       |
  825|      2|    status = _PyInterpolation_InitTypes(interp);
  826|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  827|      0|        return status;
  828|      0|    }
  829|       |
  830|      2|    status = _PyDateTime_InitTypes(interp);
  831|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  832|      0|        return status;
  833|      0|    }
  834|       |
  835|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  836|      2|}
pylifecycle.c:pycore_init_builtins:
  840|      2|{
  841|      2|    PyInterpreterState *interp = tstate->interp;
  842|       |
  843|      2|    PyObject *bimod = _PyBuiltin_Init(interp);
  844|      2|    if (bimod == NULL) {
  ------------------
  |  Branch (844:9): [True: 0, False: 2]
  ------------------
  845|      0|        goto error;
  846|      0|    }
  847|       |
  848|      2|    PyObject *modules = _PyImport_GetModules(interp);
  849|      2|    if (_PyImport_FixupBuiltin(tstate, bimod, "builtins", modules) < 0) {
  ------------------
  |  Branch (849:9): [True: 0, False: 2]
  ------------------
  850|      0|        goto error;
  851|      0|    }
  852|       |
  853|      2|    PyObject *builtins_dict = PyModule_GetDict(bimod);
  854|      2|    if (builtins_dict == NULL) {
  ------------------
  |  Branch (854:9): [True: 0, False: 2]
  ------------------
  855|      0|        goto error;
  856|      0|    }
  857|      2|    interp->builtins = Py_NewRef(builtins_dict);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  858|       |
  859|      2|    PyObject *isinstance = PyDict_GetItemWithError(builtins_dict, &_Py_ID(isinstance));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  860|      2|    if (!isinstance) {
  ------------------
  |  Branch (860:9): [True: 0, False: 2]
  ------------------
  861|      0|        goto error;
  862|      0|    }
  863|      2|    interp->callable_cache.isinstance = isinstance;
  864|       |
  865|      2|    PyObject *len = PyDict_GetItemWithError(builtins_dict, &_Py_ID(len));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  866|      2|    if (!len) {
  ------------------
  |  Branch (866:9): [True: 0, False: 2]
  ------------------
  867|      0|        goto error;
  868|      0|    }
  869|      2|    interp->callable_cache.len = len;
  870|       |
  871|      2|    PyObject *all = PyDict_GetItemWithError(builtins_dict, &_Py_ID(all));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  872|      2|    if (!all) {
  ------------------
  |  Branch (872:9): [True: 0, False: 2]
  ------------------
  873|      0|        goto error;
  874|      0|    }
  875|       |
  876|      2|    PyObject *any = PyDict_GetItemWithError(builtins_dict, &_Py_ID(any));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  877|      2|    if (!any) {
  ------------------
  |  Branch (877:9): [True: 0, False: 2]
  ------------------
  878|      0|        goto error;
  879|      0|    }
  880|       |
  881|      2|    interp->common_consts[CONSTANT_ASSERTIONERROR] = PyExc_AssertionError;
  ------------------
  |  |   71|      2|#define CONSTANT_ASSERTIONERROR 0
  ------------------
  882|      2|    interp->common_consts[CONSTANT_NOTIMPLEMENTEDERROR] = PyExc_NotImplementedError;
  ------------------
  |  |   72|      2|#define CONSTANT_NOTIMPLEMENTEDERROR 1
  ------------------
  883|      2|    interp->common_consts[CONSTANT_BUILTIN_TUPLE] = (PyObject *)&PyTuple_Type;
  ------------------
  |  |   73|      2|#define CONSTANT_BUILTIN_TUPLE 2
  ------------------
  884|      2|    interp->common_consts[CONSTANT_BUILTIN_ALL] = all;
  ------------------
  |  |   74|      2|#define CONSTANT_BUILTIN_ALL 3
  ------------------
  885|      2|    interp->common_consts[CONSTANT_BUILTIN_ANY] = any;
  ------------------
  |  |   75|      2|#define CONSTANT_BUILTIN_ANY 4
  ------------------
  886|      2|    interp->common_consts[CONSTANT_BUILTIN_LIST] = (PyObject *)&PyList_Type;
  ------------------
  |  |   76|      2|#define CONSTANT_BUILTIN_LIST 5
  ------------------
  887|      2|    interp->common_consts[CONSTANT_BUILTIN_SET] = (PyObject *)&PySet_Type;
  ------------------
  |  |   77|      2|#define CONSTANT_BUILTIN_SET 6
  ------------------
  888|      2|    interp->common_consts[CONSTANT_NONE] = Py_None;
  ------------------
  |  |   78|      2|#define CONSTANT_NONE 7
  ------------------
                  interp->common_consts[CONSTANT_NONE] = Py_None;
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  889|      2|    interp->common_consts[CONSTANT_EMPTY_STR] =
  ------------------
  |  |   79|      2|#define CONSTANT_EMPTY_STR 8
  ------------------
  890|      2|        Py_GetConstantBorrowed(Py_CONSTANT_EMPTY_STR);
  ------------------
  |  |  597|      2|#define Py_CONSTANT_EMPTY_STR 7
  ------------------
  891|      2|    interp->common_consts[CONSTANT_TRUE] = Py_True;
  ------------------
  |  |   80|      2|#define CONSTANT_TRUE 9
  ------------------
                  interp->common_consts[CONSTANT_TRUE] = Py_True;
  ------------------
  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  892|      2|    interp->common_consts[CONSTANT_FALSE] = Py_False;
  ------------------
  |  |   81|      2|#define CONSTANT_FALSE 10
  ------------------
                  interp->common_consts[CONSTANT_FALSE] = Py_False;
  ------------------
  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  893|      2|    interp->common_consts[CONSTANT_MINUS_ONE] =
  ------------------
  |  |   82|      2|#define CONSTANT_MINUS_ONE 11
  ------------------
  894|      2|        (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS - 1];
  ------------------
  |  |   59|      2|#define _PyLong_SMALL_INTS _Py_SINGLETON(small_ints)
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS - 1];
  ------------------
  |  |   98|      2|#define _PY_NSMALLNEGINTS           5
  ------------------
  895|     26|    for (int i = 0; i < NUM_COMMON_CONSTANTS; i++) {
  ------------------
  |  |   83|     26|#define NUM_COMMON_CONSTANTS 12
  ------------------
  |  Branch (895:21): [True: 24, False: 2]
  ------------------
  896|     24|        assert(interp->common_consts[i] != NULL);
  ------------------
  |  Branch (896:9): [True: 24, False: 0]
  ------------------
  897|     24|    }
  898|       |
  899|      2|    PyObject *list_append = _PyType_Lookup(&PyList_Type, &_Py_ID(append));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  900|      2|    if (list_append == NULL) {
  ------------------
  |  Branch (900:9): [True: 0, False: 2]
  ------------------
  901|      0|        goto error;
  902|      0|    }
  903|      2|    interp->callable_cache.list_append = list_append;
  904|       |
  905|      2|    PyObject *object__getattribute__ = _PyType_Lookup(&PyBaseObject_Type, &_Py_ID(__getattribute__));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  906|      2|    if (object__getattribute__ == NULL) {
  ------------------
  |  Branch (906:9): [True: 0, False: 2]
  ------------------
  907|      0|        goto error;
  908|      0|    }
  909|      2|    interp->callable_cache.object__getattribute__ = object__getattribute__;
  910|       |
  911|      2|    if (_PyType_InitSlotDefs(interp) < 0) {
  ------------------
  |  Branch (911:9): [True: 0, False: 2]
  ------------------
  912|      0|        return _PyStatus_ERR("failed to init slotdefs");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  913|      0|    }
  914|       |
  915|      2|    if (_PyBuiltins_AddExceptions(bimod) < 0) {
  ------------------
  |  Branch (915:9): [True: 0, False: 2]
  ------------------
  916|      0|        return _PyStatus_ERR("failed to add exceptions to builtins");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  917|      0|    }
  918|       |
  919|      2|    interp->builtins_copy = PyDict_Copy(interp->builtins);
  920|      2|    if (interp->builtins_copy == NULL) {
  ------------------
  |  Branch (920:9): [True: 0, False: 2]
  ------------------
  921|      0|        goto error;
  922|      0|    }
  923|      2|    Py_DECREF(bimod);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  924|       |
  925|      2|    if (_PyImport_InitDefaultImportFunc(interp) < 0) {
  ------------------
  |  Branch (925:9): [True: 0, False: 2]
  ------------------
  926|      0|        goto error;
  927|      0|    }
  928|       |
  929|      2|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (929:5): [True: 2, False: 0]
  ------------------
  930|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  931|       |
  932|      0|error:
  933|      0|    Py_XDECREF(bimod);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  934|      0|    return _PyStatus_ERR("can't initialize builtins module");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  935|      2|}
pylifecycle.c:pyinit_main:
 1594|      2|{
 1595|      2|    PyInterpreterState *interp = tstate->interp;
 1596|      2|    if (!_PyRuntimeState_GetCoreInitialized(interp->runtime)) {
  ------------------
  |  Branch (1596:9): [True: 0, False: 2]
  ------------------
 1597|      0|        return _PyStatus_ERR("runtime core not initialized");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1598|      0|    }
 1599|       |
 1600|      2|    if (_PyRuntimeState_GetInitialized(interp->runtime)) {
  ------------------
  |  Branch (1600:9): [True: 0, False: 2]
  ------------------
 1601|      0|        return pyinit_main_reconfigure(tstate);
 1602|      0|    }
 1603|       |
 1604|      2|    PyStatus status = init_interp_main(tstate);
 1605|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1606|      0|        return status;
 1607|      0|    }
 1608|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1609|      2|}
pylifecycle.c:interpreter_update_config:
  412|      2|{
  413|      2|    const PyConfig *config = &tstate->interp->config;
  414|       |
  415|      2|    if (!only_update_path_config) {
  ------------------
  |  Branch (415:9): [True: 0, False: 2]
  ------------------
  416|      0|        PyStatus status = _PyConfig_Write(config, tstate->interp->runtime);
  417|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  418|      0|            _PyErr_SetFromPyStatus(status);
  419|      0|            return -1;
  420|      0|        }
  421|      0|    }
  422|       |
  423|      2|    if (_Py_IsMainInterpreter(tstate->interp)) {
  ------------------
  |  Branch (423:9): [True: 2, False: 0]
  ------------------
  424|      2|        PyStatus status = _PyPathConfig_UpdateGlobal(config);
  425|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  426|      0|            _PyErr_SetFromPyStatus(status);
  427|      0|            return -1;
  428|      0|        }
  429|      2|    }
  430|       |
  431|      2|    tstate->interp->long_state.max_str_digits = config->int_max_str_digits;
  432|       |
  433|       |    // Update the sys module for the new configuration
  434|      2|    if (_PySys_UpdateConfig(tstate) < 0) {
  ------------------
  |  Branch (434:9): [True: 0, False: 2]
  ------------------
  435|      0|        return -1;
  436|      0|    }
  437|      2|    return 0;
  438|      2|}
pylifecycle.c:init_interp_main:
 1351|      2|{
 1352|      2|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1352:5): [True: 2, False: 0]
  ------------------
 1353|       |
 1354|      2|    PyStatus status;
 1355|      2|    int is_main_interp = _Py_IsMainInterpreter(tstate->interp);
 1356|      2|    PyInterpreterState *interp = tstate->interp;
 1357|      2|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
 1358|       |
 1359|      2|    if (!config->_install_importlib) {
  ------------------
  |  Branch (1359:9): [True: 0, False: 2]
  ------------------
 1360|       |        /* Special mode for freeze_importlib: run with no import system
 1361|       |         *
 1362|       |         * This means anything which needs support from extension modules
 1363|       |         * or pure Python code in the standard library won't work.
 1364|       |         */
 1365|      0|        if (is_main_interp) {
  ------------------
  |  Branch (1365:13): [True: 0, False: 0]
  ------------------
 1366|      0|            _PyRuntimeState_SetInitialized(interp->runtime, 1);
 1367|      0|        }
 1368|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1369|      0|    }
 1370|       |
 1371|       |    // Initialize the import-related configuration.
 1372|      2|    status = _PyConfig_InitImportConfig(&interp->config);
 1373|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1374|      0|        return status;
 1375|      0|    }
 1376|       |
 1377|      2|    if (interpreter_update_config(tstate, 1) < 0) {
  ------------------
  |  Branch (1377:9): [True: 0, False: 2]
  ------------------
 1378|      0|        return _PyStatus_ERR("failed to update the Python config");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1379|      0|    }
 1380|       |
 1381|      2|    status = _PyImport_InitExternal(tstate);
 1382|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1383|      0|        return status;
 1384|      0|    }
 1385|       |
 1386|      2|    if (is_main_interp) {
  ------------------
  |  Branch (1386:9): [True: 2, False: 0]
  ------------------
 1387|       |        /* initialize the faulthandler module */
 1388|      2|        status = _PyFaulthandler_Init(config->faulthandler);
 1389|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1390|      0|            return status;
 1391|      0|        }
 1392|      2|    }
 1393|       |
 1394|      2|    status = _PyUnicode_InitEncodings(tstate);
 1395|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1396|      0|        return status;
 1397|      0|    }
 1398|       |
 1399|      2|    if (is_main_interp) {
  ------------------
  |  Branch (1399:9): [True: 2, False: 0]
  ------------------
 1400|      2|        if (_PySignal_Init(config->install_signal_handlers) < 0) {
  ------------------
  |  Branch (1400:13): [True: 0, False: 2]
  ------------------
 1401|      0|            return _PyStatus_ERR("can't initialize signals");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1402|      0|        }
 1403|       |
 1404|      2|        if (config->tracemalloc) {
  ------------------
  |  Branch (1404:13): [True: 0, False: 2]
  ------------------
 1405|      0|           if (_PyTraceMalloc_Start(config->tracemalloc) < 0) {
  ------------------
  |  Branch (1405:16): [True: 0, False: 0]
  ------------------
 1406|      0|                return _PyStatus_ERR("can't start tracemalloc");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1407|      0|            }
 1408|      0|        }
 1409|       |
 1410|      2|#ifdef PY_HAVE_PERF_TRAMPOLINE
 1411|      2|        if (config->perf_profiling) {
  ------------------
  |  Branch (1411:13): [True: 0, False: 2]
  ------------------
 1412|      0|            _PyPerf_Callbacks *cur_cb;
 1413|      0|            if (config->perf_profiling == 1) {
  ------------------
  |  Branch (1413:17): [True: 0, False: 0]
  ------------------
 1414|      0|                cur_cb = &_Py_perfmap_callbacks;
 1415|      0|            }
 1416|      0|            else {
 1417|      0|                cur_cb = &_Py_perfmap_jit_callbacks;
 1418|      0|            }
 1419|      0|            if (_PyPerfTrampoline_SetCallbacks(cur_cb) < 0 ||
  ------------------
  |  Branch (1419:17): [True: 0, False: 0]
  ------------------
 1420|      0|                    _PyPerfTrampoline_Init(config->perf_profiling) < 0) {
  ------------------
  |  Branch (1420:21): [True: 0, False: 0]
  ------------------
 1421|      0|                return _PyStatus_ERR("can't initialize the perf trampoline");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1422|      0|            }
 1423|      0|        }
 1424|      2|#endif
 1425|      2|    }
 1426|       |
 1427|      2|    status = init_sys_streams(tstate);
 1428|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1429|      0|        return status;
 1430|      0|    }
 1431|       |
 1432|      2|    status = init_set_builtins_open();
 1433|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1434|      0|        return status;
 1435|      0|    }
 1436|       |
 1437|       |#ifdef __ANDROID__
 1438|       |    status = init_android_streams(tstate);
 1439|       |    if (_PyStatus_EXCEPTION(status)) {
 1440|       |        return status;
 1441|       |    }
 1442|       |#endif
 1443|       |#if defined(__APPLE__) && HAS_APPLE_SYSTEM_LOG
 1444|       |    if (config->use_system_logger) {
 1445|       |        status = init_apple_streams(tstate);
 1446|       |        if (_PyStatus_EXCEPTION(status)) {
 1447|       |            return status;
 1448|       |        }
 1449|       |    }
 1450|       |#endif
 1451|       |
 1452|       |#ifdef Py_DEBUG
 1453|       |    run_presite(tstate);
 1454|       |#endif
 1455|       |
 1456|      2|    status = add_main_module(interp);
 1457|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1458|      0|        return status;
 1459|      0|    }
 1460|       |
 1461|      2|    if (is_main_interp) {
  ------------------
  |  Branch (1461:9): [True: 2, False: 0]
  ------------------
 1462|       |        /* Initialize warnings. */
 1463|      2|        PyObject *warnoptions;
 1464|      2|        if (PySys_GetOptionalAttrString("warnoptions", &warnoptions) < 0) {
  ------------------
  |  Branch (1464:13): [True: 0, False: 2]
  ------------------
 1465|      0|            return _PyStatus_ERR("can't initialize warnings");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1466|      0|        }
 1467|      2|        if (warnoptions != NULL && PyList_Check(warnoptions) &&
  ------------------
  |  |   25|      2|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      4|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (760:41): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1467:13): [True: 2, False: 0]
  ------------------
 1468|      2|            PyList_Size(warnoptions) > 0)
  ------------------
  |  Branch (1468:13): [True: 0, False: 2]
  ------------------
 1469|      0|        {
 1470|      0|            PyObject *warnings_module = PyImport_ImportModule("warnings");
 1471|      0|            if (warnings_module == NULL) {
  ------------------
  |  Branch (1471:17): [True: 0, False: 0]
  ------------------
 1472|      0|                fprintf(stderr, "'import warnings' failed; traceback:\n");
 1473|      0|                _PyErr_Print(tstate);
 1474|      0|            }
 1475|      0|            Py_XDECREF(warnings_module);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1476|      0|        }
 1477|      2|        Py_XDECREF(warnoptions);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1478|      2|    }
 1479|       |
 1480|      2|    if (config->site_import) {
  ------------------
  |  Branch (1480:9): [True: 2, False: 0]
  ------------------
 1481|      2|        status = init_import_site();
 1482|      2|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 1483|      0|            return status;
 1484|      0|        }
 1485|      2|    }
 1486|       |
 1487|       |    // Initialize lazy imports based on configuration. Do this after site
 1488|       |    // module is imported to avoid circular imports during startup.
 1489|      2|    if (config->lazy_imports != -1) {
  ------------------
  |  Branch (1489:9): [True: 0, False: 2]
  ------------------
 1490|      0|        PyImport_LazyImportsMode lazy_mode;
 1491|      0|        if (config->lazy_imports == 1) {
  ------------------
  |  Branch (1491:13): [True: 0, False: 0]
  ------------------
 1492|      0|            lazy_mode = PyImport_LAZY_ALL;
 1493|      0|        }
 1494|      0|        else {
 1495|      0|            lazy_mode = PyImport_LAZY_NONE;
 1496|      0|        }
 1497|      0|        if (PyImport_SetLazyImportsMode(lazy_mode) < 0) {
  ------------------
  |  Branch (1497:13): [True: 0, False: 0]
  ------------------
 1498|      0|            return _PyStatus_ERR("failed to set lazy imports mode");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1499|      0|        }
 1500|      0|    }
 1501|       |    // If config->lazy_imports == -1, use the default mode, no change needed.
 1502|       |
 1503|      2|    if (is_main_interp) {
  ------------------
  |  Branch (1503:9): [True: 2, False: 0]
  ------------------
 1504|      2|#ifndef MS_WINDOWS
 1505|      2|        emit_stderr_warning_for_legacy_locale(interp->runtime);
 1506|      2|#endif
 1507|      2|    }
 1508|       |
 1509|       |    // Turn on experimental tier 2 (uops-based) optimizer
 1510|       |    // This is also needed when the JIT is enabled
 1511|       |#ifdef _Py_TIER2
 1512|       |    if (is_main_interp) {
 1513|       |        int enabled = 1;
 1514|       |#if _Py_TIER2 & 2
 1515|       |        enabled = 0;
 1516|       |#endif
 1517|       |        char *env = Py_GETENV("PYTHON_JIT");
 1518|       |        if (env && *env != '\0') {
 1519|       |            // PYTHON_JIT=0|1 overrides the default
 1520|       |            enabled = *env != '0';
 1521|       |        }
 1522|       |        if (enabled) {
 1523|       |#ifdef _Py_JIT
 1524|       |            // perf profiler works fine with tier 2 interpreter, so
 1525|       |            // only checking for a "real JIT".
 1526|       |            if (config->perf_profiling > 0) {
 1527|       |                (void)PyErr_WarnEx(
 1528|       |                    PyExc_RuntimeWarning,
 1529|       |                    "JIT deactivated as perf profiling support is active",
 1530|       |                    0);
 1531|       |            } else
 1532|       |#endif
 1533|       |            {
 1534|       |                interp->jit = true;
 1535|       |            }
 1536|       |        }
 1537|       |    }
 1538|       |#endif
 1539|       |
 1540|      2|    if (!is_main_interp) {
  ------------------
  |  Branch (1540:9): [True: 0, False: 2]
  ------------------
 1541|       |        // The main interpreter is handled in Py_Main(), for now.
 1542|      0|        if (config->sys_path_0 != NULL) {
  ------------------
  |  Branch (1542:13): [True: 0, False: 0]
  ------------------
 1543|      0|            PyObject *path0 = PyUnicode_FromWideChar(config->sys_path_0, -1);
 1544|      0|            if (path0 == NULL) {
  ------------------
  |  Branch (1544:17): [True: 0, False: 0]
  ------------------
 1545|      0|                return _PyStatus_ERR("can't initialize sys.path[0]");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1546|      0|            }
 1547|      0|            PyObject *sysdict = interp->sysdict;
 1548|      0|            if (sysdict == NULL) {
  ------------------
  |  Branch (1548:17): [True: 0, False: 0]
  ------------------
 1549|      0|                Py_DECREF(path0);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1550|      0|                return _PyStatus_ERR("can't initialize sys.path[0]");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1551|      0|            }
 1552|      0|            PyObject *sys_path = PyDict_GetItemWithError(sysdict, &_Py_ID(path));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1553|      0|            if (sys_path == NULL) {
  ------------------
  |  Branch (1553:17): [True: 0, False: 0]
  ------------------
 1554|      0|                Py_DECREF(path0);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1555|      0|                return _PyStatus_ERR("can't initialize sys.path[0]");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1556|      0|            }
 1557|      0|            int res = PyList_Insert(sys_path, 0, path0);
 1558|      0|            Py_DECREF(path0);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1559|      0|            if (res) {
  ------------------
  |  Branch (1559:17): [True: 0, False: 0]
  ------------------
 1560|      0|                return _PyStatus_ERR("can't initialize sys.path[0]");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1561|      0|            }
 1562|      0|        }
 1563|      0|    }
 1564|       |
 1565|       |
 1566|      2|    interp->dict_state.watchers[0] = &builtins_dict_watcher;
 1567|      2|    if (PyDict_Watch(0, interp->builtins) != 0) {
  ------------------
  |  Branch (1567:9): [True: 0, False: 2]
  ------------------
 1568|      0|        return _PyStatus_ERR("failed to set builtin dict watcher");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 1569|      0|    }
 1570|       |
 1571|      2|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (1571:5): [True: 2, False: 0]
  ------------------
 1572|       |
 1573|      2|    if (is_main_interp) {
  ------------------
  |  Branch (1573:9): [True: 2, False: 0]
  ------------------
 1574|      2|        _PyRuntimeState_SetInitialized(interp->runtime, 1);
 1575|      2|    }
 1576|       |
 1577|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 1578|      2|}
pylifecycle.c:init_sys_streams:
 3153|      2|{
 3154|      2|    PyObject *iomod = NULL;
 3155|      2|    PyObject *std = NULL;
 3156|      2|    int fd;
 3157|      2|    PyObject * encoding_attr;
 3158|      2|    PyStatus res = _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3159|      2|    const PyConfig *config = _PyInterpreterState_GetConfig(tstate->interp);
 3160|       |
 3161|       |    /* Check that stdin is not a directory
 3162|       |       Using shell redirection, you can redirect stdin to a directory,
 3163|       |       crashing the Python interpreter. Catch this common mistake here
 3164|       |       and output a useful error message. Note that under MS Windows,
 3165|       |       the shell already prevents that. */
 3166|      2|#ifndef MS_WINDOWS
 3167|      2|    struct _Py_stat_struct sb;
 3168|      2|    if (_Py_fstat_noraise(fileno(stdin), &sb) == 0 &&
  ------------------
  |  Branch (3168:9): [True: 2, False: 0]
  ------------------
 3169|      2|        S_ISDIR(sb.st_mode)) {
  ------------------
  |  Branch (3169:9): [True: 0, False: 2]
  ------------------
 3170|      0|        return _PyStatus_ERR("<stdin> is a directory, cannot continue");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3171|      0|    }
 3172|      2|#endif
 3173|       |
 3174|      2|    if (!(iomod = PyImport_ImportModule("_io"))) {
  ------------------
  |  Branch (3174:9): [True: 0, False: 2]
  ------------------
 3175|      0|        goto error;
 3176|      0|    }
 3177|       |
 3178|       |    /* Set sys.stdin */
 3179|      2|    fd = fileno(stdin);
 3180|       |    /* Under some conditions stdin, stdout and stderr may not be connected
 3181|       |     * and fileno() may point to an invalid file descriptor. For example
 3182|       |     * GUI apps don't have valid standard streams by default.
 3183|       |     */
 3184|      2|    std = create_stdio(config, iomod, fd, 0, "<stdin>",
 3185|      2|                       config->stdio_encoding,
 3186|      2|                       config->stdio_errors);
 3187|      2|    if (std == NULL)
  ------------------
  |  Branch (3187:9): [True: 0, False: 2]
  ------------------
 3188|      0|        goto error;
 3189|      2|    PySys_SetObject("__stdin__", std);
 3190|      2|    _PySys_SetAttr(&_Py_ID(stdin), std);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3191|      2|    Py_DECREF(std);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3192|       |
 3193|       |    /* Set sys.stdout */
 3194|      2|    fd = fileno(stdout);
 3195|      2|    std = create_stdio(config, iomod, fd, 1, "<stdout>",
 3196|      2|                       config->stdio_encoding,
 3197|      2|                       config->stdio_errors);
 3198|      2|    if (std == NULL)
  ------------------
  |  Branch (3198:9): [True: 0, False: 2]
  ------------------
 3199|      0|        goto error;
 3200|      2|    PySys_SetObject("__stdout__", std);
 3201|      2|    _PySys_SetAttr(&_Py_ID(stdout), std);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3202|      2|    Py_DECREF(std);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3203|       |
 3204|      2|#if 1 /* Disable this if you have trouble debugging bootstrap stuff */
 3205|       |    /* Set sys.stderr, replaces the preliminary stderr */
 3206|      2|    fd = fileno(stderr);
 3207|      2|    std = create_stdio(config, iomod, fd, 1, "<stderr>",
 3208|      2|                       config->stdio_encoding,
 3209|      2|                       L"backslashreplace");
 3210|      2|    if (std == NULL)
  ------------------
  |  Branch (3210:9): [True: 0, False: 2]
  ------------------
 3211|      0|        goto error;
 3212|       |
 3213|       |    /* Same as hack above, pre-import stderr's codec to avoid recursion
 3214|       |       when import.c tries to write to stderr in verbose mode. */
 3215|      2|    encoding_attr = PyObject_GetAttrString(std, "encoding");
 3216|      2|    if (encoding_attr != NULL) {
  ------------------
  |  Branch (3216:9): [True: 2, False: 0]
  ------------------
 3217|      2|        const char *std_encoding = PyUnicode_AsUTF8(encoding_attr);
 3218|      2|        if (std_encoding != NULL) {
  ------------------
  |  Branch (3218:13): [True: 2, False: 0]
  ------------------
 3219|      2|            PyObject *codec_info = _PyCodec_Lookup(std_encoding);
 3220|      2|            Py_XDECREF(codec_info);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3221|      2|        }
 3222|      2|        Py_DECREF(encoding_attr);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3223|      2|    }
 3224|      2|    _PyErr_Clear(tstate);  /* Not a fatal error if codec isn't available */
 3225|       |
 3226|      2|    if (PySys_SetObject("__stderr__", std) < 0) {
  ------------------
  |  Branch (3226:9): [True: 0, False: 2]
  ------------------
 3227|      0|        Py_DECREF(std);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3228|      0|        goto error;
 3229|      0|    }
 3230|      2|    if (_PySys_SetAttr(&_Py_ID(stderr), std) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3230:9): [True: 0, False: 2]
  ------------------
 3231|      0|        Py_DECREF(std);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3232|      0|        goto error;
 3233|      0|    }
 3234|      2|    Py_DECREF(std);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3235|      2|#endif
 3236|       |
 3237|      2|    goto done;
 3238|       |
 3239|      0|error:
 3240|      0|    res = _PyStatus_ERR("can't initialize sys standard streams");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3241|       |
 3242|      2|done:
 3243|      2|    Py_XDECREF(iomod);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3244|      2|    return res;
 3245|      0|}
pylifecycle.c:create_stdio:
 2981|      6|{
 2982|      6|    PyObject *buf = NULL, *stream = NULL, *text = NULL, *raw = NULL, *res;
 2983|      6|    const char* mode;
 2984|      6|    const char* newline;
 2985|      6|    PyObject *line_buffering, *write_through;
 2986|      6|    int buffering, isatty;
 2987|      6|    const int buffered_stdio = config->buffered_stdio;
 2988|       |
 2989|      6|    if (!_Py_IsValidFD(fd)) {
  ------------------
  |  Branch (2989:9): [True: 0, False: 6]
  ------------------
 2990|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 2991|      0|    }
 2992|       |
 2993|       |    /* stdin is always opened in buffered mode, first because it shouldn't
 2994|       |       make a difference in common use cases, second because TextIOWrapper
 2995|       |       depends on the presence of a read1() method which only exists on
 2996|       |       buffered streams.
 2997|       |    */
 2998|      6|    if (!buffered_stdio && write_mode)
  ------------------
  |  Branch (2998:9): [True: 0, False: 6]
  |  Branch (2998:28): [True: 0, False: 0]
  ------------------
 2999|      0|        buffering = 0;
 3000|      6|    else
 3001|      6|        buffering = -1;
 3002|      6|    if (write_mode)
  ------------------
  |  Branch (3002:9): [True: 4, False: 2]
  ------------------
 3003|      4|        mode = "wb";
 3004|      2|    else
 3005|      2|        mode = "rb";
 3006|      6|    buf = _PyObject_CallMethod(io, &_Py_ID(open), "isiOOOO",
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3007|      6|                               fd, mode, buffering,
 3008|      6|                               Py_None, Py_None, /* encoding, errors */
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
                                             Py_None, Py_None, /* encoding, errors */
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
 3009|      6|                               Py_None, Py_False); /* newline, closefd */
  ------------------
  |  |  616|      6|#  define Py_None (&_Py_NoneStruct)
  ------------------
                                             Py_None, Py_False); /* newline, closefd */
  ------------------
  |  |   25|      6|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3010|      6|    if (buf == NULL)
  ------------------
  |  Branch (3010:9): [True: 0, False: 6]
  ------------------
 3011|      0|        goto error;
 3012|       |
 3013|      6|    if (buffering) {
  ------------------
  |  Branch (3013:9): [True: 6, False: 0]
  ------------------
 3014|      6|        raw = PyObject_GetAttr(buf, &_Py_ID(raw));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3015|      6|        if (raw == NULL)
  ------------------
  |  Branch (3015:13): [True: 0, False: 6]
  ------------------
 3016|      0|            goto error;
 3017|      6|    }
 3018|      0|    else {
 3019|      0|        raw = Py_NewRef(buf);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3020|      0|    }
 3021|       |
 3022|       |#ifdef HAVE_WINDOWS_CONSOLE_IO
 3023|       |    /* Windows console IO is always UTF-8 encoded */
 3024|       |    PyTypeObject *winconsoleio_type = (PyTypeObject *)PyImport_ImportModuleAttr(
 3025|       |            &_Py_ID(_io), &_Py_ID(_WindowsConsoleIO));
 3026|       |    if (winconsoleio_type == NULL) {
 3027|       |        goto error;
 3028|       |    }
 3029|       |    int is_subclass = PyObject_TypeCheck(raw, winconsoleio_type);
 3030|       |    Py_DECREF(winconsoleio_type);
 3031|       |    if (is_subclass) {
 3032|       |        encoding = L"utf-8";
 3033|       |    }
 3034|       |#endif
 3035|       |
 3036|      6|    text = PyUnicode_FromString(name);
 3037|      6|    if (text == NULL || PyObject_SetAttr(raw, &_Py_ID(name), text) < 0)
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3037:9): [True: 0, False: 6]
  |  Branch (3037:25): [True: 0, False: 6]
  ------------------
 3038|      0|        goto error;
 3039|      6|    res = PyObject_CallMethodNoArgs(raw, &_Py_ID(isatty));
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3040|      6|    if (res == NULL)
  ------------------
  |  Branch (3040:9): [True: 0, False: 6]
  ------------------
 3041|      0|        goto error;
 3042|      6|    isatty = PyObject_IsTrue(res);
 3043|      6|    Py_DECREF(res);
  ------------------
  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3044|      6|    if (isatty == -1)
  ------------------
  |  Branch (3044:9): [True: 0, False: 6]
  ------------------
 3045|      0|        goto error;
 3046|      6|    if (!buffered_stdio)
  ------------------
  |  Branch (3046:9): [True: 0, False: 6]
  ------------------
 3047|      0|        write_through = Py_True;
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3048|      6|    else
 3049|      6|        write_through = Py_False;
  ------------------
  |  |   25|      6|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3050|      6|    if (buffered_stdio && (isatty || fd == fileno(stderr)))
  ------------------
  |  Branch (3050:9): [True: 6, False: 0]
  |  Branch (3050:28): [True: 0, False: 6]
  |  Branch (3050:38): [True: 2, False: 4]
  ------------------
 3051|      2|        line_buffering = Py_True;
  ------------------
  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3052|      4|    else
 3053|      4|        line_buffering = Py_False;
  ------------------
  |  |   25|      4|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3054|       |
 3055|      6|    Py_CLEAR(raw);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 6, False: 0]
  |  |  ------------------
  |  |  488|      6|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      6|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      6|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      6|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 3056|      6|    Py_CLEAR(text);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 6, False: 0]
  |  |  ------------------
  |  |  488|      6|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      6|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      6|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      6|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 3057|       |
 3058|       |#ifdef MS_WINDOWS
 3059|       |    /* sys.stdin: enable universal newline mode, translate "\r\n" and "\r"
 3060|       |       newlines to "\n".
 3061|       |       sys.stdout and sys.stderr: translate "\n" to "\r\n". */
 3062|       |    newline = NULL;
 3063|       |#else
 3064|       |    /* sys.stdin: split lines at "\n".
 3065|       |       sys.stdout and sys.stderr: don't translate newlines (use "\n"). */
 3066|      6|    newline = "\n";
 3067|      6|#endif
 3068|       |
 3069|      6|    PyObject *encoding_str = PyUnicode_FromWideChar(encoding, -1);
 3070|      6|    if (encoding_str == NULL) {
  ------------------
  |  Branch (3070:9): [True: 0, False: 6]
  ------------------
 3071|      0|        Py_CLEAR(buf);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3072|      0|        goto error;
 3073|      0|    }
 3074|       |
 3075|      6|    PyObject *errors_str = PyUnicode_FromWideChar(errors, -1);
 3076|      6|    if (errors_str == NULL) {
  ------------------
  |  Branch (3076:9): [True: 0, False: 6]
  ------------------
 3077|      0|        Py_CLEAR(buf);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3078|      0|        Py_CLEAR(encoding_str);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3079|      0|        goto error;
 3080|      0|    }
 3081|       |
 3082|      6|    stream = _PyObject_CallMethod(io, &_Py_ID(TextIOWrapper), "OOOsOO",
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3083|      6|                                  buf, encoding_str, errors_str,
 3084|      6|                                  newline, line_buffering, write_through);
 3085|      6|    Py_CLEAR(buf);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 6, False: 0]
  |  |  ------------------
  |  |  488|      6|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      6|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      6|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      6|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 3086|      6|    Py_CLEAR(encoding_str);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 6, False: 0]
  |  |  ------------------
  |  |  488|      6|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      6|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      6|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      6|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 3087|      6|    Py_CLEAR(errors_str);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 6, False: 0]
  |  |  ------------------
  |  |  488|      6|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      6|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      6|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      6|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 3088|      6|    if (stream == NULL)
  ------------------
  |  Branch (3088:9): [True: 0, False: 6]
  ------------------
 3089|      0|        goto error;
 3090|       |
 3091|      6|    if (write_mode)
  ------------------
  |  Branch (3091:9): [True: 4, False: 2]
  ------------------
 3092|      4|        mode = "w";
 3093|      2|    else
 3094|      2|        mode = "r";
 3095|      6|    text = PyUnicode_FromString(mode);
 3096|      6|    if (!text || PyObject_SetAttr(stream, &_Py_ID(mode), text) < 0)
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3096:9): [True: 0, False: 6]
  |  Branch (3096:18): [True: 0, False: 6]
  ------------------
 3097|      0|        goto error;
 3098|      6|    Py_CLEAR(text);
  ------------------
  |  |  484|      6|    do { \
  |  |  485|      6|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      6|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      6|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      6|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 6, False: 0]
  |  |  ------------------
  |  |  488|      6|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      6|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      6|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      6|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      6|        } \
  |  |  491|      6|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 6]
  |  |  ------------------
  ------------------
 3099|      6|    return stream;
 3100|       |
 3101|      0|error:
 3102|      0|    Py_XDECREF(buf);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3103|      0|    Py_XDECREF(stream);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3104|      0|    Py_XDECREF(text);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3105|      0|    Py_XDECREF(raw);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3106|       |
 3107|      0|    if (PyErr_ExceptionMatches(PyExc_OSError) && !_Py_IsValidFD(fd)) {
  ------------------
  |  Branch (3107:9): [True: 0, False: 0]
  |  Branch (3107:50): [True: 0, False: 0]
  ------------------
 3108|       |        /* Issue #24891: the file descriptor was closed after the first
 3109|       |           _Py_IsValidFD() check was called. Ignore the OSError and set the
 3110|       |           stream to None. */
 3111|      0|        PyErr_Clear();
 3112|      0|        Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
 3113|      0|    }
 3114|      0|    return NULL;
 3115|      0|}
pylifecycle.c:init_set_builtins_open:
 3120|      2|{
 3121|      2|    PyObject *wrapper;
 3122|      2|    PyObject *bimod = NULL;
 3123|      2|    PyStatus res = _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3124|       |
 3125|      2|    if (!(bimod = PyImport_ImportModule("builtins"))) {
  ------------------
  |  Branch (3125:9): [True: 0, False: 2]
  ------------------
 3126|      0|        goto error;
 3127|      0|    }
 3128|       |
 3129|      2|    if (!(wrapper = PyImport_ImportModuleAttrString("_io", "open"))) {
  ------------------
  |  Branch (3129:9): [True: 0, False: 2]
  ------------------
 3130|      0|        goto error;
 3131|      0|    }
 3132|       |
 3133|       |    /* Set builtins.open */
 3134|      2|    if (PyObject_SetAttrString(bimod, "open", wrapper) == -1) {
  ------------------
  |  Branch (3134:9): [True: 0, False: 2]
  ------------------
 3135|      0|        Py_DECREF(wrapper);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3136|      0|        goto error;
 3137|      0|    }
 3138|      2|    Py_DECREF(wrapper);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3139|      2|    goto done;
 3140|       |
 3141|      0|error:
 3142|      0|    res = _PyStatus_ERR("can't initialize io.open");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 3143|       |
 3144|      2|done:
 3145|      2|    Py_XDECREF(bimod);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3146|      2|    return res;
 3147|      0|}
pylifecycle.c:add_main_module:
 2914|      2|{
 2915|      2|    PyObject *m, *d;
 2916|      2|    m = PyImport_AddModuleObject(&_Py_ID(__main__));
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2917|      2|    if (m == NULL)
  ------------------
  |  Branch (2917:9): [True: 0, False: 2]
  ------------------
 2918|      0|        return _PyStatus_ERR("can't create __main__ module");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2919|       |
 2920|      2|    d = PyModule_GetDict(m);
 2921|       |
 2922|      2|    int has_builtins = PyDict_ContainsString(d, "__builtins__");
 2923|      2|    if (has_builtins < 0) {
  ------------------
  |  Branch (2923:9): [True: 0, False: 2]
  ------------------
 2924|      0|        return _PyStatus_ERR("Failed to test __main__.__builtins__");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2925|      0|    }
 2926|      2|    if (!has_builtins) {
  ------------------
  |  Branch (2926:9): [True: 2, False: 0]
  ------------------
 2927|      2|        PyObject *bimod = PyImport_ImportModule("builtins");
 2928|      2|        if (bimod == NULL) {
  ------------------
  |  Branch (2928:13): [True: 0, False: 2]
  ------------------
 2929|      0|            return _PyStatus_ERR("Failed to retrieve builtins module");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2930|      0|        }
 2931|      2|        if (PyDict_SetItemString(d, "__builtins__", bimod) < 0) {
  ------------------
  |  Branch (2931:13): [True: 0, False: 2]
  ------------------
 2932|      0|            return _PyStatus_ERR("Failed to initialize __main__.__builtins__");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2933|      0|        }
 2934|      2|        Py_DECREF(bimod);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2935|      2|    }
 2936|       |
 2937|       |    /* Main is a little special - BuiltinImporter is the most appropriate
 2938|       |     * initial setting for its __loader__ attribute. A more suitable value
 2939|       |     * will be set if __main__ gets further initialized later in the startup
 2940|       |     * process.
 2941|       |     */
 2942|      2|    PyObject *loader;
 2943|      2|    if (PyDict_GetItemStringRef(d, "__loader__", &loader) < 0) {
  ------------------
  |  Branch (2943:9): [True: 0, False: 2]
  ------------------
 2944|      0|        return _PyStatus_ERR("Failed to test __main__.__loader__");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2945|      0|    }
 2946|      2|    int has_loader = !(loader == NULL || loader == Py_None);
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (2946:24): [True: 0, False: 2]
  |  Branch (2946:42): [True: 2, False: 0]
  ------------------
 2947|      2|    Py_XDECREF(loader);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2948|      2|    if (!has_loader) {
  ------------------
  |  Branch (2948:9): [True: 2, False: 0]
  ------------------
 2949|      2|        PyObject *loader = _PyImport_GetImportlibLoader(interp,
 2950|      2|                                                        "BuiltinImporter");
 2951|      2|        if (loader == NULL) {
  ------------------
  |  Branch (2951:13): [True: 0, False: 2]
  ------------------
 2952|      0|            return _PyStatus_ERR("Failed to retrieve BuiltinImporter");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2953|      0|        }
 2954|      2|        if (PyDict_SetItemString(d, "__loader__", loader) < 0) {
  ------------------
  |  Branch (2954:13): [True: 0, False: 2]
  ------------------
 2955|      0|            return _PyStatus_ERR("Failed to initialize __main__.__loader__");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2956|      0|        }
 2957|      2|        Py_DECREF(loader);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2958|      2|    }
 2959|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2960|      2|}
pylifecycle.c:init_import_site:
 2966|      2|{
 2967|      2|    PyObject *m;
 2968|      2|    m = PyImport_ImportModule("site");
 2969|      2|    if (m == NULL) {
  ------------------
  |  Branch (2969:9): [True: 0, False: 2]
  ------------------
 2970|      0|        return _PyStatus_ERR("Failed to import the site module");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 2971|      0|    }
 2972|      2|    Py_DECREF(m);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2973|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2974|      2|}
pylifecycle.c:emit_stderr_warning_for_legacy_locale:
  239|      2|{
  240|      2|    const PyPreConfig *preconfig = &runtime->preconfig;
  241|      2|    if (preconfig->coerce_c_locale_warn && _Py_LegacyLocaleDetected(1)) {
  ------------------
  |  Branch (241:9): [True: 0, False: 2]
  |  Branch (241:44): [True: 0, False: 0]
  ------------------
  242|      0|        PySys_FormatStderr("%s", _C_LOCALE_WARNING);
  243|      0|    }
  244|      2|}

_Py_get_387controlword:
   10|  3.51k|unsigned short _Py_get_387controlword(void) {
   11|  3.51k|    unsigned short cw;
   12|  3.51k|    __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
   13|  3.51k|    return cw;
   14|  3.51k|}
_Py_set_387controlword:
   16|  7.02k|void _Py_set_387controlword(unsigned short cw) {
   17|  7.02k|    __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
   18|  7.02k|}

_PyRuntimeState_Init:
  353|      2|{
  354|       |    /* We preserve the hook across init, because there is
  355|       |       currently no public API to set it between runtime
  356|       |       initialization and interpreter initialization. */
  357|      2|    void *open_code_hook = runtime->open_code_hook;
  358|      2|    void *open_code_userdata = runtime->open_code_userdata;
  359|      2|    _Py_AuditHookEntry *audit_hook_head = runtime->audit_hooks.head;
  360|       |    // bpo-42882: Preserve next_index value if Py_Initialize()/Py_Finalize()
  361|       |    // is called multiple times.
  362|      2|    Py_ssize_t unicode_next_index = runtime->unicode_state.ids.next_index;
  363|       |
  364|      2|    if (runtime->_initialized) {
  ------------------
  |  Branch (364:9): [True: 0, False: 2]
  ------------------
  365|       |        // Py_Initialize() must be running again.
  366|       |        // Reset to _PyRuntimeState_INIT.
  367|      0|        memcpy(runtime, &initial, sizeof(*runtime));
  368|       |        // Preserve the cookie from the original runtime.
  369|      0|        memcpy(runtime->debug_offsets.cookie, _Py_Debug_Cookie, 8);
  ------------------
  |  |   12|      0|#define _Py_Debug_Cookie "xdebugpy"
  ------------------
  370|      0|        assert(!runtime->_initialized);
  ------------------
  |  Branch (370:9): [True: 0, False: 0]
  ------------------
  371|      0|    }
  372|       |
  373|      2|    PyStatus status = _PyTime_Init(&runtime->time);
  374|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  375|      0|        return status;
  376|      0|    }
  377|       |
  378|      2|    init_runtime(runtime, open_code_hook, open_code_userdata, audit_hook_head,
  379|      2|                 unicode_next_index);
  380|       |
  381|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  382|      2|}
_PyInterpreterState_Enable:
  443|      2|{
  444|      2|    struct pyinterpreters *interpreters = &runtime->interpreters;
  445|      2|    interpreters->next_id = 0;
  446|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  447|      2|}
_PyInterpreterState_New:
  679|      2|{
  680|      2|    *pinterp = NULL;
  681|       |
  682|       |    // Don't get runtime from tstate since tstate can be NULL
  683|      2|    _PyRuntimeState *runtime = &_PyRuntime;
  684|       |
  685|       |    // tstate is NULL when pycore_create_interpreter() calls
  686|       |    // _PyInterpreterState_New() to create the main interpreter.
  687|      2|    if (tstate != NULL) {
  ------------------
  |  Branch (687:9): [True: 0, False: 2]
  ------------------
  688|      0|        if (_PySys_Audit(tstate, "cpython.PyInterpreterState_New", NULL) < 0) {
  ------------------
  |  Branch (688:13): [True: 0, False: 0]
  ------------------
  689|      0|            return _PyStatus_ERR("sys.audit failed");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  690|      0|        }
  691|      0|    }
  692|       |
  693|       |    /* We completely serialize creation of multiple interpreters, since
  694|       |       it simplifies things here and blocking concurrent calls isn't a problem.
  695|       |       Regardless, we must fully block subinterpreter creation until
  696|       |       after the main interpreter is created. */
  697|      2|    HEAD_LOCK(runtime);
  ------------------
  |  |  266|      2|    PyMutex_LockFlags(&(runtime)->interpreters.mutex, _Py_LOCK_DONT_DETACH)
  ------------------
  698|       |
  699|      2|    struct pyinterpreters *interpreters = &runtime->interpreters;
  700|      2|    int64_t id = interpreters->next_id;
  701|      2|    interpreters->next_id += 1;
  702|       |
  703|       |    // Allocate the interpreter and add it to the runtime state.
  704|      2|    PyInterpreterState *interp;
  705|      2|    PyStatus status;
  706|      2|    PyInterpreterState *old_head = interpreters->head;
  707|      2|    if (old_head == NULL) {
  ------------------
  |  Branch (707:9): [True: 2, False: 0]
  ------------------
  708|       |        // We are creating the main interpreter.
  709|      2|        assert(interpreters->main == NULL);
  ------------------
  |  Branch (709:9): [True: 2, False: 0]
  ------------------
  710|      2|        assert(id == 0);
  ------------------
  |  Branch (710:9): [True: 2, False: 0]
  ------------------
  711|       |
  712|      2|        interp = &runtime->_main_interpreter;
  713|      2|        assert(interp->id == 0);
  ------------------
  |  Branch (713:9): [True: 2, False: 0]
  ------------------
  714|      2|        assert(interp->next == NULL);
  ------------------
  |  Branch (714:9): [True: 2, False: 0]
  ------------------
  715|       |
  716|      2|        interpreters->main = interp;
  717|      2|    }
  718|      0|    else {
  719|      0|        assert(interpreters->main != NULL);
  ------------------
  |  Branch (719:9): [True: 0, False: 0]
  ------------------
  720|      0|        assert(id != 0);
  ------------------
  |  Branch (720:9): [True: 0, False: 0]
  ------------------
  721|       |
  722|      0|        interp = alloc_interpreter();
  723|      0|        if (interp == NULL) {
  ------------------
  |  Branch (723:13): [True: 0, False: 0]
  ------------------
  724|      0|            status = _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  725|      0|            goto error;
  726|      0|        }
  727|       |        // Set to _PyInterpreterState_INIT.
  728|      0|        memcpy(interp, &initial._main_interpreter, sizeof(*interp));
  729|       |
  730|      0|        if (id < 0) {
  ------------------
  |  Branch (730:13): [True: 0, False: 0]
  ------------------
  731|       |            /* overflow or Py_Initialize() not called yet! */
  732|      0|            status = _PyStatus_ERR("failed to get an interpreter ID");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  733|      0|            goto error;
  734|      0|        }
  735|      0|    }
  736|      2|    interpreters->head = interp;
  737|       |
  738|      2|    long whence = _PyInterpreterState_WHENCE_UNKNOWN;
  ------------------
  |  |   17|      2|#define _PyInterpreterState_WHENCE_UNKNOWN 0
  ------------------
  739|      2|    status = init_interpreter(interp, runtime,
  740|      2|                              id, old_head, whence);
  741|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  742|      0|        goto error;
  743|      0|    }
  744|       |
  745|      2|    HEAD_UNLOCK(runtime);
  ------------------
  |  |  268|      2|    PyMutex_Unlock(&(runtime)->interpreters.mutex)
  |  |  ------------------
  |  |  |  |   70|      2|#define PyMutex_Unlock _PyMutex_Unlock
  |  |  ------------------
  ------------------
  746|       |
  747|      2|    assert(interp != NULL);
  ------------------
  |  Branch (747:5): [True: 2, False: 0]
  ------------------
  748|      2|    *pinterp = interp;
  749|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  750|       |
  751|      0|error:
  752|      0|    HEAD_UNLOCK(runtime);
  ------------------
  |  |  268|      0|    PyMutex_Unlock(&(runtime)->interpreters.mutex)
  |  |  ------------------
  |  |  |  |   70|      0|#define PyMutex_Unlock _PyMutex_Unlock
  |  |  ------------------
  ------------------
  753|       |
  754|      0|    if (interp != NULL) {
  ------------------
  |  Branch (754:9): [True: 0, False: 0]
  ------------------
  755|      0|        free_interpreter(interp);
  756|      0|    }
  757|      0|    return status;
  758|      2|}
_PyInterpreterState_SetWhence:
 1190|      2|{
 1191|      2|    assert(interp->_whence != _PyInterpreterState_WHENCE_NOTSET);
  ------------------
  |  Branch (1191:5): [True: 2, False: 0]
  ------------------
 1192|      2|    assert(check_interpreter_whence(whence) == 0);
  ------------------
  |  Branch (1192:5): [True: 2, False: 0]
  ------------------
 1193|      2|    interp->_whence = whence;
 1194|      2|}
_PyThreadState_New:
 1700|      2|{
 1701|      2|    return new_threadstate(interp, whence);
 1702|      2|}
_PyThreadState_Attach:
 2219|    656|{
 2220|       |#if defined(Py_DEBUG)
 2221|       |    // This is called from PyEval_RestoreThread(). Similar
 2222|       |    // to it, we need to ensure errno doesn't change.
 2223|       |    int err = errno;
 2224|       |#endif
 2225|       |
 2226|    656|    _Py_EnsureTstateNotNULL(tstate);
  ------------------
  |  |  196|    656|    _Py_EnsureFuncTstateNotNULL(__func__, (tstate))
  ------------------
 2227|    656|    if (current_fast_get() != NULL) {
  ------------------
  |  Branch (2227:9): [True: 0, False: 656]
  ------------------
 2228|      0|        Py_FatalError("non-NULL old thread state");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
 2229|      0|    }
 2230|    656|    _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
 2231|    656|    if (_tstate->c_stack_hard_limit == 0) {
  ------------------
  |  Branch (2231:9): [True: 2, False: 654]
  ------------------
 2232|      2|        _Py_InitializeRecursionLimits(tstate);
 2233|      2|    }
 2234|       |
 2235|    656|    while (1) {
  ------------------
  |  Branch (2235:12): [True: 656, Folded]
  ------------------
 2236|    656|        _PyEval_AcquireLock(tstate);
 2237|       |
 2238|       |        // XXX assert(tstate_is_alive(tstate));
 2239|    656|        current_fast_set(&_PyRuntime, tstate);
 2240|    656|        if (!tstate_try_attach(tstate)) {
  ------------------
  |  Branch (2240:13): [True: 0, False: 656]
  ------------------
 2241|      0|            tstate_wait_attach(tstate);
 2242|      0|        }
 2243|    656|        tstate_activate(tstate);
 2244|       |
 2245|       |#ifdef Py_GIL_DISABLED
 2246|       |        if (_PyEval_IsGILEnabled(tstate) && !tstate->holds_gil) {
 2247|       |            // The GIL was enabled between our call to _PyEval_AcquireLock()
 2248|       |            // and when we attached (the GIL can't go from enabled to disabled
 2249|       |            // here because only a thread holding the GIL can disable
 2250|       |            // it). Detach and try again.
 2251|       |            tstate_set_detached(tstate, _Py_THREAD_DETACHED);
 2252|       |            tstate_deactivate(tstate);
 2253|       |            current_fast_clear(&_PyRuntime);
 2254|       |            continue;
 2255|       |        }
 2256|       |        _Py_qsbr_attach(((_PyThreadStateImpl *)tstate)->qsbr);
 2257|       |#endif
 2258|    656|        break;
 2259|    656|    }
 2260|       |
 2261|       |    // Resume previous critical section. This acquires the lock(s) from the
 2262|       |    // top-most critical section.
 2263|    656|    if (tstate->critical_section != 0) {
  ------------------
  |  Branch (2263:9): [True: 0, False: 656]
  ------------------
 2264|      0|        _PyCriticalSection_Resume(tstate);
 2265|      0|    }
 2266|       |
 2267|       |#ifdef Py_STATS
 2268|       |    _PyStats_Attach((_PyThreadStateImpl *)tstate);
 2269|       |#endif
 2270|       |
 2271|       |#if defined(Py_DEBUG)
 2272|       |    errno = err;
 2273|       |#endif
 2274|    656|}
_PyThreadState_Detach:
 2296|    654|{
 2297|    654|    detach_thread(tstate, _Py_THREAD_DETACHED);
  ------------------
  |  |   46|    654|#define _Py_THREAD_DETACHED         0
  ------------------
 2298|    654|}
PyThreadState_Get:
 2587|    276|{
 2588|    276|    PyThreadState *tstate = current_fast_get();
 2589|    276|    _Py_EnsureTstateNotNULL(tstate);
  ------------------
  |  |  196|    276|    _Py_EnsureFuncTstateNotNULL(__func__, (tstate))
  ------------------
 2590|    276|    return tstate;
 2591|    276|}
_PyThreadState_Bind:
 2615|      2|{
 2616|       |    // gh-104690: If Python is being finalized and PyInterpreterState_Delete()
 2617|       |    // was called, tstate becomes a dangling pointer.
 2618|      2|    assert(_PyThreadState_CheckConsistency(tstate));
  ------------------
  |  Branch (2618:5): [True: 2, False: 0]
  ------------------
 2619|       |
 2620|      2|    bind_tstate(tstate);
 2621|       |    // This makes sure there's a gilstate tstate bound
 2622|       |    // as soon as possible.
 2623|      2|    if (gilstate_get() == NULL) {
  ------------------
  |  Branch (2623:9): [True: 2, False: 0]
  ------------------
 2624|      2|        bind_gilstate_tstate(tstate);
 2625|      2|    }
 2626|      2|}
_PyGILState_Init:
 2814|      2|{
 2815|      2|    if (!_Py_IsMainInterpreter(interp)) {
  ------------------
  |  Branch (2815:9): [True: 0, False: 2]
  ------------------
 2816|       |        /* Currently, PyGILState is shared by all interpreters. The main
 2817|       |         * interpreter is responsible to initialize it. */
 2818|      0|        return _PyStatus_OK();
  ------------------
  |  |   24|      0|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2819|      0|    }
 2820|      2|    _PyRuntimeState *runtime = interp->runtime;
 2821|      2|    assert(gilstate_get() == NULL);
  ------------------
  |  Branch (2821:5): [True: 2, False: 0]
  ------------------
 2822|      2|    assert(runtime->gilstate.autoInterpreterState == NULL);
  ------------------
  |  Branch (2822:5): [True: 2, False: 0]
  ------------------
 2823|      2|    runtime->gilstate.autoInterpreterState = interp;
 2824|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 2825|      2|}
_PyGILState_SetTstate:
 2842|      2|{
 2843|       |    /* must init with valid states */
 2844|      2|    assert(tstate != NULL);
  ------------------
  |  Branch (2844:5): [True: 2, False: 0]
  ------------------
 2845|      2|    assert(tstate->interp != NULL);
  ------------------
  |  Branch (2845:5): [True: 2, False: 0]
  ------------------
 2846|       |
 2847|      2|    if (!_Py_IsMainInterpreter(tstate->interp)) {
  ------------------
  |  Branch (2847:9): [True: 0, False: 2]
  ------------------
 2848|       |        /* Currently, PyGILState is shared by all interpreters. The main
 2849|       |         * interpreter is responsible to initialize it. */
 2850|      0|        return;
 2851|      0|    }
 2852|       |
 2853|      2|#ifndef NDEBUG
 2854|      2|    _PyRuntimeState *runtime = tstate->interp->runtime;
 2855|       |
 2856|      2|    assert(runtime->gilstate.autoInterpreterState == tstate->interp);
  ------------------
  |  Branch (2856:5): [True: 2, False: 0]
  ------------------
 2857|      2|    assert(gilstate_get() == tstate);
  ------------------
  |  Branch (2857:5): [True: 2, False: 0]
  ------------------
 2858|      2|    assert(tstate->gilstate_counter == 1);
  ------------------
  |  Branch (2858:5): [True: 2, False: 0]
  ------------------
 2859|      2|#endif
 2860|      2|}
_PyInterpreterState_IsSpecializationEnabled:
 3058|    154|{
 3059|    154|    return interp->eval_frame == NULL
  ------------------
  |  Branch (3059:12): [True: 154, False: 0]
  ------------------
 3060|      0|        || interp->eval_frame_allow_specialization;
  ------------------
  |  Branch (3060:12): [True: 0, False: 0]
  ------------------
 3061|    154|}
_PyInterpreterState_GetConfig:
 3066|  3.72k|{
 3067|  3.72k|    return &interp->config;
 3068|  3.72k|}
_Py_GetConfig:
 3073|  1.49k|{
 3074|  1.49k|    PyThreadState *tstate = current_fast_get();
 3075|  1.49k|    _Py_EnsureTstateNotNULL(tstate);
  ------------------
  |  |  196|  1.49k|    _Py_EnsureFuncTstateNotNULL(__func__, (tstate))
  ------------------
 3076|  1.49k|    return _PyInterpreterState_GetConfig(tstate->interp);
 3077|  1.49k|}
_PyThreadState_PushFrame:
 3127|  2.23k|{
 3128|  2.23k|    assert(size < INT_MAX/sizeof(PyObject *));
  ------------------
  |  Branch (3128:5): [True: 2.23k, False: 0]
  ------------------
 3129|  2.23k|    if (_PyThreadState_HasStackSpace(tstate, (int)size)) {
  ------------------
  |  Branch (3129:9): [True: 2.23k, False: 2]
  ------------------
 3130|  2.23k|        _PyInterpreterFrame *res = (_PyInterpreterFrame *)tstate->datastack_top;
 3131|  2.23k|        tstate->datastack_top += size;
 3132|  2.23k|        return res;
 3133|  2.23k|    }
 3134|      2|    return (_PyInterpreterFrame *)push_chunk(tstate, (int)size);
 3135|  2.23k|}
_PyThreadState_PopFrame:
 3139|  3.46k|{
 3140|  3.46k|    assert(tstate->datastack_chunk);
  ------------------
  |  Branch (3140:5): [True: 3.46k, False: 0]
  ------------------
 3141|  3.46k|    PyObject **base = (PyObject **)frame;
 3142|  3.46k|    if (base == &tstate->datastack_chunk->data[0]) {
  ------------------
  |  Branch (3142:9): [True: 0, False: 3.46k]
  ------------------
 3143|      0|        _PyStackChunk *chunk = tstate->datastack_chunk;
 3144|      0|        _PyStackChunk *previous = chunk->previous;
 3145|      0|        _PyStackChunk *cached = tstate->datastack_cached_chunk;
 3146|       |        // push_chunk ensures that the root chunk is never popped:
 3147|      0|        assert(previous);
  ------------------
  |  Branch (3147:9): [True: 0, False: 0]
  ------------------
 3148|      0|        tstate->datastack_top = &previous->data[previous->top];
 3149|      0|        tstate->datastack_chunk = previous;
 3150|      0|        tstate->datastack_limit = (PyObject **)(((char *)previous) + previous->size);
 3151|      0|        chunk->previous = NULL;
 3152|      0|        if (cached != NULL) {
  ------------------
  |  Branch (3152:13): [True: 0, False: 0]
  ------------------
 3153|      0|            _PyObject_VirtualFree(cached, cached->size);
 3154|      0|        }
 3155|      0|        tstate->datastack_cached_chunk = chunk;
 3156|      0|    }
 3157|  3.46k|    else {
 3158|  3.46k|        assert(tstate->datastack_top);
  ------------------
  |  Branch (3158:9): [True: 3.46k, False: 0]
  ------------------
 3159|  3.46k|        assert(tstate->datastack_top >= base);
  ------------------
  |  Branch (3159:9): [True: 3.46k, False: 0]
  ------------------
 3160|  3.46k|        tstate->datastack_top = base;
 3161|  3.46k|    }
 3162|  3.46k|}
_PyThreadState_CheckConsistency:
 3175|  1.31k|{
 3176|  1.31k|    assert(!_PyMem_IsPtrFreed(tstate));
  ------------------
  |  Branch (3176:5): [True: 1.31k, False: 0]
  ------------------
 3177|  1.31k|    assert(!_PyMem_IsPtrFreed(tstate->interp));
  ------------------
  |  Branch (3177:5): [True: 1.31k, False: 0]
  ------------------
 3178|  1.31k|    return 1;
 3179|  1.31k|}
_PyThreadState_MustExit:
 3193|  1.31k|{
 3194|  1.31k|    int state = _Py_atomic_load_int_relaxed(&tstate->state);
 3195|  1.31k|    return state == _Py_THREAD_SHUTTING_DOWN;
  ------------------
  |  |   49|  1.31k|#define _Py_THREAD_SHUTTING_DOWN    3
  ------------------
 3196|  1.31k|}
_Py_IsMainThread:
 3286|  2.65k|{
 3287|  2.65k|    unsigned long thread = PyThread_get_thread_ident();
 3288|  2.65k|    return (thread == _PyRuntime.main_thread);
 3289|  2.65k|}
_PyInterpreterState_Main:
 3294|  2.45k|{
 3295|  2.45k|    return _PyRuntime.interpreters.main;
 3296|  2.45k|}
pystate.c:current_fast_get:
   85|  3.07k|{
   86|  3.07k|    return _Py_tss_tstate;
   87|  3.07k|}
pystate.c:init_runtime:
  331|      2|{
  332|      2|    assert(!runtime->preinitializing);
  ------------------
  |  Branch (332:5): [True: 2, False: 0]
  ------------------
  333|      2|    assert(!runtime->preinitialized);
  ------------------
  |  Branch (333:5): [True: 2, False: 0]
  ------------------
  334|      2|    assert(!_PyRuntimeState_GetCoreInitialized(runtime));
  ------------------
  |  Branch (334:5): [True: 2, False: 0]
  ------------------
  335|      2|    assert(!_PyRuntimeState_GetInitialized(runtime));
  ------------------
  |  Branch (335:5): [True: 2, False: 0]
  ------------------
  336|      2|    assert(!runtime->_initialized);
  ------------------
  |  Branch (336:5): [True: 2, False: 0]
  ------------------
  337|       |
  338|      2|    runtime->open_code_hook = open_code_hook;
  339|      2|    runtime->open_code_userdata = open_code_userdata;
  340|      2|    runtime->audit_hooks.head = audit_hook_head;
  341|       |
  342|      2|    PyPreConfig_InitPythonConfig(&runtime->preconfig);
  343|       |
  344|       |    // Set it to the ID of the main thread of the main interpreter.
  345|      2|    runtime->main_thread = PyThread_get_thread_ident();
  346|       |
  347|      2|    runtime->unicode_state.ids.next_index = unicode_next_index;
  348|      2|    runtime->_initialized = 1;
  349|      2|}
pystate.c:init_interpreter:
  546|      2|{
  547|      2|    if (interp->_initialized) {
  ------------------
  |  Branch (547:9): [True: 0, False: 2]
  ------------------
  548|      0|        return _PyStatus_ERR("interpreter already initialized");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
  549|      0|    }
  550|       |
  551|      2|    assert(interp->_whence == _PyInterpreterState_WHENCE_NOTSET);
  ------------------
  |  Branch (551:5): [True: 2, False: 0]
  ------------------
  552|      2|    assert(check_interpreter_whence(whence) == 0);
  ------------------
  |  Branch (552:5): [True: 2, False: 0]
  ------------------
  553|      2|    interp->_whence = whence;
  554|       |
  555|      2|    assert(runtime != NULL);
  ------------------
  |  Branch (555:5): [True: 2, False: 0]
  ------------------
  556|      2|    interp->runtime = runtime;
  557|       |
  558|      2|    assert(id > 0 || (id == 0 && interp == runtime->interpreters.main));
  ------------------
  |  Branch (558:5): [True: 2, False: 0]
  |  Branch (558:5): [True: 2, False: 0]
  |  Branch (558:5): [True: 0, False: 2]
  ------------------
  559|      2|    interp->id = id;
  560|       |
  561|      2|    interp->id_refcount = 0;
  562|       |
  563|      2|    assert(runtime->interpreters.head == interp);
  ------------------
  |  Branch (563:5): [True: 2, False: 0]
  ------------------
  564|      2|    assert(next != NULL || (interp == runtime->interpreters.main));
  ------------------
  |  Branch (564:5): [True: 0, False: 2]
  |  Branch (564:5): [True: 2, False: 0]
  ------------------
  565|      2|    interp->next = next;
  566|       |
  567|      2|    interp->threads.preallocated = &interp->_initial_thread;
  568|       |
  569|       |    // We would call _PyObject_InitState() at this point
  570|       |    // if interp->feature_flags were alredy set.
  571|       |
  572|      2|    _PyEval_InitState(interp);
  573|      2|    _PyGC_InitState(&interp->gc);
  574|      2|    PyConfig_InitPythonConfig(&interp->config);
  575|      2|    _PyType_InitCache(interp);
  576|       |#ifdef Py_GIL_DISABLED
  577|       |    _Py_brc_init_state(interp);
  578|       |#endif
  579|       |
  580|      2|    llist_init(&interp->mem_free_queue.head);
  581|      2|    llist_init(&interp->asyncio_tasks_head);
  582|      2|    interp->asyncio_tasks_lock = (PyMutex){0};
  583|     34|    for (int i = 0; i < _PY_MONITORING_UNGROUPED_EVENTS; i++) {
  ------------------
  |  |   75|     34|#define _PY_MONITORING_UNGROUPED_EVENTS 16
  ------------------
  |  Branch (583:21): [True: 32, False: 2]
  ------------------
  584|     32|        interp->monitors.tools[i] = 0;
  585|     32|    }
  586|     18|    for (int t = 0; t < PY_MONITORING_TOOL_IDS; t++) {
  ------------------
  |  |   72|     18|#define  PY_MONITORING_TOOL_IDS 8
  ------------------
  |  Branch (586:21): [True: 16, False: 2]
  ------------------
  587|    320|        for (int e = 0; e < _PY_MONITORING_EVENTS; e++) {
  ------------------
  |  |   77|    320|#define _PY_MONITORING_EVENTS 19
  ------------------
  |  Branch (587:25): [True: 304, False: 16]
  ------------------
  588|    304|            interp->monitoring_callables[t][e] = NULL;
  589|       |
  590|    304|        }
  591|     16|        interp->monitoring_tool_versions[t] = 0;
  592|     16|    }
  593|      2|    interp->_code_object_generation = 0;
  594|      2|    interp->jit = false;
  595|      2|    interp->compiling = false;
  596|      2|    interp->executor_blooms = NULL;
  597|      2|    interp->executor_ptrs = NULL;
  598|      2|    interp->executor_count = 0;
  599|      2|    interp->executor_capacity = 0;
  600|      2|    interp->executor_deletion_list_head = NULL;
  601|      2|    interp->executor_creation_counter = JIT_CLEANUP_THRESHOLD;
  ------------------
  |  |  309|      2|#define JIT_CLEANUP_THRESHOLD 1000
  ------------------
  602|       |
  603|       |    // Initialize optimization configuration from environment variables
  604|       |    // PYTHON_JIT_STRESS sets aggressive defaults for testing, but can be overridden
  605|      2|    uint16_t jump_default = JUMP_BACKWARD_INITIAL_VALUE;
  ------------------
  |  |  128|      2|#define JUMP_BACKWARD_INITIAL_VALUE 4000
  ------------------
  606|      2|    uint16_t resume_default = RESUME_INITIAL_VALUE;
  ------------------
  |  |  142|      2|#define RESUME_INITIAL_VALUE 8190
  ------------------
  607|      2|    uint16_t side_exit_default = SIDE_EXIT_INITIAL_VALUE;
  ------------------
  |  |  156|      2|#define SIDE_EXIT_INITIAL_VALUE 4000
  ------------------
  608|       |
  609|      2|    if (is_env_enabled("PYTHON_JIT_STRESS")) {
  ------------------
  |  Branch (609:9): [True: 0, False: 2]
  ------------------
  610|      0|        jump_default = 63;
  611|      0|        side_exit_default = 63;
  612|      0|        resume_default = 127;
  613|      0|    }
  614|       |
  615|      2|    init_policy(&interp->opt_config.jump_backward_initial_value,
  616|      2|                "PYTHON_JIT_JUMP_BACKWARD_INITIAL_VALUE",
  617|      2|                jump_default, 1, MAX_VALUE);
  ------------------
  |  |   41|      2|#define MAX_VALUE 0x1FFF
  ------------------
  618|      2|    init_policy(&interp->opt_config.jump_backward_initial_backoff,
  619|      2|                "PYTHON_JIT_JUMP_BACKWARD_INITIAL_BACKOFF",
  620|      2|                JUMP_BACKWARD_INITIAL_BACKOFF, 0, MAX_BACKOFF);
  ------------------
  |  |  129|      2|#define JUMP_BACKWARD_INITIAL_BACKOFF 6
  ------------------
                              JUMP_BACKWARD_INITIAL_BACKOFF, 0, MAX_BACKOFF);
  ------------------
  |  |   39|      2|#define MAX_BACKOFF 6
  ------------------
  621|      2|    init_policy(&interp->opt_config.resume_initial_value,
  622|      2|                "PYTHON_JIT_RESUME_INITIAL_VALUE",
  623|      2|                resume_default, 1, MAX_VALUE);
  ------------------
  |  |   41|      2|#define MAX_VALUE 0x1FFF
  ------------------
  624|      2|    init_policy(&interp->opt_config.resume_initial_backoff,
  625|      2|                "PYTHON_JIT_RESUME_INITIAL_BACKOFF",
  626|      2|                RESUME_INITIAL_BACKOFF, 0, MAX_BACKOFF);
  ------------------
  |  |  143|      2|#define RESUME_INITIAL_BACKOFF 6
  ------------------
                              RESUME_INITIAL_BACKOFF, 0, MAX_BACKOFF);
  ------------------
  |  |   39|      2|#define MAX_BACKOFF 6
  ------------------
  627|      2|    init_policy(&interp->opt_config.side_exit_initial_value,
  628|      2|                "PYTHON_JIT_SIDE_EXIT_INITIAL_VALUE",
  629|      2|                side_exit_default, 1, MAX_VALUE);
  ------------------
  |  |   41|      2|#define MAX_VALUE 0x1FFF
  ------------------
  630|      2|    init_policy(&interp->opt_config.side_exit_initial_backoff,
  631|      2|                "PYTHON_JIT_SIDE_EXIT_INITIAL_BACKOFF",
  632|      2|                SIDE_EXIT_INITIAL_BACKOFF, 0, MAX_BACKOFF);
  ------------------
  |  |  157|      2|#define SIDE_EXIT_INITIAL_BACKOFF 6
  ------------------
                              SIDE_EXIT_INITIAL_BACKOFF, 0, MAX_BACKOFF);
  ------------------
  |  |   39|      2|#define MAX_BACKOFF 6
  ------------------
  633|       |
  634|       |    // Trace fitness configuration
  635|      2|    init_policy(&interp->opt_config.fitness_initial,
  636|      2|                "PYTHON_JIT_FITNESS_INITIAL",
  637|      2|                FITNESS_INITIAL, EXIT_QUALITY_CLOSE_LOOP, UOP_MAX_TRACE_LENGTH - 1);
  ------------------
  |  |   36|      2|#define FITNESS_INITIAL            (MAX_TARGET_LENGTH * OPTIMIZER_EFFECTIVENESS)
  |  |  ------------------
  |  |  |  |   34|      2|#define MAX_TARGET_LENGTH          (UOP_MAX_TRACE_LENGTH / 2)
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      2|#define UOP_MAX_TRACE_LENGTH 2500
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define FITNESS_INITIAL            (MAX_TARGET_LENGTH * OPTIMIZER_EFFECTIVENESS)
  |  |  ------------------
  |  |  |  |   35|      2|#define OPTIMIZER_EFFECTIVENESS    2
  |  |  ------------------
  ------------------
                              FITNESS_INITIAL, EXIT_QUALITY_CLOSE_LOOP, UOP_MAX_TRACE_LENGTH - 1);
  ------------------
  |  |   40|      2|#define EXIT_QUALITY_CLOSE_LOOP      (FITNESS_INITIAL - AVG_SLOTS_PER_INSTRUCTION*4)
  |  |  ------------------
  |  |  |  |   36|      2|#define FITNESS_INITIAL            (MAX_TARGET_LENGTH * OPTIMIZER_EFFECTIVENESS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   34|      2|#define MAX_TARGET_LENGTH          (UOP_MAX_TRACE_LENGTH / 2)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   44|      2|#define UOP_MAX_TRACE_LENGTH 2500
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define FITNESS_INITIAL            (MAX_TARGET_LENGTH * OPTIMIZER_EFFECTIVENESS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   35|      2|#define OPTIMIZER_EFFECTIVENESS    2
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define EXIT_QUALITY_CLOSE_LOOP      (FITNESS_INITIAL - AVG_SLOTS_PER_INSTRUCTION*4)
  |  |  ------------------
  |  |  |  |   47|      2|#define AVG_SLOTS_PER_INSTRUCTION  6
  |  |  ------------------
  ------------------
                              FITNESS_INITIAL, EXIT_QUALITY_CLOSE_LOOP, UOP_MAX_TRACE_LENGTH - 1);
  ------------------
  |  |   44|      2|#define UOP_MAX_TRACE_LENGTH 2500
  ------------------
  638|       |
  639|      2|    interp->opt_config.specialization_enabled = !is_env_enabled("PYTHON_SPECIALIZATION_OFF");
  640|      2|    interp->opt_config.uops_optimize_enabled = !is_env_disabled("PYTHON_UOPS_OPTIMIZE");
  641|      2|    if (interp != &runtime->_main_interpreter) {
  ------------------
  |  Branch (641:9): [True: 0, False: 2]
  ------------------
  642|       |        /* Fix the self-referential, statically initialized fields. */
  643|      0|        interp->dtoa = (struct _dtoa_state)_dtoa_state_INIT(interp);
  ------------------
  |  |   22|      0|    { \
  |  |   23|      0|        .preallocated_next = (INTERP)->dtoa.preallocated, \
  |  |   24|      0|    }
  ------------------
  644|      0|    }
  645|       |#if !defined(Py_GIL_DISABLED) && defined(Py_STACKREF_DEBUG)
  646|       |    interp->next_stackref = INITIAL_STACKREF_INDEX;
  647|       |    _Py_hashtable_allocator_t alloc = {
  648|       |        .malloc = malloc,
  649|       |        .free = free,
  650|       |    };
  651|       |    interp->open_stackrefs_table = _Py_hashtable_new_full(
  652|       |        _Py_hashtable_hash_ptr,
  653|       |        _Py_hashtable_compare_direct,
  654|       |        NULL,
  655|       |        NULL,
  656|       |        &alloc
  657|       |    );
  658|       |#  ifdef Py_STACKREF_CLOSE_DEBUG
  659|       |    interp->closed_stackrefs_table = _Py_hashtable_new_full(
  660|       |        _Py_hashtable_hash_ptr,
  661|       |        _Py_hashtable_compare_direct,
  662|       |        NULL,
  663|       |        NULL,
  664|       |        &alloc
  665|       |    );
  666|       |#  endif
  667|       |    _Py_stackref_associate(interp, Py_None, PyStackRef_None);
  668|       |    _Py_stackref_associate(interp, Py_False, PyStackRef_False);
  669|       |    _Py_stackref_associate(interp, Py_True, PyStackRef_True);
  670|       |#endif
  671|       |
  672|      2|    interp->_initialized = 1;
  673|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  674|      2|}
pystate.c:is_env_enabled:
  515|      4|{
  516|      4|    char *env = Py_GETENV(env_name);
  517|      4|    return env && *env != '\0' && *env != '0';
  ------------------
  |  Branch (517:12): [True: 0, False: 4]
  |  Branch (517:19): [True: 0, False: 0]
  |  Branch (517:35): [True: 0, False: 0]
  ------------------
  518|      4|}
pystate.c:init_policy:
  530|     14|{
  531|     14|    *target = default_value;
  532|     14|    char *env = Py_GETENV(env_name);
  533|     14|    if (env && *env != '\0') {
  ------------------
  |  Branch (533:9): [True: 0, False: 14]
  |  Branch (533:16): [True: 0, False: 0]
  ------------------
  534|      0|        long value = atol(env);
  535|      0|        if (value >= min_value && value <= max_value) {
  ------------------
  |  Branch (535:13): [True: 0, False: 0]
  |  Branch (535:35): [True: 0, False: 0]
  ------------------
  536|      0|            *target = (uint16_t)value;
  537|      0|        }
  538|      0|    }
  539|     14|}
pystate.c:is_env_disabled:
  522|      2|{
  523|      2|    char *env = Py_GETENV(env_name);
  524|      2|    return env != NULL && *env == '0';
  ------------------
  |  Branch (524:12): [True: 0, False: 2]
  |  Branch (524:27): [True: 0, False: 0]
  ------------------
  525|      2|}
pystate.c:check_interpreter_whence:
 1170|      4|{
 1171|      4|    if(whence < 0) {
  ------------------
  |  Branch (1171:8): [True: 0, False: 4]
  ------------------
 1172|      0|        return -1;
 1173|      0|    }
 1174|      4|    if (whence > _PyInterpreterState_WHENCE_MAX) {
  ------------------
  |  |   23|      4|#define _PyInterpreterState_WHENCE_MAX 5
  ------------------
  |  Branch (1174:9): [True: 0, False: 4]
  ------------------
 1175|      0|        return -1;
 1176|      0|    }
 1177|      4|    return 0;
 1178|      4|}
pystate.c:new_threadstate:
 1626|      2|{
 1627|       |    // Allocate the thread state.
 1628|      2|    _PyThreadStateImpl *tstate = alloc_threadstate(interp);
 1629|      2|    if (tstate == NULL) {
  ------------------
  |  Branch (1629:9): [True: 0, False: 2]
  ------------------
 1630|      0|        return NULL;
 1631|      0|    }
 1632|       |
 1633|       |#ifdef Py_GIL_DISABLED
 1634|       |    Py_ssize_t qsbr_idx = _Py_qsbr_reserve(interp);
 1635|       |    if (qsbr_idx < 0) {
 1636|       |        free_threadstate(tstate);
 1637|       |        return NULL;
 1638|       |    }
 1639|       |    int32_t tlbc_idx = _Py_ReserveTLBCIndex(interp);
 1640|       |    if (tlbc_idx < 0) {
 1641|       |        free_threadstate(tstate);
 1642|       |        return NULL;
 1643|       |    }
 1644|       |#endif
 1645|       |#ifdef Py_STATS
 1646|       |    // The PyStats structure is quite large and is allocated separated from tstate.
 1647|       |    if (!_PyStats_ThreadInit(interp, tstate)) {
 1648|       |        free_threadstate(tstate);
 1649|       |        return NULL;
 1650|       |    }
 1651|       |#endif
 1652|       |
 1653|       |    /* We serialize concurrent creation to protect global state. */
 1654|      2|    HEAD_LOCK(interp->runtime);
  ------------------
  |  |  266|      2|    PyMutex_LockFlags(&(runtime)->interpreters.mutex, _Py_LOCK_DONT_DETACH)
  ------------------
 1655|       |
 1656|       |    // Initialize the new thread state.
 1657|      2|    interp->threads.next_unique_id += 1;
 1658|      2|    uint64_t id = interp->threads.next_unique_id;
 1659|      2|    init_threadstate(tstate, interp, id, whence);
 1660|       |
 1661|       |    // Add the new thread state to the interpreter.
 1662|      2|    PyThreadState *old_head = interp->threads.head;
 1663|      2|    add_threadstate(interp, (PyThreadState *)tstate, old_head);
 1664|       |
 1665|      2|    HEAD_UNLOCK(interp->runtime);
  ------------------
  |  |  268|      2|    PyMutex_Unlock(&(runtime)->interpreters.mutex)
  |  |  ------------------
  |  |  |  |   70|      2|#define PyMutex_Unlock _PyMutex_Unlock
  |  |  ------------------
  ------------------
 1666|       |
 1667|       |#ifdef Py_GIL_DISABLED
 1668|       |    // Must be called with lock unlocked to avoid lock ordering deadlocks.
 1669|       |    _Py_qsbr_register(tstate, interp, qsbr_idx);
 1670|       |    tstate->tlbc_index = tlbc_idx;
 1671|       |#endif
 1672|       |
 1673|      2|    return (PyThreadState *)tstate;
 1674|      2|}
pystate.c:alloc_threadstate:
 1462|      2|{
 1463|      2|    _PyThreadStateImpl *tstate;
 1464|       |
 1465|       |    // Try the preallocated tstate first.
 1466|      2|    tstate = _Py_atomic_exchange_ptr(&interp->threads.preallocated, NULL);
 1467|       |
 1468|       |    // Fall back to the allocator.
 1469|      2|    if (tstate == NULL) {
  ------------------
  |  Branch (1469:9): [True: 0, False: 2]
  ------------------
 1470|      0|        tstate = PyMem_RawCalloc(1, sizeof(_PyThreadStateImpl));
 1471|      0|        if (tstate == NULL) {
  ------------------
  |  Branch (1471:13): [True: 0, False: 0]
  ------------------
 1472|      0|            return NULL;
 1473|      0|        }
 1474|      0|        reset_threadstate(tstate);
 1475|      0|    }
 1476|      2|    return tstate;
 1477|      2|}
pystate.c:init_threadstate:
 1519|      2|{
 1520|      2|    PyThreadState *tstate = (PyThreadState *)_tstate;
 1521|      2|    if (tstate->_status.initialized) {
  ------------------
  |  Branch (1521:9): [True: 0, False: 2]
  ------------------
 1522|      0|        Py_FatalError("thread state already initialized");
  ------------------
  |  |  133|      0|#define Py_FatalError(message) _Py_FatalErrorFunc(__func__, (message))
  ------------------
 1523|      0|    }
 1524|       |
 1525|      2|    assert(interp != NULL);
  ------------------
  |  Branch (1525:5): [True: 2, False: 0]
  ------------------
 1526|      2|    tstate->interp = interp;
 1527|      2|    tstate->eval_breaker =
 1528|      2|        _Py_atomic_load_uintptr_relaxed(&interp->ceval.instrumentation_version);
 1529|       |
 1530|       |    // next/prev are set in add_threadstate().
 1531|      2|    assert(tstate->next == NULL);
  ------------------
  |  Branch (1531:5): [True: 2, False: 0]
  ------------------
 1532|      2|    assert(tstate->prev == NULL);
  ------------------
  |  Branch (1532:5): [True: 2, False: 0]
  ------------------
 1533|       |
 1534|      2|    assert(tstate->_whence == _PyThreadState_WHENCE_NOTSET);
  ------------------
  |  Branch (1534:5): [True: 2, False: 0]
  ------------------
 1535|      2|    assert(whence >= 0 && whence <= _PyThreadState_WHENCE_THREADING_DAEMON);
  ------------------
  |  Branch (1535:5): [True: 2, False: 0]
  |  Branch (1535:5): [True: 2, False: 0]
  ------------------
 1536|      2|    tstate->_whence = whence;
 1537|       |
 1538|      2|    assert(id > 0);
  ------------------
  |  Branch (1538:5): [True: 2, False: 0]
  ------------------
 1539|      2|    tstate->id = id;
 1540|       |
 1541|       |    // thread_id and native_thread_id are set in bind_tstate().
 1542|       |
 1543|      2|    tstate->py_recursion_limit = interp->ceval.recursion_limit;
 1544|      2|    tstate->py_recursion_remaining = interp->ceval.recursion_limit;
 1545|      2|    tstate->exc_info = &tstate->exc_state;
 1546|       |
 1547|       |    // PyGILState_Release must not try to delete this thread state.
 1548|       |    // This is cleared when PyGILState_Ensure() creates the thread state.
 1549|      2|    tstate->gilstate_counter = 1;
 1550|       |
 1551|       |    // Initialize the embedded base frame - sentinel at the bottom of the frame stack
 1552|      2|    _tstate->base_frame.previous = NULL;
 1553|      2|    _tstate->base_frame.f_executable = PyStackRef_None;
  ------------------
  |  |  473|      2|#define PyStackRef_None ((_PyStackRef){.bits = ((uintptr_t)&_Py_NoneStruct) | Py_TAG_REFCNT })
  |  |  ------------------
  |  |  |  |   55|      2|#define Py_TAG_REFCNT 1
  |  |  ------------------
  ------------------
 1554|      2|    _tstate->base_frame.f_funcobj = PyStackRef_NULL;
 1555|      2|    _tstate->base_frame.f_globals = NULL;
 1556|      2|    _tstate->base_frame.f_builtins = NULL;
 1557|      2|    _tstate->base_frame.f_locals = NULL;
 1558|      2|    _tstate->base_frame.frame_obj = NULL;
 1559|      2|    _tstate->base_frame.instr_ptr = NULL;
 1560|      2|    _tstate->base_frame.stackpointer = _tstate->base_frame.localsplus;
 1561|      2|    _tstate->base_frame.return_offset = 0;
 1562|      2|    _tstate->base_frame.owner = FRAME_OWNED_BY_INTERPRETER;
 1563|      2|    _tstate->base_frame.visited = 0;
 1564|       |#ifdef Py_DEBUG
 1565|       |    _tstate->base_frame.lltrace = 0;
 1566|       |#endif
 1567|       |#ifdef Py_GIL_DISABLED
 1568|       |    _tstate->base_frame.tlbc_index = 0;
 1569|       |#endif
 1570|      2|    _tstate->base_frame.localsplus[0] = PyStackRef_NULL;
 1571|       |
 1572|       |    // current_frame starts pointing to the base frame
 1573|      2|    tstate->current_frame = &_tstate->base_frame;
 1574|       |    // base_frame pointer for profilers to validate stack unwinding
 1575|      2|    tstate->base_frame = &_tstate->base_frame;
 1576|      2|    tstate->datastack_chunk = NULL;
 1577|      2|    tstate->datastack_top = NULL;
 1578|      2|    tstate->datastack_limit = NULL;
 1579|      2|    tstate->datastack_cached_chunk = NULL;
 1580|      2|    tstate->what_event = -1;
 1581|      2|    tstate->current_executor = NULL;
 1582|      2|    tstate->jit_exit = NULL;
 1583|      2|    tstate->dict_global_version = 0;
 1584|       |
 1585|      2|    _tstate->c_stack_soft_limit = UINTPTR_MAX;
 1586|      2|    _tstate->c_stack_top = 0;
 1587|      2|    _tstate->c_stack_hard_limit = 0;
 1588|       |
 1589|      2|    _tstate->c_stack_init_base = 0;
 1590|      2|    _tstate->c_stack_init_top = 0;
 1591|       |
 1592|      2|    _tstate->asyncio_running_loop = NULL;
 1593|      2|    _tstate->asyncio_running_task = NULL;
 1594|       |
 1595|       |#ifdef _Py_TIER2
 1596|       |    _tstate->jit_tracer_state = NULL;
 1597|       |#endif
 1598|      2|    tstate->delete_later = NULL;
 1599|       |
 1600|      2|    llist_init(&_tstate->mem_free_queue);
 1601|      2|    llist_init(&_tstate->asyncio_tasks_head);
 1602|      2|    if (interp->stoptheworld.requested || _PyRuntime.stoptheworld.requested) {
  ------------------
  |  Branch (1602:9): [True: 0, False: 2]
  |  Branch (1602:43): [True: 0, False: 2]
  ------------------
 1603|       |        // Start in the suspended state if there is an ongoing stop-the-world.
 1604|      0|        tstate->state = _Py_THREAD_SUSPENDED;
  ------------------
  |  |   48|      0|#define _Py_THREAD_SUSPENDED        2
  ------------------
 1605|      0|    }
 1606|       |
 1607|      2|    tstate->_status.initialized = 1;
 1608|      2|}
pystate.c:add_threadstate:
 1613|      2|{
 1614|      2|    assert(interp->threads.head != tstate);
  ------------------
  |  Branch (1614:5): [True: 2, False: 0]
  ------------------
 1615|      2|    if (next != NULL) {
  ------------------
  |  Branch (1615:9): [True: 0, False: 2]
  ------------------
 1616|      0|        assert(next->prev == NULL || next->prev == tstate);
  ------------------
  |  Branch (1616:9): [True: 0, False: 0]
  |  Branch (1616:9): [True: 0, False: 0]
  ------------------
 1617|      0|        next->prev = tstate;
 1618|      0|    }
 1619|      2|    tstate->next = next;
 1620|      2|    assert(tstate->prev == NULL);
  ------------------
  |  Branch (1620:5): [True: 2, False: 0]
  ------------------
 1621|      2|    interp->threads.head = tstate;
 1622|      2|}
pystate.c:bind_tstate:
  164|      2|{
  165|      2|    assert(tstate != NULL);
  ------------------
  |  Branch (165:5): [True: 2, False: 0]
  ------------------
  166|      2|    assert(tstate_is_alive(tstate) && !tstate->_status.bound);
  ------------------
  |  Branch (166:5): [True: 2, False: 0]
  |  Branch (166:5): [True: 2, False: 0]
  ------------------
  167|      2|    assert(!tstate->_status.unbound);  // just in case
  ------------------
  |  Branch (167:5): [True: 2, False: 0]
  ------------------
  168|      2|    assert(!tstate->_status.bound_gilstate);
  ------------------
  |  Branch (168:5): [True: 2, False: 0]
  ------------------
  169|      2|    assert(tstate != gilstate_get());
  ------------------
  |  Branch (169:5): [True: 2, False: 0]
  ------------------
  170|      2|    assert(!tstate->_status.active);
  ------------------
  |  Branch (170:5): [True: 2, False: 0]
  ------------------
  171|      2|    assert(tstate->thread_id == 0);
  ------------------
  |  Branch (171:5): [True: 2, False: 0]
  ------------------
  172|      2|    assert(tstate->native_thread_id == 0);
  ------------------
  |  Branch (172:5): [True: 2, False: 0]
  ------------------
  173|       |
  174|       |    // Currently we don't necessarily store the thread state
  175|       |    // in thread-local storage (e.g. per-interpreter).
  176|       |
  177|      2|    tstate->thread_id = PyThread_get_thread_ident();
  178|      2|#ifdef PY_HAVE_THREAD_NATIVE_ID
  179|      2|    tstate->native_thread_id = PyThread_get_thread_native_id();
  180|      2|#endif
  181|       |
  182|       |#ifdef Py_GIL_DISABLED
  183|       |    // Initialize biased reference counting inter-thread queue. Note that this
  184|       |    // needs to be initialized from the active thread.
  185|       |    _Py_brc_init_thread(tstate);
  186|       |#endif
  187|       |
  188|       |    // mimalloc state needs to be initialized from the active thread.
  189|      2|    tstate_mimalloc_bind(tstate);
  190|       |
  191|      2|    tstate->_status.bound = 1;
  192|      2|}
pystate.c:tstate_is_alive:
 1424|      4|{
 1425|      4|    return (tstate->_status.initialized &&
  ------------------
  |  Branch (1425:13): [True: 4, False: 0]
  ------------------
 1426|      4|            !tstate->_status.finalized &&
  ------------------
  |  Branch (1426:13): [True: 4, False: 0]
  ------------------
 1427|      4|            !tstate->_status.cleared &&
  ------------------
  |  Branch (1427:13): [True: 4, False: 0]
  ------------------
 1428|      4|            !tstate->_status.finalizing);
  ------------------
  |  Branch (1428:13): [True: 4, False: 0]
  ------------------
 1429|      4|}
pystate.c:tstate_mimalloc_bind:
 3212|      2|{
 3213|       |#ifdef Py_GIL_DISABLED
 3214|       |    struct _mimalloc_thread_state *mts = &((_PyThreadStateImpl*)tstate)->mimalloc;
 3215|       |
 3216|       |    // Initialize the mimalloc thread state. This must be called from the
 3217|       |    // same thread that will use the thread state. The "mem" heap doubles as
 3218|       |    // the "backing" heap.
 3219|       |    mi_tld_t *tld = &mts->tld;
 3220|       |    _mi_tld_init(tld, &mts->heaps[_Py_MIMALLOC_HEAP_MEM]);
 3221|       |    llist_init(&mts->page_list);
 3222|       |
 3223|       |    // Exiting threads push any remaining in-use segments to the abandoned
 3224|       |    // pool to be re-claimed later by other threads. We use per-interpreter
 3225|       |    // pools to keep Python objects from different interpreters separate.
 3226|       |    tld->segments.abandoned = &tstate->interp->mimalloc.abandoned_pool;
 3227|       |
 3228|       |    // Don't fill in the first N bytes up to ob_type in debug builds. We may
 3229|       |    // access ob_tid and the refcount fields in the dict and list lock-less
 3230|       |    // accesses, so they must remain valid for a while after deallocation.
 3231|       |    size_t base_offset = offsetof(PyObject, ob_type);
 3232|       |    if (_PyMem_DebugEnabled()) {
 3233|       |        // The debug allocator adds two words at the beginning of each block.
 3234|       |        base_offset += 2 * sizeof(size_t);
 3235|       |    }
 3236|       |    size_t debug_offsets[_Py_MIMALLOC_HEAP_COUNT] = {
 3237|       |        [_Py_MIMALLOC_HEAP_OBJECT] = base_offset,
 3238|       |        [_Py_MIMALLOC_HEAP_GC] = base_offset,
 3239|       |        [_Py_MIMALLOC_HEAP_GC_PRE] = base_offset + 2 * sizeof(PyObject *),
 3240|       |    };
 3241|       |
 3242|       |    // Initialize each heap
 3243|       |    for (uint8_t i = 0; i < _Py_MIMALLOC_HEAP_COUNT; i++) {
 3244|       |        _mi_heap_init_ex(&mts->heaps[i], tld, _mi_arena_id_none(), false, i);
 3245|       |        mts->heaps[i].debug_offset = (uint8_t)debug_offsets[i];
 3246|       |    }
 3247|       |
 3248|       |    // Heaps that store Python objects should use QSBR to delay freeing
 3249|       |    // mimalloc pages while there may be concurrent lock-free readers.
 3250|       |    mts->heaps[_Py_MIMALLOC_HEAP_OBJECT].page_use_qsbr = true;
 3251|       |    mts->heaps[_Py_MIMALLOC_HEAP_GC].page_use_qsbr = true;
 3252|       |    mts->heaps[_Py_MIMALLOC_HEAP_GC_PRE].page_use_qsbr = true;
 3253|       |
 3254|       |    // By default, object allocations use _Py_MIMALLOC_HEAP_OBJECT.
 3255|       |    // _PyObject_GC_New() and similar functions temporarily override this to
 3256|       |    // use one of the GC heaps.
 3257|       |    mts->current_object_heap = &mts->heaps[_Py_MIMALLOC_HEAP_OBJECT];
 3258|       |
 3259|       |    _Py_atomic_store_int(&mts->initialized, 1);
 3260|       |#endif
 3261|      2|}
pystate.c:gilstate_get:
  129|    666|{
  130|    666|    return _Py_tss_gilstate;
  131|    666|}
pystate.c:bind_gilstate_tstate:
  237|      2|{
  238|      2|    assert(tstate != NULL);
  ------------------
  |  Branch (238:5): [True: 2, False: 0]
  ------------------
  239|      2|    assert(tstate_is_alive(tstate));
  ------------------
  |  Branch (239:5): [True: 2, False: 0]
  ------------------
  240|      2|    assert(tstate_is_bound(tstate));
  ------------------
  |  Branch (240:5): [True: 2, False: 0]
  ------------------
  241|       |    // XXX assert(!tstate->_status.active);
  242|      2|    assert(!tstate->_status.bound_gilstate);
  ------------------
  |  Branch (242:5): [True: 2, False: 0]
  ------------------
  243|       |
  244|      2|    PyThreadState *tcur = gilstate_get();
  245|      2|    assert(tstate != tcur);
  ------------------
  |  Branch (245:5): [True: 2, False: 0]
  ------------------
  246|       |
  247|      2|    if (tcur != NULL) {
  ------------------
  |  Branch (247:9): [True: 0, False: 2]
  ------------------
  248|      0|        tcur->_status.bound_gilstate = 0;
  249|      0|    }
  250|      2|    gilstate_set(tstate);
  251|      2|    tstate->_status.bound_gilstate = 1;
  252|      2|}
pystate.c:tstate_is_bound:
  152|  1.31k|{
  153|  1.31k|    return tstate->_status.bound && !tstate->_status.unbound;
  ------------------
  |  Branch (153:12): [True: 1.31k, False: 0]
  |  Branch (153:37): [True: 1.31k, False: 0]
  ------------------
  154|  1.31k|}
pystate.c:gilstate_set:
  135|      2|{
  136|      2|    assert(tstate != NULL);
  ------------------
  |  Branch (136:5): [True: 2, False: 0]
  ------------------
  137|      2|    _Py_tss_gilstate = tstate;
  138|      2|}
pystate.c:current_fast_clear:
  100|    654|{
  101|    654|    _Py_tss_tstate = NULL;
  102|       |    _Py_tss_interp = NULL;
  103|    654|}
pystate.c:current_fast_set:
   91|    656|{
   92|    656|    assert(tstate != NULL);
  ------------------
  |  Branch (92:5): [True: 656, False: 0]
  ------------------
   93|    656|    _Py_tss_tstate = tstate;
   94|    656|    assert(tstate->interp != NULL);
  ------------------
  |  Branch (94:5): [True: 656, False: 0]
  ------------------
   95|    656|    _Py_tss_interp = tstate->interp;
   96|    656|}
pystate.c:tstate_try_attach:
 2172|    656|{
 2173|       |#ifdef Py_GIL_DISABLED
 2174|       |    int expected = _Py_THREAD_DETACHED;
 2175|       |    return _Py_atomic_compare_exchange_int(&tstate->state,
 2176|       |                                           &expected,
 2177|       |                                           _Py_THREAD_ATTACHED);
 2178|       |#else
 2179|    656|    assert(tstate->state == _Py_THREAD_DETACHED);
  ------------------
  |  Branch (2179:5): [True: 656, False: 0]
  ------------------
 2180|    656|    tstate->state = _Py_THREAD_ATTACHED;
  ------------------
  |  |   47|    656|#define _Py_THREAD_ATTACHED         1
  ------------------
 2181|    656|    return 1;
 2182|    656|#endif
 2183|    656|}
pystate.c:tstate_activate:
 2137|    656|{
 2138|    656|    assert(tstate != NULL);
  ------------------
  |  Branch (2138:5): [True: 656, False: 0]
  ------------------
 2139|       |    // XXX assert(tstate_is_alive(tstate));
 2140|    656|    assert(tstate_is_bound(tstate));
  ------------------
  |  Branch (2140:5): [True: 656, False: 0]
  ------------------
 2141|    656|    assert(!tstate->_status.active);
  ------------------
  |  Branch (2141:5): [True: 656, False: 0]
  ------------------
 2142|       |
 2143|    656|    assert(!tstate->_status.bound_gilstate ||
  ------------------
  |  Branch (2143:5): [True: 0, False: 656]
  |  Branch (2143:5): [True: 656, False: 0]
  ------------------
 2144|    656|           tstate == gilstate_get());
 2145|    656|    if (!tstate->_status.bound_gilstate) {
  ------------------
  |  Branch (2145:9): [True: 0, False: 656]
  ------------------
 2146|      0|        bind_gilstate_tstate(tstate);
 2147|      0|    }
 2148|       |
 2149|    656|    tstate->_status.active = 1;
 2150|    656|}
pystate.c:detach_thread:
 2278|    654|{
 2279|       |    // XXX assert(tstate_is_alive(tstate) && tstate_is_bound(tstate));
 2280|    654|    assert(_Py_atomic_load_int_relaxed(&tstate->state) == _Py_THREAD_ATTACHED);
  ------------------
  |  Branch (2280:5): [True: 654, False: 0]
  ------------------
 2281|    654|    assert(tstate == current_fast_get());
  ------------------
  |  Branch (2281:5): [True: 654, False: 0]
  ------------------
 2282|    654|    if (tstate->critical_section != 0) {
  ------------------
  |  Branch (2282:9): [True: 0, False: 654]
  ------------------
 2283|      0|        _PyCriticalSection_SuspendAll(tstate);
 2284|      0|    }
 2285|       |#ifdef Py_GIL_DISABLED
 2286|       |    _Py_qsbr_detach(((_PyThreadStateImpl *)tstate)->qsbr);
 2287|       |#endif
 2288|    654|    tstate_deactivate(tstate);
 2289|    654|    tstate_set_detached(tstate, detached_state);
 2290|    654|    current_fast_clear(&_PyRuntime);
 2291|    654|    _PyEval_ReleaseLock(tstate->interp, tstate, 0);
 2292|    654|}
pystate.c:tstate_deactivate:
 2154|    654|{
 2155|    654|    assert(tstate != NULL);
  ------------------
  |  Branch (2155:5): [True: 654, False: 0]
  ------------------
 2156|       |    // XXX assert(tstate_is_alive(tstate));
 2157|    654|    assert(tstate_is_bound(tstate));
  ------------------
  |  Branch (2157:5): [True: 654, False: 0]
  ------------------
 2158|    654|    assert(tstate->_status.active);
  ------------------
  |  Branch (2158:5): [True: 654, False: 0]
  ------------------
 2159|       |
 2160|       |#if Py_STATS
 2161|       |    _PyStats_Detach((_PyThreadStateImpl *)tstate);
 2162|       |#endif
 2163|       |
 2164|    654|    tstate->_status.active = 0;
 2165|       |
 2166|       |    // We do not unbind the gilstate tstate here.
 2167|       |    // It will still be used in PyGILState_Ensure().
 2168|    654|}
pystate.c:tstate_set_detached:
 2187|    654|{
 2188|    654|    assert(_Py_atomic_load_int_relaxed(&tstate->state) == _Py_THREAD_ATTACHED);
  ------------------
  |  Branch (2188:5): [True: 654, False: 0]
  ------------------
 2189|       |#ifdef Py_GIL_DISABLED
 2190|       |    _Py_atomic_store_int(&tstate->state, detached_state);
 2191|       |#else
 2192|    654|    tstate->state = detached_state;
 2193|    654|#endif
 2194|    654|}
pystate.c:push_chunk:
 3091|      2|{
 3092|      2|    int allocate_size = _PY_DATA_STACK_CHUNK_SIZE;
  ------------------
  |  |   65|      2|#define _PY_DATA_STACK_CHUNK_SIZE (16*1024)
  ------------------
 3093|      2|    while (allocate_size < (int)sizeof(PyObject*)*(size + MINIMUM_OVERHEAD)) {
  ------------------
  |  | 3087|      2|#define MINIMUM_OVERHEAD 1000
  ------------------
  |  Branch (3093:12): [True: 0, False: 2]
  ------------------
 3094|      0|        allocate_size *= 2;
 3095|      0|    }
 3096|      2|    _PyStackChunk *new;
 3097|      2|    if (tstate->datastack_cached_chunk != NULL
  ------------------
  |  Branch (3097:9): [True: 0, False: 2]
  ------------------
 3098|      0|        && (size_t)allocate_size <= tstate->datastack_cached_chunk->size)
  ------------------
  |  Branch (3098:12): [True: 0, False: 0]
  ------------------
 3099|      0|    {
 3100|      0|        new = tstate->datastack_cached_chunk;
 3101|      0|        tstate->datastack_cached_chunk = NULL;
 3102|      0|        new->previous = tstate->datastack_chunk;
 3103|      0|        new->top = 0;
 3104|      0|    }
 3105|      2|    else {
 3106|      2|        new = allocate_chunk(allocate_size, tstate->datastack_chunk);
 3107|      2|        if (new == NULL) {
  ------------------
  |  Branch (3107:13): [True: 0, False: 2]
  ------------------
 3108|      0|            return NULL;
 3109|      0|        }
 3110|      2|    }
 3111|      2|    if (tstate->datastack_chunk) {
  ------------------
  |  Branch (3111:9): [True: 0, False: 2]
  ------------------
 3112|      0|        tstate->datastack_chunk->top = tstate->datastack_top -
 3113|      0|                                       &tstate->datastack_chunk->data[0];
 3114|      0|    }
 3115|      2|    tstate->datastack_chunk = new;
 3116|      2|    tstate->datastack_limit = (PyObject **)(((char *)new) + allocate_size);
 3117|       |    // When new is the "root" chunk (i.e. new->previous == NULL), we can keep
 3118|       |    // _PyThreadState_PopFrame from freeing it later by "skipping" over the
 3119|       |    // first element:
 3120|       |    PyObject **res = &new->data[new->previous == NULL];
 3121|      2|    tstate->datastack_top = res + size;
 3122|      2|    return res;
 3123|      2|}
pystate.c:allocate_chunk:
 1439|      2|{
 1440|      2|    assert(size_in_bytes % sizeof(PyObject **) == 0);
  ------------------
  |  Branch (1440:5): [True: 2, False: 0]
  ------------------
 1441|      2|    _PyStackChunk *res = _PyObject_VirtualAlloc(size_in_bytes);
 1442|      2|    if (res == NULL) {
  ------------------
  |  Branch (1442:9): [True: 0, False: 2]
  ------------------
 1443|      0|        return NULL;
 1444|      0|    }
 1445|      2|    res->previous = previous;
 1446|      2|    res->size = size_in_bytes;
 1447|      2|    res->top = 0;
 1448|      2|    return res;
 1449|      2|}

_Py_parse_inf_or_nan:
   29|  1.73k|{
   30|  1.73k|    double retval;
   31|  1.73k|    const char *s;
   32|  1.73k|    int negate = 0;
   33|       |
   34|  1.73k|    s = p;
   35|  1.73k|    if (*s == '-') {
  ------------------
  |  Branch (35:9): [True: 11, False: 1.72k]
  ------------------
   36|     11|        negate = 1;
   37|     11|        s++;
   38|     11|    }
   39|  1.72k|    else if (*s == '+') {
  ------------------
  |  Branch (39:14): [True: 3, False: 1.71k]
  ------------------
   40|      3|        s++;
   41|      3|    }
   42|  1.73k|    if (case_insensitive_match(s, "inf")) {
  ------------------
  |  Branch (42:9): [True: 9, False: 1.72k]
  ------------------
   43|      9|        s += 3;
   44|      9|        if (case_insensitive_match(s, "inity"))
  ------------------
  |  Branch (44:13): [True: 1, False: 8]
  ------------------
   45|      1|            s += 5;
   46|      9|        retval = negate ? -INFINITY : INFINITY;
  ------------------
  |  Branch (46:18): [True: 0, False: 9]
  ------------------
   47|      9|    }
   48|  1.72k|    else if (case_insensitive_match(s, "nan")) {
  ------------------
  |  Branch (48:14): [True: 2, False: 1.72k]
  ------------------
   49|      2|        s += 3;
   50|      2|        retval = negate ? -fabs(Py_NAN) : fabs(Py_NAN);
  ------------------
  |  |   79|      1|#    define Py_NAN      ((double)NAN)
  ------------------
                      retval = negate ? -fabs(Py_NAN) : fabs(Py_NAN);
  ------------------
  |  |   79|      1|#    define Py_NAN      ((double)NAN)
  ------------------
  |  Branch (50:18): [True: 1, False: 1]
  ------------------
   51|      2|    }
   52|  1.72k|    else {
   53|  1.72k|        s = p;
   54|  1.72k|        retval = -1.0;
   55|  1.72k|    }
   56|  1.73k|    *endptr = (char *)s;
   57|  1.73k|    return retval;
   58|  1.73k|}
PyOS_string_to_double:
  302|  3.51k|{
  303|  3.51k|    double x, result=-1.0;
  304|  3.51k|    char *fail_pos;
  305|       |
  306|  3.51k|    errno = 0;
  307|  3.51k|    x = _PyOS_ascii_strtod(s, &fail_pos);
  308|       |
  309|  3.51k|    if (errno == ENOMEM) {
  ------------------
  |  Branch (309:9): [True: 0, False: 3.51k]
  ------------------
  310|      0|        PyErr_NoMemory();
  311|      0|        fail_pos = (char *)s;
  312|      0|    }
  313|  3.51k|    else if (!endptr && (fail_pos == s || *fail_pos != '\0'))
  ------------------
  |  Branch (313:14): [True: 0, False: 3.51k]
  |  Branch (313:26): [True: 0, False: 0]
  |  Branch (313:43): [True: 0, False: 0]
  ------------------
  314|      0|        PyErr_Format(PyExc_ValueError,
  315|      0|                      "could not convert string to float: "
  316|      0|                      "'%.200s'", s);
  317|  3.51k|    else if (fail_pos == s)
  ------------------
  |  Branch (317:14): [True: 1.72k, False: 1.79k]
  ------------------
  318|  1.72k|        PyErr_Format(PyExc_ValueError,
  319|  1.72k|                      "could not convert string to float: "
  320|  1.72k|                      "'%.200s'", s);
  321|  1.79k|    else if (errno == ERANGE && fabs(x) >= 1.0 && overflow_exception)
  ------------------
  |  Branch (321:14): [True: 154, False: 1.63k]
  |  Branch (321:33): [True: 154, False: 0]
  |  Branch (321:51): [True: 0, False: 154]
  ------------------
  322|      0|        PyErr_Format(overflow_exception,
  323|      0|                      "value too large to convert to float: "
  324|      0|                      "'%.200s'", s);
  325|  1.79k|    else
  326|  1.79k|        result = x;
  327|       |
  328|  3.51k|    if (endptr != NULL)
  ------------------
  |  Branch (328:9): [True: 3.51k, False: 0]
  ------------------
  329|  3.51k|        *endptr = fail_pos;
  330|  3.51k|    return result;
  331|  3.51k|}
_Py_string_to_number_with_underscores:
  348|  3.60k|{
  349|  3.60k|    char prev;
  350|  3.60k|    const char *p, *last;
  351|  3.60k|    char *dup, *end;
  352|  3.60k|    PyObject *result;
  353|       |
  354|  3.60k|    assert(s[orig_len] == '\0');
  ------------------
  |  Branch (354:5): [True: 3.60k, False: 0]
  ------------------
  355|       |
  356|  3.60k|    if (strchr(s, '_') == NULL) {
  ------------------
  |  Branch (356:9): [True: 3.51k, False: 99]
  ------------------
  357|  3.51k|        return innerfunc(s, orig_len, arg);
  358|  3.51k|    }
  359|       |
  360|     99|    dup = PyMem_Malloc(orig_len + 1);
  361|     99|    if (dup == NULL) {
  ------------------
  |  Branch (361:9): [True: 0, False: 99]
  ------------------
  362|      0|        return PyErr_NoMemory();
  363|      0|    }
  364|     99|    end = dup;
  365|     99|    prev = '\0';
  366|     99|    last = s + orig_len;
  367|  8.52M|    for (p = s; *p; p++) {
  ------------------
  |  Branch (367:17): [True: 8.52M, False: 49]
  ------------------
  368|  8.52M|        if (*p == '_') {
  ------------------
  |  Branch (368:13): [True: 762, False: 8.51M]
  ------------------
  369|       |            /* Underscores are only allowed after digits. */
  370|    762|            if (!(prev >= '0' && prev <= '9')) {
  ------------------
  |  Branch (370:19): [True: 736, False: 26]
  |  Branch (370:34): [True: 721, False: 15]
  ------------------
  371|     41|                goto error;
  372|     41|            }
  373|    762|        }
  374|  8.51M|        else {
  375|  8.51M|            *end++ = *p;
  376|       |            /* Underscores are only allowed before digits. */
  377|  8.51M|            if (prev == '_' && !(*p >= '0' && *p <= '9')) {
  ------------------
  |  Branch (377:17): [True: 706, False: 8.51M]
  |  Branch (377:34): [True: 704, False: 2]
  |  Branch (377:47): [True: 697, False: 7]
  ------------------
  378|      9|                goto error;
  379|      9|            }
  380|  8.51M|        }
  381|  8.52M|        prev = *p;
  382|  8.52M|    }
  383|       |    /* Underscores are not allowed at the end. */
  384|     49|    if (prev == '_') {
  ------------------
  |  Branch (384:9): [True: 14, False: 35]
  ------------------
  385|     14|        goto error;
  386|     14|    }
  387|       |    /* No embedded NULs allowed. */
  388|     35|    if (p != last) {
  ------------------
  |  Branch (388:9): [True: 2, False: 33]
  ------------------
  389|      2|        goto error;
  390|      2|    }
  391|     33|    *end = '\0';
  392|     33|    result = innerfunc(dup, end - dup, arg);
  393|     33|    PyMem_Free(dup);
  394|     33|    return result;
  395|       |
  396|     66|  error:
  397|     66|    PyMem_Free(dup);
  398|     66|    PyErr_Format(PyExc_ValueError,
  399|     66|                 "could not convert string to %s: "
  400|     66|                 "%R", what, obj);
  401|       |    return NULL;
  402|     35|}
pystrtod.c:case_insensitive_match:
   14|  3.46k|{
   15|  3.53k|    while(*t && Py_TOLOWER(*s) == *t) {
  ------------------
  |  |   32|  3.51k|#define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)])
  |  |  ------------------
  |  |  |  |  138|  3.51k|#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
  |  |  ------------------
  ------------------
  |  Branch (15:11): [True: 3.51k, False: 12]
  |  Branch (15:17): [True: 65, False: 3.45k]
  ------------------
   16|     65|        s++;
   17|     65|        t++;
   18|     65|    }
   19|  3.46k|    return *t ? 0 : 1;
  ------------------
  |  Branch (19:12): [True: 3.45k, False: 12]
  ------------------
   20|  3.46k|}
pystrtod.c:_PyOS_ascii_strtod:
   94|  3.51k|{
   95|  3.51k|    double result;
   96|  3.51k|    _Py_SET_53BIT_PRECISION_HEADER;
  ------------------
  |  |   94|  3.51k|    unsigned short old_387controlword, new_387controlword
  ------------------
   97|       |
   98|  3.51k|    assert(nptr != NULL);
  ------------------
  |  Branch (98:5): [True: 3.51k, False: 0]
  ------------------
   99|       |    /* Set errno to zero, so that we can distinguish zero results
  100|       |       and underflows */
  101|  3.51k|    errno = 0;
  102|       |
  103|  3.51k|    _Py_SET_53BIT_PRECISION_START;
  ------------------
  |  |   96|  3.51k|    do {                                                                \
  |  |   97|  3.51k|        old_387controlword = _Py_get_387controlword();                  \
  |  |   98|  3.51k|        new_387controlword = (old_387controlword & ~0x0f00) | 0x0200;   \
  |  |   99|  3.51k|        if (new_387controlword != old_387controlword) {                 \
  |  |  ------------------
  |  |  |  Branch (99:13): [True: 3.51k, False: 0]
  |  |  ------------------
  |  |  100|  3.51k|            _Py_set_387controlword(new_387controlword);                 \
  |  |  101|  3.51k|        }                                                               \
  |  |  102|  3.51k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (102:14): [Folded, False: 3.51k]
  |  |  ------------------
  ------------------
  104|  3.51k|    result = _Py_dg_strtod(nptr, endptr);
  105|  3.51k|    _Py_SET_53BIT_PRECISION_END;
  ------------------
  |  |  104|  3.51k|    do {                                                                \
  |  |  105|  3.51k|        if (new_387controlword != old_387controlword) {                 \
  |  |  ------------------
  |  |  |  Branch (105:13): [True: 3.51k, False: 0]
  |  |  ------------------
  |  |  106|  3.51k|            _Py_set_387controlword(old_387controlword);                 \
  |  |  107|  3.51k|        }                                                               \
  |  |  108|  3.51k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (108:14): [Folded, False: 3.51k]
  |  |  ------------------
  ------------------
  106|       |
  107|  3.51k|    if (*endptr == nptr)
  ------------------
  |  Branch (107:9): [True: 1.73k, False: 1.78k]
  ------------------
  108|       |        /* string might represent an inf or nan */
  109|  1.73k|        result = _Py_parse_inf_or_nan(nptr, endptr);
  110|       |
  111|  3.51k|    return result;
  112|       |
  113|  3.51k|}

_PyTimeFraction_Set:
   79|      4|{
   80|      4|    if (numer < 1 || denom < 1) {
  ------------------
  |  Branch (80:9): [True: 0, False: 4]
  |  Branch (80:22): [True: 0, False: 4]
  ------------------
   81|      0|        return -1;
   82|      0|    }
   83|       |
   84|      4|    PyTime_t gcd = _PyTime_GCD(numer, denom);
   85|      4|    frac->numer = numer / gcd;
   86|      4|    frac->denom = denom / gcd;
   87|      4|    return 0;
   88|      4|}
_PyLong_FromTime_t:
  226|     84|{
  227|     84|#if SIZEOF_TIME_T == SIZEOF_LONG_LONG
  228|     84|    return PyLong_FromLongLong((long long)t);
  229|       |#elif SIZEOF_TIME_T <= SIZEOF_LONG
  230|       |    return PyLong_FromLong((long)t);
  231|       |#else
  232|       |#   error "unsupported time_t size"
  233|       |#endif
  234|     84|}
_PyTime_FromSeconds:
  539|    120|{
  540|       |    /* ensure that integer overflow cannot happen, int type should have 32
  541|       |       bits, whereas PyTime_t type has at least 64 bits (SEC_TO_NS takes 30
  542|       |       bits). */
  543|    120|    static_assert(INT_MAX <= PyTime_MAX / SEC_TO_NS, "PyTime_t overflow");
  544|    120|    static_assert(INT_MIN >= PyTime_MIN / SEC_TO_NS, "PyTime_t underflow");
  545|       |
  546|    120|    PyTime_t t = (PyTime_t)seconds;
  547|    120|    assert((t >= 0 && t <= PyTime_MAX / SEC_TO_NS)
  ------------------
  |  Branch (547:5): [True: 0, False: 120]
  |  Branch (547:5): [True: 0, False: 0]
  |  Branch (547:5): [True: 120, False: 0]
  |  Branch (547:5): [True: 120, False: 0]
  ------------------
  548|    120|           || (t < 0 && t >= PyTime_MIN / SEC_TO_NS));
  549|    120|    t *= SEC_TO_NS;
  ------------------
  |  |   35|    120|#define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   26|    120|#define SEC_TO_MS 1000
  |  |  ------------------
  |  |               #define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   34|    120|#define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|    120|#define MS_TO_US 1000
  |  |  |  |  ------------------
  |  |  |  |               #define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   33|    120|#define US_TO_NS 1000
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  550|    120|    return t;
  551|    120|}
PyTime_AsSecondsDouble:
  705|      6|{
  706|       |    /* volatile avoids optimization changing how numbers are rounded */
  707|      6|    volatile double d;
  708|       |
  709|      6|    if (ns % SEC_TO_NS == 0) {
  ------------------
  |  |   35|      6|#define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   26|      6|#define SEC_TO_MS 1000
  |  |  ------------------
  |  |               #define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   34|      6|#define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      6|#define MS_TO_US 1000
  |  |  |  |  ------------------
  |  |  |  |               #define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   33|      6|#define US_TO_NS 1000
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (709:9): [True: 0, False: 6]
  ------------------
  710|       |        /* Divide using integers to avoid rounding issues on the integer part.
  711|       |           1e-9 cannot be stored exactly in IEEE 64-bit. */
  712|      0|        PyTime_t secs = ns / SEC_TO_NS;
  ------------------
  |  |   35|      0|#define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   26|      0|#define SEC_TO_MS 1000
  |  |  ------------------
  |  |               #define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   34|      0|#define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      0|#define MS_TO_US 1000
  |  |  |  |  ------------------
  |  |  |  |               #define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   33|      0|#define US_TO_NS 1000
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  713|      0|        d = (double)secs;
  714|      0|    }
  715|      6|    else {
  716|      6|        d = (double)ns;
  717|      6|        d /= 1e9;
  718|      6|    }
  719|      6|    return d;
  720|      6|}
_PyTime_Init:
 1179|      2|{
 1180|       |#ifdef MS_WINDOWS
 1181|       |    return py_win_perf_counter_frequency(&state->base);
 1182|       |#elif defined(__APPLE__)
 1183|       |    return py_mach_timebase_info(&state->base);
 1184|       |#else
 1185|      2|    return PyStatus_Ok();
 1186|      2|#endif
 1187|      2|}
PyTime_MonotonicRaw:
 1289|      8|{
 1290|      8|    if (py_get_monotonic_clock(result, NULL, 0) < 0) {
  ------------------
  |  Branch (1290:9): [True: 0, False: 8]
  ------------------
 1291|      0|        *result = 0;
 1292|      0|        return -1;
 1293|      0|    }
 1294|      8|    return 0;
 1295|      8|}
PyTime_PerfCounterRaw:
 1321|      8|{
 1322|      8|    return PyTime_MonotonicRaw(result);
 1323|      8|}
_PyTime_localtime:
 1328|      4|{
 1329|       |#ifdef MS_WINDOWS
 1330|       |    if (t >= 0) {
 1331|       |        /* For non-negative timestamps, use localtime_s() */
 1332|       |        int error = localtime_s(tm, &t);
 1333|       |        if (error != 0) {
 1334|       |            errno = error;
 1335|       |            PyErr_SetFromErrno(PyExc_OSError);
 1336|       |            return -1;
 1337|       |        }
 1338|       |        return 0;
 1339|       |    }
 1340|       |
 1341|       |    /* For negative timestamps, use FILETIME-based conversion */
 1342|       |    return _PyTime_windows_filetime(t, tm, 1);
 1343|       |#else /* !MS_WINDOWS */
 1344|       |
 1345|       |#if defined(_AIX) && (SIZEOF_TIME_T < 8)
 1346|       |    /* bpo-34373: AIX does not return NULL if t is too small or too large */
 1347|       |    if (t < -2145916800 /* 1902-01-01 */
 1348|       |       || t > 2145916800 /* 2038-01-01 */) {
 1349|       |        errno = EINVAL;
 1350|       |        PyErr_SetString(PyExc_OverflowError,
 1351|       |                        "localtime argument out of range");
 1352|       |        return -1;
 1353|       |    }
 1354|       |#endif
 1355|       |
 1356|      4|    errno = 0;
 1357|      4|    if (localtime_r(&t, tm) == NULL) {
  ------------------
  |  Branch (1357:9): [True: 0, False: 4]
  ------------------
 1358|      0|        if (errno == 0) {
  ------------------
  |  Branch (1358:13): [True: 0, False: 0]
  ------------------
 1359|      0|            errno = EINVAL;
 1360|      0|        }
 1361|      0|        PyErr_SetFromErrno(PyExc_OSError);
 1362|      0|        return -1;
 1363|      0|    }
 1364|      4|    return 0;
 1365|      4|#endif /* MS_WINDOWS */
 1366|      4|}
pytime.c:_PyTime_GCD:
   63|      4|{
   64|       |    // Euclidean algorithm
   65|      4|    assert(x >= 1);
  ------------------
  |  Branch (65:5): [True: 4, False: 0]
  ------------------
   66|      4|    assert(y >= 1);
  ------------------
  |  Branch (66:5): [True: 4, False: 0]
  ------------------
   67|      8|    while (y != 0) {
  ------------------
  |  Branch (67:12): [True: 4, False: 4]
  ------------------
   68|      4|        PyTime_t tmp = y;
   69|      4|        y = x % y;
   70|      4|        x = tmp;
   71|      4|    }
   72|      4|    assert(x >= 1);
  ------------------
  |  Branch (72:5): [True: 4, False: 0]
  ------------------
   73|      4|    return x;
   74|      4|}
pytime.c:pytime_add:
  117|      8|{
  118|      8|    if (t2 > 0 && *t1 > PyTime_MAX - t2) {
  ------------------
  |  |   12|      8|#define PyTime_MAX INT64_MAX
  ------------------
  |  Branch (118:9): [True: 8, False: 0]
  |  Branch (118:19): [True: 0, False: 8]
  ------------------
  119|      0|        *t1 = PyTime_MAX;
  ------------------
  |  |   12|      0|#define PyTime_MAX INT64_MAX
  ------------------
  120|      0|        return -1;
  121|      0|    }
  122|      8|    else if (t2 < 0 && *t1 < PyTime_MIN - t2) {
  ------------------
  |  |   11|      0|#define PyTime_MIN INT64_MIN
  ------------------
  |  Branch (122:14): [True: 0, False: 8]
  |  Branch (122:24): [True: 0, False: 0]
  ------------------
  123|      0|        *t1 = PyTime_MIN;
  ------------------
  |  |   11|      0|#define PyTime_MIN INT64_MIN
  ------------------
  124|      0|        return -1;
  125|      0|    }
  126|      8|    else {
  127|      8|        *t1 += t2;
  128|      8|        return 0;
  129|      8|    }
  130|      8|}
pytime.c:pytime_mul:
  157|      8|{
  158|      8|    assert(k >= 0);
  ------------------
  |  Branch (158:5): [True: 8, False: 0]
  ------------------
  159|      8|    if (pytime_mul_check_overflow(*t, k)) {
  ------------------
  |  Branch (159:9): [True: 0, False: 8]
  ------------------
  160|      0|        *t = (*t >= 0) ? PyTime_MAX : PyTime_MIN;
  ------------------
  |  |   12|      0|#define PyTime_MAX INT64_MAX
  ------------------
                      *t = (*t >= 0) ? PyTime_MAX : PyTime_MIN;
  ------------------
  |  |   11|      0|#define PyTime_MIN INT64_MIN
  ------------------
  |  Branch (160:14): [True: 0, False: 0]
  ------------------
  161|      0|        return -1;
  162|      0|    }
  163|      8|    else {
  164|      8|        *t *= k;
  165|      8|        return 0;
  166|      8|    }
  167|      8|}
pytime.c:pytime_mul_check_overflow:
  143|      8|{
  144|      8|    if (b != 0) {
  ------------------
  |  Branch (144:9): [True: 8, False: 0]
  ------------------
  145|      8|        assert(b > 0);
  ------------------
  |  Branch (145:9): [True: 8, False: 0]
  ------------------
  146|      8|        return ((a < PyTime_MIN / b) || (PyTime_MAX / b < a));
  ------------------
  |  |   11|      8|#define PyTime_MIN INT64_MIN
  ------------------
                      return ((a < PyTime_MIN / b) || (PyTime_MAX / b < a));
  ------------------
  |  |   12|      8|#define PyTime_MAX INT64_MAX
  ------------------
  |  Branch (146:17): [True: 0, False: 8]
  |  Branch (146:41): [True: 0, False: 8]
  ------------------
  147|      8|    }
  148|      0|    else {
  149|      0|        return 0;
  150|      0|    }
  151|      8|}
pytime.c:pytime_fromtimespec:
  565|      8|{
  566|      8|    PyTime_t t, tv_nsec;
  567|       |
  568|      8|    static_assert(sizeof(ts->tv_sec) <= sizeof(PyTime_t),
  569|      8|                  "timespec.tv_sec is larger than PyTime_t");
  570|      8|    t = (PyTime_t)ts->tv_sec;
  571|       |
  572|      8|    int res1 = pytime_mul(&t, SEC_TO_NS);
  ------------------
  |  |   35|      8|#define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   26|      8|#define SEC_TO_MS 1000
  |  |  ------------------
  |  |               #define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
  |  |  ------------------
  |  |  |  |   34|      8|#define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   29|      8|#define MS_TO_US 1000
  |  |  |  |  ------------------
  |  |  |  |               #define MS_TO_NS (MS_TO_US * US_TO_NS)
  |  |  |  |  ------------------
  |  |  |  |  |  |   33|      8|#define US_TO_NS 1000
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  573|       |
  574|      8|    tv_nsec = ts->tv_nsec;
  575|      8|    int res2 = pytime_add(&t, tv_nsec);
  576|       |
  577|      8|    *tp = t;
  578|       |
  579|      8|    if (raise_exc && (res1 < 0 || res2 < 0)) {
  ------------------
  |  Branch (579:9): [True: 0, False: 8]
  |  Branch (579:23): [True: 0, False: 0]
  |  Branch (579:35): [True: 0, False: 0]
  ------------------
  580|      0|        pytime_overflow();
  581|      0|        return -1;
  582|      0|    }
  583|      8|    return 0;
  584|      8|}
pytime.c:py_get_monotonic_clock:
 1192|      8|{
 1193|      8|    assert(info == NULL || raise_exc);
  ------------------
  |  Branch (1193:5): [True: 8, False: 0]
  |  Branch (1193:5): [True: 0, False: 0]
  ------------------
 1194|      8|    if (raise_exc) {
  ------------------
  |  Branch (1194:9): [True: 0, False: 8]
  ------------------
 1195|       |        // raise_exc requires to hold a thread state
 1196|      0|        _Py_AssertHoldsTstate();
  ------------------
  |  |  306|      0|#define _Py_AssertHoldsTstate() _Py_AssertHoldsTstateFunc(__func__)
  ------------------
 1197|      0|    }
 1198|       |
 1199|       |#if defined(MS_WINDOWS)
 1200|       |    if (py_get_win_perf_counter(tp, info, raise_exc) < 0) {
 1201|       |        return -1;
 1202|       |    }
 1203|       |#elif defined(__APPLE__)
 1204|       |    if (info) {
 1205|       |        info->implementation = "mach_absolute_time()";
 1206|       |        info->resolution = _PyTimeFraction_Resolution(&_PyRuntime.time.base);
 1207|       |        info->monotonic = 1;
 1208|       |        info->adjustable = 0;
 1209|       |    }
 1210|       |
 1211|       |    uint64_t uticks = mach_absolute_time();
 1212|       |    // unsigned => signed
 1213|       |    assert(uticks <= (uint64_t)PyTime_MAX);
 1214|       |    PyTime_t ticks = (PyTime_t)uticks;
 1215|       |
 1216|       |    PyTime_t ns = _PyTimeFraction_Mul(ticks, &_PyRuntime.time.base);
 1217|       |    *tp = ns;
 1218|       |
 1219|       |#elif defined(__hpux)
 1220|       |    hrtime_t time = gethrtime();
 1221|       |    if (time == -1) {
 1222|       |        if (raise_exc) {
 1223|       |            PyErr_SetFromErrno(PyExc_OSError);
 1224|       |        }
 1225|       |        return -1;
 1226|       |    }
 1227|       |
 1228|       |    *tp = time;
 1229|       |
 1230|       |    if (info) {
 1231|       |        info->implementation = "gethrtime()";
 1232|       |        info->resolution = 1e-9;
 1233|       |        info->monotonic = 1;
 1234|       |        info->adjustable = 0;
 1235|       |    }
 1236|       |
 1237|       |#else
 1238|       |
 1239|       |#ifdef CLOCK_HIGHRES
 1240|       |    const clockid_t clk_id = CLOCK_HIGHRES;
 1241|       |    const char *implementation = "clock_gettime(CLOCK_HIGHRES)";
 1242|       |#else
 1243|      8|    const clockid_t clk_id = CLOCK_MONOTONIC;
 1244|      8|    const char *implementation = "clock_gettime(CLOCK_MONOTONIC)";
 1245|      8|#endif
 1246|       |
 1247|      8|    struct timespec ts;
 1248|      8|    if (clock_gettime(clk_id, &ts) != 0) {
  ------------------
  |  Branch (1248:9): [True: 0, False: 8]
  ------------------
 1249|      0|        if (raise_exc) {
  ------------------
  |  Branch (1249:13): [True: 0, False: 0]
  ------------------
 1250|      0|            PyErr_SetFromErrno(PyExc_OSError);
 1251|      0|            return -1;
 1252|      0|        }
 1253|      0|        return -1;
 1254|      0|    }
 1255|       |
 1256|      8|    if (pytime_fromtimespec(tp, &ts, raise_exc) < 0) {
  ------------------
  |  Branch (1256:9): [True: 0, False: 8]
  ------------------
 1257|      0|        return -1;
 1258|      0|    }
 1259|       |
 1260|      8|    if (info) {
  ------------------
  |  Branch (1260:9): [True: 0, False: 8]
  ------------------
 1261|      0|        info->monotonic = 1;
 1262|      0|        info->implementation = implementation;
 1263|      0|        info->adjustable = 0;
 1264|      0|        struct timespec res;
 1265|      0|        if (clock_getres(clk_id, &res) != 0) {
  ------------------
  |  Branch (1265:13): [True: 0, False: 0]
  ------------------
 1266|      0|            PyErr_SetFromErrno(PyExc_OSError);
 1267|      0|            return -1;
 1268|      0|        }
 1269|      0|        info->resolution = res.tv_sec + res.tv_nsec * 1e-9;
 1270|      0|    }
 1271|      8|#endif
 1272|      8|    return 0;
 1273|      8|}

_PySlotIterator_InitLegacy:
   61|    126|{
   62|    126|    init_with_kind(it, slots, kind, kind);
   63|    126|}
_PySlotIterator_Rewind:
   67|     78|{
   68|     78|    MSG("");
   69|     78|    MSG("rewind (%s slot iterator)", kind_name(it->kind));
   70|     78|    assert (it->is_at_end);
  ------------------
  |  Branch (70:5): [True: 78, False: 0]
  ------------------
   71|     78|    assert (it->recursion_level == 0);
  ------------------
  |  Branch (71:5): [True: 78, False: 0]
  ------------------
   72|     78|    assert (it->state == it->states);
  ------------------
  |  Branch (72:5): [True: 78, False: 0]
  ------------------
   73|     78|    it->is_at_end = false;
   74|     78|    it->state->any_slot = slots;
   75|       |    it->is_first_run = false;
   76|     78|}
_PySlotIterator_SawSlot:
   92|    752|{
   93|    752|    assert (id > 0);
  ------------------
  |  Branch (93:5): [True: 752, False: 0]
  ------------------
   94|    752|    assert (id < _Py_slot_COUNT);
  ------------------
  |  Branch (94:5): [True: 752, False: 0]
  ------------------
   95|    752|    return it->seen[seen_index(id)] & seen_mask(id);
   96|    752|}
_PySlotIterator_Next:
  116|  1.54k|{
  117|  1.54k|    MSG("next");
  118|  1.54k|    assert(it);
  ------------------
  |  Branch (118:5): [True: 1.54k, False: 0]
  ------------------
  119|  1.54k|    assert(!it->is_at_end);
  ------------------
  |  Branch (119:5): [True: 1.54k, False: 0]
  ------------------
  120|  1.54k|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (120:5): [True: 1.54k, False: 0]
  ------------------
  121|       |
  122|  1.54k|    it->current.sl_id = -1;
  123|       |
  124|  1.74k|    while (true) {
  ------------------
  |  Branch (124:12): [True: 1.74k, Folded]
  ------------------
  125|  1.74k|        if (it->state->slot == NULL) {
  ------------------
  |  Branch (125:13): [True: 204, False: 1.54k]
  ------------------
  126|    204|            if (it->recursion_level == 0) {
  ------------------
  |  Branch (126:17): [True: 204, False: 0]
  ------------------
  127|    204|                MSG("end (initial nesting level done)");
  128|    204|                it->is_at_end = true;
  129|    204|                return 0;
  130|    204|            }
  131|      0|            MSG("pop nesting level %d", (int)it->recursion_level);
  132|      0|            it->recursion_level--;
  133|      0|            it->state = &it->states[it->recursion_level];
  134|      0|            advance(it);
  135|      0|            continue;
  136|    204|        }
  137|       |
  138|  1.54k|        switch (it->state->slot_struct_kind) {
  139|      0|            case _PySlot_KIND_SLOT: {
  ------------------
  |  Branch (139:13): [True: 0, False: 1.54k]
  ------------------
  140|      0|                MSG("copying PySlot structure");
  141|      0|                it->current = *it->state->slot;
  142|      0|            } break;
  143|  1.31k|            case _PySlot_KIND_TYPE: {
  ------------------
  |  Branch (143:13): [True: 1.31k, False: 228]
  ------------------
  144|  1.31k|                MSG("converting PyType_Slot structure");
  145|  1.31k|                memset(&it->current, 0, sizeof(it->current));
  146|  1.31k|                it->current.sl_id = (uint16_t)it->state->tp_slot->slot;
  147|  1.31k|                it->current.sl_flags = PySlot_INTPTR;
  ------------------
  |  |   23|  1.31k|#define PySlot_INTPTR 0x0004
  ------------------
  148|  1.31k|                it->current.sl_ptr = (void*)it->state->tp_slot->pfunc;
  149|  1.31k|            } break;
  150|    228|            case _PySlot_KIND_MOD: {
  ------------------
  |  Branch (150:13): [True: 228, False: 1.31k]
  ------------------
  151|    228|                MSG("converting PyModuleDef_Slot structure");
  152|    228|                memset(&it->current, 0, sizeof(it->current));
  153|    228|                it->current.sl_id = (uint16_t)it->state->mod_slot->slot;
  154|    228|                it->current.sl_flags = PySlot_INTPTR;
  ------------------
  |  |   23|    228|#define PySlot_INTPTR 0x0004
  ------------------
  155|    228|                it->current.sl_ptr = (void*)it->state->mod_slot->value;
  156|    228|            } break;
  157|      0|            default: {
  ------------------
  |  Branch (157:13): [True: 0, False: 1.54k]
  ------------------
  158|      0|                Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  159|      0|            } break;
  160|  1.54k|        }
  161|       |
  162|       |        /* shorter local names */
  163|  1.54k|        PySlot *const result = &it->current;
  164|  1.54k|        uint16_t flags = result->sl_flags;
  165|       |
  166|  1.54k|        MSG("slot %d, flags 0x%x, from %p",
  167|  1.54k|            (int)result->sl_id, (unsigned)flags, it->state->slot);
  168|       |
  169|  1.54k|        uint16_t orig_id = result->sl_id;
  170|  1.54k|        switch (it->kind) {
  171|  1.31k|            case _PySlot_KIND_TYPE:
  ------------------
  |  Branch (171:13): [True: 1.31k, False: 228]
  ------------------
  172|  1.31k|                result->sl_id = _PySlot_resolve_type_slot(result->sl_id);
  173|  1.31k|                break;
  174|    228|            case _PySlot_KIND_MOD:
  ------------------
  |  Branch (174:13): [True: 228, False: 1.31k]
  ------------------
  175|    228|                result->sl_id = _PySlot_resolve_mod_slot(result->sl_id);
  176|    228|                break;
  177|      0|            default:
  ------------------
  |  Branch (177:13): [True: 0, False: 1.54k]
  ------------------
  178|      0|                Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  179|  1.54k|        }
  180|  1.54k|        MSG("resolved to slot %d (%s)",
  181|  1.54k|            (int)result->sl_id, _PySlot_GetName(result->sl_id));
  182|       |
  183|  1.54k|        if (result->sl_id == Py_slot_invalid) {
  ------------------
  |  |   25|  1.54k|#define Py_slot_invalid 0xffff
  ------------------
  |  Branch (183:13): [True: 0, False: 1.54k]
  ------------------
  184|      0|            MSG("error (unknown/invalid slot)");
  185|      0|            if (flags & PySlot_OPTIONAL) {
  ------------------
  |  |   21|      0|#define PySlot_OPTIONAL 0x0001
  ------------------
  |  Branch (185:17): [True: 0, False: 0]
  ------------------
  186|      0|                advance(it);
  187|      0|                continue;
  188|      0|            }
  189|      0|            _PySlot_err_bad_slot(kind_name(it->kind), orig_id);
  190|      0|            goto error;
  191|      0|        }
  192|  1.54k|        if (result->sl_id == Py_slot_end) {
  ------------------
  |  |   12|  1.54k|#define Py_slot_end 0
  ------------------
  |  Branch (192:13): [True: 204, False: 1.33k]
  ------------------
  193|    204|            MSG("sentinel slot, flags %x", (unsigned)flags);
  194|    204|            if (flags & PySlot_OPTIONAL) {
  ------------------
  |  |   21|    204|#define PySlot_OPTIONAL 0x0001
  ------------------
  |  Branch (194:17): [True: 0, False: 204]
  ------------------
  195|      0|                MSG("error (bad flags on sentinel)");
  196|      0|                PyErr_Format(PyExc_SystemError,
  197|      0|                            "invalid flags for Py_slot_end: 0x%x",
  198|      0|                             (unsigned int)flags);
  199|      0|                goto error;
  200|      0|            }
  201|    204|            it->state->slot = NULL;
  202|    204|            continue;
  203|    204|        }
  204|       |
  205|  1.33k|        if (result->sl_id == Py_slot_subslots
  ------------------
  |  |  100|  2.67k|#define Py_slot_subslots 92
  ------------------
  |  Branch (205:13): [True: 0, False: 1.33k]
  ------------------
  206|  1.33k|            || result->sl_id == Py_tp_slots
  ------------------
  |  |  101|  2.67k|#define Py_tp_slots 93
  ------------------
  |  Branch (206:16): [True: 0, False: 1.33k]
  ------------------
  207|  1.33k|            || result->sl_id == Py_mod_slots
  ------------------
  |  |  102|  1.33k|#define Py_mod_slots 94
  ------------------
  |  Branch (207:16): [True: 0, False: 1.33k]
  ------------------
  208|  1.33k|        ) {
  209|      0|            if (result->sl_ptr == NULL) {
  ------------------
  |  Branch (209:17): [True: 0, False: 0]
  ------------------
  210|      0|                MSG("NULL subslots; skipping");
  211|      0|                advance(it);
  212|      0|                continue;
  213|      0|            }
  214|      0|            if ((it->states[0].slot_struct_kind == _PySlot_KIND_MOD)
  ------------------
  |  Branch (214:17): [True: 0, False: 0]
  ------------------
  215|      0|                && (it->state->slot_struct_kind == _PySlot_KIND_SLOT)
  ------------------
  |  Branch (215:20): [True: 0, False: 0]
  ------------------
  216|      0|                && !(result->sl_flags & PySlot_STATIC))
  ------------------
  |  |   22|      0|#define PySlot_STATIC 0x0002
  ------------------
  |  Branch (216:20): [True: 0, False: 0]
  ------------------
  217|      0|            {
  218|      0|                PyErr_Format(PyExc_SystemError,
  219|      0|                             "slots included from PyModuleDef must be static");
  220|      0|                goto error;
  221|      0|            }
  222|      0|            it->recursion_level++;
  223|      0|            MSG("recursing into level %d", it->recursion_level);
  224|      0|            if (it->recursion_level >= _PySlot_MAX_NESTING) {
  ------------------
  |  |   39|      0|#define _PySlot_MAX_NESTING 5
  ------------------
  |  Branch (224:17): [True: 0, False: 0]
  ------------------
  225|      0|                MSG("error (too much nesting)");
  226|      0|                PyErr_Format(PyExc_SystemError,
  227|      0|                            "%s (slot %d): too many levels of nested slots",
  228|      0|                            _PySlot_GetName(result->sl_id), orig_id);
  229|      0|                goto error;
  230|      0|            }
  231|      0|            it->state = &it->states[it->recursion_level];
  232|      0|            memset(it->state, 0, sizeof(_PySlotIterator_state));
  233|      0|            it->state->slot = result->sl_ptr;
  234|      0|            switch (result->sl_id) {
  ------------------
  |  Branch (234:21): [True: 0, False: 0]
  ------------------
  235|      0|                case Py_slot_subslots:
  ------------------
  |  |  100|      0|#define Py_slot_subslots 92
  ------------------
  |  Branch (235:17): [True: 0, False: 0]
  ------------------
  236|      0|                    it->state->slot_struct_kind = _PySlot_KIND_SLOT; break;
  237|      0|                case Py_tp_slots:
  ------------------
  |  |  101|      0|#define Py_tp_slots 93
  ------------------
  |  Branch (237:17): [True: 0, False: 0]
  ------------------
  238|      0|                    it->state->slot_struct_kind = _PySlot_KIND_TYPE; break;
  239|      0|                case Py_mod_slots:
  ------------------
  |  |  102|      0|#define Py_mod_slots 94
  ------------------
  |  Branch (239:17): [True: 0, False: 0]
  ------------------
  240|      0|                    it->state->slot_struct_kind = _PySlot_KIND_MOD; break;
  241|      0|            }
  242|      0|            continue;
  243|      0|        }
  244|       |
  245|  1.33k|        if (flags & PySlot_INTPTR) {
  ------------------
  |  |   23|  1.33k|#define PySlot_INTPTR 0x0004
  ------------------
  |  Branch (245:13): [True: 1.33k, False: 0]
  ------------------
  246|  1.33k|            MSG("casting from intptr");
  247|       |            /* this should compile to nothing on common architectures */
  248|  1.33k|            switch (_PySlot_get_dtype(result->sl_id)) {
  ------------------
  |  Branch (248:21): [True: 1.33k, False: 0]
  ------------------
  249|      0|                case _PySlot_DTYPE_SIZE: {
  ------------------
  |  Branch (249:17): [True: 0, False: 1.33k]
  ------------------
  250|      0|                    result->sl_size = (Py_ssize_t)(intptr_t)result->sl_ptr;
  251|      0|                } break;
  252|      0|                case _PySlot_DTYPE_INT64: {
  ------------------
  |  Branch (252:17): [True: 0, False: 1.33k]
  ------------------
  253|      0|                    result->sl_int64 = (int64_t)(intptr_t)result->sl_ptr;
  254|      0|                } break;
  255|     96|                case _PySlot_DTYPE_UINT64: {
  ------------------
  |  Branch (255:17): [True: 96, False: 1.24k]
  ------------------
  256|     96|                    result->sl_uint64 = (uint64_t)(intptr_t)result->sl_ptr;
  257|     96|                } break;
  258|    476|                case _PySlot_DTYPE_PTR:
  ------------------
  |  Branch (258:17): [True: 476, False: 860]
  ------------------
  259|  1.24k|                case _PySlot_DTYPE_FUNC:
  ------------------
  |  Branch (259:17): [True: 764, False: 572]
  ------------------
  260|  1.24k|                case _PySlot_DTYPE_VOID:
  ------------------
  |  Branch (260:17): [True: 0, False: 1.33k]
  ------------------
  261|  1.24k|                    break;
  262|  1.33k|            }
  263|  1.33k|        }
  264|       |
  265|  1.33k|        advance(it);
  266|  1.33k|        switch (_PySlot_get_dtype(result->sl_id)) {
  ------------------
  |  Branch (266:17): [True: 1.33k, False: 0]
  ------------------
  267|      0|            case _PySlot_DTYPE_VOID:
  ------------------
  |  Branch (267:13): [True: 0, False: 1.33k]
  ------------------
  268|    476|            case _PySlot_DTYPE_PTR:
  ------------------
  |  Branch (268:13): [True: 476, False: 860]
  ------------------
  269|    476|                MSG("result: %d (%s): %p",
  270|    476|                    (int)result->sl_id, _PySlot_GetName(result->sl_id),
  271|    476|                    (void*)result->sl_ptr);
  272|    476|                break;
  273|    764|            case _PySlot_DTYPE_FUNC:
  ------------------
  |  Branch (273:13): [True: 764, False: 572]
  ------------------
  274|    764|                MSG("result: %d (%s): %p",
  275|    764|                    (int)result->sl_id, _PySlot_GetName(result->sl_id),
  276|    764|                    (void*)result->sl_func);
  277|    764|                break;
  278|      0|            case _PySlot_DTYPE_SIZE:
  ------------------
  |  Branch (278:13): [True: 0, False: 1.33k]
  ------------------
  279|      0|                MSG("result: %d (%s): %zd",
  280|      0|                    (int)result->sl_id, _PySlot_GetName(result->sl_id),
  281|      0|                    (Py_ssize_t)result->sl_size);
  282|      0|                break;
  283|      0|            case _PySlot_DTYPE_INT64:
  ------------------
  |  Branch (283:13): [True: 0, False: 1.33k]
  ------------------
  284|      0|                MSG("result: %d (%s): %ld",
  285|      0|                    (int)result->sl_id,  _PySlot_GetName(result->sl_id),
  286|      0|                    (long)result->sl_int64);
  287|      0|                break;
  288|     96|            case _PySlot_DTYPE_UINT64:
  ------------------
  |  Branch (288:13): [True: 96, False: 1.24k]
  ------------------
  289|     96|                MSG("result: %d (%s): %lu (0x%lx)",
  290|     96|                    (int)result->sl_id, _PySlot_GetName(result->sl_id),
  291|     96|                    (unsigned long)result->sl_int64,
  292|     96|                    (unsigned long)result->sl_int64);
  293|     96|                break;
  294|  1.33k|        }
  295|  1.33k|        assert (result->sl_id > 0);
  ------------------
  |  Branch (295:9): [True: 1.33k, False: 0]
  ------------------
  296|  1.33k|        assert (result->sl_id <= _Py_slot_COUNT);
  ------------------
  |  Branch (296:9): [True: 1.33k, False: 0]
  ------------------
  297|  1.33k|        if (it->is_first_run && (handle_first_run(it) < 0)) {
  ------------------
  |  Branch (297:13): [True: 758, False: 578]
  |  Branch (297:33): [True: 0, False: 758]
  ------------------
  298|      0|            goto error;
  299|      0|        }
  300|  1.33k|        return result->sl_id != Py_slot_end;
  ------------------
  |  |   12|  1.33k|#define Py_slot_end 0
  ------------------
  301|  1.33k|    }
  302|  1.54k|    Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  303|       |
  304|      0|error:
  305|      0|    it->current.sl_id = Py_slot_invalid;
  ------------------
  |  |   25|      0|#define Py_slot_invalid 0xffff
  ------------------
  306|       |    return true;
  307|  1.54k|}
slots.c:init_with_kind:
   36|    126|{
   37|    126|    MSG("");
   38|    126|    MSG("init (%s slot iterator)", kind_name(result_kind));
   39|    126|    it->state = it->states;
   40|    126|    it->state->any_slot = slots;
   41|    126|    it->state->slot_struct_kind = slot_struct_kind;
   42|    126|    it->kind = result_kind;
   43|    126|    it->name = NULL;
   44|    126|    it->recursion_level = 0;
   45|    126|    it->is_at_end = false;
   46|       |    it->is_first_run = true;
   47|    126|    it->current.sl_id = 0;
   48|    126|    memset(it->seen, 0, sizeof(it->seen));
   49|    126|}
slots.c:seen_index:
   80|  1.51k|{
   81|  1.51k|    return id / _PySlot_SEEN_ENTRY_BITS;
  ------------------
  |  |   53|  1.51k|#define _PySlot_SEEN_ENTRY_BITS (8 * sizeof(unsigned int))
  ------------------
   82|  1.51k|}
slots.c:seen_mask:
   86|  1.51k|{
   87|  1.51k|    return ((unsigned int)1) << (id % _PySlot_SEEN_ENTRY_BITS);
  ------------------
  |  |   53|  1.51k|#define _PySlot_SEEN_ENTRY_BITS (8 * sizeof(unsigned int))
  ------------------
   88|  1.51k|}
slots.c:advance:
  101|  1.33k|{
  102|  1.33k|    MSG("advance (at level %d)", (int)it->recursion_level);
  103|  1.33k|    switch (it->state->slot_struct_kind) {
  104|      0|        case _PySlot_KIND_SLOT: it->state->slot++; break;
  ------------------
  |  Branch (104:9): [True: 0, False: 1.33k]
  ------------------
  105|  1.15k|        case _PySlot_KIND_TYPE: it->state->tp_slot++; break;
  ------------------
  |  Branch (105:9): [True: 1.15k, False: 180]
  ------------------
  106|    180|        case _PySlot_KIND_MOD: it->state->mod_slot++; break;
  ------------------
  |  Branch (106:9): [True: 180, False: 1.15k]
  ------------------
  107|      0|        default:
  ------------------
  |  Branch (107:9): [True: 0, False: 1.33k]
  ------------------
  108|      0|            Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  109|  1.33k|    }
  110|  1.33k|}
slots.c:handle_first_run:
  312|    758|{
  313|    758|    int id = it->current.sl_id;
  314|       |
  315|    758|    if (_PySlot_get_must_be_static(id)) {
  ------------------
  |  Branch (315:9): [True: 152, False: 606]
  ------------------
  316|    152|        if (!(it->current.sl_flags & PySlot_STATIC)
  ------------------
  |  |   22|    152|#define PySlot_STATIC 0x0002
  ------------------
  |  Branch (316:13): [True: 152, False: 0]
  ------------------
  317|    152|            && (it->state->slot_struct_kind == _PySlot_KIND_SLOT))
  ------------------
  |  Branch (317:16): [True: 0, False: 152]
  ------------------
  318|      0|        {
  319|      0|            PyErr_Format(
  320|      0|                PyExc_SystemError,
  321|      0|                "%s requires PySlot_STATIC",
  322|      0|                _PySlot_GetName(id));
  323|      0|            return -1;
  324|      0|        }
  325|    152|    }
  326|       |
  327|    758|    _PySlot_PROBLEM_HANDLING null_handling = _PySlot_get_null_handling(id);
  328|    758|    if (null_handling != _PySlot_PROBLEM_ALLOW) {
  ------------------
  |  Branch (328:9): [True: 596, False: 162]
  ------------------
  329|    596|        bool is_null = false;
  330|    596|        switch (_PySlot_get_dtype(id)) {
  331|    192|            case _PySlot_DTYPE_PTR: {
  ------------------
  |  Branch (331:13): [True: 192, False: 404]
  ------------------
  332|    192|                is_null = it->current.sl_ptr == NULL;
  333|    192|            } break;
  334|    404|            case _PySlot_DTYPE_FUNC: {
  ------------------
  |  Branch (334:13): [True: 404, False: 192]
  ------------------
  335|    404|                is_null = it->current.sl_func == NULL;
  336|    404|            } break;
  337|      0|            default: {
  ------------------
  |  Branch (337:13): [True: 0, False: 596]
  ------------------
  338|       |                //Py_UNREACHABLE();
  339|      0|            } break;
  340|    596|        }
  341|    596|        if (is_null) {
  ------------------
  |  Branch (341:13): [True: 0, False: 596]
  ------------------
  342|      0|            MSG("slot is NULL but shouldn't");
  343|      0|            if (null_handling == _PySlot_PROBLEM_REJECT) {
  ------------------
  |  Branch (343:17): [True: 0, False: 0]
  ------------------
  344|      0|                MSG("error (NULL rejected)");
  345|      0|                PyErr_Format(PyExc_SystemError,
  346|      0|                             "NULL not allowed for slot %s",
  347|      0|                             _PySlot_GetName(id));
  348|      0|                return -1;
  349|      0|            }
  350|      0|            if (it->states[0].slot_struct_kind == _PySlot_KIND_SLOT) {
  ------------------
  |  Branch (350:17): [True: 0, False: 0]
  ------------------
  351|      0|                MSG("deprecated NULL");
  352|      0|                if (PyErr_WarnFormat(
  ------------------
  |  Branch (352:21): [True: 0, False: 0]
  ------------------
  353|      0|                    PyExc_DeprecationWarning,
  354|      0|                    1,
  355|      0|                    "NULL value in slot %s is deprecated",
  356|      0|                    _PySlot_GetName(id)) < 0)
  357|      0|                {
  358|      0|                    return -1;
  359|      0|                }
  360|      0|            }
  361|      0|            else {
  362|      0|                MSG("unwanted NULL in legacy struct");
  363|      0|            }
  364|      0|        }
  365|    596|    }
  366|       |
  367|    758|    _PySlot_PROBLEM_HANDLING duplicate_handling = _PySlot_get_duplicate_handling(id);
  368|    758|    if (duplicate_handling != _PySlot_PROBLEM_ALLOW) {
  ------------------
  |  Branch (368:9): [True: 674, False: 84]
  ------------------
  369|    674|        if (_PySlotIterator_SawSlot(it, id)) {
  ------------------
  |  Branch (369:13): [True: 0, False: 674]
  ------------------
  370|      0|            MSG("slot was seen before but shouldn't be duplicated");
  371|      0|            if (duplicate_handling == _PySlot_PROBLEM_REJECT) {
  ------------------
  |  Branch (371:17): [True: 0, False: 0]
  ------------------
  372|      0|                MSG("error (duplicate rejected)");
  373|      0|                PyErr_Format(
  374|      0|                    PyExc_SystemError,
  375|      0|                    "%s%s%s has multiple %s (%d) slots",
  376|      0|                    kind_name(it->kind),
  377|      0|                    it->name ? " " : "",
  ------------------
  |  Branch (377:21): [True: 0, False: 0]
  ------------------
  378|      0|                    it->name ? it->name : "",
  ------------------
  |  Branch (378:21): [True: 0, False: 0]
  ------------------
  379|      0|                    _PySlot_GetName(id),
  380|      0|                    (int)it->current.sl_id);
  381|      0|                return -1;
  382|      0|            }
  383|      0|            if (it->states[0].slot_struct_kind == _PySlot_KIND_SLOT) {
  ------------------
  |  Branch (383:17): [True: 0, False: 0]
  ------------------
  384|      0|                MSG("deprecated duplicate");
  385|      0|                if (PyErr_WarnFormat(
  ------------------
  |  Branch (385:21): [True: 0, False: 0]
  ------------------
  386|      0|                        PyExc_DeprecationWarning,
  387|      0|                        0,
  388|      0|                        "%s%s%s has multiple %s (%d) slots. This is deprecated.",
  389|      0|                        kind_name(it->kind),
  390|      0|                        it->name ? " " : "",
  ------------------
  |  Branch (390:25): [True: 0, False: 0]
  ------------------
  391|      0|                        it->name ? it->name : "",
  ------------------
  |  Branch (391:25): [True: 0, False: 0]
  ------------------
  392|      0|                        _PySlot_GetName(id),
  393|      0|                        (int)it->current.sl_id) < 0) {
  394|      0|                    return -1;
  395|      0|                }
  396|      0|            }
  397|      0|            else {
  398|      0|                MSG("unwanted duplicate in legacy struct");
  399|      0|            }
  400|      0|        }
  401|    674|    }
  402|    758|    it->seen[seen_index(id)] |= seen_mask(id);
  403|    758|    return 0;
  404|    758|}

_PyCode_Quicken:
   64|  1.48k|{
   65|  1.48k|    #if ENABLE_SPECIALIZATION
   66|  1.48k|    _Py_BackoffCounter jump_counter, adaptive_counter, resume_counter;
   67|  1.48k|    if (enable_counters) {
  ------------------
  |  Branch (67:9): [True: 1.48k, False: 0]
  ------------------
   68|  1.48k|        PyThreadState *tstate = _PyThreadState_GET();
   69|  1.48k|        PyInterpreterState *interp = tstate->interp;
   70|  1.48k|        jump_counter = initial_jump_backoff_counter(&interp->opt_config);
   71|  1.48k|        adaptive_counter = adaptive_counter_warmup();
   72|  1.48k|        resume_counter = initial_resume_backoff_counter(&interp->opt_config);
   73|  1.48k|    }
   74|      0|    else {
   75|      0|        jump_counter = initial_unreachable_backoff_counter();
   76|      0|        adaptive_counter = initial_unreachable_backoff_counter();
   77|      0|        resume_counter = initial_unreachable_backoff_counter();
   78|      0|    }
   79|  1.48k|    int opcode = 0;
   80|  1.48k|    int oparg = 0;
   81|       |    /* The last code unit cannot have a cache, so we don't need to check it */
   82|  68.9k|    for (Py_ssize_t i = 0; i < size-1; i++) {
  ------------------
  |  Branch (82:28): [True: 67.5k, False: 1.48k]
  ------------------
   83|  67.5k|        opcode = instructions[i].op.code;
   84|  67.5k|        int caches = _PyOpcode_Caches[opcode];
   85|  67.5k|        oparg = (oparg << 8) | instructions[i].op.arg;
   86|  67.5k|        if (opcode == GET_ITER) {
  ------------------
  |  |   83|  67.5k|#define GET_ITER                                70
  ------------------
  |  Branch (86:13): [True: 286, False: 67.2k]
  ------------------
   87|    286|            fixup_getiter(&instructions[i], flags);
   88|    286|        }
   89|  67.5k|        if (caches) {
  ------------------
  |  Branch (89:13): [True: 21.4k, False: 46.0k]
  ------------------
   90|       |            // The initial value depends on the opcode
   91|  21.4k|            switch (opcode) {
   92|    590|                case JUMP_BACKWARD:
  ------------------
  |  |   87|    590|#define JUMP_BACKWARD                           74
  ------------------
  |  Branch (92:17): [True: 590, False: 20.8k]
  ------------------
   93|    590|                    instructions[i + 1].counter = jump_counter;
   94|    590|                    break;
   95|  1.61k|                case RESUME:
  ------------------
  |  |  133|  1.61k|#define RESUME                                 128
  ------------------
  |  Branch (95:17): [True: 1.61k, False: 19.8k]
  ------------------
   96|  1.61k|                    instructions[i + 1].counter = resume_counter;
   97|  1.61k|                    break;
   98|  1.70k|                case POP_JUMP_IF_FALSE:
  ------------------
  |  |  112|  1.70k|#define POP_JUMP_IF_FALSE                       99
  ------------------
  |  Branch (98:17): [True: 1.70k, False: 19.7k]
  ------------------
   99|  2.39k|                case POP_JUMP_IF_TRUE:
  ------------------
  |  |  115|  2.39k|#define POP_JUMP_IF_TRUE                       102
  ------------------
  |  Branch (99:17): [True: 698, False: 20.7k]
  ------------------
  100|  2.52k|                case POP_JUMP_IF_NONE:
  ------------------
  |  |  113|  2.52k|#define POP_JUMP_IF_NONE                       100
  ------------------
  |  Branch (100:17): [True: 126, False: 21.3k]
  ------------------
  101|  2.73k|                case POP_JUMP_IF_NOT_NONE:
  ------------------
  |  |  114|  2.73k|#define POP_JUMP_IF_NOT_NONE                   101
  ------------------
  |  Branch (101:17): [True: 214, False: 21.2k]
  ------------------
  102|  2.73k|                    instructions[i + 1].cache = 0x5555;  // Alternating 0, 1 bits
  103|  2.73k|                    break;
  104|  16.5k|                default:
  ------------------
  |  Branch (104:17): [True: 16.5k, False: 4.94k]
  ------------------
  105|  16.5k|                    instructions[i + 1].counter = adaptive_counter;
  106|  16.5k|                    break;
  107|  21.4k|            }
  108|  21.4k|            i += caches;
  109|  21.4k|        }
  110|  67.5k|        if (opcode != EXTENDED_ARG) {
  ------------------
  |  |   80|  67.5k|#define EXTENDED_ARG                            67
  ------------------
  |  Branch (110:13): [True: 66.7k, False: 758]
  ------------------
  111|  66.7k|            oparg = 0;
  112|  66.7k|        }
  113|  67.5k|    }
  114|       |    #else
  115|       |    for (Py_ssize_t i = 0; i < size-1; i++) {
  116|       |        if (instructions[i].op.code == GET_ITER) {
  117|       |            fixup_getiter(&instructions[i], flags);
  118|       |        }
  119|       |        i += _PyOpcode_Caches[opcode];
  120|       |    }
  121|       |    #endif /* ENABLE_SPECIALIZATION */
  122|  1.48k|}
_Py_Specialize_LoadSuperAttr:
  468|      6|_Py_Specialize_LoadSuperAttr(_PyStackRef global_super_st, _PyStackRef cls_st, _Py_CODEUNIT *instr, int load_method) {
  469|      6|    PyObject *global_super = PyStackRef_AsPyObjectBorrow(global_super_st);
  470|      6|    PyObject *cls = PyStackRef_AsPyObjectBorrow(cls_st);
  471|       |
  472|      6|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (472:5): [True: 6, Folded]
  ------------------
  473|      6|    assert(_PyOpcode_Caches[LOAD_SUPER_ATTR] == INLINE_CACHE_ENTRIES_LOAD_SUPER_ATTR);
  ------------------
  |  Branch (473:5): [True: 6, False: 0]
  ------------------
  474|      6|    if (global_super != (PyObject *)&PySuper_Type) {
  ------------------
  |  Branch (474:9): [True: 0, False: 6]
  ------------------
  475|      0|        SPECIALIZATION_FAIL(LOAD_SUPER_ATTR, SPEC_FAIL_SUPER_SHADOWED);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  476|      0|        goto fail;
  477|      0|    }
  478|      6|    if (!PyType_Check(cls)) {
  ------------------
  |  |  766|      6|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (478:9): [True: 0, False: 6]
  ------------------
  479|      0|        SPECIALIZATION_FAIL(LOAD_SUPER_ATTR, SPEC_FAIL_SUPER_BAD_CLASS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  480|      0|        goto fail;
  481|      0|    }
  482|      6|    uint8_t load_code = load_method ? LOAD_SUPER_ATTR_METHOD : LOAD_SUPER_ATTR_ATTR;
  ------------------
  |  |  204|      4|#define LOAD_SUPER_ATTR_METHOD                 199
  ------------------
                  uint8_t load_code = load_method ? LOAD_SUPER_ATTR_METHOD : LOAD_SUPER_ATTR_ATTR;
  ------------------
  |  |  203|      8|#define LOAD_SUPER_ATTR_ATTR                   198
  ------------------
  |  Branch (482:25): [True: 4, False: 2]
  ------------------
  483|      6|    specialize(instr, load_code);
  484|      6|    return;
  485|      0|fail:
  486|      0|    unspecialize(instr);
  487|      0|}
_Py_Specialize_LoadAttr:
  995|    472|{
  996|    472|    PyObject *owner = PyStackRef_AsPyObjectBorrow(owner_st);
  997|       |
  998|    472|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (998:5): [True: 472, Folded]
  ------------------
  999|    472|    assert(_PyOpcode_Caches[LOAD_ATTR] == INLINE_CACHE_ENTRIES_LOAD_ATTR);
  ------------------
  |  Branch (999:5): [True: 472, False: 0]
  ------------------
 1000|    472|    PyTypeObject *type = Py_TYPE(owner);
  ------------------
  |  |  213|    472|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    472|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    472|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1001|    472|    bool fail;
 1002|    472|    if (!_PyType_IsReady(type)) {
  ------------------
  |  Branch (1002:9): [True: 0, False: 472]
  ------------------
 1003|       |        // We *might* not really need this check, but we inherited it from
 1004|       |        // PyObject_GenericGetAttr and friends... and this way we still do the
 1005|       |        // right thing if someone forgets to call PyType_Ready(type):
 1006|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1007|      0|        fail = true;
 1008|      0|    }
 1009|    472|    else if (Py_TYPE(owner)->tp_getattro == PyModule_Type.tp_getattro) {
  ------------------
  |  |  213|    472|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    472|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    472|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1009:14): [True: 162, False: 310]
  ------------------
 1010|    162|        fail = specialize_module_load_attr(owner, instr, name);
 1011|    162|    }
 1012|    310|    else if (PyType_Check(owner)) {
  ------------------
  |  |  766|    310|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    310|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    310|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 58, False: 252]
  |  |  ------------------
  ------------------
 1013|     58|        fail = specialize_class_load_attr(owner, instr, name);
 1014|     58|    }
 1015|    252|    else {
 1016|    252|        fail = specialize_instance_load_attr(owner, instr, name);
 1017|    252|    }
 1018|       |
 1019|    472|    if (fail) {
  ------------------
  |  Branch (1019:9): [True: 72, False: 400]
  ------------------
 1020|     72|        unspecialize(instr);
 1021|     72|    }
 1022|    472|}
_Py_Specialize_StoreAttr:
 1026|    128|{
 1027|    128|    PyObject *owner = PyStackRef_AsPyObjectBorrow(owner_st);
 1028|       |
 1029|    128|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (1029:5): [True: 128, Folded]
  ------------------
 1030|    128|    assert(_PyOpcode_Caches[STORE_ATTR] == INLINE_CACHE_ENTRIES_STORE_ATTR);
  ------------------
  |  Branch (1030:5): [True: 128, False: 0]
  ------------------
 1031|    128|    PyObject *descr = NULL;
 1032|    128|    _PyAttrCache *cache = (_PyAttrCache *)(instr + 1);
 1033|    128|    PyTypeObject *type = Py_TYPE(owner);
  ------------------
  |  |  213|    128|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1034|    128|    if (!_PyType_IsReady(type)) {
  ------------------
  |  Branch (1034:9): [True: 0, False: 128]
  ------------------
 1035|       |        // We *might* not really need this check, but we inherited it from
 1036|       |        // PyObject_GenericSetAttr and friends... and this way we still do the
 1037|       |        // right thing if someone forgets to call PyType_Ready(type):
 1038|      0|        SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1039|      0|        goto fail;
 1040|      0|    }
 1041|    128|    if (PyModule_CheckExact(owner)) {
  ------------------
  |  |   13|    128|#define PyModule_CheckExact(op) Py_IS_TYPE((op), &PyModule_Type)
  |  |  ------------------
  |  |  |  |  215|    128|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    128|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    128|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 16, False: 112]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1042|     16|        SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_OVERRIDDEN);
  ------------------
  |  |   43|     16|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1043|     16|        goto fail;
 1044|     16|    }
 1045|    112|    unsigned int tp_version = 0;
 1046|    112|    DescriptorClassification kind = analyze_descriptor_store(type, name, &descr, &tp_version);
 1047|    112|    if (tp_version == 0) {
  ------------------
  |  Branch (1047:9): [True: 0, False: 112]
  ------------------
 1048|      0|        goto fail;
 1049|      0|    }
 1050|    112|    assert(descr != NULL || kind == ABSENT || kind == GETSET_OVERRIDDEN);
  ------------------
  |  Branch (1050:5): [True: 4, False: 108]
  |  Branch (1050:5): [True: 108, False: 0]
  |  Branch (1050:5): [True: 0, False: 0]
  ------------------
 1051|    112|    switch(kind) {
  ------------------
  |  Branch (1051:12): [True: 112, False: 0]
  ------------------
 1052|      0|        case OVERRIDING:
  ------------------
  |  Branch (1052:9): [True: 0, False: 112]
  ------------------
 1053|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_OVERRIDING_DESCRIPTOR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1054|      0|            goto fail;
 1055|      0|        case METHOD:
  ------------------
  |  Branch (1055:9): [True: 0, False: 112]
  ------------------
 1056|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_METHOD);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1057|      0|            goto fail;
 1058|      2|        case PROPERTY:
  ------------------
  |  Branch (1058:9): [True: 2, False: 110]
  ------------------
 1059|      2|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_PROPERTY);
  ------------------
  |  |   43|      2|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1060|      2|            goto fail;
 1061|      2|        case OBJECT_SLOT:
  ------------------
  |  Branch (1061:9): [True: 2, False: 110]
  ------------------
 1062|      2|        {
 1063|      2|            PyMemberDescrObject *member = (PyMemberDescrObject *)descr;
 1064|      2|            struct PyMemberDef *dmem = member->d_member;
 1065|      2|            Py_ssize_t offset = dmem->offset;
 1066|      2|            if (!PyObject_TypeCheck(owner, member->d_common.d_type)) {
  ------------------
  |  |  378|      2|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1066:17): [True: 0, False: 2]
  ------------------
 1067|      0|                SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1068|      0|                goto fail;
 1069|      0|            }
 1070|      2|            if (dmem->flags & _Py_AFTER_ITEMS) {
  ------------------
  |  |   89|      2|#  define _Py_AFTER_ITEMS      (1 << 4) // For internal use.
  ------------------
  |  Branch (1070:17): [True: 0, False: 2]
  ------------------
 1071|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_SLOT_AFTER_ITEMS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1072|      0|                goto fail;
 1073|      0|            }
 1074|      2|            if (dmem->flags & Py_READONLY) {
  ------------------
  |  |   83|      2|#define Py_READONLY            (1 << 0)
  ------------------
  |  Branch (1074:17): [True: 0, False: 2]
  ------------------
 1075|      0|                SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_READ_ONLY);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1076|      0|                goto fail;
 1077|      0|            }
 1078|      2|            if (offset != (uint16_t)offset) {
  ------------------
  |  Branch (1078:17): [True: 0, False: 2]
  ------------------
 1079|      0|                SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1080|      0|                goto fail;
 1081|      0|            }
 1082|      2|            assert(dmem->type == Py_T_OBJECT_EX || dmem->type == _Py_T_OBJECT);
  ------------------
  |  Branch (1082:13): [True: 2, False: 0]
  |  Branch (1082:13): [True: 0, False: 0]
  ------------------
 1083|      2|            assert(offset > 0);
  ------------------
  |  Branch (1083:13): [True: 2, False: 0]
  ------------------
 1084|      2|            cache->index = (uint16_t)offset;
 1085|      2|            write_u32(cache->version, tp_version);
 1086|      2|            specialize(instr, STORE_ATTR_SLOT);
  ------------------
  |  |  211|      2|#define STORE_ATTR_SLOT                        206
  ------------------
 1087|      2|            goto success;
 1088|      2|        }
 1089|      0|        case DUNDER_CLASS:
  ------------------
  |  Branch (1089:9): [True: 0, False: 112]
  ------------------
 1090|      0|        case OTHER_SLOT:
  ------------------
  |  Branch (1090:9): [True: 0, False: 112]
  ------------------
 1091|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_NON_OBJECT_SLOT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1092|      0|            goto fail;
 1093|      0|        case MUTABLE:
  ------------------
  |  Branch (1093:9): [True: 0, False: 112]
  ------------------
 1094|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_MUTABLE_CLASS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1095|      0|            goto fail;
 1096|      0|        case GETATTRIBUTE_IS_PYTHON_FUNCTION:
  ------------------
  |  Branch (1096:9): [True: 0, False: 112]
  ------------------
 1097|      0|        case GETSET_OVERRIDDEN:
  ------------------
  |  Branch (1097:9): [True: 0, False: 112]
  ------------------
 1098|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_OVERRIDDEN);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1099|      0|            goto fail;
 1100|      0|        case BUILTIN_CLASSMETHOD:
  ------------------
  |  Branch (1100:9): [True: 0, False: 112]
  ------------------
 1101|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_BUILTIN_CLASS_METHOD_OBJ);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1102|      0|            goto fail;
 1103|      0|        case PYTHON_CLASSMETHOD:
  ------------------
  |  Branch (1103:9): [True: 0, False: 112]
  ------------------
 1104|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_CLASS_METHOD_OBJ);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1105|      0|            goto fail;
 1106|      0|        case NON_OVERRIDING:
  ------------------
  |  Branch (1106:9): [True: 0, False: 112]
  ------------------
 1107|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_CLASS_ATTR_DESCRIPTOR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1108|      0|            goto fail;
 1109|      0|        case NON_DESCRIPTOR:
  ------------------
  |  Branch (1109:9): [True: 0, False: 112]
  ------------------
 1110|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_ATTR_CLASS_ATTR_SIMPLE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1111|      0|            goto fail;
 1112|    108|        case ABSENT:
  ------------------
  |  Branch (1112:9): [True: 108, False: 4]
  ------------------
 1113|    108|            if (specialize_dict_access(owner, instr, type, kind, name, tp_version,
  ------------------
  |  Branch (1113:17): [True: 104, False: 4]
  ------------------
 1114|    108|                                       STORE_ATTR, STORE_ATTR_INSTANCE_VALUE,
  ------------------
  |  |  122|    108|#define STORE_ATTR                             109
  ------------------
                                                     STORE_ATTR, STORE_ATTR_INSTANCE_VALUE,
  ------------------
  |  |  210|    108|#define STORE_ATTR_INSTANCE_VALUE              205
  ------------------
 1115|    108|                                       STORE_ATTR_WITH_HINT)) {
  ------------------
  |  |  212|    108|#define STORE_ATTR_WITH_HINT                   207
  ------------------
 1116|    104|                goto success;
 1117|    104|            }
 1118|    112|    }
 1119|     22|fail:
 1120|     22|    Py_XDECREF(descr);
  ------------------
  |  |  524|     22|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     22|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     22|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1121|     22|    unspecialize(instr);
 1122|     22|    return;
 1123|    106|success:
 1124|    106|    Py_XDECREF(descr);
  ------------------
  |  |  524|    106|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    106|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    106|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1125|    106|    return;
 1126|    112|}
_Py_Specialize_LoadGlobal:
 1449|    424|{
 1450|    424|    Py_BEGIN_CRITICAL_SECTION2(globals, builtins);
  ------------------
  |  |   57|    424|    {
  ------------------
 1451|    424|    specialize_load_global_lock_held(globals, builtins, instr, name);
 1452|    424|    Py_END_CRITICAL_SECTION2();
  ------------------
  |  |   61|    424|    }
  ------------------
 1453|    424|}
_Py_Specialize_StoreSubscr:
 1567|     10|{
 1568|     10|    PyObject *container = PyStackRef_AsPyObjectBorrow(container_st);
 1569|     10|    PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
 1570|       |
 1571|     10|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (1571:5): [True: 10, Folded]
  ------------------
 1572|     10|    PyTypeObject *container_type = Py_TYPE(container);
  ------------------
  |  |  213|     10|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1573|     10|    if (container_type == &PyList_Type) {
  ------------------
  |  Branch (1573:9): [True: 0, False: 10]
  ------------------
 1574|      0|        if (PyLong_CheckExact(sub)) {
  ------------------
  |  |   14|      0|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1575|      0|            if (_PyLong_IsNonNegativeCompact((PyLongObject *)sub)
  ------------------
  |  Branch (1575:17): [True: 0, False: 0]
  ------------------
 1576|      0|                && ((PyLongObject *)sub)->long_value.ob_digit[0] < (size_t)PyList_GET_SIZE(container))
  ------------------
  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1576:20): [True: 0, False: 0]
  ------------------
 1577|      0|            {
 1578|      0|                specialize(instr, STORE_SUBSCR_LIST_INT);
  ------------------
  |  |  214|      0|#define STORE_SUBSCR_LIST_INT                  209
  ------------------
 1579|      0|                return;
 1580|      0|            }
 1581|      0|            else {
 1582|      0|                SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1583|      0|                unspecialize(instr);
 1584|      0|                return;
 1585|      0|            }
 1586|      0|        }
 1587|      0|        else if (PySlice_Check(sub)) {
  ------------------
  |  |   22|      0|#define PySlice_Check(op) Py_IS_TYPE((op), &PySlice_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1588|      0|            SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_SUBSCR_LIST_SLICE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1589|      0|            unspecialize(instr);
 1590|      0|            return;
 1591|      0|        }
 1592|      0|        else {
 1593|      0|            SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1594|      0|            unspecialize(instr);
 1595|      0|            return;
 1596|      0|        }
 1597|      0|    }
 1598|     10|    if (container_type->tp_as_mapping != NULL &&
  ------------------
  |  Branch (1598:9): [True: 10, False: 0]
  ------------------
 1599|     10|        container_type->tp_as_mapping->mp_ass_subscript == _PyDict_StoreSubscript)
  ------------------
  |  Branch (1599:9): [True: 10, False: 0]
  ------------------
 1600|     10|    {
 1601|     10|        specialize(instr, STORE_SUBSCR_DICT);
  ------------------
  |  |  213|     10|#define STORE_SUBSCR_DICT                      208
  ------------------
 1602|     10|        return;
 1603|     10|    }
 1604|      0|    SPECIALIZATION_FAIL(STORE_SUBSCR, store_subscr_fail_kind(container, sub));
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1605|      0|    unspecialize(instr);
 1606|      0|}
_Py_Specialize_Call:
 1858|    408|{
 1859|    408|    PyObject *callable = PyStackRef_AsPyObjectBorrow(callable_st);
 1860|       |
 1861|    408|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (1861:5): [True: 408, Folded]
  ------------------
 1862|    408|    assert(_PyOpcode_Caches[CALL] == INLINE_CACHE_ENTRIES_CALL);
  ------------------
  |  Branch (1862:5): [True: 408, False: 0]
  ------------------
 1863|    408|    assert(_Py_OPCODE(*instr) != INSTRUMENTED_CALL);
  ------------------
  |  Branch (1863:5): [True: 408, False: 0]
  ------------------
 1864|    408|    int fail;
 1865|    408|    if (PyCFunction_CheckExact(callable)) {
  ------------------
  |  |   16|    408|#define PyCFunction_CheckExact(op) Py_IS_TYPE((op), &PyCFunction_Type)
  |  |  ------------------
  |  |  |  |  215|    408|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    408|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    408|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 132, False: 276]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1866|    132|        fail = specialize_c_call(callable, instr, nargs);
 1867|    132|    }
 1868|    276|    else if (PyFunction_Check(callable)) {
  ------------------
  |  |   68|    276|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|    276|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    276|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    276|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 126, False: 150]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1869|    126|        fail = specialize_py_call((PyFunctionObject *)callable, instr, nargs, false);
 1870|    126|    }
 1871|    150|    else if (PyType_Check(callable)) {
  ------------------
  |  |  766|    150|#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    150|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    150|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (766:28): [True: 40, False: 110]
  |  |  ------------------
  ------------------
 1872|     40|        fail = specialize_class_call(callable, instr, nargs);
 1873|     40|    }
 1874|    110|    else if (Py_IS_TYPE(callable, &PyMethodDescr_Type)) {
  ------------------
  |  |  215|    110|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|    110|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    110|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 92, False: 18]
  |  |  ------------------
  ------------------
 1875|     92|        PyObject *self_or_null = PyStackRef_AsPyObjectBorrow(self_or_null_st);
 1876|     92|        fail = specialize_method_descriptor((PyMethodDescrObject *)callable,
 1877|     92|                                            self_or_null, instr, nargs);
 1878|     92|    }
 1879|     18|    else if (PyMethod_Check(callable)) {
  ------------------
  |  |   22|     18|#define PyMethod_Check(op) Py_IS_TYPE((op), &PyMethod_Type)
  |  |  ------------------
  |  |  |  |  215|     18|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 12, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1880|     12|        PyObject *func = ((PyMethodObject *)callable)->im_func;
 1881|     12|        if (PyFunction_Check(func)) {
  ------------------
  |  |   68|     12|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1882|     12|            fail = specialize_py_call((PyFunctionObject *)func, instr, nargs, true);
 1883|     12|        }
 1884|      0|        else {
 1885|      0|            SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_BOUND_METHOD);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1886|      0|            fail = -1;
 1887|      0|        }
 1888|     12|    }
 1889|      6|    else {
 1890|      6|        specialize(instr, CALL_NON_PY_GENERAL);
  ------------------
  |  |  168|      6|#define CALL_NON_PY_GENERAL                    163
  ------------------
 1891|      6|        fail = 0;
 1892|      6|    }
 1893|    408|    if (fail) {
  ------------------
  |  Branch (1893:9): [True: 0, False: 408]
  ------------------
 1894|      0|        unspecialize(instr);
 1895|      0|    }
 1896|    408|}
_Py_Specialize_CallKw:
 1900|     16|{
 1901|     16|    PyObject *callable = PyStackRef_AsPyObjectBorrow(callable_st);
 1902|       |
 1903|     16|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (1903:5): [True: 16, Folded]
  ------------------
 1904|     16|    assert(_PyOpcode_Caches[CALL_KW] == INLINE_CACHE_ENTRIES_CALL_KW);
  ------------------
  |  Branch (1904:5): [True: 16, False: 0]
  ------------------
 1905|     16|    assert(_Py_OPCODE(*instr) != INSTRUMENTED_CALL_KW);
  ------------------
  |  Branch (1905:5): [True: 16, False: 0]
  ------------------
 1906|     16|    int fail;
 1907|     16|    if (PyFunction_Check(callable)) {
  ------------------
  |  |   68|     16|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|     16|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 6, False: 10]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1908|      6|        fail = specialize_py_call_kw((PyFunctionObject *)callable, instr, nargs, false);
 1909|      6|    }
 1910|     10|    else if (PyMethod_Check(callable)) {
  ------------------
  |  |   22|     10|#define PyMethod_Check(op) Py_IS_TYPE((op), &PyMethod_Type)
  |  |  ------------------
  |  |  |  |  215|     10|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 10]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1911|      0|        PyObject *func = ((PyMethodObject *)callable)->im_func;
 1912|      0|        if (PyFunction_Check(func)) {
  ------------------
  |  |   68|      0|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1913|      0|            fail = specialize_py_call_kw((PyFunctionObject *)func, instr, nargs, true);
 1914|      0|        }
 1915|      0|        else {
 1916|      0|            SPECIALIZATION_FAIL(CALL_KW, SPEC_FAIL_CALL_BOUND_METHOD);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1917|      0|            fail = -1;
 1918|      0|        }
 1919|      0|    }
 1920|     10|    else {
 1921|     10|        specialize(instr, CALL_KW_NON_PY);
  ------------------
  |  |  160|     10|#define CALL_KW_NON_PY                         155
  ------------------
 1922|     10|        fail = 0;
 1923|     10|    }
 1924|     16|    if (fail) {
  ------------------
  |  Branch (1924:9): [True: 0, False: 16]
  ------------------
 1925|      0|        unspecialize(instr);
 1926|      0|    }
 1927|     16|}
_Py_Specialize_BinaryOp:
 2326|     50|{
 2327|     50|    PyObject *lhs = PyStackRef_AsPyObjectBorrow(lhs_st);
 2328|     50|    PyObject *rhs = PyStackRef_AsPyObjectBorrow(rhs_st);
 2329|     50|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2329:5): [True: 50, Folded]
  ------------------
 2330|     50|    assert(_PyOpcode_Caches[BINARY_OP] == INLINE_CACHE_ENTRIES_BINARY_OP);
  ------------------
  |  Branch (2330:5): [True: 50, False: 0]
  ------------------
 2331|       |
 2332|     50|    _PyBinaryOpCache *cache = (_PyBinaryOpCache *)(instr + 1);
 2333|     50|    if (instr->op.code == BINARY_OP_EXTEND) {
  ------------------
  |  |  137|     50|#define BINARY_OP_EXTEND                       132
  ------------------
  |  Branch (2333:9): [True: 0, False: 50]
  ------------------
 2334|      0|        write_ptr(cache->external_cache, NULL);
 2335|      0|    }
 2336|       |
 2337|     50|    switch (oparg) {
  ------------------
  |  Branch (2337:13): [True: 46, False: 4]
  ------------------
 2338|     10|        case NB_ADD:
  ------------------
  |  |   10|     10|#define NB_ADD                                   0
  ------------------
  |  Branch (2338:9): [True: 10, False: 40]
  ------------------
 2339|     14|        case NB_INPLACE_ADD:
  ------------------
  |  |   23|     14|#define NB_INPLACE_ADD                          13
  ------------------
  |  Branch (2339:9): [True: 4, False: 46]
  ------------------
 2340|     14|            if (!Py_IS_TYPE(lhs, Py_TYPE(rhs))) {
  ------------------
  |  |  215|     14|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2340:17): [True: 0, False: 14]
  ------------------
 2341|      0|                break;
 2342|      0|            }
 2343|     14|            if (PyUnicode_CheckExact(lhs)) {
  ------------------
  |  |  104|     14|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     14|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 10, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2344|     10|                _Py_CODEUNIT next = instr[INLINE_CACHE_ENTRIES_BINARY_OP + 1];
  ------------------
  |  |   81|     10|#define INLINE_CACHE_ENTRIES_BINARY_OP CACHE_ENTRIES(_PyBinaryOpCache)
  |  |  ------------------
  |  |  |  |   65|     10|#define CACHE_ENTRIES(cache) (sizeof(cache)/sizeof(_Py_CODEUNIT))
  |  |  ------------------
  ------------------
 2345|     10|                bool to_store = (next.op.code == STORE_FAST);
  ------------------
  |  |  124|     10|#define STORE_FAST                             111
  ------------------
 2346|     10|                if (to_store && PyStackRef_AsPyObjectBorrow(locals[next.op.arg]) == lhs) {
  ------------------
  |  Branch (2346:21): [True: 2, False: 8]
  |  Branch (2346:33): [True: 2, False: 0]
  ------------------
 2347|      2|                    specialize(instr, BINARY_OP_INPLACE_ADD_UNICODE);
  ------------------
  |  |   16|      2|#define BINARY_OP_INPLACE_ADD_UNICODE            3
  ------------------
 2348|      2|                    return;
 2349|      2|                }
 2350|      8|                specialize(instr, BINARY_OP_ADD_UNICODE);
  ------------------
  |  |  136|      8|#define BINARY_OP_ADD_UNICODE                  131
  ------------------
 2351|      8|                return;
 2352|     10|            }
 2353|      4|            if (_PyLong_CheckExactAndCompact(lhs) && _PyLong_CheckExactAndCompact(rhs)) {
  ------------------
  |  Branch (2353:17): [True: 4, False: 0]
  |  Branch (2353:54): [True: 4, False: 0]
  ------------------
 2354|      4|                specialize(instr, BINARY_OP_ADD_INT);
  ------------------
  |  |  135|      4|#define BINARY_OP_ADD_INT                      130
  ------------------
 2355|      4|                return;
 2356|      4|            }
 2357|      0|            if (PyFloat_CheckExact(lhs)) {
  ------------------
  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2358|      0|                specialize(instr, BINARY_OP_ADD_FLOAT);
  ------------------
  |  |  134|      0|#define BINARY_OP_ADD_FLOAT                    129
  ------------------
 2359|      0|                return;
 2360|      0|            }
 2361|      0|            break;
 2362|      2|        case NB_MULTIPLY:
  ------------------
  |  |   15|      2|#define NB_MULTIPLY                              5
  ------------------
  |  Branch (2362:9): [True: 2, False: 48]
  ------------------
 2363|      2|        case NB_INPLACE_MULTIPLY:
  ------------------
  |  |   28|      2|#define NB_INPLACE_MULTIPLY                     18
  ------------------
  |  Branch (2363:9): [True: 0, False: 50]
  ------------------
 2364|      2|            if (!Py_IS_TYPE(lhs, Py_TYPE(rhs))) {
  ------------------
  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2364:17): [True: 2, False: 0]
  ------------------
 2365|      2|                break;
 2366|      2|            }
 2367|      0|            if (_PyLong_CheckExactAndCompact(lhs) && _PyLong_CheckExactAndCompact(rhs)) {
  ------------------
  |  Branch (2367:17): [True: 0, False: 0]
  |  Branch (2367:54): [True: 0, False: 0]
  ------------------
 2368|      0|                specialize(instr, BINARY_OP_MULTIPLY_INT);
  ------------------
  |  |  139|      0|#define BINARY_OP_MULTIPLY_INT                 134
  ------------------
 2369|      0|                return;
 2370|      0|            }
 2371|      0|            if (PyFloat_CheckExact(lhs)) {
  ------------------
  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2372|      0|                specialize(instr, BINARY_OP_MULTIPLY_FLOAT);
  ------------------
  |  |  138|      0|#define BINARY_OP_MULTIPLY_FLOAT               133
  ------------------
 2373|      0|                return;
 2374|      0|            }
 2375|      0|            break;
 2376|      0|        case NB_SUBTRACT:
  ------------------
  |  |   20|      0|#define NB_SUBTRACT                             10
  ------------------
  |  Branch (2376:9): [True: 0, False: 50]
  ------------------
 2377|      0|        case NB_INPLACE_SUBTRACT:
  ------------------
  |  |   33|      0|#define NB_INPLACE_SUBTRACT                     23
  ------------------
  |  Branch (2377:9): [True: 0, False: 50]
  ------------------
 2378|      0|            if (!Py_IS_TYPE(lhs, Py_TYPE(rhs))) {
  ------------------
  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2378:17): [True: 0, False: 0]
  ------------------
 2379|      0|                break;
 2380|      0|            }
 2381|      0|            if (_PyLong_CheckExactAndCompact(lhs) && _PyLong_CheckExactAndCompact(rhs)) {
  ------------------
  |  Branch (2381:17): [True: 0, False: 0]
  |  Branch (2381:54): [True: 0, False: 0]
  ------------------
 2382|      0|                specialize(instr, BINARY_OP_SUBTRACT_INT);
  ------------------
  |  |  148|      0|#define BINARY_OP_SUBTRACT_INT                 143
  ------------------
 2383|      0|                return;
 2384|      0|            }
 2385|      0|            if (PyFloat_CheckExact(lhs)) {
  ------------------
  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2386|      0|                specialize(instr, BINARY_OP_SUBTRACT_FLOAT);
  ------------------
  |  |  147|      0|#define BINARY_OP_SUBTRACT_FLOAT               142
  ------------------
 2387|      0|                return;
 2388|      0|            }
 2389|      0|            break;
 2390|     30|        case NB_SUBSCR:
  ------------------
  |  |   36|     30|#define NB_SUBSCR                               26
  ------------------
  |  Branch (2390:9): [True: 30, False: 20]
  ------------------
 2391|     30|            if (PyLong_CheckExact(rhs) && _PyLong_IsNonNegativeCompact((PyLongObject *)rhs)) {
  ------------------
  |  |   14|     30|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|     60|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     30|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     30|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 12, False: 18]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2391:43): [True: 10, False: 2]
  ------------------
 2392|     10|                if (PyList_CheckExact(lhs)) {
  ------------------
  |  |   26|     10|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|     10|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 10]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2393|      0|                    specialize(instr, BINARY_OP_SUBSCR_LIST_INT);
  ------------------
  |  |  142|      0|#define BINARY_OP_SUBSCR_LIST_INT              137
  ------------------
 2394|      0|                    return;
 2395|      0|                }
 2396|     10|                if (PyTuple_CheckExact(lhs)) {
  ------------------
  |  |   28|     10|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|     10|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 8, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2397|      8|                    specialize(instr, BINARY_OP_SUBSCR_TUPLE_INT);
  ------------------
  |  |  145|      8|#define BINARY_OP_SUBSCR_TUPLE_INT             140
  ------------------
 2398|      8|                    return;
 2399|      8|                }
 2400|      2|                if (PyUnicode_CheckExact(lhs) && _PyLong_IsNonNegativeCompact((PyLongObject*)rhs)) {
  ------------------
  |  |  104|      2|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2400:50): [True: 2, False: 0]
  ------------------
 2401|      2|                    if (PyUnicode_IS_COMPACT_ASCII(lhs)) {
  ------------------
  |  |  241|      2|#define PyUnicode_IS_COMPACT_ASCII(op) PyUnicode_IS_COMPACT_ASCII(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (241:40): [True: 2, False: 0]
  |  |  ------------------
  ------------------
 2402|      2|                        specialize(instr, BINARY_OP_SUBSCR_STR_INT);
  ------------------
  |  |  144|      2|#define BINARY_OP_SUBSCR_STR_INT               139
  ------------------
 2403|      2|                        return;
 2404|      2|                    } else {
 2405|      0|                        specialize(instr, BINARY_OP_SUBSCR_USTR_INT);
  ------------------
  |  |  146|      0|#define BINARY_OP_SUBSCR_USTR_INT              141
  ------------------
 2406|      0|                        return;
 2407|      0|                    }
 2408|      2|                }
 2409|      2|            }
 2410|     20|            if (Py_TYPE(lhs)->tp_as_mapping != NULL &&
  ------------------
  |  |  213|     20|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2410:17): [True: 20, False: 0]
  ------------------
 2411|     20|                Py_TYPE(lhs)->tp_as_mapping->mp_subscript == _PyDict_Subscript)
  ------------------
  |  |  213|     20|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2411:17): [True: 14, False: 6]
  ------------------
 2412|     14|            {
 2413|     14|                specialize(instr, BINARY_OP_SUBSCR_DICT);
  ------------------
  |  |  140|     14|#define BINARY_OP_SUBSCR_DICT                  135
  ------------------
 2414|     14|                return;
 2415|     14|            }
 2416|      6|            if (PyList_CheckExact(lhs) && PySlice_Check(rhs)) {
  ------------------
  |  |   26|      6|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          if (PyList_CheckExact(lhs) && PySlice_Check(rhs)) {
  ------------------
  |  |   22|      0|#define PySlice_Check(op) Py_IS_TYPE((op), &PySlice_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2417|      0|                specialize(instr, BINARY_OP_SUBSCR_LIST_SLICE);
  ------------------
  |  |  143|      0|#define BINARY_OP_SUBSCR_LIST_SLICE            138
  ------------------
 2418|      0|                return;
 2419|      0|            }
 2420|      6|            unsigned int tp_version;
 2421|      6|            PyTypeObject *container_type = Py_TYPE(lhs);
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2422|      6|            PyObject *descriptor = _PyType_LookupRefAndVersion(container_type, &_Py_ID(__getitem__), &tp_version);
  ------------------
  |  |  917|      6|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      6|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      6|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2423|      6|            if (descriptor && Py_TYPE(descriptor) == &PyFunction_Type &&
  ------------------
  |  |  213|      6|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2423:17): [True: 6, False: 0]
  |  Branch (2423:31): [True: 0, False: 6]
  ------------------
 2424|      0|                container_type->tp_flags & Py_TPFLAGS_HEAPTYPE)
  ------------------
  |  |  503|      0|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2424:17): [True: 0, False: 0]
  ------------------
 2425|      0|            {
 2426|      0|                PyFunctionObject *func = (PyFunctionObject *)descriptor;
 2427|      0|                PyCodeObject *fcode = (PyCodeObject *)func->func_code;
 2428|      0|                int kind = function_kind(fcode);
 2429|      0|                PyHeapTypeObject *ht = (PyHeapTypeObject *)container_type;
 2430|      0|                if (kind == SIMPLE_FUNCTION &&
  ------------------
  |  |  124|      0|#define SIMPLE_FUNCTION 0
  ------------------
  |  Branch (2430:21): [True: 0, False: 0]
  ------------------
 2431|      0|                    fcode->co_argcount == 2 &&
  ------------------
  |  Branch (2431:21): [True: 0, False: 0]
  ------------------
 2432|      0|                    _PyInterpreterState_IsSpecializationEnabled(_PyInterpreterState_GET()) && /* Don't specialize if PEP 523 is active */
  ------------------
  |  Branch (2432:21): [True: 0, False: 0]
  ------------------
 2433|      0|                    _PyType_CacheGetItemForSpecialization(ht, descriptor, (uint32_t)tp_version))
  ------------------
  |  Branch (2433:21): [True: 0, False: 0]
  ------------------
 2434|      0|                {
 2435|      0|                    specialize(instr, BINARY_OP_SUBSCR_GETITEM);
  ------------------
  |  |  141|      0|#define BINARY_OP_SUBSCR_GETITEM               136
  ------------------
 2436|      0|                    Py_DECREF(descriptor);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2437|      0|                    return;
 2438|      0|                }
 2439|      0|            }
 2440|      6|            Py_XDECREF(descriptor);
  ------------------
  |  |  524|      6|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2441|      6|            break;
 2442|     50|    }
 2443|       |
 2444|     12|    _PyBinaryOpSpecializationDescr *descr;
 2445|     12|    if (binary_op_extended_specialization(lhs, rhs, oparg, &descr)) {
  ------------------
  |  Branch (2445:9): [True: 6, False: 6]
  ------------------
 2446|      6|        specialize(instr, BINARY_OP_EXTEND);
  ------------------
  |  |  137|      6|#define BINARY_OP_EXTEND                       132
  ------------------
 2447|      6|        write_ptr(cache->external_cache, (void*)descr);
 2448|      6|        return;
 2449|      6|    }
 2450|       |
 2451|      6|    SPECIALIZATION_FAIL(BINARY_OP, binary_op_fail_kind(oparg, lhs, rhs));
  ------------------
  |  |   43|      6|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2452|      6|    unspecialize(instr);
 2453|      6|    return;
 2454|     12|}
_Py_Specialize_CompareOp:
 2495|     36|{
 2496|     36|    PyObject *lhs = PyStackRef_AsPyObjectBorrow(lhs_st);
 2497|     36|    PyObject *rhs = PyStackRef_AsPyObjectBorrow(rhs_st);
 2498|     36|    uint8_t specialized_op;
 2499|       |
 2500|     36|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2500:5): [True: 36, Folded]
  ------------------
 2501|     36|    assert(_PyOpcode_Caches[COMPARE_OP] == INLINE_CACHE_ENTRIES_COMPARE_OP);
  ------------------
  |  Branch (2501:5): [True: 36, False: 0]
  ------------------
 2502|       |    // All of these specializations compute boolean values, so they're all valid
 2503|       |    // regardless of the fifth-lowest oparg bit.
 2504|     36|    if (Py_TYPE(lhs) != Py_TYPE(rhs)) {
  ------------------
  |  |  213|     36|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (Py_TYPE(lhs) != Py_TYPE(rhs)) {
  ------------------
  |  |  213|     36|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2504:9): [True: 2, False: 34]
  ------------------
 2505|      2|        SPECIALIZATION_FAIL(COMPARE_OP, compare_op_fail_kind(lhs, rhs));
  ------------------
  |  |   43|      2|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2506|      2|        goto failure;
 2507|      2|    }
 2508|     34|    if (PyFloat_CheckExact(lhs)) {
  ------------------
  |  |   17|     34|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  215|     34|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 34]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2509|      0|        specialized_op = COMPARE_OP_FLOAT;
  ------------------
  |  |  174|      0|#define COMPARE_OP_FLOAT                       169
  ------------------
 2510|      0|        goto success;
 2511|      0|    }
 2512|     34|    if (PyLong_CheckExact(lhs)) {
  ------------------
  |  |   14|     34|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|     34|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 16, False: 18]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2513|     16|        if (_PyLong_IsCompact((PyLongObject *)lhs) && _PyLong_IsCompact((PyLongObject *)rhs)) {
  ------------------
  |  Branch (2513:13): [True: 10, False: 6]
  |  Branch (2513:55): [True: 10, False: 0]
  ------------------
 2514|     10|            specialized_op = COMPARE_OP_INT;
  ------------------
  |  |  175|     10|#define COMPARE_OP_INT                         170
  ------------------
 2515|     10|            goto success;
 2516|     10|        }
 2517|      6|        else {
 2518|      6|            SPECIALIZATION_FAIL(COMPARE_OP, SPEC_FAIL_COMPARE_OP_BIG_INT);
  ------------------
  |  |   43|      6|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2519|      6|            goto failure;
 2520|      6|        }
 2521|     16|    }
 2522|     18|    if (PyUnicode_CheckExact(lhs)) {
  ------------------
  |  |  104|     18|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     18|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     18|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     18|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 14, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2523|     14|        int cmp = oparg >> 5;
 2524|     14|        if (cmp != Py_EQ && cmp != Py_NE) {
  ------------------
  |  |  654|     28|#define Py_EQ 2
  ------------------
                      if (cmp != Py_EQ && cmp != Py_NE) {
  ------------------
  |  |  655|      6|#define Py_NE 3
  ------------------
  |  Branch (2524:13): [True: 6, False: 8]
  |  Branch (2524:29): [True: 0, False: 6]
  ------------------
 2525|      0|            SPECIALIZATION_FAIL(COMPARE_OP, SPEC_FAIL_COMPARE_OP_STRING);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2526|      0|            goto failure;
 2527|      0|        }
 2528|     14|        else {
 2529|     14|            specialized_op = COMPARE_OP_STR;
  ------------------
  |  |  176|     14|#define COMPARE_OP_STR                         171
  ------------------
 2530|     14|            goto success;
 2531|     14|        }
 2532|     14|    }
 2533|      4|    SPECIALIZATION_FAIL(COMPARE_OP, compare_op_fail_kind(lhs, rhs));
  ------------------
  |  |   43|      4|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2534|     12|failure:
 2535|     12|    unspecialize(instr);
 2536|     12|    return;
 2537|     24|success:
 2538|     24|    specialize(instr, specialized_op);
 2539|     24|}
_Py_Specialize_UnpackSequence:
 2557|     14|{
 2558|     14|    PyObject *seq = PyStackRef_AsPyObjectBorrow(seq_st);
 2559|       |
 2560|     14|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2560:5): [True: 14, Folded]
  ------------------
 2561|     14|    assert(_PyOpcode_Caches[UNPACK_SEQUENCE] ==
  ------------------
  |  Branch (2561:5): [True: 14, False: 0]
  ------------------
 2562|     14|           INLINE_CACHE_ENTRIES_UNPACK_SEQUENCE);
 2563|     14|    if (PyTuple_CheckExact(seq)) {
  ------------------
  |  |   28|     14|#define PyTuple_CheckExact(op) Py_IS_TYPE((op), &PyTuple_Type)
  |  |  ------------------
  |  |  |  |  215|     14|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 14, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2564|     14|        if (PyTuple_GET_SIZE(seq) != oparg) {
  ------------------
  |  |   27|     14|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2564:13): [True: 0, False: 14]
  ------------------
 2565|      0|            SPECIALIZATION_FAIL(UNPACK_SEQUENCE, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2566|      0|            unspecialize(instr);
 2567|      0|            return;
 2568|      0|        }
 2569|     14|        if (PyTuple_GET_SIZE(seq) == 2) {
  ------------------
  |  |   27|     14|#define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     14|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     14|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2569:13): [True: 12, False: 2]
  ------------------
 2570|     12|            specialize(instr, UNPACK_SEQUENCE_TWO_TUPLE);
  ------------------
  |  |  223|     12|#define UNPACK_SEQUENCE_TWO_TUPLE              218
  ------------------
 2571|     12|            return;
 2572|     12|        }
 2573|      2|        specialize(instr, UNPACK_SEQUENCE_TUPLE);
  ------------------
  |  |  222|      2|#define UNPACK_SEQUENCE_TUPLE                  217
  ------------------
 2574|      2|        return;
 2575|     14|    }
 2576|      0|    if (PyList_CheckExact(seq)) {
  ------------------
  |  |   26|      0|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2577|      0|        if (PyList_GET_SIZE(seq) != oparg) {
  ------------------
  |  |   38|      0|#define PyList_GET_SIZE(op) PyList_GET_SIZE(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2577:13): [True: 0, False: 0]
  ------------------
 2578|      0|            SPECIALIZATION_FAIL(UNPACK_SEQUENCE, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2579|      0|            unspecialize(instr);
 2580|      0|            return;
 2581|      0|        }
 2582|      0|        specialize(instr, UNPACK_SEQUENCE_LIST);
  ------------------
  |  |  221|      0|#define UNPACK_SEQUENCE_LIST                   216
  ------------------
 2583|      0|        return;
 2584|      0|    }
 2585|      0|    SPECIALIZATION_FAIL(UNPACK_SEQUENCE, unpack_sequence_fail_kind(seq));
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2586|      0|    unspecialize(instr);
 2587|      0|}
_Py_Specialize_ForIter:
 2664|     70|{
 2665|     70|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2665:5): [True: 70, Folded]
  ------------------
 2666|     70|    assert(_PyOpcode_Caches[FOR_ITER] == INLINE_CACHE_ENTRIES_FOR_ITER);
  ------------------
  |  Branch (2666:5): [True: 70, False: 0]
  ------------------
 2667|     70|    PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
 2668|     70|    PyTypeObject *tp = Py_TYPE(iter_o);
  ------------------
  |  |  213|     70|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     70|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     70|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2669|       |
 2670|     70|    if (PyStackRef_IsNull(null_or_index)) {
  ------------------
  |  |  470|     70|#define PyStackRef_IsNull(ref) ((ref).bits == PyStackRef_NULL_BITS)
  |  |  ------------------
  |  |  |  |  467|     70|#define PyStackRef_NULL_BITS Py_TAG_REFCNT
  |  |  |  |  ------------------
  |  |  |  |  |  |   55|     70|#define Py_TAG_REFCNT 1
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (470:32): [True: 10, False: 60]
  |  |  ------------------
  ------------------
 2671|     10|        if (tp == &PyRangeIter_Type) {
  ------------------
  |  Branch (2671:13): [True: 2, False: 8]
  ------------------
 2672|       |#ifdef Py_GIL_DISABLED
 2673|       |            // Only specialize for uniquely referenced iterators, so that we know
 2674|       |            // they're only referenced by this one thread. This is more limiting
 2675|       |            // than we need (even `it = iter(mylist); for item in it:` won't get
 2676|       |            // specialized) but we don't have a way to check whether we're the only
 2677|       |            // _thread_ who has access to the object.
 2678|       |            if (!_PyObject_IsUniquelyReferenced(iter_o)) {
 2679|       |                goto failure;
 2680|       |            }
 2681|       |#endif
 2682|      2|            specialize(instr, FOR_ITER_RANGE);
  ------------------
  |  |  181|      2|#define FOR_ITER_RANGE                         176
  ------------------
 2683|      2|            return;
 2684|      2|        }
 2685|      8|        else if (tp == &PyGen_Type && oparg <= SHRT_MAX) {
  ------------------
  |  Branch (2685:18): [True: 4, False: 4]
  |  Branch (2685:39): [True: 4, False: 0]
  ------------------
 2686|      4|            assert(instr[oparg + INLINE_CACHE_ENTRIES_FOR_ITER + 1].op.code == END_FOR  ||
  ------------------
  |  Branch (2686:13): [True: 4, False: 0]
  |  Branch (2686:13): [True: 0, False: 0]
  ------------------
 2687|      4|                instr[oparg + INLINE_CACHE_ENTRIES_FOR_ITER + 1].op.code == INSTRUMENTED_END_FOR
 2688|      4|            );
 2689|       |            /* Don't specialize if PEP 523 is active */
 2690|      4|            if (!_PyInterpreterState_IsSpecializationEnabled(_PyInterpreterState_GET())) {
  ------------------
  |  Branch (2690:17): [True: 0, False: 4]
  ------------------
 2691|      0|                goto failure;
 2692|      0|            }
 2693|      4|            specialize(instr, FOR_ITER_GEN);
  ------------------
  |  |  179|      4|#define FOR_ITER_GEN                           174
  ------------------
 2694|      4|            return;
 2695|      4|        }
 2696|     10|    }
 2697|     60|    else {
 2698|     60|        if (tp->_tp_iteritem != NULL) {
  ------------------
  |  Branch (2698:13): [True: 60, False: 0]
  ------------------
 2699|     60|            if (tp == &PyList_Type) {
  ------------------
  |  Branch (2699:17): [True: 30, False: 30]
  ------------------
 2700|       |    #ifdef Py_GIL_DISABLED
 2701|       |                // Only specialize for lists owned by this thread or shared
 2702|       |                if (!_Py_IsOwnedByCurrentThread(iter_o) && !_PyObject_GC_IS_SHARED(iter_o)) {
 2703|       |                    goto failure;
 2704|       |                }
 2705|       |    #endif
 2706|     30|                specialize(instr, FOR_ITER_LIST);
  ------------------
  |  |  180|     30|#define FOR_ITER_LIST                          175
  ------------------
 2707|     30|                return;
 2708|     30|            }
 2709|     30|            else if (tp == &PyTuple_Type) {
  ------------------
  |  Branch (2709:22): [True: 26, False: 4]
  ------------------
 2710|     26|                specialize(instr, FOR_ITER_TUPLE);
  ------------------
  |  |  182|     26|#define FOR_ITER_TUPLE                         177
  ------------------
 2711|     26|                return;
 2712|     26|            }
 2713|     60|        }
 2714|      4|        specialize(instr, FOR_ITER_VIRTUAL);
  ------------------
  |  |  183|      4|#define FOR_ITER_VIRTUAL                       178
  ------------------
 2715|      4|        return;
 2716|     60|    }
 2717|      4|failure:
 2718|      4|    SPECIALIZATION_FAIL(FOR_ITER,
  ------------------
  |  |   43|      4|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2719|      4|                        _PySpecialization_ClassifyIterator(iter_o));
 2720|      4|    unspecialize(instr);
 2721|      4|}
_Py_Specialize_CallFunctionEx:
 2756|      8|{
 2757|      8|    PyObject *func = PyStackRef_AsPyObjectBorrow(func_st);
 2758|       |
 2759|      8|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2759:5): [True: 8, Folded]
  ------------------
 2760|      8|    assert(_PyOpcode_Caches[CALL_FUNCTION_EX] == INLINE_CACHE_ENTRIES_CALL_FUNCTION_EX);
  ------------------
  |  Branch (2760:5): [True: 8, False: 0]
  ------------------
 2761|       |
 2762|      8|    if (Py_TYPE(func) == &PyFunction_Type &&
  ------------------
  |  |  213|      8|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2762:9): [True: 2, False: 6]
  ------------------
 2763|      2|        ((PyFunctionObject *)func)->vectorcall == _PyFunction_Vectorcall) {
  ------------------
  |  Branch (2763:9): [True: 2, False: 0]
  ------------------
 2764|      2|        if (!_PyInterpreterState_IsSpecializationEnabled(_PyInterpreterState_GET())) {
  ------------------
  |  Branch (2764:13): [True: 0, False: 2]
  ------------------
 2765|      0|            goto failure;
 2766|      0|        }
 2767|      2|        specialize(instr, CALL_EX_PY);
  ------------------
  |  |  157|      2|#define CALL_EX_PY                             152
  ------------------
 2768|      2|        return;
 2769|      2|    }
 2770|      6|    specialize(instr, CALL_EX_NON_PY_GENERAL);
  ------------------
  |  |  156|      6|#define CALL_EX_NON_PY_GENERAL                 151
  ------------------
 2771|      6|    return;
 2772|      0|failure:
 2773|      0|    unspecialize(instr);
 2774|      0|}
_Py_Specialize_ToBool:
 2825|    132|{
 2826|    132|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2826:5): [True: 132, Folded]
  ------------------
 2827|    132|    assert(_PyOpcode_Caches[TO_BOOL] == INLINE_CACHE_ENTRIES_TO_BOOL);
  ------------------
  |  Branch (2827:5): [True: 132, False: 0]
  ------------------
 2828|    132|    _PyToBoolCache *cache = (_PyToBoolCache *)(instr + 1);
 2829|    132|    PyObject *value = PyStackRef_AsPyObjectBorrow(value_o);
 2830|    132|    uint8_t specialized_op;
 2831|    132|    if (PyBool_Check(value)) {
  ------------------
  |  |   12|    132|#define PyBool_Check(x) Py_IS_TYPE((x), &PyBool_Type)
  |  |  ------------------
  |  |  |  |  215|    132|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    132|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 66, False: 66]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2832|     66|        specialized_op = TO_BOOL_BOOL;
  ------------------
  |  |  216|     66|#define TO_BOOL_BOOL                           211
  ------------------
 2833|     66|        goto success;
 2834|     66|    }
 2835|     66|    if (PyLong_CheckExact(value)) {
  ------------------
  |  |   14|     66|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|     66|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     66|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     66|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 6, False: 60]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2836|      6|        specialized_op = TO_BOOL_INT;
  ------------------
  |  |  217|      6|#define TO_BOOL_INT                            212
  ------------------
 2837|      6|        goto success;
 2838|      6|    }
 2839|     60|    if (PyList_CheckExact(value)) {
  ------------------
  |  |   26|     60|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|     60|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     60|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     60|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 8, False: 52]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2840|      8|        specialized_op = TO_BOOL_LIST;
  ------------------
  |  |  218|      8|#define TO_BOOL_LIST                           213
  ------------------
 2841|      8|        goto success;
 2842|      8|    }
 2843|     52|    if (Py_IsNone(value)) {
  ------------------
  |  |  621|     52|#define Py_IsNone(x) Py_Is((x), Py_None)
  |  |  ------------------
  |  |  |  |  187|     52|#define Py_Is(x, y) ((x) == (y))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (187:21): [True: 10, False: 42]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2844|     10|        specialized_op = TO_BOOL_NONE;
  ------------------
  |  |  219|     10|#define TO_BOOL_NONE                           214
  ------------------
 2845|     10|        goto success;
 2846|     10|    }
 2847|     42|    if (PyUnicode_CheckExact(value)) {
  ------------------
  |  |  104|     42|#define PyUnicode_CheckExact(op) Py_IS_TYPE((op), &PyUnicode_Type)
  |  |  ------------------
  |  |  |  |  215|     42|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 38, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2848|     38|        specialized_op = TO_BOOL_STR;
  ------------------
  |  |  220|     38|#define TO_BOOL_STR                            215
  ------------------
 2849|     38|        goto success;
 2850|     38|    }
 2851|      4|    if (PyType_HasFeature(Py_TYPE(value), Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  213|      4|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PyType_HasFeature(Py_TYPE(value), Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|      4|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (2851:9): [True: 0, False: 4]
  ------------------
 2852|      0|        unsigned int version = 0;
 2853|      0|        int err = _PyType_Validate(Py_TYPE(value), check_type_always_true, &version);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2854|      0|        if (err < 0) {
  ------------------
  |  Branch (2854:13): [True: 0, False: 0]
  ------------------
 2855|      0|            SPECIALIZATION_FAIL(TO_BOOL, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2856|      0|            goto failure;
 2857|      0|        }
 2858|      0|        else if (err > 0) {
  ------------------
  |  Branch (2858:18): [True: 0, False: 0]
  ------------------
 2859|      0|            SPECIALIZATION_FAIL(TO_BOOL, err);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2860|      0|            goto failure;
 2861|      0|        }
 2862|       |
 2863|      0|        assert(err == 0);
  ------------------
  |  Branch (2863:9): [True: 0, False: 0]
  ------------------
 2864|      0|        assert(version);
  ------------------
  |  Branch (2864:9): [True: 0, False: 0]
  ------------------
 2865|      0|        write_u32(cache->version, version);
 2866|      0|        specialized_op = TO_BOOL_ALWAYS_TRUE;
  ------------------
  |  |  215|      0|#define TO_BOOL_ALWAYS_TRUE                    210
  ------------------
 2867|      0|        goto success;
 2868|      0|    }
 2869|       |
 2870|      4|    SPECIALIZATION_FAIL(TO_BOOL, to_bool_fail_kind(value));
  ------------------
  |  |   43|      4|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2871|      4|failure:
 2872|      4|    unspecialize(instr);
 2873|      4|    return;
 2874|    128|success:
 2875|    128|    specialize(instr, specialized_op);
 2876|    128|}
_Py_Specialize_ContainsOp:
 2899|     46|{
 2900|     46|    PyObject *value = PyStackRef_AsPyObjectBorrow(value_st);
 2901|       |
 2902|     46|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2902:5): [True: 46, Folded]
  ------------------
 2903|     46|    assert(_PyOpcode_Caches[CONTAINS_OP] == INLINE_CACHE_ENTRIES_COMPARE_OP);
  ------------------
  |  Branch (2903:5): [True: 46, False: 0]
  ------------------
 2904|     46|    if (PyAnyDict_CheckExact(value)) {
  ------------------
  |  |   41|     46|    (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   19|     46|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|     92|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     46|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     46|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 12, False: 34]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob))
  |  |  ------------------
  |  |  |  |   38|     34|#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type)
  |  |  |  |  ------------------
  |  |  |  |  |  |  215|     34|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (215:32): [True: 0, False: 34]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2905|     12|        specialize(instr, CONTAINS_OP_DICT);
  ------------------
  |  |  177|     12|#define CONTAINS_OP_DICT                       172
  ------------------
 2906|     12|        return;
 2907|     12|    }
 2908|     34|    if (PySet_CheckExact(value) || PyFrozenSet_CheckExact(value)) {
  ------------------
  |  |   35|     34|#define PySet_CheckExact(op) Py_IS_TYPE(op, &PySet_Type)
  |  |  ------------------
  |  |  |  |  215|     68|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     34|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     34|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 8, False: 26]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if (PySet_CheckExact(value) || PyFrozenSet_CheckExact(value)) {
  ------------------
  |  |   23|     26|#define PyFrozenSet_CheckExact(ob) Py_IS_TYPE((ob), &PyFrozenSet_Type)
  |  |  ------------------
  |  |  |  |  215|     26|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     26|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     26|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 26]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2909|      8|        specialize(instr, CONTAINS_OP_SET);
  ------------------
  |  |  178|      8|#define CONTAINS_OP_SET                        173
  ------------------
 2910|      8|        return;
 2911|      8|    }
 2912|       |
 2913|     26|    SPECIALIZATION_FAIL(CONTAINS_OP, containsop_fail_kind(value));
  ------------------
  |  |   43|     26|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2914|     26|    unspecialize(instr);
 2915|     26|    return;
 2916|     34|}
_Py_Specialize_GetIter:
 2920|     36|{
 2921|     36|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (2921:5): [True: 36, Folded]
  ------------------
 2922|     36|    PyTypeObject *tp = PyStackRef_TYPE(iterable);
 2923|     36|    if (tp->_tp_iteritem != NULL) {
  ------------------
  |  Branch (2923:9): [True: 32, False: 4]
  ------------------
 2924|     32|        specialize(instr, GET_ITER_VIRTUAL);
  ------------------
  |  |  185|     32|#define GET_ITER_VIRTUAL                       180
  ------------------
 2925|     32|        return;
 2926|     32|    }
 2927|      4|    if (tp->tp_iter == PyObject_SelfIter) {
  ------------------
  |  Branch (2927:9): [True: 2, False: 2]
  ------------------
 2928|      2|        specialize(instr, GET_ITER_SELF);
  ------------------
  |  |  184|      2|#define GET_ITER_SELF                          179
  ------------------
 2929|      2|        return;
 2930|      2|    }
 2931|      2|    SPECIALIZATION_FAIL(GET_ITER,
  ------------------
  |  |   43|      2|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 2932|      2|        tp == &PyCoro_Type ? SPEC_FAIL_ITER_COROUTINE : SPEC_FAIL_OTHER);
 2933|      2|    unspecialize(instr);
 2934|      2|}
_Py_Specialize_Resume:
 2938|    541|{
 2939|    541|    if (tstate->tracing == 0 && instr->op.code == RESUME) {
  ------------------
  |  |  133|    541|#define RESUME                                 128
  ------------------
  |  Branch (2939:9): [True: 541, False: 0]
  |  Branch (2939:33): [True: 541, False: 0]
  ------------------
 2940|    541|        if (tstate->interp->jit) {
  ------------------
  |  Branch (2940:13): [True: 0, False: 541]
  ------------------
 2941|      0|            PyCodeObject *co = (PyCodeObject *)PyStackRef_AsPyObjectBorrow(frame->f_executable);
 2942|      0|            if (co != NULL &&
  ------------------
  |  Branch (2942:17): [True: 0, False: 0]
  ------------------
 2943|      0|                PyCode_Check(co) &&
  ------------------
  |  |  164|      0|#define PyCode_Check(op) Py_IS_TYPE((op), &PyCode_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2944|      0|                (co->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR)) == 0) {
  ------------------
  |  |  123|      0|#define CO_GENERATOR    0x0020
  ------------------
                              (co->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR)) == 0) {
  ------------------
  |  |  127|      0|#define CO_COROUTINE            0x0080
  ------------------
                              (co->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR)) == 0) {
  ------------------
  |  |  129|      0|#define CO_ASYNC_GENERATOR      0x0200
  ------------------
  |  Branch (2944:17): [True: 0, False: 0]
  ------------------
 2945|      0|                specialize(instr, RESUME_CHECK_JIT);
  ------------------
  |  |  206|      0|#define RESUME_CHECK_JIT                       201
  ------------------
 2946|      0|                set_counter((_Py_BackoffCounter *)instr + 1, initial_resume_backoff_counter(&tstate->interp->opt_config));
 2947|      0|                return;
 2948|      0|            }
 2949|      0|        }
 2950|    541|        specialize(instr, RESUME_CHECK);
  ------------------
  |  |  205|    541|#define RESUME_CHECK                           200
  ------------------
 2951|    541|        return;
 2952|    541|    }
 2953|      0|    unspecialize(instr);
 2954|      0|    return;
 2955|    541|}
specialize.c:fixup_getiter:
   48|    286|{
   49|       |    // Compiler can't know if types.coroutine() will be called,
   50|       |    // so fix up here
   51|    286|    if (instruction->op.arg) {
  ------------------
  |  Branch (51:9): [True: 8, False: 278]
  ------------------
   52|      8|        if (flags & (CO_COROUTINE | CO_ITERABLE_COROUTINE)) {
  ------------------
  |  |  127|      8|#define CO_COROUTINE            0x0080
  ------------------
                      if (flags & (CO_COROUTINE | CO_ITERABLE_COROUTINE)) {
  ------------------
  |  |  128|      8|#define CO_ITERABLE_COROUTINE   0x0100
  ------------------
  |  Branch (52:13): [True: 0, False: 8]
  ------------------
   53|      0|            instruction->op.arg = GET_ITER_YIELD_FROM_NO_CHECK;
  ------------------
  |  |   96|      0|#define GET_ITER_YIELD_FROM_NO_CHECK 2
  ------------------
   54|      0|        }
   55|      8|        else {
   56|      8|            instruction->op.arg = GET_ITER_YIELD_FROM_CORO_CHECK;
  ------------------
  |  |   97|      8|#define GET_ITER_YIELD_FROM_CORO_CHECK 3
  ------------------
   57|      8|        }
   58|      8|    }
   59|    286|}
specialize.c:specialize:
  363|  2.24k|{
  364|  2.24k|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (364:5): [True: 2.24k, False: 0]
  ------------------
  365|  2.24k|    if (!set_opcode(instr, specialized_opcode)) {
  ------------------
  |  Branch (365:9): [True: 0, False: 2.24k]
  ------------------
  366|      0|        STAT_INC(_PyOpcode_Deopt[specialized_opcode], failure);
  ------------------
  |  |   73|      0|#define STAT_INC(opname, name) ((void)0)
  ------------------
  367|      0|        SPECIALIZATION_FAIL(_PyOpcode_Deopt[specialized_opcode],
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  368|      0|                            SPEC_FAIL_OTHER);
  369|      0|        return;
  370|      0|    }
  371|  2.24k|    STAT_INC(_PyOpcode_Deopt[specialized_opcode], success);
  ------------------
  |  |   73|  2.24k|#define STAT_INC(opname, name) ((void)0)
  ------------------
  372|  2.24k|    set_counter((_Py_BackoffCounter *)instr + 1, adaptive_counter_cooldown());
  373|  2.24k|}
specialize.c:set_opcode:
  326|  2.39k|{
  327|       |#ifdef Py_GIL_DISABLED
  328|       |    uint8_t old_op = _Py_atomic_load_uint8_relaxed(&instr->op.code);
  329|       |    if (old_op >= MIN_INSTRUMENTED_OPCODE) {
  330|       |        /* Lost race with instrumentation */
  331|       |        return 0;
  332|       |    }
  333|       |    if (!_Py_atomic_compare_exchange_uint8(&instr->op.code, &old_op, opcode)) {
  334|       |        /* Lost race with instrumentation */
  335|       |        assert(old_op >= MIN_INSTRUMENTED_OPCODE);
  336|       |        return 0;
  337|       |    }
  338|       |    return 1;
  339|       |#else
  340|  2.39k|    instr->op.code = opcode;
  341|  2.39k|    return 1;
  342|  2.39k|#endif
  343|  2.39k|}
specialize.c:unspecialize:
  377|    148|{
  378|    148|    assert(!PyErr_Occurred());
  ------------------
  |  Branch (378:5): [True: 148, False: 0]
  ------------------
  379|    148|    uint8_t opcode = FT_ATOMIC_LOAD_UINT8_RELAXED(instr->op.code);
  ------------------
  |  |  157|    148|#define FT_ATOMIC_LOAD_UINT8_RELAXED(value) value
  ------------------
  380|    148|    uint8_t generic_opcode = _PyOpcode_Deopt[opcode];
  381|    148|    STAT_INC(generic_opcode, failure);
  ------------------
  |  |   73|    148|#define STAT_INC(opname, name) ((void)0)
  ------------------
  382|    148|    if (!set_opcode(instr, generic_opcode)) {
  ------------------
  |  Branch (382:9): [True: 0, False: 148]
  ------------------
  383|      0|        SPECIALIZATION_FAIL(generic_opcode, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  384|      0|        return;
  385|      0|    }
  386|    148|    _Py_BackoffCounter *counter = (_Py_BackoffCounter *)instr + 1;
  387|    148|    _Py_BackoffCounter cur = load_counter(counter);
  388|    148|    set_counter(counter, adaptive_counter_backoff(cur));
  389|    148|}
specialize.c:load_counter:
  354|    148|{
  355|    148|    _Py_BackoffCounter result = {
  356|    148|        .value_and_backoff =
  357|    148|            FT_ATOMIC_LOAD_UINT16_RELAXED(counter->value_and_backoff)};
  ------------------
  |  |  158|    148|#define FT_ATOMIC_LOAD_UINT16_RELAXED(value) value
  ------------------
  358|    148|    return result;
  359|    148|}
specialize.c:specialize_module_load_attr:
  450|    162|{
  451|    162|    PyModuleObject *m = (PyModuleObject *)owner;
  452|    162|    assert((Py_TYPE(owner)->tp_flags & Py_TPFLAGS_MANAGED_DICT) == 0);
  ------------------
  |  Branch (452:5): [True: 162, False: 0]
  ------------------
  453|    162|    PyDictObject *dict = (PyDictObject *)m->md_dict;
  454|    162|    if (dict == NULL) {
  ------------------
  |  Branch (454:9): [True: 0, False: 162]
  ------------------
  455|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_NO_DICT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  456|      0|        return -1;
  457|      0|    }
  458|    162|    int result;
  459|    162|    Py_BEGIN_CRITICAL_SECTION(dict);
  ------------------
  |  |   51|    162|    {
  ------------------
  460|    162|    result = specialize_module_load_attr_lock_held(dict, instr, name);
  461|    162|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    162|    }
  ------------------
  462|    162|    return result;
  463|    162|}
specialize.c:specialize_module_load_attr_lock_held:
  412|    162|{
  413|    162|    _PyAttrCache *cache = (_PyAttrCache *)(instr + 1);
  414|    162|    if (dict->ma_keys->dk_kind != DICT_KEYS_UNICODE) {
  ------------------
  |  Branch (414:9): [True: 0, False: 162]
  ------------------
  415|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_NON_STRING);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  416|      0|        return -1;
  417|      0|    }
  418|    162|    PyObject *value;
  419|    162|    Py_ssize_t index = _PyDict_LookupIndexAndValue(dict, name, &value);
  420|    162|    if (value != NULL && PyLazyImport_CheckExact(value)) {
  ------------------
  |  |   15|    154|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  ------------------
  |  |  |  |  215|    154|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    154|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    154|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 154]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (420:9): [True: 154, False: 8]
  ------------------
  421|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_MODULE_LAZY_VALUE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  422|      0|        return -1;
  423|      0|    }
  424|    162|    assert(index != DKIX_ERROR);
  ------------------
  |  Branch (424:5): [True: 162, False: 0]
  ------------------
  425|    162|    if (index != (uint16_t)index) {
  ------------------
  |  Branch (425:9): [True: 8, False: 154]
  ------------------
  426|      8|        SPECIALIZATION_FAIL(LOAD_ATTR,
  ------------------
  |  |   43|      8|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  427|      8|                            index == DKIX_EMPTY ?
  428|      8|                            SPEC_FAIL_ATTR_MODULE_ATTR_NOT_FOUND :
  429|      8|                            SPEC_FAIL_OUT_OF_RANGE);
  430|      8|        return -1;
  431|      8|    }
  432|    154|    uint32_t keys_version = _PyDict_GetKeysVersionForCurrentState(
  433|    154|            _PyInterpreterState_GET(), dict);
  434|    154|    if (keys_version == 0) {
  ------------------
  |  Branch (434:9): [True: 0, False: 154]
  ------------------
  435|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  436|      0|        return -1;
  437|      0|    }
  438|       |#ifdef Py_GIL_DISABLED
  439|       |    maybe_enable_deferred_ref_count(value);
  440|       |#endif
  441|    154|    write_u32(cache->version, keys_version);
  442|    154|    cache->index = (uint16_t)index;
  443|    154|    specialize(instr, LOAD_ATTR_MODULE);
  ------------------
  |  |  195|    154|#define LOAD_ATTR_MODULE                       190
  ------------------
  444|    154|    return 0;
  445|    154|}
specialize.c:specialize_instance_load_attr:
  980|    252|{
  981|       |    // 0 is not a valid version
  982|    252|    uint32_t shared_keys_version = 0;
  983|    252|    bool shadow = instance_has_key(owner, name, &shared_keys_version);
  984|    252|    PyObject *descr = NULL;
  985|    252|    unsigned int tp_version = 0;
  986|    252|    PyTypeObject *type = Py_TYPE(owner);
  ------------------
  |  |  213|    252|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    252|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  987|    252|    DescriptorClassification kind = analyze_descriptor_load(type, name, &descr, &tp_version);
  988|    252|    int result = do_specialize_instance_load_attr(owner, instr, name, shadow, shared_keys_version, kind, descr, tp_version);
  989|    252|    Py_XDECREF(descr);
  ------------------
  |  |  524|    252|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    252|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  990|    252|    return result;
  991|    252|}
specialize.c:instance_has_key:
  759|    252|{
  760|    252|    PyTypeObject *cls = Py_TYPE(obj);
  ------------------
  |  |  213|    252|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    252|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  761|    252|    if ((cls->tp_flags & Py_TPFLAGS_MANAGED_DICT) == 0) {
  ------------------
  |  |  482|    252|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (761:9): [True: 110, False: 142]
  ------------------
  762|    110|        return false;
  763|    110|    }
  764|    142|    if (cls->tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  472|    142|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (764:9): [True: 142, False: 0]
  ------------------
  765|    142|        PyDictKeysObject *keys = ((PyHeapTypeObject *)cls)->ht_cached_keys;
  766|    142|        Py_ssize_t index =
  767|    142|            _PyDictKeys_StringLookupAndVersion(keys, name, shared_keys_version);
  768|    142|        return index >= 0;
  769|    142|    }
  770|      0|    PyDictObject *dict = _PyObject_GetManagedDict(obj);
  771|      0|    if (dict == NULL || !PyDict_CheckExact(dict)) {
  ------------------
  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (771:9): [True: 0, False: 0]
  |  Branch (771:25): [True: 0, False: 0]
  ------------------
  772|      0|        return false;
  773|      0|    }
  774|      0|    bool result;
  775|      0|    Py_BEGIN_CRITICAL_SECTION(dict);
  ------------------
  |  |   51|      0|    {
  ------------------
  776|      0|    if (dict->ma_values) {
  ------------------
  |  Branch (776:9): [True: 0, False: 0]
  ------------------
  777|      0|        result = false;
  778|      0|    }
  779|      0|    else {
  780|      0|        result = (_PyDict_LookupIndex(dict, name) >= 0);
  781|      0|    }
  782|      0|    Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
  783|      0|    return result;
  784|      0|}
specialize.c:analyze_descriptor_load:
  557|    294|analyze_descriptor_load(PyTypeObject *type, PyObject *name, PyObject **descr, unsigned int *tp_version) {
  558|    294|    bool has_getattr = false;
  559|    294|    bool have_ga_version = false;
  560|    294|    unsigned int ga_version;
  561|    294|    getattrofunc getattro_slot = type->tp_getattro;
  562|    294|    if (getattro_slot == PyObject_GenericGetAttr) {
  ------------------
  |  Branch (562:9): [True: 294, False: 0]
  ------------------
  563|       |        /* Normal attribute lookup; */
  564|    294|        has_getattr = false;
  565|    294|    }
  566|      0|    else if (getattro_slot == _Py_slot_tp_getattr_hook ||
  ------------------
  |  Branch (566:14): [True: 0, False: 0]
  ------------------
  567|      0|        getattro_slot == _Py_slot_tp_getattro) {
  ------------------
  |  Branch (567:9): [True: 0, False: 0]
  ------------------
  568|       |        /* One or both of __getattribute__ or __getattr__ may have been
  569|       |         overridden See typeobject.c for why these functions are special. */
  570|      0|        PyObject *getattribute = _PyType_LookupRefAndVersion(type,
  571|      0|                &_Py_ID(__getattribute__), &ga_version);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  572|      0|        have_ga_version = true;
  573|      0|        PyInterpreterState *interp = _PyInterpreterState_GET();
  574|      0|        bool has_custom_getattribute = getattribute != NULL &&
  ------------------
  |  Branch (574:40): [True: 0, False: 0]
  ------------------
  575|      0|            getattribute != interp->callable_cache.object__getattribute__;
  ------------------
  |  Branch (575:13): [True: 0, False: 0]
  ------------------
  576|      0|        PyObject *getattr = _PyType_Lookup(type, &_Py_ID(__getattr__));
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  577|      0|        has_getattr = getattr != NULL;
  578|      0|        if (has_custom_getattribute) {
  ------------------
  |  Branch (578:13): [True: 0, False: 0]
  ------------------
  579|      0|            if (!has_getattr &&
  ------------------
  |  Branch (579:17): [True: 0, False: 0]
  ------------------
  580|      0|                Py_IS_TYPE(getattribute, &PyFunction_Type)) {
  ------------------
  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  581|      0|                *descr = getattribute;
  582|      0|                *tp_version = ga_version;
  583|      0|                return GETATTRIBUTE_IS_PYTHON_FUNCTION;
  584|      0|            }
  585|       |            /* Potentially both __getattr__ and __getattribute__ are set.
  586|       |               Too complicated */
  587|      0|            Py_DECREF(getattribute);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  588|      0|            *descr = NULL;
  589|      0|            *tp_version = ga_version;
  590|      0|            return GETSET_OVERRIDDEN;
  591|      0|        }
  592|       |        /* Potentially has __getattr__ but no custom __getattribute__.
  593|       |           Fall through to usual descriptor analysis.
  594|       |           Usual attribute lookup should only be allowed at runtime
  595|       |           if we can guarantee that there is no way an exception can be
  596|       |           raised. This means some specializations, e.g. specializing
  597|       |           for property() isn't safe.
  598|       |        */
  599|      0|        Py_XDECREF(getattribute);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  600|      0|    }
  601|      0|    else {
  602|      0|        *descr = NULL;
  603|      0|        *tp_version = FT_ATOMIC_LOAD_UINT_RELAXED(type->tp_version_tag);
  ------------------
  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  ------------------
  604|      0|        return GETSET_OVERRIDDEN;
  605|      0|    }
  606|    294|    unsigned int descr_version;
  607|    294|    PyObject *descriptor = _PyType_LookupRefAndVersion(type, name, &descr_version);
  608|    294|    *descr = descriptor;
  609|    294|    *tp_version = have_ga_version ? ga_version : descr_version;
  ------------------
  |  Branch (609:19): [True: 0, False: 294]
  ------------------
  610|    294|    if (descriptor_is_class(descriptor, name)) {
  ------------------
  |  Branch (610:9): [True: 0, False: 294]
  ------------------
  611|      0|        return DUNDER_CLASS;
  612|      0|    }
  613|    294|    return classify_descriptor(descriptor, has_getattr);
  614|    294|}
specialize.c:descriptor_is_class:
  551|    406|{
  552|    406|    return ((PyUnicode_CompareWithASCIIString(name, "__class__") == 0) &&
  ------------------
  |  Branch (552:13): [True: 0, False: 406]
  ------------------
  553|      0|            (descriptor == _PyType_Lookup(&PyBaseObject_Type, name)));
  ------------------
  |  Branch (553:13): [True: 0, False: 0]
  ------------------
  554|    406|}
specialize.c:classify_descriptor:
  509|    464|{
  510|    464|    if (descriptor == NULL) {
  ------------------
  |  Branch (510:9): [True: 272, False: 192]
  ------------------
  511|    272|        return ABSENT;
  512|    272|    }
  513|    192|    PyTypeObject *desc_cls = Py_TYPE(descriptor);
  ------------------
  |  |  213|    192|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    192|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    192|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  514|    192|    if (!(desc_cls->tp_flags & Py_TPFLAGS_IMMUTABLETYPE)) {
  ------------------
  |  |  500|    192|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (514:9): [True: 0, False: 192]
  ------------------
  515|      0|        return MUTABLE;
  516|      0|    }
  517|    192|    if (desc_cls->tp_descr_set) {
  ------------------
  |  Branch (517:9): [True: 44, False: 148]
  ------------------
  518|     44|        if (desc_cls == &PyMemberDescr_Type) {
  ------------------
  |  Branch (518:13): [True: 14, False: 30]
  ------------------
  519|     14|            PyMemberDescrObject *member = (PyMemberDescrObject *)descriptor;
  520|     14|            struct PyMemberDef *dmem = member->d_member;
  521|     14|            if (dmem->type == Py_T_OBJECT_EX || dmem->type == _Py_T_OBJECT) {
  ------------------
  |  |   75|     28|#define Py_T_OBJECT_EX 16
  ------------------
                          if (dmem->type == Py_T_OBJECT_EX || dmem->type == _Py_T_OBJECT) {
  ------------------
  |  |   59|     10|#define _Py_T_OBJECT   6  // Deprecated, use Py_T_OBJECT_EX instead
  ------------------
  |  Branch (521:17): [True: 4, False: 10]
  |  Branch (521:49): [True: 10, False: 0]
  ------------------
  522|     14|                return OBJECT_SLOT;
  523|     14|            }
  524|      0|            return OTHER_SLOT;
  525|     14|        }
  526|     30|        if (desc_cls == &PyProperty_Type) {
  ------------------
  |  Branch (526:13): [True: 6, False: 24]
  ------------------
  527|       |            /* We can't detect at runtime whether an attribute exists
  528|       |               with property. So that means we may have to call
  529|       |               __getattr__. */
  530|      6|            return has_getattr ? GETSET_OVERRIDDEN : PROPERTY;
  ------------------
  |  Branch (530:20): [True: 0, False: 6]
  ------------------
  531|      6|        }
  532|     24|        return OVERRIDING;
  533|     30|    }
  534|    148|    if (desc_cls->tp_descr_get) {
  ------------------
  |  Branch (534:9): [True: 142, False: 6]
  ------------------
  535|    142|        if (desc_cls->tp_flags & Py_TPFLAGS_METHOD_DESCRIPTOR) {
  ------------------
  |  |  534|    142|#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
  ------------------
  |  Branch (535:13): [True: 102, False: 40]
  ------------------
  536|    102|            return METHOD;
  537|    102|        }
  538|     40|        if (Py_IS_TYPE(descriptor, &PyClassMethodDescr_Type)) {
  ------------------
  |  |  215|     40|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 0, False: 40]
  |  |  ------------------
  ------------------
  539|      0|            return BUILTIN_CLASSMETHOD;
  540|      0|        }
  541|     40|        if (Py_IS_TYPE(descriptor, &PyClassMethod_Type)) {
  ------------------
  |  |  215|     40|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     40|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (215:32): [True: 22, False: 18]
  |  |  ------------------
  ------------------
  542|     22|            return PYTHON_CLASSMETHOD;
  543|     22|        }
  544|     18|        return NON_OVERRIDING;
  545|     40|    }
  546|      6|    return NON_DESCRIPTOR;
  547|    148|}
specialize.c:do_specialize_instance_load_attr:
  790|    252|{
  791|    252|    _PyAttrCache *cache = (_PyAttrCache *)(instr + 1);
  792|    252|    PyTypeObject *type = Py_TYPE(owner);
  ------------------
  |  |  213|    252|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    252|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    252|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  793|    252|    if (tp_version == 0) {
  ------------------
  |  Branch (793:9): [True: 0, False: 252]
  ------------------
  794|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  795|      0|        return -1;
  796|      0|    }
  797|    252|    uint8_t oparg = FT_ATOMIC_LOAD_UINT8_RELAXED(instr->op.arg);
  ------------------
  |  |  157|    252|#define FT_ATOMIC_LOAD_UINT8_RELAXED(value) value
  ------------------
  798|    252|    switch(kind) {
  ------------------
  |  Branch (798:12): [True: 252, False: 0]
  ------------------
  799|      8|        case OVERRIDING:
  ------------------
  |  Branch (799:9): [True: 8, False: 244]
  ------------------
  800|      8|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_OVERRIDING_DESCRIPTOR);
  ------------------
  |  |   43|      8|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  801|      8|            return -1;
  802|    102|        case METHOD:
  ------------------
  |  Branch (802:9): [True: 102, False: 150]
  ------------------
  803|    102|        {
  804|    102|            if (shadow) {
  ------------------
  |  Branch (804:17): [True: 0, False: 102]
  ------------------
  805|      0|                goto try_instance;
  806|      0|            }
  807|    102|            if (oparg & 1) {
  ------------------
  |  Branch (807:17): [True: 102, False: 0]
  ------------------
  808|    102|                if (specialize_attr_loadclassattr(owner, instr, name, descr,
  ------------------
  |  Branch (808:21): [True: 102, False: 0]
  ------------------
  809|    102|                                                  tp_version, kind, true,
  810|    102|                                                  shared_keys_version)) {
  811|    102|                    return 0;
  812|    102|                }
  813|      0|                else {
  814|      0|                    return -1;
  815|      0|                }
  816|    102|            }
  817|      0|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_METHOD);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  818|      0|            return -1;
  819|    102|        }
  820|      4|        case PROPERTY:
  ------------------
  |  Branch (820:9): [True: 4, False: 248]
  ------------------
  821|      4|        {
  822|      4|            _PyLoadMethodCache *lm_cache = (_PyLoadMethodCache *)(instr + 1);
  823|      4|            assert(Py_TYPE(descr) == &PyProperty_Type);
  ------------------
  |  Branch (823:13): [True: 4, False: 0]
  ------------------
  824|      4|            PyObject *fget = ((_PyPropertyObject *)descr)->prop_get;
  825|      4|            if (fget == NULL) {
  ------------------
  |  Branch (825:17): [True: 0, False: 4]
  ------------------
  826|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  827|      0|                return -1;
  828|      0|            }
  829|      4|            if (!Py_IS_TYPE(fget, &PyFunction_Type)) {
  ------------------
  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (829:17): [True: 0, False: 4]
  ------------------
  830|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_PROPERTY_NOT_PY_FUNCTION);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  831|      0|                return -1;
  832|      0|            }
  833|      4|            if (!function_check_args(fget, 1, LOAD_ATTR)) {
  ------------------
  |  |   92|      4|#define LOAD_ATTR                               79
  ------------------
  |  Branch (833:17): [True: 0, False: 4]
  ------------------
  834|      0|                return -1;
  835|      0|            }
  836|      4|            if (oparg & 1) {
  ------------------
  |  Branch (836:17): [True: 0, False: 4]
  ------------------
  837|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_METHOD);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  838|      0|                return -1;
  839|      0|            }
  840|       |            /* Don't specialize if PEP 523 is active */
  841|      4|            if (!_PyInterpreterState_IsSpecializationEnabled(_PyInterpreterState_GET())) {
  ------------------
  |  Branch (841:17): [True: 0, False: 4]
  ------------------
  842|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  843|      0|                return -1;
  844|      0|            }
  845|       |            #ifdef Py_GIL_DISABLED
  846|       |            if (!_PyObject_HasDeferredRefcount(fget)) {
  847|       |                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_DESCR_NOT_DEFERRED);
  848|       |                return -1;
  849|       |            }
  850|       |            #endif
  851|      4|            uint32_t func_version = function_get_version(fget, LOAD_ATTR);
  ------------------
  |  |   92|      4|#define LOAD_ATTR                               79
  ------------------
  852|      4|            if (func_version == 0) {
  ------------------
  |  Branch (852:17): [True: 0, False: 4]
  ------------------
  853|      0|                return -1;
  854|      0|            }
  855|      4|            assert(tp_version != 0);
  ------------------
  |  Branch (855:13): [True: 4, False: 0]
  ------------------
  856|      4|            write_u32(lm_cache->type_version, tp_version);
  857|      4|            write_u32(lm_cache->keys_version, func_version);
  858|       |            /* borrowed */
  859|      4|            write_ptr(lm_cache->descr, fget);
  860|      4|            specialize(instr, LOAD_ATTR_PROPERTY);
  ------------------
  |  |  198|      4|#define LOAD_ATTR_PROPERTY                     193
  ------------------
  861|      4|            return 0;
  862|      4|        }
  863|     12|        case OBJECT_SLOT:
  ------------------
  |  Branch (863:9): [True: 12, False: 240]
  ------------------
  864|     12|        {
  865|     12|            PyMemberDescrObject *member = (PyMemberDescrObject *)descr;
  866|     12|            struct PyMemberDef *dmem = member->d_member;
  867|     12|            Py_ssize_t offset = dmem->offset;
  868|     12|            if (!PyObject_TypeCheck(owner, member->d_common.d_type)) {
  ------------------
  |  |  378|     12|#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
  |  |  ------------------
  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (868:17): [True: 0, False: 12]
  ------------------
  869|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  870|      0|                return -1;
  871|      0|            }
  872|     12|            if (dmem->flags & _Py_AFTER_ITEMS) {
  ------------------
  |  |   89|     12|#  define _Py_AFTER_ITEMS      (1 << 4) // For internal use.
  ------------------
  |  Branch (872:17): [True: 0, False: 12]
  ------------------
  873|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_SLOT_AFTER_ITEMS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  874|      0|                return -1;
  875|      0|            }
  876|     12|            if (dmem->flags & Py_AUDIT_READ) {
  ------------------
  |  |   84|     12|#define Py_AUDIT_READ          (1 << 1) // Added in 3.10, harmless no-op before that
  ------------------
  |  Branch (876:17): [True: 0, False: 12]
  ------------------
  877|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_AUDITED_SLOT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  878|      0|                return -1;
  879|      0|            }
  880|     12|            if (offset != (uint16_t)offset) {
  ------------------
  |  Branch (880:17): [True: 0, False: 12]
  ------------------
  881|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  882|      0|                return -1;
  883|      0|            }
  884|     12|            assert(dmem->type == Py_T_OBJECT_EX || dmem->type == _Py_T_OBJECT);
  ------------------
  |  Branch (884:13): [True: 2, False: 10]
  |  Branch (884:13): [True: 10, False: 0]
  ------------------
  885|     12|            assert(offset > 0);
  ------------------
  |  Branch (885:13): [True: 12, False: 0]
  ------------------
  886|     12|            cache->index = (uint16_t)offset;
  887|     12|            write_u32(cache->version, tp_version);
  888|     12|            specialize(instr, LOAD_ATTR_SLOT);
  ------------------
  |  |  199|     12|#define LOAD_ATTR_SLOT                         194
  ------------------
  889|     12|            return 0;
  890|     12|        }
  891|      0|        case DUNDER_CLASS:
  ------------------
  |  Branch (891:9): [True: 0, False: 252]
  ------------------
  892|      0|        {
  893|      0|            Py_ssize_t offset = offsetof(PyObject, ob_type);
  894|      0|            assert(offset == (uint16_t)offset);
  ------------------
  |  Branch (894:13): [True: 0, False: 0]
  ------------------
  895|      0|            cache->index = (uint16_t)offset;
  896|      0|            write_u32(cache->version, tp_version);
  897|      0|            specialize(instr, LOAD_ATTR_SLOT);
  ------------------
  |  |  199|      0|#define LOAD_ATTR_SLOT                         194
  ------------------
  898|      0|            return 0;
  899|      0|        }
  900|      0|        case OTHER_SLOT:
  ------------------
  |  Branch (900:9): [True: 0, False: 252]
  ------------------
  901|      0|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_NON_OBJECT_SLOT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  902|      0|            return -1;
  903|      0|        case MUTABLE:
  ------------------
  |  Branch (903:9): [True: 0, False: 252]
  ------------------
  904|      0|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_MUTABLE_CLASS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  905|      0|            return -1;
  906|      0|        case GETSET_OVERRIDDEN:
  ------------------
  |  Branch (906:9): [True: 0, False: 252]
  ------------------
  907|      0|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OVERRIDDEN);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  908|      0|            return -1;
  909|      0|        case GETATTRIBUTE_IS_PYTHON_FUNCTION:
  ------------------
  |  Branch (909:9): [True: 0, False: 252]
  ------------------
  910|      0|        {
  911|      0|            assert(Py_IS_TYPE(descr, &PyFunction_Type));
  ------------------
  |  Branch (911:13): [True: 0, False: 0]
  ------------------
  912|      0|            _PyLoadMethodCache *lm_cache = (_PyLoadMethodCache *)(instr + 1);
  913|      0|            if (!function_check_args(descr, 2, LOAD_ATTR)) {
  ------------------
  |  |   92|      0|#define LOAD_ATTR                               79
  ------------------
  |  Branch (913:17): [True: 0, False: 0]
  ------------------
  914|      0|                return -1;
  915|      0|            }
  916|      0|            if (oparg & 1) {
  ------------------
  |  Branch (916:17): [True: 0, False: 0]
  ------------------
  917|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_METHOD);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  918|      0|                return -1;
  919|      0|            }
  920|      0|            uint32_t version = function_get_version(descr, LOAD_ATTR);
  ------------------
  |  |   92|      0|#define LOAD_ATTR                               79
  ------------------
  921|      0|            if (version == 0) {
  ------------------
  |  Branch (921:17): [True: 0, False: 0]
  ------------------
  922|      0|                return -1;
  923|      0|            }
  924|       |            /* Don't specialize if PEP 523 is active */
  925|      0|            if (!_PyInterpreterState_IsSpecializationEnabled(_PyInterpreterState_GET())) {
  ------------------
  |  Branch (925:17): [True: 0, False: 0]
  ------------------
  926|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  927|      0|                return -1;
  928|      0|            }
  929|       |            #ifdef Py_GIL_DISABLED
  930|       |            if (!_PyObject_HasDeferredRefcount(descr)) {
  931|       |                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_DESCR_NOT_DEFERRED);
  932|       |                return -1;
  933|       |            }
  934|       |            #endif
  935|      0|            write_u32(lm_cache->keys_version, version);
  936|       |            /* borrowed */
  937|      0|            write_ptr(lm_cache->descr, descr);
  938|      0|            write_u32(lm_cache->type_version, tp_version);
  939|      0|            specialize(instr, LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN);
  ------------------
  |  |  190|      0|#define LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN      185
  ------------------
  940|      0|            return 0;
  941|      0|        }
  942|      0|        case BUILTIN_CLASSMETHOD:
  ------------------
  |  Branch (942:9): [True: 0, False: 252]
  ------------------
  943|      0|        case PYTHON_CLASSMETHOD:
  ------------------
  |  Branch (943:9): [True: 0, False: 252]
  ------------------
  944|      4|        case NON_OVERRIDING:
  ------------------
  |  Branch (944:9): [True: 4, False: 248]
  ------------------
  945|      4|            if (shadow) {
  ------------------
  |  Branch (945:17): [True: 0, False: 4]
  ------------------
  946|      0|                goto try_instance;
  947|      0|            }
  948|      4|            return -1;
  949|      0|        case NON_DESCRIPTOR:
  ------------------
  |  Branch (949:9): [True: 0, False: 252]
  ------------------
  950|      0|            if (shadow) {
  ------------------
  |  Branch (950:17): [True: 0, False: 0]
  ------------------
  951|      0|                goto try_instance;
  952|      0|            }
  953|      0|            if ((oparg & 1) == 0) {
  ------------------
  |  Branch (953:17): [True: 0, False: 0]
  ------------------
  954|      0|                if (specialize_attr_loadclassattr(owner, instr, name, descr,
  ------------------
  |  Branch (954:21): [True: 0, False: 0]
  ------------------
  955|      0|                                                  tp_version, kind, false,
  956|      0|                                                  shared_keys_version)) {
  957|      0|                    return 0;
  958|      0|                }
  959|      0|            }
  960|      0|            return -1;
  961|    122|        case ABSENT:
  ------------------
  |  Branch (961:9): [True: 122, False: 130]
  ------------------
  962|    122|            if (shadow) {
  ------------------
  |  Branch (962:17): [True: 120, False: 2]
  ------------------
  963|    120|                goto try_instance;
  964|    120|            }
  965|      2|            set_counter((_Py_BackoffCounter*)instr + 1, adaptive_counter_cooldown());
  966|      2|            return 0;
  967|    252|    }
  968|    252|    Py_UNREACHABLE();
  ------------------
  |  |  264|      0|#  define Py_UNREACHABLE() __builtin_unreachable()
  ------------------
  969|    120|try_instance:
  970|    120|    if (specialize_dict_access(owner, instr, type, kind, name, tp_version,
  ------------------
  |  Branch (970:9): [True: 120, False: 0]
  ------------------
  971|    120|                               LOAD_ATTR, LOAD_ATTR_INSTANCE_VALUE, LOAD_ATTR_WITH_HINT))
  ------------------
  |  |   92|    120|#define LOAD_ATTR                               79
  ------------------
                                             LOAD_ATTR, LOAD_ATTR_INSTANCE_VALUE, LOAD_ATTR_WITH_HINT))
  ------------------
  |  |  191|    120|#define LOAD_ATTR_INSTANCE_VALUE               186
  ------------------
                                             LOAD_ATTR, LOAD_ATTR_INSTANCE_VALUE, LOAD_ATTR_WITH_HINT))
  ------------------
  |  |  200|    120|#define LOAD_ATTR_WITH_HINT                    195
  ------------------
  972|    120|    {
  973|    120|        return 0;
  974|    120|    }
  975|      0|    return -1;
  976|    120|}
specialize.c:specialize_attr_loadclassattr:
 1264|    102|{
 1265|    102|    _PyLoadMethodCache *cache = (_PyLoadMethodCache *)(instr + 1);
 1266|    102|    PyTypeObject *owner_cls = Py_TYPE(owner);
  ------------------
  |  |  213|    102|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|    102|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    102|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1267|       |
 1268|    102|    assert(descr != NULL);
  ------------------
  |  Branch (1268:5): [True: 102, False: 0]
  ------------------
 1269|    102|    assert((is_method && kind == METHOD) || (!is_method && kind == NON_DESCRIPTOR));
  ------------------
  |  Branch (1269:5): [True: 102, False: 0]
  |  Branch (1269:5): [True: 102, False: 0]
  |  Branch (1269:5): [True: 0, False: 0]
  |  Branch (1269:5): [True: 0, False: 0]
  ------------------
 1270|       |
 1271|       |    #ifdef Py_GIL_DISABLED
 1272|       |    if (!_PyObject_HasDeferredRefcount(descr)) {
 1273|       |        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_DESCR_NOT_DEFERRED);
 1274|       |        return 0;
 1275|       |    }
 1276|       |    #endif
 1277|       |
 1278|    102|    unsigned long tp_flags = PyType_GetFlags(owner_cls);
 1279|    102|    if (tp_flags & Py_TPFLAGS_INLINE_VALUES) {
  ------------------
  |  |  472|    102|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (1279:9): [True: 18, False: 84]
  ------------------
 1280|     18|        #ifndef Py_GIL_DISABLED
 1281|     18|        assert(_PyDictKeys_StringLookup(
  ------------------
  |  Branch (1281:9): [True: 18, False: 0]
  ------------------
 1282|     18|                   ((PyHeapTypeObject *)owner_cls)->ht_cached_keys, name) < 0);
 1283|     18|        #endif
 1284|     18|        if (shared_keys_version == 0) {
  ------------------
  |  Branch (1284:13): [True: 0, False: 18]
  ------------------
 1285|      0|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1286|      0|            return 0;
 1287|      0|        }
 1288|     18|        write_u32(cache->keys_version, shared_keys_version);
 1289|     18|        specialize(instr, is_method ? LOAD_ATTR_METHOD_WITH_VALUES : LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES);
  ------------------
  |  |  194|     18|#define LOAD_ATTR_METHOD_WITH_VALUES           189
  ------------------
                      specialize(instr, is_method ? LOAD_ATTR_METHOD_WITH_VALUES : LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES);
  ------------------
  |  |  197|     18|#define LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES    192
  ------------------
  |  Branch (1289:27): [True: 18, False: 0]
  ------------------
 1290|     18|    }
 1291|     84|    else {
 1292|     84|        Py_ssize_t dictoffset;
 1293|     84|        if (tp_flags & Py_TPFLAGS_MANAGED_DICT) {
  ------------------
  |  |  482|     84|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (1293:13): [True: 0, False: 84]
  ------------------
 1294|      0|            dictoffset = MANAGED_DICT_OFFSET;
  ------------------
  |  |  925|      0|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  ------------------
 1295|      0|        }
 1296|     84|        else {
 1297|     84|            dictoffset = owner_cls->tp_dictoffset;
 1298|     84|            if (dictoffset < 0 || dictoffset > INT16_MAX + MANAGED_DICT_OFFSET) {
  ------------------
  |  |  925|     84|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  ------------------
  |  Branch (1298:17): [True: 0, False: 84]
  |  Branch (1298:35): [True: 0, False: 84]
  ------------------
 1299|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1300|      0|                return 0;
 1301|      0|            }
 1302|     84|        }
 1303|     84|        if (dictoffset == 0) {
  ------------------
  |  Branch (1303:13): [True: 84, False: 0]
  ------------------
 1304|     84|            specialize(instr, is_method ? LOAD_ATTR_METHOD_NO_DICT : LOAD_ATTR_NONDESCRIPTOR_NO_DICT);
  ------------------
  |  |  193|     84|#define LOAD_ATTR_METHOD_NO_DICT               188
  ------------------
                          specialize(instr, is_method ? LOAD_ATTR_METHOD_NO_DICT : LOAD_ATTR_NONDESCRIPTOR_NO_DICT);
  ------------------
  |  |  196|     84|#define LOAD_ATTR_NONDESCRIPTOR_NO_DICT        191
  ------------------
  |  Branch (1304:31): [True: 84, False: 0]
  ------------------
 1305|     84|        }
 1306|      0|        else if (is_method) {
  ------------------
  |  Branch (1306:18): [True: 0, False: 0]
  ------------------
 1307|      0|            PyObject **addr = (PyObject **)((char *)owner + dictoffset);
 1308|      0|            PyObject *dict = FT_ATOMIC_LOAD_PTR_ACQUIRE(*addr);
  ------------------
  |  |  150|      0|#define FT_ATOMIC_LOAD_PTR_ACQUIRE(value) value
  ------------------
 1309|      0|            if (dict) {
  ------------------
  |  Branch (1309:17): [True: 0, False: 0]
  ------------------
 1310|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_NOT_MANAGED_DICT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1311|      0|                return 0;
 1312|      0|            }
 1313|       |            /* Cache entries must be unsigned values, so we offset the
 1314|       |             * dictoffset by MANAGED_DICT_OFFSET.
 1315|       |             * We do the reverse offset in LOAD_ATTR_METHOD_LAZY_DICT */
 1316|      0|            dictoffset -= MANAGED_DICT_OFFSET;
  ------------------
  |  |  925|      0|#  define MANAGED_DICT_OFFSET    (((Py_ssize_t)sizeof(PyObject *))*-3)
  ------------------
 1317|      0|            assert(((uint16_t)dictoffset) == dictoffset);
  ------------------
  |  Branch (1317:13): [True: 0, False: 0]
  ------------------
 1318|      0|            cache->dict_offset = (uint16_t)dictoffset;
 1319|      0|            specialize(instr, LOAD_ATTR_METHOD_LAZY_DICT);
  ------------------
  |  |  192|      0|#define LOAD_ATTR_METHOD_LAZY_DICT             187
  ------------------
 1320|      0|        }
 1321|      0|        else {
 1322|      0|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_CLASS_ATTR_SIMPLE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1323|      0|            return 0;
 1324|      0|        }
 1325|     84|    }
 1326|       |    /* `descr` is borrowed. This is safe for methods (even inherited ones from
 1327|       |    *  super classes!) as long as tp_version_tag is validated for two main reasons:
 1328|       |    *
 1329|       |    *  1. The class will always hold a reference to the method so it will
 1330|       |    *  usually not be GC-ed. Should it be deleted in Python, e.g.
 1331|       |    *  `del obj.meth`, tp_version_tag will be invalidated, because of reason 2.
 1332|       |    *
 1333|       |    *  2. The pre-existing type method cache (MCACHE) uses the same principles
 1334|       |    *  of caching a borrowed descriptor. The MCACHE infrastructure does all the
 1335|       |    *  heavy lifting for us. E.g. it invalidates tp_version_tag on any MRO
 1336|       |    *  modification, on any type object change along said MRO, etc. (see
 1337|       |    *  PyType_Modified usages in typeobject.c). The MCACHE has been
 1338|       |    *  working since Python 2.6 and it's battle-tested.
 1339|       |    */
 1340|    102|    write_u32(cache->type_version, tp_version);
 1341|    102|    write_ptr(cache->descr, descr);
 1342|    102|    return 1;
 1343|    102|}
specialize.c:function_check_args:
 1470|      4|{
 1471|      4|    assert(Py_IS_TYPE(o, &PyFunction_Type));
  ------------------
  |  Branch (1471:5): [True: 4, False: 0]
  ------------------
 1472|      4|    PyFunctionObject *func = (PyFunctionObject *)o;
 1473|      4|    PyCodeObject *fcode = (PyCodeObject *)func->func_code;
 1474|      4|    int kind = function_kind(fcode);
 1475|      4|    if (kind != SIMPLE_FUNCTION) {
  ------------------
  |  |  124|      4|#define SIMPLE_FUNCTION 0
  ------------------
  |  Branch (1475:9): [True: 0, False: 4]
  ------------------
 1476|      0|        SPECIALIZATION_FAIL(opcode, kind);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1477|      0|        return false;
 1478|      0|    }
 1479|      4|    if (fcode->co_argcount != expected_argcount) {
  ------------------
  |  Branch (1479:9): [True: 0, False: 4]
  ------------------
 1480|      0|        SPECIALIZATION_FAIL(opcode, SPEC_FAIL_WRONG_NUMBER_ARGUMENTS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1481|      0|        return false;
 1482|      0|    }
 1483|      4|    return true;
 1484|      4|}
specialize.c:function_get_version:
 1489|      4|{
 1490|      4|    assert(Py_IS_TYPE(o, &PyFunction_Type));
  ------------------
  |  Branch (1490:5): [True: 4, False: 0]
  ------------------
 1491|      4|    PyFunctionObject *func = (PyFunctionObject *)o;
 1492|      4|    uint32_t version = _PyFunction_GetVersionForCurrentState(func);
 1493|      4|    if (!_PyFunction_IsVersionValid(version)) {
  ------------------
  |  Branch (1493:9): [True: 0, False: 4]
  ------------------
 1494|      0|        SPECIALIZATION_FAIL(opcode, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1495|      0|        return 0;
 1496|      0|    }
 1497|      4|    return version;
 1498|      4|}
specialize.c:analyze_descriptor_store:
  618|    112|{
  619|    112|    if (type->tp_setattro != PyObject_GenericSetAttr) {
  ------------------
  |  Branch (619:9): [True: 0, False: 112]
  ------------------
  620|      0|        *descr = NULL;
  621|      0|        return GETSET_OVERRIDDEN;
  622|      0|    }
  623|    112|    PyObject *descriptor = _PyType_LookupRefAndVersion(type, name, tp_version);
  624|    112|    *descr = descriptor;
  625|    112|    if (descriptor_is_class(descriptor, name)) {
  ------------------
  |  Branch (625:9): [True: 0, False: 112]
  ------------------
  626|      0|        return DUNDER_CLASS;
  627|      0|    }
  628|    112|    return classify_descriptor(descriptor, false);
  629|    112|}
specialize.c:specialize_dict_access:
  699|    228|{
  700|    228|    assert(kind == NON_OVERRIDING || kind == NON_DESCRIPTOR || kind == ABSENT ||
  ------------------
  |  Branch (700:5): [True: 0, False: 228]
  |  Branch (700:5): [True: 0, False: 228]
  |  Branch (700:5): [True: 228, False: 0]
  |  Branch (700:5): [True: 0, False: 0]
  |  Branch (700:5): [True: 0, False: 0]
  |  Branch (700:5): [True: 0, False: 0]
  ------------------
  701|    228|        kind == BUILTIN_CLASSMETHOD || kind == PYTHON_CLASSMETHOD ||
  702|    228|        kind == METHOD);
  703|       |    // No descriptor, or non overriding.
  704|    228|    if ((type->tp_flags & Py_TPFLAGS_MANAGED_DICT) == 0) {
  ------------------
  |  |  482|    228|#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
  ------------------
  |  Branch (704:9): [True: 4, False: 224]
  ------------------
  705|      4|        SPECIALIZATION_FAIL(base_op, SPEC_FAIL_ATTR_NOT_MANAGED_DICT);
  ------------------
  |  |   43|      4|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  706|      4|        return 0;
  707|      4|    }
  708|    224|    if (type->tp_flags & Py_TPFLAGS_INLINE_VALUES &&
  ------------------
  |  |  472|    448|#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
  ------------------
  |  Branch (708:9): [True: 224, False: 0]
  ------------------
  709|    224|        FT_ATOMIC_LOAD_UINT8(_PyObject_InlineValues(owner)->valid) &&
  ------------------
  |  |  154|    448|#define FT_ATOMIC_LOAD_UINT8(value) value
  |  |  ------------------
  |  |  |  Branch (154:37): [True: 224, False: 0]
  |  |  ------------------
  ------------------
  710|    224|        !(base_op == STORE_ATTR && _PyObject_GetManagedDict(owner) != NULL))
  ------------------
  |  |  122|    448|#define STORE_ATTR                             109
  ------------------
  |  Branch (710:11): [True: 104, False: 120]
  |  Branch (710:36): [True: 0, False: 104]
  ------------------
  711|    224|    {
  712|    224|        int res;
  713|    224|        Py_BEGIN_CRITICAL_SECTION(owner);
  ------------------
  |  |   51|    224|    {
  ------------------
  714|    224|        PyDictObject *dict = _PyObject_GetManagedDict(owner);
  715|    224|        if (dict == NULL) {
  ------------------
  |  Branch (715:13): [True: 224, False: 0]
  ------------------
  716|       |            // managed dict, not materialized, inline values valid
  717|    224|            res = specialize_dict_access_inline(owner, instr, type, name,
  718|    224|                                                tp_version, base_op, values_op);
  719|    224|        }
  720|      0|        else {
  721|       |            // lost race and dict was created, fail specialization
  722|      0|            SPECIALIZATION_FAIL(STORE_ATTR, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  723|      0|            res = 0;
  724|      0|        }
  725|    224|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    224|    }
  ------------------
  726|    224|        return res;
  727|    224|    }
  728|      0|    else {
  729|      0|        PyDictObject *dict = _PyObject_GetManagedDict(owner);
  730|      0|        if (dict == NULL || !PyDict_CheckExact(dict)) {
  ------------------
  |  |   19|      0|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (730:13): [True: 0, False: 0]
  |  Branch (730:29): [True: 0, False: 0]
  ------------------
  731|      0|            SPECIALIZATION_FAIL(base_op, SPEC_FAIL_NO_DICT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  732|      0|            return 0;
  733|      0|        }
  734|      0|        int res;
  735|      0|        Py_BEGIN_CRITICAL_SECTION(dict);
  ------------------
  |  |   51|      0|    {
  ------------------
  736|       |        // materialized managed dict
  737|      0|        res = specialize_dict_access_hint(dict, instr, type, name,
  738|      0|                                          tp_version, base_op, hint_op);
  739|      0|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|      0|    }
  ------------------
  740|      0|        return res;
  741|      0|    }
  742|    224|}
specialize.c:specialize_dict_access_inline:
  636|    224|{
  637|    224|    _PyAttrCache *cache = (_PyAttrCache *)(instr + 1);
  638|    224|    PyDictKeysObject *keys = ((PyHeapTypeObject *)type)->ht_cached_keys;
  639|    224|    assert(PyUnicode_CheckExact(name));
  ------------------
  |  Branch (639:5): [True: 224, False: 0]
  ------------------
  640|    224|    _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(owner);
  641|    224|    Py_ssize_t index = _PyDictKeys_StringLookupSplit(keys, name);
  642|    224|    assert (index != DKIX_ERROR);
  ------------------
  |  Branch (642:5): [True: 224, False: 0]
  ------------------
  643|    224|    if (index == DKIX_EMPTY) {
  ------------------
  |  |  184|    224|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (643:9): [True: 0, False: 224]
  ------------------
  644|      0|        SPECIALIZATION_FAIL(base_op, SPEC_FAIL_ATTR_NOT_IN_KEYS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  645|      0|        return 0;
  646|      0|    }
  647|    224|    assert(index >= 0);
  ------------------
  |  Branch (647:5): [True: 224, False: 0]
  ------------------
  648|    224|    assert(_PyObject_InlineValues(owner)->valid);
  ------------------
  |  Branch (648:5): [True: 224, False: 0]
  ------------------
  649|    224|    char *value_addr = (char *)&_PyObject_InlineValues(owner)->values[index];
  650|    224|    Py_ssize_t offset = value_addr - (char *)owner;
  651|    224|    if (offset != (uint16_t)offset) {
  ------------------
  |  Branch (651:9): [True: 0, False: 224]
  ------------------
  652|      0|        SPECIALIZATION_FAIL(base_op, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
  653|      0|        return 0;
  654|      0|    }
  655|    224|    cache->index = (uint16_t)offset;
  656|    224|    write_u32(cache->version, tp_version);
  657|    224|    specialize(instr, values_op);
  658|    224|    return 1;
  659|    224|}
specialize.c:specialize_class_load_attr:
 1168|     58|{
 1169|     58|    assert(PyType_Check(owner));
  ------------------
  |  Branch (1169:5): [True: 58, False: 0]
  ------------------
 1170|     58|    PyTypeObject *cls = (PyTypeObject *)owner;
 1171|     58|    _PyLoadMethodCache *cache = (_PyLoadMethodCache *)(instr + 1);
 1172|     58|    if (Py_TYPE(cls)->tp_getattro != _Py_type_getattro) {
  ------------------
  |  |  213|     58|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1172:9): [True: 0, False: 58]
  ------------------
 1173|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_METACLASS_OVERRIDDEN);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1174|      0|        return -1;
 1175|      0|    }
 1176|     58|    unsigned int meta_version = 0;
 1177|     58|    PyObject *metadescriptor = _PyType_LookupRefAndVersion(Py_TYPE(cls), name, &meta_version);
  ------------------
  |  |  213|     58|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1178|     58|    DescriptorClassification metakind = classify_descriptor(metadescriptor, false);
 1179|     58|    Py_XDECREF(metadescriptor);
  ------------------
  |  |  524|     58|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     58|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     58|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1180|     58|    switch (metakind) {
 1181|      0|        case METHOD:
  ------------------
  |  Branch (1181:9): [True: 0, False: 58]
  ------------------
 1182|      0|        case NON_DESCRIPTOR:
  ------------------
  |  Branch (1182:9): [True: 0, False: 58]
  ------------------
 1183|      0|        case NON_OVERRIDING:
  ------------------
  |  Branch (1183:9): [True: 0, False: 58]
  ------------------
 1184|      0|        case BUILTIN_CLASSMETHOD:
  ------------------
  |  Branch (1184:9): [True: 0, False: 58]
  ------------------
 1185|      0|        case PYTHON_CLASSMETHOD:
  ------------------
  |  Branch (1185:9): [True: 0, False: 58]
  ------------------
 1186|     42|        case ABSENT:
  ------------------
  |  Branch (1186:9): [True: 42, False: 16]
  ------------------
 1187|     42|            break;
 1188|     16|        default:
  ------------------
  |  Branch (1188:9): [True: 16, False: 42]
  ------------------
 1189|     16|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_METACLASS_ATTRIBUTE);
  ------------------
  |  |   43|     16|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1190|     16|            return -1;
 1191|     58|    }
 1192|     42|    PyObject *descr = NULL;
 1193|     42|    DescriptorClassification kind = 0;
 1194|     42|    unsigned int tp_version = 0;
 1195|     42|    kind = analyze_descriptor_load(cls, name, &descr, &tp_version);
 1196|     42|    if (tp_version == 0) {
  ------------------
  |  Branch (1196:9): [True: 0, False: 42]
  ------------------
 1197|      0|        SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1198|      0|        Py_XDECREF(descr);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1199|      0|        return -1;
 1200|      0|    }
 1201|     42|    bool metaclass_check = false;
 1202|     42|    if ((Py_TYPE(cls)->tp_flags & Py_TPFLAGS_IMMUTABLETYPE) == 0) {
  ------------------
  |  |  213|     42|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     42|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     42|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                  if ((Py_TYPE(cls)->tp_flags & Py_TPFLAGS_IMMUTABLETYPE) == 0) {
  ------------------
  |  |  500|     42|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (1202:9): [True: 0, False: 42]
  ------------------
 1203|      0|        metaclass_check = true;
 1204|      0|        if (meta_version == 0) {
  ------------------
  |  Branch (1204:13): [True: 0, False: 0]
  ------------------
 1205|      0|            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1206|      0|            Py_XDECREF(descr);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1207|      0|            return -1;
 1208|      0|        }
 1209|      0|    }
 1210|     42|    switch (kind) {
 1211|      0|        case MUTABLE:
  ------------------
  |  Branch (1211:9): [True: 0, False: 42]
  ------------------
 1212|       |            // special case for enums which has Py_TYPE(descr) == cls
 1213|       |            // so guarding on type version is sufficient
 1214|      0|            if (Py_TYPE(descr) != cls) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1214:17): [True: 0, False: 0]
  ------------------
 1215|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_MUTABLE_CLASS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1216|      0|                Py_XDECREF(descr);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1217|      0|                return -1;
 1218|      0|            }
 1219|      0|            if (Py_TYPE(descr)->tp_descr_get || Py_TYPE(descr)->tp_descr_set) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          if (Py_TYPE(descr)->tp_descr_get || Py_TYPE(descr)->tp_descr_set) {
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1219:17): [True: 0, False: 0]
  |  Branch (1219:49): [True: 0, False: 0]
  ------------------
 1220|      0|                SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_OVERRIDING_DESCRIPTOR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1221|      0|                Py_XDECREF(descr);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1222|      0|                return -1;
 1223|      0|            }
 1224|      0|            _Py_FALLTHROUGH;
  ------------------
  |  |  644|      0|#  define _Py_FALLTHROUGH __attribute__((fallthrough))
  ------------------
 1225|      0|        case METHOD:
  ------------------
  |  Branch (1225:9): [True: 0, False: 42]
  ------------------
 1226|      6|        case NON_DESCRIPTOR:
  ------------------
  |  Branch (1226:9): [True: 6, False: 36]
  ------------------
 1227|       |#ifdef Py_GIL_DISABLED
 1228|       |            maybe_enable_deferred_ref_count(descr);
 1229|       |#endif
 1230|      6|            write_ptr(cache->descr, descr);
 1231|      6|            if (metaclass_check) {
  ------------------
  |  Branch (1231:17): [True: 0, False: 6]
  ------------------
 1232|      0|                write_u32(cache->keys_version, tp_version);
 1233|      0|                write_u32(cache->type_version, meta_version);
 1234|      0|                specialize(instr, LOAD_ATTR_CLASS_WITH_METACLASS_CHECK);
  ------------------
  |  |  189|      0|#define LOAD_ATTR_CLASS_WITH_METACLASS_CHECK   184
  ------------------
 1235|      0|            }
 1236|      6|            else {
 1237|      6|                write_u32(cache->type_version, tp_version);
 1238|      6|                specialize(instr, LOAD_ATTR_CLASS);
  ------------------
  |  |  188|      6|#define LOAD_ATTR_CLASS                        183
  ------------------
 1239|      6|            }
 1240|      6|            Py_XDECREF(descr);
  ------------------
  |  |  524|      6|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1241|      6|            return 0;
 1242|       |#ifdef Py_STATS
 1243|       |        case ABSENT:
 1244|       |            SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_EXPECTED_ERROR);
 1245|       |            Py_XDECREF(descr);
 1246|       |            return -1;
 1247|       |#endif
 1248|     36|        default:
  ------------------
  |  Branch (1248:9): [True: 36, False: 6]
  ------------------
 1249|     36|            SPECIALIZATION_FAIL(LOAD_ATTR, load_attr_fail_kind(kind));
  ------------------
  |  |   43|     36|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1250|     36|            Py_XDECREF(descr);
  ------------------
  |  |  524|     36|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     36|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     36|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1251|     36|            return -1;
 1252|     42|    }
 1253|     42|}
specialize.c:specialize_load_global_lock_held:
 1349|    424|{
 1350|    424|    assert(ENABLE_SPECIALIZATION);
  ------------------
  |  Branch (1350:5): [True: 424, Folded]
  ------------------
 1351|    424|    assert(_PyOpcode_Caches[LOAD_GLOBAL] == INLINE_CACHE_ENTRIES_LOAD_GLOBAL);
  ------------------
  |  Branch (1351:5): [True: 424, False: 0]
  ------------------
 1352|       |    /* Use inline cache */
 1353|    424|    _PyLoadGlobalCache *cache = (_PyLoadGlobalCache *)(instr + 1);
 1354|    424|    assert(PyUnicode_CheckExact(name));
  ------------------
  |  Branch (1354:5): [True: 424, False: 0]
  ------------------
 1355|    424|    if (!PyDict_CheckExact(globals)) {
  ------------------
  |  |   19|    424|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|    424|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    424|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    424|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1355:9): [True: 0, False: 424]
  ------------------
 1356|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_LOAD_GLOBAL_NON_DICT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1357|      0|        goto fail;
 1358|      0|    }
 1359|    424|    PyDictKeysObject * globals_keys = ((PyDictObject *)globals)->ma_keys;
 1360|    424|    if (globals_keys->dk_kind != DICT_KEYS_UNICODE) {
  ------------------
  |  Branch (1360:9): [True: 0, False: 424]
  ------------------
 1361|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_LOAD_GLOBAL_NON_STRING_OR_SPLIT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1362|      0|        goto fail;
 1363|      0|    }
 1364|    424|    PyObject *value;
 1365|    424|    Py_ssize_t index = _PyDict_LookupIndexAndValue((PyDictObject *)globals, name, &value);
 1366|    424|    if (index == DKIX_ERROR) {
  ------------------
  |  |  186|    424|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (1366:9): [True: 0, False: 424]
  ------------------
 1367|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1368|      0|        goto fail;
 1369|      0|    }
 1370|    424|    if (value != NULL && PyLazyImport_CheckExact(value)) {
  ------------------
  |  |   15|    294|#define PyLazyImport_CheckExact(op) Py_IS_TYPE((op), &PyLazyImport_Type)
  |  |  ------------------
  |  |  |  |  215|    294|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    294|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    294|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 294]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1370:9): [True: 294, False: 130]
  ------------------
 1371|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_ATTR_MODULE_LAZY_VALUE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1372|      0|        goto fail;
 1373|      0|    }
 1374|    424|    PyInterpreterState *interp = _PyInterpreterState_GET();
 1375|    424|    if (index != DKIX_EMPTY) {
  ------------------
  |  |  184|    424|#define DKIX_EMPTY (-1)
  ------------------
  |  Branch (1375:9): [True: 294, False: 130]
  ------------------
 1376|    294|        if (index != (uint16_t)index) {
  ------------------
  |  Branch (1376:13): [True: 0, False: 294]
  ------------------
 1377|      0|            SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1378|      0|            goto fail;
 1379|      0|        }
 1380|    294|        uint32_t keys_version = _PyDict_GetKeysVersionForCurrentState(
 1381|    294|                interp, (PyDictObject*) globals);
 1382|    294|        if (keys_version == 0) {
  ------------------
  |  Branch (1382:13): [True: 0, False: 294]
  ------------------
 1383|      0|            SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1384|      0|            goto fail;
 1385|      0|        }
 1386|    294|        if (keys_version != (uint16_t)keys_version) {
  ------------------
  |  Branch (1386:13): [True: 0, False: 294]
  ------------------
 1387|      0|            SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1388|      0|            goto fail;
 1389|      0|        }
 1390|       |#ifdef Py_GIL_DISABLED
 1391|       |        maybe_enable_deferred_ref_count(value);
 1392|       |#endif
 1393|    294|        cache->index = (uint16_t)index;
 1394|    294|        cache->module_keys_version = (uint16_t)keys_version;
 1395|    294|        specialize(instr, LOAD_GLOBAL_MODULE);
  ------------------
  |  |  202|    294|#define LOAD_GLOBAL_MODULE                     197
  ------------------
 1396|    294|        return;
 1397|    294|    }
 1398|    130|    if (!PyDict_CheckExact(builtins)) {
  ------------------
  |  |   19|    130|#define PyDict_CheckExact(op) Py_IS_TYPE((op), &PyDict_Type)
  |  |  ------------------
  |  |  |  |  215|    130|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    130|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    130|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1398:9): [True: 0, False: 130]
  ------------------
 1399|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_LOAD_GLOBAL_NON_DICT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1400|      0|        goto fail;
 1401|      0|    }
 1402|    130|    PyDictKeysObject * builtin_keys = ((PyDictObject *)builtins)->ma_keys;
 1403|    130|    if (builtin_keys->dk_kind != DICT_KEYS_UNICODE) {
  ------------------
  |  Branch (1403:9): [True: 0, False: 130]
  ------------------
 1404|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_LOAD_GLOBAL_NON_STRING_OR_SPLIT);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1405|      0|        goto fail;
 1406|      0|    }
 1407|    130|    index = _PyDictKeys_StringLookup(builtin_keys, name);
 1408|    130|    if (index == DKIX_ERROR) {
  ------------------
  |  |  186|    130|#define DKIX_ERROR (-3)
  ------------------
  |  Branch (1408:9): [True: 0, False: 130]
  ------------------
 1409|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1410|      0|        goto fail;
 1411|      0|    }
 1412|    130|    if (index != (uint16_t)index) {
  ------------------
  |  Branch (1412:9): [True: 0, False: 130]
  ------------------
 1413|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1414|      0|        goto fail;
 1415|      0|    }
 1416|    130|    uint32_t globals_version = _PyDict_GetKeysVersionForCurrentState(
 1417|    130|            interp, (PyDictObject*) globals);
 1418|    130|    if (globals_version == 0) {
  ------------------
  |  Branch (1418:9): [True: 0, False: 130]
  ------------------
 1419|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1420|      0|        goto fail;
 1421|      0|    }
 1422|    130|    if (globals_version != (uint16_t)globals_version) {
  ------------------
  |  Branch (1422:9): [True: 0, False: 130]
  ------------------
 1423|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1424|      0|        goto fail;
 1425|      0|    }
 1426|    130|    uint32_t builtins_version = _PyDict_GetKeysVersionForCurrentState(
 1427|    130|            interp, (PyDictObject*) builtins);
 1428|    130|    if (builtins_version == 0) {
  ------------------
  |  Branch (1428:9): [True: 0, False: 130]
  ------------------
 1429|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1430|      0|        goto fail;
 1431|      0|    }
 1432|    130|    if (builtins_version > UINT16_MAX) {
  ------------------
  |  Branch (1432:9): [True: 0, False: 130]
  ------------------
 1433|      0|        SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_RANGE);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1434|      0|        goto fail;
 1435|      0|    }
 1436|    130|    cache->index = (uint16_t)index;
 1437|    130|    cache->module_keys_version = (uint16_t)globals_version;
 1438|    130|    cache->builtin_keys_version = (uint16_t)builtins_version;
 1439|    130|    specialize(instr, LOAD_GLOBAL_BUILTIN);
  ------------------
  |  |  201|    130|#define LOAD_GLOBAL_BUILTIN                    196
  ------------------
 1440|    130|    return;
 1441|      0|fail:
 1442|      0|    unspecialize(instr);
 1443|      0|}
specialize.c:specialize_c_call:
 1812|    132|{
 1813|    132|    if (PyCFunction_GET_FUNCTION(callable) == NULL) {
  ------------------
  |  |   43|    132|#define PyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    132|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1813:9): [True: 0, False: 132]
  ------------------
 1814|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_OTHER);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1815|      0|        return 1;
 1816|      0|    }
 1817|    132|    switch (PyCFunction_GET_FLAGS(callable) &
  ------------------
  |  |   57|    132|#define PyCFunction_GET_FLAGS(func) PyCFunction_GET_FLAGS(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|    132|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    132|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1818|    132|        (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |   95|    132|#define METH_VARARGS  0x0001
  ------------------
                      (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |  115|    132|#  define METH_FASTCALL  0x0080
  ------------------
                      (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |   98|    132|#define METH_NOARGS   0x0004
  ------------------
                      (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |   99|    132|#define METH_O        0x0008
  ------------------
 1819|    132|        METH_KEYWORDS | METH_METHOD)) {
  ------------------
  |  |   96|    132|#define METH_KEYWORDS 0x0002
  ------------------
                      METH_KEYWORDS | METH_METHOD)) {
  ------------------
  |  |  133|    132|#define METH_METHOD 0x0200
  ------------------
 1820|     14|        case METH_O: {
  ------------------
  |  |   99|     14|#define METH_O        0x0008
  ------------------
  |  Branch (1820:9): [True: 14, False: 118]
  ------------------
 1821|     14|            if (nargs != 1) {
  ------------------
  |  Branch (1821:17): [True: 0, False: 14]
  ------------------
 1822|      0|                SPECIALIZATION_FAIL(CALL, SPEC_FAIL_WRONG_NUMBER_ARGUMENTS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1823|      0|                return 1;
 1824|      0|            }
 1825|       |            /* len(o) */
 1826|     14|            PyInterpreterState *interp = _PyInterpreterState_GET();
 1827|     14|            if (callable == interp->callable_cache.len && instr->op.arg == 1) {
  ------------------
  |  Branch (1827:17): [True: 10, False: 4]
  |  Branch (1827:59): [True: 10, False: 0]
  ------------------
 1828|     10|                specialize(instr, CALL_LEN);
  ------------------
  |  |  162|     10|#define CALL_LEN                               157
  ------------------
 1829|     10|                return 0;
 1830|     10|            }
 1831|      4|            specialize(instr, CALL_BUILTIN_O);
  ------------------
  |  |  155|      4|#define CALL_BUILTIN_O                         150
  ------------------
 1832|      4|            return 0;
 1833|     14|        }
 1834|     66|        case METH_FASTCALL: {
  ------------------
  |  |  115|     66|#  define METH_FASTCALL  0x0080
  ------------------
  |  Branch (1834:9): [True: 66, False: 66]
  ------------------
 1835|     66|            if (nargs == 2) {
  ------------------
  |  Branch (1835:17): [True: 32, False: 34]
  ------------------
 1836|       |                /* isinstance(o1, o2) */
 1837|     32|                PyInterpreterState *interp = _PyInterpreterState_GET();
 1838|     32|                if (callable == interp->callable_cache.isinstance && instr->op.arg == 2) {
  ------------------
  |  Branch (1838:21): [True: 12, False: 20]
  |  Branch (1838:70): [True: 12, False: 0]
  ------------------
 1839|     12|                    specialize(instr, CALL_ISINSTANCE);
  ------------------
  |  |  158|     12|#define CALL_ISINSTANCE                        153
  ------------------
 1840|     12|                    return 0;
 1841|     12|                }
 1842|     32|            }
 1843|     54|            specialize(instr, CALL_BUILTIN_FAST);
  ------------------
  |  |  153|     54|#define CALL_BUILTIN_FAST                      148
  ------------------
 1844|     54|            return 0;
 1845|     66|        }
 1846|     24|        case METH_FASTCALL | METH_KEYWORDS: {
  ------------------
  |  |  115|     24|#  define METH_FASTCALL  0x0080
  ------------------
                      case METH_FASTCALL | METH_KEYWORDS: {
  ------------------
  |  |   96|     24|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (1846:9): [True: 24, False: 108]
  ------------------
 1847|     24|            specialize(instr, CALL_BUILTIN_FAST_WITH_KEYWORDS);
  ------------------
  |  |  154|     24|#define CALL_BUILTIN_FAST_WITH_KEYWORDS        149
  ------------------
 1848|     24|            return 0;
 1849|     66|        }
 1850|     28|        default:
  ------------------
  |  Branch (1850:9): [True: 28, False: 104]
  ------------------
 1851|     28|            specialize(instr, CALL_NON_PY_GENERAL);
  ------------------
  |  |  168|     28|#define CALL_NON_PY_GENERAL                    163
  ------------------
 1852|     28|            return 0;
 1853|    132|    }
 1854|    132|}
specialize.c:specialize_py_call:
 1740|    138|{
 1741|    138|    _PyCallCache *cache = (_PyCallCache *)(instr + 1);
 1742|    138|    PyCodeObject *code = (PyCodeObject *)func->func_code;
 1743|    138|    int kind = function_kind(code);
 1744|       |    /* Don't specialize if PEP 523 is active */
 1745|    138|    if (!_PyInterpreterState_IsSpecializationEnabled(_PyInterpreterState_GET())) {
  ------------------
  |  Branch (1745:9): [True: 0, False: 138]
  ------------------
 1746|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_PEP_523);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1747|      0|        return -1;
 1748|      0|    }
 1749|    138|    if (func->vectorcall != _PyFunction_Vectorcall) {
  ------------------
  |  Branch (1749:9): [True: 0, False: 138]
  ------------------
 1750|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_VECTORCALL);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1751|      0|        return -1;
 1752|      0|    }
 1753|    138|    int argcount = -1;
 1754|    138|    if (kind == SPEC_FAIL_CODE_NOT_OPTIMIZED) {
  ------------------
  |  |  136|    138|#define SPEC_FAIL_CODE_NOT_OPTIMIZED 8
  ------------------
  |  Branch (1754:9): [True: 0, False: 138]
  ------------------
 1755|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CODE_NOT_OPTIMIZED);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1756|      0|        return -1;
 1757|      0|    }
 1758|    138|    if (kind == SIMPLE_FUNCTION) {
  ------------------
  |  |  124|    138|#define SIMPLE_FUNCTION 0
  ------------------
  |  Branch (1758:9): [True: 112, False: 26]
  ------------------
 1759|    112|        argcount = code->co_argcount;
 1760|    112|    }
 1761|    138|    int version = _PyFunction_GetVersionForCurrentState(func);
 1762|    138|    if (!_PyFunction_IsVersionValid(version)) {
  ------------------
  |  Branch (1762:9): [True: 0, False: 138]
  ------------------
 1763|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1764|      0|        return -1;
 1765|      0|    }
 1766|    138|    write_u32(cache->func_version, version);
 1767|    138|    uint8_t opcode;
 1768|    138|    if (argcount == nargs + bound_method) {
  ------------------
  |  Branch (1768:9): [True: 106, False: 32]
  ------------------
 1769|    106|        opcode =
 1770|    106|            bound_method ? CALL_BOUND_METHOD_EXACT_ARGS : CALL_PY_EXACT_ARGS;
  ------------------
  |  |  150|     10|#define CALL_BOUND_METHOD_EXACT_ARGS           145
  ------------------
                          bound_method ? CALL_BOUND_METHOD_EXACT_ARGS : CALL_PY_EXACT_ARGS;
  ------------------
  |  |  169|    202|#define CALL_PY_EXACT_ARGS                     164
  ------------------
  |  Branch (1770:13): [True: 10, False: 96]
  ------------------
 1771|    106|    }
 1772|     32|    else {
 1773|     32|        opcode = bound_method ? CALL_BOUND_METHOD_GENERAL : CALL_PY_GENERAL;
  ------------------
  |  |  151|      2|#define CALL_BOUND_METHOD_GENERAL              146
  ------------------
                      opcode = bound_method ? CALL_BOUND_METHOD_GENERAL : CALL_PY_GENERAL;
  ------------------
  |  |  170|     62|#define CALL_PY_GENERAL                        165
  ------------------
  |  Branch (1773:18): [True: 2, False: 30]
  ------------------
 1774|     32|    }
 1775|    138|    specialize(instr, opcode);
 1776|    138|    return 0;
 1777|    138|}
specialize.c:specialize_class_call:
 1640|     40|{
 1641|     40|    assert(PyType_Check(callable));
  ------------------
  |  Branch (1641:5): [True: 40, False: 0]
  ------------------
 1642|     40|    PyTypeObject *tp = _PyType_CAST(callable);
  ------------------
  |  |  770|     40|    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
  |  |  ------------------
  |  |  |  |   37|     40|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
  |  Branch (1642:24): [True: 40, False: 0]
  ------------------
 1643|     40|    if (tp->tp_flags & Py_TPFLAGS_IMMUTABLETYPE) {
  ------------------
  |  |  500|     40|#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
  ------------------
  |  Branch (1643:9): [True: 24, False: 16]
  ------------------
 1644|     24|        int oparg = instr->op.arg;
 1645|     24|        if (nargs == 1 && oparg == 1) {
  ------------------
  |  Branch (1645:13): [True: 16, False: 8]
  |  Branch (1645:27): [True: 16, False: 0]
  ------------------
 1646|     16|            if (tp == &PyUnicode_Type) {
  ------------------
  |  Branch (1646:17): [True: 0, False: 16]
  ------------------
 1647|      0|                specialize(instr, CALL_STR_1);
  ------------------
  |  |  171|      0|#define CALL_STR_1                             166
  ------------------
 1648|      0|                return 0;
 1649|      0|            }
 1650|     16|            else if (tp == &PyType_Type) {
  ------------------
  |  Branch (1650:22): [True: 4, False: 12]
  ------------------
 1651|      4|                specialize(instr, CALL_TYPE_1);
  ------------------
  |  |  173|      4|#define CALL_TYPE_1                            168
  ------------------
 1652|      4|                return 0;
 1653|      4|            }
 1654|     12|            else if (tp == &PyTuple_Type) {
  ------------------
  |  Branch (1654:22): [True: 0, False: 12]
  ------------------
 1655|      0|                specialize(instr, CALL_TUPLE_1);
  ------------------
  |  |  172|      0|#define CALL_TUPLE_1                           167
  ------------------
 1656|      0|                return 0;
 1657|      0|            }
 1658|     16|        }
 1659|     20|        if (tp->tp_vectorcall != NULL) {
  ------------------
  |  Branch (1659:13): [True: 12, False: 8]
  ------------------
 1660|     12|            specialize(instr, CALL_BUILTIN_CLASS);
  ------------------
  |  |  152|     12|#define CALL_BUILTIN_CLASS                     147
  ------------------
 1661|     12|            return 0;
 1662|     12|        }
 1663|      8|        goto generic;
 1664|     20|    }
 1665|     16|    if (Py_TYPE(tp) != &PyType_Type) {
  ------------------
  |  |  213|     16|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|     16|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     16|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1665:9): [True: 0, False: 16]
  ------------------
 1666|      0|        goto generic;
 1667|      0|    }
 1668|     16|    if (tp->tp_new == PyBaseObject_Type.tp_new) {
  ------------------
  |  Branch (1668:9): [True: 12, False: 4]
  ------------------
 1669|     12|        unsigned int tp_version = 0;
 1670|     12|        PyObject *init = get_init_for_simple_managed_python_class(tp, &tp_version);
 1671|     12|        if (!tp_version) {
  ------------------
  |  Branch (1671:13): [True: 0, False: 12]
  ------------------
 1672|      0|            SPECIALIZATION_FAIL(CALL, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1673|      0|            Py_XDECREF(init);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1674|      0|            return -1;
 1675|      0|        }
 1676|     12|        if (init != NULL && _PyType_CacheInitForSpecialization(
  ------------------
  |  Branch (1676:13): [True: 8, False: 4]
  |  Branch (1676:29): [True: 8, False: 0]
  ------------------
 1677|      8|                                (PyHeapTypeObject *)tp, init, tp_version)) {
 1678|      8|            _PyCallCache *cache = (_PyCallCache *)(instr + 1);
 1679|      8|            write_u32(cache->func_version, tp_version);
 1680|      8|            specialize(instr, CALL_ALLOC_AND_ENTER_INIT);
  ------------------
  |  |  149|      8|#define CALL_ALLOC_AND_ENTER_INIT              144
  ------------------
 1681|      8|            Py_DECREF(init);
  ------------------
  |  |  430|      8|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1682|      8|            return 0;
 1683|      8|        }
 1684|      4|        Py_XDECREF(init);
  ------------------
  |  |  524|      4|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1685|      4|    }
 1686|     16|generic:
 1687|     16|    specialize(instr, CALL_NON_PY_GENERAL);
  ------------------
  |  |  168|     16|#define CALL_NON_PY_GENERAL                    163
  ------------------
 1688|     16|    return 0;
 1689|     16|}
specialize.c:get_init_for_simple_managed_python_class:
 1611|     12|{
 1612|     12|    assert(tp->tp_new == PyBaseObject_Type.tp_new);
  ------------------
  |  Branch (1612:5): [True: 12, False: 0]
  ------------------
 1613|     12|    if (tp->tp_alloc != PyType_GenericAlloc) {
  ------------------
  |  Branch (1613:9): [True: 0, False: 12]
  ------------------
 1614|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_OVERRIDDEN);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1615|      0|        return NULL;
 1616|      0|    }
 1617|     12|    unsigned long tp_flags = PyType_GetFlags(tp);
 1618|     12|    if (!(tp_flags & Py_TPFLAGS_HEAPTYPE)) {
  ------------------
  |  |  503|     12|#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
  ------------------
  |  Branch (1618:9): [True: 0, False: 12]
  ------------------
 1619|       |        /* Is this possible? */
 1620|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_EXPECTED_ERROR);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1621|      0|        return NULL;
 1622|      0|    }
 1623|     12|    PyObject *init = _PyType_LookupRefAndVersion(tp, &_Py_ID(__init__), tp_version);
  ------------------
  |  |  917|     12|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|     12|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|     12|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1624|     12|    if (init == NULL || !PyFunction_Check(init)) {
  ------------------
  |  |   68|     12|#define PyFunction_Check(op) Py_IS_TYPE((op), &PyFunction_Type)
  |  |  ------------------
  |  |  |  |  215|     12|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     12|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     12|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1624:9): [True: 0, False: 12]
  |  Branch (1624:25): [True: 2, False: 10]
  ------------------
 1625|      2|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_INIT_NOT_PYTHON);
  ------------------
  |  |   43|      2|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1626|      2|        Py_XDECREF(init);
  ------------------
  |  |  524|      2|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1627|      2|        return NULL;
 1628|      2|    }
 1629|     10|    int kind = function_kind((PyCodeObject *)PyFunction_GET_CODE(init));
  ------------------
  |  |   93|     10|#define PyFunction_GET_CODE(func) PyFunction_GET_CODE(_PyObject_CAST(func))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1630|     10|    if (kind != SIMPLE_FUNCTION) {
  ------------------
  |  |  124|     10|#define SIMPLE_FUNCTION 0
  ------------------
  |  Branch (1630:9): [True: 2, False: 8]
  ------------------
 1631|      2|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_INIT_NOT_SIMPLE);
  ------------------
  |  |   43|      2|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1632|      2|        Py_DECREF(init);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1633|      2|        return NULL;
 1634|      2|    }
 1635|      8|    return init;
 1636|     10|}
specialize.c:specialize_method_descriptor:
 1694|     92|{
 1695|     92|    switch (descr->d_method->ml_flags &
  ------------------
  |  Branch (1695:13): [True: 88, False: 4]
  ------------------
 1696|     92|        (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |   95|     92|#define METH_VARARGS  0x0001
  ------------------
                      (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |  115|     92|#  define METH_FASTCALL  0x0080
  ------------------
                      (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |   98|     92|#define METH_NOARGS   0x0004
  ------------------
                      (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O |
  ------------------
  |  |   99|     92|#define METH_O        0x0008
  ------------------
 1697|     92|        METH_KEYWORDS | METH_METHOD)) {
  ------------------
  |  |   96|     92|#define METH_KEYWORDS 0x0002
  ------------------
                      METH_KEYWORDS | METH_METHOD)) {
  ------------------
  |  |  133|     92|#define METH_METHOD 0x0200
  ------------------
 1698|      6|        case METH_NOARGS: {
  ------------------
  |  |   98|      6|#define METH_NOARGS   0x0004
  ------------------
  |  Branch (1698:9): [True: 6, False: 86]
  ------------------
 1699|      6|            if (nargs != 1) {
  ------------------
  |  Branch (1699:17): [True: 0, False: 6]
  ------------------
 1700|      0|                SPECIALIZATION_FAIL(CALL, SPEC_FAIL_WRONG_NUMBER_ARGUMENTS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1701|      0|                return -1;
 1702|      0|            }
 1703|      6|            specialize(instr, CALL_METHOD_DESCRIPTOR_NOARGS);
  ------------------
  |  |  166|      6|#define CALL_METHOD_DESCRIPTOR_NOARGS          161
  ------------------
 1704|      6|            return 0;
 1705|      6|        }
 1706|     30|        case METH_O: {
  ------------------
  |  |   99|     30|#define METH_O        0x0008
  ------------------
  |  Branch (1706:9): [True: 30, False: 62]
  ------------------
 1707|     30|            if (nargs != 2) {
  ------------------
  |  Branch (1707:17): [True: 0, False: 30]
  ------------------
 1708|      0|                SPECIALIZATION_FAIL(CALL, SPEC_FAIL_WRONG_NUMBER_ARGUMENTS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1709|      0|                return -1;
 1710|      0|            }
 1711|     30|            PyInterpreterState *interp = _PyInterpreterState_GET();
 1712|     30|            PyObject *list_append = interp->callable_cache.list_append;
 1713|     30|            int oparg = instr->op.arg;
 1714|     30|            if ((PyObject *)descr == list_append && oparg == 1) {
  ------------------
  |  Branch (1714:17): [True: 10, False: 20]
  |  Branch (1714:53): [True: 10, False: 0]
  ------------------
 1715|     10|                assert(self_or_null != NULL);
  ------------------
  |  Branch (1715:17): [True: 10, False: 0]
  ------------------
 1716|     10|                if (PyList_CheckExact(self_or_null)) {
  ------------------
  |  |   26|     10|#define PyList_CheckExact(op) Py_IS_TYPE((op), &PyList_Type)
  |  |  ------------------
  |  |  |  |  215|     10|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 8, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1717|      8|                    specialize(instr, CALL_LIST_APPEND);
  ------------------
  |  |  163|      8|#define CALL_LIST_APPEND                       158
  ------------------
 1718|      8|                    return 0;
 1719|      8|                }
 1720|     10|            }
 1721|     22|            specialize(instr, CALL_METHOD_DESCRIPTOR_O);
  ------------------
  |  |  167|     22|#define CALL_METHOD_DESCRIPTOR_O               162
  ------------------
 1722|     22|            return 0;
 1723|     30|        }
 1724|     44|        case METH_FASTCALL: {
  ------------------
  |  |  115|     44|#  define METH_FASTCALL  0x0080
  ------------------
  |  Branch (1724:9): [True: 44, False: 48]
  ------------------
 1725|     44|            specialize(instr, CALL_METHOD_DESCRIPTOR_FAST);
  ------------------
  |  |  164|     44|#define CALL_METHOD_DESCRIPTOR_FAST            159
  ------------------
 1726|     44|            return 0;
 1727|     30|        }
 1728|      8|        case METH_FASTCALL | METH_KEYWORDS: {
  ------------------
  |  |  115|      8|#  define METH_FASTCALL  0x0080
  ------------------
                      case METH_FASTCALL | METH_KEYWORDS: {
  ------------------
  |  |   96|      8|#define METH_KEYWORDS 0x0002
  ------------------
  |  Branch (1728:9): [True: 8, False: 84]
  ------------------
 1729|      8|            specialize(instr, CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS);
  ------------------
  |  |  165|      8|#define CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS 160
  ------------------
 1730|      8|            return 0;
 1731|     30|        }
 1732|     92|    }
 1733|      4|    specialize(instr, CALL_NON_PY_GENERAL);
  ------------------
  |  |  168|      4|#define CALL_NON_PY_GENERAL                    163
  ------------------
 1734|      4|    return 0;
 1735|     92|}
specialize.c:specialize_py_call_kw:
 1783|      6|{
 1784|      6|    _PyCallCache *cache = (_PyCallCache *)(instr + 1);
 1785|      6|    PyCodeObject *code = (PyCodeObject *)func->func_code;
 1786|      6|    int kind = function_kind(code);
 1787|       |    /* Don't specialize if PEP 523 is active */
 1788|      6|    if (!_PyInterpreterState_IsSpecializationEnabled(_PyInterpreterState_GET())) {
  ------------------
  |  Branch (1788:9): [True: 0, False: 6]
  ------------------
 1789|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_PEP_523);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1790|      0|        return -1;
 1791|      0|    }
 1792|      6|    if (func->vectorcall != _PyFunction_Vectorcall) {
  ------------------
  |  Branch (1792:9): [True: 0, False: 6]
  ------------------
 1793|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_VECTORCALL);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1794|      0|        return -1;
 1795|      0|    }
 1796|      6|    if (kind == SPEC_FAIL_CODE_NOT_OPTIMIZED) {
  ------------------
  |  |  136|      6|#define SPEC_FAIL_CODE_NOT_OPTIMIZED 8
  ------------------
  |  Branch (1796:9): [True: 0, False: 6]
  ------------------
 1797|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CODE_NOT_OPTIMIZED);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1798|      0|        return -1;
 1799|      0|    }
 1800|      6|    int version = _PyFunction_GetVersionForCurrentState(func);
 1801|      6|    if (!_PyFunction_IsVersionValid(version)) {
  ------------------
  |  Branch (1801:9): [True: 0, False: 6]
  ------------------
 1802|      0|        SPECIALIZATION_FAIL(CALL, SPEC_FAIL_OUT_OF_VERSIONS);
  ------------------
  |  |   43|      0|#  define SPECIALIZATION_FAIL(opcode, kind) ((void)0)
  ------------------
 1803|      0|        return -1;
 1804|      0|    }
 1805|      6|    write_u32(cache->func_version, version);
 1806|      6|    specialize(instr, bound_method ? CALL_KW_BOUND_METHOD : CALL_KW_PY);
  ------------------
  |  |  159|      0|#define CALL_KW_BOUND_METHOD                   154
  ------------------
                  specialize(instr, bound_method ? CALL_KW_BOUND_METHOD : CALL_KW_PY);
  ------------------
  |  |  161|     12|#define CALL_KW_PY                             156
  ------------------
  |  Branch (1806:23): [True: 0, False: 6]
  ------------------
 1807|      6|    return 0;
 1808|      6|}
specialize.c:function_kind:
 1456|    158|function_kind(PyCodeObject *code) {
 1457|    158|    int flags = code->co_flags;
 1458|    158|    if ((flags & (CO_VARKEYWORDS | CO_VARARGS)) || code->co_kwonlyargcount) {
  ------------------
  |  |  121|    158|#define CO_VARKEYWORDS  0x0008
  ------------------
                  if ((flags & (CO_VARKEYWORDS | CO_VARARGS)) || code->co_kwonlyargcount) {
  ------------------
  |  |  120|    158|#define CO_VARARGS      0x0004
  ------------------
  |  Branch (1458:9): [True: 24, False: 134]
  |  Branch (1458:52): [True: 10, False: 124]
  ------------------
 1459|     34|        return SPEC_FAIL_CODE_COMPLEX_PARAMETERS;
  ------------------
  |  |  135|     34|#define SPEC_FAIL_CODE_COMPLEX_PARAMETERS 7
  ------------------
 1460|     34|    }
 1461|    124|    if ((flags & CO_OPTIMIZED) == 0) {
  ------------------
  |  |  118|    124|#define CO_OPTIMIZED    0x0001
  ------------------
  |  Branch (1461:9): [True: 0, False: 124]
  ------------------
 1462|      0|        return SPEC_FAIL_CODE_NOT_OPTIMIZED;
  ------------------
  |  |  136|      0|#define SPEC_FAIL_CODE_NOT_OPTIMIZED 8
  ------------------
 1463|      0|    }
 1464|    124|    return SIMPLE_FUNCTION;
  ------------------
  |  |  124|    124|#define SIMPLE_FUNCTION 0
  ------------------
 1465|    124|}
specialize.c:binary_op_extended_specialization:
 2305|     12|{
 2306|     12|    size_t n = sizeof(binaryop_extend_descrs)/sizeof(_PyBinaryOpSpecializationDescr);
 2307|    304|    for (size_t i = 0; i < n; i++) {
  ------------------
  |  Branch (2307:24): [True: 298, False: 6]
  ------------------
 2308|    298|        _PyBinaryOpSpecializationDescr *d = &binaryop_extend_descrs[i];
 2309|    298|        if (d->oparg != oparg) {
  ------------------
  |  Branch (2309:13): [True: 288, False: 10]
  ------------------
 2310|    288|            continue;
 2311|    288|        }
 2312|     10|        int match = (d->guard != NULL)
  ------------------
  |  Branch (2312:21): [True: 8, False: 2]
  ------------------
 2313|     10|            ? d->guard(lhs, rhs)
 2314|     10|            : (Py_TYPE(lhs) == d->lhs_type && Py_TYPE(rhs) == d->rhs_type);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                          : (Py_TYPE(lhs) == d->lhs_type && Py_TYPE(rhs) == d->rhs_type);
  ------------------
  |  |  213|      2|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2314:16): [True: 2, False: 0]
  |  Branch (2314:47): [True: 2, False: 0]
  ------------------
 2315|     10|        if (match) {
  ------------------
  |  Branch (2315:13): [True: 6, False: 4]
  ------------------
 2316|      6|            *descr = d;
 2317|      6|            return 1;
 2318|      6|        }
 2319|     10|    }
 2320|      6|    return 0;
 2321|     12|}
specialize.c:compactlongs_guard:
 2147|     14|{
 2148|     14|    return (is_compactlong(lhs) && is_compactlong(rhs));
  ------------------
  |  Branch (2148:13): [True: 14, False: 0]
  |  Branch (2148:36): [True: 14, False: 0]
  ------------------
 2149|     14|}
specialize.c:is_compactlong:
 2122|     28|{
 2123|     28|    return PyLong_CheckExact(v) &&
  ------------------
  |  |   14|     28|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|     56|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     28|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     28|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 28, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2124|     28|           _PyLong_IsCompact((PyLongObject *)v);
  ------------------
  |  Branch (2124:12): [True: 28, False: 0]
  ------------------
 2125|     28|}
specialize.c:compactlongs_and:
 2154|     10|    { \
 2155|     10|        Py_ssize_t rhs_val = _PyLong_CompactValue((PyLongObject *)rhs); \
 2156|     10|        Py_ssize_t lhs_val = _PyLong_CompactValue((PyLongObject *)lhs); \
 2157|     10|        return PyLong_FromSsize_t(lhs_val OP rhs_val); \
 2158|     10|    }
specialize.c:float_compactlong_guard:
 2168|      2|{
 2169|      2|    return (
 2170|      2|        PyFloat_CheckExact(lhs) &&
  ------------------
  |  |   17|      2|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2171|      0|        !isnan(PyFloat_AS_DOUBLE(lhs)) &&
  ------------------
  |  Branch (2171:9): [True: 0, False: 0]
  ------------------
 2172|      2|        PyLong_CheckExact(rhs) &&
  ------------------
  |  |   14|      0|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2173|      0|        _PyLong_IsCompact((PyLongObject *)rhs)
  ------------------
  |  Branch (2173:9): [True: 0, False: 0]
  ------------------
 2174|      2|    );
 2175|      2|}
specialize.c:compactlong_float_guard:
 2203|      2|{
 2204|      2|    return (
 2205|      2|        PyLong_CheckExact(lhs) &&
  ------------------
  |  |   14|      2|#define PyLong_CheckExact(op) Py_IS_TYPE((op), &PyLong_Type)
  |  |  ------------------
  |  |  |  |  215|      4|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2206|      0|        _PyLong_IsCompact((PyLongObject *)lhs) &&
  ------------------
  |  Branch (2206:9): [True: 0, False: 0]
  ------------------
 2207|      2|        PyFloat_CheckExact(rhs) &&
  ------------------
  |  |   17|      0|#define PyFloat_CheckExact(op) Py_IS_TYPE((op), &PyFloat_Type)
  |  |  ------------------
  |  |  |  |  215|      2|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (215:32): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2208|      0|        !isnan(PyFloat_AS_DOUBLE(rhs))
  ------------------
  |  Branch (2208:9): [True: 0, False: 0]
  ------------------
 2209|      2|    );
 2210|      2|}
specialize.c:set_counter:
  347|  2.39k|{
  348|  2.39k|    FT_ATOMIC_STORE_UINT16_RELAXED(counter->value_and_backoff,
  ------------------
  |  |  171|  2.39k|#define FT_ATOMIC_STORE_UINT16_RELAXED(value, new_value) value = new_value
  ------------------
  349|  2.39k|                                   value.value_and_backoff);
  350|  2.39k|}

_PyMember_GetOffset:
   26|    566|{
   27|    566|    unsigned char *addr = (unsigned char *)obj + mp->offset;
   28|    566|    if (mp->flags & _Py_AFTER_ITEMS) {
  ------------------
  |  |   89|    566|#  define _Py_AFTER_ITEMS      (1 << 4) // For internal use.
  ------------------
  |  Branch (28:9): [True: 0, False: 566]
  ------------------
   29|      0|        PyTypeObject *type = Py_TYPE(obj);
  ------------------
  |  |  213|      0|#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   30|      0|        addr += _Py_SIZE_ROUND_UP(Py_SIZE(obj) * type->tp_itemsize, SIZEOF_VOID_P);
  ------------------
  |  |  213|      0|#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \
  |  |  214|      0|        (size_t)((a) - 1)) & ~(size_t)((a) - 1))
  ------------------
   31|      0|    }
   32|    566|    return addr;
   33|    566|}
PyMember_GetOne:
   37|    370|{
   38|    370|    PyObject *v;
   39|    370|    if (l->flags & Py_RELATIVE_OFFSET) {
  ------------------
  |  |   86|    370|#define Py_RELATIVE_OFFSET     (1 << 3)
  ------------------
  |  Branch (39:9): [True: 0, False: 370]
  ------------------
   40|      0|        PyErr_SetString(
   41|      0|            PyExc_SystemError,
   42|      0|            "PyMember_GetOne used with Py_RELATIVE_OFFSET");
   43|      0|        return NULL;
   44|      0|    }
   45|       |
   46|    370|    const void *addr = _PyMember_GetOffset((PyObject *)obj_addr, l);
   47|    370|    switch (l->type) {
   48|      0|    case Py_T_BOOL:
  ------------------
  |  |   73|      0|#define Py_T_BOOL      14
  ------------------
  |  Branch (48:5): [True: 0, False: 370]
  ------------------
   49|      0|        v = PyBool_FromLong(FT_ATOMIC_LOAD_CHAR_RELAXED(*(char*)addr));
  ------------------
  |  |  176|      0|#define FT_ATOMIC_LOAD_CHAR_RELAXED(value) value
  ------------------
   50|      0|        break;
   51|      0|    case Py_T_BYTE:
  ------------------
  |  |   62|      0|#define Py_T_BYTE      8   /* 8-bit signed int */
  ------------------
  |  Branch (51:5): [True: 0, False: 370]
  ------------------
   52|      0|        v = PyLong_FromLong(FT_ATOMIC_LOAD_CHAR_RELAXED(*(char*)addr));
  ------------------
  |  |  176|      0|#define FT_ATOMIC_LOAD_CHAR_RELAXED(value) value
  ------------------
   53|      0|        break;
   54|      0|    case Py_T_UBYTE:
  ------------------
  |  |   64|      0|#define Py_T_UBYTE     9
  ------------------
  |  Branch (54:5): [True: 0, False: 370]
  ------------------
   55|      0|        v = PyLong_FromUnsignedLong(FT_ATOMIC_LOAD_UCHAR_RELAXED(*(unsigned char*)addr));
  ------------------
  |  |  178|      0|#define FT_ATOMIC_LOAD_UCHAR_RELAXED(value) value
  ------------------
   56|      0|        break;
   57|      0|    case Py_T_SHORT:
  ------------------
  |  |   53|      0|#define Py_T_SHORT     0
  ------------------
  |  Branch (57:5): [True: 0, False: 370]
  ------------------
   58|      0|        v = PyLong_FromLong(FT_ATOMIC_LOAD_SHORT_RELAXED(*(short*)addr));
  ------------------
  |  |  180|      0|#define FT_ATOMIC_LOAD_SHORT_RELAXED(value) value
  ------------------
   59|      0|        break;
   60|      0|    case Py_T_USHORT:
  ------------------
  |  |   65|      0|#define Py_T_USHORT    10
  ------------------
  |  Branch (60:5): [True: 0, False: 370]
  ------------------
   61|      0|        v = PyLong_FromUnsignedLong(FT_ATOMIC_LOAD_USHORT_RELAXED(*(unsigned short*)addr));
  ------------------
  |  |  182|      0|#define FT_ATOMIC_LOAD_USHORT_RELAXED(value) value
  ------------------
   62|      0|        break;
   63|      0|    case Py_T_INT:
  ------------------
  |  |   54|      0|#define Py_T_INT       1
  ------------------
  |  Branch (63:5): [True: 0, False: 370]
  ------------------
   64|      0|        v = PyLong_FromLong(FT_ATOMIC_LOAD_INT_RELAXED(*(int*)addr));
  ------------------
  |  |  186|      0|#define FT_ATOMIC_LOAD_INT_RELAXED(value) value
  ------------------
   65|      0|        break;
   66|      0|    case Py_T_UINT:
  ------------------
  |  |   66|      0|#define Py_T_UINT      11
  ------------------
  |  Branch (66:5): [True: 0, False: 370]
  ------------------
   67|      0|        v = PyLong_FromUnsignedLong(FT_ATOMIC_LOAD_UINT_RELAXED(*(unsigned int*)addr));
  ------------------
  |  |  189|      0|#define FT_ATOMIC_LOAD_UINT_RELAXED(value) value
  ------------------
   68|      0|        break;
   69|      0|    case Py_T_LONG:
  ------------------
  |  |   55|      0|#define Py_T_LONG      2
  ------------------
  |  Branch (69:5): [True: 0, False: 370]
  ------------------
   70|      0|        v = PyLong_FromLong(FT_ATOMIC_LOAD_LONG_RELAXED(*(long*)addr));
  ------------------
  |  |  191|      0|#define FT_ATOMIC_LOAD_LONG_RELAXED(value) value
  ------------------
   71|      0|        break;
   72|      0|    case Py_T_ULONG:
  ------------------
  |  |   67|      0|#define Py_T_ULONG     12
  ------------------
  |  Branch (72:5): [True: 0, False: 370]
  ------------------
   73|      0|        v = PyLong_FromUnsignedLong(FT_ATOMIC_LOAD_ULONG_RELAXED(*(unsigned long*)addr));
  ------------------
  |  |  162|      0|#define FT_ATOMIC_LOAD_ULONG_RELAXED(value) value
  ------------------
   74|      0|        break;
   75|      0|    case Py_T_PYSSIZET:
  ------------------
  |  |   79|      0|#define Py_T_PYSSIZET  19      /* Py_ssize_t */
  ------------------
  |  Branch (75:5): [True: 0, False: 370]
  ------------------
   76|      0|        v = PyLong_FromSsize_t(FT_ATOMIC_LOAD_SSIZE_RELAXED(*(Py_ssize_t*)addr));
  ------------------
  |  |  149|      0|#define FT_ATOMIC_LOAD_SSIZE_RELAXED(value) value
  ------------------
   77|      0|        break;
   78|      0|    case Py_T_FLOAT:
  ------------------
  |  |   56|      0|#define Py_T_FLOAT     3
  ------------------
  |  Branch (78:5): [True: 0, False: 370]
  ------------------
   79|      0|        v = PyFloat_FromDouble((double)FT_ATOMIC_LOAD_FLOAT_RELAXED(*(float*)addr));
  ------------------
  |  |  195|      0|#define FT_ATOMIC_LOAD_FLOAT_RELAXED(value) value
  ------------------
   80|      0|        break;
   81|      0|    case Py_T_DOUBLE:
  ------------------
  |  |   57|      0|#define Py_T_DOUBLE    4
  ------------------
  |  Branch (81:5): [True: 0, False: 370]
  ------------------
   82|      0|        v = PyFloat_FromDouble(FT_ATOMIC_LOAD_DOUBLE_RELAXED(*(double*)addr));
  ------------------
  |  |  197|      0|#define FT_ATOMIC_LOAD_DOUBLE_RELAXED(value) value
  ------------------
   83|      0|        break;
   84|      0|    case Py_T_STRING:
  ------------------
  |  |   58|      0|#define Py_T_STRING    5
  ------------------
  |  Branch (84:5): [True: 0, False: 370]
  ------------------
   85|      0|        if (*(char**)addr == NULL) {
  ------------------
  |  Branch (85:13): [True: 0, False: 0]
  ------------------
   86|      0|            v = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   87|      0|        }
   88|      0|        else
   89|      0|            v = PyUnicode_FromString(*(char**)addr);
   90|      0|        break;
   91|      0|    case Py_T_STRING_INPLACE:
  ------------------
  |  |   70|      0|#define Py_T_STRING_INPLACE    13
  ------------------
  |  Branch (91:5): [True: 0, False: 370]
  ------------------
   92|      0|        v = PyUnicode_FromString((char*)addr);
   93|      0|        break;
   94|      0|    case Py_T_CHAR: {
  ------------------
  |  |   61|      0|#define Py_T_CHAR      7   /* 1-character string */
  ------------------
  |  Branch (94:5): [True: 0, False: 370]
  ------------------
   95|      0|        char char_val = FT_ATOMIC_LOAD_CHAR_RELAXED(*(char*)addr);
  ------------------
  |  |  176|      0|#define FT_ATOMIC_LOAD_CHAR_RELAXED(value) value
  ------------------
   96|      0|        v = PyUnicode_FromStringAndSize(&char_val, 1);
   97|      0|        break;
   98|      0|    }
   99|    362|    case _Py_T_OBJECT:
  ------------------
  |  |   59|    362|#define _Py_T_OBJECT   6  // Deprecated, use Py_T_OBJECT_EX instead
  ------------------
  |  Branch (99:5): [True: 362, False: 8]
  ------------------
  100|    362|        v = FT_ATOMIC_LOAD_PTR(*(PyObject **) addr);
  ------------------
  |  |  145|    362|#define FT_ATOMIC_LOAD_PTR(value) value
  ------------------
  101|    362|        if (v != NULL) {
  ------------------
  |  Branch (101:13): [True: 362, False: 0]
  ------------------
  102|       |#ifdef Py_GIL_DISABLED
  103|       |            if (!_Py_TryIncrefCompare((PyObject **) addr, v)) {
  104|       |                Py_BEGIN_CRITICAL_SECTION((PyObject *) obj_addr);
  105|       |                v = FT_ATOMIC_LOAD_PTR(*(PyObject **) addr);
  106|       |                Py_XINCREF(v);
  107|       |                Py_END_CRITICAL_SECTION();
  108|       |            }
  109|       |#else
  110|    362|            Py_INCREF(v);
  ------------------
  |  |  310|    362|#  define Py_INCREF(op) Py_INCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    362|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    362|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  111|    362|#endif
  112|    362|        }
  113|    362|        if (v == NULL) {
  ------------------
  |  Branch (113:13): [True: 0, False: 362]
  ------------------
  114|      0|            v = Py_None;
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  115|      0|        }
  116|    362|        break;
  117|      8|    case Py_T_OBJECT_EX:
  ------------------
  |  |   75|      8|#define Py_T_OBJECT_EX 16
  ------------------
  |  Branch (117:5): [True: 8, False: 362]
  ------------------
  118|      8|        v = member_get_object(addr, obj_addr, l);
  119|      8|#ifndef Py_GIL_DISABLED
  120|      8|        Py_XINCREF(v);
  ------------------
  |  |  514|      8|#  define Py_XINCREF(op) Py_XINCREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  121|       |#else
  122|       |        if (v != NULL) {
  123|       |            if (!_Py_TryIncrefCompare((PyObject **) addr, v)) {
  124|       |                Py_BEGIN_CRITICAL_SECTION((PyObject *) obj_addr);
  125|       |                v = member_get_object(addr, obj_addr, l);
  126|       |                Py_XINCREF(v);
  127|       |                Py_END_CRITICAL_SECTION();
  128|       |            }
  129|       |        }
  130|       |#endif
  131|      8|        break;
  132|      0|    case Py_T_LONGLONG:
  ------------------
  |  |   76|      0|#define Py_T_LONGLONG  17
  ------------------
  |  Branch (132:5): [True: 0, False: 370]
  ------------------
  133|      0|        v = PyLong_FromLongLong(FT_ATOMIC_LOAD_LLONG_RELAXED(*(long long *)addr));
  ------------------
  |  |  199|      0|#define FT_ATOMIC_LOAD_LLONG_RELAXED(value) value
  ------------------
  134|      0|        break;
  135|      0|    case Py_T_ULONGLONG:
  ------------------
  |  |   77|      0|#define Py_T_ULONGLONG 18
  ------------------
  |  Branch (135:5): [True: 0, False: 370]
  ------------------
  136|      0|        v = PyLong_FromUnsignedLongLong(FT_ATOMIC_LOAD_ULLONG_RELAXED(*(unsigned long long *)addr));
  ------------------
  |  |  201|      0|#define FT_ATOMIC_LOAD_ULLONG_RELAXED(value) value
  ------------------
  137|      0|        break;
  138|      0|    case _Py_T_NONE:
  ------------------
  |  |   80|      0|#define _Py_T_NONE     20 // Deprecated. Value is always None.
  ------------------
  |  Branch (138:5): [True: 0, False: 370]
  ------------------
  139|       |        // doesn't require free-threading code path
  140|      0|        v = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  141|      0|        break;
  142|      0|    default:
  ------------------
  |  Branch (142:5): [True: 0, False: 370]
  ------------------
  143|      0|        PyErr_SetString(PyExc_SystemError, "bad memberdescr type");
  144|      0|        v = NULL;
  145|    370|    }
  146|    370|    return v;
  147|    370|}
PyMember_SetOne:
  157|    130|{
  158|    130|    PyObject *oldv;
  159|    130|    if (l->flags & Py_RELATIVE_OFFSET) {
  ------------------
  |  |   86|    130|#define Py_RELATIVE_OFFSET     (1 << 3)
  ------------------
  |  Branch (159:9): [True: 0, False: 130]
  ------------------
  160|      0|        PyErr_SetString(
  161|      0|            PyExc_SystemError,
  162|      0|            "PyMember_SetOne used with Py_RELATIVE_OFFSET");
  163|      0|        return -1;
  164|      0|    }
  165|       |
  166|    130|    PyObject *obj = (PyObject *)addr;
  167|    130|    addr = _PyMember_GetOffset(obj, l);
  168|       |
  169|    130|    if ((l->flags & Py_READONLY))
  ------------------
  |  |   83|    130|#define Py_READONLY            (1 << 0)
  ------------------
  |  Branch (169:9): [True: 0, False: 130]
  ------------------
  170|      0|    {
  171|      0|        PyErr_SetString(PyExc_AttributeError, "readonly attribute");
  172|      0|        return -1;
  173|      0|    }
  174|    130|    if (v == NULL && l->type != Py_T_OBJECT_EX && l->type != _Py_T_OBJECT) {
  ------------------
  |  |   75|    130|#define Py_T_OBJECT_EX 16
  ------------------
                  if (v == NULL && l->type != Py_T_OBJECT_EX && l->type != _Py_T_OBJECT) {
  ------------------
  |  |   59|      0|#define _Py_T_OBJECT   6  // Deprecated, use Py_T_OBJECT_EX instead
  ------------------
  |  Branch (174:9): [True: 0, False: 130]
  |  Branch (174:22): [True: 0, False: 0]
  |  Branch (174:51): [True: 0, False: 0]
  ------------------
  175|      0|        PyErr_SetString(PyExc_TypeError,
  176|      0|                        "can't delete numeric/char attribute");
  177|      0|        return -1;
  178|      0|    }
  179|    130|    switch (l->type) {
  180|      0|    case Py_T_BOOL:{
  ------------------
  |  |   73|      0|#define Py_T_BOOL      14
  ------------------
  |  Branch (180:5): [True: 0, False: 130]
  ------------------
  181|      0|        if (!PyBool_Check(v)) {
  ------------------
  |  |   12|      0|#define PyBool_Check(x) Py_IS_TYPE((x), &PyBool_Type)
  |  |  ------------------
  |  |  |  |  215|      0|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (181:13): [True: 0, False: 0]
  ------------------
  182|      0|            PyErr_SetString(PyExc_TypeError,
  183|      0|                            "attribute value type must be bool");
  184|      0|            return -1;
  185|      0|        }
  186|      0|        if (v == Py_True)
  ------------------
  |  |   26|      0|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (186:13): [True: 0, False: 0]
  ------------------
  187|      0|            FT_ATOMIC_STORE_CHAR_RELAXED(*(char*)addr, 1);
  ------------------
  |  |  177|      0|#define FT_ATOMIC_STORE_CHAR_RELAXED(value, new_value) value = new_value
  ------------------
  188|      0|        else
  189|      0|            FT_ATOMIC_STORE_CHAR_RELAXED(*(char*)addr, 0);
  ------------------
  |  |  177|      0|#define FT_ATOMIC_STORE_CHAR_RELAXED(value, new_value) value = new_value
  ------------------
  190|      0|        break;
  191|      0|        }
  192|      0|    case Py_T_BYTE:{
  ------------------
  |  |   62|      0|#define Py_T_BYTE      8   /* 8-bit signed int */
  ------------------
  |  Branch (192:5): [True: 0, False: 130]
  ------------------
  193|      0|        long long_val = PyLong_AsLong(v);
  194|      0|        if ((long_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (194:13): [True: 0, False: 0]
  |  Branch (194:33): [True: 0, False: 0]
  ------------------
  195|      0|            return -1;
  196|      0|        FT_ATOMIC_STORE_CHAR_RELAXED(*(char*)addr, (char)long_val);
  ------------------
  |  |  177|      0|#define FT_ATOMIC_STORE_CHAR_RELAXED(value, new_value) value = new_value
  ------------------
  197|       |        /* XXX: For compatibility, only warn about truncations
  198|       |           for now. */
  199|      0|        if ((long_val > CHAR_MAX) || (long_val < CHAR_MIN))
  ------------------
  |  Branch (199:13): [True: 0, False: 0]
  |  Branch (199:38): [True: 0, False: 0]
  ------------------
  200|      0|            WARN("Truncation of value to char");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  201|      0|        break;
  202|      0|        }
  203|      0|    case Py_T_UBYTE:{
  ------------------
  |  |   64|      0|#define Py_T_UBYTE     9
  ------------------
  |  Branch (203:5): [True: 0, False: 130]
  ------------------
  204|      0|        long long_val = PyLong_AsLong(v);
  205|      0|        if ((long_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (205:13): [True: 0, False: 0]
  |  Branch (205:33): [True: 0, False: 0]
  ------------------
  206|      0|            return -1;
  207|      0|        FT_ATOMIC_STORE_UCHAR_RELAXED(*(unsigned char*)addr, (unsigned char)long_val);
  ------------------
  |  |  179|      0|#define FT_ATOMIC_STORE_UCHAR_RELAXED(value, new_value) value = new_value
  ------------------
  208|      0|        if ((long_val > UCHAR_MAX) || (long_val < 0))
  ------------------
  |  Branch (208:13): [True: 0, False: 0]
  |  Branch (208:39): [True: 0, False: 0]
  ------------------
  209|      0|            WARN("Truncation of value to unsigned char");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  210|      0|        break;
  211|      0|        }
  212|      0|    case Py_T_SHORT:{
  ------------------
  |  |   53|      0|#define Py_T_SHORT     0
  ------------------
  |  Branch (212:5): [True: 0, False: 130]
  ------------------
  213|      0|        long long_val = PyLong_AsLong(v);
  214|      0|        if ((long_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (214:13): [True: 0, False: 0]
  |  Branch (214:33): [True: 0, False: 0]
  ------------------
  215|      0|            return -1;
  216|      0|        FT_ATOMIC_STORE_SHORT_RELAXED(*(short*)addr, (short)long_val);
  ------------------
  |  |  181|      0|#define FT_ATOMIC_STORE_SHORT_RELAXED(value, new_value) value = new_value
  ------------------
  217|      0|        if ((long_val > SHRT_MAX) || (long_val < SHRT_MIN))
  ------------------
  |  Branch (217:13): [True: 0, False: 0]
  |  Branch (217:38): [True: 0, False: 0]
  ------------------
  218|      0|            WARN("Truncation of value to short");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  219|      0|        break;
  220|      0|        }
  221|      0|    case Py_T_USHORT:{
  ------------------
  |  |   65|      0|#define Py_T_USHORT    10
  ------------------
  |  Branch (221:5): [True: 0, False: 130]
  ------------------
  222|      0|        long long_val = PyLong_AsLong(v);
  223|      0|        if ((long_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (223:13): [True: 0, False: 0]
  |  Branch (223:33): [True: 0, False: 0]
  ------------------
  224|      0|            return -1;
  225|      0|        FT_ATOMIC_STORE_USHORT_RELAXED(*(unsigned short*)addr, (unsigned short)long_val);
  ------------------
  |  |  183|      0|#define FT_ATOMIC_STORE_USHORT_RELAXED(value, new_value) value = new_value
  ------------------
  226|      0|        if ((long_val > USHRT_MAX) || (long_val < 0))
  ------------------
  |  Branch (226:13): [True: 0, False: 0]
  |  Branch (226:39): [True: 0, False: 0]
  ------------------
  227|      0|            WARN("Truncation of value to unsigned short");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  228|      0|        break;
  229|      0|        }
  230|      0|    case Py_T_INT:{
  ------------------
  |  |   54|      0|#define Py_T_INT       1
  ------------------
  |  Branch (230:5): [True: 0, False: 130]
  ------------------
  231|      0|        long long_val = PyLong_AsLong(v);
  232|      0|        if ((long_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (232:13): [True: 0, False: 0]
  |  Branch (232:33): [True: 0, False: 0]
  ------------------
  233|      0|            return -1;
  234|      0|        FT_ATOMIC_STORE_INT_RELAXED(*(int *)addr, (int)long_val);
  ------------------
  |  |  187|      0|#define FT_ATOMIC_STORE_INT_RELAXED(value, new_value) value = new_value
  ------------------
  235|      0|        if ((long_val > INT_MAX) || (long_val < INT_MIN))
  ------------------
  |  Branch (235:13): [True: 0, False: 0]
  |  Branch (235:37): [True: 0, False: 0]
  ------------------
  236|      0|            WARN("Truncation of value to int");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  237|      0|        break;
  238|      0|        }
  239|      0|    case Py_T_UINT: {
  ------------------
  |  |   66|      0|#define Py_T_UINT      11
  ------------------
  |  Branch (239:5): [True: 0, False: 130]
  ------------------
  240|       |        /* XXX: For compatibility, accept negative int values
  241|       |           as well. */
  242|      0|        v = _PyNumber_Index(v);
  243|      0|        if (v == NULL) {
  ------------------
  |  Branch (243:13): [True: 0, False: 0]
  ------------------
  244|      0|            return -1;
  245|      0|        }
  246|      0|        if (_PyLong_IsNegative((PyLongObject *)v)) {
  ------------------
  |  Branch (246:13): [True: 0, False: 0]
  ------------------
  247|      0|            long long_val = PyLong_AsLong(v);
  248|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  249|      0|            if (long_val == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (249:17): [True: 0, False: 0]
  |  Branch (249:35): [True: 0, False: 0]
  ------------------
  250|      0|                return -1;
  251|      0|            }
  252|      0|            FT_ATOMIC_STORE_UINT_RELAXED(*(unsigned int *)addr, (unsigned int)(unsigned long)long_val);
  ------------------
  |  |  190|      0|#define FT_ATOMIC_STORE_UINT_RELAXED(value, new_value) value = new_value
  ------------------
  253|      0|            WARN("Writing negative value into unsigned field");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  254|      0|        }
  255|      0|        else {
  256|      0|            unsigned long ulong_val = PyLong_AsUnsignedLong(v);
  257|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  258|      0|            if (ulong_val == (unsigned long)-1 && PyErr_Occurred()) {
  ------------------
  |  Branch (258:17): [True: 0, False: 0]
  |  Branch (258:51): [True: 0, False: 0]
  ------------------
  259|      0|                return -1;
  260|      0|            }
  261|      0|            FT_ATOMIC_STORE_UINT_RELAXED(*(unsigned int *)addr, (unsigned int)ulong_val);
  ------------------
  |  |  190|      0|#define FT_ATOMIC_STORE_UINT_RELAXED(value, new_value) value = new_value
  ------------------
  262|      0|            if (ulong_val > UINT_MAX) {
  ------------------
  |  Branch (262:17): [True: 0, False: 0]
  ------------------
  263|      0|                WARN("Truncation of value to unsigned int");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  264|      0|            }
  265|      0|        }
  266|      0|        break;
  267|      0|    }
  268|      0|    case Py_T_LONG: {
  ------------------
  |  |   55|      0|#define Py_T_LONG      2
  ------------------
  |  Branch (268:5): [True: 0, False: 130]
  ------------------
  269|      0|        const long long_val = PyLong_AsLong(v);
  270|      0|        if ((long_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (270:13): [True: 0, False: 0]
  |  Branch (270:33): [True: 0, False: 0]
  ------------------
  271|      0|            return -1;
  272|      0|        FT_ATOMIC_STORE_LONG_RELAXED(*(long*)addr, long_val);
  ------------------
  |  |  192|      0|#define FT_ATOMIC_STORE_LONG_RELAXED(value, new_value) value = new_value
  ------------------
  273|      0|        break;
  274|      0|    }
  275|      0|    case Py_T_ULONG: {
  ------------------
  |  |   67|      0|#define Py_T_ULONG     12
  ------------------
  |  Branch (275:5): [True: 0, False: 130]
  ------------------
  276|       |        /* XXX: For compatibility, accept negative int values
  277|       |           as well. */
  278|      0|        v = _PyNumber_Index(v);
  279|      0|        if (v == NULL) {
  ------------------
  |  Branch (279:13): [True: 0, False: 0]
  ------------------
  280|      0|            return -1;
  281|      0|        }
  282|      0|        if (_PyLong_IsNegative((PyLongObject *)v)) {
  ------------------
  |  Branch (282:13): [True: 0, False: 0]
  ------------------
  283|      0|            long long_val = PyLong_AsLong(v);
  284|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  285|      0|            if (long_val == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (285:17): [True: 0, False: 0]
  |  Branch (285:35): [True: 0, False: 0]
  ------------------
  286|      0|                return -1;
  287|      0|            }
  288|      0|            FT_ATOMIC_STORE_ULONG_RELAXED(*(unsigned long *)addr, (unsigned long)long_val);
  ------------------
  |  |  193|      0|#define FT_ATOMIC_STORE_ULONG_RELAXED(value, new_value) value = new_value
  ------------------
  289|      0|            WARN("Writing negative value into unsigned field");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  290|      0|        }
  291|      0|        else {
  292|      0|            unsigned long ulong_val = PyLong_AsUnsignedLong(v);
  293|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  294|      0|            if (ulong_val == (unsigned long)-1 && PyErr_Occurred()) {
  ------------------
  |  Branch (294:17): [True: 0, False: 0]
  |  Branch (294:51): [True: 0, False: 0]
  ------------------
  295|      0|                return -1;
  296|      0|            }
  297|      0|            FT_ATOMIC_STORE_ULONG_RELAXED(*(unsigned long *)addr, ulong_val);
  ------------------
  |  |  193|      0|#define FT_ATOMIC_STORE_ULONG_RELAXED(value, new_value) value = new_value
  ------------------
  298|      0|        }
  299|      0|        break;
  300|      0|    }
  301|      0|    case Py_T_PYSSIZET: {
  ------------------
  |  |   79|      0|#define Py_T_PYSSIZET  19      /* Py_ssize_t */
  ------------------
  |  Branch (301:5): [True: 0, False: 130]
  ------------------
  302|      0|        const Py_ssize_t ssize_val = PyLong_AsSsize_t(v);
  303|      0|        if ((ssize_val == (Py_ssize_t)-1) && PyErr_Occurred())
  ------------------
  |  Branch (303:13): [True: 0, False: 0]
  |  Branch (303:46): [True: 0, False: 0]
  ------------------
  304|      0|            return -1;
  305|      0|        FT_ATOMIC_STORE_SSIZE_RELAXED(*(Py_ssize_t*)addr, ssize_val);
  ------------------
  |  |  194|      0|#define FT_ATOMIC_STORE_SSIZE_RELAXED(value, new_value) value = new_value
  ------------------
  306|      0|        break;
  307|      0|    }
  308|      0|    case Py_T_FLOAT:{
  ------------------
  |  |   56|      0|#define Py_T_FLOAT     3
  ------------------
  |  Branch (308:5): [True: 0, False: 130]
  ------------------
  309|      0|        double double_val = PyFloat_AsDouble(v);
  310|      0|        if ((double_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (310:13): [True: 0, False: 0]
  |  Branch (310:35): [True: 0, False: 0]
  ------------------
  311|      0|            return -1;
  312|      0|        FT_ATOMIC_STORE_FLOAT_RELAXED(*(float*)addr, (float)double_val);
  ------------------
  |  |  196|      0|#define FT_ATOMIC_STORE_FLOAT_RELAXED(value, new_value) value = new_value
  ------------------
  313|      0|        break;
  314|      0|        }
  315|      0|    case Py_T_DOUBLE: {
  ------------------
  |  |   57|      0|#define Py_T_DOUBLE    4
  ------------------
  |  Branch (315:5): [True: 0, False: 130]
  ------------------
  316|      0|        const double double_val = PyFloat_AsDouble(v);
  317|      0|        if ((double_val == -1) && PyErr_Occurred())
  ------------------
  |  Branch (317:13): [True: 0, False: 0]
  |  Branch (317:35): [True: 0, False: 0]
  ------------------
  318|      0|            return -1;
  319|      0|        FT_ATOMIC_STORE_DOUBLE_RELAXED(*(double *) addr, double_val);
  ------------------
  |  |  198|      0|#define FT_ATOMIC_STORE_DOUBLE_RELAXED(value, new_value) value = new_value
  ------------------
  320|      0|        break;
  321|      0|    }
  322|    122|    case _Py_T_OBJECT:
  ------------------
  |  |   59|    122|#define _Py_T_OBJECT   6  // Deprecated, use Py_T_OBJECT_EX instead
  ------------------
  |  Branch (322:5): [True: 122, False: 8]
  ------------------
  323|    130|    case Py_T_OBJECT_EX:
  ------------------
  |  |   75|    130|#define Py_T_OBJECT_EX 16
  ------------------
  |  Branch (323:5): [True: 8, False: 122]
  ------------------
  324|    130|        Py_BEGIN_CRITICAL_SECTION(obj);
  ------------------
  |  |   51|    130|    {
  ------------------
  325|    130|        oldv = *(PyObject **)addr;
  326|    130|        FT_ATOMIC_STORE_PTR_RELEASE(*(PyObject **)addr, Py_XNewRef(v));
  ------------------
  |  |  164|    130|#define FT_ATOMIC_STORE_PTR_RELEASE(value, new_value) value = new_value
  ------------------
  327|    130|        Py_END_CRITICAL_SECTION();
  ------------------
  |  |   55|    130|    }
  ------------------
  328|    130|        if (v == NULL && oldv == NULL && l->type == Py_T_OBJECT_EX) {
  ------------------
  |  |   75|      0|#define Py_T_OBJECT_EX 16
  ------------------
  |  Branch (328:13): [True: 0, False: 130]
  |  Branch (328:26): [True: 0, False: 0]
  |  Branch (328:42): [True: 0, False: 0]
  ------------------
  329|       |            // Raise an exception when attempting to delete an already deleted
  330|       |            // attribute.
  331|       |            // Differently from Py_T_OBJECT_EX, _Py_T_OBJECT does not raise an
  332|       |            // exception here (PyMember_GetOne will return Py_None instead of
  333|       |            // NULL).
  334|      0|            PyErr_SetString(PyExc_AttributeError, l->name);
  335|      0|            return -1;
  336|      0|        }
  337|    130|        Py_XDECREF(oldv);
  ------------------
  |  |  524|    130|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    130|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    130|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  338|    130|        break;
  339|      0|    case Py_T_CHAR: {
  ------------------
  |  |   61|      0|#define Py_T_CHAR      7   /* 1-character string */
  ------------------
  |  Branch (339:5): [True: 0, False: 130]
  ------------------
  340|      0|        const char *string;
  341|      0|        Py_ssize_t len;
  342|       |
  343|      0|        string = PyUnicode_AsUTF8AndSize(v, &len);
  344|      0|        if (string == NULL || len != 1) {
  ------------------
  |  Branch (344:13): [True: 0, False: 0]
  |  Branch (344:31): [True: 0, False: 0]
  ------------------
  345|      0|            PyErr_BadArgument();
  346|      0|            return -1;
  347|      0|        }
  348|      0|        FT_ATOMIC_STORE_CHAR_RELAXED(*(char*)addr, string[0]);
  ------------------
  |  |  177|      0|#define FT_ATOMIC_STORE_CHAR_RELAXED(value, new_value) value = new_value
  ------------------
  349|      0|        break;
  350|      0|        }
  351|      0|    case Py_T_STRING:
  ------------------
  |  |   58|      0|#define Py_T_STRING    5
  ------------------
  |  Branch (351:5): [True: 0, False: 130]
  ------------------
  352|      0|    case Py_T_STRING_INPLACE:
  ------------------
  |  |   70|      0|#define Py_T_STRING_INPLACE    13
  ------------------
  |  Branch (352:5): [True: 0, False: 130]
  ------------------
  353|      0|        PyErr_SetString(PyExc_TypeError, "readonly attribute");
  354|      0|        return -1;
  355|      0|    case Py_T_LONGLONG:{
  ------------------
  |  |   76|      0|#define Py_T_LONGLONG  17
  ------------------
  |  Branch (355:5): [True: 0, False: 130]
  ------------------
  356|      0|        long long value = PyLong_AsLongLong(v);
  357|      0|        if ((value == -1) && PyErr_Occurred())
  ------------------
  |  Branch (357:13): [True: 0, False: 0]
  |  Branch (357:30): [True: 0, False: 0]
  ------------------
  358|      0|            return -1;
  359|      0|        FT_ATOMIC_STORE_LLONG_RELAXED(*(long long*)addr, value);
  ------------------
  |  |  200|      0|#define FT_ATOMIC_STORE_LLONG_RELAXED(value, new_value) value = new_value
  ------------------
  360|      0|        break;
  361|      0|        }
  362|      0|    case Py_T_ULONGLONG: {
  ------------------
  |  |   77|      0|#define Py_T_ULONGLONG 18
  ------------------
  |  Branch (362:5): [True: 0, False: 130]
  ------------------
  363|      0|        v = _PyNumber_Index(v);
  364|      0|        if (v == NULL) {
  ------------------
  |  Branch (364:13): [True: 0, False: 0]
  ------------------
  365|      0|            return -1;
  366|      0|        }
  367|      0|        if (_PyLong_IsNegative((PyLongObject *)v)) {
  ------------------
  |  Branch (367:13): [True: 0, False: 0]
  ------------------
  368|      0|            long long_val = PyLong_AsLong(v);
  369|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  370|      0|            if (long_val == -1 && PyErr_Occurred()) {
  ------------------
  |  Branch (370:17): [True: 0, False: 0]
  |  Branch (370:35): [True: 0, False: 0]
  ------------------
  371|      0|                return -1;
  372|      0|            }
  373|      0|            FT_ATOMIC_STORE_ULLONG_RELAXED(*(unsigned long long *)addr, (unsigned long long)(long long)long_val);
  ------------------
  |  |  202|      0|#define FT_ATOMIC_STORE_ULLONG_RELAXED(value, new_value) value = new_value
  ------------------
  374|      0|            WARN("Writing negative value into unsigned field");
  ------------------
  |  |  150|      0|    do {                                                        \
  |  |  151|      0|    if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0)         \
  |  |  ------------------
  |  |  |  Branch (151:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  152|      0|        return -1;                                              \
  |  |  153|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (153:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  375|      0|        }
  376|      0|        else {
  377|      0|            unsigned long long ulonglong_val = PyLong_AsUnsignedLongLong(v);
  378|      0|            Py_DECREF(v);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  379|      0|            if (ulonglong_val == (unsigned long long)-1 && PyErr_Occurred()) {
  ------------------
  |  Branch (379:17): [True: 0, False: 0]
  |  Branch (379:60): [True: 0, False: 0]
  ------------------
  380|      0|                return -1;
  381|      0|            }
  382|      0|            FT_ATOMIC_STORE_ULLONG_RELAXED(*(unsigned long long *)addr, ulonglong_val);
  ------------------
  |  |  202|      0|#define FT_ATOMIC_STORE_ULLONG_RELAXED(value, new_value) value = new_value
  ------------------
  383|      0|        }
  384|      0|        break;
  385|      0|    }
  386|      0|    default:
  ------------------
  |  Branch (386:5): [True: 0, False: 130]
  ------------------
  387|      0|        PyErr_Format(PyExc_SystemError,
  388|      0|                     "bad memberdescr type for %s", l->name);
  389|      0|        return -1;
  390|    130|    }
  391|    130|    return 0;
  392|    130|}
structmember.c:member_get_object:
   14|      8|{
   15|      8|    PyObject *v = FT_ATOMIC_LOAD_PTR(*(PyObject **) addr);
  ------------------
  |  |  145|      8|#define FT_ATOMIC_LOAD_PTR(value) value
  ------------------
   16|      8|    if (v == NULL) {
  ------------------
  |  Branch (16:9): [True: 0, False: 8]
  ------------------
   17|      0|        PyErr_Format(PyExc_AttributeError,
   18|      0|                     "'%T' object has no attribute '%s'",
   19|      0|                     (PyObject *)obj_addr, l->name);
   20|      0|    }
   21|      8|    return v;
   22|      8|}

_Py_Mangle:
 3300|     10|{
 3301|       |    /* Name mangling: __private becomes _classname__private.
 3302|       |       This is independent from how the name is used. */
 3303|     10|    if (privateobj == NULL || !PyUnicode_Check(privateobj) ||
  ------------------
  |  |  103|     10|    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|     20|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (3303:9): [True: 0, False: 10]
  |  Branch (3303:31): [True: 0, False: 10]
  ------------------
 3304|     10|        PyUnicode_READ_CHAR(ident, 0) != '_' ||
  ------------------
  |  |  381|     10|    PyUnicode_READ_CHAR(_PyObject_CAST(unicode), (index))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3304:9): [True: 2, False: 8]
  ------------------
 3305|     10|        PyUnicode_READ_CHAR(ident, 1) != '_') {
  ------------------
  |  |  381|      8|    PyUnicode_READ_CHAR(_PyObject_CAST(unicode), (index))
  |  |  ------------------
  |  |  |  |  171|      8|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      8|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3305:9): [True: 8, False: 0]
  ------------------
 3306|     10|        return Py_NewRef(ident);
  ------------------
  |  |  550|     10|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     10|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     10|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3307|     10|    }
 3308|      0|    size_t nlen = PyUnicode_GET_LENGTH(ident);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3309|      0|    size_t plen = PyUnicode_GET_LENGTH(privateobj);
  ------------------
  |  |  299|      0|#define PyUnicode_GET_LENGTH(op) PyUnicode_GET_LENGTH(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3310|       |    /* Don't mangle __id__ or names with dots.
 3311|       |
 3312|       |       The only time a name with a dot can occur is when
 3313|       |       we are compiling an import statement that has a
 3314|       |       package name.
 3315|       |
 3316|       |       TODO(jhylton): Decide whether we want to support
 3317|       |       mangling of the module name, e.g. __M.X.
 3318|       |    */
 3319|      0|    if ((PyUnicode_READ_CHAR(ident, nlen-1) == '_' &&
  ------------------
  |  |  381|      0|    PyUnicode_READ_CHAR(_PyObject_CAST(unicode), (index))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3319:10): [True: 0, False: 0]
  ------------------
 3320|      0|         PyUnicode_READ_CHAR(ident, nlen-2) == '_') ||
  ------------------
  |  |  381|      0|    PyUnicode_READ_CHAR(_PyObject_CAST(unicode), (index))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3320:10): [True: 0, False: 0]
  ------------------
 3321|      0|        PyUnicode_FindChar(ident, '.', 0, nlen, 1) != -1) {
  ------------------
  |  Branch (3321:9): [True: 0, False: 0]
  ------------------
 3322|      0|        return Py_NewRef(ident); /* Don't mangle __whatever__ */
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3323|      0|    }
 3324|       |    /* Strip leading underscores from class name */
 3325|      0|    size_t ipriv = 0;
 3326|      0|    while (PyUnicode_READ_CHAR(privateobj, ipriv) == '_') {
  ------------------
  |  |  381|      0|    PyUnicode_READ_CHAR(_PyObject_CAST(unicode), (index))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3326:12): [True: 0, False: 0]
  ------------------
 3327|      0|        ipriv++;
 3328|      0|    }
 3329|      0|    if (ipriv == plen) {
  ------------------
  |  Branch (3329:9): [True: 0, False: 0]
  ------------------
 3330|      0|        return Py_NewRef(ident); /* Don't mangle if class is just underscores */
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3331|      0|    }
 3332|       |
 3333|      0|    if (nlen + (plen - ipriv) >= PY_SSIZE_T_MAX - 1) {
  ------------------
  |  |  137|      0|#   define PY_SSIZE_T_MAX SSIZE_MAX
  ------------------
  |  Branch (3333:9): [True: 0, False: 0]
  ------------------
 3334|      0|        PyErr_SetString(PyExc_OverflowError,
 3335|      0|                        "private identifier too large to be mangled");
 3336|      0|        return NULL;
 3337|      0|    }
 3338|       |
 3339|      0|    PyUnicodeWriter *writer = PyUnicodeWriter_Create(1 + nlen + (plen - ipriv));
 3340|      0|    if (!writer) {
  ------------------
  |  Branch (3340:9): [True: 0, False: 0]
  ------------------
 3341|      0|        return NULL;
 3342|      0|    }
 3343|       |    // ident = "_" + priv[ipriv:] + ident
 3344|      0|    if (PyUnicodeWriter_WriteChar(writer, '_') < 0) {
  ------------------
  |  Branch (3344:9): [True: 0, False: 0]
  ------------------
 3345|      0|        goto error;
 3346|      0|    }
 3347|      0|    if (PyUnicodeWriter_WriteSubstring(writer, privateobj, ipriv, plen) < 0) {
  ------------------
  |  Branch (3347:9): [True: 0, False: 0]
  ------------------
 3348|      0|        goto error;
 3349|      0|    }
 3350|      0|    if (PyUnicodeWriter_WriteStr(writer, ident) < 0) {
  ------------------
  |  Branch (3350:9): [True: 0, False: 0]
  ------------------
 3351|      0|        goto error;
 3352|      0|    }
 3353|      0|    return PyUnicodeWriter_Finish(writer);
 3354|       |
 3355|      0|error:
 3356|      0|    PyUnicodeWriter_Discard(writer);
 3357|       |    return NULL;
 3358|      0|}

PySys_GetAttrString:
  103|      4|{
  104|      4|    PyThreadState *tstate = _PyThreadState_GET();
  105|      4|    PyObject *sysdict = tstate->interp->sysdict;
  106|      4|    if (sysdict == NULL) {
  ------------------
  |  Branch (106:9): [True: 0, False: 4]
  ------------------
  107|      0|        PyErr_SetString(PyExc_RuntimeError, "no sys module");
  108|      0|        return NULL;
  109|      0|    }
  110|      4|    PyObject *value;
  111|      4|    if (PyDict_GetItemStringRef(sysdict, name, &value) == 0) {
  ------------------
  |  Branch (111:9): [True: 0, False: 4]
  ------------------
  112|      0|        PyErr_Format(PyExc_RuntimeError, "lost sys.%s", name);
  113|      0|    }
  114|      4|    return value;
  115|      4|}
PySys_GetOptionalAttrString:
  138|      2|{
  139|      2|    PyThreadState *tstate = _PyThreadState_GET();
  140|      2|    PyObject *sysdict = tstate->interp->sysdict;
  141|      2|    if (sysdict == NULL) {
  ------------------
  |  Branch (141:9): [True: 0, False: 2]
  ------------------
  142|      0|        *value = NULL;
  143|      0|        return 0;
  144|      0|    }
  145|      2|    return PyDict_GetItemStringRef(sysdict, name, value);
  146|      2|}
_PySys_SetAttr:
  193|      6|{
  194|      6|    PyInterpreterState *interp = _PyInterpreterState_GET();
  195|      6|    return sys_set_object(interp, key, v);
  196|      6|}
PySys_SetObject:
  210|      6|{
  211|      6|    PyInterpreterState *interp = _PyInterpreterState_GET();
  212|      6|    return sys_set_object_str(interp, name, v);
  213|      6|}
_PySys_Audit:
  374|      2|{
  375|      2|    va_list vargs;
  376|      2|    va_start(vargs, argFormat);
  377|      2|    int res = sys_audit_tstate(tstate, event, argFormat, vargs);
  378|       |    va_end(vargs);
  379|      2|    return res;
  380|      2|}
PySys_Audit:
  384|     90|{
  385|     90|    PyThreadState *tstate = _PyThreadState_GET();
  386|     90|    va_list vargs;
  387|     90|    va_start(vargs, argFormat);
  388|     90|    int res = sys_audit_tstate(tstate, event, argFormat, vargs);
  389|       |    va_end(vargs);
  390|     90|    return res;
  391|     90|}
_PySys_ReadPreinitWarnOptions:
 3092|      2|{
 3093|      2|    PyStatus status;
 3094|      2|    _Py_PreInitEntry entry;
 3095|       |
 3096|      2|    for (entry = _preinit_warnoptions; entry != NULL; entry = entry->next) {
  ------------------
  |  Branch (3096:40): [True: 0, False: 2]
  ------------------
 3097|      0|        status = PyWideStringList_Append(options, entry->value);
 3098|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3099|      0|            return status;
 3100|      0|        }
 3101|      0|    }
 3102|       |
 3103|      2|    _clear_preinit_entries(&_preinit_warnoptions);
 3104|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3105|      2|}
_PySys_ReadPreinitXOptions:
 3110|      2|{
 3111|      2|    PyStatus status;
 3112|      2|    _Py_PreInitEntry entry;
 3113|       |
 3114|      2|    for (entry = _preinit_xoptions; entry != NULL; entry = entry->next) {
  ------------------
  |  Branch (3114:37): [True: 0, False: 2]
  ------------------
 3115|      0|        status = PyWideStringList_Append(&config->xoptions, entry->value);
 3116|      0|        if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      0|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 3117|      0|            return status;
 3118|      0|        }
 3119|      0|    }
 3120|       |
 3121|      2|    _clear_preinit_entries(&_preinit_xoptions);
 3122|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 3123|      2|}
_PySys_UpdateConfig:
 4102|      2|{
 4103|      2|    PyInterpreterState *interp = tstate->interp;
 4104|      2|    PyObject *sysdict = interp->sysdict;
 4105|      2|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
 4106|      2|    int res;
 4107|       |
 4108|      2|#define COPY_LIST(KEY, VALUE) \
 4109|      2|        SET_SYS(KEY, _PyWideStringList_AsList(&(VALUE)));
 4110|       |
 4111|      2|#define SET_SYS_FROM_WSTR(KEY, VALUE) \
 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
 4113|       |
 4114|      2|#define COPY_WSTR(SYS_ATTR, WSTR) \
 4115|      2|    if (WSTR != NULL) { \
 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
 4117|      2|    }
 4118|       |
 4119|      2|    if (config->module_search_paths_set) {
  ------------------
  |  Branch (4119:9): [True: 2, False: 0]
  ------------------
 4120|      2|        COPY_LIST("path", config->module_search_paths);
  ------------------
  |  | 4109|      2|        SET_SYS(KEY, _PyWideStringList_AsList(&(VALUE)));
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4121|      2|    }
 4122|       |
 4123|      2|    COPY_WSTR("executable", config->executable);
  ------------------
  |  | 4115|      2|    if (WSTR != NULL) { \
  |  |  ------------------
  |  |  |  Branch (4115:9): [True: 2, False: 0]
  |  |  ------------------
  |  | 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
  |  |  ------------------
  |  |  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  |  |  ------------------
  |  |  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4117|      2|    }
  ------------------
 4124|      2|    COPY_WSTR("_base_executable", config->base_executable);
  ------------------
  |  | 4115|      2|    if (WSTR != NULL) { \
  |  |  ------------------
  |  |  |  Branch (4115:9): [True: 2, False: 0]
  |  |  ------------------
  |  | 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
  |  |  ------------------
  |  |  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  |  |  ------------------
  |  |  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4117|      2|    }
  ------------------
 4125|      2|    COPY_WSTR("prefix", config->prefix);
  ------------------
  |  | 4115|      2|    if (WSTR != NULL) { \
  |  |  ------------------
  |  |  |  Branch (4115:9): [True: 2, False: 0]
  |  |  ------------------
  |  | 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
  |  |  ------------------
  |  |  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  |  |  ------------------
  |  |  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4117|      2|    }
  ------------------
 4126|      2|    COPY_WSTR("base_prefix", config->base_prefix);
  ------------------
  |  | 4115|      2|    if (WSTR != NULL) { \
  |  |  ------------------
  |  |  |  Branch (4115:9): [True: 2, False: 0]
  |  |  ------------------
  |  | 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
  |  |  ------------------
  |  |  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  |  |  ------------------
  |  |  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4117|      2|    }
  ------------------
 4127|      2|    COPY_WSTR("exec_prefix", config->exec_prefix);
  ------------------
  |  | 4115|      2|    if (WSTR != NULL) { \
  |  |  ------------------
  |  |  |  Branch (4115:9): [True: 2, False: 0]
  |  |  ------------------
  |  | 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
  |  |  ------------------
  |  |  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  |  |  ------------------
  |  |  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4117|      2|    }
  ------------------
 4128|      2|    COPY_WSTR("base_exec_prefix", config->base_exec_prefix);
  ------------------
  |  | 4115|      2|    if (WSTR != NULL) { \
  |  |  ------------------
  |  |  |  Branch (4115:9): [True: 2, False: 0]
  |  |  ------------------
  |  | 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
  |  |  ------------------
  |  |  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  |  |  ------------------
  |  |  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4117|      2|    }
  ------------------
 4129|      2|    COPY_WSTR("platlibdir", config->platlibdir);
  ------------------
  |  | 4115|      2|    if (WSTR != NULL) { \
  |  |  ------------------
  |  |  |  Branch (4115:9): [True: 2, False: 0]
  |  |  ------------------
  |  | 4116|      2|        SET_SYS_FROM_WSTR(SYS_ATTR, WSTR); \
  |  |  ------------------
  |  |  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  |  |  ------------------
  |  |  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 4117|      2|    }
  ------------------
 4130|       |
 4131|      2|    if (config->pycache_prefix != NULL) {
  ------------------
  |  Branch (4131:9): [True: 0, False: 2]
  ------------------
 4132|      0|        SET_SYS_FROM_WSTR("pycache_prefix", config->pycache_prefix);
  ------------------
  |  | 4112|      0|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  ------------------
  |  |  |  | 3954|      0|    do {                                                   \
  |  |  |  | 3955|      0|        PyObject *v = (value);                             \
  |  |  |  | 3956|      0|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      0|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      0|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      0|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4133|      2|    } else {
 4134|      2|        if (PyDict_SetItemString(sysdict, "pycache_prefix", Py_None) < 0) {
  ------------------
  |  |  616|      2|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (4134:13): [True: 0, False: 2]
  ------------------
 4135|      0|            return -1;
 4136|      0|        }
 4137|      2|    }
 4138|       |
 4139|      2|    COPY_LIST("argv", config->argv);
  ------------------
  |  | 4109|      2|        SET_SYS(KEY, _PyWideStringList_AsList(&(VALUE)));
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4140|      2|    COPY_LIST("orig_argv", config->orig_argv);
  ------------------
  |  | 4109|      2|        SET_SYS(KEY, _PyWideStringList_AsList(&(VALUE)));
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4141|      2|    COPY_LIST("warnoptions", config->warnoptions);
  ------------------
  |  | 4109|      2|        SET_SYS(KEY, _PyWideStringList_AsList(&(VALUE)));
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4142|       |
 4143|      2|    SET_SYS("_xoptions", _PyConfig_CreateXOptionsDict(config));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4144|       |
 4145|      2|    const wchar_t *stdlibdir = _Py_GetStdlibDir();
 4146|      2|    if (stdlibdir != NULL) {
  ------------------
  |  Branch (4146:9): [True: 2, False: 0]
  ------------------
 4147|      2|        SET_SYS_FROM_WSTR("_stdlib_dir", stdlibdir);
  ------------------
  |  | 4112|      2|        SET_SYS(KEY, PyUnicode_FromWideChar(VALUE, -1));
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4148|      2|    }
 4149|      0|    else {
 4150|      0|        if (PyDict_SetItemString(sysdict, "_stdlib_dir", Py_None) < 0) {
  ------------------
  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  ------------------
  |  Branch (4150:13): [True: 0, False: 0]
  ------------------
 4151|      0|            return -1;
 4152|      0|        }
 4153|      0|    }
 4154|       |
 4155|      2|#undef SET_SYS_FROM_WSTR
 4156|      2|#undef COPY_LIST
 4157|      2|#undef COPY_WSTR
 4158|       |
 4159|       |    // sys.flags
 4160|      2|    PyObject *flags = PySys_GetAttrString("flags");
 4161|      2|    if (flags == NULL) {
  ------------------
  |  Branch (4161:9): [True: 0, False: 2]
  ------------------
 4162|      0|        return -1;
 4163|      0|    }
 4164|      2|    if (set_flags_from_config(interp, flags) < 0) {
  ------------------
  |  Branch (4164:9): [True: 0, False: 2]
  ------------------
 4165|      0|        Py_DECREF(flags);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4166|      0|        return -1;
 4167|      0|    }
 4168|      2|    Py_DECREF(flags);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4169|       |
 4170|      2|    SET_SYS("dont_write_bytecode", PyBool_FromLong(!config->write_bytecode));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4171|       |
 4172|      2|    if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (4172:9): [True: 0, False: 2]
  ------------------
 4173|      0|        goto err_occurred;
 4174|      0|    }
 4175|       |
 4176|      2|    return 0;
 4177|       |
 4178|      0|err_occurred:
 4179|      0|    return -1;
 4180|      2|}
_PySys_Create:
 4285|      2|{
 4286|      2|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (4286:5): [True: 2, False: 0]
  ------------------
 4287|       |
 4288|      2|    PyInterpreterState *interp = tstate->interp;
 4289|       |
 4290|      2|    PyObject *modules = _PyImport_InitModules(interp);
 4291|      2|    if (modules == NULL) {
  ------------------
  |  Branch (4291:9): [True: 0, False: 2]
  ------------------
 4292|      0|        goto error;
 4293|      0|    }
 4294|       |
 4295|      2|    PyObject *sysmod = _PyModule_CreateInitialized(&sysmodule, PYTHON_API_VERSION);
  ------------------
  |  |   59|      2|#define PYTHON_API_VERSION 1013
  ------------------
 4296|      2|    if (sysmod == NULL) {
  ------------------
  |  Branch (4296:9): [True: 0, False: 2]
  ------------------
 4297|      0|        return _PyStatus_ERR("failed to create a module object");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4298|      0|    }
 4299|       |#ifdef Py_GIL_DISABLED
 4300|       |    PyUnstable_Module_SetGIL(sysmod, Py_MOD_GIL_NOT_USED);
 4301|       |#endif
 4302|       |
 4303|      2|    PyObject *sysdict = PyModule_GetDict(sysmod);
 4304|      2|    if (sysdict == NULL) {
  ------------------
  |  Branch (4304:9): [True: 0, False: 2]
  ------------------
 4305|      0|        goto error;
 4306|      0|    }
 4307|      2|    interp->sysdict = Py_NewRef(sysdict);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4308|       |
 4309|      2|    interp->sysdict_copy = PyDict_Copy(sysdict);
 4310|      2|    if (interp->sysdict_copy == NULL) {
  ------------------
  |  Branch (4310:9): [True: 0, False: 2]
  ------------------
 4311|      0|        goto error;
 4312|      0|    }
 4313|       |
 4314|      2|    if (PyDict_SetItemString(sysdict, "modules", modules) < 0) {
  ------------------
  |  Branch (4314:9): [True: 0, False: 2]
  ------------------
 4315|      0|        goto error;
 4316|      0|    }
 4317|       |
 4318|      2|    PyObject *lazy_modules = _PyImport_InitLazyModules(interp); // borrowed reference
 4319|      2|    if (lazy_modules == NULL) {
  ------------------
  |  Branch (4319:9): [True: 0, False: 2]
  ------------------
 4320|      0|        goto error;
 4321|      0|    }
 4322|       |
 4323|      2|    if (PyDict_SetItemString(sysdict, "lazy_modules", lazy_modules) < 0) {
  ------------------
  |  Branch (4323:9): [True: 0, False: 2]
  ------------------
 4324|      0|        goto error;
 4325|      0|    }
 4326|       |
 4327|      2|    PyStatus status = _PySys_SetPreliminaryStderr(sysdict);
 4328|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 4329|      0|        return status;
 4330|      0|    }
 4331|       |
 4332|      2|    status = _PySys_InitCore(tstate, sysdict);
 4333|      2|    if (_PyStatus_EXCEPTION(status)) {
  ------------------
  |  |   43|      2|    ((err)._type != _PyStatus_TYPE_OK)
  |  |  ------------------
  |  |  |  Branch (43:5): [True: 0, False: 2]
  |  |  ------------------
  ------------------
 4334|      0|        return status;
 4335|      0|    }
 4336|       |
 4337|      2|    if (_PyImport_FixupBuiltin(tstate, sysmod, "sys", modules) < 0) {
  ------------------
  |  Branch (4337:9): [True: 0, False: 2]
  ------------------
 4338|      0|        goto error;
 4339|      0|    }
 4340|       |
 4341|      2|    PyObject *monitoring = _Py_CreateMonitoringObject();
 4342|      2|    if (monitoring == NULL) {
  ------------------
  |  Branch (4342:9): [True: 0, False: 2]
  ------------------
 4343|      0|        goto error;
 4344|      0|    }
 4345|      2|    int err = PyDict_SetItemString(sysdict, "monitoring", monitoring);
 4346|      2|    Py_DECREF(monitoring);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4347|      2|    if (err < 0) {
  ------------------
  |  Branch (4347:9): [True: 0, False: 2]
  ------------------
 4348|      0|        goto error;
 4349|      0|    }
 4350|       |
 4351|      2|    PyObject *_jit = _PyModule_CreateInitialized(&_jit_module, PYTHON_API_VERSION);
  ------------------
  |  |   59|      2|#define PYTHON_API_VERSION 1013
  ------------------
 4352|      2|    if (_jit == NULL) {
  ------------------
  |  Branch (4352:9): [True: 0, False: 2]
  ------------------
 4353|      0|        goto error;
 4354|      0|    }
 4355|      2|    err = PyDict_SetItemString(sysdict, "_jit", _jit);
 4356|      2|    Py_DECREF(_jit);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4357|      2|    if (err) {
  ------------------
  |  Branch (4357:9): [True: 0, False: 2]
  ------------------
 4358|      0|        goto error;
 4359|      0|    }
 4360|       |
 4361|      2|    assert(!_PyErr_Occurred(tstate));
  ------------------
  |  Branch (4361:5): [True: 2, False: 0]
  ------------------
 4362|       |
 4363|      2|    *sysmod_p = sysmod;
 4364|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4365|       |
 4366|      0|error:
 4367|      0|    return _PyStatus_ERR("can't initialize sys module");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4368|      2|}
sysmodule.c:sys_set_object:
  171|     12|{
  172|     12|    if (key == NULL) {
  ------------------
  |  Branch (172:9): [True: 0, False: 12]
  ------------------
  173|      0|        return -1;
  174|      0|    }
  175|     12|    PyObject *sd = interp->sysdict;
  176|     12|    if (sd == NULL) {
  ------------------
  |  Branch (176:9): [True: 0, False: 12]
  ------------------
  177|      0|        PyErr_SetString(PyExc_RuntimeError, "no sys module");
  178|      0|        return -1;
  179|      0|    }
  180|     12|    if (v == NULL) {
  ------------------
  |  Branch (180:9): [True: 0, False: 12]
  ------------------
  181|      0|        if (PyDict_Pop(sd, key, NULL) < 0) {
  ------------------
  |  Branch (181:13): [True: 0, False: 0]
  ------------------
  182|      0|            return -1;
  183|      0|        }
  184|      0|        return 0;
  185|      0|    }
  186|     12|    else {
  187|     12|        return PyDict_SetItem(sd, key, v);
  188|     12|    }
  189|     12|}
sysmodule.c:sys_set_object_str:
  200|      6|{
  201|      6|    PyObject *key = v ? PyUnicode_InternFromString(name)
  ------------------
  |  Branch (201:21): [True: 6, False: 0]
  ------------------
  202|      6|                      : PyUnicode_FromString(name);
  203|      6|    int r = sys_set_object(interp, key, v);
  204|      6|    Py_XDECREF(key);
  ------------------
  |  |  524|      6|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      6|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      6|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  205|      6|    return r;
  206|      6|}
sysmodule.c:sys_audit_tstate:
  247|     92|{
  248|     92|    assert(event != NULL);
  ------------------
  |  Branch (248:5): [True: 92, False: 0]
  ------------------
  249|     92|    assert(!argFormat || !strchr(argFormat, 'N'));
  ------------------
  |  Branch (249:5): [True: 0, False: 92]
  |  Branch (249:5): [True: 92, False: 0]
  ------------------
  250|       |
  251|     92|    if (!ts) {
  ------------------
  |  Branch (251:9): [True: 0, False: 92]
  ------------------
  252|       |        /* Audit hooks cannot be called with a NULL thread state */
  253|      0|        return 0;
  254|      0|    }
  255|       |
  256|       |    /* The current implementation cannot be called if tstate is not
  257|       |       the current Python thread state. */
  258|     92|    assert(ts == _PyThreadState_GET());
  ------------------
  |  Branch (258:5): [True: 92, False: 0]
  ------------------
  259|       |
  260|       |    /* Early exit when no hooks are registered */
  261|     92|    PyInterpreterState *is = ts->interp;
  262|     92|    if (!should_audit(is)) {
  ------------------
  |  Branch (262:9): [True: 92, False: 0]
  ------------------
  263|     92|        return 0;
  264|     92|    }
  265|       |
  266|      0|    PyObject *eventName = NULL;
  267|      0|    PyObject *eventArgs = NULL;
  268|      0|    PyObject *hooks = NULL;
  269|      0|    PyObject *hook = NULL;
  270|      0|    int res = -1;
  271|       |
  272|      0|    int dtrace = PyDTrace_AUDIT_ENABLED();
  273|       |
  274|       |
  275|      0|    PyObject *exc = _PyErr_GetRaisedException(ts);
  276|       |
  277|       |    /* Initialize event args now */
  278|      0|    if (argFormat && argFormat[0]) {
  ------------------
  |  Branch (278:9): [True: 0, False: 0]
  |  Branch (278:22): [True: 0, False: 0]
  ------------------
  279|      0|        eventArgs = Py_VaBuildValue(argFormat, vargs);
  280|      0|        if (eventArgs && !PyTuple_Check(eventArgs)) {
  ------------------
  |  |   27|      0|                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
  |  |  ------------------
  |  |  |  |  760|      0|#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
  |  |  ------------------
  ------------------
  |  Branch (280:13): [True: 0, False: 0]
  |  Branch (280:26): [True: 0, False: 0]
  ------------------
  281|      0|            PyObject *argTuple = PyTuple_Pack(1, eventArgs);
  282|      0|            Py_SETREF(eventArgs, argTuple);
  ------------------
  |  |  352|      0|    do { \
  |  |  353|      0|        _Py_TYPEOF(dst)* _tmp_dst_ptr = &(dst); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  354|      0|        _Py_TYPEOF(dst) _tmp_old_dst = (*_tmp_dst_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  355|      0|        *_tmp_dst_ptr = (src); \
  |  |  356|      0|        Py_DECREF(_tmp_old_dst); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  357|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (357:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  283|      0|        }
  284|      0|    }
  285|      0|    else {
  286|      0|        eventArgs = PyTuple_New(0);
  287|      0|    }
  288|      0|    if (!eventArgs) {
  ------------------
  |  Branch (288:9): [True: 0, False: 0]
  ------------------
  289|      0|        goto exit;
  290|      0|    }
  291|       |
  292|       |    /* Call global hooks
  293|       |     *
  294|       |     * We don't worry about any races on hooks getting added,
  295|       |     * since that would not leave is in an inconsistent state. */
  296|      0|    _Py_AuditHookEntry *e = is->runtime->audit_hooks.head;
  297|      0|    for (; e; e = e->next) {
  ------------------
  |  Branch (297:12): [True: 0, False: 0]
  ------------------
  298|      0|        if (e->hookCFunction(event, eventArgs, e->userData) < 0) {
  ------------------
  |  Branch (298:13): [True: 0, False: 0]
  ------------------
  299|      0|            goto exit;
  300|      0|        }
  301|      0|    }
  302|       |
  303|       |    /* Dtrace USDT point */
  304|      0|    if (dtrace) {
  ------------------
  |  Branch (304:9): [True: 0, False: 0]
  ------------------
  305|      0|        PyDTrace_AUDIT(event, (void *)eventArgs);
  306|      0|    }
  307|       |
  308|       |    /* Call interpreter hooks */
  309|      0|    if (is->audit_hooks) {
  ------------------
  |  Branch (309:9): [True: 0, False: 0]
  ------------------
  310|      0|        eventName = PyUnicode_FromString(event);
  311|      0|        if (!eventName) {
  ------------------
  |  Branch (311:13): [True: 0, False: 0]
  ------------------
  312|      0|            goto exit;
  313|      0|        }
  314|       |
  315|      0|        hooks = PyObject_GetIter(is->audit_hooks);
  316|      0|        if (!hooks) {
  ------------------
  |  Branch (316:13): [True: 0, False: 0]
  ------------------
  317|      0|            goto exit;
  318|      0|        }
  319|       |
  320|       |        /* Disallow tracing in hooks unless explicitly enabled */
  321|      0|        PyThreadState_EnterTracing(ts);
  322|      0|        while ((hook = PyIter_Next(hooks)) != NULL) {
  ------------------
  |  Branch (322:16): [True: 0, False: 0]
  ------------------
  323|      0|            PyObject *o;
  324|      0|            int canTrace = PyObject_GetOptionalAttr(hook, &_Py_ID(__cantrace__), &o);
  ------------------
  |  |  917|      0|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      0|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      0|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  325|      0|            if (o) {
  ------------------
  |  Branch (325:17): [True: 0, False: 0]
  ------------------
  326|      0|                canTrace = PyObject_IsTrue(o);
  327|      0|                Py_DECREF(o);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  328|      0|            }
  329|      0|            if (canTrace < 0) {
  ------------------
  |  Branch (329:17): [True: 0, False: 0]
  ------------------
  330|      0|                break;
  331|      0|            }
  332|      0|            if (canTrace) {
  ------------------
  |  Branch (332:17): [True: 0, False: 0]
  ------------------
  333|      0|                PyThreadState_LeaveTracing(ts);
  334|      0|            }
  335|      0|            PyObject* args[2] = {eventName, eventArgs};
  336|      0|            o = _PyObject_VectorcallTstate(ts, hook, args, 2, NULL);
  337|      0|            if (canTrace) {
  ------------------
  |  Branch (337:17): [True: 0, False: 0]
  ------------------
  338|      0|                PyThreadState_EnterTracing(ts);
  339|      0|            }
  340|      0|            if (!o) {
  ------------------
  |  Branch (340:17): [True: 0, False: 0]
  ------------------
  341|      0|                break;
  342|      0|            }
  343|      0|            Py_DECREF(o);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  344|      0|            Py_CLEAR(hook);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
  345|      0|        }
  346|      0|        PyThreadState_LeaveTracing(ts);
  347|      0|        if (_PyErr_Occurred(ts)) {
  ------------------
  |  Branch (347:13): [True: 0, False: 0]
  ------------------
  348|      0|            goto exit;
  349|      0|        }
  350|      0|    }
  351|       |
  352|      0|    res = 0;
  353|       |
  354|      0|exit:
  355|      0|    Py_XDECREF(hook);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  356|      0|    Py_XDECREF(hooks);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  357|      0|    Py_XDECREF(eventName);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  358|      0|    Py_XDECREF(eventArgs);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  359|       |
  360|      0|    if (!res) {
  ------------------
  |  Branch (360:9): [True: 0, False: 0]
  ------------------
  361|      0|        _PyErr_SetRaisedException(ts, exc);
  362|      0|    }
  363|      0|    else {
  364|      0|        assert(_PyErr_Occurred(ts));
  ------------------
  |  Branch (364:9): [True: 0, False: 0]
  ------------------
  365|      0|        Py_XDECREF(exc);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  366|      0|    }
  367|       |
  368|      0|    return res;
  369|      0|}
sysmodule.c:should_audit:
  232|    140|{
  233|       |    /* interp must not be NULL, but test it just in case for extra safety */
  234|    140|    assert(interp != NULL);
  ------------------
  |  Branch (234:5): [True: 140, False: 0]
  ------------------
  235|    140|    if (!interp) {
  ------------------
  |  Branch (235:9): [True: 0, False: 140]
  ------------------
  236|      0|        return 0;
  237|      0|    }
  238|    140|    return (interp->runtime->audit_hooks.head
  ------------------
  |  Branch (238:13): [True: 0, False: 140]
  ------------------
  239|    140|            || interp->audit_hooks
  ------------------
  |  Branch (239:16): [True: 0, False: 140]
  ------------------
  240|    140|            || PyDTrace_AUDIT_ENABLED());
  ------------------
  |  Branch (240:16): [True: 0, False: 140]
  ------------------
  241|    140|}
sysmodule.c:_clear_preinit_entries:
 3077|      4|{
 3078|      4|    _Py_PreInitEntry current = *optionlist;
 3079|      4|    *optionlist = NULL;
 3080|       |    /* Deallocate the nodes and their contents using the default allocator */
 3081|      4|    while (current != NULL) {
  ------------------
  |  Branch (3081:12): [True: 0, False: 4]
  ------------------
 3082|      0|        _Py_PreInitEntry next = current->next;
 3083|      0|        _PyMem_DefaultRawFree(current->value);
 3084|      0|        _PyMem_DefaultRawFree(current);
 3085|      0|        current = next;
 3086|      0|    }
 3087|      4|}
sysmodule.c:sys_set_flag:
 3484|     88|{
 3485|     88|    assert(pos >= 0 && pos < (Py_ssize_t)(Py_ARRAY_LENGTH(flags_fields) - 1));
  ------------------
  |  Branch (3485:5): [True: 88, False: 0]
  |  Branch (3485:5): [True: 88, False: 0]
  ------------------
 3486|       |
 3487|     88|    PyObject *old_value = PyStructSequence_GET_ITEM(flags, pos);
  ------------------
  |  |   12|     88|#define PyStructSequence_GET_ITEM PyStructSequence_GetItem
  ------------------
 3488|     88|    PyStructSequence_SET_ITEM(flags, pos, Py_NewRef(value));
  ------------------
  |  |   11|     88|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
                  PyStructSequence_SET_ITEM(flags, pos, Py_NewRef(value));
  ------------------
  |  |  550|     88|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|     88|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     88|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3489|     88|    Py_XDECREF(old_value);
  ------------------
  |  |  524|     88|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|     88|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     88|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3490|     88|}
sysmodule.c:set_flags_from_config:
 3523|      4|{
 3524|      4|    const PyPreConfig *preconfig = &interp->runtime->preconfig;
 3525|      4|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
 3526|       |
 3527|       |    // _PySys_UpdateConfig() modifies sys.flags in-place:
 3528|       |    // Py_XDECREF() is needed in this case.
 3529|      4|    Py_ssize_t pos = 0;
 3530|      4|#define SetFlagObj(expr) \
 3531|      4|    do { \
 3532|      4|        PyObject *value = (expr); \
 3533|      4|        if (value == NULL) { \
 3534|      4|            return -1; \
 3535|      4|        } \
 3536|      4|        sys_set_flag(flags, pos, value); \
 3537|      4|        Py_DECREF(value); \
 3538|      4|        pos++; \
 3539|      4|    } while (0)
 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
 3541|       |
 3542|      4|    SetFlag(config->parser_debug);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3543|      4|    SetFlag(config->inspect);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3544|      4|    SetFlag(config->interactive);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3545|      4|    SetFlag(config->optimization_level);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3546|      4|    SetFlag(!config->write_bytecode);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3547|      4|    SetFlag(!config->user_site_directory);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3548|      4|    SetFlag(!config->site_import);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3549|      4|    SetFlag(!config->use_environment);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3550|      4|    SetFlag(config->verbose);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3551|      4|    SetFlag(config->bytes_warning);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3552|      4|    SetFlag(config->quiet);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3553|      4|    SetFlag(config->use_hash_seed == 0 || config->hash_seed != 0);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3532:28): [True: 4, False: 0]
  |  |  |  |  |  Branch (3532:28): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3554|      4|    SetFlag(config->isolated);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3555|      4|    SetFlagObj(PyBool_FromLong(config->dev_mode));
  ------------------
  |  | 3531|      4|    do { \
  |  | 3532|      4|        PyObject *value = (expr); \
  |  | 3533|      4|        if (value == NULL) { \
  |  |  ------------------
  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  ------------------
  |  | 3534|      0|            return -1; \
  |  | 3535|      0|        } \
  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  | 3537|      4|        Py_DECREF(value); \
  |  |  ------------------
  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3538|      4|        pos++; \
  |  | 3539|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 3556|      4|    SetFlag(preconfig->utf8_mode);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3557|      4|    SetFlag(config->warn_default_encoding);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3558|      4|    SetFlagObj(PyBool_FromLong(config->safe_path));
  ------------------
  |  | 3531|      4|    do { \
  |  | 3532|      4|        PyObject *value = (expr); \
  |  | 3533|      4|        if (value == NULL) { \
  |  |  ------------------
  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  ------------------
  |  | 3534|      0|            return -1; \
  |  | 3535|      0|        } \
  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  | 3537|      4|        Py_DECREF(value); \
  |  |  ------------------
  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3538|      4|        pos++; \
  |  | 3539|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 3559|      4|    SetFlag(config->int_max_str_digits);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3560|       |#ifdef Py_GIL_DISABLED
 3561|       |    if (config->enable_gil == _PyConfig_GIL_DEFAULT) {
 3562|       |        SetFlagObj(Py_NewRef(Py_None));
 3563|       |    }
 3564|       |    else {
 3565|       |        SetFlag(config->enable_gil);
 3566|       |    }
 3567|       |#else
 3568|      4|    SetFlagObj(PyLong_FromLong(1));
  ------------------
  |  | 3531|      4|    do { \
  |  | 3532|      4|        PyObject *value = (expr); \
  |  | 3533|      4|        if (value == NULL) { \
  |  |  ------------------
  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  ------------------
  |  | 3534|      0|            return -1; \
  |  | 3535|      0|        } \
  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  | 3537|      4|        Py_DECREF(value); \
  |  |  ------------------
  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3538|      4|        pos++; \
  |  | 3539|      4|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  ------------------
  ------------------
 3569|      4|#endif
 3570|      4|    SetFlag(config->thread_inherit_context);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3571|      4|    SetFlag(config->context_aware_warnings);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3572|      4|    SetFlag(config->lazy_imports);
  ------------------
  |  | 3540|      4|#define SetFlag(expr) SetFlagObj(PyLong_FromLong(expr))
  |  |  ------------------
  |  |  |  | 3531|      4|    do { \
  |  |  |  | 3532|      4|        PyObject *value = (expr); \
  |  |  |  | 3533|      4|        if (value == NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3533:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  | 3534|      0|            return -1; \
  |  |  |  | 3535|      0|        } \
  |  |  |  | 3536|      4|        sys_set_flag(flags, pos, value); \
  |  |  |  | 3537|      4|        Py_DECREF(value); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      4|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3538|      4|        pos++; \
  |  |  |  | 3539|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3539:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3573|      4|#undef SetFlagObj
 3574|      4|#undef SetFlag
 3575|      4|    return 0;
 3576|      4|}
sysmodule.c:sys_audit_impl:
  568|     48|{
  569|     48|    PyThreadState *tstate = _PyThreadState_GET();
  570|     48|    _Py_EnsureTstateNotNULL(tstate);
  ------------------
  |  |  196|     48|    _Py_EnsureFuncTstateNotNULL(__func__, (tstate))
  ------------------
  571|       |
  572|     48|    if (!should_audit(tstate->interp)) {
  ------------------
  |  Branch (572:9): [True: 48, False: 0]
  ------------------
  573|     48|        Py_RETURN_NONE;
  ------------------
  |  |  628|     48|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|     48|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  574|     48|    }
  575|       |
  576|      0|    int res = _PySys_Audit(tstate, event, "O", args);
  577|      0|    if (res < 0) {
  ------------------
  |  Branch (577:9): [True: 0, False: 0]
  ------------------
  578|      0|        return NULL;
  579|      0|    }
  580|       |
  581|      0|    Py_RETURN_NONE;
  ------------------
  |  |  628|      0|#  define Py_RETURN_NONE return Py_None
  |  |  ------------------
  |  |  |  |  616|      0|#  define Py_None (&_Py_NoneStruct)
  |  |  ------------------
  ------------------
  582|      0|}
sysmodule.c:get_utf8_unicode:
  927|      4|{
  928|      4|    _Py_DECLARE_STR(utf_8, "utf-8");
  929|      4|    PyObject *ret = &_Py_STR(utf_8);
  ------------------
  |  |  919|      4|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      4|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      4|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  930|      4|    return Py_NewRef(ret);
  ------------------
  |  |  550|      4|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      4|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      4|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  931|      4|}
sysmodule.c:sys_getfilesystemencoding_impl:
  955|      4|{
  956|      4|    PyInterpreterState *interp = _PyInterpreterState_GET();
  957|      4|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
  958|       |
  959|      4|    if (wcscmp(config->filesystem_encoding, L"utf-8") == 0) {
  ------------------
  |  Branch (959:9): [True: 4, False: 0]
  ------------------
  960|      4|        return get_utf8_unicode();
  961|      4|    }
  962|       |
  963|      0|    PyObject *u = PyUnicode_FromWideChar(config->filesystem_encoding, -1);
  964|      0|    if (u == NULL) {
  ------------------
  |  Branch (964:9): [True: 0, False: 0]
  ------------------
  965|      0|        return NULL;
  966|      0|    }
  967|      0|    _PyUnicode_InternImmortal(interp, &u);
  968|      0|    return u;
  969|      0|}
sysmodule.c:sys_getfilesystemencodeerrors_impl:
  980|      2|{
  981|      2|    PyInterpreterState *interp = _PyInterpreterState_GET();
  982|      2|    const PyConfig *config = _PyInterpreterState_GetConfig(interp);
  983|      2|    PyObject *u = PyUnicode_FromWideChar(config->filesystem_errors, -1);
  984|      2|    if (u == NULL) {
  ------------------
  |  Branch (984:9): [True: 0, False: 2]
  ------------------
  985|      0|        return NULL;
  986|      0|    }
  987|      2|    _PyUnicode_InternImmortal(interp, &u);
  988|      2|    return u;
  989|      2|}
sysmodule.c:sys__getframe_impl:
 2074|      2|{
 2075|      2|    PyThreadState *tstate = _PyThreadState_GET();
 2076|      2|    _PyInterpreterFrame *frame = tstate->current_frame;
 2077|       |
 2078|      2|    if (frame != NULL) {
  ------------------
  |  Branch (2078:9): [True: 2, False: 0]
  ------------------
 2079|      2|        while (depth > 0) {
  ------------------
  |  Branch (2079:16): [True: 0, False: 2]
  ------------------
 2080|      0|            frame = _PyFrame_GetFirstComplete(frame->previous);
 2081|      0|            if (frame == NULL) {
  ------------------
  |  Branch (2081:17): [True: 0, False: 0]
  ------------------
 2082|      0|                break;
 2083|      0|            }
 2084|      0|            --depth;
 2085|      0|        }
 2086|      2|    }
 2087|      2|    if (frame == NULL) {
  ------------------
  |  Branch (2087:9): [True: 0, False: 2]
  ------------------
 2088|      0|        _PyErr_SetString(tstate, PyExc_ValueError,
 2089|      0|                         "call stack is not deep enough");
 2090|      0|        return NULL;
 2091|      0|    }
 2092|       |
 2093|      2|    PyObject *pyFrame = Py_XNewRef((PyObject *)_PyFrame_GetFrameObject(frame));
  ------------------
  |  |  551|      2|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2094|      2|    if (pyFrame && _PySys_Audit(tstate, "sys._getframe", "(O)", pyFrame) < 0) {
  ------------------
  |  Branch (2094:9): [True: 2, False: 0]
  |  Branch (2094:20): [True: 0, False: 2]
  ------------------
 2095|      0|        Py_DECREF(pyFrame);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2096|      0|        return NULL;
 2097|      0|    }
 2098|      2|    return pyFrame;
 2099|      2|}
sysmodule.c:sys__get_cpu_count_config_impl:
 2604|      2|{
 2605|      2|    const PyConfig *config = _Py_GetConfig();
 2606|      2|    return config->cpu_count;
 2607|      2|}
sysmodule.c:_PySys_SetPreliminaryStderr:
 4192|      2|{
 4193|      2|    PyObject *pstderr = PyFile_NewStdPrinter(fileno(stderr));
 4194|      2|    if (pstderr == NULL) {
  ------------------
  |  Branch (4194:9): [True: 0, False: 2]
  ------------------
 4195|      0|        goto error;
 4196|      0|    }
 4197|      2|    if (PyDict_SetItem(sysdict, &_Py_ID(stderr), pstderr) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4197:9): [True: 0, False: 2]
  ------------------
 4198|      0|        goto error;
 4199|      0|    }
 4200|      2|    if (PyDict_SetItemString(sysdict, "__stderr__", pstderr) < 0) {
  ------------------
  |  Branch (4200:9): [True: 0, False: 2]
  ------------------
 4201|      0|        goto error;
 4202|      0|    }
 4203|      2|    Py_DECREF(pstderr);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4204|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4205|       |
 4206|      0|error:
 4207|      0|    Py_XDECREF(pstderr);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4208|      0|    return _PyStatus_ERR("can't set preliminary stderr");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4209|      2|}
sysmodule.c:_PySys_InitCore:
 3971|      2|{
 3972|      2|    PyObject *version_info;
 3973|      2|    int res;
 3974|      2|    PyInterpreterState *interp = tstate->interp;
 3975|       |
 3976|       |    /* stdin/stdout/stderr are set in pylifecycle.c */
 3977|       |
 3978|      2|#define COPY_SYS_ATTR(tokey, fromkey) \
 3979|      2|        SET_SYS(tokey, PyMapping_GetItemString(sysdict, fromkey))
 3980|       |
 3981|      2|    COPY_SYS_ATTR("__displayhook__", "displayhook");
  ------------------
  |  | 3979|      2|        SET_SYS(tokey, PyMapping_GetItemString(sysdict, fromkey))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3982|      2|    COPY_SYS_ATTR("__excepthook__", "excepthook");
  ------------------
  |  | 3979|      2|        SET_SYS(tokey, PyMapping_GetItemString(sysdict, fromkey))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3983|      2|    COPY_SYS_ATTR("__breakpointhook__", "breakpointhook");
  ------------------
  |  | 3979|      2|        SET_SYS(tokey, PyMapping_GetItemString(sysdict, fromkey))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3984|      2|    COPY_SYS_ATTR("__unraisablehook__", "unraisablehook");
  ------------------
  |  | 3979|      2|        SET_SYS(tokey, PyMapping_GetItemString(sysdict, fromkey))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3985|       |
 3986|      2|#undef COPY_SYS_ATTR
 3987|       |
 3988|      2|    SET_SYS_FROM_STRING("version", Py_GetVersion());
  ------------------
  |  | 3967|      2|        SET_SYS(key, PyUnicode_FromString(value))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3989|      2|    SET_SYS("hexversion", PyLong_FromLong(PY_VERSION_HEX));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 3990|      2|    SET_SYS("_git", Py_BuildValue("(szz)", "CPython", _Py_gitidentifier(),
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 3991|      2|                                  _Py_gitversion()));
 3992|      2|    SET_SYS_FROM_STRING("_framework", _PYTHONFRAMEWORK);
  ------------------
  |  | 3967|      2|        SET_SYS(key, PyUnicode_FromString(value))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3993|      2|    SET_SYS("api_version", PyLong_FromLong(PYTHON_API_VERSION));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 3994|      2|    SET_SYS_FROM_STRING("copyright", Py_GetCopyright());
  ------------------
  |  | 3967|      2|        SET_SYS(key, PyUnicode_FromString(value))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3995|      2|    SET_SYS_FROM_STRING("platform", Py_GetPlatform());
  ------------------
  |  | 3967|      2|        SET_SYS(key, PyUnicode_FromString(value))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3996|      2|    SET_SYS("maxsize", PyLong_FromSsize_t(PY_SSIZE_T_MAX));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 3997|      2|    SET_SYS("float_info", PyFloat_GetInfo());
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 3998|      2|    SET_SYS("int_info", PyLong_GetInfo());
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 3999|       |    /* initialize hash_info */
 4000|      2|    if (_PyStructSequence_InitBuiltin(interp, &Hash_InfoType,
  ------------------
  |  Branch (4000:9): [True: 0, False: 2]
  ------------------
 4001|      2|                                      &hash_info_desc) < 0)
 4002|      0|    {
 4003|      0|        goto type_init_failed;
 4004|      0|    }
 4005|      2|    SET_SYS("hash_info", get_hash_info(tstate));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4006|      2|    SET_SYS("maxunicode", PyLong_FromLong(0x10FFFF));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4007|      2|    SET_SYS("builtin_module_names", list_builtin_module_names());
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4008|      2|    SET_SYS("stdlib_module_names", list_stdlib_module_names());
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4009|       |#if PY_BIG_ENDIAN
 4010|       |    SET_SYS("byteorder", &_Py_ID(big));
 4011|       |#else
 4012|      2|    SET_SYS("byteorder", &_Py_ID(little));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4013|      2|#endif
 4014|       |
 4015|       |#ifdef MS_COREDLL
 4016|       |    SET_SYS("dllhandle", PyLong_FromVoidPtr(PyWin_DLLhModule));
 4017|       |    SET_SYS_FROM_STRING("winver", PyWin_DLLVersionString);
 4018|       |#endif
 4019|      2|#ifdef ABIFLAGS
 4020|      2|    SET_SYS_FROM_STRING("abiflags", ABIFLAGS);
  ------------------
  |  | 3967|      2|        SET_SYS(key, PyUnicode_FromString(value))
  |  |  ------------------
  |  |  |  | 3954|      2|    do {                                                   \
  |  |  |  | 3955|      2|        PyObject *v = (value);                             \
  |  |  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3957|      0|            goto err_occurred;                             \
  |  |  |  | 3958|      0|        }                                                  \
  |  |  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  |  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  | 3962|      0|            goto err_occurred;                             \
  |  |  |  | 3963|      0|        }                                                  \
  |  |  |  | 3964|      2|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4021|      2|#endif
 4022|       |
 4023|      2|#define ENSURE_INFO_TYPE(TYPE, DESC) \
 4024|      2|    do { \
 4025|      2|        if (_PyStructSequence_InitBuiltinWithFlags( \
 4026|      2|                interp, &TYPE, &DESC, Py_TPFLAGS_DISALLOW_INSTANTIATION) < 0) { \
 4027|      2|            goto type_init_failed; \
 4028|      2|        } \
 4029|      2|    } while (0)
 4030|       |
 4031|       |    /* version_info */
 4032|      2|    ENSURE_INFO_TYPE(VersionInfoType, version_info_desc);
  ------------------
  |  | 4024|      2|    do { \
  |  | 4025|      2|        if (_PyStructSequence_InitBuiltinWithFlags( \
  |  |  ------------------
  |  |  |  Branch (4025:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 4026|      2|                interp, &TYPE, &DESC, Py_TPFLAGS_DISALLOW_INSTANTIATION) < 0) { \
  |  |  ------------------
  |  |  |  |  497|      2|#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
  |  |  ------------------
  |  | 4027|      0|            goto type_init_failed; \
  |  | 4028|      0|        } \
  |  | 4029|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4029:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4033|      2|    version_info = make_version_info(tstate);
 4034|      2|    SET_SYS("version_info", version_info);
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4035|       |
 4036|       |    /* implementation */
 4037|      2|    SET_SYS("implementation", make_impl_info(version_info));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4038|       |
 4039|       |    // sys.flags: updated in-place later by _PySys_UpdateConfig()
 4040|      2|    ENSURE_INFO_TYPE(FlagsType, flags_desc);
  ------------------
  |  | 4024|      2|    do { \
  |  | 4025|      2|        if (_PyStructSequence_InitBuiltinWithFlags( \
  |  |  ------------------
  |  |  |  Branch (4025:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 4026|      2|                interp, &TYPE, &DESC, Py_TPFLAGS_DISALLOW_INSTANTIATION) < 0) { \
  |  |  ------------------
  |  |  |  |  497|      2|#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
  |  |  ------------------
  |  | 4027|      0|            goto type_init_failed; \
  |  | 4028|      0|        } \
  |  | 4029|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (4029:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4041|      2|    SET_SYS("flags", make_flags(tstate->interp));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4042|       |
 4043|       |#if defined(MS_WINDOWS)
 4044|       |    /* getwindowsversion */
 4045|       |    ENSURE_INFO_TYPE(WindowsVersionType, windows_version_desc);
 4046|       |
 4047|       |    SET_SYS_FROM_STRING("_vpath", VPATH);
 4048|       |#endif
 4049|       |
 4050|      2|#undef ENSURE_INFO_TYPE
 4051|       |
 4052|       |    /* float repr style: 0.03 (short) vs 0.029999999999999999 (legacy) */
 4053|      2|#if _PY_SHORT_FLOAT_REPR == 1
 4054|      2|    SET_SYS("float_repr_style", &_Py_ID(short));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4055|       |#else
 4056|       |    SET_SYS("float_repr_style", &_Py_ID(legacy));
 4057|       |#endif
 4058|       |
 4059|      2|    SET_SYS("thread_info", PyThread_GetInfo());
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4060|       |
 4061|      2|    SET_SYS("abi_info", make_abi_info());
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4062|       |
 4063|       |    /* initialize asyncgen_hooks */
 4064|      2|    if (_PyStructSequence_InitBuiltin(interp, &AsyncGenHooksType,
  ------------------
  |  Branch (4064:9): [True: 0, False: 2]
  ------------------
 4065|      2|                                      &asyncgen_hooks_desc) < 0)
 4066|      0|    {
 4067|      0|        goto type_init_failed;
 4068|      0|    }
 4069|       |
 4070|       |#ifdef __EMSCRIPTEN__
 4071|       |    if (EmscriptenInfoType == NULL) {
 4072|       |        EmscriptenInfoType = PyStructSequence_NewType(&emscripten_info_desc);
 4073|       |        if (EmscriptenInfoType == NULL) {
 4074|       |            goto type_init_failed;
 4075|       |        }
 4076|       |    }
 4077|       |    SET_SYS("_emscripten_info", make_emscripten_info());
 4078|       |#endif
 4079|       |
 4080|       |    /* adding sys.path_hooks and sys.path_importer_cache */
 4081|      2|    SET_SYS("meta_path", PyList_New(0));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4082|      2|    SET_SYS("path_importer_cache", PyDict_New());
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4083|      2|    SET_SYS("path_hooks", PyList_New(0));
  ------------------
  |  | 3954|      2|    do {                                                   \
  |  | 3955|      2|        PyObject *v = (value);                             \
  |  | 3956|      2|        if (v == NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (3956:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3957|      0|            goto err_occurred;                             \
  |  | 3958|      0|        }                                                  \
  |  | 3959|      2|        res = PyDict_SetItemString(sysdict, key, v);       \
  |  | 3960|      2|        Py_DECREF(v);                                      \
  |  |  ------------------
  |  |  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 3961|      2|        if (res < 0) {                                     \
  |  |  ------------------
  |  |  |  Branch (3961:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 3962|      0|            goto err_occurred;                             \
  |  | 3963|      0|        }                                                  \
  |  | 3964|      2|    } while (0)
  |  |  ------------------
  |  |  |  Branch (3964:14): [Folded, False: 2]
  |  |  ------------------
  ------------------
 4084|       |
 4085|      2|    if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (4085:9): [True: 0, False: 2]
  ------------------
 4086|      0|        goto err_occurred;
 4087|      0|    }
 4088|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
 4089|       |
 4090|      0|type_init_failed:
 4091|      0|    return _PyStatus_ERR("failed to initialize a type");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4092|       |
 4093|      0|err_occurred:
 4094|      0|    return _PyStatus_ERR("can't initialize sys module");
  ------------------
  |  |   27|      0|    (PyStatus){ \
  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  ------------------
  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  ------------------
  |  |   30|      0|        .err_msg = (ERR_MSG)}
  ------------------
 4095|      2|}
sysmodule.c:get_hash_info:
 1570|      2|{
 1571|      2|    PyObject *hash_info;
 1572|      2|    int field = 0;
 1573|      2|    PyHash_FuncDef *hashfunc;
 1574|      2|    hash_info = PyStructSequence_New(&Hash_InfoType);
 1575|      2|    if (hash_info == NULL) {
  ------------------
  |  Branch (1575:9): [True: 0, False: 2]
  ------------------
 1576|      0|        return NULL;
 1577|      0|    }
 1578|      2|    hashfunc = PyHash_GetFuncDef();
 1579|       |
 1580|      2|#define SET_HASH_INFO_ITEM(CALL)                             \
 1581|      2|    do {                                                     \
 1582|      2|        PyObject *item = (CALL);                             \
 1583|      2|        if (item == NULL) {                                  \
 1584|      2|            Py_CLEAR(hash_info);                             \
 1585|      2|            return NULL;                                     \
 1586|      2|        }                                                    \
 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
 1588|      2|    } while(0)
 1589|       |
 1590|      2|    SET_HASH_INFO_ITEM(PyLong_FromLong(8 * sizeof(Py_hash_t)));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1591|      2|    SET_HASH_INFO_ITEM(PyLong_FromSsize_t(PyHASH_MODULUS));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1592|      2|    SET_HASH_INFO_ITEM(PyLong_FromLong(PyHASH_INF));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1593|      2|    SET_HASH_INFO_ITEM(PyLong_FromLong(0));  // This is no longer used
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1594|      2|    SET_HASH_INFO_ITEM(PyLong_FromLong(PyHASH_IMAG));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1595|      2|    SET_HASH_INFO_ITEM(PyUnicode_FromString(hashfunc->name));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1596|      2|    SET_HASH_INFO_ITEM(PyLong_FromLong(hashfunc->hash_bits));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1597|      2|    SET_HASH_INFO_ITEM(PyLong_FromLong(hashfunc->seed_bits));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1598|      2|    SET_HASH_INFO_ITEM(PyLong_FromLong(Py_HASH_CUTOFF));
  ------------------
  |  | 1581|      2|    do {                                                     \
  |  | 1582|      2|        PyObject *item = (CALL);                             \
  |  | 1583|      2|        if (item == NULL) {                                  \
  |  |  ------------------
  |  |  |  Branch (1583:13): [True: 0, False: 2]
  |  |  ------------------
  |  | 1584|      0|            Py_CLEAR(hash_info);                             \
  |  |  ------------------
  |  |  |  |  484|      0|    do { \
  |  |  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  |  |  ------------------
  |  |  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  |  |  ------------------
  |  |  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  |  |  ------------------
  |  |  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  490|      0|        } \
  |  |  |  |  491|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  | 1585|      0|            return NULL;                                     \
  |  | 1586|      0|        }                                                    \
  |  | 1587|      2|        PyStructSequence_SET_ITEM(hash_info, field++, item); \
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  |  | 1588|      2|    } while(0)
  |  |  ------------------
  |  |  |  Branch (1588:13): [Folded, False: 2]
  |  |  ------------------
  ------------------
 1599|       |
 1600|      2|#undef SET_HASH_INFO_ITEM
 1601|       |
 1602|      2|    return hash_info;
 1603|      2|}
sysmodule.c:list_builtin_module_names:
 2965|      2|{
 2966|      2|    PyObject *list = _PyImport_GetBuiltinModuleNames();
 2967|      2|    if (list == NULL) {
  ------------------
  |  Branch (2967:9): [True: 0, False: 2]
  ------------------
 2968|      0|        return NULL;
 2969|      0|    }
 2970|      2|    if (PyList_Sort(list) != 0) {
  ------------------
  |  Branch (2970:9): [True: 0, False: 2]
  ------------------
 2971|      0|        goto error;
 2972|      0|    }
 2973|      2|    PyObject *tuple = PyList_AsTuple(list);
 2974|      2|    Py_DECREF(list);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2975|      2|    return tuple;
 2976|       |
 2977|      0|error:
 2978|      0|    Py_DECREF(list);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2979|       |    return NULL;
 2980|      2|}
sysmodule.c:list_stdlib_module_names:
 2985|      2|{
 2986|      2|    Py_ssize_t len = Py_ARRAY_LENGTH(_Py_stdlib_module_names);
  ------------------
  |  |  196|      2|    (sizeof(array) / sizeof((array)[0]))
  ------------------
 2987|      2|    PyObject *names = PyTuple_New(len);
 2988|      2|    if (names == NULL) {
  ------------------
  |  Branch (2988:9): [True: 0, False: 2]
  ------------------
 2989|      0|        return NULL;
 2990|      0|    }
 2991|       |
 2992|    594|    for (Py_ssize_t i = 0; i < len; i++) {
  ------------------
  |  Branch (2992:28): [True: 592, False: 2]
  ------------------
 2993|    592|        PyObject *name = PyUnicode_FromString(_Py_stdlib_module_names[i]);
 2994|    592|        if (name == NULL) {
  ------------------
  |  Branch (2994:13): [True: 0, False: 592]
  ------------------
 2995|      0|            Py_DECREF(names);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2996|      0|            return NULL;
 2997|      0|        }
 2998|    592|        PyTuple_SET_ITEM(names, i, name);
  ------------------
  |  |   40|    592|    PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    592|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    592|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                   PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value))
  |  |  ------------------
  |  |  |  |  171|    592|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    592|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2999|    592|    }
 3000|       |
 3001|      2|    PyObject *set = PyObject_CallFunction((PyObject *)&PyFrozenSet_Type,
 3002|      2|                                          "(O)", names);
 3003|      2|    Py_DECREF(names);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3004|      2|    return set;
 3005|      2|}
sysmodule.c:make_version_info:
 3620|      2|{
 3621|      2|    PyObject *version_info;
 3622|      2|    char *s;
 3623|      2|    int pos = 0;
 3624|       |
 3625|      2|    version_info = PyStructSequence_New(&VersionInfoType);
 3626|      2|    if (version_info == NULL) {
  ------------------
  |  Branch (3626:9): [True: 0, False: 2]
  ------------------
 3627|      0|        return NULL;
 3628|      0|    }
 3629|       |
 3630|       |    /*
 3631|       |     * These release level checks are mutually exclusive and cover
 3632|       |     * the field, so don't get too fancy with the pre-processor!
 3633|       |     */
 3634|      2|#if PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_ALPHA
 3635|      2|    s = "alpha";
 3636|       |#elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_BETA
 3637|       |    s = "beta";
 3638|       |#elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_GAMMA
 3639|       |    s = "candidate";
 3640|       |#elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_FINAL
 3641|       |    s = "final";
 3642|       |#endif
 3643|       |
 3644|      2|#define SetIntItem(flag) \
 3645|      2|    PyStructSequence_SET_ITEM(version_info, pos++, PyLong_FromLong(flag))
 3646|      2|#define SetStrItem(flag) \
 3647|      2|    PyStructSequence_SET_ITEM(version_info, pos++, PyUnicode_FromString(flag))
 3648|       |
 3649|      2|    SetIntItem(PY_MAJOR_VERSION);
  ------------------
  |  | 3645|      2|    PyStructSequence_SET_ITEM(version_info, pos++, PyLong_FromLong(flag))
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  ------------------
 3650|      2|    SetIntItem(PY_MINOR_VERSION);
  ------------------
  |  | 3645|      2|    PyStructSequence_SET_ITEM(version_info, pos++, PyLong_FromLong(flag))
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  ------------------
 3651|      2|    SetIntItem(PY_MICRO_VERSION);
  ------------------
  |  | 3645|      2|    PyStructSequence_SET_ITEM(version_info, pos++, PyLong_FromLong(flag))
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  ------------------
 3652|      2|    SetStrItem(s);
  ------------------
  |  | 3647|      2|    PyStructSequence_SET_ITEM(version_info, pos++, PyUnicode_FromString(flag))
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  ------------------
 3653|      2|    SetIntItem(PY_RELEASE_SERIAL);
  ------------------
  |  | 3645|      2|    PyStructSequence_SET_ITEM(version_info, pos++, PyLong_FromLong(flag))
  |  |  ------------------
  |  |  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  |  |  ------------------
  ------------------
 3654|      2|#undef SetIntItem
 3655|      2|#undef SetStrItem
 3656|       |
 3657|      2|    if (_PyErr_Occurred(tstate)) {
  ------------------
  |  Branch (3657:9): [True: 0, False: 2]
  ------------------
 3658|      0|        Py_CLEAR(version_info);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3659|      0|        return NULL;
 3660|      0|    }
 3661|      2|    return version_info;
 3662|      2|}
sysmodule.c:make_impl_info:
 3684|      2|{
 3685|      2|    int res;
 3686|      2|    PyObject *impl_info, *value, *ns;
 3687|       |
 3688|      2|    impl_info = PyDict_New();
 3689|      2|    if (impl_info == NULL)
  ------------------
  |  Branch (3689:9): [True: 0, False: 2]
  ------------------
 3690|      0|        return NULL;
 3691|       |
 3692|       |    /* populate the dict */
 3693|       |
 3694|      2|    value = PyUnicode_FromString(_PySys_ImplName);
 3695|      2|    if (value == NULL)
  ------------------
  |  Branch (3695:9): [True: 0, False: 2]
  ------------------
 3696|      0|        goto error;
 3697|      2|    res = PyDict_SetItemString(impl_info, "name", value);
 3698|      2|    Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3699|      2|    if (res < 0)
  ------------------
  |  Branch (3699:9): [True: 0, False: 2]
  ------------------
 3700|      0|        goto error;
 3701|       |
 3702|      2|    value = _PySys_ImplCacheTag
  ------------------
  |  Branch (3702:13): [True: 2, False: 0]
  ------------------
 3703|      2|        ? PyUnicode_FromString(_PySys_ImplCacheTag)
 3704|      2|        : Py_NewRef(Py_None);
  ------------------
  |  |  550|      2|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3705|      2|    if (value == NULL) {
  ------------------
  |  Branch (3705:9): [True: 0, False: 2]
  ------------------
 3706|      0|        goto error;
 3707|      0|    }
 3708|      2|    res = PyDict_SetItemString(impl_info, "cache_tag", value);
 3709|      2|    Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3710|      2|    if (res < 0)
  ------------------
  |  Branch (3710:9): [True: 0, False: 2]
  ------------------
 3711|      0|        goto error;
 3712|       |
 3713|      2|    res = PyDict_SetItemString(impl_info, "version", version_info);
 3714|      2|    if (res < 0)
  ------------------
  |  Branch (3714:9): [True: 0, False: 2]
  ------------------
 3715|      0|        goto error;
 3716|       |
 3717|      2|    value = PyLong_FromLong(PY_VERSION_HEX);
  ------------------
  |  |   43|      2|#define PY_VERSION_HEX _Py_PACK_FULL_VERSION( \
  |  |  ------------------
  |  |  |  |   34|      2|#define _Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \
  |  |  |  |   35|      2|    (((X) & 0xff) << 24) |                              \
  |  |  |  |   36|      2|    (((Y) & 0xff) << 16) |                              \
  |  |  |  |   37|      2|    (((Z) & 0xff) << 8) |                               \
  |  |  |  |   38|      2|    (((LEVEL) & 0xf) << 4) |                            \
  |  |  |  |   39|      2|    (((SERIAL) & 0xf) << 0))
  |  |  ------------------
  |  |   44|      2|    PY_MAJOR_VERSION,                         \
  |  |   45|      2|    PY_MINOR_VERSION,                         \
  |  |   46|      2|    PY_MICRO_VERSION,                         \
  |  |   47|      2|    PY_RELEASE_LEVEL,                         \
  |  |   48|      2|    PY_RELEASE_SERIAL)
  ------------------
 3718|      2|    if (value == NULL)
  ------------------
  |  Branch (3718:9): [True: 0, False: 2]
  ------------------
 3719|      0|        goto error;
 3720|      2|    res = PyDict_SetItemString(impl_info, "hexversion", value);
 3721|      2|    Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3722|      2|    if (res < 0)
  ------------------
  |  Branch (3722:9): [True: 0, False: 2]
  ------------------
 3723|      0|        goto error;
 3724|       |
 3725|      2|#ifdef MULTIARCH
 3726|      2|    value = PyUnicode_FromString(MULTIARCH);
 3727|      2|    if (value == NULL)
  ------------------
  |  Branch (3727:9): [True: 0, False: 2]
  ------------------
 3728|      0|        goto error;
 3729|      2|    res = PyDict_SetItemString(impl_info, "_multiarch", value);
 3730|      2|    Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3731|      2|    if (res < 0)
  ------------------
  |  Branch (3731:9): [True: 0, False: 2]
  ------------------
 3732|      0|        goto error;
 3733|      2|#endif
 3734|       |
 3735|       |    // PEP-734
 3736|       |#if defined(__wasi__) || defined(__EMSCRIPTEN__)
 3737|       |    // It is not enabled on WASM builds just yet
 3738|       |    value = Py_False;
 3739|       |#else
 3740|      2|    value = Py_True;
  ------------------
  |  |   26|      2|#  define Py_True _PyObject_CAST(&_Py_TrueStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3741|      2|#endif
 3742|      2|    res = PyDict_SetItemString(impl_info, "supports_isolated_interpreters", value);
 3743|      2|    if (res < 0) {
  ------------------
  |  Branch (3743:9): [True: 0, False: 2]
  ------------------
 3744|      0|        goto error;
 3745|      0|    }
 3746|       |
 3747|       |    /* dict ready */
 3748|       |
 3749|      2|    ns = _PyNamespace_New(impl_info);
 3750|      2|    Py_DECREF(impl_info);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3751|      2|    return ns;
 3752|       |
 3753|      0|error:
 3754|      0|    Py_CLEAR(impl_info);
  ------------------
  |  |  484|      0|    do { \
  |  |  485|      0|        _Py_TYPEOF(op)* _tmp_op_ptr = &(op); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  486|      0|        _Py_TYPEOF(op) _tmp_old_op = (*_tmp_op_ptr); \
  |  |  ------------------
  |  |  |  |  546|      0|#  define _Py_TYPEOF(expr) __typeof__(expr)
  |  |  ------------------
  |  |  487|      0|        if (_tmp_old_op != NULL) { \
  |  |  ------------------
  |  |  |  Branch (487:13): [True: 0, False: 0]
  |  |  ------------------
  |  |  488|      0|            *_tmp_op_ptr = _Py_NULL; \
  |  |  ------------------
  |  |  |  |   57|      0|#  define _Py_NULL NULL
  |  |  ------------------
  |  |  489|      0|            Py_DECREF(_tmp_old_op); \
  |  |  ------------------
  |  |  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  490|      0|        } \
  |  |  491|      0|    } while (0)
  |  |  ------------------
  |  |  |  Branch (491:14): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3755|       |    return NULL;
 3756|      2|}
sysmodule.c:make_flags:
 3581|      2|{
 3582|      2|    PyObject *flags = PyStructSequence_New(&FlagsType);
 3583|      2|    if (flags == NULL) {
  ------------------
  |  Branch (3583:9): [True: 0, False: 2]
  ------------------
 3584|      0|        return NULL;
 3585|      0|    }
 3586|       |
 3587|      2|    if (set_flags_from_config(interp, flags) < 0) {
  ------------------
  |  Branch (3587:9): [True: 0, False: 2]
  ------------------
 3588|      0|        Py_DECREF(flags);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3589|      0|        return NULL;
 3590|      0|    }
 3591|      2|    return flags;
 3592|      2|}
sysmodule.c:make_abi_info:
 3761|      2|{
 3762|       |    // New entries should be added when needed for a supported platform,
 3763|       |    // or by core dev consensus for enabling an unsupported one.
 3764|       |
 3765|      2|    PyObject *value;
 3766|      2|    PyObject *abi_info = PyDict_New();
 3767|      2|    if (abi_info == NULL) {
  ------------------
  |  Branch (3767:9): [True: 0, False: 2]
  ------------------
 3768|      0|        return NULL;
 3769|      0|    }
 3770|       |
 3771|      2|    value = PyLong_FromLong(sizeof(void *) * 8);
 3772|      2|    if (value == NULL) {
  ------------------
  |  Branch (3772:9): [True: 0, False: 2]
  ------------------
 3773|      0|        goto error;
 3774|      0|    }
 3775|      2|    if (PyDict_SetItem(abi_info, &_Py_ID(pointer_bits), value) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3775:9): [True: 0, False: 2]
  ------------------
 3776|      0|        goto error;
 3777|      0|    }
 3778|      2|    Py_DECREF(value);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3779|       |
 3780|       |#ifdef Py_GIL_DISABLED
 3781|       |    value = Py_True;
 3782|       |#else
 3783|      2|    value = Py_False;
  ------------------
  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3784|      2|#endif
 3785|      2|    if (PyDict_SetItem(abi_info, &_Py_ID(free_threaded), value) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3785:9): [True: 0, False: 2]
  ------------------
 3786|      0|        goto error;
 3787|      0|    }
 3788|       |
 3789|       |#ifdef Py_DEBUG
 3790|       |    value = Py_True;
 3791|       |#else
 3792|      2|    value = Py_False;
  ------------------
  |  |   25|      2|#  define Py_False _PyObject_CAST(&_Py_FalseStruct)
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3793|      2|#endif
 3794|      2|    if (PyDict_SetItem(abi_info, &_Py_ID(debug), value) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3794:9): [True: 0, False: 2]
  ------------------
 3795|      0|        goto error;
 3796|      0|    }
 3797|       |
 3798|       |#if PY_BIG_ENDIAN
 3799|       |    value = &_Py_ID(big);
 3800|       |#else
 3801|      2|    value = &_Py_ID(little);
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3802|      2|#endif
 3803|      2|    if (PyDict_SetItem(abi_info, &_Py_ID(byteorder), value) < 0) {
  ------------------
  |  |  917|      2|     (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3803:9): [True: 0, False: 2]
  ------------------
 3804|      0|        goto error;
 3805|      0|    }
 3806|       |
 3807|      2|    PyObject *ns = _PyNamespace_New(abi_info);
 3808|      2|    Py_DECREF(abi_info);
  ------------------
  |  |  430|      2|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      2|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3809|      2|    return ns;
 3810|       |
 3811|      0|error:
 3812|      0|    Py_DECREF(abi_info);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3813|      0|    Py_XDECREF(value);
  ------------------
  |  |  524|      0|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3814|       |    return NULL;
 3815|      2|}

PyThread_init_thread:
   49|      6|{
   50|      6|    if (initialized) {
  ------------------
  |  |   45|      6|#define initialized _PyRuntime.threads.initialized
  |  |  ------------------
  |  |  |  Branch (45:21): [True: 4, False: 2]
  |  |  ------------------
  ------------------
   51|      4|        return;
   52|      4|    }
   53|      2|    initialized = 1;
  ------------------
  |  |   45|      2|#define initialized _PyRuntime.threads.initialized
  ------------------
   54|      2|    PyThread__init_thread();
   55|      2|}
PyThread_allocate_lock:
   81|      6|{
   82|      6|    if (!initialized) {
  ------------------
  |  |   45|      6|#define initialized _PyRuntime.threads.initialized
  ------------------
  |  Branch (82:9): [True: 0, False: 6]
  ------------------
   83|      0|        PyThread_init_thread();
   84|      0|    }
   85|       |
   86|      6|    PyMutex *lock = (PyMutex *)PyMem_RawMalloc(sizeof(PyMutex));
   87|      6|    if (lock) {
  ------------------
  |  Branch (87:9): [True: 6, False: 0]
  ------------------
   88|      6|        *lock = (PyMutex){0};
   89|      6|    }
   90|       |
   91|      6|    return (PyThread_type_lock)lock;
   92|      6|}
PyThread_GetInfo:
  310|      2|{
  311|      2|    PyObject *threadinfo, *value;
  312|      2|    int pos = 0;
  313|      2|#if (defined(_POSIX_THREADS) && defined(HAVE_CONFSTR) \
  314|      2|     && defined(_CS_GNU_LIBPTHREAD_VERSION))
  315|      2|    char buffer[255];
  316|      2|    int len;
  317|      2|#endif
  318|       |
  319|      2|    PyInterpreterState *interp = _PyInterpreterState_GET();
  320|      2|    if (_PyStructSequence_InitBuiltin(interp, &ThreadInfoType, &threadinfo_desc) < 0) {
  ------------------
  |  Branch (320:9): [True: 0, False: 2]
  ------------------
  321|      0|        return NULL;
  322|      0|    }
  323|       |
  324|      2|    threadinfo = PyStructSequence_New(&ThreadInfoType);
  325|      2|    if (threadinfo == NULL)
  ------------------
  |  Branch (325:9): [True: 0, False: 2]
  ------------------
  326|      0|        return NULL;
  327|       |
  328|      2|    value = PyUnicode_FromString(PYTHREAD_NAME);
  ------------------
  |  |   64|      2|#     define PYTHREAD_NAME "pthread"
  ------------------
  329|      2|    if (value == NULL) {
  ------------------
  |  Branch (329:9): [True: 0, False: 2]
  ------------------
  330|      0|        Py_DECREF(threadinfo);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  331|      0|        return NULL;
  332|      0|    }
  333|      2|    PyStructSequence_SET_ITEM(threadinfo, pos++, value);
  ------------------
  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
  334|       |
  335|       |#ifdef HAVE_PTHREAD_STUBS
  336|       |    value = Py_NewRef(Py_None);
  337|       |#else
  338|      2|    value = PyUnicode_FromString("pymutex");
  339|      2|    if (value == NULL) {
  ------------------
  |  Branch (339:9): [True: 0, False: 2]
  ------------------
  340|      0|        Py_DECREF(threadinfo);
  ------------------
  |  |  430|      0|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  341|      0|        return NULL;
  342|      0|    }
  343|      2|#endif
  344|      2|    PyStructSequence_SET_ITEM(threadinfo, pos++, value);
  ------------------
  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
  345|       |
  346|      2|#if (defined(_POSIX_THREADS) && defined(HAVE_CONFSTR) \
  347|      2|     && defined(_CS_GNU_LIBPTHREAD_VERSION))
  348|      2|    value = NULL;
  349|      2|    len = confstr(_CS_GNU_LIBPTHREAD_VERSION, buffer, sizeof(buffer));
  350|      2|    if (1 < len && (size_t)len < sizeof(buffer)) {
  ------------------
  |  Branch (350:9): [True: 2, False: 0]
  |  Branch (350:20): [True: 2, False: 0]
  ------------------
  351|      2|        value = PyUnicode_DecodeFSDefaultAndSize(buffer, len-1);
  352|      2|        if (value == NULL)
  ------------------
  |  Branch (352:13): [True: 0, False: 2]
  ------------------
  353|      0|            PyErr_Clear();
  354|      2|    }
  355|      2|    if (value == NULL)
  ------------------
  |  Branch (355:9): [True: 0, False: 2]
  ------------------
  356|      0|#endif
  357|      0|    {
  358|      0|        value = Py_NewRef(Py_None);
  ------------------
  |  |  550|      0|#  define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|      0|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      0|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  359|      0|    }
  360|      2|    PyStructSequence_SET_ITEM(threadinfo, pos++, value);
  ------------------
  |  |   11|      2|#define PyStructSequence_SET_ITEM PyStructSequence_SetItem
  ------------------
  361|      2|    return threadinfo;
  362|      2|}

_PyThread_cond_init:
  140|      4|{
  141|      4|    return pthread_cond_init(cond, condattr_monotonic);
  ------------------
  |  |  121|      4|#define condattr_monotonic _PyRuntime.threads._condattr_monotonic.ptr
  ------------------
  142|      4|}
PyThread_get_thread_ident_ex:
  360|  3.59k|PyThread_get_thread_ident_ex(void) {
  361|  3.59k|    volatile pthread_t threadid;
  362|  3.59k|    if (!initialized)
  ------------------
  |  |   45|  3.59k|#define initialized _PyRuntime.threads.initialized
  ------------------
  |  Branch (362:9): [True: 2, False: 3.59k]
  ------------------
  363|      2|        PyThread_init_thread();
  364|  3.59k|    threadid = pthread_self();
  365|  3.59k|    return _pthread_t_to_ident(threadid);
  366|  3.59k|}
PyThread_get_thread_ident:
  370|  2.65k|{
  371|  2.65k|    return (unsigned long) PyThread_get_thread_ident_ex();
  372|  2.65k|}
PyThread_get_thread_native_id:
  377|      2|{
  378|      2|    if (!initialized)
  ------------------
  |  |   45|      2|#define initialized _PyRuntime.threads.initialized
  ------------------
  |  Branch (378:9): [True: 0, False: 2]
  ------------------
  379|      0|        PyThread_init_thread();
  380|       |#ifdef __APPLE__
  381|       |    uint64_t native_id;
  382|       |    (void) pthread_threadid_np(NULL, &native_id);
  383|       |#elif defined(__linux__)
  384|       |    pid_t native_id;
  385|      2|    native_id = syscall(SYS_gettid);
  386|       |#elif defined(__FreeBSD__)
  387|       |    int native_id;
  388|       |    native_id = pthread_getthreadid_np();
  389|       |#elif defined(__FreeBSD_kernel__)
  390|       |    long native_id;
  391|       |    syscall(SYS_thr_self, &native_id);
  392|       |#elif defined(__OpenBSD__)
  393|       |    pid_t native_id;
  394|       |    native_id = getthrid();
  395|       |#elif defined(_AIX)
  396|       |    tid_t native_id;
  397|       |    native_id = thread_self();
  398|       |#elif defined(__NetBSD__)
  399|       |    lwpid_t native_id;
  400|       |    native_id = _lwp_self();
  401|       |#elif defined(__DragonFly__)
  402|       |    lwpid_t native_id;
  403|       |    native_id = lwp_gettid();
  404|       |#elif defined(__sun__) && SIZEOF_LONG >= 8
  405|       |    unsigned long native_id = (unsigned long)getpid() << 32 | thr_self();
  406|       |#endif
  407|      2|    return (unsigned long) native_id;
  408|      2|}
PyThread_tss_create:
  572|      2|{
  573|      2|    assert(key != NULL);
  ------------------
  |  Branch (573:5): [True: 2, False: 0]
  ------------------
  574|       |    /* If the key has been created, function is silently skipped. */
  575|      2|    if (key->_is_initialized) {
  ------------------
  |  Branch (575:9): [True: 0, False: 2]
  ------------------
  576|      0|        return 0;
  577|      0|    }
  578|       |
  579|      2|    int fail = pthread_key_create(&(key->_key), NULL);
  580|      2|    if (fail) {
  ------------------
  |  Branch (580:9): [True: 0, False: 2]
  ------------------
  581|      0|        return -1;
  582|      0|    }
  583|      2|    key->_is_initialized = 1;
  584|      2|    return 0;
  585|      2|}
thread.c:PyThread__init_thread:
  197|      2|{
  198|       |    // The library is only initialized once in the process,
  199|       |    // regardless of how many times the Python runtime is initialized.
  200|      2|    static int lib_initialized = 0;
  201|      2|    if (!lib_initialized) {
  ------------------
  |  Branch (201:9): [True: 2, False: 0]
  ------------------
  202|      2|        lib_initialized = 1;
  203|       |#if defined(_AIX) && defined(__GNUC__)
  204|       |        extern void pthread_init(void);
  205|       |        pthread_init();
  206|       |#endif
  207|      2|    }
  208|      2|    init_condattr();
  209|      2|}
thread.c:init_condattr:
  125|      2|{
  126|      2|#ifdef CONDATTR_MONOTONIC
  127|      2|# define ca _PyRuntime.threads._condattr_monotonic.val
  128|       |    // XXX We need to check the return code?
  129|      2|    pthread_condattr_init(&ca);
  ------------------
  |  |  127|      2|# define ca _PyRuntime.threads._condattr_monotonic.val
  ------------------
  130|       |    // XXX We need to run pthread_condattr_destroy() during runtime fini.
  131|      2|    if (pthread_condattr_setclock(&ca, CLOCK_MONOTONIC) == 0) {
  ------------------
  |  |  127|      2|# define ca _PyRuntime.threads._condattr_monotonic.val
  ------------------
  |  Branch (131:9): [True: 2, False: 0]
  ------------------
  132|      2|        condattr_monotonic = &ca;  // Use monotonic clock
  ------------------
  |  |  121|      2|#define condattr_monotonic _PyRuntime.threads._condattr_monotonic.ptr
  ------------------
                      condattr_monotonic = &ca;  // Use monotonic clock
  ------------------
  |  |  127|      2|# define ca _PyRuntime.threads._condattr_monotonic.val
  ------------------
  133|      2|    }
  134|      2|# undef ca
  135|      2|#endif  // CONDATTR_MONOTONIC
  136|      2|}
thread.c:_pthread_t_to_ident:
  304|  3.59k|_pthread_t_to_ident(pthread_t value) {
  305|       |// Cast through an integer type of the same size to avoid sign-extension.
  306|  3.59k|#if SIZEOF_PTHREAD_T == SIZEOF_VOID_P
  307|  3.59k|    return (uintptr_t) value;
  308|       |#elif SIZEOF_PTHREAD_T == SIZEOF_LONG
  309|       |    return (unsigned long) value;
  310|       |#elif SIZEOF_PTHREAD_T == SIZEOF_INT
  311|       |    return (unsigned int) value;
  312|       |#elif SIZEOF_PTHREAD_T == SIZEOF_LONG_LONG
  313|       |    return (unsigned long long) value;
  314|       |#else
  315|       |#error "Unsupported SIZEOF_PTHREAD_T value"
  316|       |#endif
  317|  3.59k|}

_PyTraceBack_FromFrame:
  312|    204|{
  313|    204|    assert(tb_next == NULL || PyTraceBack_Check(tb_next));
  ------------------
  |  Branch (313:5): [True: 184, False: 20]
  |  Branch (313:5): [True: 20, False: 0]
  ------------------
  314|    204|    assert(frame != NULL);
  ------------------
  |  Branch (314:5): [True: 204, False: 0]
  ------------------
  315|    204|    int addr = _PyInterpreterFrame_LASTI(frame->f_frame) * sizeof(_Py_CODEUNIT);
  ------------------
  |  |   18|    204|    ((int)((IF)->instr_ptr - _PyFrame_GetBytecode((IF))))
  ------------------
  316|    204|    return tb_create_raw((PyTracebackObject *)tb_next, frame, addr, -1);
  317|    204|}
PyTraceBack_Here:
  322|    204|{
  323|    204|    PyObject *exc = PyErr_GetRaisedException();
  324|    204|    assert(PyExceptionInstance_Check(exc));
  ------------------
  |  Branch (324:5): [True: 204, False: 0]
  ------------------
  325|    204|    PyObject *tb = PyException_GetTraceback(exc);
  326|    204|    PyObject *newtb = _PyTraceBack_FromFrame(tb, frame);
  327|    204|    Py_XDECREF(tb);
  ------------------
  |  |  524|    204|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  328|    204|    if (newtb == NULL) {
  ------------------
  |  Branch (328:9): [True: 0, False: 204]
  ------------------
  329|      0|        _PyErr_ChainExceptions1(exc);
  330|      0|        return -1;
  331|      0|    }
  332|    204|    PyException_SetTraceback(exc, newtb);
  333|    204|    Py_XDECREF(newtb);
  ------------------
  |  |  524|    204|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  334|    204|    PyErr_SetRaisedException(exc);
  335|    204|    return 0;
  336|    204|}
_Py_DumpTraceback_Init:
 1466|      2|{
 1467|       |#ifdef MS_WINDOWS
 1468|       |    if (pGetThreadDescription != NULL) {
 1469|       |        return;
 1470|       |    }
 1471|       |
 1472|       |    HMODULE kernelbase = GetModuleHandleW(L"kernelbase.dll");
 1473|       |    if (kernelbase != NULL) {
 1474|       |        pGetThreadDescription = (PF_GET_THREAD_DESCRIPTION)GetProcAddress(
 1475|       |                                    kernelbase, "GetThreadDescription");
 1476|       |    }
 1477|       |#endif
 1478|      2|}
traceback.c:tb_dealloc:
  242|    204|{
  243|    204|    PyTracebackObject *tb = _PyTracebackObject_CAST(op);
  ------------------
  |  |   68|    204|#define _PyTracebackObject_CAST(op)   ((PyTracebackObject *)(op))
  ------------------
  244|    204|    PyObject_GC_UnTrack(tb);
  245|    204|    Py_XDECREF(tb->tb_next);
  ------------------
  |  |  524|    204|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  246|    204|    Py_XDECREF(tb->tb_frame);
  ------------------
  |  |  524|    204|#  define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  247|    204|    PyObject_GC_Del(tb);
  248|    204|}
traceback.c:tb_create_raw:
   82|    204|{
   83|    204|    PyTracebackObject *tb;
   84|    204|    if ((next != NULL && !PyTraceBack_Check(next)) ||
  ------------------
  |  |   14|     20|#define PyTraceBack_Check(v) Py_IS_TYPE((v), &PyTraceBack_Type)
  |  |  ------------------
  |  |  |  |  215|     20|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|     20|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|     20|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (84:10): [True: 20, False: 184]
  |  Branch (84:26): [True: 0, False: 20]
  ------------------
   85|    204|                    frame == NULL || !PyFrame_Check(frame)) {
  ------------------
  |  |    8|    204|#define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type)
  |  |  ------------------
  |  |  |  |  215|    204|#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
  |  |  |  |  ------------------
  |  |  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (85:21): [True: 0, False: 204]
  |  Branch (85:38): [True: 0, False: 204]
  ------------------
   86|      0|        PyErr_BadInternalCall();
  ------------------
  |  |  229|      0|#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
  ------------------
   87|      0|        return NULL;
   88|      0|    }
   89|    204|    tb = PyObject_GC_New(PyTracebackObject, &PyTraceBack_Type);
  ------------------
  |  |  181|    204|    _Py_CAST(type*, _PyObject_GC_New(typeobj))
  |  |  ------------------
  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  ------------------
  ------------------
   90|    204|    if (tb != NULL) {
  ------------------
  |  Branch (90:9): [True: 204, False: 0]
  ------------------
   91|    204|        tb->tb_next = (PyTracebackObject*)Py_XNewRef(next);
  ------------------
  |  |  551|    204|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   92|    204|        tb->tb_frame = (PyFrameObject*)Py_XNewRef(frame);
  ------------------
  |  |  551|    204|#  define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))
  |  |  ------------------
  |  |  |  |  171|    204|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    204|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   93|    204|        tb->tb_lasti = lasti;
   94|    204|        tb->tb_lineno = lineno;
   95|    204|        PyObject_GC_Track(tb);
   96|    204|    }
   97|    204|    return (PyObject *)tb;
   98|    204|}

_PyTraceMalloc_Init:
  739|      2|{
  740|      2|    assert(tracemalloc_config.initialized == TRACEMALLOC_NOT_INITIALIZED);
  ------------------
  |  Branch (740:5): [True: 2, False: 0]
  ------------------
  741|       |
  742|      2|    PyMem_GetAllocator(PYMEM_DOMAIN_RAW, &allocators.raw);
  ------------------
  |  |   32|      2|#define allocators _PyRuntime.tracemalloc.allocators
  ------------------
  743|       |
  744|      2|    if (PyThread_tss_create(&tracemalloc_reentrant_key) != 0) {
  ------------------
  |  |   91|      2|#define tracemalloc_reentrant_key _PyRuntime.tracemalloc.reentrant_key
  ------------------
  |  Branch (744:9): [True: 0, False: 2]
  ------------------
  745|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  746|      0|    }
  747|       |
  748|      2|    tracemalloc_filenames = hashtable_new(hashtable_hash_pyobject,
  ------------------
  |  |   69|      2|#define tracemalloc_filenames _PyRuntime.tracemalloc.filenames
  ------------------
  749|      2|                                          hashtable_compare_unicode,
  750|      2|                                          tracemalloc_clear_filename, NULL);
  751|       |
  752|      2|    tracemalloc_tracebacks = hashtable_new(hashtable_hash_traceback,
  ------------------
  |  |   71|      2|#define tracemalloc_tracebacks _PyRuntime.tracemalloc.tracebacks
  ------------------
  753|      2|                                           hashtable_compare_traceback,
  754|      2|                                           raw_free, NULL);
  755|       |
  756|      2|    tracemalloc_traces = tracemalloc_create_traces_table();
  ------------------
  |  |   72|      2|#define tracemalloc_traces _PyRuntime.tracemalloc.traces
  ------------------
  757|      2|    tracemalloc_domains = tracemalloc_create_domains_table();
  ------------------
  |  |   73|      2|#define tracemalloc_domains _PyRuntime.tracemalloc.domains
  ------------------
  758|       |
  759|      2|    if (tracemalloc_filenames == NULL || tracemalloc_tracebacks == NULL
  ------------------
  |  |   69|      2|#define tracemalloc_filenames _PyRuntime.tracemalloc.filenames
  ------------------
                  if (tracemalloc_filenames == NULL || tracemalloc_tracebacks == NULL
  ------------------
  |  |   71|      2|#define tracemalloc_tracebacks _PyRuntime.tracemalloc.tracebacks
  ------------------
  |  Branch (759:9): [True: 0, False: 2]
  |  Branch (759:42): [True: 0, False: 2]
  ------------------
  760|      2|       || tracemalloc_traces == NULL || tracemalloc_domains == NULL)
  ------------------
  |  |   72|      2|#define tracemalloc_traces _PyRuntime.tracemalloc.traces
  ------------------
                     || tracemalloc_traces == NULL || tracemalloc_domains == NULL)
  ------------------
  |  |   73|      2|#define tracemalloc_domains _PyRuntime.tracemalloc.domains
  ------------------
  |  Branch (760:11): [True: 0, False: 2]
  |  Branch (760:41): [True: 0, False: 2]
  ------------------
  761|      0|    {
  762|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  763|      0|    }
  764|       |
  765|      2|    assert(tracemalloc_empty_traceback == NULL);
  ------------------
  |  Branch (765:5): [True: 2, False: 0]
  ------------------
  766|      2|    tracemalloc_empty_traceback = raw_malloc(TRACEBACK_SIZE(1));
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
                  tracemalloc_empty_traceback = raw_malloc(TRACEBACK_SIZE(1));
  ------------------
  |  |   49|      2|        (sizeof(traceback_t) + sizeof(frame_t) * (NFRAME))
  ------------------
  767|      2|    if (tracemalloc_empty_traceback  == NULL) {
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
  |  Branch (767:9): [True: 0, False: 2]
  ------------------
  768|      0|        return _PyStatus_NO_MEMORY();
  ------------------
  |  |   33|      0|#define _PyStatus_NO_MEMORY() _PyStatus_ERR(_PyStatus_NO_MEMORY_ERRMSG)
  |  |  ------------------
  |  |  |  |   27|      0|    (PyStatus){ \
  |  |  |  |   28|      0|        ._type = _PyStatus_TYPE_ERROR, \
  |  |  |  |   29|      0|        .func = _PyStatus_GET_FUNC(), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   20|      0|#  define _PyStatus_GET_FUNC() __func__
  |  |  |  |  ------------------
  |  |  |  |   30|      0|        .err_msg = (ERR_MSG)}
  |  |  ------------------
  ------------------
  769|      0|    }
  770|       |
  771|      2|    tracemalloc_empty_traceback->nframe = 1;
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
  772|      2|    tracemalloc_empty_traceback->total_nframe = 1;
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
  773|       |    /* borrowed reference */
  774|      2|    tracemalloc_empty_traceback->frames[0].filename = &_Py_STR(anon_unknown);
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
                  tracemalloc_empty_traceback->frames[0].filename = &_Py_STR(anon_unknown);
  ------------------
  |  |  919|      2|     (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
  |  |  ------------------
  |  |  |  |   18|      2|    _Py_GLOBAL_OBJECT(singletons.NAME)
  |  |  |  |  ------------------
  |  |  |  |  |  |   16|      2|    _PyRuntime.static_objects.NAME
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  775|      2|    tracemalloc_empty_traceback->frames[0].lineno = 0;
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
  776|      2|    tracemalloc_empty_traceback->hash = traceback_hash(tracemalloc_empty_traceback);
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
                  tracemalloc_empty_traceback->hash = traceback_hash(tracemalloc_empty_traceback);
  ------------------
  |  |   54|      2|#define tracemalloc_empty_traceback _PyRuntime.tracemalloc.empty_traceback
  ------------------
  777|       |
  778|      2|    tracemalloc_config.initialized = TRACEMALLOC_INITIALIZED;
  ------------------
  |  |   15|      2|#define tracemalloc_config _PyRuntime.tracemalloc.config
  ------------------
  779|      2|    return _PyStatus_OK();
  ------------------
  |  |   24|      2|    (PyStatus){._type = _PyStatus_TYPE_OK}
  ------------------
  780|      2|}
tracemalloc.c:hashtable_new:
  163|      8|{
  164|      8|    _Py_hashtable_allocator_t hashtable_alloc = {malloc, free};
  165|      8|    return _Py_hashtable_new_full(hash_func, compare_func,
  166|      8|                                  key_destroy_func, value_destroy_func,
  167|      8|                                  &hashtable_alloc);
  168|      8|}
tracemalloc.c:tracemalloc_create_traces_table:
  379|      2|{
  380|      2|    return hashtable_new(_Py_hashtable_hash_ptr,
  381|      2|                         _Py_hashtable_compare_direct,
  382|       |                         NULL, raw_free);
  383|      2|}
tracemalloc.c:tracemalloc_create_domains_table:
  396|      2|{
  397|      2|    return hashtable_new(hashtable_hash_uint,
  398|      2|                         _Py_hashtable_compare_direct,
  399|       |                         NULL,
  400|      2|                         tracemalloc_destroy_domain);
  401|      2|}
tracemalloc.c:raw_malloc:
  173|      2|{
  174|      2|    return allocators.raw.malloc(allocators.raw.ctx, size);
  ------------------
  |  |   32|      2|#define allocators _PyRuntime.tracemalloc.allocators
  ------------------
                  return allocators.raw.malloc(allocators.raw.ctx, size);
  ------------------
  |  |   32|      2|#define allocators _PyRuntime.tracemalloc.allocators
  ------------------
  175|      2|}
tracemalloc.c:traceback_hash:
  281|      2|{
  282|       |    /* code based on tuple_hash() of Objects/tupleobject.c */
  283|      2|    Py_uhash_t x, y;  /* Unsigned for defined overflow behavior. */
  284|      2|    int len = traceback->nframe;
  285|      2|    Py_uhash_t mult = PyHASH_MULTIPLIER;
  ------------------
  |  |    6|      2|#define PyHASH_MULTIPLIER 1000003UL  /* 0xf4243 */
  ------------------
  286|      2|    frame_t *frame;
  287|       |
  288|      2|    x = 0x345678UL;
  289|      2|    frame = traceback->frames;
  290|      4|    while (--len >= 0) {
  ------------------
  |  Branch (290:12): [True: 2, False: 2]
  ------------------
  291|      2|        y = (Py_uhash_t)PyObject_Hash(frame->filename);
  292|      2|        y ^= (Py_uhash_t)frame->lineno;
  293|      2|        frame++;
  294|       |
  295|      2|        x = (x ^ y) * mult;
  296|       |        /* the cast might truncate len; that doesn't change hash stability */
  297|      2|        mult += (Py_uhash_t)(82520UL + len + len);
  298|      2|    }
  299|      2|    x ^= traceback->total_nframe;
  300|      2|    x += 97531UL;
  301|      2|    return x;
  302|      2|}

fuzzer.c:Py_XDECREF:
  518|  3.60k|{
  519|  3.60k|    if (op != _Py_NULL) {
  ------------------
  |  |   57|  3.60k|#  define _Py_NULL NULL
  ------------------
  |  Branch (519:9): [True: 1.67k, False: 1.93k]
  ------------------
  520|  1.67k|        Py_DECREF(op);
  ------------------
  |  |  430|  1.67k|#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  1.67k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.67k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  521|  1.67k|    }
  522|  3.60k|}
fuzzer.c:Py_DECREF:
  418|  5.28k|{
  419|       |    // Non-limited C API and limited C API for Python 3.9 and older access
  420|       |    // directly PyObject.ob_refcnt.
  421|  5.28k|    if (_Py_IsImmortal(op)) {
  ------------------
  |  |  137|  5.28k|#define _Py_IsImmortal(op) _Py_IsImmortal(_PyObject_CAST(op))
  |  |  ------------------
  |  |  |  |  171|  5.28k|#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  5.28k|#define _Py_CAST(type, expr) ((type)(expr))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (137:28): [True: 86, False: 5.19k]
  |  |  ------------------
  ------------------
  422|     86|        _Py_DECREF_IMMORTAL_STAT_INC();
  ------------------
  |  |   22|     86|#  define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0)
  ------------------
  423|     86|        return;
  424|     86|    }
  425|  5.19k|    _Py_DECREF_STAT_INC();
  ------------------
  |  |   20|  5.19k|#  define _Py_DECREF_STAT_INC() ((void)0)
  ------------------
  426|  5.19k|    if (--op->ob_refcnt == 0) {
  ------------------
  |  Branch (426:9): [True: 5.19k, False: 0]
  ------------------
  427|  5.19k|        _Py_Dealloc(op);
  428|  5.19k|    }
  429|  5.19k|}
fuzzer.c:_Py_IsImmortal:
  127|  5.28k|{
  128|       |#if defined(Py_GIL_DISABLED)
  129|       |    return (_Py_atomic_load_uint32_relaxed(&op->ob_ref_local) ==
  130|       |            _Py_IMMORTAL_REFCNT_LOCAL);
  131|       |#elif SIZEOF_VOID_P > 4
  132|  5.28k|    return _Py_CAST(int32_t, op->ob_refcnt) < 0;
  ------------------
  |  |   37|  5.28k|#define _Py_CAST(type, expr) ((type)(expr))
  ------------------
  133|       |#else
  134|       |    return op->ob_refcnt >= _Py_IMMORTAL_MINIMUM_REFCNT;
  135|       |#endif
  136|  5.28k|}

